/* ============================================================
   ANI Fund — Cinematic Mission Redesign
   References: Sequel.co (dark cinematic), Neuralink (dark/light rhythm),
               Kindsight.io (warm cream), Liron Moran (monumental type)
   ============================================================ */

:root {
  --void: #0c1510;
  --green: #1B4332;
  --green-dark: #143026;
  --cream: #FAF7F2;
  --paper: #FFFFFF;
  --gold: #C9A84C;
  --gold-deep: #B2913B;
  --text: #1a1a18;
  --text-muted: #6B6B66;
  --text-hero: rgba(255,255,255,0.92);
  --text-hero-muted: rgba(255,255,255,0.52);
  --line: #E5DED1;
  --line-dark: rgba(255,255,255,0.09);
  --green-wash: #EAF0E7;

  --display: 'Cormorant Garamond', Georgia, serif;
  --serif: 'Inter', system-ui, sans-serif;
  --sans: 'Inter', system-ui, sans-serif;
  --maxw: 1200px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: #1a1a1a;
  line-height: 1.65;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1 {
  font-family: var(--display);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.01em;
  max-width: 18ch;
  text-wrap: balance;
}
h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
  max-width: 28ch;
  text-wrap: balance;
}
h3 {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  line-height: 1.2;
  text-wrap: balance;
}
p {
  font-family: var(--sans);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 400;
  line-height: 1.65;
  max-width: 60ch;
}

/* Elegant wrapping: no widows or orphans anywhere */
p, blockquote, li, figcaption, .trust-label, cite { text-wrap: pretty; }
h4, h5, .hero-lede, .tier-kicker, .role { text-wrap: balance; }

/* ============================================================ PAGE LOAD */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.load-1 { animation: fadeIn 0.9s var(--ease-out) 0.1s both; }
.load-2 { animation: fadeIn 0.9s var(--ease-out) 0.3s both; }
.load-3 { animation: fadeIn 0.9s var(--ease-out) 0.5s both; }
.load-4 { animation: fadeIn 0.9s var(--ease-out) 0.7s both; }
.load-5 { animation: fadeIn 0.9s var(--ease-out) 0.9s both; }

/* ============================================================ SCROLL REVEAL */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }
[data-reveal-delay="5"] { transition-delay: 0.5s; }

/* ============================================================ UTILITIES */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }
.section    { padding: clamp(6rem, 12vw, 10rem) 0; }
.eyebrow {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 0.75rem;
  display: block;
}
.eyebrow-dark { color: rgba(201,168,76,0.85); }
.rule-gold, hr { width: 80px; height: 1px; background: #C9A84C; border: none; margin: 0 0 1.75rem; }
.rule-gold.center { margin-left: 0; margin-right: 0; }
.center { text-align: left; }

/* ============================================================ BUTTONS */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 17px 38px;
  border-radius: 9999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  min-height: 52px;
  transition: background 0.25s var(--ease-out),
              color 0.25s var(--ease-out),
              border-color 0.25s var(--ease-out),
              transform 0.25s var(--ease-out),
              box-shadow 0.25s var(--ease-out);
}

/* Gold fill — primary CTA */
.btn-gold {
  background: var(--gold);
  color: var(--paper);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.32);
}

/* Ghost light — on dark backgrounds */
.btn-ghost-light {
  background: transparent;
  color: var(--paper);
  border-color: rgba(255,255,255,0.45);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.75);
  transform: translateY(-2px);
}

/* Ghost green — on light backgrounds */
.btn-ghost-green {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-ghost-green:hover {
  background: var(--green);
  color: var(--paper);
  transform: translateY(-2px);
}

/* Legacy aliases */
.btn-green      { background: var(--green); color: var(--paper); border-color: var(--green); }
.btn-green:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-2px); }
.btn-outline-light { border-color: rgba(255,255,255,0.5); color: var(--paper); }
.btn-outline-light:hover { background: rgba(255,255,255,0.10); }

/* ============================================================ NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  transition: background 0.4s var(--ease-out),
              border-color 0.4s var(--ease-out),
              backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}

/* Transparent on hero */
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  position: relative;
}

.nav.scrolled {
  background: rgba(12,21,16,0.94);
  border-bottom-color: var(--line-dark);
}

/* While the story video is open, keep the nav bar solid and usable above the modal */
body.video-open .nav {
  background: rgba(12,21,16,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line-dark);
}

.logo { display: flex; align-items: center; }
.logo-img { height: 36px; width: auto; display: block; filter: brightness(0) invert(1); }

.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links a {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.80);
  padding: 10px 14px;
  letter-spacing: 0.06em;
  transition: color 0.2s;
  border-radius: 9999px;
}
.nav-links a:hover { color: var(--paper); }

/* Animated underline: grows from center on hover, stays for the active tab */
.nav-links a:not(.cta) { position: relative; }
.nav-links a:not(.cta)::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.34s var(--ease-out);
}
.nav-links a:not(.cta):hover::after,
.nav-links a.active:not(.cta)::after { transform: scaleX(1); }

.nav-links a.cta {
  background: var(--gold);
  color: var(--void);
  padding: 11px 24px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.nav-links a.cta:hover {
  background: var(--gold-deep);
  color: var(--void);
}

/* Active tab indicator */
.nav-links a.active { color: var(--paper); }
.nav-links a.cta.active { background: var(--gold-deep); }

/* ---------- Universal nav dropdowns (anchor to on-page sections) ---------- */
.nav-has-menu { position: relative; display: inline-flex; align-items: center; }
.nav-caret {
  display: inline-flex; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.55);
  padding: 6px; margin-left: -8px;
  transition: color 0.2s, transform 0.28s var(--ease-out);
}
.nav-has-menu:hover .nav-caret,
.nav-has-menu:focus-within .nav-caret { color: var(--paper); transform: rotate(180deg); }
.nav-has-menu.is-open .nav-caret { transform: rotate(180deg); }

.nav-menu {
  position: absolute; top: 100%; left: 6px;
  transform: translateY(8px);
  min-width: 236px; padding: 8px;
  background: rgba(24,34,28,0.16);
  -webkit-backdrop-filter: blur(30px) saturate(180%) brightness(1.06);
  backdrop-filter: blur(30px) saturate(180%) brightness(1.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  box-shadow: 0 26px 54px -24px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.10);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.26s var(--ease-out), transform 0.26s var(--ease-out), visibility 0.26s;
  z-index: 60;
}
.nav-menu::before { content: ''; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.nav-has-menu:hover .nav-menu,
.nav-has-menu:focus-within .nav-menu,
.nav-has-menu.is-open .nav-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateY(2px);
}
.nav-menu a {
  display: block;
  font-family: var(--sans);
  font-size: 13.5px; font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.70);
  padding: 11px 15px; border-radius: 7px;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s, padding-left 0.2s;
}
.nav-menu a::after { display: none !important; }
.nav-menu a:hover, .nav-menu a:focus-visible {
  color: #fff;
  background: rgba(201,168,76,0.16);
  padding-left: 19px;
}

/* anchored sections clear the fixed nav when jumped to */
section[id] { scroll-margin-top: 96px; }

/* Center the link group on the page; pin the Give Now CTA far right */
.nav-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.nav-cta {
  margin-left: auto;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--gold);
  color: var(--paper);
  padding: 6px 28px;
  letter-spacing: 0.06em;
  border-radius: 9999px;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold-deep); color: var(--paper); }
.nav-cta.active { background: var(--gold-deep); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px; height: 44px; padding: 10px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--paper);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* ============================================================ HERO */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: var(--void);
  background-image: url('/assets/img/hero-poster.jpg');
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.hero-poster,
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}
.hero-poster { z-index: 0; }
.hero-video  { z-index: 1; }

.hero-parallax {
  position: absolute;
  top: -20%;
  left: 0;
  right: 0;
  bottom: -20%;
  z-index: 1;
  will-change: transform;
}
.hero-parallax .hero-poster,
.hero-parallax .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to bottom,
      rgba(12,21,16,0.30) 0%,
      rgba(12,21,16,0.62) 40%,
      rgba(12,21,16,0.82) 100%),
    linear-gradient(135deg,
      rgba(12,21,16,0.60) 0%,
      transparent 60%);
}

.hero > .container { width: 100%; position: relative; z-index: 3; }

.hero-content {
  padding-top: 120px;
  padding-bottom: clamp(5rem, 12vh, 9rem);
  max-width: 700px;
}

.hero-eyebrow {
  display: block;
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero h1 {
  color: var(--paper);
  margin-bottom: 4px;
  font-size: clamp(4.5rem, 9.5vw, 8rem);
  font-weight: 700;
  letter-spacing: -0.005em;
}

/* Stat lede: the prominent supporting line under the H1 */
.hero p.hero-lede {
  font-size: clamp(17px, 1.7vw, 21px);
  color: var(--text-hero);
  font-weight: 400;
  max-width: 540px;
  line-height: 1.45;
  margin-bottom: 4px;
}

/* Body: recedes beneath the lede */
.hero p {
  font-size: clamp(14px, 1.1vw, 16.5px);
  color: rgba(255,255,255,0.86);
  font-weight: 400;
  margin-bottom: 26px;
  max-width: 540px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 28px;
}

.hero p.hero-trust {
  font-size: clamp(12.5px, 1vw, 14.5px);
  font-weight: 400;
  color: var(--text-hero-muted);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-hero-muted);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--serif);
}
.hero-scroll-hint::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 0.9; transform: scaleY(1.15); }
}

/* ============================================================ TRUST BAR */
.trust {
  background: var(--paper);
  color: var(--text);
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.trust-item {
  text-align: left;
  padding: 0 28px 0 0;
}
.trust-num {
  font-family: var(--display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  color: #1B4332;
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.trust-label {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4a4a4a;
  max-width: 200px;
  margin: 0;
}

/* ============================================================ IMPACT */
.section-head { max-width: 680px; margin: 0 0 56px; text-align: left; }
.section-head h2 {
  color: var(--green);
  margin: 0 0 14px;
}

.impact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); }

.impact-card {
  overflow: hidden;
}
.impact-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.impact-card:hover img { transform: scale(1.04); }
.impact-body { padding: 1.5rem 0 0; }
.impact-body h3 {
  color: var(--green);
  margin-bottom: 10px;
}
.impact-body p { font-size: 16px; color: var(--text-muted); line-height: 1.65; }

/* ============================================================ STORY */
.story { background: var(--cream); }
.story .section-head h2,
.story h2 { color: var(--green); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: center; }
.story-photo {
  overflow: hidden;
  position: relative;
}
.story-photo img {
  width: 100%;
  min-height: 480px;
  object-fit: cover;
  display: block;
}
.story-content {
  padding-left: clamp(2rem, 5vw, 4rem);
  max-width: 52ch;
}
.story-content .rule-gold { margin-left: 0; }
.story-content hr { background: var(--gold); }
.story-content h2 {
  color: var(--green);
  margin-bottom: 28px;
}
.story-content > p { color: var(--text-muted); margin-bottom: 18px; }
.pull {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.3;
  color: #1B4332;
  margin-bottom: 22px;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
}
.attribution {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* ============================================================ SHALOM */
.shalom { background: var(--cream); }
.shalom-inner { max-width: 78ch; margin: 0; text-align: left; }
.shalom-inner h2 {
  color: var(--green);
  margin-bottom: 26px;
  max-width: 52ch;
  margin-left: 0;
  margin-right: 0;
}
.shalom-inner > p {
  font-size: 19px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 48px;
  max-width: 52ch;
  margin-left: 0;
  margin-right: 0;
}
.scripture {
  background: var(--paper);
  border-top: 3px solid var(--gold);
  border-radius: 6px;
  padding: clamp(2.75rem, 6vw, 4.5rem) clamp(1.75rem, 5vw, 3.5rem);
  margin: clamp(3rem, 6vw, 5rem) 0 0;
  box-shadow: 0 20px 55px -30px rgba(12, 21, 16, 0.28);
}
.scripture p {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.3;
  color: #1B4332;
  max-width: 54ch;
  margin: 0 0 18px;
  text-align: left;
}
.scripture cite {
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* ============================================================ TESTIMONIAL */
.testimonial { background: var(--paper); border-top: 1px solid var(--line); }
.testimonial-inner { max-width: 640px; margin: 0; text-align: left; }
.testimonial-inner blockquote {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.3;
  color: #1B4332;
  max-width: 36ch;
  margin: 0 0 28px;
  text-align: left;
}
.testimonial-inner .attribution { color: var(--gold-deep); }

/* ============================================================ CTA MONTHLY */
.cta-monthly { background: var(--void); text-align: left; }
.cta-monthly .inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(6rem, 12vw, 10rem) 40px; }
.cta-monthly .rule-gold { margin-left: 0; margin-right: 0; }
.cta-monthly h2 {
  color: var(--paper);
  margin-bottom: 18px;
  margin-left: 0;
  margin-right: 0;
}
.cta-monthly p {
  font-size: 19px;
  color: rgba(255,255,255,0.60);
  margin: 0 0 38px;
  line-height: 1.65;
  max-width: 44ch;
}
.cta-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  justify-content: flex-start;
}

/* ============================================================ PAGE HERO */
.page-hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  overflow: hidden;
  background: var(--void);
}
/* Pin the headline + subcopy baseline to match the home hero exactly.
   Home's lede sits ~233px of stack (body, CTAs, trust) above its bottom
   padding; we reserve the same offset here. Absolute so a long headline
   grows upward without ever shifting the subcopy off the shared baseline. */
.page-hero > .container {
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(clamp(5rem, 12vh, 9rem) + 233px);
  z-index: 2;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero .hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(12,21,16,0.30) 0%,
      rgba(12,21,16,0.62) 40%,
      rgba(12,21,16,0.82) 100%),
    linear-gradient(135deg,
      rgba(12,21,16,0.55) 0%,
      transparent 60%);
}
.page-hero .inner {
  max-width: 700px;
}
.page-hero h1 {
  color: var(--paper);
  margin-bottom: 24px;
  /* Sized for sentence-length subpage headlines (home's is two words, so it
     can run far bigger). Keeps the same weight/baseline without overflowing
     up into the nav. */
  font-size: clamp(2.75rem, 5.5vw, 4.75rem);
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 1.05;
}
.page-hero p {
  color: rgba(255,255,255,0.72);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.7;
  max-width: 540px;
}

/* ============================================================ ABOUT: PROBLEM */
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); max-width: 900px; margin: 0; }
.stat-card {
  padding: 0 1.5rem 0 0;
  text-align: left;
}
.stat-card p {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 300;
  color: #1B4332;
  line-height: 1.3;
  font-style: italic;
  max-width: none;
}
.need-note { text-align: left; max-width: 60ch; margin: clamp(2.5rem, 5vw, 4rem) 0 0; }
.source-line { margin: 28px 0 0; font-size: 13px; color: var(--text-muted); text-align: left; max-width: 60ch; }

/* ABOUT: WHO */
.prose { max-width: 760px; }
.prose h2 {
  color: var(--green);
  margin-bottom: 28px;
}
.prose p { font-size: 19px; color: var(--text); margin-bottom: 20px; line-height: 1.75; }
.prose p:last-child { margin-bottom: 0; }

/* ABOUT: PILLARS */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); }
.pillar {
  padding-top: 1.5rem;
  border-top: 1px solid #C9A84C;
}
.pillar h3 {
  color: var(--green);
  margin-bottom: 12px;
}
.pillar p { font-size: 16px; color: var(--text-muted); line-height: 1.65; }
.pillar-link {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--gold-deep);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.pillar-link:hover { border-color: var(--gold-deep); }

/* ABOUT: TEAM */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; max-width: 800px; margin: 0; }
.team-card { text-align: left; }
.team-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 24px;
  transition: transform 0.4s var(--ease-out);
}
.team-card:hover img { transform: scale(1.02); }
.team-card h3 {
  color: var(--green);
  margin-bottom: 6px;
}
.team-card .role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 12px;
}
.team-card p { font-size: 16px; color: var(--text-muted); }

/* ============================================================ GIVE PAGE */
.give-section { padding-top: 80px; }
.give-intro { max-width: 640px; margin-bottom: 48px; }
.give-intro .rule-gold { margin-left: 0; }
.give-intro h2 {
  color: var(--green);
  margin-bottom: 14px;
}
.give-intro p { font-size: 18px; color: var(--text-muted); max-width: 52ch; }

.tiers { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 3vw, 2rem); margin-bottom: clamp(4rem, 8vw, 6rem); align-items: stretch; }
.tier {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  padding: clamp(2.5rem, 4vw, 3.5rem) clamp(2rem, 3.5vw, 3rem);
  min-height: 540px;
}
.tier.primary {
  background: var(--void);
  border: 1px solid rgba(201,168,76,0.4);
  box-shadow: 0 24px 60px rgba(12,21,16,0.18);
}
.tier.primary .tier-kicker { color: var(--gold); }
.tier.primary h2 { color: var(--paper); }
.tier.primary .tier-lead { color: rgba(255,255,255,0.72); }
.tier.primary .tier-features li { color: rgba(255,255,255,0.78); }
.tier.secondary {
  background: var(--paper);
  border: 1px solid var(--line);
}
.tier-kicker {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 16px;
  display: block;
}
.tier h2 { margin-bottom: 14px; }
.tier-lead {
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: none;
}
.tier-features {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tier-features li {
  position: relative;
  padding-left: 28px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: none;
}
.tier-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 700;
}
.tier .btn { margin-top: auto; align-self: stretch; text-align: center; }

/* Recommended giving sizes */
.give-sizes-head { max-width: 600px; margin: 0 0 clamp(2.5rem, 5vw, 3.5rem); text-align: left; }
.give-sizes-head h2 { color: var(--green); margin: 0 0 12px; }
.give-sizes-head p { color: var(--text-muted); margin: 0; }
.size-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 2.5vw, 2rem); margin-bottom: clamp(4rem, 8vw, 6rem); }
.size-card {
  text-align: left;
  padding: clamp(2rem, 3vw, 2.75rem) 1.5rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper);
}
.size-card.featured {
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(201,168,76,0.14);
}
.size-label {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.size-amount {
  font-family: var(--display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--green);
  line-height: 1;
  margin-bottom: 18px;
}
.size-amount span {
  display: block;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 10px;
}
.size-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.55; max-width: none; margin: 0; }
.size-card[data-amount] {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.size-card[data-amount]:hover,
.size-card[data-amount]:focus-visible {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(201,168,76,0.18);
  outline: none;
}
.size-choose {
  display: inline-block;
  margin-top: 18px;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.size-choose::after { content: ' \2192'; }

/* Fund the Mission: honoring, understated invitation for operations givers */
.fund-mission {
  max-width: 58ch;
  margin: 0;
  text-align: left;
  padding-top: clamp(1.5rem, 4vw, 2.75rem);
  border-top: 1px solid var(--line);
}
.fund-mission-kicker {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 18px;
}
.fund-mission p {
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: var(--text);
  max-width: none;
  margin: 0 0 24px;
}
.fund-mission-link {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.fund-mission-link:hover { color: var(--gold-deep); border-color: var(--gold-deep); }

.embed-wrap {
  max-width: 600px;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
}
.embed-wrap iframe { width: 100%; border: 0; border-radius: 12px; display: block; }

.give-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px 6px;
  max-width: 52ch;
  margin: 0;
  padding-top: 1.5rem;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}
.give-trust .divider { color: var(--gold); }

/* GIVE — rebuilt tier cards, one-time line, Stripe slot, trust line */
.gv-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  align-items: stretch;
  margin: 0 0 clamp(2.5rem, 5vw, 3.5rem);
}
.gv-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(2.25rem, 3.5vw, 3rem) clamp(1.5rem, 2.5vw, 2rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
}
.gv-featured {
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(201,168,76,0.18);
  transform: translateY(-8px);
}
.gv-badge {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  border: 1px solid rgba(201,168,76,0.45);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 22px;
}
.gv-featured .gv-badge { background: var(--gold); color: var(--paper); border-color: var(--gold); }
.gv-name {
  font-family: var(--display);
  font-size: clamp(1.7rem, 2.6vw, 2.1rem);
  font-weight: 400;
  color: var(--green);
  margin: 0 0 12px;
}
.gv-desc {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 32ch;
  margin: 0 auto 24px;
}
.gv-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 4px;
}
.gv-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  min-height: 58px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--green);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 20px;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.gv-chip:hover,
.gv-chip:focus-visible {
  border-color: var(--gold);
  transform: translateY(-2px);
  outline: none;
}
.gv-chip.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--paper);
}
.gv-chip-day {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.05;
  padding: 12px 20px;
}
.gv-chip-day small {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 5px;
}
.gv-chip-day.is-active small { color: rgba(255,255,255,0.85); }
.gv-card-foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: auto;
  padding-top: 22px;
}
.gv-fineprint {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--text-muted);
}
.gv-cta {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 5px;
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.gv-cta:hover { color: var(--gold-deep); border-color: var(--gold-deep); }
.gv-cta-gold {
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--paper);
  border-radius: 999px;
  padding: 12px 26px;
}
.gv-cta-gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: var(--paper); }

/* GIVE — brand line above the tier cards */
.gv-leadline {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--green);
  text-align: center;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
}

/* GIVE — three equal one-time amount buttons in a single row */
.gv-chips-3 { flex-wrap: nowrap; width: 100%; }
.gv-chips-3 .gv-chip { flex: 1 1 0; min-width: 0; }
.gv-chip-emph { border-color: var(--gold); font-weight: 700; }

/* GIVE — quiet "different amount" link */
.gv-altlink {
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
  text-align: center;
  margin-top: 14px;
  transition: color 0.18s ease;
}
.gv-altlink:hover { color: var(--gold-deep); }

/* GIVE — Grove Tender: keep the two-sentence cadence, balance the second line */
.gv-desc-grove { max-width: 34ch; text-wrap: balance; }
/* GIVE — Grove Tender italic line */
.gv-desc-italic {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.15rem;
  line-height: 1.4;
  color: var(--green);
  margin: 0 0 4px;
}
.gv-onetime {
  text-align: center;
  max-width: none;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}
.gv-embed { margin-left: auto; margin-right: auto; }
.gv-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  min-height: 320px;
  padding: 40px 24px;
  border: 1.5px dashed rgba(201,168,76,0.5);
  border-radius: 12px;
}
.gv-placeholder-kicker {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.gv-placeholder p {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 400;
  color: var(--green);
  max-width: none;
  margin: 0;
}
.gv-placeholder-note {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}
.gv-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 6px;
  max-width: 60ch;
  margin: clamp(1.5rem, 3vw, 2rem) auto 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  text-align: center;
}
.gv-trust .divider { color: var(--gold); }
.gv-fees {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 600px;
  margin: 36px auto 0;
  font-size: 15px;
  color: var(--text-muted);
  cursor: pointer;
}
.gv-fees input {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
}
.gv-checkout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  max-width: 1080px;
  margin: 84px auto 0;
  padding: 0;
  background: var(--paper);
  border: 1px solid var(--gold);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(201,168,76,0.18);
  overflow: hidden;
  scroll-margin-top: 110px;
}
.gv-checkout-photo {
  position: relative;
  min-height: 100%;
  padding: clamp(14px, 1.8vw, 20px);
  background: #fff;
}
/* Floating grid of joy: two staggered columns of smiling faces */
.gv-photo-grid {
  display: flex;
  gap: 12px;
  height: 100%;
}
.gv-photo-col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gv-tile {
  flex: 1;
  min-height: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(28, 43, 29, 0.16);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  will-change: transform;
}
.gv-tile:hover {
  box-shadow: 0 18px 38px rgba(28, 43, 29, 0.26);
}
.gv-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* Headroom so the tilt parallax can shift the photo without exposing edges */
  transform: scale(1.12);
  transition: transform 0.5s ease;
  will-change: transform;
}
/* Uneven tile heights keep the grid organic instead of grid-perfect */
.gv-photo-col:first-child .gv-tile:nth-child(1) { flex: 1.12; }
.gv-photo-col:first-child .gv-tile:nth-child(2) { flex: 0.92; }
.gv-photo-col:first-child .gv-tile:nth-child(3) { flex: 1.02; }
.gv-photo-col:last-child .gv-tile:nth-child(1) { flex: 0.94; }
.gv-photo-col:last-child .gv-tile:nth-child(2) { flex: 1.12; }
.gv-photo-col:last-child .gv-tile:nth-child(3) { flex: 0.98; }
@keyframes gv-float {
  from { transform: translateY(-4px); }
  to { transform: translateY(4px); }
}
.gv-photo-col:first-child { animation: gv-float 7s ease-in-out infinite alternate; }
.gv-photo-col:last-child { animation: gv-float 9s ease-in-out infinite alternate-reverse; }
@media (prefers-reduced-motion: reduce) {
  .gv-photo-col { animation: none; }
}
.gv-checkout-form {
  padding: clamp(2rem, 3.5vw, 3rem) clamp(1.25rem, 2.5vw, 2.25rem);
}
.gv-checkout-form::before {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 18px;
}
.gv-checkout-title {
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 400;
  color: var(--green);
  text-align: center;
  margin-bottom: 4px;
}
.gv-checkout .gv-fees { margin: 12px auto 26px; }
.checkout-loading {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-muted);
  text-align: center;
  padding: 48px 0;
  margin: 0;
}
#checkout-mount {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
}
#checkout-mount:empty { background: transparent; }
@media (max-width: 900px) {
  .gv-checkout { grid-template-columns: 1fr; }
  .gv-checkout-photo { min-height: 0; height: 300px; }
  /* Banner mode: 3x2 mosaic, columns dissolve into one grid */
  .gv-photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
  }
  .gv-photo-col { display: contents; }
  .gv-tile { min-height: 0; }
}
@media (max-width: 720px) {
  .gv-checkout { margin-top: 56px; }
  .gv-checkout-form { padding: 1.75rem 0.9rem; }
  .gv-tiers { grid-template-columns: 1fr; }
  .gv-featured { transform: none; }
}

/* ============================================================ PRIVACY */
.legal { padding: 160px 0 100px; min-height: 60vh; }
.legal h1 {
  color: var(--green);
  margin-bottom: 22px;
}
.legal p { font-size: 18px; color: var(--text-muted); max-width: 720px; margin-bottom: 16px; }
.legal .legal-revised {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 48px;
}
.legal h2 {
  font-size: 30px;
  color: var(--green);
  margin: 52px 0 16px;
}
.legal h3 {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--green);
  margin: 32px 0 12px;
}
.legal ul {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 0 16px;
  padding-left: 24px;
}
.legal li { margin-bottom: 8px; }
.legal a { color: var(--gold); }

/* Thank-you page */
.thanks-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.thanks-social { margin-top: 36px; font-size: 16px; }

/* ============================================================ FOOTER */
.footer {
  background: var(--void);
  color: rgba(255,255,255,0.55);
  padding: 80px 0 40px;
  border-top: 1px solid var(--line-dark);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-tag {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.4rem;
  color: rgba(201,168,76,0.75);
  margin-top: 18px;
  line-height: 1.6;
}
.footer h5 {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 18px;
  font-family: var(--sans);
}
.footer-col a {
  display: block;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255,255,255,0.60);
  padding: 6px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--paper); }
.footer-contact p { font-family: var(--sans); font-size: 0.8rem; font-weight: 400; line-height: 1.6; margin-bottom: 4px; }
.footer-contact a { color: rgba(255,255,255,0.60); transition: color 0.2s; }
.footer-contact a:hover { color: var(--paper); }
.footer-legal {
  padding-top: 32px;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255,255,255,0.28);
  line-height: 1.6;
}

/* ============================================================ IMPACT TICKER */
.ticker {
  background: transparent;
  padding: 2.5rem 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: tickerScroll 35s linear infinite;
  will-change: transform;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  white-space: nowrap;
}
.ticker-item svg { width: 22px; height: 22px; flex-shrink: 0; display: block; }
.ticker-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  color: #1B4332;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ticker-sep { color: #C9A84C; margin: 0 1.5rem; font-size: 0.85rem; }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================ EVERY DOLLAR TELLS A STORY */
.dollar-story { background: #1B4332; padding: clamp(5rem, 10vw, 8rem) 0; }
.dollar-story-line {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2rem, 5.5vw, 5rem);
  color: #FAF7F2;
  text-align: left;
  max-width: none;
  white-space: nowrap;
  margin: 0;
  letter-spacing: 0.01em;
  line-height: 1.1;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.dollar-story-line.is-visible { opacity: 1; }

/* HOME — quiet full-width interstitial line (no background change) */
.home-interstitial { background: var(--green); padding: clamp(4rem, 9vw, 7rem) 0; }
.home-interstitial p {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(1.6rem, 3.4vw, 2.9rem);
  line-height: 1.25;
  color: var(--gold);
  text-align: center;
  max-width: 30ch;
  margin: 0 auto;
}

/* HOME — specific result line under each impact card */
.impact-result {
  margin-top: 12px;
  font-family: var(--sans);
  font-style: italic;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: none;
}

/* HOME — Visual Giving System teaser (dark green, gold) */
.vgs-teaser { background: var(--green); padding: clamp(5rem, 10vw, 8rem) 0; }
.vgs-inner { max-width: 880px; margin: 0 auto; padding: 0 40px; text-align: center; }
.vgs-eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.vgs-teaser h2 {
  font-weight: 300;
  color: var(--gold);
  margin: 0 auto 18px;
  max-width: none;
}
.vgs-teaser h2 br { display: block; }
.vgs-sub {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(255,255,255,0.78);
  max-width: 600px;
  margin: 0 auto 32px;
}
.vgs-form {
  display: flex;
  align-items: center;
  gap: 6px;
  max-width: 420px;
  margin: 0 auto;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201,168,76,0.5);
  border-radius: 9999px;
  padding: 6px 6px 6px 8px;
  transition: border-color 0.25s var(--ease-out), background 0.25s var(--ease-out);
}
.vgs-form:focus-within { border-color: var(--gold); background: rgba(255,255,255,0.12); }
.vgs-input {
  flex: 1 1 auto;
  min-width: 0;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--paper);
  background: transparent;
  border: none;
  padding: 12px 16px;
}
.vgs-input::placeholder { color: rgba(255,255,255,0.5); }
.vgs-input:focus { outline: none; }
.vgs-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: var(--paper);
  background: var(--gold);
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: background 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}
.vgs-btn:hover { background: var(--gold-deep); transform: translateX(2px); }

/* HOME — testimonials holding line */
.testimonial-soon {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.3;
  color: var(--green);
  text-align: center;
  max-width: 24ch;
  margin: 0 auto;
  text-wrap: balance;
}

/* ============================================================ FULL-BLEED IMAGE BREAK */
.image-break { width: 100%; line-height: 0; position: relative; overflow: hidden; }
.pixie-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 2; }
.image-break img {
  width: 100%;
  height: 55vh;
  min-height: 55vh;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

/* ============================================================ VIDEO LIGHTBOX */
.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 5vw;
  background: rgba(12,21,16,0.32);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
}
.video-lightbox.open { display: flex; }
.video-lightbox-inner {
  width: min(1040px, 92vw);
  aspect-ratio: 16 / 9;
  max-height: 86vh;
}
.video-lightbox-inner video {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: #000;
  object-fit: contain;
  display: block;
}
.video-lightbox-close {
  position: absolute;
  top: 92px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.video-lightbox-close:hover { opacity: 1; }

/* ============================================================ RESPONSIVE */
@media (max-width: 960px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-center { position: static; transform: none; }
  .nav-cta { padding: 9px 20px; font-size: 0.78rem; }
  .nav-links {
    position: fixed;
    top: 76px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(12,21,16,0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line-dark);
    padding: 8px 20px 24px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-has-menu { display: block; position: relative; width: 100%; }
  .nav-caret { position: absolute; top: 8px; right: 2px; margin: 0; padding: 12px; color: rgba(255,255,255,0.6); }
  .nav-menu {
    position: static; transform: none;
    min-width: 0; padding: 0 0 6px 12px;
    background: none; -webkit-backdrop-filter: none; backdrop-filter: none;
    border: none; border-top: none; box-shadow: none;
    display: none;
  }
  .nav-menu::before { display: none; }
  .nav-has-menu.is-open .nav-menu { display: block; }
  .nav-menu a { padding: 13px 10px; font-size: 15px; color: rgba(255,255,255,0.62); border-bottom: 1px solid var(--line-dark); }
  .nav-links a {
    padding: 16px 10px;
    font-size: 16px;
    border-radius: 0;
    border-bottom: 1px solid var(--line-dark);
  }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-links a.cta {
    text-align: center;
    margin-top: 10px;
    border-radius: 9999px;
    border-bottom: none;
  }

  /* All multi-column grids collapse to a single column */
  .trust-grid,
  .impact-grid,
  .pillars,
  .story-grid,
  .problem-grid,
  .tiers,
  .size-grid,
  .team-grid { grid-template-columns: 1fr; }
  .tier { min-height: 0; }
  .trust-grid { gap: clamp(2.5rem, 8vw, 3.5rem); }
  .impact-grid { gap: clamp(2rem, 6vw, 3rem); }
  .pillars { gap: clamp(2rem, 6vw, 3rem); }
  .story-grid { gap: 2rem; }
  .problem-grid { gap: 2.5rem; }
  .tiers { gap: 1.5rem; }
  .team-grid { gap: 2.5rem; }

  /* Story stacks: image top, text beneath, indent removed */
  .story-content { padding-left: 0; max-width: 100%; }
  .pillar { border-top: none; padding-top: 0; }

  /* Section padding reduces ~40% on mobile */
  .section { padding: clamp(3.5rem, 10vw, 6rem) 0; }
  .cta-monthly .inner { padding: clamp(3.5rem, 10vw, 6rem) 24px; }
  .cta-actions { flex-wrap: wrap; }

  /* Hero parallax falls back to scroll on small screens */
  .hero { background-attachment: scroll; }

  /* Full-bleed image break shorter on mobile */
  .image-break img { height: 40vh; min-height: 40vh; }

  /* Hero content centered on mobile */
  .hero, .page-hero { align-items: center; }
  .hero-content, .page-hero .inner { padding-top: 120px; padding-bottom: 80px; text-align: center; margin: 0 auto; }
  .hero-content .hero-lede,
  .hero-content > p,
  .page-hero .inner > p,
  .hero-trust { margin-left: auto; margin-right: auto; }
  .hero-trust { white-space: normal; }
  .hero-ctas { justify-content: center; }
}
@media (max-width: 560px) {
  .container { padding: 0 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .team-card img { height: 300px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .dollar-story-line { white-space: normal; max-width: 16ch; }
}

/* ============================================================ REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .load-1, .load-2, .load-3, .load-4, .load-5 {
    animation: none;
    opacity: 1;
  }
}

/* ============================================================ HOME PAGE: CENTER-ALIGNED BELOW HERO
   Per creative direction, the home page hero stays left-aligned while every section below it is
   centered. Scoped to body.home so the interior pages keep the site-wide left convention. */
body.home .trust-item { text-align: center; }
body.home .trust-label { margin-left: auto; margin-right: auto; }

body.home .section-head { margin-left: auto; margin-right: auto; text-align: center; }
body.home .section-head .rule-gold,
body.home .section-head hr { margin-left: auto; margin-right: auto; }

body.home .impact-body { text-align: center; }

body.home .dollar-story-line { text-align: center; margin-left: auto; margin-right: auto; }

body.home .story-content { text-align: center; }
body.home .story-content .rule-gold,
body.home .story-content hr { margin-left: auto; margin-right: auto; }
body.home .story-content .pull { margin-left: auto; margin-right: auto; }

/* Full-bleed before/after story section */
.story-ba { background: #fff; }
.story-ba__grid { display: grid; grid-template-columns: 1.85fr 1fr; align-items: stretch; }
.story-ba__media { position: relative; }
.story-ba__panel {
  background: #fff; color: var(--green);
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(1.75rem, 3.2vw, 3.25rem); overflow: hidden;
}
.story-ba__panel .rule-gold { background: var(--gold); margin: 0 0 1.2rem; }
.story-ba__panel h2 {
  font-family: var(--display); color: var(--green); font-weight: 700;
  font-size: clamp(2rem, 2.8vw, 2.9rem); line-height: 1.05; margin: 0 0 1.1rem;
}
.story-ba__panel p {
  color: var(--text-muted); font-size: clamp(1rem, 1.1vw, 1.1rem); line-height: 1.6;
  max-width: 42ch; margin: 0 0 1rem;
}
.story-ba__panel .pull {
  color: var(--green); border-left-color: var(--gold);
  font-size: clamp(1.3rem, 1.8vw, 1.7rem); line-height: 1.3; margin: 0.6rem 0 0; padding-left: 22px;
}

/* Before/after compare slider — locked to photo ratio so the full building shows uncropped */
@property --ba { syntax: '<percentage>'; inherits: true; initial-value: 90%; }
.ba { position: relative; overflow: hidden; user-select: none; touch-action: pan-y; --ba: 90%; aspect-ratio: 1900 / 1266; width: 100%; }
.ba-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-after { z-index: 0; }
.ba-before { clip-path: inset(0 calc(100% - var(--ba)) 0 0); z-index: 1; }
.ba-divider { position: absolute; top: 0; bottom: 0; left: var(--ba); width: 2px; background: rgba(255,255,255,0.9); transform: translateX(-1px); pointer-events: none; z-index: 3; }
.ba-handle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px; border-radius: 999px; white-space: nowrap;
  background: var(--gold); color: #fff; border: 2px solid #fff;
  font-family: var(--sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  cursor: ew-resize; pointer-events: auto;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}
.ba-handle__label { line-height: 1; }
/* idle nudge to draw the eye — stops once grabbed */
@keyframes ba-nudge { 0%, 100% { --ba: 90%; } 50% { --ba: 84%; } }
.ba:not(.ba--touched) { animation: ba-nudge 2.4s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { .ba { animation: none !important; } }
.ba-tag {
  position: absolute; bottom: 16px; z-index: 2; pointer-events: none;
  font-family: var(--sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff; background: rgba(18,28,22,0.55); padding: 6px 12px; border-radius: 999px;
}
.ba-tag--before { left: 16px; }
.ba-tag--after { right: 16px; }

/* Headline naming the building — painted on the AFTER layer only (z-index 0,
   below the before image z-index 1), so it's hidden under "before" and revealed
   as you drag. Sits left of center so it stays covered until you pull it open. */
.ba-title {
  position: absolute; top: 18px; right: 4%; z-index: 0; pointer-events: none;
  white-space: nowrap; text-align: right;
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.15rem, 2.4vw, 2.1rem); line-height: 1.04;
  color: var(--green);
  text-shadow: 0 1px 12px rgba(255,255,255,0.6), 0 0 3px rgba(255,255,255,0.75);
}

@media (max-width: 860px) {
  .story-ba__grid { grid-template-columns: 1fr; }
  body.home .story-ba__panel { text-align: center; }
  body.home .story-ba__panel .rule-gold,
  body.home .story-ba__panel hr { margin-left: auto; margin-right: auto; }
  body.home .story-ba__panel p { margin-left: auto; margin-right: auto; }
  body.home .story-ba__panel .pull { text-align: left; }
}

body.home .shalom-inner { margin-left: auto; margin-right: auto; text-align: center; }
body.home .shalom-inner .rule-gold,
body.home .shalom-inner hr { margin-left: auto; margin-right: auto; }
body.home .shalom-inner > p { margin-left: auto; margin-right: auto; }
body.home .scripture { text-align: center; }

body.home .testimonial-inner { margin-left: auto; margin-right: auto; text-align: center; }
body.home .testimonial-inner .rule-gold,
body.home .testimonial-inner hr { margin-left: auto; margin-right: auto; }
body.home .testimonial-inner blockquote { text-align: center; margin-left: auto; margin-right: auto; }

body.home .cta-monthly { text-align: center; }
body.home .cta-monthly .rule-gold,
body.home .cta-monthly hr { margin-left: auto; margin-right: auto; }
body.home .cta-monthly h2 { margin-left: auto; margin-right: auto; }
body.home .cta-monthly p { margin-left: auto; margin-right: auto; }
body.home .cta-actions { justify-content: center; }

/* Home: center the shalom heading/intro blocks (capped at 52ch) within the wider 78ch inner */
body.home .shalom-inner h2,
body.home .shalom-inner > p { margin-left: auto; margin-right: auto; }
/* Intro paragraph fills the full inner width to match the headline */
body.home .shalom-inner > p { max-width: 100%; }
body.home .scripture p { margin-left: auto; margin-right: auto; text-align: center; }

/* ============================================================ TESTIMONIAL CAROUSEL */
.testimonial-carousel { width: 100%; }
.tc-viewport { overflow: hidden; }
.tc-track {
  display: flex;
  transition: transform 0.6s var(--ease-out);
  will-change: transform;
}
.tc-slide {
  flex: 0 0 100%;
  min-width: 100%;
  margin: 0;
  padding: 0 clamp(0.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tc-slide blockquote {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.3;
  color: #1B4332;
  max-width: 36ch;
  margin: 0 0 28px;
  text-align: center;
}
.tc-slide .attribution { color: var(--gold-deep); text-align: center; }

.tc-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.tc-arrow {
  width: 42px;
  height: 42px;
  border-radius: 9999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--green);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.tc-arrow svg { display: block; }
.tc-arrow:hover { border-color: var(--gold); color: var(--gold-deep); }
.tc-dots { display: flex; align-items: center; gap: 12px; }
.tc-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 9999px;
  border: none;
  background: var(--line);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}
.tc-dot:hover { background: var(--gold); }
.tc-dot.is-active { background: var(--gold-deep); transform: scale(1.25); }

/* ============================================================ FOOTER SOCIAL */
.footer-social { display: flex; align-items: center; gap: 14px; margin-top: 22px; }
.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  border: 1px solid var(--line-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.footer-social-link svg { display: block; }
.footer-social-link:hover {
  color: var(--void);
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* Home: solid white story section */
body.home .story { background: var(--paper); }

/* ============================================================ CUSTOM PALAY CURSOR
   An elegant palay (rice ear) replaces the arrow/pointer site-wide, echoing "Ani"
   (harvest). Gold grains on a drooping green stem; hotspot at the top tip (16 2).
   Text fields keep the native I-beam for usability. */
:root {
  --cursor-palay: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='30'%20height='30'%20viewBox='0%200%2032%2032'%3E%3Cg%20transform='rotate(-45%2016%2016)'%3E%3Cpath%20d='M16%2011%20C14%2018%2016%2024%2016%2030'%20fill='none'%20stroke='%23C9A84C'%20stroke-width='1.6'%20stroke-linecap='round'/%3E%3Cg%20fill='%23C9A84C'%20stroke='none'%3E%3Cellipse%20rx='1.8'%20ry='3.6'%20transform='translate(16%205)'/%3E%3Cellipse%20rx='1.8'%20ry='3.6'%20transform='translate(12.5%209)%20rotate(-35)'/%3E%3Cellipse%20rx='1.8'%20ry='3.6'%20transform='translate(19.5%209)%20rotate(35)'/%3E%3Cellipse%20rx='1.8'%20ry='3.6'%20transform='translate(11.5%2014)%20rotate(-40)'/%3E%3Cellipse%20rx='1.8'%20ry='3.6'%20transform='translate(20.5%2014)%20rotate(40)'/%3E%3Cellipse%20rx='1.8'%20ry='3.6'%20transform='translate(12.5%2019)%20rotate(-45)'/%3E%3Cellipse%20rx='1.8'%20ry='3.6'%20transform='translate(19.5%2019)%20rotate(45)'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") 6 6;
}
html, body { cursor: var(--cursor-palay), auto; }
a, button, summary, label, select,
[role="button"], .btn, .tc-dot, .tc-arrow, .nav-toggle,
.size-card[data-amount], .footer-social-link, .nav-watch, [data-open-video] {
  cursor: var(--cursor-palay), pointer;
}
input, textarea, [contenteditable] { cursor: text; }

/* ============================================================ ABOUT PAGE: CENTER-ALIGNED BELOW HERO
   Every section below the hero is centered (text and blocks). The hero (.page-hero)
   is untouched and keeps its left-aligned layout. */
body.about .section { text-align: center; }
body.about .section .rule-gold,
body.about .section hr { margin-left: auto; margin-right: auto; }
body.about .section-head,
body.about .prose,
body.about .shalom-inner,
body.about .section h2,
body.about .section h3,
body.about .section p { margin-left: auto; margin-right: auto; }
body.about .scripture { text-align: center; }
body.about .scripture p { text-align: center; margin-left: auto; margin-right: auto; }
body.about .stat-card { padding: 0 1.5rem; }
body.about .team-grid { margin-left: auto; margin-right: auto; }
body.about .team-card { text-align: center; }
body.about .team-card img { margin-left: auto; margin-right: auto; }

body.about .cta-monthly { text-align: center; }
body.about .cta-monthly .rule-gold,
body.about .cta-monthly hr { margin-left: auto; margin-right: auto; }
body.about .cta-monthly h2,
body.about .cta-monthly p { margin-left: auto; margin-right: auto; }
body.about .cta-actions { justify-content: center; }

/* About: override elements that set their own left text-align */
body.about .section-head,
body.about .stat-card,
body.about .shalom-inner,
body.about .need-note,
body.about .source-line { text-align: center; }
body.about .need-note,
body.about .source-line { margin-left: auto; margin-right: auto; }

/* ============================================================ THE 100% PROMISE PAGE: CENTER-ALIGNED BELOW HERO
   Every section below the hero is centered (text and blocks). The hero (.page-hero) is untouched. */
body.promise .section { text-align: center; }
body.promise .section .rule-gold,
body.promise .section hr { margin-left: auto; margin-right: auto; }
body.promise .section-head,
body.promise .prose,
body.promise .section h2,
body.promise .section h3,
body.promise .section p { margin-left: auto; margin-right: auto; }
body.promise .section-head { text-align: center; }

body.promise .cta-monthly { text-align: center; }
body.promise .cta-monthly .rule-gold,
body.promise .cta-monthly hr { margin-left: auto; margin-right: auto; }
body.promise .cta-monthly h2,
body.promise .cta-monthly p { margin-left: auto; margin-right: auto; }
body.promise .cta-actions { justify-content: center; }

/* Fund the Mission block centered to match */
body.promise .fund-mission { margin-left: auto; margin-right: auto; text-align: center; }
body.promise .fund-mission p { margin-left: auto; margin-right: auto; }

/* ===== Homepage text-width standardization (board spec) ===== */
body.home .home-interstitial p { max-width: 800px; margin-left: auto; margin-right: auto; text-wrap: balance; }
body.home .shalom-inner > p { max-width: 720px; margin-left: auto; margin-right: auto; text-wrap: balance; }
body.home .cta-monthly .inner > p { max-width: 720px; margin-left: auto; margin-right: auto; }
body.home .testimonial-soon { max-width: none; }
body.home .section-head h2,
body.home .cta-monthly h2,
body.home .shalom-inner h2,
body.home .vgs-teaser h2 { max-width: none; }
/* Forced-break headlines: dictated <br> breaks are the only breaks; never re-wrap/orphan at any viewport */
body.home .vgs-teaser h2 { white-space: nowrap; }
@media (max-width: 768px) {
  body.home .home-interstitial p,
  body.home .shalom-inner > p,
  body.home .cta-monthly .inner > p,
  body.home .vgs-sub { max-width: 100%; padding-left: 24px; padding-right: 24px; }
  body.home .vgs-teaser h2 { white-space: normal; }
}

/* ===== Right-side scroll progress indicator (global) ===== */
/* Hide the native scrollbar so only the custom indicator shows (matches reference) */
html { scrollbar-width: none; -ms-overflow-style: none; }
html::-webkit-scrollbar, body::-webkit-scrollbar { width: 0; height: 0; display: none; }

.scroll-progress {
  position: fixed;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  width: 6px;
  height: 120px;
  background: rgba(0,0,0,0.08);
  border-radius: 9999px;
  z-index: 999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.scroll-progress.is-scrolling { opacity: 1; }
.scroll-progress__bar {
  width: 6px;
  height: 0;
  background: var(--gold);
  border-radius: 9999px;
}

/* ===== About page: board text-width spec ===== */
.pillar p.pillar-note { font-family: var(--sans); font-size: 0.85rem; color: var(--text-muted); margin-top: 8px; }
body.about .need-note { max-width: 720px; }
body.about .cta-monthly .inner > p { max-width: 720px; }
@media (max-width: 768px) {
  body.about .need-note,
  body.about .cta-monthly .inner > p { max-width: 100%; padding-left: 24px; padding-right: 24px; }
}

/* ============================================================ "WATCH THE STORY" PILL (GLOBAL)
   Soft gold pill with a single point of light traveling its border.
   Applies on every page's nav — the SVG play icon is added to the
   nav-watch link in each page's markup. */
@property --nw-ang { syntax: "<angle>"; inherits: false; initial-value: 0deg; }

.nav-watch {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 10px;
  padding: 4px 14px;
  border: 1px solid rgba(184,149,46,0.5);
  border-radius: 999px;
  background: transparent;
  transition: border-color 0.3s var(--ease-out);
}
/* suppress the standard nav underline on this item — the pill is its frame */
.nav-watch:not(.cta)::after { display: none; }

/* traveling light: a masked conic-gradient ring riding the border */
.nav-watch::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(from var(--nw-ang),
    rgba(184,149,46,0) 0deg,
    var(--gold) 18deg,
    rgba(184,149,46,0) 38deg,
    rgba(184,149,46,0) 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  animation: nw-travel 2.5s linear infinite;
}
@keyframes nw-travel { to { --nw-ang: 360deg; } }

.nav-watch__play {
  display: inline-block;
  flex: none;
  height: 1.05em;   /* sized to the nav text so it reads as a real play button */
  width: auto;
}

/* hover: firmer border, slower light */
.nav-watch:hover { border-color: rgba(184,149,46,1); }
.nav-watch:hover::before { animation-duration: 3.5s; }

@media (prefers-reduced-motion: reduce) {
  .nav-watch::before { animation: none; }
}

/* ============================================================ STANDARDIZED HEROES (all pages)
   Identical upper-left anchor, headline size (128/72/48), subtext size +
   spacing, and overlay on every page so the headline sits in the exact same
   pixel location page to page. No centering at any breakpoint. */

/* overlay: make subpage heroes identical to the homepage scrim */
.page-hero .hero-scrim {
  background:
    linear-gradient(to bottom,
      rgba(12,21,16,0.30) 0%,
      rgba(12,21,16,0.62) 40%,
      rgba(12,21,16,0.82) 100%),
    linear-gradient(135deg,
      rgba(12,21,16,0.60) 0%,
      transparent 60%);
}

/* upper-left anchor: fixed top + left (.container gives left = 80px at 1280) */
.hero { align-items: flex-start; }
.hero > .container,
.page-hero > .container {
  position: absolute;
  top: 240px;
  bottom: auto;
  left: 0;
  right: 0;
  z-index: 3;
}
.hero-content,
.page-hero .inner {
  max-width: 1120px;
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
  text-align: left;
}

/* headline: 128 desktop / 72 tablet / 48 mobile, Cormorant, homepage weight 700 */
.hero h1,
.page-hero h1 {
  font-family: var(--display);
  color: var(--paper);
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 1.1;
  font-size: 72px;
  max-width: none;
  margin: 0 0 8px;
}
@media (min-width: 1280px) {
  .hero h1,
  .page-hero h1 { font-size: 128px; }
}
@media (max-width: 767px) {
  .hero h1,
  .page-hero h1 { font-size: 48px; }
}

/* subtext: identical size + spacing on all heroes (matches homepage lede) */
.hero p.hero-lede,
.page-hero .inner > p {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 21px;
  line-height: 1.45;
  color: rgba(255,255,255,0.92);
  max-width: 540px;
  margin: 0 0 14px;
}

/* Second hero line drops to subcopy size + spacing, matching the homepage body line */
.page-hero .inner > p.pp-hero-subcopy {
  font-size: clamp(14px, 1.1vw, 16.5px);
  line-height: 1.7;
  color: rgba(255,255,255,0.86);
  margin: 0 0 26px;
}

/* CTA row: gap comes from the subtext margin above; no extra top margin */
.page-hero .hero-ctas { margin-top: 0; }

/* mobile: kill the legacy centering, keep the upper-left anchor */
@media (max-width: 768px) {
  .hero, .page-hero { align-items: flex-start; }
  .hero > .container,
  .page-hero > .container { top: 170px; }
  .hero-content,
  .page-hero .inner { text-align: left; margin: 0; max-width: 100%; padding-top: 0; padding-bottom: 0; }
  .hero p.hero-lede,
  .page-hero .inner > p { max-width: 100%; }
}
