:root{
  /* ===== Devotional palette ===== */
  /* Warm cream surfaces — the site now breathes instead of feeling dim */
  --cream:        #FAF6EE;   /* primary background */
  --cream-2:      #FDF8F0;   /* secondary / card surface */
  --cream-3:      #F3ECDD;   /* soft divider / subtle band */

  /* Maroon (authority, reverence) */
  --maroon:       #8B1A1A;
  --maroon-ink:   #6E1414;   /* for headings on light surfaces */
  --maroon-deep:  #5F1515;

  /* Saffron / gold (auspiciousness, generosity) */
  --saffron:      #E8B84B;
  --saffron-2:    #C9922A;
  --gold-warm:    #B97C1A;

  /* Ink & text on light surfaces */
  --ink:          #2A1A14;   /* near-black with a warm bias */
  --body:         #3B2A23;   /* body copy on cream */
  --muted:        rgba(42,26,20,0.62);
  --line:         rgba(42,26,20,0.12);
  --line-strong:  rgba(42,26,20,0.22);

  /* Legacy aliases kept for backwards compatibility with existing classes */
  --text:         var(--body);
  --accent:       var(--saffron);
  --accent-strong: var(--saffron-2);

  --shadow:       0 16px 40px rgba(42,26,20,0.12);
  --shadow-soft:  0 6px 18px rgba(42,26,20,0.08);
  --radius:       18px;

  /* Typography */
  --font-serif:   "Cormorant Garamond", "Lora", Georgia, "Times New Roman", serif;
  --font-sans:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: var(--font-sans);
  color: var(--body);
  background:
    radial-gradient(1000px 600px at 12% 0%, rgba(232,184,75,0.12), transparent 55%),
    radial-gradient(900px 600px at 88% 8%, rgba(139,26,26,0.06), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  -webkit-font-smoothing: antialiased;
}

a{ color:inherit; text-decoration:none; }
code{
  background: rgba(42,26,20,0.06);
  padding: 0.2rem 0.4rem;
  border-radius: 10px;
  font-size: 0.95em;
}

.container{
  width:min(1100px, 92vw);
  margin:0 auto;
}

.section{ padding: 72px 0; }

/* ===== Typography — devotional serif for headings ===== */
h1, h2, h3, h4, h5{
  font-family: var(--font-serif);
  color: var(--maroon-ink);
  font-weight: 600;
  letter-spacing: 0.2px;
  line-height: 1.15;
}
h1{ font-size: clamp(2.1rem, 4.4vw, 3.3rem); margin: 10px 0 14px; font-weight: 600; }
h2{ font-size: clamp(1.7rem, 2.8vw, 2.3rem); margin:0 0 12px; }
h3{ margin:0 0 8px; font-size:1.2rem; font-weight: 600; }
p{ line-height:1.7; margin:0.6rem 0; color: var(--body); }

.lead{ color: var(--body); max-width: 70ch; font-size: 1.05rem; }
.muted{ color: var(--muted); }
.tiny{ font-size: 0.88rem; }
.mini{ font-size: 0.95rem; margin-top: 0.6rem; }

/* ===== Header (deep maroon sticky — devotional + high contrast) ===== */
.header{
  position: sticky; top:0; z-index: 50;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background:
    linear-gradient(180deg, var(--maroon) 0%, var(--maroon-deep) 100%);
  border-bottom: 1px solid rgba(0,0,0,0.25);
  box-shadow: 0 8px 22px rgba(42,26,20,0.18);
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 4vw;
}

.brand{ display:flex; gap:10px; align-items:center; color: #FFF8EA; }
.brand-mark{
  width:36px;
  height:36px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,248,234,0.20);
  border-radius: 12px;
  background: #fff;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.brand-mark img.brand-icon{
  width:22px !important;
  height:22px !important;
  object-fit: contain;
  display:block;
}
.brand-text{
  font-weight:600;
  letter-spacing:0.2px;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: #FFF8EA;
}

.nav{ display:flex; gap: 20px; align-items:center; }
.nav a{
  color: rgba(255,248,234,0.90);
  font-size: 0.98rem;
  font-weight: 500;
  position: relative;
  padding: 6px 2px;
}
.nav a:hover{ color: #FFF8EA; }
.nav a.active{
  color: #FFF8EA;
  font-weight: 600;
}
.nav a.active::after{
  content:"";
  position:absolute; left:0; right:0; bottom:-2px;
  height: 2px;
  background: var(--saffron);
  border-radius: 2px;
}

/* Support CTA — saffron pill so it pops against the maroon header */
.nav-cta{
  padding: 10px 18px !important;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--saffron), var(--saffron-2)) !important;
  color: var(--ink) !important;
  font-weight: 700 !important;
  border: 1px solid rgba(42,26,20,0.20);
  box-shadow: 0 6px 16px rgba(201,146,42,0.35);
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}
.nav-cta:hover{
  background: linear-gradient(180deg, var(--saffron-2), var(--gold-warm)) !important;
  color: #FFF8EA !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(185,124,26,0.45);
}
.nav-cta::after{ display:none !important; }

/* MOBILE MENU BUTTON (hamburger) */
.menu-btn{
  width: 44px;
  height: 44px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border-radius: 12px;
}

.menu-btn span{
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #FFF8EA;
  margin: 0;
}

@media (max-width: 520px){
  .menu-btn span{ height: 2.5px; }
}

/* Announcement strip */
.notice{
  position: sticky;
  top: 64px;
  z-index: 40;
  background: linear-gradient(90deg, var(--saffron), var(--saffron-2));
  border-bottom: 1px solid rgba(42,26,20,0.22);
}
.notice-inner{
  display:flex; gap: 12px; align-items:center;
  padding: 10px 0;
  color: var(--ink);
}
.notice-tag{
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(42,26,20,0.12);
}
.notice-text{ flex: 1; font-weight: 600; }
.notice-link{
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(42,26,20,0.14);
}
.notice-link:hover{ background: rgba(42,26,20,0.22); }

/* ===== Hero ===== */
.hero{
  position: relative;
  overflow:hidden;
  padding-top: 0;
  margin-top: 0;
  /* soft drop shadow only — no upper glow tinting the image */
  box-shadow:
    0 18px 44px rgba(139,26,26,0.12);
}
.hero-bg{
  position:absolute; inset:0;
  /* Layered:
     1) very subtle bottom darkening for text legibility
     2) the hero image itself (clean — no warm tint on top) */
  background:
    linear-gradient(180deg,
      rgba(20,8,12,0.00) 0%,
      rgba(20,8,12,0.00) 55%,
      rgba(20,8,12,0.38) 100%
    ),
    url("./assets/hero-home.png");
  background-size: cover, cover;
  background-position: center, center;
  filter: saturate(1.04) contrast(1.02);
  z-index: 0;
}
/* Thin saffron accent line under the hero — adds a warm "pop" seam */
.hero::after{
  content:"";
  position:absolute; left:0; right:0; bottom:0;
  height: 3px;
  background: linear-gradient(90deg,
    rgba(201,146,42,0) 0%,
    rgba(201,146,42,0.65) 20%,
    rgba(185,124,26,0.85) 50%,
    rgba(201,146,42,0.65) 80%,
    rgba(201,146,42,0) 100%
  );
  z-index: 2;
  pointer-events: none;
}
.hero .container{ position:relative; z-index:1; }

.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  align-items: stretch;
}

/* HERO: right-side text + pills near bottom */
.hero-grid > :first-child{
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  align-items:flex-end;
  text-align:right;
  min-height: 560px;
  padding-right: 4px;
}

.hero-grid > :first-child .subhead,
.hero-grid > :first-child .lead,
.hero-grid > :first-child p{
  max-width: 60ch;
}

/* Hero headline — devotional serif, signals spiritual authority */
.hero h1{
  font-family: var(--font-serif);
  color: #FFF8EA;
  font-weight: 500;
  font-size: clamp(2.3rem, 4.6vw, 3.6rem);
  line-height: 1.08;
  text-shadow: 0 2px 16px rgba(0,0,0,0.45);
  letter-spacing: 0.2px;
}
.hero .kicker{
  color: rgba(255,248,234,0.86);
  letter-spacing: 0.22em;
  font-size: 0.82rem;
  text-transform: uppercase;
  font-weight: 500;
  margin:0 0 4px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.45);
}
.hero .subhead{
  color: rgba(255,248,234,0.92);
  max-width: 60ch;
  font-size: 1.05rem;
  text-shadow: 0 1px 10px rgba(0,0,0,0.35);
}

.cta-row{
  display:flex;
  flex-wrap:wrap;
  gap: 12px;
  margin-top: 18px;
  justify-content:flex-end;
}

.trust-row{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin-top: auto;
  justify-content:flex-end;
  padding-top: 14px;
}

/* ===== Buttons ===== */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--cream-2);
  color: var(--maroon-ink);
  font-weight: 600;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.btn:hover{ transform: translateY(-1px); box-shadow: var(--shadow-soft); }
.btn.primary{
  background: linear-gradient(180deg, var(--saffron), var(--saffron-2));
  color: var(--ink);
  border-color: rgba(42,26,20,0.12);
  box-shadow: 0 8px 20px rgba(201,146,42,0.28);
}
.btn.primary:hover{
  background: linear-gradient(180deg, var(--saffron-2), var(--gold-warm));
  color: #FFF8EA;
}
.btn.ghost{
  background: rgba(255,255,255,0.08);
  color: #FFF8EA;
  border-color: rgba(255,255,255,0.5);
}
.btn.ghost:hover{ background: rgba(255,255,255,0.18); }
.btn.small{ padding: 10px 14px; font-size: 0.92rem; }

/* Hero-specific ghost button — lighter on dark hero */
.hero .btn.ghost{
  color: #FFF8EA;
  border-color: rgba(255,255,255,0.55);
  background: rgba(0,0,0,0.18);
}
.hero .btn.ghost:hover{ background: rgba(0,0,0,0.32); }

.trust-pill{
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(0,0,0,0.24);
  color: rgba(255,248,234,0.90);
  font-size: 0.9rem;
}

/* Hero right panel (still available if you re-enable it) */
.hero-panel{
  border: 1px solid rgba(255,255,255,0.16);
  background: linear-gradient(135deg, rgba(34,12,18,0.44), rgba(20,8,10,0.18));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero-panel-inner{
  padding: 18px 18px 20px;
  height: 100%;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  gap: 14px;
}
.hero-cutout{
  width: 100%;
  height: auto;
  display:block;
  object-fit: contain;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,0.45));
}
.hero-quote{
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 12px;
}
.quote{ font-size: 1.02rem; color: rgba(255,255,255,0.88); }
.quote-by{ margin-top: 10px; color: rgba(255,255,255,0.70); }

/* ===== Section bands — warm off-whites dominate, maroon as accent ===== */

/* Deep band: no longer "deep dark" — now warm cream with a faint gold halo */
.section.band-deep{
  background:
    radial-gradient(800px 500px at 20% 0%, rgba(232,184,75,0.10), transparent 55%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--body);
}
.section.band-deep h2,
.section.band-deep h3{ color: var(--maroon-ink); }
.section.band-deep a{ color: var(--maroon-ink); }
.section.band-deep a:hover{ color: var(--maroon-deep); }

/* Maroon band: used sparingly — this is the one section where we let maroon lead */
.section.band-maroon{
  background:
    radial-gradient(900px 600px at 20% 0%, rgba(255,248,234,0.12), transparent 55%),
    linear-gradient(180deg, var(--maroon) 0%, var(--maroon-deep) 100%);
  color: #FFF8EA;
}
.section.band-maroon h2,
.section.band-maroon h3{ color: #FFF8EA; }
.section.band-maroon a{ color: #FFF8EA; }
.section.band-maroon .lead,
.section.band-maroon .muted,
.section.band-maroon p{ color: rgba(255,248,234,0.86); }
.section.band-maroon .card{
  background: rgba(255,248,234,0.08);
  border-color: rgba(255,248,234,0.18);
}
.section.band-maroon .card p{ color: rgba(255,248,234,0.86); }

/* Saffron / support band — warm gold gradient, auspicious */
.section.band-saffron{
  background:
    radial-gradient(900px 700px at 20% 0%, rgba(255,255,255,0.28), transparent 55%),
    linear-gradient(180deg, var(--saffron) 0%, var(--saffron-2) 70%, var(--gold-warm) 100%);
  color: var(--ink);
}
.section.band-saffron h2,
.section.band-saffron h3,
.section.band-saffron h4{ color: var(--maroon-deep); }
.section.band-saffron .muted,
.section.band-saffron .lead { color: rgba(42,26,20,0.78); }
.section.band-saffron code{ background: rgba(42,26,20,0.10); color: var(--ink); }
.section.band-saffron .btn{ border-color: rgba(42,26,20,0.22); }
.section.band-saffron .btn.ghost{
  background: rgba(42,26,20,0.06);
  color:var(--ink);
  border-color: rgba(42,26,20,0.24);
}
.section.band-saffron .card{
  background: rgba(255,255,255,0.72);
  border-color: rgba(42,26,20,0.14);
  color: var(--ink);
}
.section.band-saffron .card p{ color: var(--body); }

/* ===== Cards ===== */
.cards{ display:grid; gap: 14px; margin-top: 18px; }
.cards.three{ grid-template-columns: repeat(3, 1fr); }
.card{
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover{ transform: translateY(-2px); box-shadow: var(--shadow); }
.card h3{ color: var(--maroon-ink); }
.card p{ color: var(--body); }

/* ===== Section head ===== */
.section-head{
  display:flex; justify-content:space-between; gap: 16px; align-items:flex-end;
  margin-bottom: 14px;
}
.text-link{ color: var(--maroon-ink); }
.text-link:hover{ color: var(--maroon-deep); }

/* ===== Pull-quote (devotional) ===== */
.pullquote{
  position: relative;
  padding: 28px 28px 26px 42px;
  margin: 18px 0 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.45;
  color: var(--maroon-ink);
  background: var(--cream-2);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.pullquote::before{
  content:"";
  position:absolute; left: 18px; top: 22px; bottom: 22px;
  width: 3px;
  background: linear-gradient(180deg, var(--saffron-2), var(--gold-warm));
  border-radius: 3px;
}
.pullquote cite{
  display:block;
  margin-top: 12px;
  font-style: normal;
  font-size: 0.92rem;
  color: var(--muted);
  font-family: var(--font-sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===== Videos ===== */
.video-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 10px;
}
.video{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  color: var(--body);
}
.video:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.video img{
  width:100%;
  display:block;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.video .vbody{ padding: 14px 16px; }
.video .title{
  font-family: var(--font-serif);
  font-size: 1.05rem;
  margin: 0;
  color: var(--maroon-ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video .meta{ margin: 8px 0 0; color: var(--muted); font-size: 0.9rem; }

.embed-wrap{
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  background: #fff;
}
.embed-wrap iframe{ width:100%; height: 360px; display:block; }
.sep{ border:0; border-top: 1px solid var(--line); margin: 16px 0; }

/* ===== Support section ===== */
.support-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 16px;
}
.upi-row{
  display:flex;
  gap: 12px;
  align-items:center;
  justify-content:space-between;
  margin-top: 10px;
  flex-wrap: wrap;
}
.qr-wrap{
  margin-top: 14px;
  display: flex;
  justify-content: flex-start;
}
.qr{
  width: 100%;
  max-width: 220px;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 1px solid rgba(42,26,20,0.18);
  background: #fff;
  padding: 6px;
  box-shadow: var(--shadow-soft);
}
.support-grid .card{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Emotional hook banner above QR */
.support-hook{
  margin: 8px 0 20px;
  padding: 18px 22px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(42,26,20,0.12);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--maroon-deep);
}

/* Impact chip row */
.impact-row{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 8px 0 20px;
}
.impact-chip{
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(42,26,20,0.12);
  border-radius: var(--radius);
  padding: 14px 16px;
  text-align: center;
}
.impact-chip .num{
  display:block;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--maroon-deep);
  line-height: 1.1;
}
.impact-chip .label{
  display:block;
  margin-top: 4px;
  font-size: 0.88rem;
  color: rgba(42,26,20,0.72);
  letter-spacing: 0.02em;
}

/* Why Give? mini-grid */
.why-give{
  margin: 6px 0 20px;
}
.why-give h3{
  margin: 0 0 12px;
  color: var(--maroon-deep);
}
.why-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.why-item{
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(42,26,20,0.12);
  border-radius: var(--radius);
  padding: 16px;
}
.why-item .why-ico{
  width: 36px; height: 36px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--saffron), var(--saffron-2));
  color: var(--maroon-deep);
  display:grid; place-items:center;
  font-weight: 700;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 10px;
  box-shadow: 0 4px 12px rgba(201,146,42,0.25);
}
.why-item h4{
  margin: 0 0 6px;
  font-size: 1.05rem;
  color: var(--maroon-deep);
}
.why-item p{ margin: 0; font-size: 0.95rem; color: var(--body); }

/* ===== Forms ===== */
.form{ margin-top: 14px; display:grid; gap: 12px; max-width: 520px; }
label span{ display:block; color: var(--muted); font-size: 0.92rem; margin-bottom: 6px; }
input, textarea{
  width:100%;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--body);
  padding: 12px 12px;
  outline: none;
  font-family: var(--font-sans);
}
input:focus, textarea:focus{ border-color: var(--maroon); }

.form-embed {
  margin-top: 24px;
  padding: 12px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.form-embed iframe {
  border-radius: 12px;
}

/* ===== Footer ===== */
.footer{
  border-top:1px solid var(--line);
  padding: 22px 0;
  background: var(--cream-3);
  color: var(--body);
}
.footer-row{
  display:flex; justify-content:space-between; gap: 14px; align-items:center;
}
.footer-links{ display:flex; gap: 14px; color: var(--muted); }
.footer-links a{ color: var(--maroon-ink); }
.footer-links a:hover{ color: var(--maroon-deep); }

/* ===== Sticky Support floating button ===== */
.floating-support{
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--maroon), var(--maroon-deep));
  color: #FFF8EA !important;
  font-weight: 600;
  font-size: 0.98rem;
  box-shadow: 0 12px 30px rgba(95,21,21,0.38);
  border: 1px solid var(--maroon-deep);
  transition: transform .2s ease, box-shadow .2s ease, opacity .25s ease;
  opacity: 1;
  pointer-events: auto;
}
.floating-support:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(95,21,21,0.48);
}
.floating-support .heart{
  display:inline-block;
  font-size: 1rem;
  color: var(--saffron);
}
.floating-support.is-hidden{
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}
@media (max-width: 520px){
  .floating-support{
    right: 14px;
    left: 14px;
    bottom: 14px;
    justify-content: center;
    padding: 14px 18px;
  }
}

/* ===== Responsive ===== */
@media (max-width: 920px){
  .hero-grid{ grid-template-columns: 1fr; }

  .hero-copy{
    min-height: 0;
    align-items: flex-start;
    text-align: left;
  }

  .cta-row{ justify-content:flex-start; }
  .trust-row{ justify-content:flex-start; margin-top: 12px; padding-top: 0; gap: 10px; }

  .cards.three{ grid-template-columns: 1fr; }
  .video-grid{ grid-template-columns: 1fr 1fr; }
  .support-grid{ grid-template-columns: 1fr; }
  .impact-row{ grid-template-columns: repeat(3, 1fr); }
  .why-grid{ grid-template-columns: 1fr; }
  .embed-wrap iframe{ height: 300px; }
  .notice{ top: 64px; }

  .menu-btn{ display: inline-flex; align-items:center; justify-content:center; }
  .nav{
    display: none;
    position: absolute;
    left: 4vw;
    right: 4vw;
    top: 64px;
    flex-direction: column;
    gap: 12px;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.30);
    background: linear-gradient(180deg, var(--maroon) 0%, var(--maroon-deep) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 50px rgba(0,0,0,0.35);
  }
  .nav.open{ display: flex; }
  .nav a{ font-size: 1rem; color: rgba(255,248,234,0.92); }
  .nav-cta{ width: 100%; text-align:center; }
}

@media (max-width: 640px){
  .impact-row{
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* HERO desktop */
@media (min-width: 921px){
  .hero-grid{
    grid-template-columns: 0.95fr 1.05fr;
    align-items: stretch;
  }

  .hero-copy{
    grid-column: 2;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    align-items:flex-end;
    text-align:right;
    min-height: 560px;
  }

  .hero-panel{ grid-column: 1; }

  .hero-copy .subhead,
  .hero-copy .lead,
  .hero-copy p{
    max-width: 56ch;
  }

  .cta-row, .trust-row{ justify-content:flex-end; }
}

/* HERO mobile */
@media (max-width: 740px){
  .hero-bg{ background-position: 40% 10%; }

  .hero-copy{
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    min-height: 72vh;
    padding-bottom: 18px;
  }

  .hero .container{
    position: relative;
  }
  .hero .container::after{
    content:"";
    position:absolute;
    left:0; right:0; bottom:0;
    height: 42%;
    background: linear-gradient(to top, rgba(20,8,12,0.62), rgba(20,8,12,0));
    pointer-events:none;
    z-index: 0;
  }
  .hero .container > *{ position: relative; z-index: 1; }

  .cta-row{ margin-top: 12px; }
  .trust-row{ margin-top: 10px; gap: 10px; }
}

@media (max-width: 420px){
  .hero-copy{ min-height: 78vh; }
}

/* Hero text animation */
@keyframes heroSlideIn {
  from {
    opacity: 0;
    transform: translateX(-28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.hero .kicker {
  opacity: 0;
  animation: heroSlideIn 700ms cubic-bezier(0.22, 1, 0.36, 1) 0ms forwards;
}
.hero h1 {
  opacity: 0;
  animation: heroSlideIn 900ms cubic-bezier(0.22, 1, 0.36, 1) 120ms forwards;
  will-change: transform, opacity;
}
.hero .subhead {
  opacity: 0;
  animation: heroSlideIn 900ms cubic-bezier(0.22, 1, 0.36, 1) 260ms forwards;
}
.hero .cta-row {
  opacity: 0;
  animation: heroSlideIn 850ms cubic-bezier(0.22, 1, 0.36, 1) 420ms forwards;
}
.hero .trust-row {
  opacity: 0;
  animation: heroSlideIn 850ms cubic-bezier(0.22, 1, 0.36, 1) 560ms forwards;
}
@media (prefers-reduced-motion: reduce) {
  .hero .kicker,
  .hero h1,
  .hero .subhead,
  .hero .cta-row,
  .hero .trust-row {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* Mobile menu polish */
@media (min-width: 741px){
  .menu-btn{ display:none !important; }
  .nav{
    display:flex !important;
    position: static !important;
    background: transparent !important;
    border:0 !important;
    box-shadow:none !important;
    padding:0 !important;
  }
}

.menu-btn{
  display:none;
  width:44px; height:44px;
  border:0;
  background: transparent;
  border-radius: 12px;
  padding: 0;
}
.menu-btn:focus{ outline: none; }
.menu-btn:focus-visible{
  outline: 2px solid var(--saffron-2);
  outline-offset: 3px;
}
.menu-btn span{
  display:block;
  height:2px;
  width:22px;
  margin:5px auto;
  background: #FFF8EA;
  border-radius: 2px;
}

@media (max-width: 740px){
  .menu-btn{ display:block; }

  .nav{
    display:none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    padding: 14px 16px 16px;
    background: linear-gradient(180deg, var(--maroon) 0%, var(--maroon-deep) 100%);
    backdrop-filter: blur(12px);
    border: 0;
    border-top: 1px solid rgba(0,0,0,0.28);
    border-radius: 0;
    box-shadow: 0 18px 50px rgba(0,0,0,0.35);
    z-index: 999;
    max-height: calc(100vh - 68px);
    overflow: auto;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
  }

  .nav.open{
    display:flex;
    flex-direction: column;
    gap: 10px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav a{
    padding: 12px 10px;
    border-radius: 12px;
    text-align: left;
    color: rgba(255,248,234,0.92);
  }

  .nav a:hover{
    background: rgba(255,248,234,0.10);
    color: #FFF8EA;
  }

  .nav .nav-cta{
    margin-top: 8px;
    text-align:center;
  }
}

@media (max-width: 740px){
  .hero .container.hero-grid{
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 14px;
  }

  .hero-copy{
    text-align: left;
    max-width: 100%;
  }

  .hero-copy h1{
    font-size: clamp(30px, 7vw, 40px);
    line-height: 1.1;
  }

  .hero-copy .subhead{
    margin-top: 8px;
    font-size: 15px;
    line-height: 1.5;
  }

  .cta-row{
    margin-top: 14px;
  }
}

.nav a.active {
  color: #FFF8EA;
  font-weight: 600;
}
