@font-face {
  font-family: 'Tanker';
  src: url('/fonts/tanker.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Erode';
  src: url('/fonts/erode-regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Erode';
  src: url('/fonts/erode-italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Erode';
  src: url('/fonts/erode-medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Erode';
  src: url('/fonts/erode-semibold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Mystique';
  src: url('/fonts/mystique.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Moon';
  src: url('/fonts/moon-light.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Moon';
  src: url('/fonts/moon-bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

    /* ── Reset + base ─────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; }
    html { scroll-behavior: smooth; }
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
    }
    body {
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      font-size: 1rem;
      line-height: 1.5;
      color: #282828;
      background: #ffffff;
      -webkit-font-smoothing: antialiased;
    }
    img { display: block; max-width: 100%; height: auto; }
    a { text-decoration: none; color: inherit; }

    /* Widow control — balance headings so no lone word drops to its own line,
       and let the browser avoid single-word last lines in body copy. */
    h1, h2, h3, h4, h5, h6 { text-wrap: balance; }
    p, li, figcaption, blockquote { text-wrap: pretty; }

    /* ── Tokens ───────────────────────────────────────────── */
    :root {
      --blue:    #1176bc;
      --yellow:  #ffd200;
      --magenta: #a4216a;
      --dark:    #282828;
      --white:   #ffffff;
      --off:     #f4f6f8;

      /* ── Spacing scale — 8pt grid ─────────────────────────── */
      --space-1:  0.25rem;  /* 4  */
      --space-2:  0.5rem;   /* 8  */
      --space-3:  0.75rem;  /* 12 */
      --space-4:  1rem;     /* 16 */
      --space-5:  1.25rem;  /* 20 */
      --space-6:  1.5rem;   /* 24 */
      --space-8:  2rem;     /* 32 */
      --space-12: 3rem;     /* 48 */
      --space-16: 4rem;     /* 64 */
      --space-24: 6rem;     /* 96 */
      --space-32: 8rem;     /* 128 */

      /* ── Semantic vertical rhythm (relationship-based) ────── */
      --flow-heading-sub: var(--space-4);   /* 16 — heading → its own subhead (tight = grouped) */
      --flow-sub-body:    var(--space-6);    /* 24 — heading block → body (biggest in-content break) */
      --flow-body:        var(--space-5);    /* 20 — between body blocks (tighter than the heading break) */
      --flow-group:       var(--space-12);   /* before a new sub-group (lockups, etc.) */
      --section-padding-y: var(--space-24);  /* section top/bottom */
      --container-padding: var(--space-8);   /* page side gutter */

      /* ── Type scale — 1.25 modular for display; fixed comfortable body ── */
      --text-xs:    0.75rem;    /* 12 — micro labels / eyebrows */
      --text-sm:    0.875rem;   /* 14 — fine print / notes */
      --text-base:  1rem;       /* 16 — UI default */
      --text-body:  1.125rem;   /* 18 — reading body */
      --text-h3:    clamp(1.25rem, 1.6vw, 1.375rem);   /* 20–22 */
      --text-h2-sm: clamp(1.75rem, 3vw, 2.441rem);     /* 28–39 — sentence-length H2 */
      --text-h2:    clamp(1.953rem, 3.5vw, 3.052rem);  /* 31–49 — section H2 */
      --text-display: clamp(3.052rem, 9vw, 4.768rem);  /* hero / display */

      /* ── Line-height ──────────────────────────────────────── */
      --lh-heading: 1.15;
      --lh-body:    1.6;

      /* ── Containers ───────────────────────────────────────── */
      --container-max:   1364px;
      --container-prose: 66ch;

      /* ── Headline typeface (one knob for every section headline) ── */
      --font-display: 'Poppins', sans-serif;
      --font-display-weight: 700;
    }

    /* ── HEADER ───────────────────────────────────────────── */
    .site-header {
      position: fixed;
      top: 2.25rem; left: 0; right: 0; /* sits below the top bar; snaps to 0 on scroll */
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
      padding: 1rem 2rem;
      background: transparent;
      transition: top 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
    }
    /* Top scrim — extends well below the bar so the fade is gradual, not abrupt.
       Sits behind the logo/nav; fades out once the header turns solid on scroll. */
    .site-header::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 220px;
      background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.20) 0%,
        rgba(0,0,0,0.10) 45%,
        rgba(0,0,0,0) 100%
      );
      pointer-events: none;
      z-index: -1;
      transition: opacity 0.3s ease;
    }
    /* Solid blue background once scrolled past the hero top */
    .site-header.scrolled {
      top: 0;
      background: var(--blue);
      box-shadow: 0 2px 16px rgba(0,0,0,0.25);
    }
    .site-header.scrolled::after { opacity: 0; }

    /* ── TOP BAR (beneficiary) — slides away on scroll ─────── */
    .top-bar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 150;
      height: 2.25rem;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 1rem;
      background: var(--magenta);
      color: #fff;
      text-decoration: none;
      font-family: 'Inter', system-ui, sans-serif;
      font-weight: 600;
      font-size: 0.95rem;
      letter-spacing: 0.01em;
      white-space: nowrap;
      transition: transform 0.3s ease;
    }
    .top-bar strong { font-weight: 700; }
    .top-bar:hover .top-bar-label { text-decoration: underline; }
    .top-bar.is-hidden { transform: translateY(-100%); }
    .top-bar-short { display: none; }
    @media (max-width: 600px) {
      .top-bar { font-size: 0.95rem; font-weight: 700; letter-spacing: 0.015em; }
      .top-bar-full { display: none; }
      .top-bar-short { display: inline; }
    }
    /* Logo anchored top-left, sized to break out below the bar on scroll */
    .header-logo {
      position: absolute;
      top: 0.75rem;
      left: 2rem;
      display: flex;
      align-items: flex-start;
      color: var(--white);
    }
    .header-logo-img {
      height: 5.625rem;       /* intentionally overflows the header */
      width: auto;
      filter: drop-shadow(0 5px 14px rgba(0,0,0,0.45));
    }
    .header-logo-text { display: none; }
    /* Push nav + CTAs into a cluster on the right, logo stays left */
    .site-header nav { margin-left: auto; }
    .site-nav {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      list-style: none;
    }
    .site-nav a {
      font-family: var(--font-display);
      color: rgba(255,255,255,0.9);
      font-size: 1rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      font-weight: 600;
      transition: color 0.2s;
    }
    .site-nav a:hover { color: var(--yellow); }
    .header-ctas {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-left: 1.5rem;   /* extra breathing room between nav and buttons */
    }
    .btn {
      font-family: var(--font-display);
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.625rem 1.375rem;
      border-radius: 0.25rem;
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      transition: transform 0.15s, box-shadow 0.15s;
      cursor: pointer;
    }
    .btn-outline {
      border: 2px solid rgba(255,255,255,0.75);
      color: var(--white);
      background: transparent;
      box-shadow: 3px 3px 0 rgba(255,255,255,0.2);
    }
    .btn-outline:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 rgba(255,255,255,0.3); }
    .btn-primary {
      background: var(--magenta);
      color: var(--white);
      border: 2px solid var(--magenta);
      box-shadow: 3px 3px 0 var(--yellow);
    }
    .btn-primary:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 var(--yellow); }

    /* ── HERO ─────────────────────────────────────────────── */
    .hero {
      position: relative;
      height: 100vh;
      min-height: 600px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      align-items: center;
      overflow: hidden;
      color: var(--white);
    }
    .hero-video-wrap {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
      background: var(--dark);
    }
    .hero-video-wrap iframe {
      position: absolute;
      top: 50%;
      left: 50%;
      /* Cover viewport at 16:9 */
      width: 100vw;
      height: 56.25vw;
      min-height: 100vh;
      min-width: 177.78vh;
      transform: translate(-50%, -50%);
      border: none;
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to top,
        rgba(0,0,0,0.92) 0%,
        rgba(0,0,0,0.75) 35%,
        rgba(0,0,0,0.25) 65%,
        rgba(0,0,0,0.05) 100%
      );
    }
    .hero-treeline {
      position: absolute;
      bottom: -1px;            /* hairline overlap to avoid a seam */
      left: 0;
      width: 100%;
      height: auto;
      pointer-events: none;
      user-select: none;
      z-index: 1;
    }
    /* Falling-ducks layer — all the way forward, over the text lockup
       (pointer-events:none keeps the buttons clickable underneath) */
    .hero-ducks {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
      z-index: 3;
    }
    .falling-duck {
      position: absolute;
      top: 0;
      left: 0;
      width: 48px;
      height: auto;
      will-change: transform, opacity;
      filter: drop-shadow(0 6px 10px rgba(0,0,0,0.35));
    }
    .hero-content {
      position: relative;
      z-index: 2;              /* keep text + buttons above the tree line */
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      max-width: 1100px;
      /* Anchored low: sits above the tree line with breathing room */
      padding: 6rem 2rem calc(8.3vw + 4.5rem);
    }
    /* Eyebrow — variable "Nth Annual" label from settings */
    .hero-eyebrow {
      display: block;
      font-family: 'Moon', sans-serif;
      font-weight: 700;
      font-size: clamp(0.9rem, 1.4vw, 1.25rem);
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: clamp(0.25rem, 0.6vw, 0.5rem);
    }
    /* Main logo lockup (replaces the H1 text) */
    .hero-logo {
      margin: 0;
      width: min(88vw, 720px);
      line-height: 0;
    }
    .hero-logo img { width: 100%; height: auto; }
    /* Event date — Moon, in the brand yellow like the source graphic */
    .hero-date {
      font-family: 'Moon', sans-serif;
      font-weight: 700;
      font-size: clamp(1.25rem, 2.4vw, 2rem);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--yellow);
      margin-top: clamp(0.25rem, 0.6vw, 0.5rem);
    }
    .hero-beneficiary {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      margin-top: 1.25rem;
    }
    .hero-beneficiary img {
      height: 5rem;
      width: auto;
      flex-shrink: 0;
    }
    .hero-beneficiary p {
      text-align: left;
      max-width: 24ch;
      font-size: 0.95rem;
      font-weight: 700;
      line-height: 1.4;
      color: rgba(255,255,255,0.85);
    }
    /* Mobile: stack the beneficiary lockup and center it under the date. */
    @media (max-width: 600px) {
      .hero-beneficiary { flex-direction: column; gap: 0.65rem; }
      .hero-beneficiary img { height: 4rem; }
      .hero-beneficiary p { text-align: center; max-width: 34ch; }
      /* Lift the hero lockup up off the bottom a little (still bottom-anchored). */
      .hero-content { padding-bottom: calc(8.3vw + 4.5rem + 8vh); }
      /* Center the intro text + CTAs on mobile. */
      .intro-grid > div:first-child { text-align: center; }
      .intro-ctas { justify-content: center; }
      .intro-ctas .btn-hero-primary,
      .intro-ctas .btn-hero-secondary-dark { text-align: center; justify-content: center; }
    }
    /* Pre-animation state — only when motion is welcome; GSAP reveals these.
       Reduced-motion users never hit this rule, so they see the lockup normally. */
    @media (prefers-reduced-motion: no-preference) {
      .hero-content > * { opacity: 0; }
    }
    .btn-hero-primary {
      font-family: var(--font-display);
      background: var(--magenta);
      color: var(--white);
      padding: 0.875rem 2.25rem;
      border-radius: 0.25rem;
      border: 2px solid var(--magenta);
      font-size: 1.05rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      box-shadow: 4px 4px 0 var(--yellow);
      transition: transform 0.15s, box-shadow 0.15s;
    }
    .btn-hero-primary:hover { transform: translate(-3px,-3px); box-shadow: 7px 7px 0 var(--yellow); }
    .btn-hero-secondary {
      font-family: var(--font-display);
      background: transparent;
      color: var(--white);
      border: 2px solid rgba(255,255,255,0.65);
      padding: 0.875rem 2.25rem;
      border-radius: 0.25rem;
      font-size: 1.05rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      box-shadow: 4px 4px 0 rgba(255,255,255,0.2);
      transition: transform 0.15s, box-shadow 0.15s, border-color 0.2s;
    }
    .btn-hero-secondary:hover { transform: translate(-3px,-3px); box-shadow: 7px 7px 0 rgba(255,255,255,0.35); border-color: white; }
    /* Dark-outline secondary — same button language, for light backgrounds */
    .btn-hero-secondary-dark {
      font-family: var(--font-display);
      background: transparent;
      color: var(--dark);
      border: 2px solid var(--dark);
      padding: 0.875rem 2.25rem;
      border-radius: 0.25rem;
      font-size: 1.05rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      box-shadow: 4px 4px 0 rgba(40,40,40,0.2);
      transition: transform 0.15s, box-shadow 0.15s;
    }
    .btn-hero-secondary-dark:hover { transform: translate(-3px,-3px); box-shadow: 7px 7px 0 rgba(40,40,40,0.35); }

    /* Intro CTA row — replaces the old BGC lockup */
    .intro-ctas {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      margin-top: var(--flow-group);
    }

    /* ── SECTION SHELLS ───────────────────────────────────── */
    .section {
      padding: var(--section-padding-y) var(--container-padding);
    }
    /* Continuation of the same-colored area above → don't re-add top padding;
       the previous section's bottom padding already sets a single 96px seam.
       (Without this, two stacked sections double up to 192px of dead space.) */
    .section--flush-top { padding-top: 0; }
    .section-inner {
      max-width: var(--container-max);
      margin: 0 auto;
    }
    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 1.25rem;
    }

    /* ── INTRO ────────────────────────────────────────────── */
    .intro { background: var(--white); }
    /* Eagle sponsors — centered "brought to you by" lockup at the top of intro */
    .eagle-band {
      text-align: center;
      margin-bottom: clamp(4rem, 10vw, 9rem);   /* room for the perched duck below */
    }
    .eagle-eyebrow {
      font-size: var(--text-sm);
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: var(--space-6);
    }
    .eagle-logos {
      list-style: none;
      margin: 0;
      padding: 0;            /* reset <ul> default 40px inline-start (was shifting logos right) */
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: clamp(1rem, 3vw, 2rem) clamp(2rem, 5vw, 4.5rem);  /* tighter row gap, roomy column gap */
    }
    .eagle-logos a {
      display: inline-flex;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }
    .eagle-logos a:hover { transform: translateY(-3px); opacity: 0.8; }
    .eagle-logos img {
      height: clamp(64px, 7vw, 90px);
      width: auto;
      object-fit: contain;
    }
    .intro { position: relative; }
    /* Blue mountain ridge — sits flush above the blue data strip (transparent
       sky shows the white section above; blue grass meets the data strip). */
    .ridge-divider {
      display: block;
      width: 100%;
      height: auto;
      margin-bottom: -1px;   /* kill the seam against the data strip */
    }
    .intro-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
    }
    /* Script accent (Mystique) — warm hand-lettered lead-in, reusable */
    .script-eyebrow {
      font-family: 'Mystique', cursive;
      font-weight: 400;
      font-size: clamp(1.75rem, 2.8vw, 2.5rem);
      line-height: 1;
      color: var(--blue);
      margin-bottom: var(--space-3);
    }
    /* Shared section lead headline — uses --font-display (Poppins), large, Title Case */
    .section-headline {
      font-family: var(--font-display);
      font-size: clamp(2rem, 3.6vw, 3rem);
      font-weight: var(--font-display-weight);
      line-height: var(--lh-heading);
      letter-spacing: 0.01em;
      text-transform: capitalize;
      color: var(--dark);
      margin-bottom: var(--flow-heading-sub);   /* tight → groups with the subhead */
      text-wrap: pretty;   /* prevent text widows */
    }
    .section-headline em {
      color: var(--blue);
      font-style: normal;
    }
    /* "Three Steps" — Poppins, blue, larger, on its own line above the headline line */
    .how-script {
      display: block;
      font-family: var(--font-display);
      font-weight: var(--font-display-weight);
      font-size: 1.5em;
      line-height: 1.05;
      color: var(--blue);
      margin-bottom: 0.25rem;
    }
    /* Centered section header (eyebrow + headline) */
    .section-head--center { text-align: center; }
    .section-head--center .script-eyebrow { margin-bottom: var(--space-2); }
    /* H3 — Inter 700 per the type rule (Tanker is reserved for H1/H2) */
    .intro-subhead {
      font-family: 'Inter', system-ui, sans-serif;
      font-weight: 700;
      font-size: var(--text-h3);
      line-height: 1.35;
      color: var(--dark);
      margin-bottom: var(--flow-sub-body);       /* heading block → body */
    }
    .intro-body {
      font-size: var(--text-body);
      line-height: var(--lh-body);
      color: #555;
      max-width: var(--container-prose);          /* keep copy at a readable measure */
      margin-bottom: var(--flow-body);
    }
    .bgc-lockup {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1rem 1.25rem;
      border: 2px solid var(--blue);
      border-radius: 0.75rem;
      margin-top: var(--flow-group);
    }
    .bgc-lockup img {
      height: 2.5rem;
      width: auto;
    }
    .bgc-lockup-text {
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--blue);
      line-height: 1.3;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }
    .intro-media { position: relative; }
    .intro-media-img { position: relative; }
    .intro-image {
      width: 100%;
      height: auto;          /* shown in full — no crop */
      border-radius: 1rem;
    }
    /* Dropping duck straddling the image's top-center edge (half in / half out) */
    .intro-duck {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translate(-50%, -50%);   /* fallback centering (GSAP uses xPercent/yPercent) */
      width: clamp(110px, 13vw, 180px);
      height: auto;
      filter: drop-shadow(0 10px 16px rgba(0,0,0,0.3));
      pointer-events: none;
      z-index: 2;
    }

    /* ── EVENT DATA STRIP ─────────────────────────────────── */
    .data-strip {
      background: var(--blue);
      color: var(--white);
      padding: 3rem 2rem;
    }
    .data-strip-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: rgba(255,255,255,0.15);
    }
    .data-item {
      padding: 1.5rem 2rem;
      background: var(--blue);
      text-align: center;
    }
    .data-label {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.6);
      margin-bottom: 0.5rem;
    }
    .data-value {
      font-size: 1.25rem;
      font-weight: 700;
      line-height: 1.2;
    }
    .data-value.large { font-size: 1.75rem; }
    /* "Presented by" — Northcape white logo in place of the text */
    .data-logo {
      height: 3.75rem;
      width: auto;
      max-width: 100%;
      margin: 0.25rem auto 0;   /* center the block logo in its column */
    }

    /* ── HOW IT WORKS ─────────────────────────────────────── */
    .how { background: var(--blue); position: relative; }

    /* ── HOW IT WORKS — immersive video moment ─────────────── */
    .how--immersive {
      min-height: 100svh;
      display: flex;
      align-items: center;
      overflow: hidden;
      isolation: isolate;
      padding-block: clamp(4rem, 8vh, 7rem);
    }
    .how-bg-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -2;
    }
    .how-bg-scrim {
      position: absolute;
      inset: 0;
      z-index: -1;
      background: linear-gradient(
        180deg,
        rgba(7,38,66,0.78) 0%,
        rgba(7,38,66,0.45) 32%,
        rgba(7,38,66,0.55) 68%,
        rgba(7,38,66,0.85) 100%
      );
    }
    .how-immersive-inner { position: relative; z-index: 1; width: 100%; }
    .how--immersive .section-head--center { margin-bottom: clamp(2rem, 4vh, 3.25rem); }

    .how-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: clamp(1.25rem, 2.5vw, 2rem);
      align-items: stretch;
    }
    .how-card {
      display: flex;
      flex-direction: column;
      background: var(--white);
      border-radius: 1.25rem;
      overflow: hidden;
      box-shadow: 0 24px 60px rgba(0,0,0,0.35);
    }
    .how-card-media { position: relative; }
    .how-card-img {
      display: block;
      width: 100%;
      aspect-ratio: 1 / 1;
      object-fit: cover;
    }
    .how-card-num {
      position: absolute;
      top: 0.85rem;
      left: 0.85rem;
      width: 2.1rem;
      height: 2.1rem;
      display: grid;
      place-items: center;
      border-radius: 9999px;
      background: var(--magenta);
      color: #fff;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1rem;
      box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    }
    .how-card-text { padding: clamp(1.1rem, 2vw, 1.5rem); }
    .how-card-title {
      font-family: var(--font-display);
      font-weight: var(--font-display-weight);
      font-size: clamp(1.15rem, 1.5vw, 1.4rem);
      color: var(--blue);
      margin-bottom: 0.4rem;
    }
    .how-card-body {
      font-size: var(--text-body);
      line-height: var(--lh-body);
      color: #555;
    }
    @media (prefers-reduced-motion: reduce) {
      .how-bg-video { display: none; }
      .how--immersive {
        background: var(--blue) center / cover no-repeat;
        background-image: url("/images/duck-drop-loop-poster.jpg");
      }
    }
    @media (max-width: 860px) {
      /* Mobile: the video plays as a banner behind the heading and fades into
         the section's blue; the cards then stack below on blue, so the video
         is showcased instead of being completely covered by the cards. */
      .how--immersive { display: block; min-height: auto; padding-block: 0; }
      .how-immersive-inner { display: block; }
      .how-bg-video { height: 46vh; min-height: 300px; }
      .how-bg-scrim {
        height: 46vh;
        min-height: 300px;
        background: linear-gradient(
          180deg,
          rgba(7,38,66,0.55) 0%,
          rgba(7,38,66,0.20) 45%,
          rgba(17,118,188,0.90) 82%,
          var(--blue) 100%
        );
      }
      .how--immersive .section-head--center {
        min-height: 46vh;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0;
        padding: 4.5rem 1.25rem 1.75rem;
      }
      .how--immersive .how-script { font-size: 1.3em; }
      .how-cards {
        grid-template-columns: 1fr;
        max-width: 26rem;
        margin-inline: auto;
        padding: clamp(1.75rem, 6vw, 2.5rem) 1.25rem clamp(3rem, 9vw, 4rem);
      }
    }
    /* Header sits on the blue ground → white (cards stay white below). */
    .how .section-label,
    .how .how-script,
    .how .section-headline { color: var(--white); }
    /* Falling-ducks layer for the steps section (clipped to the section) */
    .how-ducks {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
      z-index: 3;
    }
    .how-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 5rem;   /* extra room for the numbers that break out above the cards */
    }
    .step {
      background: var(--white);
      border-radius: 1rem;
      padding: 2.5rem 2rem;
      position: relative;
      overflow: visible;     /* let the number break out of the card */
    }
    .step::before {
      content: attr(data-num);
      position: absolute;
      top: -2.25rem;
      right: 1.5rem;
      font-family: 'Mystique', cursive;
      font-size: 6rem;
      font-weight: 400;
      color: var(--yellow);
      line-height: 1;
      opacity: 1;
    }
    .step-title {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: var(--font-display-weight);
      margin-bottom: 0.75rem;
      color: var(--blue);
    }
    .step-body { color: #666; line-height: 1.6; }

    /* ── OUR CAUSE ────────────────────────────────────────── */
    .cause {
      position: relative;
      background-color: var(--dark);
      color: var(--white);
      overflow: hidden;
      isolation: isolate;
    }
    /* Kids photo as a dark duotone in the charcoal tone, behind the content */
    .cause::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 0;
      background: url('/images/kids-making-hand-hearts.jpg') center / cover no-repeat;
      filter: grayscale(1) contrast(1.1) brightness(0.5);
      opacity: 0.4;
    }
    .cause .section-inner { position: relative; z-index: 1; }
    .cause .section-label { color: var(--yellow); }
    .cause-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
    }
    .cause-headline {
      font-family: var(--font-display);
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: var(--font-display-weight);
      line-height: 1.15;
      letter-spacing: 0.01em;
      margin-bottom: 1.5rem;
      color: var(--white);
    }
    .cause-headline em { color: var(--yellow); font-style: normal; }
    .cause-body { color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 2rem; }
    .stats-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
    }
    .stat {
      padding: 1.5rem;
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 0.75rem;
    }
    .stat-number {
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--yellow);
      line-height: 1;
      margin-bottom: 0.25rem;
    }
    .stat-label {
      font-size: 0.8rem;
      font-weight: 600;
      color: rgba(255,255,255,0.6);
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    /* ── BUY DUCKS ────────────────────────────────────────── */
    .buy { background: var(--yellow); }
    .buy-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 3rem;
      flex-wrap: wrap;
    }
    .buy-text { max-width: 500px; }
    .buy-headline {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: var(--font-display-weight);
      line-height: 1.1;
      color: var(--dark);
      margin-bottom: 1rem;
    }
    .buy-body { color: rgba(40,40,40,0.75); line-height: 1.6; }
    .buy-note {
      margin-top: 0.75rem;
      font-size: 0.8rem;
      color: rgba(40,40,40,0.55);
      font-style: italic;
    }
    /* Large primary CTA — same header convention, hero-scale (currently unused). */
    .btn-buy {
      font-family: var(--font-display);
      font-weight: 600;
      background: var(--magenta);
      color: var(--white);
      border: 2px solid var(--magenta);
      padding: 1rem 2.5rem;
      border-radius: 0.25rem;
      font-size: 1.125rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      white-space: nowrap;
      flex-shrink: 0;
      box-shadow: 4px 4px 0 var(--yellow);
      transition: transform 0.15s ease, box-shadow 0.15s ease;
    }
    .btn-buy:hover { transform: translate(-3px,-3px); box-shadow: 7px 7px 0 var(--yellow); }

    /* ── PRIZES (native horizontal scroll strip) ──────────── */
    .prizes { background: var(--white); }
    .prizes-pin {
      padding: var(--section-padding-y) 0;
      display: flex;
      flex-direction: column;
      gap: 2.5rem;
    }
    .prizes-head { text-align: center; padding: 0 var(--container-padding); }
    .prize-hint {
      display: block;
      text-align: center;
      margin-top: var(--space-3);
      font-size: var(--text-sm);
      letter-spacing: 0.04em;
      color: #999;
    }
    .prize-hscroll {
      display: flex;
      gap: 1.75rem;
      padding: 0.5rem 8vw 1.5rem;
      align-items: stretch;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      cursor: grab;
      overscroll-behavior-x: contain;   /* don't let sideways scroll bleed to the page */
    }
    .prize-hscroll.is-dragging { cursor: grabbing; }
    .prize-hscroll::-webkit-scrollbar { height: 8px; }
    .prize-hscroll::-webkit-scrollbar-track { background: transparent; }
    .prize-hscroll::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.18); border-radius: 999px; }
    /* Big image-forward card with text overlaid on the photo */
    .prize-card-lg {
      position: relative;
      flex: 0 0 auto;
      width: clamp(340px, 37vw, 540px);
      height: 60vh;
      border-radius: 1.25rem;
      overflow: hidden;
      background: var(--off);
      box-shadow: 0 24px 60px rgba(0,0,0,0.18);
      scroll-snap-align: center;
    }
    .prize-card-lg .prize-photo { width: 100%; height: 100%; object-fit: cover; }
    .prize-card-lg .prize-card-ph {
      position: absolute; inset: 0; margin: auto;
      width: 38%; height: auto; opacity: 0.45;
    }
    /* gradient scrim so overlaid text stays legible */
    .prize-card-lg::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.35) 35%, transparent 65%);
    }
    .prize-card-lg-body {
      position: absolute;
      left: 0; right: 0; bottom: 0;
      z-index: 1;
      padding: 1.75rem;
      color: var(--white);
    }
    .prize-value {
      display: inline-block;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--yellow);
      margin-bottom: 0.5rem;
    }
    .prize-title {
      font-family: var(--font-display);
      font-size: clamp(1.5rem, 2.2vw, 2.125rem);
      font-weight: var(--font-display-weight);
      line-height: 1.05;
      color: var(--white);
      margin-bottom: 0.5rem;
    }
    .prize-sponsor { font-size: 0.875rem; color: rgba(255,255,255,0.8); }

    /* ── SPONSORS ─────────────────────────────────────────── */
    .sponsors { background: var(--white); }
    .sponsors-tier { margin-bottom: 4.5rem; }
    .sponsors-tier:last-child { margin-bottom: 0; }   /* section padding handles the space below the wall */
    .sponsors-tier-label {
      font-size: 0.95rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #888;
      text-align: center;
      border-bottom: 1px solid #ddd;
      padding-bottom: 1rem;
      margin-bottom: 2.5rem;
      text-wrap: pretty;   /* prevent tier label widows */
    }
    .sponsors-tier-label.eagle { color: var(--magenta); border-color: var(--magenta); }
    /* Flex wrap + center — rows self-center and reflow at any width. The row is
       capped to the widow-safe --cols (computed per tier in index.astro) via
       max-width, so the last row never holds a single orphaned logo while flex
       still centers everything and drops to fewer columns as the screen narrows. */
    .logos-grid {
      --cell: 190px;
      --col-gap: 2.75rem;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      row-gap: clamp(1.5rem, 3vw, 2.5rem);
      column-gap: var(--col-gap);
      max-width: calc(var(--cols, 6) * var(--cell) + (var(--cols, 6) - 1) * var(--col-gap));
      margin-inline: auto;
    }
    .logos-grid:has(.logo-card.sm)    { --cell: 150px; }
    .logos-grid:has(.logo-card.eagle) { --cell: 240px; }
    /* Eagle wall: 4 across when there's room, else a clean 2x2 — never an
       orphaned 3+1 row. Explicit column counts (not flex-wrap) guarantee it. */
    .logos-grid--eagle {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 240px));
      justify-content: center;
      align-items: center;
      gap: clamp(1.75rem, 3vw, 2.75rem);
      max-width: none;
    }
    @media (max-width: 1100px) {
      .logos-grid--eagle { grid-template-columns: repeat(2, minmax(0, 240px)); }
    }
    @media (max-width: 560px) {
      .logos-grid--eagle { grid-template-columns: repeat(2, minmax(0, 150px)); gap: 1.25rem; }
    }
    /* No card chrome — each logo sits in a uniform fixed-size area on the white
       section. Logos are capped by BOTH the area's width and height via
       object-fit:contain, so none break out. */
    .logo-card {
      flex: 0 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      width: var(--cell);
      height: 6rem;
      padding: 0 0.5rem;
    }
    .logo-card.eagle { height: 8rem; }
    .logo-card.sm { height: 4.75rem; }
    .logo-card img {
      max-width: 100%;
      max-height: 100%;
      width: auto;
      height: auto;
      object-fit: contain;
    }

    /* ── BECOME A SPONSOR ─────────────────────────────────── */
    .sponsor-cta { background: var(--white); }
    .sponsor-cta-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(2rem, 5vw, 5rem);
      align-items: center;
    }
    .sponsor-cta-media img {
      width: 100%;
      height: auto;
      max-width: 460px;
      margin: 0 auto;
      display: block;
    }
    .sponsor-cta-headline {
      font-family: var(--font-display);
      font-weight: var(--font-display-weight);
      font-size: clamp(1.6rem, 2.8vw, 2.4rem);
      line-height: 1.15;
      color: var(--blue);
      margin-bottom: var(--flow-sub-body);
    }
    .sponsor-cta-body {
      font-size: var(--text-body);
      line-height: var(--lh-body);
      color: #555;
    }
    /* Sponsor resource buttons (pill CTAs → the sponsors page) */
    .sponsor-resources {
      max-width: 620px;
      margin: 3rem auto 0;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      text-align: center;
    }
    /* Default button = full magenta (header convention), centered text.
       Outline is reserved for the secondary in a side-by-side pair
       (header / hero), never for a standalone button. */
    .resource-btn {
      display: block;
      text-align: center;
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 0.95rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      background: var(--magenta);
      color: var(--white);
      border: 2px solid var(--magenta);
      border-radius: 0.25rem;
      padding: 0.8rem 1.6rem;
      box-shadow: 3px 3px 0 var(--yellow);
      transition: transform 0.15s ease, box-shadow 0.15s ease;
    }
    .resource-btn:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 var(--yellow); }
    /* Kept for markup compatibility — identical to the default now. */
    .resource-btn--primary { background: var(--magenta); color: var(--white); border-color: var(--magenta); }
    .resource-note {
      margin-top: 0.75rem;
      font-size: var(--text-sm);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #888;
    }

    /* ── SPONSOR RESOURCES STRIP (3-col CTA card) ─────────── */
    .sponsor-strip { background: var(--white); }
    .strip-box {
      background: #edf2f7;
      border: 1px solid rgba(17,118,188,0.10);
      border-radius: 1.5rem;
      padding: clamp(2rem, 4vw, 3.25rem);
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: clamp(1.75rem, 3.5vw, 3rem);
      box-shadow: 0 20px 48px rgba(17,118,188,0.18);
    }
    .strip-col {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      text-align: left;
      height: 100%;
    }
    .strip-col + .strip-col { border-left: 1px solid #dde3e8; padding-left: clamp(1.75rem, 3.5vw, 3rem); }
    /* Two zones: content grows, footer (button) pinned to the bottom so all
       three buttons line up regardless of how much copy each card holds. */
    .strip-content { flex: 1 1 auto; }
    .strip-footer { margin-top: 1.75rem; }
    .strip-title {
      font-family: var(--font-display);
      font-weight: var(--font-display-weight);
      font-size: clamp(1.25rem, 2vw, 1.6rem);
      line-height: 1.1;
      color: var(--blue);
      margin-bottom: 0.6rem;
      text-wrap: pretty;   /* prevent title widows */
    }
    .strip-text {
      font-size: 1rem;
      line-height: 1.55;
      color: #555;
      margin-bottom: 0;
      text-wrap: pretty;    /* prevent text widows */
    }
    .strip-col .resource-btn { width: 100%; }
    .strip-note {
      margin-top: 0.85rem;   /* separates the fine print from the body copy above */
      margin-bottom: 0;
      font-size: var(--text-sm);
      color: #888;
      line-height: 1.4;
    }

    /* ── FOOTER ───────────────────────────────────────────── */
    /* Footer — FooterBackground mountain as a full cover bg, text overlaid on the blue grass */
    footer {
      background: var(--blue) url('/images/FooterBackground.jpg') no-repeat top center / cover;
      color: rgba(255,255,255,0.9);
      text-align: center;
      /* top padding drops the content below the ridge onto the blue grass */
      padding: clamp(11rem, 26vw, 20rem) 2rem 3.5rem;
    }
    .footer-content {
      font-size: 0.95rem;
      line-height: 1.6;
    }
    .footer-danconia {
      width: clamp(150px, 15vw, 210px);
      height: auto;
      margin: 0 auto 0.75rem;
      display: block;
    }
    .footer-credit {
      font-size: var(--text-sm);
      color: rgba(255,255,255,0.75);
      margin-bottom: 2.5rem;
    }
    .footer-info { max-width: 760px; margin: 0 auto; }
    .footer-info strong { color: var(--white); font-weight: 700; }
    .footer-contact {
      display: flex; gap: 1.5rem; align-items: center; justify-content: center;
      margin-top: 0.75rem;
    }
    .footer-content a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
    .footer-content a:hover { color: var(--yellow); }

    /* ── MOBILE MENU + RESPONSIVE ─────────────────────────── */
    .nav-toggle {
      display: none;          /* shown ≤880px via media query */
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 44px;
      height: 44px;
      padding: 9px;
      background: transparent;
      border: none;
      cursor: pointer;
      z-index: 110;
    }
    .nav-toggle span {
      display: block;
      height: 3px;
      width: 100%;
      background: var(--white);
      border-radius: 2px;
    }
    .mobile-menu {
      position: fixed;
      inset: 0;
      z-index: 200;
      background: var(--blue);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2.5rem;
      padding: 2rem;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-12px);
      transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    }
    .mobile-menu.is-open { opacity: 1; visibility: visible; transform: none; }
    .mobile-menu-close {
      position: absolute;
      top: 1rem;
      right: 1.25rem;
      background: none;
      border: none;
      color: var(--white);
      font-size: 2.75rem;
      line-height: 1;
      cursor: pointer;
    }
    .mobile-menu-logo { width: min(24vw, 96px); height: auto; margin-bottom: 0.5rem; filter: drop-shadow(0 8px 14px rgba(0,0,0,0.25)); }
    .mobile-menu-nav {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
    }
    .mobile-menu-nav a {
      font-family: var(--font-display);
      font-weight: var(--font-display-weight);
      font-size: clamp(2rem, 9vw, 3rem);
      letter-spacing: 0.02em;
      text-transform: uppercase;
      color: var(--white);
    }
    .mobile-menu-nav a:hover { color: var(--yellow); }
    .mobile-menu-ctas {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      width: min(90vw, 320px);
    }
    .mobile-menu-ctas a { text-align: center; }

    @media (max-width: 880px) {
      .site-nav, .header-ctas { display: none; }
      .nav-toggle { display: flex; }
      .intro-grid,
      .cause-grid,
      .sponsor-cta-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .how-steps { grid-template-columns: 1fr; }
      .data-strip-grid { grid-template-columns: repeat(2, 1fr); }
      .header-logo-img { height: 4.5rem; }   /* smaller logo on phones */
      /* Eagle logos: a clean 2-up grid, bigger, centered as a tight group */
      .eagle-logos {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem 2rem;
        justify-items: center;
        align-items: center;
        max-width: 460px;
        margin-left: auto;
        margin-right: auto;
      }
      .eagle-logos img { height: clamp(64px, 20vw, 92px); }
      /* Sponsor walls on tablet/phone: smaller cells + the narrow --cols-m cap. */
      .logos-grid {
        --cell: 120px;
        --col-gap: 1.5rem;
        max-width: calc(var(--cols-m, 3) * var(--cell) + (var(--cols-m, 3) - 1) * var(--col-gap));
      }
      .logos-grid:has(.logo-card.sm)    { --cell: 104px; }
      .logos-grid:has(.logo-card.eagle) { --cell: 150px; }
      .logo-card { height: 5rem; }
      .logo-card.eagle { height: 6rem; }
      .logo-card.sm { height: 4.25rem; }
      /* clear space below the intro buttons so the perched duck isn't crowding them */
      .intro-ctas { margin-bottom: 2.5rem; }
      /* Sponsor resources strip → stack to one column, swap divider to top */
      .strip-box { grid-template-columns: 1fr; gap: 0; }
      .strip-col { text-align: center; }
      .strip-col + .strip-col {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #dde3e8;
        margin-top: 1.75rem;
        padding-top: 1.75rem;
      }
    }
    @media (max-width: 520px) {
      .data-strip-grid { grid-template-columns: 1fr; }
      .stats-grid { grid-template-columns: 1fr 1fr; }
    }

    /* ═══════════════════════════════════════════════════════════
       SUB-PAGES (sponsors / prizes / faq) — shared SiteLayout
       ═══════════════════════════════════════════════════════════ */

    /* ── Page hero banner ─────────────────────────────────────
       Blue band under the fixed header, with the same white tree-line
       transition the homepage hero uses → bleeds into white content. */
    .page-hero {
      position: relative;
      background: var(--blue);
      color: var(--white);
      overflow: hidden;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-height: 360px;
      /* generous bottom padding so the diagonal snowy slope clears the text */
      padding: 9rem 1.5rem clamp(10rem, 15vw, 13.5rem);
    }
    .page-hero-overlay {
      position: absolute;
      inset: 0;
      /* slight darken at the very top so the floating white nav stays legible */
      background: linear-gradient(to bottom, rgba(0,0,0,0.28) 0%, transparent 28%);
      pointer-events: none;
    }
    /* Diagonal snowy-slope graphic — blue top blends into the hero, white
       bottom blends into the content section below. */
    .page-hero-footer {
      position: absolute;
      bottom: -1px;
      left: 0;
      width: 100%;
      height: auto;
      pointer-events: none;
      user-select: none;
      z-index: 1;
    }
    .page-hero-content {
      position: relative;
      z-index: 2;
      max-width: 56rem;
      margin: 0 auto;
    }
    /* Mini Duck Drop wordmark crowning the page name (echoes the homepage hero) */
    .page-hero-logo {
      display: block;
      width: min(68vw, 290px);
      height: auto;
      margin: 0 auto 1.1rem;
    }
    .page-eyebrow {
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--yellow);
      margin-bottom: 1rem;
    }
    .page-title {
      font-family: var(--font-display);
      font-weight: var(--font-display-weight);
      font-size: clamp(2.4rem, 5vw, 4rem);
      line-height: 1.08;
      letter-spacing: 0.01em;
      color: var(--white);
      text-wrap: balance;
    }
    .page-lead {
      max-width: 46ch;
      margin: 1.25rem auto 0;
      font-size: 1.125rem;
      line-height: 1.6;
      color: rgba(255,255,255,0.9);
      text-wrap: pretty;
    }

    /* Sponsor-roster freshness note (shown until this year's list is final) */
    .sponsors-note {
      text-align: center;
      max-width: 58ch;
      margin: 0 auto 3.5rem;
      padding: 0.9rem 1.5rem;
      background: #fff8d6;
      border: 1px solid rgba(255,210,0,0.55);
      border-radius: 0.75rem;
      font-size: 1rem;
      line-height: 1.5;
      color: #6b5a16;
    }

    /* Sponsors page — centered "why sponsor" intro (logo removed, text pulled up) */
    .sponsor-intro-inner {
      max-width: 72ch;
      margin-inline: auto;
      text-align: center;
    }
    /* Sponsors roster — centered intro (replaces the old boxed note) */
    .sponsors-roster-intro {
      text-align: center;
      max-width: 60ch;
      margin: 0 auto 3rem;
    }
    .sponsors-roster-title {
      font-family: var(--font-display);
      font-weight: var(--font-display-weight);
      font-size: clamp(1.25rem, 2.2vw, 1.6rem);
      line-height: 1.2;
      color: var(--blue);
      margin-bottom: 0.5rem;
    }
    .sponsors-roster-text {
      font-size: var(--text-body);
      line-height: var(--lh-body);
      color: #555;
    }

    /* ── Eagle sponsor detail page ────────────────────────────── */
    .sponsor-detail-grid {
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      gap: clamp(2.5rem, 5vw, 5rem);
      align-items: center;
      max-width: var(--container-max);
      margin: 0 auto;
    }
    .sponsor-detail-logo {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: clamp(2rem, 4vw, 3.5rem);
      background: #edf2f7;
      border: 1px solid rgba(17,118,188,0.10);
      border-radius: 1.5rem;
      box-shadow: 0 20px 48px rgba(17,118,188,0.14);
    }
    .sponsor-detail-logo img { max-width: 100%; max-height: 9rem; width: auto; object-fit: contain; }
    .sponsor-detail-photo {
      width: 100%;
      height: auto;
      border-radius: 1.5rem;
      box-shadow: 0 20px 48px rgba(17,118,188,0.14);
    }
    .sponsor-detail-text {
      font-size: var(--text-body);
      line-height: var(--lh-body);
      color: #444;
      margin-bottom: 2rem;
      text-wrap: pretty;
    }
    .sponsor-detail-ctas {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 1.5rem 2rem;
    }
    .sponsor-detail-back {
      font-family: var(--font-display);
      font-weight: var(--font-display-weight);
      font-size: 0.9rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--blue);
    }
    .sponsor-detail-back:hover { color: var(--magenta); }

    /* ── Prizes page — full scannable grid of prize tiles ─────── */
    .prize-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: clamp(1.25rem, 2.5vw, 2rem);
    }
    .prize-tile {
      position: relative;
      border-radius: 1rem;
      overflow: hidden;
      aspect-ratio: 4 / 5;
      background: var(--blue);
      box-shadow: 0 14px 36px rgba(0,0,0,0.16);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .prize-tile:hover { transform: translateY(-4px); box-shadow: 0 22px 50px rgba(0,0,0,0.24); }
    .prize-tile-photo {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .prize-tile:hover .prize-tile-photo { transform: scale(1.05); }
    .prize-tile-ph {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--blue);
    }
    .prize-tile-ph img { width: 45%; opacity: 0.85; }
    .prize-tile-scrim {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.35) 42%, transparent 72%);
    }
    .prize-tile-value {
      position: absolute;
      top: 1rem;
      left: 1rem;
      background: var(--yellow);
      color: var(--dark);
      font-family: var(--font-display);
      font-weight: var(--font-display-weight);
      font-size: 0.9rem;
      letter-spacing: 0.02em;
      padding: 0.35rem 0.75rem;
      border-radius: 9999px;
    }
    .prize-tile-body {
      position: absolute;
      inset: auto 0 0 0;
      padding: 1.25rem 1.35rem 1.4rem;
      color: var(--white);
      z-index: 1;
    }
    .prize-tile-title {
      font-family: var(--font-display);
      font-weight: var(--font-display-weight);
      font-size: 1.2rem;
      line-height: 1.2;
      color: var(--white);
      text-wrap: pretty;
    }
    .prize-tile-donor {
      margin-top: 0.4rem;
      font-size: 0.8rem;
      letter-spacing: 0.02em;
      color: rgba(255,255,255,0.82);
    }

    /* ── FAQ page — native disclosure accordion ───────────────── */
    .faq-list { max-width: 48rem; margin: 0 auto; }
    .faq-item { border-bottom: 1px solid #e2e8ef; }
    .faq-item:first-child { border-top: 1px solid #e2e8ef; }
    .faq-question {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
      padding: 1.5rem 0.25rem;
      cursor: pointer;
      list-style: none;
      font-family: var(--font-display);
      font-weight: var(--font-display-weight);
      font-size: clamp(1.05rem, 1.7vw, 1.25rem);
      line-height: 1.3;
      color: var(--blue);
      transition: color 0.2s ease;
    }
    .faq-question::-webkit-details-marker { display: none; }
    .faq-question:hover { color: var(--magenta); }
    /* + / − toggle icon */
    .faq-icon {
      position: relative;
      flex: 0 0 auto;
      width: 1.1rem;
      height: 1.1rem;
    }
    .faq-icon::before,
    .faq-icon::after {
      content: '';
      position: absolute;
      background: currentColor;
      transition: transform 0.25s ease, opacity 0.25s ease;
    }
    .faq-icon::before { top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-50%); }
    .faq-icon::after  { left: 50%; top: 0; width: 2px; height: 100%; transform: translateX(-50%); }
    .faq-item[open] .faq-icon::after { transform: translateX(-50%) scaleY(0); opacity: 0; }
    .faq-answer {
      padding: 0 0.25rem 1.6rem;
      max-width: 60ch;
    }
    .faq-answer p {
      margin: 0;
      font-size: var(--text-body);
      line-height: var(--lh-body);
      color: #4a4a4a;
      text-wrap: pretty;
    }

    /* ── Sub-page responsive ──────────────────────────────────── */
    @media (max-width: 880px) {
      .page-hero { padding-top: 7.5rem; min-height: 300px; }
      .sponsor-detail-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .sponsor-detail-media { max-width: 26rem; margin: 0 auto; }
    }

    /* ── CONTACT page ─────────────────────────────────────────── */
    .contact-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: clamp(1.5rem, 3vw, 2.5rem);
    }
    .contact-card {
      background: var(--white);
      border: 1px solid rgba(17,118,188,0.12);
      border-radius: 1rem;
      padding: clamp(1.75rem, 3vw, 2.5rem);
      box-shadow: 0 16px 40px rgba(17,118,188,0.10);
      text-align: center;
    }
    .contact-card-name {
      font-family: var(--font-display);
      font-weight: var(--font-display-weight);
      font-size: clamp(1.1rem, 1.6vw, 1.35rem);
      line-height: 1.25;
      color: var(--blue);
      margin-bottom: 1rem;
    }
    .contact-card-name a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
    .contact-card-name a:hover { color: var(--magenta); text-decoration: underline; }
    .contact-card-body {
      font-style: normal; /* override <address> default italic */
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
      font-size: var(--text-body);
      line-height: var(--lh-body);
      color: #555;
    }
    .contact-card-body .contact-link { margin-top: 0.15rem; }
    .contact-link {
      color: var(--blue);
      font-weight: 600;
      text-decoration: none;
      transition: color 0.2s ease;
    }
    .contact-link:hover { color: var(--magenta); text-decoration: underline; }
    @media (max-width: 768px) {
      .contact-grid { grid-template-columns: 1fr; max-width: 28rem; margin-inline: auto; }
    }
