/* ============================================
   SISTERS WALKING TOGETHER
   Multi-page prototype — Editorial nonprofit

   Fonts:
   Cormorant Garamond (serif)  = H1-H3, blockquote, mission text, site title
   Source Sans Pro (sans-serif) = body, data, labels, buttons, forms, nav

   Weights:
   700 (bold)    = H1, stat numbers, phone CTA, labels, buttons
   500 (medium)  = H3 (assertive subsections)
   400 (regular) = H2, body text
   300 (light)   = H2 (intentionally thin, elegant)

   Italic:
   Blockquote + mission text only.

   Size scale (desktop max → mobile min):
   8rem  → 4rem    Stat numbers (THE HIT)
   5rem  → 3rem    H1 (THE SHOUT)
   4.5rem → 2.5rem Phone CTA (THE SCREAM)
   3rem  → 1.8rem  H2 (section headings)
   2.2rem → 1.4rem Blockquote (THE PAUSE)
   1.7rem → 1.3rem Mission text (THE DECLARATION)
   1.5rem → 1.1rem H3 (subsections)
   1.05rem         Body text
   0.72rem         Labels, buttons, nav

   Palette:
   --cream:     #F0EDEA
   --rose:      #9C5456
   --gold:      #E1C77F
   --charcoal:  #403E41
   --tan:       #BC9067
   --forest:    #2B3A35
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Source+Sans+3:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&display=swap');

/* ---- Variables ---- */
:root {
  --cream: #F0EDEA;
  --charcoal: #403E41;
  --rose: #9C5456;
  --rose-deep: #7A3E44;
  --gold: #E1C77F;
  --tan: #BC9067;
  --mist: #E6E2DE;
  --white: #FFFFFF;
  --forest: #2B3A35;
  --forest-deep: #1E2A26;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Source Sans 3', 'Source Sans Pro', 'Helvetica Neue', sans-serif;

  --container-max: 1400px;
  --container-narrow: 860px;
  --section-pad: clamp(5rem, 10vw, 8rem);
  --gap: clamp(2rem, 4vw, 4rem);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }

/* ---- Typography ----
   Serif 700 = H1 (the shout)
   Serif 300 = H2 (the sigh — intentionally thin, elegant)
   Serif 500 = H3 (the statement — assertive subsections)
   Serif 400i = blockquote, mission text
   Sans  700 = data, labels, buttons (functional bold)
   Sans  400 = body text (readable)
*/

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
}

h3 {
  font-size: clamp(1.1rem, 1.5vw, 1.5rem);
  font-weight: 500;
  line-height: 1.3;
}

.label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  line-height: 1.4;
}

p { font-size: 1.05rem; line-height: 1.8; }
p + p { margin-top: 1rem; }

/* Blockquote — intimate italic serif */
blockquote {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.5;
  color: rgba(240,237,234,0.9);
}
blockquote cite {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 2rem;
  color: var(--gold);
}

/* ---- Layout ---- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}
.container--narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.grid { display: grid; gap: var(--gap); }
.grid--2 { grid-template-columns: 1fr 1fr; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2-1 { grid-template-columns: 5fr 3fr; }
.grid--1-2 { grid-template-columns: 3fr 5fr; }

/* ---- Sections ---- */
section {
  padding: var(--section-pad) 0;
  position: relative;
}

/* Hero — paper variant, 2-column: smaller logo at left, text at right.
   Cream background, no landscape. Landscape returns in stats section.
   Stacks vertically on mobile. Used on home page (body.page-home). */
.section--hero {
  padding: clamp(8rem, 14vw, 10rem) 0 clamp(4rem, 8vw, 6rem);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.section--hero .hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.section--hero .hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.section--hero .hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(240,237,234,0.95) 0%,
    rgba(240,237,234,0.82) 50%,
    rgba(240,237,234,0.65) 100%
  );
}
.section--hero .hero-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  position: relative;
  z-index: 1;
}
.section--hero .hero-logo {
  width: clamp(140px, 18vw, 220px);
  height: auto;
  display: block;
}
.section--hero .hero-content {
  color: var(--charcoal);
  text-align: left;
}
.section--hero .hero-content h1 {
  margin-bottom: 1.5rem;
  max-width: 18ch;
}
.section--hero .hero-content .hero-subtitle {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: rgba(64,62,65,0.65);
  max-width: 520px;
  margin: 0 0 0.5rem;
  line-height: 1.7;
}
.section--hero .btn-group {
  justify-content: flex-start;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .section--hero .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  .section--hero .hero-logo {
    margin: 0 auto;
  }
  .section--hero .hero-content {
    text-align: center;
  }
  .section--hero .hero-content h1,
  .section--hero .hero-content .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .section--hero .btn-group {
    justify-content: center;
  }
}

/* Section themes */
.section--dark { background: var(--charcoal); color: var(--cream); }
.section--dark h1, .section--dark h2, .section--dark h3,
.section--dark p, .section--dark li, .section--dark .label { color: var(--cream); }
.section--dark a:not(.btn) { color: var(--gold); }

.section--rose {
  background: var(--rose);
  color: var(--cream);
}
.section--rose h1, .section--rose h2, .section--rose h3,
.section--rose p, .section--rose .label { color: var(--cream); }

.section--mist { background: var(--mist); }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }

/* Forest green — the Pacific Northwest accent */
.section--forest {
  background: var(--forest);
  color: var(--cream);
}
.section--forest h1, .section--forest h2, .section--forest h3,
.section--forest p, .section--forest li, .section--forest .label { color: var(--cream); }
.section--forest a:not(.btn) { color: var(--gold); }

/* Mission statement — serif italic, the declaration */
.mission-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 400;
  line-height: 1.6;
  max-width: 700px;
  color: var(--rose);
}
.section--forest .mission-text { color: var(--gold); }

/* Land breather — full-viewport image, no content overlay */
.section--land {
  position: relative;
  overflow: hidden;
  padding: 0;
  height: 45vh;
  min-height: 300px;
}
.section--land .section-bg {
  position: absolute; inset: 0; z-index: 0;
}
.section--land .section-bg img {
  width: 100%; height: 100%; object-fit: cover;
}

/* Rose section with image underneath */
.section--rose-image {
  position: relative;
  overflow: hidden;
  background: var(--rose);
  color: var(--cream);
}
.section--rose-image .section-bg {
  position: absolute; inset: 0; z-index: 0;
}
.section--rose-image .section-bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.section--rose-image .section-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(156, 84, 86, 0.82);
}
.section--rose-image .container,
.section--rose-image .container--narrow {
  position: relative; z-index: 1;
}
.section--rose-image h1, .section--rose-image h2, .section--rose-image h3,
.section--rose-image p, .section--rose-image .label { color: var(--cream); }

/* Stats with faint image underneath */
.section--stats .section-bg {
  position: absolute; inset: 0; z-index: 0;
}
.section--stats .section-bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.08;
}
.section--stats .container {
  position: relative; z-index: 1;
}

/* Footer uses --forest-deep bg color
   SQS: Set footer to darkest color theme with custom dark green */

/* Image-bg sections — tall, immersive */
.section--image-bg {
  position: relative; overflow: hidden;
  padding: clamp(6rem, 14vw, 12rem) 0;
  min-height: 70vh;
  display: flex;
  align-items: center;
}
.section--image-bg .section-bg {
  position: absolute; inset: 0; z-index: 0;
}
.section--image-bg .section-bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.section--image-bg .section-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(26,26,26,0.78);
}
.section--image-bg .container,
.section--image-bg .container--narrow {
  position: relative; z-index: 1; color: var(--cream);
}
.section--image-bg h1, .section--image-bg h2, .section--image-bg h3,
.section--image-bg p, .section--image-bg li,
.section--image-bg blockquote, .section--image-bg .label {
  color: var(--cream);
}

/* ---- Header ---- */
header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(26,26,26,0.5) 0%, rgba(26,26,26,0) 100%);
  transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  border-bottom: none;
}
header.header--scrolled {
  background: rgba(64,62,65,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(225,199,127,0.1);
  box-shadow: 0 2px 24px rgba(0,0,0,0.15);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem clamp(1.5rem, 4vw, 3rem);
  max-width: var(--container-max);
  margin: 0 auto;
}
.site-title {
  font-family: var(--font-heading);
  font-size: 1.35rem; font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.01em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.site-mark {
  height: 36px;
  width: auto;
  flex-shrink: 0;
}
header nav {
  display: flex; align-items: center; gap: 2.4rem;
}
header nav a {
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: rgba(240,237,234,0.55);
  transition: color 0.25s;
}
header nav a:hover { color: var(--cream); }
header nav a.nav-cta {
  background: var(--rose); color: var(--cream);
  padding: 0.55rem 1.4rem; font-weight: 700;
  transition: background 0.25s;
}
header nav a.nav-cta:hover { background: var(--rose-deep); }

/* Home page (paper hero) — header adapts: transparent over cream with charcoal
   text by default, charcoal solid with cream text once scrolled. Other pages
   keep their default photo-hero behavior. */
body.page-home header { background: transparent; }
body.page-home .site-title { color: var(--charcoal); }
body.page-home header nav a { color: rgba(64,62,65,0.6); }
body.page-home header nav a:hover { color: var(--charcoal); }
body.page-home header.header--scrolled { background: rgba(64,62,65,0.97); }
body.page-home header.header--scrolled .site-title { color: var(--cream); }
body.page-home header.header--scrolled nav a { color: rgba(240,237,234,0.55); }
body.page-home header.header--scrolled nav a:hover { color: var(--cream); }

/* ---- Mobile Navigation ---- */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.nav-toggle span + span {
  margin-top: 6px;
}
body.nav-open .nav-toggle span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 6px);
}
body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
body.nav-open .nav-toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -6px);
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: var(--font-body); font-weight: 700;
  font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 1rem 2.6rem;
  transition: all 0.3s ease;
  cursor: pointer; border: none;
}
.btn--primary { background: var(--rose); color: var(--cream); }
.btn--primary:hover { background: var(--rose-deep); }
.btn--outline {
  background: transparent; color: var(--cream);
  border: 1.5px solid rgba(240,237,234,0.4);
}
.btn--outline:hover {
  background: var(--cream); color: var(--charcoal);
  border-color: var(--cream);
}
.btn--outline-dark {
  background: transparent; color: var(--charcoal);
  border: 1.5px solid rgba(64,62,65,0.3);
}
.btn--outline-dark:hover {
  background: var(--charcoal); color: var(--cream);
}
.btn--gold { background: var(--tan); color: var(--white); }
.btn--gold:hover { background: #a87d55; }
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---- Stats section — THE CRISIS, massive space ---- */
.section--stats {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: #1a1a1a; /* near-black — SQS: Darkest theme */
  position: relative;
  overflow: hidden;
}

/* Stat numbers — sans bold, gold, THE HIT */
.stat-card {
  text-align: center;
  padding: 2rem 1rem;
}
.stat-number {
  font-family: var(--font-body);
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
}
.stat-label {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(240,237,234,0.75);
  max-width: 280px;
  margin: 0 auto;
}

/* ---- Fact list ---- */
.fact-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1.4rem;
  font-size: 1.05rem; line-height: 1.7;
}
.fact-list li::before {
  content: '';
  position: absolute; left: 0; top: 0.65rem;
  width: 6px; height: 6px;
  background: currentColor; border-radius: 50%; opacity: 0.4;
}

/* ---- Video ---- */
.video-feature {
  max-width: 1100px;
  margin: 0 auto;
}
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.video-wrapper iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; border: 0;
}
.video-caption {
  margin-top: 1.5rem;
  text-align: center;
}

/* ---- Cards ---- */
.card {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--white);
}
.card h3 { color: var(--rose); margin-bottom: 1rem; }
.card p { font-size: 1rem; }

/* Phone CTA — sans bold, gold, THE SCREAM */
.phone-cta,
.section--rose .phone-cta,
.section--rose-image .phone-cta {
  font-family: var(--font-body);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--gold);
}

/* ---- Forms ---- */
.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 0.9rem 1.1rem;
  font-family: var(--font-body); font-size: 1rem;
  border: 1px solid var(--mist);
  background: var(--white); color: var(--charcoal);
  transition: border-color 0.25s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--rose);
}
.form-group textarea { min-height: 140px; resize: vertical; }

/* ---- Donation ---- */
.donation-amounts {
  display: flex; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap;
}
.donation-amounts button {
  font-family: var(--font-body); font-size: 1.05rem; font-weight: 600;
  padding: 0.85rem 1.6rem;
  background: transparent;
  border: 1.5px solid rgba(240,237,234,0.25); color: var(--cream);
  cursor: pointer; transition: all 0.25s; min-width: 85px;
}
.donation-amounts button:hover,
.donation-amounts button.active {
  background: var(--cream); color: var(--charcoal);
  border-color: var(--cream);
}
.donation-amounts input {
  padding: 0.85rem 1rem;
  font-family: var(--font-body); font-size: 1.05rem;
  background: transparent;
  border: 1.5px solid rgba(240,237,234,0.25); color: var(--cream);
  width: 130px;
}
.donation-amounts input:focus {
  outline: none;
  border-color: var(--gold);
}
.donation-amounts input::placeholder { color: rgba(240,237,234,0.25); }

/* ---- Social Icons ---- */
.social-links {
  display: flex; gap: 0.6rem; align-items: center;
}
.social-links a {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  border: 1px solid rgba(240,237,234,0.12);
  transition: border-color 0.25s, background 0.25s;
}
.social-links a:hover {
  border-color: var(--gold);
  background: rgba(225,199,127,0.08);
}
.social-links a svg {
  width: 14px; height: 14px;
  fill: rgba(240,237,234,0.4);
  transition: fill 0.25s;
}
.social-links a:hover svg { fill: var(--gold); }
.social-links--footer { margin-top: 1.5rem; }

/* ---- Footer ---- */
footer {
  background: var(--forest-deep); color: var(--cream);
  padding: clamp(3.5rem, 7vw, 5rem) 0 2rem;
  position: relative;
  overflow: hidden;
}
footer h3 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 1.2rem;
  color: rgba(240,237,234,0.4);
}
footer p {
  color: rgba(240,237,234,0.5);
  font-size: 0.88rem; line-height: 1.75;
}
footer a:not(.btn) { color: var(--gold); transition: color 0.25s; }
footer a:not(.btn):hover { color: var(--cream); }

.footer-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  margin-bottom: 3rem;
}
.footer-contact-item { margin-bottom: 0.6rem; }
.footer-contact-item a { font-size: 0.9rem; }
.footer-contact-label {
  color: rgba(240,237,234,0.3);
  font-size: 0.68rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 0.15rem;
}

.footer-bottom {
  border-top: 1px solid rgba(240,237,234,0.06);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem;
  color: rgba(240,237,234,0.25);
}

/* ---- Utility ---- */
.text-center { text-align: center; }
.text-center p { margin-left: auto; margin-right: auto; }
.text-gold { color: var(--gold); }
.text-rose { color: var(--rose); }
.text-cream { color: var(--cream); }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }
.mb-8 { margin-bottom: 4rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.spacer { height: 2rem; }
.spacer--lg { height: 4rem; }

/* Gold accent line — a ritual pause between moments */
.gold-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  border: none;
  margin: 2rem auto;
  opacity: 0.6;
}
.gold-rule--left {
  margin-left: 0;
}
.gold-rule--wide {
  width: 100px;
}

.placeholder-note {
  display: inline-block;
  background: rgba(225,199,127,0.15);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.5rem;
  margin-bottom: 0.5rem;
}
.section--dark .placeholder-note,
.section--image-bg .placeholder-note {
  background: rgba(225,199,127,0.2);
}

/* ---- Scroll animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.stagger > .reveal:nth-child(2) { transition-delay: 0.12s; }
.stagger > .reveal:nth-child(3) { transition-delay: 0.24s; }
.stagger > .reveal:nth-child(4) { transition-delay: 0.36s; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .grid--3 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .grid--2, .grid--3, .grid--2-1, .grid--1-2 {
    grid-template-columns: 1fr;
  }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .section--hero { min-height: 90vh; }
  .section--image-bg { min-height: 50vh; }
  .section--land { height: 35vh; min-height: 220px; }

  .nav-toggle { display: block; }
  header nav {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(46,44,46,0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 99;
  }
  body.nav-open header nav {
    opacity: 1;
    pointer-events: all;
  }
  body.nav-open { overflow: hidden; }
  header nav a {
    font-size: 0.95rem;
    letter-spacing: 0.2em;
    color: rgba(240,237,234,0.65);
  }
  header nav a:hover { color: var(--cream); }
  header nav a.nav-cta {
    padding: 0.85rem 2rem;
    font-size: 0.8rem;
    margin-top: 0.5rem;
  }

  .stat-card { padding: 1.5rem 1rem; }
  .stat-number { font-size: clamp(3.5rem, 14vw, 6rem); }
  .phone-cta { font-size: clamp(2rem, 7vw, 3.5rem); }
  .video-feature { max-width: 100%; }
}

@media (max-width: 600px) {
  .header-inner { padding: 0.85rem 1.2rem; }
  .btn-group { flex-direction: column; }
  .btn { width: 100%; text-align: center; }
  .donation-amounts { flex-direction: column; }
  .donation-amounts button, .donation-amounts input { width: 100%; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  h1 { font-size: clamp(2.6rem, 8vw, 4rem); }
  .hero-content { padding: 0 0 3rem; }
}
