/* ============================================================
   FAST58 — style.css
   ============================================================ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
video { display: block; }
a { color: inherit; }
button { cursor: pointer; font: inherit; border: none; background: none; }

/* ── TOKENS ── */
:root {
  --canvas:      #F2F0EC;
  --warm-white:  #F8F7F4;
  --sage:        #4E8065;
  --sage-light:  #8AB09A;
  --sage-pale:   #E3E8E0;
  --forest:      #182B20;
  --mid:         #2E4A38;
  --muted:       #5A7060;
  --border:      rgba(78,128,101,0.18);
  --border-soft: rgba(78,128,101,0.10);
  --font-primary: 'Fast58', 'DM Sans', sans-serif;
  --site-max-width: 1100px;
  /* Shared content widths for inner sections.
     Keep a small set so each page has intentional, readable hierarchy. */
  --container-wide: 1100px;      /* for full-width inner grids */
  --container-normal: 1060px;   /* default inner for multi-column sections */
  --container-medium: 1060px;     /* for flows and step sequences */
  --container-maths: 1060px;      /* maths example band */
  --container-faq: 780px;        /* FAQ layout width */
  --container-hero: 760px;       /* hero title width */
  --container-hero-sub: 600px;   /* hero subtitle width */
  --container-steps-header: 640px;
  --container-not-header: 560px;
  /* Match homepage horizontal rhythm (desktop ~80px) */
  --page-gutter: clamp(20px, 6vw, 80px);
  --page-section-y: clamp(64px, 9vw, 120px);
}

/* ── BASE ── */
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-primary);
  background: var(--warm-white);
  color: var(--forest);
  font-weight: 300;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

/* ── BUTTONS ── */
.btn-sage {
  display: inline-block;
  background: var(--sage);
  color: var(--canvas);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 32px;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  transition: background 0.25s, transform 0.25s;
}
.btn-sage:hover { background: var(--mid); transform: translateY(-2px); }

.btn-ghost {
  display: inline-block;
  border: 1px solid rgba(242,240,236,0.4);
  color: rgba(242,240,236,0.85);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 32px;
  text-decoration: none;
  text-align: center;
  font-weight: 500;
  transition: border-color 0.25s, color 0.25s, transform 0.25s;
}
.btn-ghost:hover { border-color: var(--canvas); color: var(--canvas); transform: translateY(-2px); }

.btn-forest {
  display: inline-block;
  background: var(--forest);
  color: var(--canvas);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 32px;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  transition: background 0.25s, transform 0.25s;
}
.btn-forest:hover { background: var(--mid); transform: translateY(-2px); }

.btn-outline-sage {
  display: inline-block;
  border: 1px solid var(--sage);
  color: var(--sage);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 32px;
  text-decoration: none;
  text-align: center;
  font-weight: 500;
  transition: background 0.25s, color 0.25s, transform 0.25s;
}
.btn-outline-sage:hover { background: var(--sage); color: var(--canvas); transform: translateY(-2px); }

.btn-outline-light {
  display: inline-block;
  border: 1px solid rgba(242,240,236,0.4);
  color: var(--canvas);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 32px;
  text-decoration: none;
  text-align: center;
  font-weight: 500;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.btn-outline-light:hover { border-color: var(--canvas); background: rgba(242,240,236,0.08); transform: translateY(-2px); }

/* ── SHARED COMPONENTS ── */
.container {
  width: 100%;
  max-width: var(--container-normal);
  margin: 0 auto;
}
.container--wide { max-width: var(--container-wide); }
.container--medium { max-width: var(--container-medium); }
.container--narrow { max-width: var(--container-faq); }

.container-pad {
  padding-inline: var(--page-gutter);
}

.section-eyebrow {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--sage);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  line-height: 1.18;
  color: var(--forest);
  letter-spacing: -0.01em;
}
.section-title strong { font-weight: 600; color: var(--sage); }

.section-header-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 72px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}
.section-aside {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
  max-width: 260px;
  text-align: right;
}

/* ── PAGE HERO BAND (shared inner-page pattern) ── */
.page-hero-band {
  position: relative;
  height: 460px;
  overflow: hidden;
}
.page-hero-band img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 50%;
}
.page-hero-band .band-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(18,32,22,0.15) 0%, rgba(18,32,22,0.78) 100%);
}
.page-hero-band .band-content {
  position: absolute;
  left: 80px; bottom: 60px;
}

/* ── VIDEO PLACEHOLDER ── */
.video-placeholder {
  background: var(--canvas);
  border: 2px dashed var(--border);
  aspect-ratio: 16/9;
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.video-placeholder-icon {
  width: 56px; height: 56px;
  border: 2px solid var(--sage);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--sage);
}
.video-placeholder p {
  font-size: 13px; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
}

/* ── FORMS ── */
.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.form-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; color: var(--muted); }
.form-input, .form-textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 300; color: var(--forest);
  background: var(--warm-white); border: 1px solid var(--border);
  padding: 14px 18px; outline: none;
  transition: border-color 0.2s; width: 100%; -webkit-appearance: none;
}
.form-input:focus, .form-textarea:focus { border-color: var(--sage); }
.form-textarea { resize: vertical; min-height: 140px; }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; font-size: 16px; font-weight: 400; color: var(--forest);
  text-align: left; cursor: pointer; background: none; border: none;
  font-family: 'DM Sans', sans-serif; transition: color 0.2s;
}
.faq-question:hover { color: var(--sage); }
.faq-question svg { flex-shrink: 0; transition: transform 0.3s; color: var(--sage); }
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer {
  font-size: 15px; font-weight: 300; line-height: 1.82; color: var(--muted);
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 24px; }

/* ── SCROLL REVEALS ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-16px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.in { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(16px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.in { opacity: 1; transform: translateX(0); }
.stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.stagger.in > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.05s; }
.stagger.in > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.15s; }
.stagger.in > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.25s; }
.stagger.in > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.35s; }
.stagger.in > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.42s; }
.stagger.in > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.49s; }
.stagger.in > *:nth-child(7) { opacity: 1; transform: none; transition-delay: 0.56s; }

/* ══════════════════════════════════════════════════════════
   NAV
   Desktop: logo | links | cta button
   Mobile (<900px): logo | hamburger (links slide in from right)
══════════════════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(248,247,244,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  animation: navSlideDown 0.7s ease forwards;
}
@keyframes navSlideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.nav-logo { display: inline-flex; align-items: center; text-decoration: none; }
.nav-logo img { display: block; height: 36px; width: auto; }

/* Desktop nav links */
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.25s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--sage); }

/* Desktop CTA button */
.nav-cta {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--forest);
  text-decoration: none;
  border: 1px solid var(--sage);
  padding: 9px 22px;
  transition: background 0.25s, color 0.25s;
}
.nav-cta:hover, .nav-cta.active { background: var(--sage); color: var(--warm-white); }

/* Hamburger — hidden by default (desktop) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none;
  cursor: pointer; padding: 4px;
  z-index: 1100; flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
  transform-origin: center;
}
/* Turn white when panel is open so it's visible against forest bg */
.nav-hamburger.open span { background: var(--warm-white); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile CTA inside the slide panel — hidden on desktop */
.nav-mobile-cta { display: none; }

/* ── FOOTER ── */
footer {
  background: #0D1810;
  padding: 80px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
}
.footer-brand .nav-logo { display: block; margin-bottom: 18px; }
.footer-brand .nav-logo img { height: 30px; }
.footer-tagline { font-size: 14px; font-weight: 300; font-style: italic; line-height: 1.75; color: rgba(242,240,236,0.28); }
.footer-col-title { font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; font-weight: 500; color: var(--sage-light); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 13px; font-weight: 300; color: rgba(242,240,236,0.35); text-decoration: none; transition: color 0.25s; }
.footer-links a:hover { color: var(--sage-light); }
.footer-bottom {
  background: #0D1810; padding: 20px 80px;
  border-top: 1px solid rgba(78,128,101,0.1);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 11px; font-weight: 300; color: rgba(242,240,236,0.18); letter-spacing: 0.04em; }
.footer-bottom a { color: rgba(242,240,236,0.35); text-decoration: none; transition: color 0.25s; }
.footer-bottom a:hover { color: rgba(78,128,101,0.9); }

/* ══════════════════════════════════════════════════════════
   HOME PAGE
══════════════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: flex-end; overflow: hidden;
}
.hero-video-wrap {
  position: absolute; inset: 0;
  overflow: hidden; pointer-events: none;
}
.hero-video-wrap iframe {
  position: absolute;
  top: 50%; left: 50%;
  width: 100vw; height: 56.25vw;
  min-height: 100vh; min-width: 177.78vh;
  transform: translate(-50%, -50%);
  border: 0; pointer-events: none;
}
.hero-video-wrap video {
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(18,32,22,0.10) 0%, rgba(18,32,22,0.32) 38%, rgba(18,32,22,0.72) 65%, rgba(18,32,22,0.91) 100%);
}
.hero-video-cover {
  position: absolute; inset: 0; z-index: 2;
  background: var(--forest);
  animation: videoCoverFade 0.8s 2s ease forwards;
  pointer-events: none;
}
@keyframes videoCoverFade { to { opacity: 0; } }
.hero-content {
  position: relative; z-index: 3;
  width: 100%; padding: 0 80px 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: flex-end;
}
.hero-eyebrow { font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 500; color: var(--sage-light); margin-bottom: 22px; opacity: 0; animation: fadeUp 0.8s 0.5s ease forwards; }
.hero-title { font-size: clamp(44px, 5.2vw, 70px); font-weight: 300; line-height: 1.08; color: var(--canvas); letter-spacing: -0.02em; margin-bottom: 32px; opacity: 0; animation: fadeUp 0.8s 0.7s ease forwards; }
.hero-title strong { font-weight: 600; color: var(--sage-light); }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.8s 0.9s ease forwards; }
.hero-verse { border-left: 2px solid var(--sage); padding-left: 24px; opacity: 0; animation: fadeUp 0.8s 1.1s ease forwards; }
.hero-verse p { font-family: 'Lora', serif; font-size: 16px; font-style: italic; line-height: 1.85; color: rgba(242,240,236,0.68); margin-bottom: 14px; }
.hero-verse cite { font-family: 'DM Sans', sans-serif; font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 500; color: var(--sage-light); font-style: normal; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.concept { padding: 120px 80px; background: var(--canvas); display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.concept-title { font-size: clamp(28px, 3vw, 42px); font-weight: 300; line-height: 1.18; color: var(--forest); letter-spacing: -0.01em; margin-bottom: 28px; }
.concept-title strong { font-weight: 600; color: var(--sage); }
.concept-body { font-size: 16px; font-weight: 300; line-height: 1.88; color: var(--mid); }
.concept-body p { margin-bottom: 20px; }
.concept-body p:last-child { margin-bottom: 0; }
.concept-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }
.concept-right { background: var(--forest); padding: 52px; }
.concept-verse-label { font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 500; color: var(--sage-light); margin-bottom: 28px; }
.concept-verse { font-family: 'Lora', serif; font-size: 18px; font-style: italic; line-height: 1.82; color: rgba(242,240,236,0.75); margin-bottom: 24px; }
.concept-verse-ref { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; color: var(--sage-light); }
.concept-note { margin-top: 36px; padding-top: 28px; border-top: 1px solid rgba(78,128,101,0.2); font-size: 13px; font-weight: 300; line-height: 1.75; color: rgba(242,240,236,0.45); font-style: italic; }

.why { padding: 0; background: var(--warm-white); }
.why-image-band { position: relative; height: 460px; overflow: hidden; }
.why-image-band img { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; transition: transform 0.8s ease; }
.why-image-band:hover img { transform: scale(1.03); }
.why-image-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(18,32,22,0.72) 0%, rgba(18,32,22,0.22) 60%, transparent 100%); }
.why-image-text { position: absolute; left: 80px; bottom: 60px; max-width: 520px; }
.why-image-text .section-eyebrow { color: var(--sage-light); margin-bottom: 16px; }
.why-image-title { font-size: clamp(28px, 3.2vw, 44px); font-weight: 300; line-height: 1.15; color: var(--canvas); letter-spacing: -0.01em; }
.why-image-title strong { font-weight: 600; color: var(--sage-light); }
.why-cards-wrap { padding: 0 80px 100px; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.why-card { background: var(--warm-white); padding: 48px 40px; transition: background 0.3s, transform 0.3s; }
.why-card:hover { background: var(--sage-pale); transform: translateY(-4px); }
.why-num { font-size: 11px; font-weight: 500; letter-spacing: 0.15em; color: var(--sage); margin-bottom: 16px; text-transform: uppercase; }
.why-rule { width: 28px; height: 2px; background: var(--sage); margin-bottom: 22px; transition: width 0.3s; }
.why-card:hover .why-rule { width: 48px; }
.why-title { font-size: 17px; font-weight: 500; color: var(--forest); margin-bottom: 16px; letter-spacing: -0.01em; line-height: 1.3; }
.why-text { font-size: 14px; font-weight: 300; line-height: 1.82; color: var(--muted); }

.stories { background: var(--forest); }
.stories-image-band { position: relative; height: 460px; overflow: hidden; }
.stories-image-band img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; transition: transform 0.8s ease; }
.stories-image-band:hover img { transform: scale(1.03); }
.stories-image-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(18,32,22,0.1) 0%, rgba(18,32,22,0.85) 100%); }
.stories-image-text { position: absolute; left: 80px; bottom: 52px; }
.stories-image-text .section-eyebrow { color: var(--sage-light); }
.stories-image-title { font-size: clamp(28px, 3.2vw, 44px); font-weight: 300; line-height: 1.15; color: var(--canvas); letter-spacing: -0.01em; }
.stories-image-title strong { font-weight: 600; color: var(--sage-light); }
.stories-cards-wrap { padding: 0 80px 100px; }
.stories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(78,128,101,0.18); }
.story-card { background: var(--forest); padding: 48px 38px; transition: background 0.3s, transform 0.3s; }
.story-card:hover { background: #1f3828; transform: translateY(-4px); }
.story-tag { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; color: var(--sage-light); margin-bottom: 20px; }
.story-quote { font-family: 'Lora', serif; font-size: 17px; font-weight: 400; font-style: italic; line-height: 1.72; color: rgba(242,240,236,0.78); margin-bottom: 28px; }
.story-rule { width: 32px; height: 1px; background: var(--sage); margin-bottom: 18px; }
.story-meta { font-size: 12px; font-weight: 300; color: rgba(242,240,236,0.4); line-height: 1.55; }
.story-meta strong { display: block; font-weight: 500; color: rgba(242,240,236,0.65); margin-bottom: 3px; font-size: 13px; }

.estimator { padding: 120px 80px; background: var(--canvas); display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: start; }
.estimator--inline { background: transparent; padding: 0; }
.estimator-intro { font-size: 15px; font-weight: 300; line-height: 1.85; color: var(--muted); margin: 28px 0 48px; }
.slider-block { margin-bottom: 36px; }
.slider-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; }
.slider-label { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500; color: var(--muted); }
.slider-val { font-size: 20px; font-weight: 300; color: var(--forest); letter-spacing: -0.01em; }
.slider-val em { color: var(--sage); font-style: normal; }
input[type="range"] { width: 100%; appearance: none; height: 2px; outline: none; cursor: pointer; }
input[type="range"]::-webkit-slider-thumb { appearance: none; width: 16px; height: 16px; background: var(--sage); border-radius: 50%; cursor: pointer; transition: transform 0.15s; }
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.3); }
input[type="range"]::-moz-range-thumb { width: 16px; height: 16px; background: var(--sage); border-radius: 50%; border: none; }
.estimator-panel { background: var(--forest); padding: 52px; position: sticky; top: 88px; }
.panel-label { font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 500; color: var(--sage-light); margin-bottom: 32px; }
.panel-total { font-size: 64px; font-weight: 300; color: var(--canvas); line-height: 1; letter-spacing: -0.02em; margin-bottom: 6px; transition: color 0.3s; }
.panel-total em { color: var(--sage-light); font-style: normal; }
.panel-total.changed { color: var(--sage-light); }
.panel-total-label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(242,240,236,0.38); margin-bottom: 40px; }
.panel-lines { border-top: 1px solid rgba(78,128,101,0.2); padding-top: 28px; }
.panel-line { display: flex; justify-content: space-between; align-items: center; padding: 13px 0; border-bottom: 1px solid rgba(78,128,101,0.12); }
.panel-line:last-child { border-bottom: none; }
.panel-line-key { font-size: 12px; font-weight: 300; color: rgba(242,240,236,0.38); }
.panel-line-val { font-size: 16px; font-weight: 300; color: var(--canvas); letter-spacing: -0.01em; transition: color 0.3s; }
.panel-note { font-size: 11px; font-weight: 300; color: rgba(242,240,236,0.32); text-align: center; margin-top: 24px; line-height: 1.7; font-style: italic; }
.impact-cards { display: flex; flex-direction: column; gap: 2px; margin-top: 28px; }
.impact-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(78,128,101,0.18); padding: 18px 22px; display: grid; grid-template-columns: 28px 1fr; grid-template-rows: auto auto; column-gap: 14px; row-gap: 2px; align-items: start; transition: background 0.25s; }
.impact-card:hover { background: rgba(78,128,101,0.12); }
.impact-icon { grid-row: 1 / 3; display: flex; align-items: flex-start; padding-top: 4px; color: var(--sage-light); }
.impact-icon svg { width: 18px; height: 18px; flex-shrink: 0; }
.impact-num { font-size: 22px; font-weight: 300; color: var(--canvas); letter-spacing: -0.02em; line-height: 1; transition: color 0.3s; }
.impact-num.changed { color: var(--sage-light); }
.impact-desc { font-size: 11px; font-weight: 300; color: rgba(242,240,236,0.42); line-height: 1.5; letter-spacing: 0.01em; }

.get-involved { background: var(--forest); display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; }
.get-involved-image { position: relative; overflow: hidden; }
.get-involved-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform 0.8s ease; }
.get-involved-image:hover img { transform: scale(1.04); }
.get-involved-image::after { content: ''; position: absolute; inset: 0; background: rgba(18,32,22,0.3); }
.get-involved-content { padding: 80px; display: flex; flex-direction: column; justify-content: center; }
.get-involved-content .section-eyebrow { color: var(--sage-light); }
.get-involved-title { font-size: clamp(28px, 3.2vw, 44px); font-weight: 300; line-height: 1.18; color: var(--canvas); letter-spacing: -0.01em; margin-bottom: 20px; }
.get-involved-title strong { font-weight: 600; color: var(--sage-light); }
.get-involved-body { font-size: 15px; font-weight: 300; line-height: 1.82; color: rgba(242,240,236,0.55); margin-bottom: 40px; }
.get-involved-options { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.get-involved-option { display: flex; align-items: flex-start; gap: 20px; padding: 24px 28px; background: rgba(242,240,236,0.05); border: 1px solid rgba(78,128,101,0.25); transition: background 0.25s, border-color 0.25s; cursor: pointer; text-decoration: none; }
.get-involved-option:hover { background: rgba(78,128,101,0.18); border-color: rgba(78,128,101,0.5); }
.get-involved-option-num { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; color: var(--sage-light); margin-top: 3px; flex-shrink: 0; }
.get-involved-option-label { font-size: 13px; font-weight: 500; color: var(--canvas); margin-bottom: 4px; }
.get-involved-option-desc { font-size: 12px; font-weight: 300; color: rgba(242,240,236,0.45); line-height: 1.6; }
.get-involved-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── CTA STRIP ── */
.cta-strip { background: var(--forest); padding: var(--page-section-y) var(--page-gutter); }
.cta-strip-inner { display: flex; justify-content: space-between; align-items: center; gap: 40px; flex-wrap: wrap; }
.cta-strip-title { font-size: clamp(24px, 2.8vw, 38px); font-weight: 300; line-height: 1.2; color: var(--canvas); letter-spacing: -0.01em; margin-top: 12px; }
.cta-strip-title strong { font-weight: 600; color: var(--sage-light); }
.cta-strip-actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ── THANK YOU ── */
.thankyou-wrap { min-height: 80vh; display: flex; align-items: center; justify-content: center; padding: 120px 40px 80px; background: var(--warm-white); }
.thankyou-inner { max-width: 540px; text-align: center; }
.thankyou-icon { width: 72px; height: 72px; border: 1.5px solid var(--sage); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--sage); margin: 0 auto 32px; }
.thankyou-title { font-size: clamp(28px, 3.5vw, 44px); font-weight: 300; color: var(--forest); letter-spacing: -0.01em; margin-bottom: 20px; line-height: 1.15; }
.thankyou-body { font-size: 16px; font-weight: 300; line-height: 1.8; color: var(--muted); margin-bottom: 12px; }
.thankyou-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }

/* ── 404 ── */
.error-hero { min-height: 80vh; display: flex; align-items: center; background-color: var(--canvas); padding: clamp(120px, 16vw, 180px) 0 clamp(80px, 10vw, 120px); }
.error-hero__inner { max-width: 1200px; margin: 0 auto; padding-inline: clamp(20px, 5vw, 80px); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 6vw, 96px); align-items: center; }
.error-hero__title { font-family: 'DM Sans', sans-serif; font-size: clamp(42px, 6vw, 72px); font-weight: 300; color: var(--forest); line-height: 1.1; margin: 0 0 1.25rem; }
.error-hero__title strong { font-weight: 600; color: var(--sage); }
.error-hero__body { font-size: clamp(16px, 1.8vw, 18px); color: var(--muted); line-height: 1.7; max-width: 480px; margin: 0 0 2rem; }
.error-hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.scripture-panel { background-color: var(--forest); color: var(--warm-white); padding: clamp(36px, 5vw, 56px); border-radius: 4px; }
.scripture-panel__text { font-family: 'Lora', serif; font-style: italic; font-size: clamp(16px, 1.8vw, 20px); line-height: 1.75; color: var(--sage-light); margin: 0 0 1.25rem; }
.scripture-panel__ref { font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin: 0; }
.section-pad-sm { padding: clamp(60px, 8vw, 96px) 0; }
.error-links__label { margin-bottom: 2rem; }
.error-links__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.error-link-card { display: flex; flex-direction: column; gap: 0.5rem; padding: 1.75rem; background: var(--warm-white); border: 1px solid var(--border); border-radius: 4px; text-decoration: none; transition: border-color 0.2s ease, background 0.2s ease; }
.error-link-card:hover { border-color: var(--sage); background: var(--sage-pale); }
.error-link-card__title { font-family: 'DM Sans', sans-serif; font-size: 17px; font-weight: 600; color: var(--forest); }
.error-link-card__desc { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* ══════════════════════════════════════════════════════════
   PAGE HERO BANNER — shared inner-page header
   Variants: forest (default) | ruled | split | textured | image
══════════════════════════════════════════════════════════ */

/* ── Base ── */
.page-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 480px;
  padding: clamp(40px, 5vw, 60px) var(--page-gutter) clamp(52px, 6vw, 80px);
  background: var(--forest);
}
.page-hero__inner {
  position: relative;
  z-index: 2;
}
.page-hero__eyebrow { color: var(--sage-light); margin-bottom: 18px; }
.page-hero__title {
  font-family: var(--font-primary);
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 300;
  color: var(--warm-white);
  line-height: 1.15;
  margin: 0 0 20px;
  max-width: var(--container-hero);
  letter-spacing: -0.01em;
}
.page-hero__title strong { font-weight: 600; color: var(--sage-light); }
.page-hero__sub {
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--sage-pale);
  line-height: 1.8;
  max-width: var(--container-hero-sub);
  font-weight: 300;
}

/* ── Variant: forest (default) ─ solid deep green ── */
.page-hero--forest {
  background: var(--forest);
}

/* ── Variant: ruled ─ forest + three horizontal accent lines ── */
.page-hero--ruled {
  background: var(--forest);
}
.page-hero--ruled .page-hero__rules {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.page-hero--ruled .page-hero__rules span {
  display: block;
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: rgba(138,176,154,0.18);
}
.page-hero--ruled .page-hero__rules span:nth-child(1) { bottom: 38%; }
.page-hero--ruled .page-hero__rules span:nth-child(2) { bottom: 22%; }
.page-hero--ruled .page-hero__rules span:nth-child(3) { bottom: 6%; }
.page-hero--ruled .page-hero__eyebrow { color: var(--sage-light); }

/* ── Variant: split ─ text left, giant "58" number right ── */
.page-hero--split {
  background: var(--forest);
}
.page-hero--split .page-hero__split-deco {
  position: absolute;
  right: var(--page-gutter);
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
  line-height: 1;
}
.page-hero--split .page-hero__deco-num {
  font-family: var(--font-primary);
  font-size: clamp(160px, 18vw, 280px);
  font-weight: 700;
  color: rgba(78,128,101,0.12);
  letter-spacing: -0.04em;
  display: block;
  user-select: none;
}
.page-hero--split .page-hero__inner { max-width: 60%; }

/* ── Variant: textured ─ sage-canvas gradient, no photo needed ── */
.page-hero--textured {
  background:
    radial-gradient(ellipse 80% 60% at 70% 120%, rgba(78,128,101,0.22) 0%, transparent 60%),
    linear-gradient(155deg, var(--forest) 0%, var(--mid) 60%, #1e3828 100%);
}
.page-hero--textured .page-hero__title { color: var(--warm-white); }
.page-hero--textured .page-hero__sub   { color: var(--sage-pale); }

/* ── Variant: image ─ full-bleed photo behind dark overlay ── */
.page-hero--image {
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center 40%;
}
.page-hero--image .page-hero__img-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(18,43,32,0.22) 0%,
    rgba(18,43,32,0.72) 60%,
    rgba(18,43,32,0.88) 100%
  );
}
.page-hero--video {
  background: var(--forest);
}
.page-hero--video .page-hero__video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.page-hero--video .page-hero__video-wrap video {
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.page-hero--video .page-hero__img-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(18,43,32,0.22) 0%,
    rgba(18,43,32,0.72) 60%,
    rgba(18,43,32,0.88) 100%
  );
}

/* ── Enforce font on all page-hero content ── */
.page-hero__eyebrow,
.page-hero__title,
.page-hero__sub {
  font-family: var(--font-primary);
}

.steps-section { background: var(--canvas); padding: var(--page-section-y) var(--page-gutter); }
.steps-header { margin-bottom: clamp(52px, 7vw, 88px); }
.steps-intro { font-size: 16px; color: var(--muted); line-height: 1.82; margin-top: 16px; }
.steps-flow { display: flex; flex-direction: column; }
.step-row { display: grid; grid-template-columns: 80px 1fr; gap: 0 32px; }
.step-number-col { display: flex; flex-direction: column; align-items: center; padding-top: 4px; }
.step-num { font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 600; color: var(--sage); letter-spacing: 0.12em; background: var(--sage-pale); border-radius: 50%; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step-line { flex: 1; width: 1px; background: var(--border); margin: 12px 0; min-height: 60px; }
.step-content { padding: 0 0 clamp(40px, 6vw, 72px); max-width: 680px; }
.step-title { font-family: 'DM Sans', sans-serif; font-size: clamp(19px, 2.2vw, 24px); font-weight: 500; color: var(--forest); margin: 8px 0 16px; line-height: 1.3; }
.step-body { font-size: clamp(14px, 1.5vw, 16px); color: var(--muted); line-height: 1.85; margin-bottom: 14px; }
.step-callout { display: flex; align-items: flex-start; gap: 14px; background: var(--sage-pale); border-left: 3px solid var(--sage); border-radius: 0 8px 8px 0; padding: 16px 20px; margin-top: 24px; }
.step-callout-icon { color: var(--sage); flex-shrink: 0; margin-top: 2px; }
.step-callout p { font-size: 14px; color: var(--mid); line-height: 1.7; margin: 0; }
.step-visual-note { display: flex; gap: 32px; margin-top: 28px; flex-wrap: wrap; }
.step-stat { display: flex; flex-direction: column; gap: 4px; }
.step-stat-num { font-family: 'DM Sans', sans-serif; font-size: clamp(24px, 3vw, 34px); font-weight: 300; color: var(--sage); line-height: 1; }
.step-stat-label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; max-width: 160px; line-height: 1.5; }

.maths-section { background: var(--warm-white); }
.maths-image-band { position: relative; height: 460px; overflow: hidden; }
.maths-image-band img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; transition: transform 0.8s ease; }
.maths-image-band:hover img { transform: scale(1.03); }
.maths-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(18,32,22,0.72) 0%, rgba(18,32,22,0.22) 60%, transparent 100%); }
.maths-text { position: absolute; left: var(--page-gutter); bottom: 60px; max-width: 520px; }
.maths-title { font-size: clamp(28px, 3.2vw, 44px); font-weight: 300; color: var(--canvas); line-height: 1.15; letter-spacing: -0.01em; margin-top: 8px; }
.maths-title strong { font-weight: 600; color: var(--sage-light); }
.maths-cards-wrap { padding: clamp(64px, 8vw, 100px) var(--page-gutter) var(--page-section-y); }
.maths-example { width: 100%; }
.maths-example-intro { font-size: clamp(15px, 1.6vw, 17px); color: var(--mid); margin-bottom: 36px; line-height: 1.7; }
.maths-grid { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.maths-card { background: var(--canvas); border: 1px solid var(--border); border-radius: 10px; padding: 20px 24px; display: flex; flex-direction: column; gap: 6px; flex: 1; min-width: 130px; }
.maths-card-op, .maths-card-eq { background: transparent; border: none; font-size: clamp(24px, 3vw, 36px); color: var(--sage-light); font-weight: 300; flex: 0; padding: 0 4px; min-width: auto; }
.maths-card-result { background: var(--forest); border-color: var(--forest); }
.maths-card-result .maths-card-num { color: var(--sage-light); }
.maths-card-result .maths-card-label { color: var(--sage-pale); }
.maths-card-num { font-family: 'DM Sans', sans-serif; font-size: clamp(22px, 2.8vw, 32px); font-weight: 300; color: var(--forest); line-height: 1; }
.maths-card-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; line-height: 1.5; }
.maths-footnote { font-size: 15px; color: var(--muted); line-height: 1.85; border-top: 1px solid var(--border-soft); padding-top: 24px; }

.not-section { background: var(--canvas); padding: var(--page-section-y) var(--page-gutter); }
.not-inner { width: 100%; }
.not-header { max-width: var(--container-not-header); margin-bottom: clamp(40px, 6vw, 64px); }
.not-intro { font-size: 16px; color: var(--muted); line-height: 1.8; margin-top: 16px; }
.not-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); }
.not-card { background: var(--canvas); padding: 48px 40px; transition: background 0.3s, transform 0.3s; }
.not-card:hover { background: var(--sage-pale); transform: translateY(-4px); }
.not-icon { width: 42px; height: 42px; background: rgba(78,128,101,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--sage); margin-bottom: 22px; }
.not-title { font-family: 'DM Sans', sans-serif; font-size: 17px; font-weight: 500; color: var(--forest); margin-bottom: 16px; letter-spacing: -0.01em; line-height: 1.3; }
.not-body { font-size: 14px; color: var(--muted); line-height: 1.82; }

.name-section { background: var(--warm-white); padding: var(--page-section-y) var(--page-gutter); }
.name-inner { width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.name-content .section-title { margin: 14px 0 24px; }
.name-body { font-size: clamp(14px, 1.5vw, 16px); color: var(--muted); line-height: 1.85; margin-bottom: 16px; }
.name-scripture { display: flex; flex-direction: column; gap: 0; }
.name-scripture .scripture-block { background: var(--forest); padding: 52px; margin-bottom: 16px; }
.name-scripture-note { font-size: 13px; color: var(--muted); line-height: 1.75; padding-left: 4px; }

.faq-section { background: var(--canvas); padding: var(--page-section-y) var(--page-gutter); }
.faq-inner { margin: 0 auto; }
.faq-header { margin-bottom: clamp(40px, 6vw, 64px); }
.faq-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--border-soft); }
.faq-item { border-bottom: 1px solid var(--border-soft); }
.faq-question { width: 100%; background: none; border: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 0; font-family: 'DM Sans', sans-serif; font-size: clamp(14px, 1.5vw, 16px); font-weight: 500; color: var(--forest); text-align: left; transition: color 0.2s; }
.faq-question:hover { color: var(--sage); }
.faq-chevron { flex-shrink: 0; color: var(--sage); transition: transform 0.3s ease; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 22px; }
.faq-answer p { font-size: clamp(14px, 1.4vw, 15px); color: var(--muted); line-height: 1.85; }

/* Enforce the requested page font consistently on How It Works content. */
.how-it-works .page-hero,
.how-it-works .steps-section,
.how-it-works .maths-section,
.how-it-works .not-section,
.how-it-works .name-section,
.how-it-works .faq-section {
  font-family: var(--font-primary);
}

/* ══════════════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════════════ */

/* ── Section 2: Opening question ── */
.about-question {
  background: var(--warm-white);
  padding: var(--page-section-y) var(--page-gutter);
}
.about-question-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.about-question-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.88;
  color: var(--mid);
  margin-bottom: 28px;
}
.about-question-line {
  font-family: 'Lora', serif;
  font-size: clamp(18px, 2vw, 22px);
  font-style: italic;
  line-height: 1.65;
  color: var(--forest);
  margin-bottom: 28px;
}
.about-question-close {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.88;
  color: var(--mid);
}

/* ── Section 3: Tony's story ── */
/* Full-bleed split — image left, content right. Same approach as homepage .get-involved */
.about-story {
  background: var(--canvas);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.about-story-image {
  position: relative;
  overflow: hidden;
}
.about-story-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.8s ease;
}
.about-story-image:hover img { transform: scale(1.04); }
.about-story-content {
  padding: clamp(48px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-story-title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  line-height: 1.18;
  color: var(--forest);
  letter-spacing: -0.01em;
  margin-top: 16px;
  margin-bottom: 28px;
}
.about-story-title strong { font-weight: 600; color: var(--sage); }
.about-story-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.88;
  color: var(--mid);
}
.about-story-body p { margin-bottom: 20px; }
.about-story-body p:last-child { margin-bottom: 0; }
.about-pullquote {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.about-pullquote-text {
  font-family: 'Lora', serif;
  font-size: clamp(17px, 1.8vw, 20px);
  font-style: italic;
  line-height: 1.65;
  color: var(--sage);
  margin-bottom: 14px;
}
.about-pullquote-cite {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  font-style: normal;
}

/* ── Section 4: Isaiah 58 ── */
.about-isaiah {
  background: var(--warm-white);
  padding: var(--page-section-y) var(--page-gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-isaiah-copy { padding-top: 8px; }
.about-isaiah-title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  line-height: 1.18;
  color: var(--forest);
  letter-spacing: -0.01em;
  margin-top: 16px;
  margin-bottom: 28px;
}
.about-isaiah-title strong { font-weight: 600; color: var(--sage); }
.about-isaiah-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.88;
  color: var(--mid);
}
.about-isaiah-body p { margin-bottom: 20px; }
.about-isaiah-body p:last-child { margin-bottom: 0; }
.about-isaiah-verse-block {
  background: var(--forest);
  padding: 52px;
}
.about-isaiah-verse-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--sage-light);
  margin-bottom: 28px;
}
.about-isaiah-verse-text {
  font-family: 'Lora', serif;
  font-size: 18px;
  font-style: italic;
  line-height: 1.82;
  color: rgba(242,240,236,0.75);
  margin-bottom: 24px;
}
.about-isaiah-verse-ref {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--sage-light);
}
.about-isaiah-verse-note {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(78,128,101,0.2);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(242,240,236,0.45);
  font-style: italic;
}

/* ── Section 5: Vision ── */
.about-vision {
  background: var(--warm-white);
  padding: var(--page-section-y) var(--page-gutter);
}
.about-vision-inner {
  max-width: 680px;
  margin: 0 auto;
}
.about-vision-title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  line-height: 1.18;
  color: var(--forest);
  letter-spacing: -0.01em;
  margin-top: 16px;
  margin-bottom: 28px;
}
.about-vision-title strong { font-weight: 600; color: var(--sage); }
.about-vision-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.88;
  color: var(--mid);
}
.about-vision-body p { margin-bottom: 20px; }
.about-vision-body p:last-child { margin-bottom: 0; }

/* ── City strip ── */
.about-city-strip {
  background: var(--warm-white);
  padding: 60px var(--page-gutter) 72px;
  border-top: 1px solid var(--border-soft);
}
.about-city-strip-inner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: clamp(32px, 5.5vw, 96px);
}

/* Each city item: buildings grow from ground up on reveal.
   clip-path inset starts at 96% from top (ground line only visible),
   then opens upward to reveal the full skyline. */
.about-city-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  clip-path: inset(96% 0 0 0);
  opacity: 0;
  transition: clip-path 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.35s ease;
}
.city-strip-anim.in .about-city-item {
  clip-path: inset(0% 0 0 0);
  opacity: 1;
}
.city-strip-anim.in .about-city-item:nth-child(1) { transition-delay: 0s; }
.city-strip-anim.in .about-city-item:nth-child(2) { transition-delay: 0.14s; }
.city-strip-anim.in .about-city-item:nth-child(3) { transition-delay: 0.28s; }
.city-strip-anim.in .about-city-item:nth-child(4) { transition-delay: 0.42s; }
.city-strip-anim.in .about-city-item:nth-child(5) { transition-delay: 0.56s; }

.about-city-item svg {
  display: block;
  color: var(--sage);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.about-city-item:hover svg { opacity: 0.9; }
.about-city-name {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  opacity: 0.7;
}

/* ── Section 6: Promises ── */
.about-promises {
  background: var(--canvas);
  padding: var(--page-section-y) var(--page-gutter);
}
.about-promises-header {
  margin-bottom: 48px;
}
.about-promises-title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  line-height: 1.18;
  color: var(--forest);
  letter-spacing: -0.01em;
  margin-top: 16px;
  margin-bottom: 0;
}
.about-promises-title strong { font-weight: 600; color: var(--sage); }
.about-promises-intro {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.88;
  color: var(--muted);
}
.about-promises-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.about-promise-card {
  background: var(--warm-white);
  padding: 48px 40px;
}
.about-promise-num {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
}
.about-promise-rule {
  width: 28px;
  height: 1px;
  background: var(--sage);
  margin-bottom: 24px;
}
.about-promise-title {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--forest);
  margin-bottom: 16px;
}
.about-promise-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.82;
  color: var(--muted);
  margin-bottom: 24px;
}
.about-promise-verse {
  font-family: 'Lora', serif;
  font-size: 13px;
  font-style: italic;
  line-height: 1.75;
  color: var(--sage);
  padding-top: 20px;
  border-top: 1px solid var(--border-soft);
}
.about-promise-verse-ref {
  display: block;
  margin-top: 10px;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
}

/* ══════════════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════════════ */
.contact-form-section {
  background: var(--warm-white);
  padding: var(--page-section-y) var(--page-gutter);
}
.contact-form-wrap {
  max-width: 640px;
  margin: 0 auto;
}
.contact-form-heading {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  line-height: 1.18;
  color: var(--forest);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.contact-form-assurance {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.88;
  color: var(--mid);
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.contact-form-wrap form { margin-top: 40px; }
.form-label-optional {
  font-weight: 300;
  opacity: 0.55;
  text-transform: none;
  letter-spacing: 0;
  font-size: 10px;
}
.contact-form-wrap .btn-sage { margin-top: 8px; }
.contact-form-footer {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
}
.contact-form-footer a {
  color: var(--sage);
  text-decoration: underline;
  text-decoration-color: var(--sage-pale);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}
.contact-form-footer a:hover { text-decoration-color: var(--sage); }

.contact-story-section {
  background: var(--canvas);
  padding: var(--page-section-y) var(--page-gutter);
  border-top: 1px solid var(--border-soft);
}
.contact-story-inner {
  max-width: 640px;
  margin: 0 auto;
}
.contact-story-inner .section-eyebrow { margin-bottom: 16px; }
.contact-story-heading {
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--forest);
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.contact-story-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.88;
  color: var(--mid);
  margin-bottom: 36px;
}
.contact-story-body p { margin-bottom: 16px; }
.contact-story-body p:last-child { margin-bottom: 0; }

.form-error {
  font-size: 13px;
  font-weight: 300;
  color: #b94a4a;
  line-height: 1.6;
  margin-bottom: 16px;
}
.form-error a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ══════════════════════════════════════════════════════════
   GET INVOLVED PAGE
══════════════════════════════════════════════════════════ */

/* Section 1 — two paths */
.gi-top-cta-section {
  background: var(--forest);
  padding: clamp(52px, 7vw, 88px) var(--page-gutter);
}
.gi-top-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.gi-top-cta-text .section-eyebrow { color: var(--sage-light); }
.gi-top-cta-heading {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 300;
  line-height: 1.18;
  color: var(--canvas);
  letter-spacing: -0.01em;
  margin: 16px 0 18px;
}
.gi-top-cta-heading strong { font-weight: 600; color: var(--sage-light); }
.gi-top-cta-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.82;
  color: rgba(242,240,236,0.62);
  max-width: 560px;
}
.gi-top-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .gi-top-cta-inner { flex-direction: column; align-items: flex-start; }
}

.gi-paths-section {
  background: var(--canvas);
  padding: var(--page-section-y) var(--page-gutter);
}
.gi-paths-header { margin-bottom: clamp(40px, 6vw, 64px); }
.gi-paths-header .section-title { margin-top: 16px; }
.gi-paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
}
.gi-path-card {
  background: var(--warm-white);
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
}
.gi-path-card-num {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 20px;
}
.gi-path-card-title {
  font-size: 20px;
  font-weight: 500;
  color: var(--forest);
  line-height: 1.28;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.gi-path-card-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 36px;
  flex: 1;
}

/* Section 2 — what to expect */
.gi-expect-section {
  background: var(--warm-white);
  padding: var(--page-section-y) var(--page-gutter);
}
.gi-expect-inner { max-width: 720px; margin: 0 auto; }
.gi-expect-heading {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  line-height: 1.18;
  color: var(--forest);
  letter-spacing: -0.01em;
  margin-top: 16px;
  margin-bottom: 32px;
}
.gi-expect-body { font-size: 16px; font-weight: 300; line-height: 1.88; color: var(--mid); }
.gi-expect-body p { margin-bottom: 20px; }
.gi-expect-body p:last-child { margin-bottom: 0; }

/* Section 3 — beyond the church */
.gi-beyond-section {
  background: var(--sage-pale);
  padding: var(--page-section-y) var(--page-gutter);
}
.gi-beyond-inner { max-width: 720px; margin: 0 auto; }
.gi-beyond-heading {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  line-height: 1.18;
  color: var(--forest);
  letter-spacing: -0.01em;
  margin-top: 16px;
  margin-bottom: 24px;
}
.gi-beyond-body { font-size: 16px; font-weight: 300; line-height: 1.88; color: var(--mid); margin-bottom: 36px; }
.gi-beyond-body p { margin-bottom: 20px; }
.gi-beyond-body p:last-child { margin-bottom: 0; }

/* Section 4 — worth knowing */
.gi-worth-section {
  background: var(--canvas);
  padding: var(--page-section-y) var(--page-gutter);
}
.gi-worth-inner { max-width: 720px; margin: 0 auto; }
.gi-worth-heading {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  line-height: 1.18;
  color: var(--forest);
  letter-spacing: -0.01em;
  margin-top: 16px;
  margin-bottom: 24px;
}
.gi-worth-body { font-size: 16px; font-weight: 300; line-height: 1.88; color: var(--mid); margin-bottom: 28px; }
.gi-worth-body p { margin-bottom: 20px; }
.gi-worth-body p:last-child { margin-bottom: 0; }
.gi-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--sage);
  text-decoration: none;
  transition: gap 0.2s;
}
.gi-text-link:hover { gap: 12px; }
.gi-text-link svg { flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════
   STORIES PAGE
══════════════════════════════════════════════════════════ */

/* Section 1 — story cards */
.sp-cards-section {
  background: var(--canvas);
  padding: var(--page-section-y) var(--page-gutter);
}
.sp-cards-header { margin-bottom: clamp(40px, 6vw, 64px); }
.sp-cards-header .section-title { margin-top: 16px; }
.sp-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}
.sp-story-card {
  background: var(--sage-pale);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  transition: background 0.25s;
}
.sp-story-card:hover { background: #d6e1d7; }
.sp-story-church {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--sage);
  margin-bottom: 4px;
}
.sp-story-location {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 28px;
}
.sp-story-stat {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 300;
  color: var(--forest);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.sp-story-stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.sp-story-outcome {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.82;
  color: var(--muted);
  margin-bottom: 28px;
  flex: 1;
}
.sp-story-rule { width: 28px; height: 1px; background: var(--sage); margin-bottom: 20px; }
.sp-story-quote {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.72;
  color: var(--mid);
  margin-bottom: 16px;
}
.sp-story-attribution {
  font-size: 11px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}
.sp-story-attribution strong {
  display: block;
  font-weight: 500;
  color: var(--forest);
  font-size: 12px;
  margin-bottom: 1px;
}

/* Section 2 — share your story */
.sp-share-section {
  background: var(--warm-white);
  padding: var(--page-section-y) var(--page-gutter);
  text-align: center;
}
.sp-share-inner { max-width: 580px; margin: 0 auto; }
.sp-share-heading {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  line-height: 1.18;
  color: var(--forest);
  letter-spacing: -0.01em;
  margin-top: 16px;
  margin-bottom: 20px;
}
.sp-share-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.88;
  color: var(--mid);
  margin-bottom: 36px;
}
.sp-share-body p { margin-bottom: 16px; }
.sp-share-body p:last-child { margin-bottom: 0; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — single source of truth, no duplicates
   Breakpoints: 900px (tablet/mobile nav), 540px (small mobile)
══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  nav { padding: 18px 24px; }

  /* Switch nav links to slide-in panel */
  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0;
    width: min(300px, 85vw);
    height: 100vh;
    background: var(--forest);
    padding: 80px 32px 40px;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1050;
    box-shadow: -8px 0 40px rgba(0,0,0,0.25);
    list-style: none;
    margin: 0;
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.07); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a {
    display: block;
    padding: 16px 0;
    font-size: 16px;
    font-weight: 400;
    color: var(--warm-white);
    text-decoration: none;
    letter-spacing: 0.04em;
    text-transform: none;
    transition: color 0.2s;
  }
  .nav-links a:hover, .nav-links a.active { color: var(--sage-light); }

  /* Show hamburger, hide desktop CTA */
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }

  /* Show mobile CTA inside panel */
  .nav-mobile-cta {
    display: block;
    border-bottom: none !important;
    margin-top: 32px;
    padding-bottom: 8px;
  }
  .nav-mobile-cta a.btn-sage {
    display: block !important;
    width: 100%;
    padding: 16px 24px !important;
    font-size: 12px !important;
    text-align: center;
    letter-spacing: 0.2em;
  }



  /* Layout */
  .hero-content { grid-template-columns: 1fr; gap: 32px; padding: 0 32px 56px; }
  .concept { grid-template-columns: 1fr; padding: 80px 24px; gap: 48px; }
  .estimator { grid-template-columns: 1fr; padding: 80px 24px; gap: 48px; }
  .estimator-panel { position: static; }
  .get-involved { grid-template-columns: 1fr; display: flex; flex-direction: column; }
  .get-involved-image { height: 55vw; }
  .get-involved-content { padding: 60px 32px; }
  .why-image-text { left: 32px; bottom: 36px; }
  .why-cards-wrap, .stories-cards-wrap { padding: 0 24px 72px; }
  .why-grid, .stories-grid { grid-template-columns: 1fr; }
  .section-header-split { flex-direction: column; align-items: flex-start; gap: 20px; }
  .section-aside { text-align: left; max-width: 100%; }
  footer { padding: 60px 24px; grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { padding: 18px 24px; flex-direction: column; gap: 8px; text-align: center; }
  .page-hero { min-height: 380px; justify-content: flex-start; padding-top: calc(var(--nav-height, 72px) + 32px); }
  .page-hero-band .band-content { left: 32px; bottom: 36px; }
  .cta-strip { padding: 60px 24px; }
  .cta-strip-inner { flex-direction: column; align-items: flex-start; }

  /* How it works */
  .name-inner { grid-template-columns: 1fr; gap: 48px; }
  .not-grid { grid-template-columns: 1fr 1fr; }
  .maths-grid { flex-direction: column; gap: 12px; }
  .maths-card-op, .maths-card-eq { transform: rotate(90deg); }
  .step-row { grid-template-columns: 52px 1fr; gap: 0 16px; }
  .step-num { width: 36px; height: 36px; font-size: 10px; }
  .step-visual-note { gap: 20px; }

  /* 404 */
  .error-hero__inner { grid-template-columns: 1fr; }
  .error-hero__verse { display: none; }
  .error-links__grid { grid-template-columns: repeat(2, 1fr); }

  /* About */
  .about-story { display: flex; flex-direction: column; min-height: unset; }
  .about-story-image { height: 60vw; position: relative; }
  .about-story-content { padding: 48px 24px; }
  .about-isaiah { grid-template-columns: 1fr; gap: 48px; }
  .about-isaiah-verse-block { padding: 40px 28px; }
  .about-promises-grid { grid-template-columns: 1fr; }
  .about-promises-header { margin-bottom: 40px; }
  .about-city-strip-inner { gap: 20px; }

  /* Get involved page */
  .gi-paths-grid { grid-template-columns: 1fr; }
  .gi-path-card { padding: 40px 28px; }

  /* Stories page */
  .sp-cards-grid { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  nav { padding: 16px 20px; }
  .hero-content { padding: 0 20px 48px; }
  .why-image-text { left: 20px; bottom: 24px; }
  .stories-image-text { left: 20px; bottom: 32px; }
  .why-cards-wrap, .stories-cards-wrap { padding: 0 20px 56px; }
  .get-involved-content { padding: 48px 20px; }
  footer { padding: 48px 20px; grid-template-columns: 1fr; }
  .footer-bottom { padding: 16px 20px; }
  .panel-total { font-size: 48px; }
  .page-hero { min-height: 320px; justify-content: flex-start; padding-top: calc(var(--nav-height, 68px) + 28px); }
  .page-hero-band .band-content { left: 20px; bottom: 28px; }
  .page-hero-band { height: 340px; }
  .cta-strip { padding: 48px 20px; }
  .thankyou-wrap { padding: 100px 20px 60px; }
  .error-links__grid { grid-template-columns: 1fr; }
  .error-hero__actions { flex-direction: column; }
  .not-grid { grid-template-columns: 1fr; }
  .maths-image-band { height: 340px; }
  .maths-text { bottom: 28px; }

  /* About */
  .about-story-image { height: 72vw; }
  .about-story-content { padding: 40px 20px; }
  .about-promise-card { padding: 36px 28px; }
  .about-isaiah-verse-block { padding: 32px 20px; }
  .about-city-strip { padding: 48px 20px 56px; }
  .about-city-strip-inner { gap: 0; justify-content: space-evenly; flex-wrap: nowrap; }
  .about-city-strip-inner::before { left: 0; right: 0; }
  .about-city-item svg { width: 48px; height: 30px; }
  .about-city-name { display: none; }

  /* Get involved page */
  .gi-path-card { padding: 32px 20px; }

  /* Stories page */
  .sp-story-card { padding: 36px 24px; }
}