  @import url("../design-system/colors_and_type.css");

  :root {
    color-scheme: only light;

    /* =========================
       Semantic aliases — our selectors use these names; they now point at
       the canonical SVRE tokens (see /design-system/colors_and_type.css)
       so the page visually matches the brand system.
       ========================= */
    --cream:        var(--svre-cream);        /* page bg */
    --cream-sunk:   var(--svre-surface-2);    /* darker cream, sunken band */
    --cream-elev:   var(--svre-surface-0);    /* lighter cream, elevated surface */
    --ink:          var(--svre-ink);
    --ink-muted:    var(--svre-ink-muted);
    --ink-subtle:   var(--svre-ink-muted);
    --rule:         var(--svre-border);
    --rule-strong:  var(--svre-border-strong);

    --navy:         var(--svre-teal-900);
    --forest:       var(--svre-green);
    --forest-deep:  var(--svre-green-deep);
    --sky:          var(--svre-sky);
    --sky-deep:     var(--svre-ocean);
    --sun:          var(--svre-orange);
    --sun-deep:     #c2432a;                  /* darker orange, hover */
    --amber:        var(--svre-yellow);
    --amber-deep:   #d08f1f;
    --alarm:        var(--svre-orange);       /* alarm and sun share the orange role per the brand system */
    --alarm-deep:   #c2432a;

    /* Fixed — never flip with theme. Text on the persistent teal-900 bands. */
    --on-dark:      var(--svre-cream);
    --on-light:     var(--svre-teal-900);

    /* Legacy aliases kept for selectors that still reference the old names. */
    --dark:    var(--svre-teal-900);
    --lake:    var(--svre-ocean);
    --action:  var(--svre-orange);
    --saffron: var(--svre-orange);
    --light:   var(--svre-surface-0);
    --white:   var(--svre-cream);
    --gray:    var(--svre-ink-muted);
    --text:    var(--svre-ink);

    /* Type families — canon: Lato Black UPPERCASE for display,
       Inter Variable for body. Fonts are self-hosted via the @font-face
       block inside the imported colors_and_type.css. */
    --font-body:    var(--svre-font-body);
    --font-display: var(--svre-font-display);

    /* Type scale */
    --text-caption: 0.8125rem;                                   /* 13px */
    --text-small:   0.9375rem;                                   /* 15px */
    --text-body:    1rem;                                        /* 16px */
    --text-lead:    1.125rem;                                    /* 18px */
    --text-h3:      1.25rem;                                     /* 20px */
    --text-h2:      clamp(1.5rem, 2.2vw + 1rem, 2rem);           /* 24→32 */
    --text-h1:      clamp(1.85rem, 3.5vw + 0.5rem, 2.75rem);     /* 30→44 */
    --text-display: clamp(2rem, 3.5vw + 0.75rem, 3.25rem);       /* 32→52 (matches UI kit) */

    /* Line heights */
    --leading-tight:   1.05;
    --leading-snug:    1.15;
    --leading-normal:  1.45;
    --leading-body:    1.6;

    /* Tracking */
    --tracking-tight:  -0.015em;
    --tracking-normal: 0;
    --tracking-caps:   0.12em;
  }

  /* Note: dark-mode support deferred. We design in light mode for now and
     will revisit dark mode after the visual system is locked. */

  /* Accessibility utilities */
  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .skip-link {
    position: absolute;
    top: -60px;
    left: 0;
    background: var(--navy);
    color: var(--on-dark);
    padding: 0.75rem 1rem;
    z-index: 1080;
    text-decoration: none;
    font-weight: 700;
    border-radius: 0 0 6px 0;
    transition: top 0.15s ease;
  }
  .skip-link:focus {
    top: 0;
    color: var(--cream);
    outline: 3px solid var(--sun);
    outline-offset: 2px;
  }

  /* Required-field abbr */
  label abbr[title="required"] {
    color: var(--alarm-deep);
    text-decoration: none;
    margin-inline-start: 0.15em;
  }

  /* Reserve space for JS-injected navbar to prevent CLS on first paint */
  #header {
    min-height: 64px;
  }

  /* Screen-reader-only focus: no outline when focused programmatically */
  [tabindex="-1"]:focus:not(:focus-visible) {
    outline: none;
  }

  /* Error input state */
  input.error,
  textarea.error,
  select.error {
    border-color: var(--alarm);
  }

  /* [hidden] attribute takes precedence over display:flex etc */
  [hidden] {
    display: none !important;
  }

  /* =========================
     Nav — canonical SVRE navbar: cream bg, rounded-tile logo + SVRE + sub,
     sentence-case links, primary sticker-shadow CTA on the right.
     ========================= */
  .navbar {
    background: var(--cream-elev);
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
  }
  .navbar > .container {
    max-width: 1200px;
  }

  /* Brand lockup — logo tile + name/sub stacked */
  .navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    padding: 0;
  }
  .navbar-brand .brand-tile {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    flex-shrink: 0;
    display: block;
  }
  /* Round badge variant — keeps the circular SVG seal undistorted */
  .navbar-brand .brand-tile--badge {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: transparent;
  }

  /* Hide the nav CTA until a sign-on flow exists */
  .nav-cta-item { display: none !important; }
  .navbar-brand .brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1;
  }
  .navbar-brand .brand-name {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink);
    line-height: 1;
  }
  .navbar-brand .brand-sub {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.7rem;
    line-height: 1.2;
    color: var(--ink-muted);
    letter-spacing: 0;
    text-transform: none;
  }
  .navbar-brand:hover .brand-name { color: var(--svre-ocean); }

  @media (max-width: 500px) {
    .navbar-brand .brand-sub { display: none; }
  }

  /* Nav links — sentence case, Inter 700, teal-900 ink, ocean hover */
  .navbar .nav-link {
    color: var(--ink);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0;
    text-transform: none;
    padding: 0.5rem 0.75rem;
  }
  .navbar .nav-link:hover,
  .navbar .nav-link:focus {
    color: var(--svre-ocean);
  }

  /* Nav-links container spacing on desktop */
  @media (min-width: 992px) {
    .navbar-nav {
      gap: 0.4rem;
      align-items: center;
    }
  }

  /* Primary CTA in the nav — sticker-shadow pill */
  .navbar .btn,
  .navbar .nav-cta {
    background: var(--on-light);
    color: var(--on-dark);
    border: 2px solid var(--on-light);
    border-radius: 999px;
    padding: 0.6rem 1.2rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0;
    text-transform: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 3px 0 0 var(--on-light);
    text-decoration: none;
    transition: transform 180ms cubic-bezier(.2,.6,.2,1),
                box-shadow 180ms cubic-bezier(.2,.6,.2,1),
                background 180ms;
  }
  .navbar .nav-cta:hover,
  .navbar .btn:hover {
    background: var(--svre-teal-700);
    color: var(--on-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 0 0 var(--on-light);
  }
  .navbar .nav-cta:active,
  .navbar .btn:active {
    transform: translateY(2px);
    box-shadow: 0 0 0 0 var(--on-light);
  }

  /* Give the CTA a little breathing room to the left on desktop */
  @media (min-width: 992px) {
    .nav-cta-item,
    .nav-donate-item {
      margin-left: 0.4rem;
    }
  }

  /* Keep the "RSVP" plain link from duplicating the dropdown entry
     on small screens where vertical stacking is fine */

  /* Dropdown menu — match canon (cream bg, 2px teal border, offset shadow) */
  .navbar .dropdown-menu {
    background: var(--cream-elev);
    border: 2px solid var(--ink);
    border-radius: 14px;
    box-shadow: 0 4px 0 0 var(--ink);
    padding: 0.5rem;
    margin-top: 0.5rem;
  }
  .navbar .dropdown-item {
    color: var(--ink);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
  }
  .navbar .dropdown-item:hover,
  .navbar .dropdown-item:focus {
    background: var(--svre-surface-0);
    color: var(--svre-ocean);
  }

  @media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
      display: block;
      margin-top: 0;
    }
  }

  .dropdown-toggle::after {
    display: none;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  body {
    font-family: var(--font-body);
    font-size: var(--text-body);
    font-weight: 400;
    color: var(--ink);
    background: var(--cream);
    line-height: var(--leading-body);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-feature-settings: "kern", "liga", "calt";
  }

  h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: var(--leading-snug);
    letter-spacing: var(--tracking-tight);
    color: var(--ink);
  }

  /* Keep numbers tabular wherever data lines up */
  .stats, .stat-number, .map-legend {
    font-variant-numeric: tabular-nums;
  }

  /* Hero — flat teal-900 bg per canon (no gradients rule) */
  .hero {
    background: var(--svre-teal-900);
    color: var(--on-dark);
    padding: 3.25rem 1.5rem 2.75rem;
    text-align: center;
  }
  .hero > * {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-badge {
    display: inline-block;
    background: var(--svre-orange);
    color: var(--on-light);
    font-family: var(--font-body);
    font-size: var(--text-caption);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--tracking-caps);
    padding: 0.4rem 0.95rem;
    border: 2px solid var(--on-light);
    border-radius: 999px;
    margin-bottom: 1.5rem;
    box-shadow: 0 3px 0 0 var(--on-light);
  }
  .hero h1 {
    font-family: var(--font-display);
    font-size: var(--text-display);
    font-weight: 900;
    line-height: var(--leading-tight);
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    color: inherit;
    text-transform: uppercase;
  }
  .hero p {
    font-size: var(--text-lead);
    line-height: var(--leading-normal);
    max-width: 60ch;
    margin: 0 auto;
  }

  /* Stats bar */
  .stats {
    background: var(--navy);
  }
  .stats-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: color-mix(in oklch, var(--on-dark) 18%, var(--navy));
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1px;
  }
  .stat {
    background: var(--navy);
    padding: 1.25rem 1rem;
    text-align: center;
  }
  .stat-number {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2.25rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--svre-yellow);
  }
  .stat-label {
    font-size: var(--text-caption);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--tracking-caps);
    color: var(--on-dark);
    margin-top: 0.5rem;
  }

  /* Section — canon container is 1200px. Narrative text inside stays at
     65ch so reading column doesn't blow out; card grids use full width. */
  .section {
    padding: 3rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    scroll-margin-top: 90px;
  }
  /* Alt section — full-bleed lighter-cream island. Content area is centered
     via padding (not per-child margin) so the eyebrow + heading + body all
     start at the same left edge. */
  .section-alt {
    background: var(--svre-surface-0);
    max-width: none;
    padding-block: 3.5rem;
    padding-inline: max(1.5rem, calc((100% - 1200px) / 2));
  }

  /* Card grid — 3 across on desktop, 2 at tablet, 1 on mobile */
  .card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
    align-items: stretch;
  }
  @media (max-width: 900px) {
    .card-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 600px) {
    .card-grid { grid-template-columns: 1fr; }
  }

  /* Colored icon tile inside a card */
  .card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    border: 2px solid var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--on-light);
    margin-bottom: 0.9rem;
    flex-shrink: 0;
  }
  .card-icon svg {
    width: 26px;
    height: 26px;
    stroke-width: 2.25;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .card-icon--yellow { background: var(--svre-yellow); }
  .card-icon--sky    { background: var(--svre-sky); }
  .card-icon--orange { background: var(--svre-orange); color: var(--on-dark); }
  .card-icon--green  { background: var(--svre-green); color: var(--on-dark); }
  /* Section eyebrow — UPPERCASE mid-green per brand. Larger, more legible. */
  .section-eyebrow {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--svre-green);
    margin-bottom: 0.85rem;
  }
  .section-eyebrow--on-dark {
    color: var(--svre-yellow);
  }

  .section h1,
  .section h2 {
    font-size: var(--text-h2);
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--svre-green-deep);
    max-width: 24ch;
  }
  .section h1 { font-size: var(--text-h1); }
  .section p {
    margin-bottom: 1rem;
    font-size: var(--text-lead);
    max-width: 65ch;
    color: var(--text);
  }

  /* Risk cards — canonical SVRE card: 2px teal border, 20px radius, offset shadow */
  .risk-card {
    position: relative;
    background: var(--cream-elev);
    border: 2px solid var(--ink);
    padding: 1.5rem 1.4rem 1.4rem;
    margin-bottom: 1.25rem;
    border-radius: 20px;
    box-shadow: 0 4px 0 0 var(--ink);
    transition: transform 200ms cubic-bezier(.2,.6,.2,1), box-shadow 200ms;
  }
  .risk-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 0 var(--ink);
  }
  .risk-card .card-tag {
    display: block;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--ink-muted);
    margin-bottom: 0.5rem;
  }
  .risk-card h3 {
    font-family: var(--font-display);
    font-size: var(--text-h3);
    font-weight: 900;
    line-height: var(--leading-snug);
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
    color: var(--ink);
    text-transform: none;
  }
  /* Secondary sticker-shadow button — cream bg, teal border/text (flips) */
  a.plume-btn,
  a.plume-btn:link,
  a.plume-btn:visited {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 0.9rem;
    padding: 0.6rem 1.1rem;
    background: var(--cream-elev);
    color: var(--ink) !important;
    font-family: var(--font-body);
    font-size: var(--text-small);
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    border: 2px solid var(--ink);
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 3px 0 0 var(--ink);
    transition: transform 180ms cubic-bezier(.2,.6,.2,1), box-shadow 180ms cubic-bezier(.2,.6,.2,1), background 180ms;
  }
  a.plume-btn:hover {
    background: var(--svre-surface-0);
    transform: translateY(-1px);
    box-shadow: 0 4px 0 0 var(--ink);
  }
  a.plume-btn:active {
    transform: translateY(2px);
    box-shadow: 0 0 0 0 var(--ink);
  }
  .risk-card p {
    font-size: var(--text-body);
    line-height: var(--leading-body);
    margin-bottom: 0;
    color: var(--text);
  }

  /* Map */
  .map-section {
    padding: 2rem 1.5rem;
    background: var(--light);
  }
  .map-section h2 {
    text-align: center;
    font-size: var(--text-h2);
    font-weight: 700;
    margin-bottom: 0.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  .map-section .subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 1.25rem;
    font-size: var(--text-small);
    max-width: 65ch;
    margin-left: auto;
    margin-right: auto;
  }
  #map {
    width: 100%;
    max-width: 700px;
    height: 450px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    z-index: 1;
  }
  .map-legend {
    max-width: 700px;
    margin: 1rem auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    font-size: var(--text-caption);
    color: var(--gray);
  }
  .legend-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }
  .legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
  }

  /* Our Position — header / two-card / quote layout */
  .message-box.position-section {
    background: var(--navy);
    color: var(--on-dark);
    padding: 3rem 1.5rem 3.25rem;
    text-align: left;
  }
  .position-section > * {
    max-width: 1200px;
    margin-inline: auto;
  }
  .position-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    padding-bottom: 1.5rem;
  }
  .position-eyebrow-pill {
    display: inline-block;
    border: 1.5px solid var(--svre-yellow);
    color: var(--svre-yellow);
    background: transparent;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    line-height: 1;
  }
  .position-heading {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(1.75rem, 3.2vw + 0.6rem, 2.85rem);
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: var(--on-dark);
    margin: 0;
    text-align: left;
    flex: 1 1 auto;
  }
  .position-heading-or { color: var(--svre-orange); }

  .position-rule {
    border: 0;
    border-top: 1px solid rgba(245, 232, 199, 0.18);
    margin-block: 0;
  }

  .position-cards {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
    gap: 1.5rem;
    padding-block: 2rem;
  }
  @media (max-width: 760px) {
    .position-cards { grid-template-columns: 1fr; }
    .position-heading { text-align: left; }
  }

  .position-card {
    border-radius: 18px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .position-card--not {
    background: transparent;
    border: 1px solid rgba(245, 232, 199, 0.16);
  }
  .position-card--this {
    background: var(--svre-surface-0);
    border: 2px solid var(--svre-orange);
    color: var(--ink);
  }
  .position-card--this p {
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.55;
    font-weight: 600;
    margin: 0;
    max-width: none;
  }

  .position-card-label {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    line-height: 1;
    align-self: flex-start;
  }
  .position-card-label--not {
    border: 1.5px solid rgba(245, 232, 199, 0.4);
    color: var(--on-dark);
    background: transparent;
  }
  .position-card-label--this {
    border: 1.5px solid var(--svre-orange);
    color: var(--svre-orange);
    background: transparent;
  }

  .position-not-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }
  .position-not-list li {
    display: flex;
    align-items: baseline;
    gap: 0.7rem;
    text-decoration: line-through;
    text-decoration-color: rgba(245, 232, 199, 0.45);
    color: rgba(245, 232, 199, 0.55);
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.4;
  }
  .position-not-list .position-x {
    color: var(--svre-orange);
    font-weight: 700;
    font-size: 1.1rem;
    flex: 0 0 auto;
    text-decoration: none;
    line-height: 1;
  }

  .message-box .hl {
    background: linear-gradient(transparent 55%, rgba(255, 173, 40, 0.42) 55%);
    color: inherit;
    padding: 0 0.08em;
  }

  .position-quote {
    text-align: center;
    margin: 0 auto;
    padding: 2.25rem 0 0;
  }
  .position-quote p {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(1.5rem, 3vw + 0.75rem, 2.5rem);
    line-height: 1.1;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--svre-yellow);
    max-width: 22ch;
    margin: 0 auto 1rem;
  }
  .position-quote-or { color: var(--svre-orange); }
  .position-quote cite {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-style: normal;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245, 232, 199, 0.65);
  }

  /* Form */
  .form-section {
    padding: 1rem 1.5rem 2.5rem;
    max-width: 700px;
    margin: 0 auto;
  }
  .form-section h2 {
    font-size: var(--text-h2);
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  .form-section .subtitle {
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-size: var(--text-small);
  }
  form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  label {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: var(--text-small);
    letter-spacing: 0.01em;
    color: var(--text);
  }
  input, textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--ink);
    border-radius: 8px;
    font-size: var(--text-body);
    font-family: var(--font-body);
    transition: border-color 0.2s, box-shadow 0.2s;
    background: var(--cream-elev);
    color: var(--ink);
  }
  input:focus, textarea:focus {
    outline: none;
    border-color: var(--svre-ocean);
    box-shadow: 0 0 0 3px color-mix(in oklch, var(--svre-ocean) 28%, transparent);
  }
  textarea {
    min-height: 100px;
    resize: vertical;
  }
  /* =========================
     Sticker-shadow button system — canonical SVRE pattern.
     Pill radius, 2px teal-900 border, offset shadow, press translates down.
     Primary = teal bg + cream text. Secondary = cream bg + teal text.
     ========================= */
  .submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--on-light);
    color: var(--on-dark);
    font-family: var(--font-body);
    font-size: var(--text-body);
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    padding: 0.95rem 1.5rem;
    border: 2px solid var(--on-light);
    border-radius: 999px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 0 0 var(--on-light);
    transition: transform 180ms cubic-bezier(.2,.6,.2,1), box-shadow 180ms cubic-bezier(.2,.6,.2,1), background 180ms;
  }
  .submit-btn:hover {
    background: var(--svre-teal-700);
    color: var(--on-dark);
    transform: translateY(-1px);
    box-shadow: 0 5px 0 0 var(--on-light);
  }
  .submit-btn:active {
    transform: translateY(3px);
    box-shadow: 0 0 0 0 var(--on-light);
  }
  .form-note {
    font-size: var(--text-caption);
    color: var(--gray);
    text-align: center;
    line-height: var(--leading-normal);
  }

  /* Links section */
  .links-section {
    background: var(--light);
    padding: 2rem 1.5rem;
    text-align: center;
  }
  .links-section h2 {
    font-size: var(--text-h2);
    font-weight: 700;
    margin-bottom: 1rem;
  }
  .link-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    max-width: 500px;
    margin: 0 auto;
  }
  .link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0.85rem 1.1rem;
    background: var(--cream-elev);
    border: 2px solid var(--ink);
    border-radius: 999px;
    color: var(--ink);
    text-decoration: none;
    font-weight: 700;
    font-size: var(--text-small);
    box-shadow: 0 3px 0 0 var(--ink);
    transition: transform 180ms cubic-bezier(.2,.6,.2,1), box-shadow 180ms, background 180ms;
  }
  .link-btn:hover {
    background: var(--svre-surface-0);
    transform: translateY(-1px);
    box-shadow: 0 4px 0 0 var(--ink);
  }
  .link-btn:active {
    transform: translateY(2px);
    box-shadow: 0 0 0 0 var(--ink);
  }
  .link-btn.primary {
    background: var(--on-light);
    color: var(--on-dark);
    border-color: var(--on-light);
    box-shadow: 0 3px 0 0 var(--on-light);
  }
  .link-btn.primary:hover {
    background: var(--svre-teal-700);
    color: var(--on-dark);
    box-shadow: 0 4px 0 0 var(--on-light);
  }

  /* =========================
     Footer — canonical SVRE pattern: teal-900 bg, tribal-deco band at top,
     four-column grid (brand + issues + get-involved + connect), bottom rule
     with copyright and land acknowledgment.
     ========================= */
  .site-footer {
    position: relative;
    background: var(--on-light);
    color: var(--on-dark);
    padding: 4.5rem 1.5rem 1.75rem;
    font-size: var(--text-caption);
    line-height: var(--leading-normal);
  }
  .site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    background-image: url("../design-system/assets/illustrations/Tribal-Deco-White.svg");
    background-repeat: repeat-x;
    background-position: center;
    background-size: contain;
    opacity: 0.7;
  }
  .site-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .site-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-top: 1rem;
  }
  @media (max-width: 860px) {
    .site-footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .site-footer-brand { grid-column: 1 / -1; }
  }
  @media (max-width: 500px) {
    .site-footer-grid { grid-template-columns: 1fr; }
  }

  .site-footer-brand { display: flex; flex-direction: column; gap: 0.9rem; max-width: 34ch; }
  .site-footer-lockup {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .site-footer-lockup img {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: var(--svre-cream);
    padding: 3px;
  }
  .site-footer-name {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--svre-yellow);
    line-height: 1;
    display: block;
  }
  .site-footer-tagline {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.75rem;
    line-height: 1.3;
    color: var(--on-dark);
    opacity: 0.78;
    margin-top: 4px;
    display: block;
  }
  .site-footer-about {
    font-family: var(--font-body);
    font-size: 0.8rem;
    line-height: 1.55;
    color: var(--on-dark);
    opacity: 0.82;
    max-width: 40ch;
    margin: 0;
  }

  .site-footer-h {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--svre-yellow);
    margin: 0 0 0.9rem;
  }
  .site-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .site-footer-links a {
    color: var(--on-dark);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.85rem;
    line-height: 1.4;
    opacity: 0.82;
    transition: opacity 150ms, color 150ms;
    display: inline-block;
  }
  .site-footer-links a:hover {
    opacity: 1;
    color: var(--svre-yellow);
  }

  .site-footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid color-mix(in oklch, var(--on-dark) 18%, transparent);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    flex-wrap: wrap;
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: color-mix(in oklch, var(--on-dark) 60%, transparent);
  }
  .site-footer-bottom p { margin: 0; }

  /* Thank-you state — canonical card pattern */
  .thank-you {
    display: none;
    text-align: center;
    padding: 2rem 1.75rem;
    background: var(--cream-elev);
    border-radius: 20px;
    border: 2px solid var(--ink);
    box-shadow: 0 4px 0 0 var(--ink);
  }
  .thank-you h3 {
    color: var(--svre-green);
    font-family: var(--font-display);
    font-size: var(--text-h3);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.005em;
    margin-bottom: 0.5rem;
  }
  .thank-you p {
    color: var(--ink);
    font-size: var(--text-small);
  }

  @media (min-width: 640px) {
    .stats-inner { grid-template-columns: repeat(4, 1fr); }
    .link-grid { grid-template-columns: 1fr 1fr; }
  }

  /* =========================
     RSVP Page
     ========================= */
  body.rsvp-page {
    background-color: var(--cream);
    color: var(--ink);
    /* Inherits --font-body from :root body rule; no override needed */
  }

  .rsvp-page label {
    margin-bottom: 0.25rem;
    font-weight: 600;
    color: var(--ink);
  }

  .rsvp-page main.container {
    max-width: 720px;
  }

  .rsvp-page .header-img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
  }

  .rsvp-page h1.subtitle,
  .rsvp-page .subtitle {
    font-family: var(--font-display);
    font-size: var(--text-h1);
    font-weight: 700;
    line-height: var(--leading-snug);
    letter-spacing: -0.015em;
    color: var(--ink);
    text-transform: uppercase;
    margin-bottom: 2rem;
  }

  .rsvp-page .form-control,
  .rsvp-page .form-select {
    border-radius: 8px;
    padding: 0.75rem 0.9rem;
    margin-bottom: 0.5rem;
    border: 2px solid var(--ink);
    background: var(--cream-elev);
    color: var(--ink);
    font-family: var(--font-body);
  }

  .rsvp-page .form-control:focus,
  .rsvp-page .form-select:focus {
    border-color: var(--svre-ocean);
    outline: none;
    box-shadow: 0 0 0 3px color-mix(in oklch, var(--svre-ocean) 28%, transparent);
  }

  .rsvp-page .error {
    border-color: var(--alarm) !important;
  }

  .rsvp-page .error-message {
    color: var(--alarm-deep);
    font-size: var(--text-caption);
    font-weight: 400;
    margin-top: 0.25rem;
    margin-bottom: 0.75rem;
  }
  .rsvp-page .error-message:empty {
    margin-top: 0;
    margin-bottom: 0;
  }

  .rsvp-page .btn-primary {
    background-color: var(--on-light);
    color: var(--on-dark);
    border: 2px solid var(--on-light);
    border-radius: 999px;
    padding: 0.95rem 1.5rem;
    font-family: var(--font-body);
    font-size: var(--text-body);
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    box-shadow: 0 4px 0 0 var(--on-light);
    transition: transform 180ms cubic-bezier(.2,.6,.2,1), box-shadow 180ms, background-color 180ms;
  }

  .rsvp-page .btn-primary:hover {
    background-color: var(--svre-teal-700);
    color: var(--on-dark);
    transform: translateY(-1px);
    box-shadow: 0 5px 0 0 var(--on-light);
  }
  .rsvp-page .btn-primary:active {
    transform: translateY(3px);
    box-shadow: 0 0 0 0 var(--on-light);
  }

  .rsvp-page .success-message {
    display: none;
    background: var(--svre-surface-0);
    border: 2px solid var(--ink);
    border-radius: 20px;
    box-shadow: 0 4px 0 0 var(--ink);
    padding: 1.25rem 1.4rem;
    margin-bottom: 2rem;
  }

  .rsvp-page .section {
    margin-top: 1rem;
  }

  .rsvp-page .form-check-section {
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
  }

  .rsvp-page .form-check {
    display: flex;
    align-items: center;
    gap: 0.85rem;
  }

  .rsvp-page .form-check-input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    margin: 0;
    flex: 0 0 auto;
    border: 2px solid var(--ink);
    border-radius: 5px;
    background-color: var(--cream-elev);
    box-shadow: 0 2px 0 0 var(--ink);
    cursor: pointer;
    display: inline-block;
    transition: background-color 150ms,
                transform 140ms cubic-bezier(.2,.6,.2,1),
                box-shadow 140ms cubic-bezier(.2,.6,.2,1);
  }
  .rsvp-page .form-check-input[type="checkbox"]:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 0 0 var(--ink);
  }
  .rsvp-page .form-check-input[type="checkbox"]:active {
    transform: translateY(1px);
    box-shadow: 0 1px 0 0 var(--ink);
  }
  .rsvp-page .form-check-input[type="checkbox"]:checked {
    background-color: var(--ink);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23f6eddc' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M3 8.5l3 3 7-7'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px 14px;
  }
  .rsvp-page .form-check-input[type="checkbox"]:focus-visible {
    outline: 3px solid var(--svre-orange);
    outline-offset: 2px;
  }

  .rsvp-page .form-check-label {
    margin-bottom: 0;
    line-height: 1.45;
    cursor: pointer;
  }

  /* =========================
     Hero — spotlight variant.
     Brought in from the SVRE design-system UI kit. Sky-blue background,
     two-column grid (copy left, illustrated scene right), yellow eyebrow
     pill, big condensed display title with an orange accent word, two
     pill CTAs with the canonical sticker-shadow.
     ========================= */
  .hero-spotlight {
    position: relative;
    overflow: hidden;
    background-color: var(--svre-sky);
    background-image: url("../design-system/assets/backgrounds/SVRE%20Sno%20Valley%20Hero%20BG.png");
    background-size: cover;
    /* Anchor right so the mountain + sun stay visible while the cleaner
       sky on the left holds the headline copy. */
    background-position: right center;
    background-repeat: no-repeat;
    border-bottom: 3px solid var(--ink);
    color: var(--ink);
    text-align: left;
  }
  /* On narrow viewports the BG anchors near the top so the mountain reads
     above the stacked copy instead of getting cropped behind it. */
  @media (max-width: 960px) {
    .hero-spotlight { background-position: 70% top; }
  }
  .hero-spotlight .hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 32px;
    align-items: center;
    padding: 3.5rem 1.5rem 3.75rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  .hero-spotlight .hero-copy { min-width: 0; }
  .hero-spotlight .hero-eyebrow {
    display: inline-block;
    background: var(--svre-yellow);
    color: var(--ink);
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 0.75rem;
    line-height: 1.2;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 6px 14px;
    border: 2px solid var(--ink);
    border-radius: 999px;
    margin: 0;
  }
  .hero-spotlight h1.hero-title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2.25rem, 5vw + 0.5rem, 3.6rem);
    line-height: 0.98;
    letter-spacing: -0.015em;
    color: var(--ink);
    text-transform: uppercase;
    margin: 18px 0 16px;
  }
  .hero-spotlight h1.hero-title .or { color: var(--svre-orange); }
  .hero-spotlight .hero-lead {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--ink);
    max-width: 50ch;
    margin: 0 0 1.5rem;
  }
  .hero-spotlight .hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }

  /* Sticker-shadow CTA pair, scoped to the spotlight hero so it doesn't
     fight with the existing .submit-btn / .link-btn rules elsewhere. */
  .hero-spotlight .btn-pill,
  #situation .btn-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1;
    padding: 0.85rem 1.35rem;
    border-radius: 999px;
    border: 2px solid var(--ink);
    box-shadow: 0 4px 0 0 var(--ink);
    text-decoration: none;
    cursor: pointer;
    transition: transform 180ms cubic-bezier(.2,.6,.2,1),
                box-shadow 180ms cubic-bezier(.2,.6,.2,1),
                background 180ms;
  }
  .hero-spotlight .btn-pill.primary,
  #situation .btn-pill.primary {
    background: var(--ink);
    color: var(--cream);
  }
  .hero-spotlight .btn-pill.primary:hover,
  #situation .btn-pill.primary:hover {
    background: var(--svre-teal-700);
    color: var(--cream);
    transform: translateY(-1px);
    box-shadow: 0 5px 0 0 var(--ink);
  }
  .hero-spotlight .btn-pill.primary:active,
  #situation .btn-pill.primary:active {
    transform: translateY(3px);
    box-shadow: 0 0 0 0 var(--ink);
  }
  .hero-spotlight .btn-pill.secondary {
    background: var(--cream);
    color: var(--ink);
  }
  .hero-spotlight .btn-pill.secondary:hover {
    background: var(--svre-surface-0);
    transform: translateY(-1px);
    box-shadow: 0 5px 0 0 var(--ink);
  }
  .hero-spotlight .btn-pill.secondary:active {
    transform: translateY(3px);
    box-shadow: 0 0 0 0 var(--ink);
  }
  #situation .section-actions {
    margin-top: 2.25rem;
  }

  /* Right column is intentionally empty — the hero's PNG background already
     carries the mountain/sun/valley illustration, so the spacer just reserves
     the visual breathing room next to the copy. */
  .hero-spotlight .hero-scene-spacer {
    aspect-ratio: 5 / 4;
    min-height: 260px;
  }

  @media (max-width: 960px) {
    .hero-spotlight .hero-inner { grid-template-columns: 1fr; gap: 1.5rem; padding: 2.5rem 1.5rem; }
    .hero-spotlight .hero-scene-spacer { display: none; }
    /* Darker BG variant pairs with cream copy so the headline + lead
       read cleanly over the mountain region on stacked mobile layouts.
       Scoped to the index hero — the --march variant has its own BG
       and reads fine in dark ink. */
    .hero-spotlight:not(.hero-spotlight--march) {
      background-image: url("../design-system/assets/backgrounds/SVRE%20Sno%20Valley%20Hero%20BG%20Darker.png");
    }
    .hero-spotlight:not(.hero-spotlight--march) h1.hero-title,
    .hero-spotlight:not(.hero-spotlight--march) .hero-lead {
      color: var(--cream);
    }
  }

  /* =========================
     March to the Park hero — RSVP page variant.
     Same spotlight chassis as index, but a different background and a
     stacked headline with an italic "to the" between MARCH and PARK,
     plus a cream route pill below the title.
     ========================= */
  .hero-spotlight--march {
    background-image: url("../design-system/assets/backgrounds/March%20to%20the%20Park%20BG.png");
    background-position: right center;
  }
  @media (max-width: 960px) {
    .hero-spotlight--march { background-position: 75% top; }
  }
  .hero-spotlight--march h1.hero-title--march {
    font-size: clamp(3rem, 8vw + 0.5rem, 5.5rem);
    line-height: 0.92;
    margin: 1rem 0 1.4rem;
    text-transform: uppercase;
  }
  .hero-spotlight--march .hero-title-script {
    display: block;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    text-transform: none;
    font-size: 0.42em;
    letter-spacing: 0;
    line-height: 1;
    margin: 0.18em 0 0.18em 0.05em;
    color: var(--ink);
  }

  .hero-route-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: var(--cream-elev);
    border: 2px solid var(--ink);
    border-radius: 999px;
    padding: 0.35rem 1.1rem 0.35rem 0.4rem;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink);
    box-shadow: 0 3px 0 0 var(--ink);
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: transform 180ms cubic-bezier(.2,.6,.2,1),
                box-shadow 180ms cubic-bezier(.2,.6,.2,1),
                background 180ms;
  }
  a.hero-route-pill:hover {
    background: var(--svre-surface-0);
    transform: translateY(-1px);
    box-shadow: 0 4px 0 0 var(--ink);
    color: var(--ink);
  }
  a.hero-route-pill:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 0 var(--ink);
  }
  .hero-route-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: var(--svre-orange);
    color: var(--cream);
    border-radius: 50%;
    flex: 0 0 auto;
  }
  .hero-route-arrow {
    color: rgba(12, 22, 34, 0.45);
    flex: 0 0 auto;
  }
  .hero-route-label { white-space: nowrap; }

  /* =========================
     Stats band — bigger yellow display numbers per design.
     Existing .stats / .stats-inner / .stat keep their dark-teal frame, but
     the number scale and 3-up grid feel come from the design's StatsBand.
     ========================= */
  .stats-inner.stats-band {
    grid-template-columns: repeat(4, 1fr);
    background: transparent;
    gap: 1.5rem;
    padding: 1rem 0;
  }
  .stats-band .stat {
    background: transparent;
    text-align: center;
    padding: 0.75rem 0.25rem;
    position: relative;
  }
  .stats-band .stat::before,
  .stats-band .stat:last-child::after {
    content: '';
    position: absolute;
    top: 12%;
    bottom: 12%;
    width: 1px;
    background: rgba(245, 232, 199, 0.22);
    pointer-events: none;
  }
  .stats-band .stat::before { left: -0.75rem; }
  .stats-band .stat:last-child::after { right: -0.75rem; }
  .stats-band .stat-number {
    font-size: clamp(2.4rem, 5vw + 0.5rem, 4.25rem);
    color: var(--svre-yellow);
    line-height: 0.95;
    letter-spacing: -0.02em;
  }
  .stats-band .stat-label {
    color: var(--cream);
    text-transform: none;
    letter-spacing: 0;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 1.35;
    margin: 0.6rem auto 0;
    max-width: 22ch;
  }
  .stats.stats--design {
    padding: 3rem 1.5rem 3.25rem;
  }
  .community-alert-row {
    display: flex;
    justify-content: flex-start;
    max-width: 1200px;
    margin: 0 auto 1.75rem;
    padding-left: 1.5rem;
  }
  .community-alert-badge {
    display: inline-block;
    background: var(--svre-orange);
    color: #fff;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.6rem 1.5rem;
    border-radius: 999px;
    line-height: 1;
  }
  .stats.stats--design .stats-band {
    max-width: 1200px;
  }
  @media (max-width: 900px) {
    .stats-inner.stats-band { grid-template-columns: repeat(2, 1fr); }
    .stats-band .stat:nth-child(odd)::before { display: none; }
    .stats-band .stat:last-child::after { display: none; }
  }
  @media (max-width: 520px) {
    .stats-inner.stats-band { grid-template-columns: 1fr; }
    .community-alert-row {
      justify-content: center;
      padding-left: 0;
      padding-right: 0;
    }
    .stats-band .stat:last-child::after { display: none; }
    .stats-band .stat:not(:first-child)::before {
      display: block;
      top: auto;
      bottom: auto;
      left: 12%;
      right: 12%;
      width: auto;
      height: 1px;
      transform: translateY(-0.75rem);
    }
  }

  /* =========================
     How to Help — three numbered cards (01/02/03), middle highlighted.
     ========================= */
  .help-section { padding: 4rem 1.5rem; }
  .help-section .help-inner { max-width: 1200px; margin: 0 auto; }
  .help-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
  }
  @media (max-width: 900px) { .help-row { grid-template-columns: 1fr; } }
  .help-card {
    background: var(--cream-elev);
    border: 2px solid var(--ink);
    border-radius: 20px;
    box-shadow: 0 4px 0 0 var(--ink);
    padding: 1.75rem 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    transition: transform 200ms cubic-bezier(.2,.6,.2,1), box-shadow 200ms;
  }
  .help-card:hover { transform: translateY(-2px); box-shadow: 0 6px 0 0 var(--ink); }
  .help-card.highlight { background: var(--svre-yellow); }
  .help-step {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 2.5rem;
    line-height: 1;
    color: var(--ink);
    letter-spacing: -0.01em;
  }
  .help-card h3 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.4rem;
    line-height: 1.2;
    color: var(--ink);
    margin: 0;
    text-transform: none;
  }
  .help-card p {
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--ink);
    margin: 0;
  }
  .help-card .help-cta {
    margin-top: auto;
    align-self: flex-start;
  }

  /* =========================
     Newsletter signup — dark teal band with tribal-deco strip + pill form.
     ========================= */
  .signup-band {
    position: relative;
    overflow: hidden;
    background: var(--svre-teal-900);
    color: var(--cream);
    padding: 4rem 1.5rem 4.25rem;
  }
  .signup-band::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    height: 48px;
    background-image: url("../design-system/assets/illustrations/Tribal-Deco-White.svg");
    background-repeat: repeat-x;
    background-position: center;
    background-size: contain;
    opacity: 0.55;
    pointer-events: none;
  }
  .signup-band .signup-inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2.5rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
  }
  @media (max-width: 900px) {
    .signup-band .signup-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  }
  .signup-band .signup-eyebrow {
    color: var(--svre-yellow);
    margin-bottom: 0.5rem;
  }
  .signup-band .signup-title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2rem, 3.5vw + 0.75rem, 3rem);
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: -0.005em;
    color: var(--cream);
    margin: 0 0 0.65rem;
  }
  .signup-band .signup-title .y { color: var(--svre-yellow); }
  .signup-band .signup-lead {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1.05rem;
    line-height: 1.55;
    color: #cfc2a5;
    max-width: 48ch;
    margin: 0;
  }
  .signup-band .signup-form {
    display: flex;
    gap: 0.5rem;
    background: var(--cream);
    color: var(--ink);
    border-radius: 999px;
    padding: 6px;
    border: 2px solid var(--cream);
  }
  .signup-band .signup-form input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0.75rem 1.1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--ink);
    outline: none;
    border-radius: 999px;
  }
  .signup-band .signup-form input::placeholder { color: #6b7f7f; }
  .signup-band .signup-form button {
    border: 2px solid var(--ink);
    background: var(--ink);
    color: var(--cream);
    border-radius: 999px;
    padding: 0.7rem 1.25rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 180ms, transform 180ms cubic-bezier(.2,.6,.2,1);
  }
  .signup-band .signup-form button:hover { background: var(--svre-teal-700); transform: translateY(-1px); }
  .signup-band .signup-form button:active { transform: translateY(2px); }
  .signup-band .signup-fineprint {
    font-family: var(--font-body);
    font-size: 0.78rem;
    line-height: 1.4;
    color: #8aa0a0;
    margin: 0.85rem 0 0;
  }
  .signup-band .signup-confirm {
    background: var(--svre-green);
    color: var(--cream);
    border-radius: 999px;
    padding: 0.85rem 1.4rem;
    border: 2px solid var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
  }