/* ============================================================
   LANDING — Donations Make Difference
   ============================================================ */

/* ---------- TOP BAR ---------- */
.topbar {
  background: var(--ink);
  color: rgba(242,246,252,0.74);
  font-size: 13px;
  border-bottom: 1px solid var(--line-dark);
  position: relative; z-index: 60;
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px var(--pad-x); gap: 20px;
}
.topbar-tag { letter-spacing: 0.04em; font-weight: 500; }
.topbar-contact { display: flex; align-items: center; gap: 16px; }
.topbar-contact a {
  display: inline-flex; align-items: center; gap: 7px;
  text-decoration: none; color: rgba(242,246,252,0.74);
  font-weight: 600; transition: color 0.2s;
}
.topbar-contact a:hover { color: var(--brass-bright); }
.topbar-divider { width: 1px; height: 14px; background: var(--line-dark); }
@media (max-width: 760px) {
  .topbar-tag { display: none; }
  .topbar-inner { justify-content: center; }
  .topbar-email { display: none !important; }
}

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px;
  padding: 16px var(--pad-x);
  background: rgba(10, 24, 47, 0.0);
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
/* hero is dark, so nav text is cream while at top */
.nav { color: var(--cream); }
.nav.scrolled {
  background: rgba(10, 24, 47, 0.86);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom-color: var(--line-dark);
  padding-top: 12px; padding-bottom: 12px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
.brand-logo { width: 46px; height: 46px; object-fit: contain; display: block; flex-shrink: 0; }
.brand-text {
  font-family: var(--display); font-weight: 800;
  font-size: 18px; letter-spacing: -0.01em; line-height: 1;
}
.brand-text em { font-style: normal; color: var(--brass-bright); font-family: var(--serif); font-weight: 400; font-size: 1.18em; }

.nav-links { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.nav-links a {
  text-decoration: none; color: inherit; opacity: 0.8;
  font-size: 14.5px; font-weight: 600;
  position: relative; transition: opacity 0.2s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1.5px; width: 0;
  background: var(--brass-bright); transition: width 0.3s var(--ease);
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 18px; }
.nav-call { text-decoration: none; color: inherit; font-weight: 700; font-size: 16px; opacity: 0.9; white-space: nowrap; }
.nav-call:hover { color: var(--brass-bright); }
.nav-cta { padding: 12px 22px; font-size: 14.5px; }

.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-burger span { width: 24px; height: 2px; background: var(--cream); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.nav.scrolled .nav-burger span { background: var(--cream); }

@media (max-width: 1080px) {
  .nav-links { display: none; }
}
@media (max-width: 880px) {
  .nav-actions { display: none; }
  .nav-burger { display: flex; }
}

.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 86vw);
  background: var(--forest-deep); z-index: 70;
  transform: translateX(100%); transition: transform 0.4s var(--ease);
  display: flex; flex-direction: column; gap: 6px;
  padding: 90px 30px 30px;
  border-left: 1px solid var(--line-dark);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { color: var(--cream); text-decoration: none; font-size: 18px; font-weight: 600; padding: 14px 0; border-bottom: 1px solid var(--line-dark); }
.mobile-menu .btn { justify-content: center; margin-top: 14px; border-bottom: none; }
.mobile-menu .mm-call { border-bottom: none; color: var(--brass-bright); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  margin-top: -74px; /* pull under sticky nav */
  padding: 150px var(--pad-x) 0;
  display: flex; flex-direction: column;
  background: var(--forest-deep);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: -10% 0 0; z-index: 0; will-change: transform; }
.hero-bg image-slot { width: 100%; height: 100%; display: block; opacity: 1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 58% center; display: block; }
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(94deg, rgba(8,20,38,0.62) 0%, rgba(8,20,38,0.4) 24%, rgba(8,20,38,0.18) 46%, rgba(8,20,38,0.04) 68%, rgba(8,20,38,0) 100%),
    linear-gradient(180deg, rgba(8,20,38,0.45) 0%, transparent 16%, transparent 54%, rgba(10,24,47,0.82) 86%, var(--forest-deep) 100%),
    radial-gradient(ellipse 48% 40% at 28% 36%, rgba(31,111,214,0.14), transparent 60%);
}
.hero-beam {
  position: absolute; z-index: 2; top: -40%; left: -20%;
  width: 65%; height: 180%;
  background: linear-gradient(100deg, transparent 44%, rgba(224,58,44,0.05) 49%, rgba(242,246,252,0.09) 50%, rgba(224,58,44,0.05) 51%, transparent 57%);
  transform: rotate(9deg); pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
  .hero-beam { animation: beam 12s ease-in-out infinite; }
}
@keyframes beam {
  0%, 100% { transform: translateX(-10vw) rotate(9deg); opacity: 0; }
  45%, 55% { opacity: 1; }
  50% { transform: translateX(60vw) rotate(9deg); }
}
.hero .grain { z-index: 3; }

.hero-inner {
  position: relative; z-index: 4;
  flex: 1;
  display: flex; align-items: center;
  padding-bottom: 40px;
}
.hero-copy { position: relative; color: var(--cream); max-width: 600px; text-shadow: 0 1px 16px rgba(8,20,38,0.5); }
.hero-copy::before {
  content: ""; position: absolute; z-index: -1; pointer-events: none;
  inset: -54px -130px -36px -96px;
  background: radial-gradient(ellipse 68% 60% at 24% 44%, rgba(8,20,38,0.46), rgba(8,20,38,0.18) 56%, transparent 78%);
  filter: blur(8px);
}
.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.hero-pill {
  font-size: 13px; font-weight: 600;
  color: var(--cream);
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(8,20,38,0.5);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  padding: 7px 15px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 8px;
  text-shadow: none;
}
.hero-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brass-bright); box-shadow: 0 0 0 4px rgba(241,80,63,0.18); }

.hero-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(44px, 6.6vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 22px rgba(8,20,38,0.72), 0 1px 4px rgba(8,20,38,0.55);
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line > span { display: inline-block; white-space: nowrap; }
html.motion .hero-title .line > span { transform: translateY(112%); transition: transform 0.95s var(--ease); }
html.motion .hero-title.in .line > span { transform: translateY(0); }
html.motion .hero-title.in .line:nth-child(2) > span { transition-delay: 0.12s; }
html.motion .hero-title.in .line:nth-child(3) > span { transition-delay: 0.24s; }
.hero-title .serif-accent { font-size: 1.04em; letter-spacing: 0; }
.hero-title .brass { color: var(--brass-bright); }

.hero-sub {
  margin-top: 28px; max-width: 500px;
  font-size: clamp(16px, 1.5vw, 18.5px);
  line-height: 1.62; font-weight: 400;
  color: rgba(242,246,252,0.74);
  text-wrap: pretty;
}
/* hero glass quote bar */
.hero-quote-wrap { margin-top: 32px; max-width: 532px; }
.hero-quote {
  background: rgba(8,20,38,0.5);
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 28px 64px -34px rgba(0,0,0,0.65), inset 0 1px 0 rgba(255,255,255,0.1);
}
.hq-head { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: rgba(242,246,252,0.82); margin-bottom: 14px; text-shadow: none; }
.hq-head b { color: var(--cream); font-weight: 700; }
.hq-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brass); box-shadow: 0 0 0 4px rgba(224,58,44,0.22); flex-shrink: 0; }
.hq-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.hero-quote input[name="vehicle"] { grid-column: 1 / -1; }
.hero-quote input {
  font-family: var(--body); font-size: 15px; color: var(--text);
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 11px; padding: 13px 14px; width: 100%;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.hero-quote input::placeholder { color: #8893A6; }
.hero-quote input:focus { outline: none; border-color: var(--brass); box-shadow: 0 0 0 3px rgba(224,58,44,0.28); }
.hq-submit { grid-column: 1 / -1; justify-content: center; width: 100%; margin-top: 2px; }
.hq-note { font-size: 12px; color: rgba(242,246,252,0.62); margin-top: 12px; text-align: center; text-shadow: none; }
.hq-success { display: flex; align-items: center; gap: 14px; background: rgba(8,20,38,0.58); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.16); border-radius: 18px; padding: 20px; }
.hq-success .hc-check { width: 48px; height: 48px; margin: 0; }
.hq-success b { display: block; color: var(--cream); font-family: var(--display); font-weight: 800; font-size: 18px; }
.hq-success span { font-size: 14px; color: rgba(242,246,252,0.74); line-height: 1.5; }
.hq-seehow { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; color: var(--cream); font-weight: 600; font-size: 14.5px; text-decoration: none; transition: gap 0.25s, color 0.2s; }
.hq-seehow:hover { gap: 12px; color: var(--brass-bright); }
.hq-seehow svg { color: var(--brass-bright); }
.hero-trust {
  margin-top: 34px; list-style: none;
  display: flex; gap: 24px; flex-wrap: wrap;
  font-size: 14px; color: rgba(242,246,252,0.62);
}
.hero-trust li { display: flex; align-items: center; gap: 9px; }
.hero-trust svg { color: var(--sage); flex-shrink: 0; }

/* hero quick-form card */
.hero-card {
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255,255,255,0.98) 100%);
  color: var(--text);
  border-radius: var(--radius);
  padding: 30px 30px 26px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    0 2px 6px rgba(0,0,0,0.12),
    0 30px 60px -28px rgba(0,0,0,0.55),
    0 60px 100px -50px rgba(0,0,0,0.65);
  border: 1px solid rgba(255,255,255,0.5);
  position: relative;
}
.hero-card::before {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius);
  padding: 1px; background: linear-gradient(160deg, rgba(241,80,63,0.6), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.hc-head { margin-bottom: 20px; }
.hc-step {
  font-family: var(--display); font-size: 12px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass);
}
.hc-head h2 { font-family: var(--display); font-weight: 800; font-size: 23px; letter-spacing: -0.02em; margin: 10px 0 8px; line-height: 1.1; }
.hc-head p { font-size: 14px; color: var(--text-soft); line-height: 1.5; }
.hc-form { display: flex; flex-direction: column; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field > span { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-faint); }
.field input, .field select {
  font-family: var(--body); font-size: 15px; color: var(--text);
  background: #fff;
  border: 1.5px solid var(--line-light);
  border-radius: 12px; padding: 13px 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--brass); box-shadow: 0 0 0 3px rgba(224,58,44,0.16); }
.field input::placeholder { color: #A9B2A6; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hc-submit { justify-content: center; margin-top: 4px; width: 100%; }
.hc-fineprint { font-size: 11.5px; color: var(--text-faint); text-align: center; line-height: 1.4; margin-top: 2px; }
.hc-success { text-align: center; padding: 22px 8px; }
.hc-check { width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 50%; background: var(--fern); color: var(--cream); display: grid; place-items: center; }
.hc-success h3 { font-family: var(--display); font-weight: 800; font-size: 22px; margin-bottom: 8px; }
.hc-success p { font-size: 14.5px; color: var(--text-soft); line-height: 1.55; }

/* hero stat rail */
.hero-rail {
  position: relative; z-index: 4;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
  margin-bottom: 0;
}
.rail-item { padding: 26px 8px 30px; text-align: left; }
.rail-item + .rail-item { border-left: 1px solid var(--line-dark); padding-left: 26px; }
.rail-item .rv {
  display: block;
  font-family: var(--display); font-weight: 800;
  font-size: clamp(26px, 3vw, 40px); letter-spacing: -0.03em;
  color: var(--cream); font-variant-numeric: tabular-nums;
}
.rail-item .rk { display: block; margin-top: 6px; font-size: 12.5px; font-weight: 600; letter-spacing: 0.04em; color: var(--sage); }

@media (max-width: 1080px) {
  .hero-inner { padding-top: 10px; }
}
@media (max-width: 620px) {
  .hero { padding-top: 130px; }
  .hero-rail { grid-template-columns: 1fr 1fr; }
  .rail-item:nth-child(3) { border-left: none; padding-left: 8px; }
  .rail-item { border-top: 1px solid var(--line-dark); padding: 18px 8px; }
  .rail-item:nth-child(-n+2) { border-top: none; }
  .field-row { grid-template-columns: 1fr; }
}

/* ---------- MARQUEE ---------- */
.marquee {
  background: var(--ink); color: var(--cream);
  border-bottom: 1px solid var(--line-dark);
  overflow: hidden; padding: 20px 0;
}
.marquee-track { display: flex; align-items: center; gap: 40px; width: max-content; white-space: nowrap; }
@media (prefers-reduced-motion: no-preference) { .marquee-track { animation: marquee 40s linear infinite; } }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee-track span { font-family: var(--display); font-weight: 600; font-size: 16px; color: rgba(242,246,252,0.62); }
.marquee-track .sep { color: var(--fern); font-size: 12px; }

/* ---------- SECTION HEAD (shared) ---------- */
.section-head {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px;
  align-items: end; margin-bottom: clamp(44px, 5vw, 72px);
}
.how-kick { color: var(--text-faint); display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.how-kick .section-num { color: var(--brass); }
.section-title {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(32px, 4.4vw, 56px); line-height: 1.04;
  letter-spacing: -0.03em; color: var(--text);
  text-wrap: balance;
}
.section-title .serif-accent { color: var(--fern); font-size: 1.05em; letter-spacing: 0; }
.section-title .brass { color: var(--brass); }
.section-lede { font-size: 16.5px; line-height: 1.62; color: var(--text-soft); max-width: 400px; text-wrap: pretty; }
@media (max-width: 820px) {
  .section-head { grid-template-columns: 1fr; gap: 18px; }
}

/* ---------- HOW IT WORKS ---------- */
.how {
  background:
    radial-gradient(ellipse 46% 40% at 90% -6%, rgba(31,111,214,0.07), transparent 60%),
    radial-gradient(ellipse 42% 36% at -8% 106%, rgba(224,58,44,0.06), transparent 60%),
    var(--cream);
  padding: var(--section-y) var(--pad-x);
}
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step-card {
  position: relative;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--card) 100%);
  border: 1px solid rgba(17,36,64,0.07);
  border-radius: var(--radius);
  padding: 30px 26px 34px;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    0 1px 2px rgba(17,36,64,0.04),
    0 12px 24px -16px rgba(17,36,64,0.16),
    0 32px 56px -38px rgba(17,36,64,0.28);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.step-card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(130% 64% at 50% -12%, rgba(31,111,214,0.07), transparent 60%);
  opacity: 0; transition: opacity 0.45s var(--ease);
}
.step-card:hover {
  transform: translateY(-8px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    0 2px 4px rgba(17,36,64,0.05),
    0 22px 44px -22px rgba(17,36,64,0.2),
    0 48px 84px -40px rgba(17,36,64,0.36);
}
.step-card:hover::before { opacity: 1; }
.step-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 60px; position: relative; z-index: 1; }
.step-ghost {
  font-family: var(--serif); font-style: italic;
  font-size: 96px; line-height: 0.7;
  color: rgba(31,111,214,0.34);
  -webkit-text-stroke: 0;
  margin-top: -6px;
}
.step-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 50%; display: grid; place-items: center;
  color: var(--fern);
  border: 1px solid var(--brass-soft);
  background: rgba(224,58,44,0.07);
  transition: background 0.4s, color 0.4s;
}
.step-card:hover .step-icon { background: var(--fern); color: var(--cream); border-color: var(--fern); }
.step-card h3 { font-family: var(--display); font-weight: 700; font-size: 20px; letter-spacing: -0.01em; margin-bottom: 11px; }
.step-card p { font-size: 14.5px; line-height: 1.62; color: var(--text-soft); text-wrap: pretty; }
.step-rule {
  position: absolute; left: 26px; right: 26px; bottom: 0; height: 2px;
  background: linear-gradient(90deg, var(--brass), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.step-card:hover .step-rule { transform: scaleX(1); }
@media (max-width: 980px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } .step-top { margin-bottom: 32px; } .step-ghost { font-size: 64px; } }

.impact-head { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px, 5vw, 72px); align-items: center; max-width: none; margin-bottom: clamp(48px, 6vw, 84px); }
.ih-text { max-width: 600px; }
.impact-media { position: relative; overflow: hidden; border-radius: 24px; padding: clamp(28px, 3vw, 40px); background: linear-gradient(165deg, rgba(31,111,214,0.18), rgba(8,20,38,0.28)); border: 1px solid rgba(255,255,255,0.14); box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 30px 60px -38px rgba(0,0,0,0.6); }
.im-glow { position: absolute; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(224,58,44,0.22), transparent 65%); top: -80px; right: -70px; pointer-events: none; }
.im-eyebrow { position: relative; font-family: var(--display); font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage); }
.im-line { position: relative; font-family: var(--display); font-weight: 800; font-size: clamp(24px, 2.6vw, 34px); line-height: 1.1; letter-spacing: -0.02em; color: var(--cream); margin: 12px 0 26px; text-wrap: balance; }
.im-line .serif-accent { color: var(--brass-bright); font-size: 1.06em; }
.im-list { position: relative; list-style: none; display: flex; flex-direction: column; gap: 16px; }
.im-list li { display: flex; align-items: center; gap: 14px; font-size: 15.5px; font-weight: 500; color: rgba(242,246,252,0.9); }
.im-ic { width: 40px; height: 40px; flex-shrink: 0; border-radius: 12px; display: grid; place-items: center; color: #fff; background: linear-gradient(150deg, var(--fern), #1657b0); box-shadow: inset 0 1px 0 rgba(255,255,255,0.2); }
@media (max-width: 900px) { .impact-head { grid-template-columns: 1fr; } .ih-text { max-width: none; } }

/* ---------- IMPACT ---------- */
.impact { position: relative; background: var(--forest-deep); color: var(--cream); padding: var(--section-y) var(--pad-x); overflow: hidden; }
.impact-bg {
  position: absolute; inset: -20% -5% 0; z-index: 0; will-change: transform;
  background:
    radial-gradient(ellipse 50% 60% at 80% 0%, rgba(31,111,214,0.5), transparent 60%),
    radial-gradient(circle at 12% 90%, rgba(224,58,44,0.12), transparent 45%);
}
.impact .grain { z-index: 1; }
.impact-inner { position: relative; z-index: 2; }
.impact-head { /* two-column layout defined above */ }
.impact-title { font-family: var(--display); font-weight: 800; font-size: clamp(32px, 4.6vw, 60px); line-height: 1.02; letter-spacing: -0.03em; margin: 16px 0 22px; text-wrap: balance; }
.impact-title .brass { color: var(--brass-bright); }
.impact-lede { font-size: 17px; line-height: 1.64; color: rgba(242,246,252,0.7); max-width: 600px; text-wrap: pretty; }
.impact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 56px); }
.impact-stat { border-top: 1px solid var(--line-dark); padding-top: 26px; }
.is-num {
  display: block; font-family: var(--display); font-weight: 800;
  font-size: clamp(46px, 6vw, 78px); line-height: 1; letter-spacing: -0.04em;
  color: var(--cream); font-variant-numeric: tabular-nums;
}
.is-label { display: block; margin: 14px 0 22px; font-size: 15px; color: var(--sage); max-width: 240px; }
.is-bar { display: block; height: 3px; background: rgba(242,246,252,0.12); border-radius: 3px; overflow: hidden; }
.is-bar i { display: block; height: 100%; width: var(--w); background: linear-gradient(90deg, var(--fern), var(--brass-bright)); border-radius: 3px; }
html.motion .is-bar i { width: 0; transition: width 1.4s var(--ease); }
html.motion .impact-stat.in .is-bar i { width: var(--w); }
@media (max-width: 820px) { .impact-grid { grid-template-columns: 1fr; gap: 30px; } }

/* ---------- WHY / BENTO ---------- */
.why {
  background:
    radial-gradient(ellipse 50% 42% at 4% -2%, rgba(31,111,214,0.08), transparent 58%),
    radial-gradient(ellipse 46% 38% at 102% 102%, rgba(224,58,44,0.07), transparent 60%),
    var(--cream-2);
  padding: var(--section-y) var(--pad-x);
}
.bento { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; gap: 22px; }
.bento-card {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--card) 100%);
  border: 1px solid rgba(17,36,64,0.07);
  border-radius: var(--radius); padding: 32px 30px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    0 1px 2px rgba(17,36,64,0.04),
    0 12px 26px -18px rgba(17,36,64,0.16),
    0 34px 60px -40px rgba(17,36,64,0.26);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.bento-card:hover {
  transform: translateY(-7px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    0 2px 4px rgba(17,36,64,0.05),
    0 24px 46px -24px rgba(17,36,64,0.22),
    0 52px 88px -44px rgba(17,36,64,0.34);
}
.b-stat { display: block; font-family: var(--display); font-weight: 800; font-size: 46px; letter-spacing: -0.04em; color: var(--fern); line-height: 1; margin-bottom: 16px; }
.bento-card h3 { font-family: var(--display); font-weight: 700; font-size: 20px; letter-spacing: -0.01em; margin-bottom: 9px; text-wrap: balance; }
.bento-card p { font-size: 14.5px; line-height: 1.6; color: var(--text-soft); text-wrap: pretty; }

.bento-card.feature {
  grid-column: span 2; grid-row: span 2;
  background: linear-gradient(165deg, var(--forest-soft) 0%, var(--forest) 58%); color: var(--cream); border-color: transparent;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 30px 64px -36px rgba(0,0,0,0.55);
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 300px;
}
.bento-card.feature h3 { font-family: var(--display); font-weight: 800; font-size: clamp(26px, 3vw, 40px); letter-spacing: -0.03em; line-height: 1.06; margin: 16px 0 14px; max-width: 14ch; }
.bento-card.feature .serif-accent.brass { color: var(--brass-bright); }
.bento-card.feature p { color: rgba(242,246,252,0.72); font-size: 16px; max-width: 44ch; }
.bf-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.bf-chips span { font-size: 13px; font-weight: 600; color: var(--sage); border: 1px solid var(--line-dark); padding: 8px 15px; border-radius: 999px; }
.bento-spot {
  position: absolute; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(224,58,44,0.16), transparent 65%);
  left: var(--mx, 70%); top: var(--my, -20%);
  transform: translate(-50%, -50%); pointer-events: none;
  opacity: 0; transition: opacity 0.4s; z-index: 0;
}
.bento-card.feature:hover .bento-spot { opacity: 1; }
.bento-card.feature .bf-top, .bento-card.feature .bf-chips { position: relative; z-index: 1; }
.bento-card.feature .bf-top { max-width: 60%; }
.bf-photo { position: absolute; top: 0; right: 0; bottom: 0; width: 38%; z-index: 0; display: grid; place-items: center; padding: 22px; }
.bf-photo::before { content: ""; position: absolute; width: 72%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 68%); }
.bf-photo img { position: relative; width: auto; height: auto; max-width: 78%; max-height: 60%; object-fit: contain; display: block; filter: drop-shadow(0 12px 30px rgba(0,0,0,0.45)); }
@media (max-width: 760px) { .bf-photo { display: none; } .bento-card.feature .bf-top { max-width: 100%; } }

.bento-card.accent { background: linear-gradient(165deg, #3E86E2 0%, var(--fern) 60%); background-color: var(--fern); border-color: transparent; box-shadow: inset 0 1px 0 rgba(255,255,255,0.14), 0 30px 60px -36px rgba(0,0,0,0.42); }
.bento-card.accent .b-stat { color: var(--brass-bright); }

@media (max-width: 920px) {
  .bento { grid-template-columns: 1fr 1fr; }
  .bento-card.feature { grid-column: span 2; grid-row: span 1; min-height: auto; }
}
@media (max-width: 560px) { .bento { grid-template-columns: 1fr; } .bento-card.feature { grid-column: span 1; } }

/* ---------- VEHICLES ---------- */
.vehicles {
  background:
    radial-gradient(ellipse 44% 40% at 98% 4%, rgba(31,111,214,0.06), transparent 60%),
    radial-gradient(ellipse 38% 32% at 0% 96%, rgba(224,58,44,0.05), transparent 60%),
    var(--cream);
  padding: var(--section-y) var(--pad-x);
}
.veh-layout { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(24px, 4vw, 48px); align-items: stretch; }
.veh-photo { position: relative; min-height: 440px; border-radius: var(--radius); overflow: hidden; }
.veh-photo image-slot { width: 100%; height: 100%; display: block; }
.veh-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.veh-photo-tag {
  position: absolute; left: 18px; bottom: 18px; z-index: 2;
  background: rgba(10,24,47,0.78); backdrop-filter: blur(8px);
  color: var(--cream); font-size: 13px; font-weight: 600;
  padding: 9px 16px; border-radius: 999px; border: 1px solid var(--line-dark);
}
.veh-cards { display: flex; flex-direction: column; gap: 22px; }
.veh-card {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--card) 100%);
  border: 1px solid rgba(17,36,64,0.07);
  border-radius: var(--radius); padding: 28px 30px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    0 1px 2px rgba(17,36,64,0.04),
    0 14px 30px -20px rgba(17,36,64,0.16),
    0 36px 64px -42px rgba(17,36,64,0.24);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  flex: 1;
}
.veh-card:hover {
  transform: translateY(-5px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    0 2px 4px rgba(17,36,64,0.05),
    0 22px 44px -24px rgba(17,36,64,0.2),
    0 50px 84px -44px rgba(17,36,64,0.3);
}
.veh-card header { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.veh-ic { width: 42px; height: 42px; flex-shrink: 0; border-radius: 12px; display: grid; place-items: center; color: var(--fern); background: rgba(31,111,214,0.08); border: 1px solid rgba(31,111,214,0.16); }
.veh-card h3 { font-family: var(--display); font-weight: 700; font-size: 19px; letter-spacing: -0.01em; }
.checks { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; }
.checks li { position: relative; padding-left: 26px; font-size: 14.5px; color: var(--text-soft); line-height: 1.4; }
.checks li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 16px; height: 16px;
  background:
    linear-gradient(var(--brass), var(--brass));
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M2 7.4 5.4 11 12 3.6' stroke='black' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M2 7.4 5.4 11 12 3.6' stroke='black' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
}
.veh-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; font-family: var(--display); font-weight: 700; font-size: 14.5px; color: var(--fern); text-decoration: none; transition: gap 0.25s; }
.veh-link:hover { gap: 12px; }
@media (max-width: 880px) {
  .veh-layout { grid-template-columns: 1fr; }
  .veh-photo { min-height: 300px; }
  .checks { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) { .checks { grid-template-columns: 1fr; } }

/* ---------- TAX ---------- */
.tax { background: var(--cream); padding: 0 var(--pad-x) clamp(40px, 5vw, 72px); }
.tax-card {
  background: var(--ink); color: var(--cream);
  border-radius: 28px; overflow: hidden;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(28px, 4vw, 64px);
  padding: clamp(40px, 5vw, 64px);
  position: relative;
}
.tax-card::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 70% at 100% 0%, rgba(31,111,214,0.4), transparent 55%);
}
.tax-left { position: relative; z-index: 1; }
.tax-left h2 { font-family: var(--display); font-weight: 800; font-size: clamp(28px, 3.4vw, 44px); line-height: 1.05; letter-spacing: -0.03em; margin: 16px 0 18px; text-wrap: balance; }
.tax-left .brass { color: var(--brass-bright); }
.tax-body { font-size: 16px; line-height: 1.65; color: rgba(242,246,252,0.74); margin-bottom: 30px; max-width: 44ch; }
.tax-steps { list-style: none; position: relative; z-index: 1; display: flex; flex-direction: column; gap: 4px; }
.tax-steps li { display: flex; gap: 18px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--line-dark); }
.tax-steps li:last-child { border-bottom: none; }
.ts-n { width: 40px; height: 40px; flex-shrink: 0; border-radius: 50%; border: 1px solid var(--brass-soft); color: var(--brass-bright); display: grid; place-items: center; font-family: var(--serif); font-style: italic; font-size: 19px; }
.tax-steps b { font-family: var(--display); font-weight: 700; font-size: 16.5px; display: block; margin-bottom: 4px; }
.tax-steps p { font-size: 14px; color: rgba(242,246,252,0.66); line-height: 1.5; }
.tax-disclaimer { margin-top: 22px; font-size: 12.5px; color: var(--text-faint); line-height: 1.55; max-width: 80ch; text-wrap: pretty; }
@media (max-width: 820px) { .tax-card { grid-template-columns: 1fr; } }

/* ---------- QUOTE ---------- */
.quote { background: var(--forest); color: var(--cream); padding: var(--section-y) var(--pad-x); position: relative; }
.quote-inner { max-width: 940px; margin: 0 auto; text-align: center; position: relative; }
.quote-mark { display: block; font-size: 120px; line-height: 0.5; color: var(--brass-bright); opacity: 0.5; margin-bottom: 10px; }
.quote blockquote {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(24px, 3.4vw, 42px); line-height: 1.24;
  letter-spacing: -0.02em; text-wrap: balance;
}
.quote blockquote .brass { color: var(--brass-bright); }
.quote-by { display: inline-flex; align-items: center; gap: 14px; margin-top: 36px; }
.qb-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--brass); color: var(--ink); display: grid; place-items: center; font-family: var(--display); font-weight: 800; font-size: 18px; }
.quote-by div { text-align: left; }
.quote-by b { display: block; font-weight: 700; font-size: 15px; }
.quote-by span { font-size: 13.5px; color: var(--sage); }

/* ---------- FINAL CTA ---------- */
.cta { position: relative; background: var(--ink); color: var(--cream); padding: clamp(90px,11vw,150px) var(--pad-x); overflow: hidden; text-align: center; }
.cta-glow { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 120%, rgba(31,111,214,0.5), transparent 60%), radial-gradient(circle at 50% -10%, rgba(224,58,44,0.16), transparent 45%); }
.cta .grain { z-index: 1; }
.cta-inner { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; }
.cta-inner h2 { font-family: var(--display); font-weight: 800; font-size: clamp(34px, 5.4vw, 72px); line-height: 1.02; letter-spacing: -0.03em; margin: 18px 0 20px; text-wrap: balance; }
.cta-inner .brass { color: var(--brass-bright); }
.cta-sub { font-size: 17.5px; line-height: 1.6; color: rgba(242,246,252,0.72); max-width: 520px; margin: 0 auto; text-wrap: pretty; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 38px; }

/* ---------- FOOTER ---------- */
.footer { background: var(--forest-deep); color: rgba(242,246,252,0.7); padding: clamp(56px,7vw,84px) var(--pad-x) 30px; border-top: 1px solid var(--line-dark); }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid var(--line-dark); }
.footer-brand .brand { color: var(--cream); margin-bottom: 18px; }
.footer-brand p { font-size: 14.5px; line-height: 1.65; max-width: 38ch; text-wrap: pretty; }
.footer-col h4 { font-family: var(--display); font-weight: 700; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage); margin-bottom: 18px; }
.footer-col a { display: block; text-decoration: none; color: rgba(242,246,252,0.7); font-size: 14.5px; padding: 7px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--brass-bright); }
.footer-hours { display: block; font-size: 13.5px; color: var(--text-faint); margin-top: 10px; line-height: 1.5; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 26px; font-size: 13px; flex-wrap: wrap; }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { text-decoration: none; color: rgba(242,246,252,0.6); transition: color 0.2s; }
.footer-legal a:hover { color: var(--brass-bright); }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- DONATE / KEYS BAND ---------- */
.keys {
  background:
    radial-gradient(ellipse 44% 40% at 4% 0%, rgba(31,111,214,0.06), transparent 58%),
    radial-gradient(ellipse 40% 34% at 100% 100%, rgba(224,58,44,0.05), transparent 60%),
    var(--cream);
  padding: clamp(16px, 2vw, 36px) var(--pad-x) var(--section-y);
}
.keys-inner { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.keys-photo { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16 / 10; box-shadow: 0 2px 4px rgba(17,36,64,0.06), 0 44px 84px -46px rgba(17,36,64,0.5); }
.keys-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.keys-kick { color: var(--text-faint); display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.keys-kick .section-num { color: var(--brass); }
.keys-copy h2 { font-family: var(--display); font-weight: 800; font-size: clamp(30px, 4vw, 52px); line-height: 1.04; letter-spacing: -0.03em; margin-bottom: 18px; text-wrap: balance; }
.keys-copy h2 .serif-accent { color: var(--fern); font-size: 1.05em; }
.keys-lede { font-size: 16.5px; line-height: 1.7; color: var(--text-soft); margin-bottom: 24px; max-width: 48ch; text-wrap: pretty; }
.keys-points { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 30px; }
.keys-points li { display: flex; align-items: center; gap: 12px; font-size: 15.5px; color: var(--text); font-weight: 500; }
.kp-ic { width: 28px; height: 28px; flex-shrink: 0; border-radius: 50%; display: grid; place-items: center; color: #fff; background: var(--fern); }
@media (max-width: 860px) { .keys-inner { grid-template-columns: 1fr; } .keys-photo { order: -1; } }


/* ---------- MOBILE PASS (landing) ---------- */
@media (max-width: 760px) {
  .hero-title { font-size: clamp(40px, 12.5vw, 58px); }
  .hero-sub { font-size: 16px; }
  .marquee-track span { font-size: 14px; }
  .marquee-track { gap: 28px; }
}
@media (max-width: 560px) {
  .hero { padding-top: 116px; }
  .hero-pills { gap: 8px; }
  .hero-pill { font-size: 12px; padding: 6px 12px; }
  .hq-fields { grid-template-columns: 1fr; }
  .hero-quote input[name="vehicle"] { grid-column: auto; }
  .hero-quote { padding: 16px; }
  .section-title { font-size: clamp(27px, 8.5vw, 38px); }
  .impact-title, .cta-inner h2 { font-size: clamp(28px, 9vw, 42px); }
  .impact-media { padding: 24px; }
  .step-ghost { font-size: 76px; }
  .b-stat { font-size: 40px; }
  .quote blockquote { font-size: clamp(21px, 6vw, 30px); }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .bf-photo { display: none; }
  .bento-card.feature .bf-top { max-width: 100%; }
}
@media (max-width: 420px) {
  .brand-text { font-size: 15px; }
  .brand-logo { width: 38px; height: 38px; }
  .hero-title { font-size: clamp(36px, 13vw, 50px); }
}
