/* =========================================================
   THE N.O.A.H. FOUNDATION — SHARED STYLES
   Brand-faithful: Montserrat + Open Sans, official palette.
   ========================================================= */

/* ---------- TOKENS ---------- */
:root {
  /* Primary palette */
  --foundation-blue: #408ABF;
  --foundation-blue-dark: #2F6FA0;
  --foundation-blue-deep: #1F4E78;
  --hope-coral: #E8705A;
  --hope-coral-dark: #C95844;
  --growth-green: #80D0A0;
  --growth-green-dark: #5BB07F;

  /* Neutrals */
  --deep-navy: #1A1A2E;
  --warm-gray: #6B7280;
  --warm-gray-light: #9CA3AF;
  --cloud: #F5F6FA;
  --white: #FFFFFF;

  /* Tints */
  --sky-tint: #E8F4FD;
  --coral-tint: #FFF0ED;
  --mint-tint: #E8F8F0;

  /* Type */
  --font-heading: 'Montserrat', Calibri, Arial, sans-serif;
  --font-body: 'Open Sans', Calibri, Arial, sans-serif;

  /* Spacing scale (8px) */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;

  /* Layout */
  --max-width: 1240px;
  --section-pad: clamp(4rem, 9vw, 7.5rem);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(26, 26, 46, 0.06);
  --shadow-md: 0 8px 24px rgba(26, 26, 46, 0.08);
  --shadow-lg: 0 20px 50px rgba(26, 26, 46, 0.12);
  --shadow-blue: 0 12px 30px rgba(64, 138, 191, 0.25);
  --shadow-coral: 0 12px 30px rgba(232, 112, 90, 0.25);

  /* Transitions */
  --t-fast: 0.18s ease;
  --t-base: 0.28s ease;
  --t-slow: 0.5s ease;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--deep-navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
picture { display: contents; } /* WebP <picture> wrappers stay layout-transparent */
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
a { color: var(--foundation-blue); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--hope-coral); }
:focus-visible {
  outline: 3px solid var(--foundation-blue);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ---------- TYPE ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--deep-navy);
  line-height: 1.2;
  letter-spacing: -0.015em;
  font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.25rem); line-height: 1.05; letter-spacing: -0.025em; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.08; letter-spacing: -0.02em; }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); }
h4 { font-size: 1.15rem; }

.h-italic { font-style: italic; font-weight: 500; color: var(--foundation-blue); }
.h-coral { color: var(--hope-coral); }
.h-green { color: var(--growth-green-dark); }

p { color: var(--deep-navy); }
.lead { color: var(--warm-gray); line-height: 1.7; }
.muted { color: var(--warm-gray); }

/* Spacing between H1/H2 and the paragraph that follows */
h1 + p, h2 + p, h1 + .lead, h2 + .lead { margin-top: 1.5rem; }
small, .small { font-size: 0.85rem; color: var(--warm-gray); }

/* ---------- LAYOUT ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }

.section { padding: var(--section-pad) 0; }
.section-tight { padding: clamp(3rem, 6vw, 5rem) 0; }
.bg-cloud { background: var(--cloud); }
.bg-sky { background: var(--sky-tint); }
.bg-coral { background: var(--coral-tint); }
.bg-mint { background: var(--mint-tint); }
.bg-navy { background: var(--deep-navy); color: var(--white); }
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4, .bg-navy p { color: var(--white); }

/* Tighten the gap when two consecutive sections share the same background.
   Why: full --section-pad on both sides creates ~240px of empty space that reads as a layout gap, not a section break. */
.section.bg-cloud + .section.bg-cloud,
.section.bg-sky + .section.bg-sky,
.section.bg-coral + .section.bg-coral,
.section.bg-mint + .section.bg-mint,
.section.grant-becomes + .section:not([class*="bg-"]) {
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
}
.section.bg-cloud:has(+ .section.bg-cloud),
.section.bg-sky:has(+ .section.bg-sky),
.section.bg-coral:has(+ .section.bg-coral),
.section.bg-mint:has(+ .section.bg-mint),
.section.grant-becomes:has(+ .section:not([class*="bg-"])) {
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.text-center { text-align: center; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--foundation-blue);
  margin-bottom: 1.25rem;
}
.eyebrow.coral { color: var(--hope-coral); }
.eyebrow.white { color: rgba(255, 255, 255, 0.85); }
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px; height: 2px;
  background: currentColor;
  vertical-align: middle;
  margin-right: 0.85rem;
  margin-bottom: 0.2em;
}

.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 1.5rem; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: all var(--t-base);
  cursor: pointer;
  white-space: nowrap;
}
.btn .arrow { transition: transform var(--t-base); display: inline-block; }
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary { background: var(--foundation-blue); color: var(--white); border-color: var(--foundation-blue); }
.btn-primary:hover { background: var(--foundation-blue-dark); border-color: var(--foundation-blue-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-blue); }

.btn-coral { background: var(--hope-coral); color: var(--white); border-color: var(--hope-coral); }
.btn-coral:hover { background: var(--hope-coral-dark); border-color: var(--hope-coral-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-coral); }

.btn-navy { background: var(--deep-navy); color: var(--white); border-color: var(--deep-navy); }
.btn-navy:hover { background: var(--foundation-blue); border-color: var(--foundation-blue); color: var(--white); transform: translateY(-2px); }

.btn-outline { background: transparent; color: var(--deep-navy); border-color: rgba(26, 26, 46, 0.2); }
.btn-outline:hover { border-color: var(--deep-navy); color: var(--deep-navy); transform: translateY(-2px); }

.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.4); }
.btn-outline-white:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--white); color: var(--white); transform: translateY(-2px); }

.btn-ghost { background: transparent; color: var(--foundation-blue); border-color: transparent; padding-left: 0; padding-right: 0; }
.btn-ghost:hover { color: var(--hope-coral); }

.btn-block { width: 100%; justify-content: center; }
.btn-lg { padding: 1.1rem 2rem; font-size: 1rem; }

/* ---------- TOP BAR ---------- */
.topbar {
  background: var(--deep-navy);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  padding: 0.55rem 0;
  letter-spacing: 0.04em;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem; }
.topbar a { color: rgba(255, 255, 255, 0.9); margin-left: 1.5rem; }
.topbar a:hover { color: var(--white); }
.topbar .promise {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-heading); font-weight: 600;
}
.topbar .promise::before {
  content: "";
  display: inline-block;
  width: 22px; height: 2px;
  background: linear-gradient(90deg, var(--foundation-blue), var(--hope-coral), var(--growth-green));
}
.infinity-mark { font-size: 0.95rem; opacity: 0.8; }

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(26, 26, 46, 0.07);
  transition: box-shadow var(--t-base);
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1.5rem;
}
.brand { display: inline-flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.nav .brand-logo { height: 44px; }
.brand-logo {
  height: 50px;
  width: auto;
  max-width: 260px;
  display: block;
}
.nav .brand-text { font-size: 0.95rem; }
.brand-mark { width: 48px; height: auto; flex-shrink: 0; }
.brand-text {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--deep-navy);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.brand-text strong { font-weight: 700; }
.brand-text small {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--warm-gray);
  letter-spacing: 0.06em;
  margin-top: 1px;
}
@media (max-width: 540px) {
  .brand-logo { height: 42px; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 2.5vw, 2.5rem);
}
.nav-links a {
  color: var(--deep-navy);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  position: relative;
  padding: 0.4rem 0;
}
.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  height: 2px;
  width: 0;
  background: var(--foundation-blue);
  transition: width var(--t-base);
}
.nav-links a:not(.nav-cta):hover::after,
.nav-links a.active:not(.nav-cta)::after { width: 100%; }
.nav-links a.active { color: var(--foundation-blue); }

.nav-links a.nav-cta {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
  background: var(--hope-coral);
  color: var(--white);
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  font-size: 0.85rem;
  line-height: 1;
  transition: all var(--t-base);
}
.nav-links a.nav-cta::after { display: none; }
.nav-links a.nav-cta:hover { background: var(--hope-coral-dark); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-coral); }

.hamburger {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--deep-navy);
  margin: 5px 0;
  transition: all var(--t-base);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO (HOME) ---------- */
.hero-home {
  position: relative;
  min-height: clamp(580px, 86vh, 800px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(135deg, #FBF7F2 0%, #FDFAF6 55%, #F6F2EB 100%);
  color: var(--deep-navy);
}
/* Subtle dot texture in the cream area */
.hero-home-texture {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at center, rgba(26, 26, 46, 0.08) 1px, transparent 1.5px);
  background-size: 22px 22px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
  mask-image: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.55) 30%, rgba(0,0,0,0) 50%);
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.55) 30%, rgba(0,0,0,0) 50%);
}
/* Photo stage — full-bleed on the right edge, no frame */
.hero-home-photo-stage {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: min(58vw, 900px);
  z-index: 0;
}
.hero-home .hero-home-photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-home .hero-home-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 16%;
  filter: saturate(0.98) contrast(1.02);
}
/* Cream-to-transparent wash over the left edge of the photo so the headline stays readable */
.hero-home::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      #FBF7F2 0%,
      #FBF7F2 44%,
      rgba(251, 247, 242, 0.78) 48%,
      rgba(251, 247, 242, 0.38) 52%,
      rgba(251, 247, 242, 0.10) 56%,
      rgba(251, 247, 242, 0.00) 58%);
}
.hero-home-swirl {
  position: absolute;
  right: -5%;
  bottom: -8%;
  width: 55%;
  max-width: 720px;
  height: auto;
  z-index: 1;
  pointer-events: none;
  opacity: 0.85;
}
.hero-home .container {
  position: relative;
  z-index: 2;
  max-width: none;
  margin: 0;
  width: 100%;
  padding-top: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  padding-left: max(1.5rem, 5vw);
  padding-right: 0;
}
.hero-home-content {
  max-width: 580px;
  margin: 0;
  text-align: left;
}
.hero-home-content > * { text-align: left; }

.hero-home .eyebrow,
.hero-home .eyebrow-green {
  color: var(--growth-green-dark);
  margin-bottom: 1rem;
}
.hero-home .eyebrow::before,
.hero-home .eyebrow-green::before { background: var(--growth-green-dark); }

/* Editorial eyebrow — hairline rule + small caps */
.hero-editorial-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}
.hee-rule {
  flex-shrink: 0;
  width: 36px;
  height: 1px;
  background: var(--growth-green-dark);
}
.hee-text {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--growth-green-dark);
  line-height: 1;
}

.hero-home h1 {
  color: var(--deep-navy);
  font-size: clamp(2.1rem, 4.4vw, 3.25rem);
  font-weight: 700;
  font-style: normal;
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: 1.4rem;
  max-width: none;
}
.hero-home h1 em { font-style: normal; }

/* Secondary headline line — weight contrast, same color family */
.h1-secondary {
  display: block;
  font-weight: 400;
  color: var(--deep-navy);
  margin-top: 0.18em;
  letter-spacing: -0.025em;
}

/* Coral highlighter swipe behind "limits" */
.underline-word {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  background: linear-gradient(180deg, transparent 62%, rgba(232, 112, 90, 0.32) 62%, rgba(232, 112, 90, 0.32) 92%, transparent 92%);
  padding: 0 0.08em;
}
.hero-home h1 em {
  display: block;
  font-style: italic;
  font-weight: 500;
  color: var(--growth-green-dark);
  margin-top: 0.2em;
  white-space: nowrap;
}
@media (max-width: 720px) {
  .hero-home h1 em { white-space: normal; }
}
.hero-home p.lead {
  color: var(--warm-gray);
  max-width: 32rem;
  font-size: clamp(0.92rem, 1.1vw, 1rem);
  line-height: 1.7;
  margin-bottom: 1.85rem;
}

/* Trust microcopy below CTAs */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
  margin-top: 1.85rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(26, 26, 46, 0.10);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--warm-gray);
  max-width: 36rem;
}
.hero-trust-pipe {
  display: inline-block;
  width: 1px;
  height: 12px;
  background: rgba(26, 26, 46, 0.18);
}

@media (max-width: 860px) {
  .hero-home-texture { display: none; }
  .hero-home::after { display: none; }
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.hero-cta .btn-outline {
  background: var(--white);
  border-color: rgba(26, 26, 46, 0.14);
  box-shadow: 0 2px 8px rgba(26, 26, 46, 0.04);
}
.hero-cta .btn-outline:hover {
  background: var(--white);
  border-color: var(--deep-navy);
}

/* ===== Home hero — pill stat cards (horizontal layout) ===== */
.hero-home-stats {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 640px;
}
.hero-home-stats .hero-stat-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-align: left;
  padding: 0.95rem 1.1rem;
  background: var(--white);
  border: 1px solid rgba(26, 26, 46, 0.06);
  border-radius: var(--radius);
  box-shadow: 0 6px 20px rgba(26, 26, 46, 0.06);
}
.hero-home-stats .hero-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(26, 26, 46, 0.09);
}
.hero-home-stats .hero-stat-card .icon {
  margin: 0;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
}
.hero-home-stats .hero-stat-card .icon svg { width: 20px; height: 20px; }
.hero-home-stats .hero-stat-card .text { display: flex; flex-direction: column; gap: 0.2rem; min-width: 0; }
.hero-home-stats .hero-stat-card .num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--deep-navy);
  line-height: 1;
  letter-spacing: -0.01em;
  white-space: nowrap;
  margin: 0;
}
.hero-home-stats .hero-stat-card .lab {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--warm-gray);
}

@media (max-width: 1100px) {
  .hero-home-photo-stage { width: 52vw; }
  .hero-home-content { max-width: 520px; }
}
@media (max-width: 860px) {
  .hero-home {
    min-height: auto;
    padding-bottom: 0;
    flex-direction: column;
    align-items: stretch;
  }
  .hero-home > .container { order: 1; }
  .hero-home-photo-stage {
    position: static;
    width: 100%;
    order: 2;
    margin-top: 1.75rem;
  }
  .hero-home .hero-home-photo {
    position: relative;
    top: auto; right: auto; bottom: auto;
    width: 100%;
    height: clamp(320px, 70vw, 480px);
    margin: 0 clamp(1.25rem, 4vw, 2rem);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: 0 22px 44px rgba(26, 26, 46, 0.10);
  }
  .hero-home .hero-home-photo img { object-position: center 28%; }
  .hero-home-content { max-width: 100%; }
  .hero-home-stats { max-width: 100%; }
  .hero-home-swirl { display: none; }
}
@media (max-width: 540px) {
  .hero-home-stats { grid-template-columns: 1fr; }
  .hero-cta .btn { justify-content: center; flex: 1 1 auto; }
}

/* ---------- HERO (SECONDARY) ---------- */
.hero-page {
  position: relative;
  padding: clamp(2rem, 4vw, 3.5rem) 0 clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(ellipse 60% 60% at 80% 20%, rgba(232, 112, 90, 0.10), transparent 60%),
    radial-gradient(ellipse 60% 60% at 15% 80%, rgba(64, 138, 191, 0.10), transparent 60%),
    var(--white);
  overflow: hidden;
}
.hero-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 26, 46, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 26, 46, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 80%);
  pointer-events: none;
}
.hero-page .container { position: relative; z-index: 1; }
.hero-page h1 em { font-style: italic; font-weight: 400; color: var(--foundation-blue); }
.hero-page .lead { margin-top: 1.5rem; max-width: 40rem; }

.hero-page-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero-page-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(26, 26, 46, 0.12);
}
.hero-page-meta-item { display: flex; flex-direction: column; gap: 0.2rem; }
.hero-page-meta-item .num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--foundation-blue);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.hero-page-meta-item .lab {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--warm-gray);
}

.hero-page-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-page-visual::before {
  content: "";
  position: absolute;
  inset: 12%;
  background: radial-gradient(circle, rgba(64, 138, 191, 0.10), transparent 65%);
  border-radius: 50%;
  filter: blur(24px);
  pointer-events: none;
}
.hero-logo-mark {
  position: relative;
  width: 82%;
  height: auto;
  max-width: 440px;
  filter: drop-shadow(0 12px 28px rgba(64, 138, 191, 0.14));
}

/* ===== About hero — layout + background ===== */
.hero-about {
  padding: clamp(2.8rem, 5vw, 4.8rem) 0 clamp(4.2rem, 7vw, 6.6rem);
  background:
    radial-gradient(circle at 10% 16%, rgba(64, 138, 191, 0.07), transparent 22%),
    radial-gradient(circle at 92% 18%, rgba(232, 112, 90, 0.07), transparent 17%),
    radial-gradient(circle at 54% 100%, rgba(168, 210, 235, 0.26), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
}
.hero-about::before {
  background-image:
    linear-gradient(rgba(26, 26, 46, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 26, 46, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, black 12%, rgba(0, 0, 0, 0.72) 100%);
}
.hero-about::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(232, 244, 253, 0.54));
  pointer-events: none;
}
.hero-about .container {
  position: relative;
  z-index: 1;
}
.hero-about-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, 0.88fr);
  gap: clamp(2.5rem, 4vw, 5rem);
  align-items: center;
}
.hero-about-text {
  max-width: 46rem;
  padding-top: clamp(0.35rem, 1vw, 1rem);
}
.hero-about .crumbs {
  margin-bottom: 1.8rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}
.hero-about .crumbs a,
.hero-about .crumbs .cur { font-weight: 700; }
.hero-about-title {
  max-width: none;
  font-size: clamp(2.95rem, 5vw, 4.65rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}
.hero-about-title-line {
  display: block;
  white-space: nowrap;
}
.hero-about-title-accent {
  margin-top: 0.18em;
  color: var(--foundation-blue);
}
.hero-about-title-accent em {
  font-style: italic;
  font-weight: 500;
  color: inherit;
}
.hero-about-lead {
  max-width: 34rem;
  margin-top: 1.55rem;
  font-size: clamp(1rem, 1.05vw, 1.12rem);
  line-height: 1.68;
  color: #5f6d85;
}

/* ===== About hero — stat cards (left) ===== */
.hero-stat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.4rem;
  max-width: 39rem;
}
.hero-stat-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.93));
  border: 1px solid rgba(64, 138, 191, 0.08);
  border-radius: 24px;
  padding: 1.5rem 1.15rem 1.35rem;
  text-align: center;
  box-shadow: 0 18px 38px rgba(26, 26, 46, 0.07);
  transition: transform var(--t-base), box-shadow var(--t-base);
  backdrop-filter: blur(8px);
}
.hero-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 44px rgba(26, 26, 46, 0.1);
}
.hero-stat-card .icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.hero-stat-card .icon svg { width: 28px; height: 28px; }
.hero-stat-card .icon-blue {
  background: rgba(232, 244, 253, 0.96);
  border-color: rgba(64, 138, 191, 0.16);
  color: var(--foundation-blue);
}
.hero-stat-card .icon-green {
  background: rgba(232, 248, 240, 0.98);
  border-color: rgba(91, 176, 127, 0.18);
  color: var(--growth-green-dark);
}
.hero-stat-card .icon-coral {
  background: rgba(255, 240, 237, 0.98);
  border-color: rgba(232, 112, 90, 0.18);
  color: var(--hope-coral);
}
.hero-stat-card .num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.3rem, 1.75vw, 1.8rem);
  color: var(--foundation-blue);
  line-height: 1;
  margin-bottom: 0.55rem;
  letter-spacing: -0.025em;
  white-space: nowrap;
}
.hero-stat-card:nth-child(2) .num { color: var(--growth-green-dark); }
.hero-stat-card:nth-child(3) .num { color: var(--hope-coral); }
.hero-stat-card .lab {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--warm-gray);
}

/* ===== About hero — visual (right) ===== */
.hero-about-visual {
  position: relative;
  aspect-ratio: 1 / 0.9;
  width: min(100%, 39rem);
  margin-left: auto;
  padding: 0 0 9% 3%;
  overflow: visible;
}
.hero-about-ring {
  position: absolute;
  top: 2%;
  right: 0;
  width: 92%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 22px solid rgba(194, 223, 239, 0.82);
  background: radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.9), rgba(232, 244, 253, 0.22) 72%, transparent 73%);
  box-shadow: 0 28px 54px rgba(168, 210, 235, 0.18);
  z-index: 1;
}
.hero-about-photo {
  position: absolute;
  top: 12%;
  right: 6%;
  width: 76%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow:
    0 30px 60px rgba(64, 138, 191, 0.16),
    0 10px 24px rgba(26, 26, 46, 0.06);
  background: var(--cloud);
  z-index: 2;
}
.hero-about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 50%;
}
.hero-about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 58%, rgba(64, 138, 191, 0.12) 100%);
  pointer-events: none;
}

.hero-about-logo {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-48%);
  width: 39%;
  max-width: 235px;
  height: auto;
  filter: drop-shadow(0 14px 26px rgba(26, 26, 46, 0.18));
  z-index: 5;
}

/* Decorative leaves on left & right edges of photo */
.deco-leaves {
  position: absolute;
  width: 19%;
  max-width: 118px;
  height: auto;
  z-index: 3;
  pointer-events: none;
}
.deco-leaves-left {
  left: 2%;
  bottom: 16%;
  top: auto;
  opacity: 0.8;
}
.deco-leaves-right {
  right: -2%;
  bottom: 12%;
  top: auto;
  opacity: 0.72;
}

/* Decorative wave just below photo arch */
.hero-about-wave {
  position: absolute;
  left: -12%;
  bottom: 0;
  width: 120%;
  height: 16%;
  z-index: 4;
  pointer-events: none;
  opacity: 0.86;
}

/* Decorative hearts floating around photo */
.deco-heart {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 4px 8px rgba(26, 26, 46, 0.10));
}
.deco-heart-1 { top: 18%; left: 14%; width: 24px; opacity: 0.66; }
.deco-heart-2 { top: 11%; right: 8%; width: 34px; opacity: 0.68; }
.deco-heart-3 { top: 26%; left: 24%; width: 18px; opacity: 0.48; }

@media (max-width: 980px) {
  .hero-about-grid {
    grid-template-columns: 1fr;
    gap: 2.6rem;
    align-items: start;
  }
  .hero-about-text {
    max-width: 100%;
    padding-top: 0;
  }
  .hero-about-title {
    max-width: 9.5em;
    font-size: clamp(2.95rem, 7vw, 4.4rem);
  }
  .hero-about-lead { max-width: 38rem; }
  .hero-stat-cards { max-width: 42rem; }
  .hero-about-visual {
    margin: 0 auto;
    width: min(100%, 34rem);
    aspect-ratio: 1 / 0.96;
    padding-left: 0;
    padding-bottom: 12%;
  }
}
@media (max-width: 820px) {
  .hero-about {
    padding-bottom: clamp(3.5rem, 9vw, 5rem);
  }
  .hero-about-grid { gap: 2.25rem; }
  .hero-about-title {
    font-size: clamp(2.75rem, 8vw, 4rem);
    max-width: 9.2em;
    line-height: 0.96;
  }
  .hero-about-visual {
    width: min(100%, 32rem);
    aspect-ratio: 1 / 1.02;
  }
  .hero-about-ring {
    width: 92%;
    border-width: 20px;
  }
  .hero-about-photo {
    width: 80%;
    right: 5%;
  }
}
@media (max-width: 680px) {
  .hero-stat-cards {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .hero-about-visual {
    width: min(100%, 27rem);
    padding-bottom: 18%;
  }
  .hero-about-logo {
    width: 48%;
    bottom: 3%;
  }
}
@media (max-width: 540px) {
  .hero-about::before { background-size: 56px 56px; }
  .hero-about .crumbs {
    margin-bottom: 1.35rem;
    font-size: 0.74rem;
  }
  .hero-about-title {
    font-size: clamp(2.35rem, 11vw, 3.15rem);
    line-height: 0.96;
  }
  .hero-about-title-line { white-space: normal; }
  .hero-about-lead {
    font-size: 1rem;
    line-height: 1.68;
  }
  .hero-stat-card {
    border-radius: 22px;
    padding: 1.35rem 1rem 1.25rem;
  }
  .hero-stat-card .icon {
    width: 58px;
    height: 58px;
    margin-bottom: 1rem;
  }
  .hero-about-visual {
    width: 100%;
    aspect-ratio: 1 / 1.04;
    padding-bottom: 22%;
  }
  .hero-about-ring {
    width: 96%;
    border-width: 16px;
  }
  .hero-about-photo {
    top: 9%;
    right: 6%;
    width: 82%;
  }
  .hero-about-wave {
    left: -18%;
    width: 132%;
    height: 22%;
    bottom: 4%;
  }
  .hero-about-logo {
    width: 56%;
    bottom: 4%;
  }
  .deco-leaves-right,
  .deco-heart-3 { display: none; }
  .deco-leaves-left {
    left: -1%;
    bottom: 20%;
    width: 18%;
  }
  .deco-heart-1 { top: 12%; left: 10%; width: 20px; }
  .deco-heart-2 { top: 9%; right: 7%; width: 28px; }
}
@media (max-width: 420px) {
  .hero-about-title { max-width: 9em; }
  .hero-about-visual { padding-bottom: 24%; }
  .hero-about-logo {
    width: 60%;
    bottom: 5%;
  }
}
.crumbs {
  display: flex;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--warm-gray);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.crumbs a { color: var(--warm-gray); }
.crumbs a:hover { color: var(--foundation-blue); }
.crumbs span.sep { opacity: 0.5; }
.crumbs span.cur { color: var(--foundation-blue); }

/* ---------- TWO-COL ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.two-col.start { align-items: start; }
.two-col.weighted { grid-template-columns: 1.15fr 1fr; }
.two-col.weighted-r { grid-template-columns: 1fr 1.15fr; }
.two-col > * { min-width: 0; }

/* ---------- IMAGE BLOCKS ---------- */
.img-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--cloud);
}
.img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.img-card:hover img { transform: scale(1.04); }
.img-card.aspect-4-5 { aspect-ratio: 4 / 5; }
.img-card.aspect-3-4 { aspect-ratio: 3 / 4; }
.img-card.aspect-1-1 { aspect-ratio: 1 / 1; }
.img-card.aspect-16-10 { aspect-ratio: 16 / 10; }

.img-stack {
  position: relative;
  aspect-ratio: 1 / 1.05;
}
.img-stack .img-card { position: absolute; }
.img-stack .s1 { top: 0; left: 0; width: 72%; height: 62%; z-index: 1; }
.img-stack .s2 { bottom: 0; right: 0; width: 64%; height: 52%; z-index: 2; }
.img-stack .s3 {
  top: auto;
  bottom: 6%;
  left: 0;
  width: 36%;
  height: 32%;
  z-index: 3;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
  border-radius: var(--radius);
}

/* Meet Noah — bias framing so heads are not cropped */
#noah .img-stack .s1 img,
#noah .img-stack .s2 img { object-position: center 12%; }
#noah .img-stack .s3 img { object-position: center 25%; }

.noah-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1.1fr 0.9fr;
  gap: 0.85rem;
  aspect-ratio: 1 / 1.1;
}
.noah-collage .img-card { margin: 0; height: 100%; }
.noah-collage .noah-c1 { grid-column: 1 / 2; grid-row: 1 / 3; }
.noah-collage .noah-c2 { grid-column: 2 / 3; grid-row: 1 / 2; }
.noah-collage .noah-c3 { grid-column: 2 / 3; grid-row: 2 / 3; }
@media (max-width: 540px) {
  .noah-collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    aspect-ratio: auto;
  }
  .noah-collage .noah-c1 { grid-column: 1 / 3; grid-row: 1 / 2; aspect-ratio: 4 / 3; }
  .noah-collage .noah-c2,
  .noah-collage .noah-c3 { aspect-ratio: 1 / 1; }
  .noah-collage .noah-c2 { grid-column: 1 / 2; grid-row: 2 / 3; }
  .noah-collage .noah-c3 { grid-column: 2 / 3; grid-row: 2 / 3; }
}

.img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1.25rem 1rem;
  background: linear-gradient(to top, rgba(26, 26, 46, 0.85), transparent);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ---------- CARDS ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.card {
  background: var(--white);
  border: 1px solid rgba(26, 26, 46, 0.07);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(64, 138, 191, 0.3); }
.card .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  background: var(--sky-tint);
  color: var(--foundation-blue);
}
.card .icon.coral { background: var(--coral-tint); color: var(--hope-coral); }
.card .icon.green { background: var(--mint-tint); color: var(--growth-green-dark); }
.card .icon.navy { background: var(--deep-navy); color: var(--white); }
.card h4 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.card p { font-size: 0.95rem; color: var(--warm-gray); line-height: 1.6; }

.card-bordered { border-left: 4px solid var(--foundation-blue); }
.card-bordered.coral { border-left-color: var(--hope-coral); }
.card-bordered.green { border-left-color: var(--growth-green); }

/* ---------- WHY PROFOUND AUTISM ---------- */
.why-prose {
  margin-top: 2rem;
}
.why-prose p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  line-height: 1.85;
  margin-bottom: 1.4rem;
}
.why-prose p:last-child { margin-bottom: 0; }
.why-prose strong {
  color: var(--growth-green);
  font-weight: 600;
}

/* ---------- VALUES STRIP ---------- */
.values-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.value-card {
  padding: 2.5rem 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  transition: background var(--t-base);
}
.value-card:last-child { border-right: 0; }
.value-card:hover { background: rgba(255, 255, 255, 0.04); }
.value-num {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.85rem;
}
.value-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 1.25rem;
  color: var(--hope-coral);
}
.value-card:nth-child(2) .value-icon { color: var(--foundation-blue); }
.value-card:nth-child(3) .value-icon { color: var(--growth-green); }
.value-card:nth-child(4) .value-icon { color: var(--hope-coral); }
.value-card:nth-child(5) .value-icon { color: var(--growth-green); }
.value-card h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.65rem;
  font-style: italic;
  font-weight: 500;
}
.value-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

/* ---------- TIMELINE ---------- */
.timeline {
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 0; top: 0.4rem; bottom: 0.4rem;
  width: 2px;
  background: linear-gradient(180deg, var(--foundation-blue), var(--hope-coral), var(--growth-green));
}
.tl-item {
  position: relative;
  padding-bottom: 2rem;
  padding-left: 1.5rem;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: "";
  position: absolute;
  left: -2.5rem; top: 0.45rem;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--foundation-blue);
  box-shadow: 0 0 0 4px rgba(64, 138, 191, 0.12);
}
.tl-item:nth-child(2)::before { border-color: var(--hope-coral); box-shadow: 0 0 0 4px rgba(232, 112, 90, 0.12); }
.tl-item:nth-child(3)::before { border-color: var(--growth-green); box-shadow: 0 0 0 4px rgba(128, 208, 160, 0.18); }
.tl-item:nth-child(4)::before { border-color: var(--foundation-blue); box-shadow: 0 0 0 4px rgba(64, 138, 191, 0.12); }
.tl-age {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--foundation-blue);
  margin-bottom: 0.35rem;
}
.tl-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--deep-navy);
  margin-bottom: 0.4rem;
}
.tl-desc { font-size: 0.95rem; color: var(--warm-gray); line-height: 1.65; }

/* ---------- QUOTE ---------- */
.quote-card {
  background: var(--white);
  padding: 2.25rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--hope-coral);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.quote-card::before {
  content: """;
  position: absolute;
  top: -10px;
  left: 1.5rem;
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 1;
  color: var(--hope-coral);
  opacity: 0.25;
}
.quote-card .quote-text {
  font-style: italic;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--deep-navy);
  margin: 0 0 1rem;
  font-family: var(--font-heading);
}
.quote-card .quote-author {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--warm-gray);
  font-weight: 500;
}

/* ---------- GRANT AMOUNT BLOCK ---------- */
.grant-amount {
  background: linear-gradient(135deg, var(--deep-navy) 0%, #2A2A4A 100%);
  color: var(--white);
  padding: 3rem 2.5rem;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.grant-amount::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(232, 112, 90, 0.22), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(128, 208, 160, 0.18), transparent 50%);
  pointer-events: none;
}
.grant-amount > * { position: relative; z-index: 1; }
.grant-amount .label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}
.grant-amount .amount {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  line-height: 1;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}
.grant-amount .amount .currency {
  font-size: 0.5em;
  vertical-align: super;
  color: var(--hope-coral);
  margin-right: 0.05em;
}
.grant-amount .amount .dash {
  color: var(--growth-green);
  font-weight: 400;
  margin: 0 0.15em;
}
.grant-amount .desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.65;
}
.grant-amount .meta {
  display: flex;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  flex-wrap: wrap;
}
.grant-amount .meta-item .n {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--growth-green);
  line-height: 1;
}
.grant-amount .meta-item .t {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.25rem;
}

/* ---------- CHECK LIST ---------- */
.check-list { display: flex; flex-direction: column; gap: 0.1rem; }
.check-list h5 {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--foundation-blue);
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}
.check-list h5:first-child { margin-top: 0; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.85rem 0;
  border-bottom: 1px dashed rgba(26, 26, 46, 0.1);
  font-size: 1rem;
  color: var(--deep-navy);
}
.check-list li:last-child { border-bottom: 0; }
.check-list li .check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--mint-tint);
  color: var(--growth-green-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.78rem;
  margin-top: 1px;
}

/* ---------- PROCESS STEPS ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.step {
  background: var(--white);
  padding: 2.25rem 1.5rem;
  border-radius: var(--radius);
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-base);
}
.step:hover { transform: translateY(-6px); }
.step-num {
  position: absolute;
  top: -1rem;
  left: 1.5rem;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  background: var(--foundation-blue);
}
.step:nth-child(2) .step-num { background: var(--hope-coral); }
.step:nth-child(3) .step-num { background: var(--growth-green-dark); }
.step:nth-child(4) .step-num { background: var(--deep-navy); }
.step h4 { margin: 1.25rem 0 0.4rem; font-size: 1.05rem; }
.step .date {
  font-family: var(--font-heading);
  font-weight: 600;
  font-style: italic;
  color: var(--growth-green-dark);
  font-size: 0.92rem;
  margin-bottom: 0.6rem;
}
.step p { font-size: 0.92rem; color: var(--warm-gray); line-height: 1.6; }

/* ---------- IMPACT TIERS ---------- */
.tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.tier {
  background: var(--white);
  border: 1px solid rgba(26, 26, 46, 0.08);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  position: relative;
}
.tier:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--foundation-blue); }
.tier.featured { border-color: var(--hope-coral); background: var(--coral-tint); }
.tier.featured::before {
  content: "Most Common";
  position: absolute;
  top: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--hope-coral);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
}
.tier .amt {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.25rem;
  color: var(--foundation-blue);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.tier.featured .amt { color: var(--hope-coral); }
.tier .amt .cur { font-size: 0.55em; vertical-align: super; opacity: 0.7; }
.tier .lab {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--warm-gray);
  margin-bottom: 1rem;
}
.tier p { font-size: 0.92rem; color: var(--warm-gray); line-height: 1.55; }

/* ---------- ACCORDION ---------- */
.accordion { border-top: 1px solid rgba(26, 26, 46, 0.1); }
.accordion details {
  border-bottom: 1px solid rgba(26, 26, 46, 0.1);
}
.accordion summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--deep-navy);
  cursor: pointer;
  list-style: none;
  transition: color var(--t-fast);
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary:hover { color: var(--foundation-blue); }
.accordion summary::after {
  content: "+";
  font-size: 1.6rem;
  color: var(--foundation-blue);
  transition: transform var(--t-base);
  font-weight: 400;
  line-height: 1;
}
.accordion details[open] summary::after { content: "−"; }
.accordion details > div {
  padding: 0 0 1.75rem;
  color: var(--warm-gray);
  line-height: 1.75;
  max-width: 60rem;
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  padding: var(--section-pad) 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(64, 138, 191, 0.95), rgba(64, 138, 191, 1)),
    var(--foundation-blue);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cpath d='M60 35 Q40 15 40 35 T60 60 Q80 80 80 60 T60 35' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='1.5'/%3E%3C/svg%3E");
  background-size: 220px;
  opacity: 0.7;
}
.cta-banner::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(232, 112, 90, 0.32), transparent 70%);
  border-radius: 50%;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); max-width: 18ch; }
.cta-banner h2 em { font-style: italic; font-weight: 400; color: rgba(255, 255, 255, 0.85); }
.cta-banner p { color: rgba(255, 255, 255, 0.88); font-size: 1.1rem; max-width: 36rem; margin-top: 1rem; }

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.cta-actions .btn {
  width: 100%;
  justify-content: space-between;
  padding: 1.1rem 1.65rem;
  text-align: left;
}
.cta-actions .btn small {
  display: block;
  font-weight: 400;
  font-size: 0.78rem;
  opacity: 0.8;
  margin-top: 0.15rem;
  letter-spacing: 0.01em;
  text-transform: none;
  color: inherit;
}

/* ---------- LOVES TAGS ---------- */
.loves-card {
  margin-top: 2rem;
  padding: 1.75rem;
  background: var(--mint-tint);
  border-radius: var(--radius);
  border: 1px solid rgba(128, 208, 160, 0.3);
}
.loves-card h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--growth-green-dark);
  margin-bottom: 1rem;
}
.loves-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.love-tag {
  background: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--deep-navy);
  border: 1px solid rgba(26, 26, 46, 0.08);
}

/* ---------- GALLERY ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 120px;
  gap: 0.75rem;
}
.gallery .img-card { margin: 0; }
.gallery .g1 { grid-column: span 6; grid-row: span 3; }
.gallery .g2 { grid-column: span 6; grid-row: span 2; }
.gallery .g3 { grid-column: span 4; grid-row: span 2; }
.gallery .g4 { grid-column: span 4; grid-row: span 2; }
.gallery .g5 { grid-column: span 4; grid-row: span 2; }
.gallery .g6 { grid-column: span 6; grid-row: span 3; }
.gallery .g7 { grid-column: span 3; grid-row: span 3; }
.gallery .g8 { grid-column: span 3; grid-row: span 3; }

/* ---------- CONTACT ROWS ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.contact-card {
  background: var(--white);
  border: 1px solid rgba(26, 26, 46, 0.08);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color var(--t-base), transform var(--t-base);
}
.contact-card:hover { border-color: var(--foundation-blue); transform: translateY(-3px); }
.contact-card .icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--sky-tint);
  color: var(--foundation-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.contact-card h4 { margin-bottom: 0.5rem; }
.contact-card p { font-size: 0.95rem; color: var(--warm-gray); margin-bottom: 1rem; }
.contact-card a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
}

/* ---------- INQUIRY (How can we help you?) ---------- */
.inquiry-section {
  background: var(--sky-tint);
  position: relative;
  overflow: hidden;
}
.inquiry-decoration {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}
.inquiry-decoration-tl {
  top: -120px;
  left: -120px;
  background: radial-gradient(circle at center,
    rgba(64, 138, 191, 0) 30%,
    rgba(64, 138, 191, 0.08) 30%,
    rgba(64, 138, 191, 0.08) 32%,
    rgba(64, 138, 191, 0) 32%);
  background:
    radial-gradient(circle at 30% 30%, rgba(64, 138, 191, 0.08), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(64, 138, 191, 0.05), transparent 60%);
}
.inquiry-decoration-br {
  bottom: -120px;
  right: -120px;
  background:
    radial-gradient(circle at 70% 70%, rgba(64, 138, 191, 0.10), transparent 55%),
    radial-gradient(circle at 30% 30%, rgba(64, 138, 191, 0.05), transparent 60%);
}
.inquiry-section .container { position: relative; z-index: 1; }

.inquiry-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}
.inquiry-head h2 {
  margin-bottom: 0.75rem;
}
.inquiry-head .lead {
  color: var(--warm-gray);
  font-size: 1.02rem;
  line-height: 1.7;
}

.heart-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  color: var(--hope-coral);
  margin-bottom: 1rem;
}
.heart-divider .hd-line {
  width: 36px;
  height: 2px;
  background: var(--hope-coral);
  border-radius: 1px;
}
.heart-divider svg {
  width: 22px;
  height: 22px;
}

.inquiry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.inquiry-card {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.85rem 1.65rem;
  box-shadow: 0 4px 18px rgba(26, 26, 46, 0.05);
  border: 1px solid rgba(26, 26, 46, 0.04);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  text-decoration: none;
  color: inherit;
}
.inquiry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(26, 26, 46, 0.10);
  border-color: rgba(64, 138, 191, 0.25);
  color: inherit;
}

.inquiry-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.inquiry-icon svg { width: 22px; height: 22px; }
.inquiry-icon.icon-blue { background: var(--sky-tint); color: var(--foundation-blue); }
.inquiry-icon.icon-coral { background: var(--coral-tint); color: var(--hope-coral); }
.inquiry-icon.icon-green { background: var(--mint-tint); color: var(--growth-green-dark); }

.inquiry-body { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.inquiry-body h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--deep-navy);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.inquiry-body p {
  font-size: 0.92rem;
  color: var(--warm-gray);
  line-height: 1.6;
  margin: 0 0 1.1rem;
  flex: 1;
}
.inquiry-action {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--foundation-blue);
  padding-top: 1rem;
  border-top: 1px solid rgba(26, 26, 46, 0.08);
  transition: color var(--t-base), gap var(--t-base);
}
.inquiry-card:hover .inquiry-action {
  color: var(--hope-coral);
  gap: 0.6rem;
}
.inquiry-action .arrow {
  transition: transform var(--t-base);
  display: inline-block;
}
.inquiry-card:hover .inquiry-action .arrow { transform: translateX(3px); }

@media (max-width: 960px) {
  .inquiry-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .inquiry-grid { grid-template-columns: 1fr; }
  .inquiry-decoration { display: none; }
}

/* ---------- INFO ROW ---------- */
.info-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  border-top: 1px solid rgba(26, 26, 46, 0.08);
  padding-top: 2.5rem;
  margin-top: 2.5rem;
}
.info-row .info-item h5 {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--foundation-blue);
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.info-row .info-item p, .info-row .info-item a {
  font-size: 1rem;
  color: var(--deep-navy);
}
.org-pdf-actions { margin-top: 2.25rem; display: flex; justify-content: flex-end; }
.org-pdf-actions .btn svg { flex-shrink: 0; }

/* ---------- SIGNATURE ---------- */
.signature {
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(26, 26, 46, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-heading);
}
.signature-name { font-weight: 700; color: var(--deep-navy); }
.signature-role { color: var(--warm-gray); font-size: 0.85rem; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--deep-navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--foundation-blue) 0 33%, var(--hope-coral) 33% 66%, var(--growth-green) 66% 100%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 1.25rem; align-items: flex-start; }
.footer-brand .brand {
  background: transparent;
  padding: 0;
  display: inline-flex;
  align-items: center;
  transition: opacity var(--t-fast);
}
.footer-brand .brand:hover { opacity: 0.85; }
.footer-brand .brand-logo { height: 64px; max-width: 260px; width: auto; }
.footer-brand .brand-text { color: var(--white); }
.footer-brand p { font-size: 0.95rem; line-height: 1.7; max-width: 22rem; color: rgba(255, 255, 255, 0.7); }
.footer-tagline {
  font-family: var(--font-heading);
  font-weight: 500;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--growth-green);
}
.footer-col h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}
.footer-col a:hover { color: var(--hope-coral); }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.92rem;
}
.footer-contact a { color: rgba(255, 255, 255, 0.85); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}
.footer-bottom em { font-style: italic; color: var(--hope-coral); font-weight: 500; }
.footer-bottom a { color: rgba(255, 255, 255, 0.6); margin-left: 1.25rem; }
.footer-bottom a:hover { color: var(--white); }

/* ---------- LEGAL / PRIVACY PROSE ---------- */
.legal-prose h2 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); line-height: 1.25; margin-top: 3rem; margin-bottom: 1rem; }
.legal-prose h2:first-of-type { margin-top: 0; }
.legal-prose p { color: var(--warm-gray); line-height: 1.75; margin-bottom: 1.35rem; }
.legal-prose p:last-child { margin-bottom: 0; }
.legal-prose a { font-weight: 600; }

/* ---------- REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  body { font-size: 16px; }
  .two-col, .two-col.weighted, .two-col.weighted-r { grid-template-columns: 1fr; }
  .values-strip { grid-template-columns: repeat(2, 1fr); }
  .value-card { border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
  .value-card:nth-child(2n) { border-right: 0; }
  .value-card:last-child { border-bottom: 0; grid-column: span 2; text-align: center; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.25rem; }
  .tiers { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem 1.5rem 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(26, 26, 46, 0.07);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open a { padding: 0.75rem 0; }
  .nav-links.open .nav-cta { text-align: center; padding: 0.85rem 1.4rem; }
  .topbar { font-size: 0.72rem; }
  .topbar .container { justify-content: center; }
  .topbar a { margin-left: 0.85rem; }
  .img-stack { aspect-ratio: 1 / 1; max-width: 480px; margin: 0 auto; }
  .gallery { grid-auto-rows: 90px; }
  .gallery .g1, .gallery .g2 { grid-column: span 12; grid-row: span 2; }
  .gallery .g3, .gallery .g4, .gallery .g5 { grid-column: span 6; }
  .gallery .g6 { grid-column: span 12; grid-row: span 2; }
  .gallery .g7, .gallery .g8 { grid-column: span 6; grid-row: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .info-row { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero-meta { gap: 1.25rem; }
}

@media (max-width: 540px) {
  .values-strip { grid-template-columns: 1fr; }
  .value-card { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
  .value-card:last-child { grid-column: span 1; text-align: left; }
  .steps { grid-template-columns: 1fr; gap: 2.25rem; }
  .tiers { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .grant-amount { padding: 2.25rem 1.75rem; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
  .btn { white-space: normal; text-align: center; max-width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ===================================================================
   GRANTS PAGE — Pass 1 (editorial refresh)
   =================================================================== */

/* ---------- Editorial label (sage rule + small caps) ---------- */
.editorial-label {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}
.editorial-label .el-rule {
  flex-shrink: 0;
  width: 36px;
  height: 1px;
  background: var(--growth-green-dark);
}
.editorial-label .el-text {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--growth-green-dark);
  line-height: 1;
}

/* ---------- Drop cap on hero/intro paragraphs ---------- */
.has-dropcap::first-letter {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--growth-green-dark);
  font-size: 2.1em;
  line-height: 0.9;
  float: left;
  margin: 0.08em 0.18em 0 0;
  letter-spacing: -0.02em;
}

/* ---------- Hero (grants) ---------- */
.hero-grants {
  position: relative;
  overflow: hidden;
  min-height: clamp(560px, 72vh, 760px);
  display: flex;
  align-items: center;
  background: #FBF7F2;
}
/* Full-bleed hero photograph */
.hero-grants-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  overflow: hidden;
}
.hero-grants-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: saturate(0.99) contrast(1.02);
}
/* Cream-to-transparent wash over the left so the headline + CTA stay readable; the family on the right stays crisp */
.hero-grants::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      #FBF7F2 0%,
      #FBF7F2 34%,
      rgba(251, 247, 242, 0.92) 44%,
      rgba(251, 247, 242, 0.55) 56%,
      rgba(251, 247, 242, 0.12) 70%,
      rgba(251, 247, 242, 0.00) 84%);
}
.hero-grants-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}
.hero-grants-content { width: min(100%, 38rem); max-width: none; }
.hero-grants-title {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--deep-navy);
}
.hero-grants .lead {
  margin-top: 1.4rem;
  width: min(100%, 34rem);
  max-width: none;
  color: #374151;
  font-size: clamp(1rem, 1.05vw, 1.08rem);
  line-height: 1.7;
}
.hero-grants .lead.has-dropcap::first-letter { font-size: 2.6em; }
.hero-grants-cta {
  margin-top: 1.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Tablet */
@media (max-width: 1040px) {
  .hero-grants-content { width: min(100%, 34rem); }
}

/* Mobile: stack — text first, photo below */
@media (max-width: 820px) {
  .hero-grants {
    min-height: 0;
    flex-direction: column-reverse;
    background: #fff;
  }
  .hero-grants::before { display: none; }
  .hero-grants-photo {
    position: relative;
    inset: auto;
    width: auto;
    margin: 0 clamp(1.25rem, 4vw, 2.5rem) clamp(1.8rem, 5vw, 2.4rem);
    height: clamp(280px, 64vw, 460px);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: 0 22px 44px rgba(26, 26, 46, 0.12);
  }
  .hero-grants-photo img { object-position: center 28%; }
  .hero-grants-inner {
    padding-top: clamp(2.4rem, 7vw, 3.4rem);
    padding-bottom: clamp(1.2rem, 4vw, 1.8rem);
  }
  .hero-grants-content { width: 100%; }
}

/* Cap body line length on desktop */
.readable { max-width: 38rem; }

/* ---------- Stats: hero stat + supporting ---------- */
/* Vertically center the dark grant-amount card against the taller eligibility column on desktop. */
@media (min-width: 821px) {
  .two-col.start:has(.grant-amount-hero) > .reveal:first-child { align-self: center; }
}
.grant-amount-hero .amount {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  margin: 0;
}
.grant-amount-hero .grant-amount-label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--growth-green-dark);
  margin-top: 0.4rem;
  margin-bottom: 1.5rem;
}
.grant-amount-hero .meta {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(26, 26, 46, 0.08);
}
.grant-amount-hero .meta-item .n {
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

/* ---------- Eligibility heading (sage accent, no italics) ---------- */
.eligibility-heading {
  margin-bottom: 1.25rem;
  position: relative;
}
.eligibility-heading .sage-accent {
  color: var(--growth-green-dark);
  font-weight: 500;
}

/* ---------- "What we don't fund" small card ---------- */
.exclusion-card {
  margin-top: 1.75rem;
  padding: 1.25rem 1.4rem;
  border-left: 1px solid var(--growth-green-dark);
  background: rgba(91, 176, 127, 0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.exclusion-card h4 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--deep-navy);
  font-weight: 700;
}
.exclusion-card p {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.6;
  color: #374151;
}

/* ---------- Eligibility full-width layout ---------- */
.eligibility-body { max-width: 880px; margin: 0 auto; }
.eligibility-checklist ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 2.75rem;
}
.eligibility-checklist li:nth-last-child(-n+2) { border-bottom: 0; }
@media (max-width: 640px) {
  .eligibility-checklist ul { grid-template-columns: 1fr; }
  .eligibility-checklist li { border-bottom: 1px dashed rgba(26, 26, 46, 0.1); }
  .eligibility-checklist li:last-child { border-bottom: 0; }
}

/* ---------- Editorial card glyphs (replaces simple icon boxes) ---------- */
.card .card-glyph {
  width: 56px;
  height: 56px;
  margin-bottom: 1.25rem;
  color: var(--growth-green-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.card .card-glyph svg { width: 100%; height: 100%; }
.card:nth-child(2) .card-glyph { color: var(--hope-coral); }
.card:nth-child(3) .card-glyph { color: var(--deep-navy); }
.card:nth-child(4) .card-glyph { color: var(--growth-green-dark); }

/* ---------- "What a $1,000 grant might fund" ---------- */
.grant-becomes { background: var(--white); }
.becomes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
.becomes-card {
  background: #FBF7F2;
  border: 1px solid rgba(26, 26, 46, 0.06);
  border-radius: var(--radius);
  padding: 1.85rem 1.85rem 1.6rem;
  display: flex;
  flex-direction: column;
}
.becomes-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--growth-green-dark);
  margin-bottom: 1rem;
}
.becomes-list {
  list-style: none;
  margin: 0 0 1.1rem;
  padding: 0;
}
.becomes-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.55rem 0;
  font-size: 0.95rem;
  line-height: 1.5;
}
.becomes-list .bl-item { color: var(--growth-green-dark); flex: 1; }
.becomes-list .bl-amount {
  font-family: 'SF Mono', 'Menlo', 'Consolas', monospace;
  font-weight: 600;
  color: var(--deep-navy);
  white-space: nowrap;
  font-size: 0.95rem;
  font-variant-numeric: tabular-nums;
}
.becomes-rule {
  height: 1px;
  background: linear-gradient(90deg, rgba(26, 26, 46, 0.18) 0%, rgba(26, 26, 46, 0.18) 60%, transparent);
  margin: 0.4rem 0 1rem;
}
.becomes-total {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: auto;
}
.becomes-total .bt-amount {
  font-family: 'SF Mono', 'Menlo', 'Consolas', monospace;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--deep-navy);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.becomes-total .bt-emphasis {
  color: var(--hope-coral);
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 500;
  font-size: 0.98rem;
  line-height: 1.4;
}
.becomes-disclaimer {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.88rem;
  color: var(--warm-gray);
  font-style: italic;
}

/* ---------- Editorial steps (replaces small numbered circles) ---------- */
.steps-editorial {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2.25rem);
}
.steps-editorial .step {
  display: grid;
  grid-template-columns: minmax(120px, 0.18fr) 1fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: start;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(26, 26, 46, 0.08);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  transform: none;
  transition: none;
}
.steps-editorial .step:first-child { border-top: 0; padding-top: 0; }
.steps-editorial .step:hover { transform: none; box-shadow: none; }
.steps-editorial .step-numeral {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 1;
  color: var(--growth-green-dark);
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}
.steps-editorial .step-body { padding-top: 0.4rem; }
.steps-editorial .step-title-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 0.4rem;
}
.steps-editorial .step-title-row h4 {
  margin: 0;
  font-size: 1.18rem;
  color: var(--deep-navy);
}
.steps-editorial .step-glyph {
  display: inline-flex;
  width: 26px;
  height: 26px;
  color: var(--hope-coral);
  flex-shrink: 0;
}
.steps-editorial .step-glyph svg { width: 100%; height: 100%; }
.steps-editorial .step:nth-child(2) .step-glyph { color: var(--growth-green-dark); }
.steps-editorial .step:nth-child(3) .step-glyph { color: var(--deep-navy); }
.steps-editorial .step:nth-child(4) .step-glyph { color: var(--hope-coral); }
.steps-editorial .step .date {
  margin: 0 0 0.65rem;
  font-size: 0.9rem;
}
.steps-editorial .step p {
  font-size: 0.98rem;
  line-height: 1.65;
  color: #374151;
  max-width: 36rem;
}

@media (max-width: 720px) {
  .steps-editorial .step {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .steps-editorial .step-numeral { font-size: 2.6rem; }
}

/* ===================================================================
   GRANTS PAGE — Pass 2 (review rubric, professionals, polish)
   =================================================================== */

/* ---------- Apply Now nav button — hover lift + coral shadow ---------- */
.nav-cta {
  transition: transform var(--t-base), box-shadow var(--t-base), background var(--t-base);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(232, 112, 90, 0.28);
}

/* ---------- FAQ chevron — smooth rotation ---------- */
.accordion summary {
  transition: color var(--t-fast);
}
.accordion summary::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transform-origin: center;
  transition: transform 0.2s ease;
  margin-left: 1rem;
  margin-top: -4px;
  flex-shrink: 0;
  display: inline-block;
}
.accordion details[open] summary::after {
  content: "";
  transform: rotate(-135deg);
  margin-top: 2px;
}
.accordion details {
  padding: 1.1rem 0;
}
.accordion details > div {
  max-width: 56rem;
  line-height: 1.65;
  color: #374151;
}

/* ---------- Footer infinity ∞ — sage→coral gradient ---------- */
.footer-infinity {
  background: linear-gradient(90deg, var(--growth-green-dark) 0%, var(--growth-green) 50%, var(--hope-coral) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 600;
  display: inline-block;
  margin-left: 0.15em;
}
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .footer-infinity { color: var(--growth-green); -webkit-text-fill-color: currentColor; }
}

/* ---------- Count-up reveal ---------- */
.count-up {
  display: inline-block;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.count-up.animating { transition: opacity 0.3s ease; }

/* ---------- HOW WE REVIEW rubric ---------- */
.rubric {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(26, 26, 46, 0.08);
}
.rubric-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.18fr) 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
  padding: 1.85rem 0;
  border-bottom: 1px solid rgba(26, 26, 46, 0.08);
}
.rubric-weight {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(2rem, 3.4vw, 2.5rem);
  line-height: 1;
  color: var(--growth-green-dark);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: baseline;
}
.rubric-weight .rubric-pct {
  font-size: 0.55em;
  font-weight: 400;
  margin-left: 0.1em;
  color: var(--growth-green-dark);
}
.rubric-body { padding-top: 0.3rem; }
.rubric-body h4 {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
  color: var(--deep-navy);
}
.rubric-body p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: #374151;
  max-width: 38rem;
}
@media (max-width: 720px) {
  .rubric-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1.5rem 0;
  }
  .rubric-weight { font-size: 1.85rem; }
}

/* ---------- FOR PROFESSIONALS ---------- */
.professionals-section { background: var(--white); }
.professionals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
.professionals-card {
  background: rgba(91, 176, 127, 0.06);
  border: 1px solid rgba(91, 176, 127, 0.18);
  border-radius: var(--radius);
  padding: 2rem 2rem 1.85rem;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.professionals-card:hover {
  transform: translateY(-3px);
  border-color: var(--growth-green-dark);
  box-shadow: 0 16px 32px -16px rgba(91, 176, 127, 0.35);
}
.professionals-card h4 {
  margin: 0 0 0.85rem;
  font-size: 1.2rem;
  color: var(--deep-navy);
}
.professionals-card p {
  margin: 0 0 1.5rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #374151;
}
.professionals-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--growth-green-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  transition: gap var(--t-base);
}
.professionals-link:hover { color: var(--hope-coral); }
.professionals-link .arrow { transition: transform var(--t-base); }
.professionals-link:hover .arrow { transform: translateX(4px); }

/* ---------- CTA BANNER (grants — restructured hierarchy) ---------- */
.cta-banner-grants .cta-banner-head { max-width: 60rem; margin-bottom: 2rem; }
.cta-banner-grants .cta-banner-head h2 { margin-bottom: 1rem; }
.cta-banner-grants .cta-banner-head p { max-width: 44rem; }
.cta-banner-grants .cta-banner-primary {
  margin: 1rem 0 2.25rem;
}
.cta-banner-grants .cta-primary-btn {
  font-size: 1.05rem;
  padding: 1.2rem 2.4rem;
  box-shadow: 0 12px 30px -10px rgba(232, 112, 90, 0.5);
}
.cta-banner-grants .cta-banner-secondary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  max-width: 720px;
}
.cta-secondary-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--white);
  font-family: var(--font-heading);
  transition: background var(--t-base), border-color var(--t-base), transform var(--t-base);
}
.cta-secondary-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
  transform: translateY(-2px);
}
.cta-secondary-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1.2;
}
.cta-secondary-text strong {
  font-size: 0.98rem;
  font-weight: 700;
}
.cta-secondary-text span {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
}
.cta-secondary-card .arrow { transition: transform var(--t-base); }
.cta-secondary-card:hover .arrow { transform: translateX(4px); }

/* ---------- prefers-reduced-motion: freeze count-up + chevron ---------- */
@media (prefers-reduced-motion: reduce) {
  .count-up { transition: none !important; }
  .accordion summary::after { transition: none !important; }
}

/* ---------- ROLLING-CYCLES NOTE (grants page) ---------- */
.rolling-cycles-note {
  background: rgba(91, 176, 127, 0.07);
  border-left: 3px solid var(--growth-green-dark);
  border-radius: var(--radius-sm);
  padding: 2rem 2.25rem;
  max-width: 720px;
  margin: 3.5rem auto 0;
  color: var(--deep-navy);
}
.rolling-cycles-note .eyebrow {
  color: var(--growth-green-dark);
  margin-bottom: 0.85rem;
}
.rolling-cycles-note .eyebrow::before { background: var(--growth-green-dark); }
.rolling-cycles-note h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--deep-navy);
  margin-bottom: 0.85rem;
}
.rolling-cycles-note p {
  font-size: 1rem;
  line-height: 1.6;
  color: #374151;
  margin: 0;
}
@media (max-width: 540px) {
  .rolling-cycles-note { padding: 1.5rem 1.5rem; margin-top: 2.5rem; }
}

/* ---------- APPLY CTA CARD (grants page) ---------- */
.apply-cta-card {
  background: rgba(91, 176, 127, 0.10);
  border-radius: var(--radius);
  padding: 2rem;
  margin-top: 3rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.apply-cta-text { flex: 1; min-width: 260px; }
.apply-cta-card h4 { margin-bottom: 0.4rem; }
.apply-cta-card p { color: var(--warm-gray); font-size: 0.95rem; margin: 0; }

/* ---------- MISSION SNAPSHOT ---------- */
.mission-snapshot {
  position: relative;
  padding: clamp(5rem, 9vw, 7.5rem) 0 clamp(3.5rem, 6vw, 5rem);
  overflow: hidden;
}
.mission-snapshot .container { position: relative; z-index: 1; }

.mission-watermark {
  position: absolute;
  left: clamp(-3rem, -2vw, -1rem);
  bottom: -2rem;
  width: 280px;
  height: 280px;
  background: url('../images/logo.svg') no-repeat center center;
  background-size: contain;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
  filter: saturate(0.9);
}

.mission-grid { gap: clamp(2.5rem, 6vw, 6rem); }

.mission-left { position: relative; }

.mission-eyebrow { margin-bottom: 1.1rem; }
.mission-eyebrow .hee-rule { background: var(--growth-green-dark); }
.mission-eyebrow .hee-text { color: var(--growth-green-dark); }

.mission-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 4.4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0;
  font-weight: 700;
  font-style: normal;
}
.mission-headline .mh-line-1 {
  display: block;
  color: var(--deep-navy);
  font-weight: 700;
}
.mission-headline .mh-line-2 {
  display: block;
  color: var(--growth-green-dark);
  font-style: italic;
  font-weight: 500;
  margin-top: 0.18em;
  letter-spacing: -0.02em;
}
.mh-underline-wrap {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.mh-underline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.18em;
  width: 100%;
  height: 0.42em;
  pointer-events: none;
  overflow: visible;
}

.mission-right p.mission-body {
  color: #374151;
  line-height: 1.75;
  font-size: 1.02rem;
  max-width: 36rem;
}
.mission-right p.mission-body + p.mission-body { margin-top: 1.25rem; }

.mission-cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
  margin-top: 1.85rem;
}
.mission-link-secondary {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--deep-navy);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: 0.01em;
  transition: color var(--t-base);
}
.mission-link-secondary:hover { color: var(--growth-green-dark); }
.mission-link-secondary .arrow { transition: transform var(--t-base); display: inline-block; }
.mission-link-secondary:hover .arrow { transform: translateX(4px); }

@media (max-width: 768px) {
  .mission-snapshot { padding: clamp(3.5rem, 12vw, 5rem) 0 clamp(2.5rem, 8vw, 3.5rem); }
  .mission-headline { font-size: clamp(1.85rem, 7.5vw, 2.4rem); }
  .mission-watermark { width: 200px; height: 200px; opacity: 0.06; left: -1.5rem; bottom: auto; top: 0; }
  .mh-underline-wrap { white-space: normal; }
}

/* ===========================================================
   PROFOUND AUTISM PAGE
   =========================================================== */

/* Definition prose */
.pa-prose p { margin-bottom: 1.25rem; }
.pa-prose p:last-child { margin-bottom: 0; }
.pa-prose strong { color: var(--deep-navy); font-weight: 700; }

/* Pull-quote callout */
.pa-callout {
  margin: 1.75rem 0;
  padding: 1.5rem 1.75rem;
  background: var(--coral-tint);
  border-left: 4px solid var(--hope-coral);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 500;
  font-size: 1.18rem;
  line-height: 1.5;
  color: var(--deep-navy);
}

/* Characteristics aside */
.traits-card { position: sticky; top: 96px; align-self: start; }
.traits-card-head {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--foundation-blue);
  margin-bottom: 0.4rem;
}
.traits-card-sub { font-size: 0.92rem; color: var(--warm-gray); margin-bottom: 1.25rem; }
.trait {
  display: flex;
  gap: 0.95rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(26, 26, 46, 0.08);
}
.trait:first-of-type { border-top: none; padding-top: 0.25rem; }
.trait:last-child { padding-bottom: 0; }
.trait-ic {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--sky-tint);
  color: var(--foundation-blue-deep);
}
.trait-ic svg { width: 20px; height: 20px; }
.trait-tt { font-family: var(--font-heading); font-weight: 700; font-size: 0.98rem; color: var(--deep-navy); margin-bottom: 0.15rem; }
.trait-td { font-size: 0.9rem; color: var(--warm-gray); line-height: 1.55; }

/* Support-level cards */
.pa-level { position: relative; }
.pa-level-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.pa-level-tag.l1 { background: var(--mint-tint); color: var(--growth-green-dark); }
.pa-level-tag.l2 { background: var(--sky-tint); color: var(--foundation-blue-dark); }
.pa-level-tag.l3 { background: var(--hope-coral); color: var(--white); }
.pa-level-focus { background: var(--coral-tint); }
.pa-focus {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.1rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--hope-coral-dark);
}
.pa-focus svg { width: 16px; height: 16px; flex-shrink: 0; }
.spectrum-note {
  max-width: 70ch;
  margin: 2rem auto 0;
  text-align: center;
  font-size: 0.92rem;
  font-style: italic;
  color: var(--warm-gray);
  line-height: 1.6;
}

/* Why-we-focus numbers */
.pa-num {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--foundation-blue);
  opacity: 0.3;
  margin-bottom: 0.75rem;
}

/* Everyday-reality stat rows */
.pa-stats { display: grid; gap: 1rem; }
.pa-stat {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.pa-stat .big {
  flex-shrink: 0;
  min-width: 3.5rem;
  white-space: nowrap;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  color: var(--foundation-blue-deep);
  letter-spacing: -0.01em;
}
.pa-stat .desc { font-size: 0.95rem; color: var(--warm-gray); line-height: 1.55; }
.pa-stat .desc strong { color: var(--deep-navy); font-weight: 700; }

@media (max-width: 860px) {
  .traits-card { position: static; }
}

/* ===================== PROFOUND AUTISM — HERO ===================== */
.pa-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(620px, 78vh, 800px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 8% 14%, rgba(232, 112, 90, 0.07), transparent 30%),
    linear-gradient(90deg, #ffffff 0%, #ffffff 40%, #f8fcff 62%, var(--sky-tint) 100%);
}
/* Large real photo, anchored to the right */
.pa-hero-photo {
  position: absolute;
  z-index: 0;
  inset: 0 0 0 auto;
  width: min(62vw, 920px);
  overflow: hidden;
}
.pa-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: saturate(0.97) contrast(1.02);
}
/* White-to-transparent wash over the left edge so the headline stays readable */
.pa-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      #ffffff 0%,
      #ffffff 42%,
      rgba(255, 255, 255, 0.92) 51%,
      rgba(255, 255, 255, 0.60) 61%,
      rgba(255, 255, 255, 0.10) 78%,
      rgba(255, 255, 255, 0.00) 100%),
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.00) 72%,
      rgba(232, 244, 253, 0.62) 100%);
}
.pa-hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: -12vw;
  bottom: -18vw;
  width: min(56vw, 760px);
  height: min(56vw, 760px);
  border-radius: 50%;
  background: rgba(64, 138, 191, 0.10);
  pointer-events: none;
}
.pa-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: clamp(3.5rem, 7vw, 6.5rem);
  padding-bottom: clamp(3rem, 6vw, 5.5rem);
}
.pa-hero-copy { width: min(100%, 41rem); }
.pa-hero .crumbs { margin-bottom: clamp(1.6rem, 3vw, 2.6rem); }
.pa-hero .eyebrow { margin-bottom: 1.35rem; }
.pa-hero-title {
  margin: 0;
  max-width: 40rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.9rem, 5.4vw, 4.7rem);
  line-height: 1.0;
  letter-spacing: -0.045em;
  color: var(--deep-navy);
}
.pa-hero-title .line { display: block; }
.pa-hero-title em {
  display: block;
  font-style: italic;
  font-weight: 500;
  color: var(--foundation-blue);
  letter-spacing: -0.04em;
}
.pa-hero-lead {
  width: min(100%, 37rem);
  margin-top: clamp(1.6rem, 2.4vw, 2.1rem);
  color: #5f6d85;
  font-size: clamp(1rem, 1.05vw, 1.12rem);
  line-height: 1.78;
}

/* Tablet */
@media (max-width: 1040px) {
  .pa-hero-copy { width: min(100%, 35rem); }
  .pa-hero-photo { width: 56vw; }
}

/* Mobile: stack — text first, photo below */
@media (max-width: 820px) {
  .pa-hero {
    min-height: 0;
    flex-direction: column-reverse;
    background: #fff;
  }
  .pa-hero::before,
  .pa-hero::after { display: none; }
  .pa-hero-photo {
    position: relative;
    inset: auto;
    width: auto;
    margin: 0 clamp(1.25rem, 4vw, 2.5rem) clamp(1.8rem, 5vw, 2.4rem);
    height: clamp(310px, 72vw, 520px);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: 0 22px 44px rgba(26, 26, 46, 0.12);
  }
  .pa-hero-photo img { object-position: center 30%; }
  .pa-hero-inner {
    padding-top: clamp(2.4rem, 7vw, 3.4rem);
    padding-bottom: clamp(1.2rem, 4vw, 1.8rem);
  }
  .pa-hero-copy { width: 100%; }
}
