/* ============================================================
   ABOUT PAGE — about.css
   ============================================================ */

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1rem;
}
.page-title em { color: var(--gold); font-style: italic; }
.page-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
}

/* Story */
.story-section { padding: 7rem 0; background: var(--dark); }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.story-img { position: relative; }
.story-img img { width: 100%; height: 560px; object-fit: cover; }
.corner-tl {
  position: absolute; top: -1.5rem; left: -1.5rem;
  width: 70px; height: 70px;
  border-top: 3px solid var(--gold);
  border-left: 3px solid var(--gold);
}
.story-text p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.9;
  margin-bottom: 1.25rem;
}
.story-stats {
  display: flex;
  gap: 2.5rem;
  margin: 2.5rem 0 0;
  padding-top: 2rem;
  border-top: 1px solid var(--dark-border);
}
.st span {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
}
.st label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 0.3rem;
}

/* Values */
.values-section { padding: 7rem 0; background: var(--dark-2); }
.section-center { text-align: center; margin-bottom: 4rem; }
.label-center { justify-content: center; }
.label-center::before { display: none; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--dark-border);
}
.value-card {
  background: var(--dark-3);
  padding: 3rem 2.5rem;
  transition: background 0.3s;
}
.value-card:hover { background: #1d1d1d; }
.value-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(201,168,76,0.1);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.value-card p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.8; }

/* Team */
.team-section { padding: 7rem 0; background: var(--dark); }
.section-header {
  display: flex; flex-wrap: wrap;
  align-items: flex-end; justify-content: space-between;
  gap: 2rem; margin-bottom: 3.5rem;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.team-card {
  background: var(--dark-3);
  border: 1px solid var(--dark-border);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.team-card:hover { border-color: var(--gold-border); transform: translateY(-5px); }
.team-img {
  height: 280px;
  background-size: cover;
  background-position: center top;
}
.team-info { padding: 1.75rem; }
.team-info h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.team-info span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.85rem;
}
.team-info p { color: var(--text-muted); font-size: 0.82rem; line-height: 1.8; }

/* Process */
.process-section { padding: 7rem 0; background: var(--dark-2); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 3.5rem; left: 15%; right: 15%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.3) 20%, rgba(201,168,76,0.3) 80%, transparent);
  pointer-events: none;
}
.process-step { text-align: center; padding: 0 2rem 2rem; }
.ps-num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(201,168,76,0.08);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.ps-icon {
  width: 52px; height: 52px;
  background: var(--gold-muted);
  border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.process-step h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.process-step p { color: var(--text-dim); font-size: 0.82rem; line-height: 1.75; }

@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; }
  .story-img img { height: 350px; }
  .process-grid::before { display: none; }
}
