/*
 * about.css — /about page styles
 * Owns: hero, founder block, why-we-exist, by-the-numbers, team, closing CTA
 * Does NOT own: nav, footer, mobile-cta-bar (all in theme.css)
 * Namespace: about-*
 */

/* ============================================================
   HERO
   ============================================================ */
.about-hero {
  background: var(--pearl);
  padding: 136px 48px 96px;
  text-align: center;
}

.about-hero-inner {
  max-width: 820px;
  margin: 0 auto;
}

.about-hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.about-hero-h1 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
  margin: 0 0 24px;
}

.about-hero-sub {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--charcoal-soft);
  margin: 0 0 40px;
}

.about-hero-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 2px;
  transition: background 0.18s ease, transform 0.18s ease;
}

.about-hero-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* ============================================================
   FOUNDER BLOCK
   ============================================================ */
.about-founder {
  background: var(--ivory);
  padding: 96px 48px;
  border-top: 1px solid var(--border);
}

.about-founder-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  align-items: start;
}

.about-founder-img-col {
  position: sticky;
  top: 96px;
}

.about-founder-img-wrap {
  border-radius: 8px;
  overflow: hidden;
}

.about-founder-img {
  display: block;
  width: 100%;
  max-width: 480px;
  height: auto;
  object-fit: cover;
  aspect-ratio: 3/4;
  border-radius: 8px;
  filter: none;
}

.about-founder-nameplate {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 20px;
  padding-left: 2px;
}

.about-founder-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--charcoal);
}

.about-founder-role {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.about-founder-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.about-founder-h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
  margin: 0 0 32px;
}

.about-founder-credential {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 28px;
}

.about-founder-bio p {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--charcoal-soft);
  margin: 0 0 20px;
}

.about-founder-origin {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.65;
  color: var(--charcoal);
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin: 0 0 24px;
}

.about-founder-bio p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   WHY WE EXIST
   ============================================================ */
.about-why {
  background: var(--pearl);
  padding: 96px 48px;
  border-top: 1px solid var(--border);
}

.about-why-inner {
  max-width: 1060px;
  margin: 0 auto;
}

.about-why-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  text-align: center;
}

.about-why-h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
  margin: 0 0 56px;
  text-align: center;
}

.about-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.about-why-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-why-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--gold);
  flex-shrink: 0;
}

.about-why-title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--charcoal);
  margin: 0;
}

.about-why-body {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--charcoal-soft);
  margin: 0;
}

/* ============================================================
   BY THE NUMBERS
   ============================================================ */
.about-numbers {
  background: var(--charcoal);
  padding: 80px 48px;
  border-top: 1px solid rgba(201,169,110,0.15);
}

.about-numbers-inner {
  max-width: 1060px;
  margin: 0 auto;
}

.about-numbers-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 48px;
}

.about-numbers-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.about-numbers-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 48px;
  flex: 1 1 200px;
  text-align: center;
}

.about-numbers-sep {
  width: 1px;
  height: 64px;
  background: rgba(201,169,110,0.25);
  flex-shrink: 0;
}

.about-numbers-num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 400;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.01em;
}

.about-numbers-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255,254,249,0.65);
  text-align: center;
}

.about-numbers-footnote {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255,254,249,0.35);
  text-align: center;
  margin: 48px auto 0;
  max-width: 600px;
}

/* ============================================================
   TEAM BLOCK
   ============================================================ */
.about-team {
  background: var(--ivory);
  padding: 96px 48px;
  border-top: 1px solid var(--border);
}

.about-team-inner {
  max-width: 1060px;
  margin: 0 auto;
}

.about-team-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 16px;
}

.about-team-h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
  margin: 0 0 56px;
  text-align: center;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.about-team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 36px 24px;
  background: var(--pearl);
  border: 1px solid var(--border);
  border-radius: 4px;
  text-align: center;
}

.about-team-monogram {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.about-team-card-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-team-card-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--charcoal);
}

.about-team-card-role {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   CLOSING CTA BAND
   ============================================================ */
.about-closing {
  background: var(--pearl);
  border-top: 3px solid var(--gold);
  padding: 96px 48px;
}

.about-closing-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.about-closing-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.about-closing-h2 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
  margin: 0 0 20px;
}

.about-closing-sub {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--charcoal-soft);
  margin: 0 0 40px;
}

.about-closing-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.about-closing-cta {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 2px;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.about-closing-cta--primary {
  background: var(--gold);
  color: var(--charcoal);
}

.about-closing-cta--primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.about-closing-cta--secondary {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--border);
}

.about-closing-cta--secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 767px)
   ============================================================ */
@media (max-width: 767px) {
  .about-hero {
    padding: 120px 24px 72px;
  }

  .about-hero-h1 {
    font-size: 32px;
  }

  .about-hero-sub {
    font-size: 16px;
  }

  .about-founder {
    padding: 72px 24px;
  }

  .about-founder-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-founder-img-col {
    position: static;
  }

  .about-founder-img {
    max-width: 320px;
    margin: 0 auto;
    display: block;
  }

  .about-founder-nameplate {
    text-align: center;
  }

  .about-founder-h2 {
    font-size: 28px;
  }

  .about-why {
    padding: 72px 24px;
  }

  .about-why-h2 {
    font-size: 28px;
  }

  .about-why-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-numbers {
    padding: 64px 24px;
  }

  .about-numbers-stats {
    flex-direction: column;
    gap: 40px;
  }

  .about-numbers-sep {
    display: none;
  }

  .about-numbers-num {
    font-size: 36px;
  }

  .about-team {
    padding: 72px 24px;
  }

  .about-team-h2 {
    font-size: 28px;
  }

  .about-team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .about-closing {
    padding: 72px 24px;
  }

  .about-closing-h2 {
    font-size: 28px;
  }

  .about-closing-ctas {
    flex-direction: column;
    align-items: center;
  }

  .about-closing-cta {
    width: 100%;
    text-align: center;
    max-width: 320px;
  }
}
