/* ══════════════════════════════════════
   ABOUT PAGE — styles
══════════════════════════════════════ */

/* ── HERO ── */
.about-hero {
  background: #111;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 175px 120px;
}
.about-hero-inner {
  max-width: 820px;
}
.about-hero-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 28px;
}
.about-hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 9vw, 130px);
  line-height: 0.95;
  color: #fff;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.ah-line {
  display: block;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 1s cubic-bezier(.16,1,.3,1), opacity 0.8s ease;
}
.ah-line-2 {
  color: var(--yellow);
  transition-delay: 0.15s;
}
.about-hero.visible .ah-line {
  transform: translateY(0);
  opacity: 1;
}
.about-hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 520px;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.9s ease 0.4s, opacity 0.9s ease 0.4s;
}
.about-hero.visible .about-hero-sub {
  transform: translateY(0);
  opacity: 1;
}

/* ── TEAM SECTION ── */
.team-section {
  background: #fff;
  padding: 120px 175px;
  display: flex;
  flex-direction: column;
  gap: 120px;
}
.team-member {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(.16,1,.3,1);
}
.team-member.visible {
  opacity: 1;
  transform: translateY(0);
}
.team-member-reverse {
  direction: rtl;
}
.team-member-reverse > * {
  direction: ltr;
}

/* Photo */
.member-photo-wrap {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 12px;
  overflow: hidden;
  background: #111;
}
.member-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s cubic-bezier(.23,1,.32,1);
}
.member-photo-wrap:hover .member-photo {
  transform: scale(1.04);
}
.member-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.35) 0%, transparent 50%);
}

/* Info */
.member-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.member-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
}
.member-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 5.5vw, 80px);
  line-height: 0.95;
  color: #111;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.member-title {
  font-size: 13px;
  font-weight: 400;
  color: #999;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.member-divider {
  width: 40px;
  height: 2px;
  background: var(--yellow);
  margin-bottom: 28px;
}
.member-bio {
  font-size: 15px;
  font-weight: 300;
  color: #444;
  line-height: 1.75;
  margin-bottom: 16px;
}
.member-bio-closer {
  font-size: 14px;
  font-weight: 500;
  color: #111;
  letter-spacing: 0.01em;
  margin-bottom: 28px;
  font-style: italic;
}
.member-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.member-skills span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111;
  border: 1.5px solid #ddd;
  border-radius: 100px;
  padding: 6px 14px;
  transition: border-color 0.2s, color 0.2s;
}
.member-skills span:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

/* ── STATS ── */
.about-stats {
  background: #111;
  padding: 100px 175px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.stat-item {
  text-align: center;
  flex: 1;
}
.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 7vw, 100px);
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-suffix {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 4vw, 64px);
  color: var(--yellow);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #666;
  margin-top: 12px;
}
.stat-divider {
  width: 1px;
  height: 80px;
  background: #2a2a2a;
  flex-shrink: 0;
}

/* ── PHILOSOPHY FILL TEXT ── */
.about-philosophy {
  background: #fff;
  padding: 100px 175px;
  overflow: hidden;
}

/* ── CTA ── */
.about-cta {
  background: #ede5d0;
  padding: 120px 175px;
}
.about-cta-inner {
  max-width: 600px;
}
.about-cta-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 20px;
}
.about-cta-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.95;
  color: #111;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 36px;
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .about-hero { padding: 0 24px 80px; }
  .about-hero-headline { font-size: clamp(52px, 14vw, 80px); }
  .team-section { padding: 80px 24px; gap: 80px; }
  .team-member { grid-template-columns: 1fr; gap: 40px; }
  .team-member-reverse { direction: ltr; }
  .about-stats { padding: 80px 24px; flex-wrap: wrap; gap: 48px; }
  .stat-divider { display: none; }
  .stat-item { flex: 1 1 40%; }
  .about-philosophy { padding: 80px 24px; }
  .about-cta { padding: 80px 24px; }
}
