/* ════════════════════════════════════════════════════
   ABOUT PAGE — extends home-page.css design system.
   Relies on home-page.css for: .container, .eyebrow,
   .section-title, .section-header-center, .reveal,
   .btn-hero-primary, .page-hero*, .hero-shape-*,
   .hero-cut, nav, footer, and .cta-section.
   ════════════════════════════════════════════════════ */

/* ─── FOUNDER QUOTE ────────────────────────────────── */
.founder-quote {
  background: var(--white);
  padding: 96px 0;
}

.founder-quote-block {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: 0 16px;
}

.founder-quote-mark {
  display: block;
  font-family: var(--display);
  font-size: 120px;
  font-weight: 900;
  line-height: 0.6;
  color: var(--tan);
  opacity: 0.35;
  margin-bottom: 8px;
  height: 56px;
}

.founder-quote-text {
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--navy-dk);
  margin-bottom: 28px;
}

.founder-quote-cite {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.founder-quote-cite::before {
  content: '';
  width: 36px;
  height: 2px;
  background: var(--tan);
  margin-bottom: 14px;
}

.founder-quote-name {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.founder-quote-role {
  font-family: var(--body);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ─── STORY (asymmetric split) ─────────────────────── */
.about-story {
  background: var(--white);
  padding: 24px 0 112px;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 72px;
  align-items: start;
}

.about-story-aside {
  position: sticky;
  top: 104px;
}

.about-story-aside .section-title { margin-bottom: 0; }

.about-story-body {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.about-story-p {
  font-family: var(--body);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.78;
  color: var(--muted);
  max-width: 62ch;
}

.about-story-p:first-child {
  font-size: 19px;
  color: var(--text);
  font-weight: 400;
}

/* ─── VISION / MISSION / PURPOSE ───────────────────── */
.pillars {
  background: var(--off-white);
  padding: 104px 0 112px;
  position: relative;
  overflow: hidden;
}

/* angle cut from the white story section above */
.pillars::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 72px;
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, 100% 28%, 0 100%);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Tan-outline, NON-clickable boxes — deliberately static (no hover/lift)
   to read as informational, distinct from the homepage's clickable cards. */
.pillar-card {
  background: transparent;
  border: 1.5px solid var(--tan);
  border-radius: 16px;
  padding: 36px 32px 34px;
  position: relative;
}

.pillar-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  border: 1.5px solid var(--tan);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  background: rgba(196,176,148,0.08);
}

.pillar-icon {
  width: 26px;
  height: 26px;
  color: var(--tan-dk);
}

.pillar-label {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 800;
  color: var(--navy-dk);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.pillar-desc {
  font-family: var(--body);
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
}

/* ════════════════════════════════════════════════════
   MOTION LAYER  (rides the shared .reveal → .visible
   IntersectionObserver in home-page.js; no extra JS).
   Restraint: prose/cards use the plain opacity+rise reveal
   from home-page.css. Motion accents are reserved for the
   two moments that earn it — the pillar icons and the quote.
   ════════════════════════════════════════════════════ */

/* Pillar icons draw themselves once the card enters the viewport.
   Each shape carries pathLength="1", so a 1→0 dashoffset is one clean,
   synchronized draw regardless of whether it's a circle, path or polygon. */
.pillar-icon > * {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 0.8s var(--ease) 0.2s;
}
.pillar-card.visible .pillar-icon > * {
  stroke-dashoffset: 0;
}

/* Founder quote mark settles in from a deflated state (never from 0). */
.founder-quote-mark {
  transform-origin: left top;
  transform: scale(0.6);
  opacity: 0;
  transition: transform 0.6s var(--ease) 0.1s, opacity 0.45s var(--ease) 0.1s;
}
.founder-quote-block.visible .founder-quote-mark {
  transform: scale(1);
  opacity: 0.35;
}

/* Cite divider rule draws out from zero after the quote lands. */
.founder-quote-cite::before {
  width: 0;
  transition: width 0.55s var(--ease) 0.4s;
}
.founder-quote-block.visible .founder-quote-cite::before {
  width: 36px;
}

@media (prefers-reduced-motion: reduce) {
  .pillar-icon > *,
  .founder-quote-mark,
  .founder-quote-cite::before {
    transition: none;
  }
  .pillar-icon > * { stroke-dashoffset: 0; }
  .founder-quote-mark { transform: none; opacity: 0.35; }
  .founder-quote-cite::before { width: 36px; }
}

/* ─── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 900px) {
  .page-hero { padding: 140px 0 112px; }
  .about-story-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-story-aside { position: static; }
  .about-story { padding-bottom: 88px; }
  .pillars-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

@media (max-width: 600px) {
  .founder-quote { padding: 72px 0; }
  .founder-quote-mark { font-size: 88px; }
}
