/* ==========================================================================
   about-us.css  —  ABOUT US PAGE ONLY
   Used by : about_us.html
   Depends : style.css (design tokens, .glass-card, .heading, .divider,
             .subtext, .btn-outline, .btn-cta, .pull-quote, .text-highlight,
             .pillars-grid, .pillar-card, .pillar-card--featured,
             .leadership-track and the entire .leader-* family)

   NOTE: this file intentionally does NOT redefine any of the components
   listed above — they already exist in style.css and this page consumes
   them as-is. Only styles genuinely unique to the About Us layout live
   here (hero, inspiration/philosophy story blocks, trust & reach grid,
   closing CTA).
   ========================================================================== */


/* ─────────────────────────────────────────────────────────────────────────
   FOUNDING BELIEF + REGISTRATION DETAILS
   (Sits below the shared .page-hero — see style.css for that component.
   Both classes below are thin modifiers on already-shared components
   (.lead, .glass-panel), not full redefinitions, so nothing here
   restates a property that already lives in style.css.)
───────────────────────────────────────────────────────────────────────── */
.about-foundation.lead {
  max-width: 700px;
  margin: 0 auto 24px;
  color: var(--color-brown);
  font-size: 1.08rem;
}

.foundation-belief {
  display: block;
  margin: 20px auto;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.25rem, 2.6vw, 1.55rem);
  line-height: 1.5;
  color: var(--color-maroon);
  text-align: center;
}

.about-intro.glass-panel {
  max-width: 780px;
  margin: 0 auto;
  /* Warm gold tint (vs. the default white glass-panel background) to
     visually tie this box into the golden fund-integrity note inside it. */
  background: rgba(255, 245, 220, 0.7);
}

/* Slightly larger paragraph text than the global default, and a
   brown-tinted <strong> — both intentional visual choices for this one
   registration-details block, not a restatement of the global rules. */
.about-intro p {
  font-size: 1.08rem;
  line-height: 1.75;
  margin: 0;
}

.about-intro strong {
  color: var(--color-brown);
}

.fund-integrity-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
  background: rgba(255, 248, 235, 0.7);
  border: 1px solid rgba(217, 119, 6, 0.2);
  border-left: 4px solid var(--color-gold);
  border-radius: 10px;
  padding: 18px 22px;
  margin-top: 20px;
}

.fund-integrity-note i {
  color: var(--color-gold);
  font-size: 1.2rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.fund-integrity-note p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--color-brown);
}

.fund-integrity-link {
  display: inline-block;
  margin-top: 8px;
  font-weight: 700;
  color: var(--color-maroon);
  text-decoration: none;
  border-bottom: 1px solid rgba(128, 0, 32, 0.35);
}

.fund-integrity-link:hover {
  color: var(--color-orange);
  border-color: var(--color-orange);
}


/* ─────────────────────────────────────────────────────────────────────────
   SHARED SECTION WRAPPER
───────────────────────────────────────────────────────────────────────── */
.about-section {
  padding: 80px 20px;
}

.about-section.alt-bg {
  background: rgba(255, 248, 235, 0.55);
}


/* ─────────────────────────────────────────────────────────────────────────
   INSPIRATION — story blocks
───────────────────────────────────────────────────────────────────────── */
.story-block {
  max-width: 1150px;
  margin: 0 auto 32px;
  padding: 40px;
}

.story-block h3 {
  color: var(--color-maroon);
  margin-bottom: 16px;
}

.story-block p {
  color: var(--text-secondary);
  line-height: 1.8;
}

.story-split {
  display: flex;
  align-items: center;
  gap: 50px;
}

.story-split .text-col { flex: 1; }

.story-split .image-col {
  flex: 0 0 230px;
  text-align: center;
}

.story-split .image-col img {
  width: 100%;
  border-radius: 12px;
}

.story-split .year-label {
  display: block;
  margin-top: 10px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--color-brown);
}

/* Read-more collapse — CSS lives here; behavior is handled by the
   shared initExpandable() utility in script.js */
.inspiration-more {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.6s ease;
}

.inspiration-more.expanded {
  max-height: 3000px;
}

.inspiration-toggle-wrap {
  text-align: center;
  margin-top: 8px;
}


/* ─────────────────────────────────────────────────────────────────────────
   PHILOSOPHY — alternating image + text blocks
───────────────────────────────────────────────────────────────────────── */
.philosophy-block {
  max-width: 1150px;
  margin: 0 auto 32px;
  padding: 40px;
}

.philosophy-layout {
  display: flex;
  align-items: center;
  gap: 44px;
}

.philosophy-layout.reverse { flex-direction: row-reverse; }

.philosophy-layout .text-col { flex: 1; }

.philosophy-layout .text-col h5 {
  color: var(--color-maroon);
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.philosophy-layout .text-col p {
  color: var(--text-secondary);
  line-height: 1.75;
}

.philosophy-layout .image-col {
  flex: 1;
  text-align: center;
}

.philosophy-layout .image-col img {
  width: 100%;
  max-width: 400px;
  border-radius: 14px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.philosophy-block:hover .image-col img {
  transform: scale(1.03);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.philosophy-layout .image-col p {
  font-size: 0.88rem;
  margin-top: 10px;
  color: var(--text-secondary);
}


/* ─────────────────────────────────────────────────────────────────────────
   TRUST & REACH
───────────────────────────────────────────────────────────────────────── */
.trust-reach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 30px;
  align-items: stretch;
}

.trust-reach-col {
  display: flex;
  flex-direction: column;
  padding: 34px 30px;
  text-align: center;
}

.trust-reach-col h3 {
  color: var(--color-maroon);
  font-size: 1.15rem;
  margin-bottom: 14px;
}

.trust-reach-col p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.trust-reach-col .btn-outline {
  margin-top: auto;
  align-self: center;
}

.reach-grid-compact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.reach-grid-compact .reach-card {
  background: rgba(255, 248, 235, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  padding: 16px 8px;
}

.reach-grid-compact .reach-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  font-weight: 700;
  color: var(--color-maroon);
  margin-bottom: 4px;
}

.reach-grid-compact .reach-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  color: var(--text-secondary);
  line-height: 1.3;
}


/* ─────────────────────────────────────────────────────────────────────────
   CLOSING CTA
───────────────────────────────────────────────────────────────────────── */
.about-closing-cta {
  text-align: center;
  padding: 70px 20px 90px;
  background: linear-gradient(135deg, #fdf6f0, #f7f1e8);
}

.about-closing-cta h2 {
  color: var(--color-maroon);
  margin-bottom: 14px;
}

.about-closing-cta p {
  max-width: 600px;
  margin: 0 auto 30px;
  color: var(--text-secondary);
  text-align: center;
}

.about-closing-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}


/* ─────────────────────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────────────────────── */
@media (max-width: 992px) {
  .story-split,
  .philosophy-layout,
  .philosophy-layout.reverse { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  .about-section { padding: 60px 16px; }

  .story-block,
  .philosophy-block { padding: 26px 20px; margin-bottom: 20px; }

  .trust-reach-grid   { grid-template-columns: 1fr; gap: 16px; }
  .about-closing-cta  { padding: 55px 16px 70px; }
}

@media (prefers-reduced-motion: reduce) {
  .inspiration-more,
  .philosophy-layout .image-col img {
    transition: none;
  }
}