/* Rich for SD25 — shared stylesheet (base + media + endorsements + press) */

    :root {
      --navy: #062653;
      --navy-dark: #031a3a;
      --gold: #c9932e;
      --gold-light: #e7c56f;
      --red: #d30a3a;
      --red-dark: #b90831;
      --yellow: #ffde2e;
      --white: #ffffff;
      --cream: #f7f4ee;
      --text: #152033;
      --muted: #5d6678;
      --shadow: 0 18px 50px rgba(3, 26, 58, 0.18);
      --shadow-sm: 0 12px 34px rgba(3, 26, 58, 0.08);
      --radius: 24px;
      --header-height: 92px;
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      background: var(--cream);
      color: var(--text);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    button { font: inherit; }

    /* Anchor scroll offset so jump links don't hide under the sticky header */
    section[id] { scroll-margin-top: calc(var(--header-height) + 16px); }

    .container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

    /* Skip link for keyboard users */
    .skip-link {
      position: absolute;
      left: -9999px;
      top: 0;
      background: var(--navy);
      color: var(--white);
      padding: 12px 16px;
      z-index: 5000;
      font-weight: 900;
    }
    .skip-link:focus { left: 8px; top: 8px; }

    /* ---------- Announcement bar ---------- */
    .announcement-bar { background: var(--gold); color: var(--navy); font-weight: 900; font-size: 14px; }
    .announcement-inner { min-height: 42px; display: flex; align-items: center; justify-content: center; gap: 18px; text-align: center; flex-wrap: wrap; padding: 6px 0; }
    .announcement-inner .pill { background: var(--navy); color: var(--white); padding: 4px 10px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.08em; font-size: 12px; }
    .announcement-inner a { text-decoration: underline; }

    /* ---------- Sticky donate button ---------- */
    .sticky-donate {
      position: fixed; right: 18px; bottom: 18px; z-index: 2000;
      background: var(--red); color: var(--white);
      padding: 14px 22px; border-radius: 999px;
      font-weight: 900; text-transform: uppercase; letter-spacing: 0.06em;
      box-shadow: 0 14px 36px rgba(211,10,58,0.38);
      border: 2px solid rgba(255,255,255,0.5);
      transition: background 0.2s ease, transform 0.2s ease;
    }
    .sticky-donate:hover, .sticky-donate:focus-visible { background: var(--red-dark); transform: translateY(-2px); }

    /* ---------- Top navigation ---------- */
    .topbar {
      position: sticky; top: 0; z-index: 1000;
      height: var(--header-height);
      background: var(--navy);
      color: var(--white);
      border-bottom: 1px solid rgba(255,255,255,0.12);
      display: flex; align-items: center;
    }
    .final-nav {
      width: 100%;
      padding: 0 34px;
      display: grid;
      grid-template-columns: 190px 1fr 180px;
      align-items: center;
      gap: 30px;
      height: var(--header-height);
      position: relative;
    }
    .final-brand {
      position: relative;
      z-index: 20;
      height: var(--header-height);
      display: flex;
      align-items: center;
    }
    .final-brand img {
      height: 72px;
      width: auto;
      max-width: 220px;
      object-fit: contain;
      filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35));
    }
    .nav-links {
      display: flex; align-items: center; justify-content: center;
      gap: 28px;
      height: var(--header-height);
      position: relative; z-index: 10;
    }
    .nav-links a {
      color: var(--white);
      font-size: 16px;
      text-transform: uppercase;
      font-weight: 900;
      display: flex; align-items: center;
      height: var(--header-height);
      padding: 0 10px;
      position: relative;
      transition: color 0.18s ease;
    }
    .nav-links a:hover, .nav-links a:focus-visible { color: var(--gold-light); }
    .nav-links a.active { color: var(--gold); }
    .nav-links a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: var(--gold); }

    .top-chip {
      justify-self: end; align-self: center;
      background: var(--gold); color: var(--navy);
      padding: 15px 24px; border-radius: 4px;
      font-weight: 900;
      text-transform: uppercase; letter-spacing: 0.02em;
      box-shadow: 0 6px 18px rgba(0,0,0,0.22);
      position: relative; z-index: 11;
      transition: background 0.18s ease;
    }
    .top-chip:hover, .top-chip:focus-visible { background: var(--gold-light); }

    .mobile-toggle {
      display: none;
      background: transparent; color: var(--white);
      border: 1px solid rgba(255,255,255,0.3);
      border-radius: 12px;
      font-size: 28px;
      width: 48px; height: 48px;
      cursor: pointer;
    }

    /* ---------- Hero ---------- */
    .final-hero {
      min-height: 650px;
      display: grid;
      grid-template-columns: 36% 40% 24%;
      column-gap: 24px;
      align-items: end;
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.78) 39%, rgba(255,255,255,0.96) 58%, rgba(245,245,245,0.9) 100%),
        linear-gradient(0deg, rgba(6,38,83,0.18), rgba(6,38,83,0.18)),
        url('../mountains.jpg') center/cover no-repeat,
        var(--cream);
      padding: 34px 44px 0;
      position: relative;
    }
    .hero-photo {
      align-self: end;
      min-height: 560px;
      position: relative;
      z-index: 2;
      display: flex;
      align-items: flex-end;
      justify-content: flex-start;
      overflow: visible;
    }
    .hero-photo img {
      height: 560px;
      width: auto;
      max-width: 110%;
      object-fit: contain;
      object-position: left bottom;
      filter: drop-shadow(0 12px 26px rgba(3,26,58,0.24));
    }

    .hero-content {
      position: relative; z-index: 4;
      text-align: center;
      color: var(--navy);
      padding: 30px 30px 38px 60px;
      align-self: center;
    }
    .hero-content h1 {
      display: block;
      text-align: center;
      font-size: clamp(48px, 5vw, 76px);
      line-height: 0.95;
      letter-spacing: -0.03em;
      margin: 0 0 16px;
      font-weight: 900;
      color: var(--navy);
      text-shadow: 0 2px 0 rgba(255,255,255,0.45);
    }
    .hero-content h1 span {
      color: var(--gold);
      font-size: 0.78em;
      letter-spacing: -0.02em;
      display: inline-block;
    }
    .star-line {
      display: flex; align-items: center; justify-content: center;
      gap: 12px;
      color: var(--red);
      font-weight: 900;
      margin: 5px auto 16px;
      max-width: 380px;
    }
    .star-line span { height: 3px; background: var(--red); flex: 1; display: block; }
    .hero-content h2 {
      font-size: clamp(25px, 2.4vw, 38px);
      line-height: 1.12;
      margin: 0 0 20px;
      color: var(--navy);
      font-weight: 900;
    }
    .hero-content p {
      max-width: 520px;
      margin: 0 auto 22px;
      color: var(--navy);
      font-size: 17px;
      font-weight: 800;
    }
    .hero-content p strong { color: var(--red); }
    .hero-buttons {
      display: flex; justify-content: center; gap: 18px; flex-wrap: wrap;
    }

    /* ---------- Buttons ---------- */
    .btn {
      display: inline-flex; align-items: center; justify-content: center;
      min-height: 50px;
      padding: 14px 24px;
      border-radius: 4px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
      border: 2px solid transparent;
      cursor: pointer;
    }
    .btn-red { background: var(--red); color: var(--white); }
    .btn-red:hover, .btn-red:focus-visible { background: var(--red-dark); transform: translateY(-1px); }
    .btn-gold { background: var(--gold); color: var(--white); }
    .btn-gold:hover, .btn-gold:focus-visible { background: var(--gold-light); color: var(--navy); transform: translateY(-1px); }
    .btn-outline-navy { border-color: var(--navy); color: var(--navy); background: transparent; }
    .btn-outline-navy:hover, .btn-outline-navy:focus-visible { background: var(--navy); color: var(--white); }

    /* ---------- Hero donate card ---------- */
    .hero-donate-card {
      position: relative; z-index: 5;
      justify-self: end; align-self: center;
      width: min(100%, 390px);
      background: var(--white);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 18px 50px rgba(3,26,58,0.32);
      border: 1px solid rgba(3,26,58,0.16);
    }
    .donate-card-header {
      background: var(--navy); color: var(--white);
      text-align: center;
      padding: 16px;
      font-weight: 900;
      text-transform: uppercase;
      font-size: 18px;
      letter-spacing: 0.02em;
    }
    .donate-card-body { padding: 18px 26px 22px; text-align: center; }
    .donate-card-body p { color: var(--navy); font-weight: 700; font-size: 15px; margin: 0 0 14px; }
    .donate-tier {
      display: block;
      border: 2px solid #c7cbd2;
      border-radius: 5px;
      padding: 8px 8px 7px;
      margin-bottom: 8px;
      color: var(--navy);
      background: #fff;
      transition: transform 0.18s ease, box-shadow 0.18s ease;
    }
    .donate-tier strong { display: block; font-size: 30px; line-height: 1; font-weight: 900; }
    .donate-tier span { display: block; text-transform: uppercase; font-weight: 900; font-size: 13px; line-height: 1.1; }
    .donate-tier:hover, .donate-tier:focus-visible { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(3,26,58,0.15); }
    .donate-tier.popular { border-color: var(--red); color: var(--red); }
    .donate-tier.max { position: relative; color: var(--red); overflow: hidden; }
    .donate-tier.max::after {
      content: "MAX";
      position: absolute;
      top: 9px;
      right: -28px;
      width: 90px;
      background: var(--red);
      color: var(--white);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-align: center;
      padding: 4px 0;
      transform: rotate(45deg);
      box-shadow: 0 2px 4px rgba(0,0,0,0.18);
      pointer-events: none;
    }
    .custom-donate {
      display: block;
      background: var(--navy); color: var(--white);
      border-radius: 4px;
      padding: 12px;
      text-transform: uppercase;
      font-weight: 900;
      margin-top: 8px;
    }
    .secure-note {
      margin-top: 14px;
      color: var(--navy);
      font-weight: 800;
      font-size: 13px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }
    .secure-note span { margin-right: 4px; }
    .donate-card-body small { color: var(--navy); }

    /* ---------- Priority strip ---------- */
    .priority-strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      background: var(--navy);
      color: var(--white);
      padding: 28px 60px;
      gap: 24px;
      border-top: 3px solid rgba(201,147,46,0.35);
      border-bottom: 3px solid rgba(201,147,46,0.22);
    }
    .priority-item {
      display: grid;
      grid-template-columns: 70px 1fr;
      gap: 16px;
      align-items: center;
      border-right: 1px solid rgba(255,255,255,0.35);
      padding-right: 22px;
    }
    .priority-item:last-child { border-right: none; }
    .priority-icon {
      width: 60px; height: 60px;
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 26px; font-weight: 900;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--navy);
      box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    }
    .priority-icon svg { width: 60px; height: 60px; display: block; }
    .shield-premium, .family-premium { background: transparent; box-shadow: none; border-radius: 0; }

    .shield-bg { fill: #c9932e; stroke: #f3d27a; stroke-width: 2; }
    .shield-inner { fill: #062653; stroke: #ffffff; stroke-width: 2; }
    .shield-star { fill: #e7c56f; }
    .shield-check { fill: none; stroke: #ffffff; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; }

    .family-sun { fill: #ffffff; stroke: #e7c56f; stroke-width: 3; }
    .family-house { fill: #062653; opacity: 0.95; }
    .family-roof { fill: none; stroke: #c9932e; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; }
    .family-person { fill: #ffffff; }
    .family-body { fill: none; stroke: #ffffff; stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; }

    .priority-icon.co {
      background: transparent;
      width: 64px; height: 64px;
      box-shadow: none;
      border-radius: 0;
      overflow: visible;
    }
    .priority-icon.co img { width: 64px; height: 64px; object-fit: contain; }

    .priority-icon.elephant-premium {
      background: #ffffff;
      border-radius: 10px;
      box-shadow: 0 6px 18px rgba(0,0,0,0.2);
    }
    .priority-icon.elephant-premium img { width: 56px; height: 56px; object-fit: contain; }

    .priority-item h3 {
      text-transform: uppercase;
      font-size: 21px; line-height: 1.15;
      margin: 0 0 6px;
      color: var(--white);
      font-weight: 900;
    }
    .priority-item p { color: #edf4ff; margin: 0; font-size: 14px; }

    /* ---------- Sections (shared) ---------- */
    .section { padding: 86px 0; }
    .section-white { background: var(--white); }
    .section-navy { background: var(--navy); color: var(--white); }
    .section-title { max-width: 820px; margin: 0 auto 42px; text-align: center; }
    .eyebrow {
      display: inline-block;
      color: var(--red);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      font-size: 13px;
      margin-bottom: 12px;
    }
    .section-title h2 {
      color: var(--navy);
      font-size: clamp(34px, 5vw, 54px);
      line-height: 1.05;
      letter-spacing: -0.03em;
      margin: 0 0 16px;
    }
    .section-title p { font-size: 18px; color: var(--muted); margin: 0; }
    .section-navy .section-title h2,
    .section-navy .section-title p { color: var(--white); }

    /* ---------- Grids ---------- */
    .stats-row, .city-grid, .issue-grid, .event-grid, .gallery-grid {
      display: grid;
      gap: 24px;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      align-items: stretch;
    }
    .stats-row { margin-bottom: 34px; }
    .stats-row > div {
      background: var(--navy); color: var(--white);
      border-radius: 22px;
      padding: 24px;
      text-align: center;
      box-shadow: var(--shadow);
      border: 1px solid rgba(201,147,46,0.38);
    }
    .stats-row strong { display: block; color: var(--gold-light); font-size: 36px; line-height: 1; margin-bottom: 8px; }
    .stats-row span { display: block; font-weight: 800; color: #edf4ff; }

    .card {
      background: var(--white);
      border: 1px solid rgba(6,38,83,0.1);
      border-radius: var(--radius);
      padding: 28px;
      box-shadow: var(--shadow-sm);
      transition: transform 0.18s ease, box-shadow 0.18s ease;
    }
    .card:hover { transform: translateY(-3px); box-shadow: 0 18px 42px rgba(3,26,58,0.12); }
    .card h3 { color: var(--navy); font-size: 25px; line-height: 1.1; margin: 0 0 12px; }
    .card p { color: var(--muted); margin: 0; }
    .icon-circle {
      width: 54px; height: 54px;
      border-radius: 18px;
      display: flex; align-items: center; justify-content: center;
      background: rgba(201,147,46,0.16);
      color: var(--gold);
      font-size: 26px;
      margin-bottom: 18px;
      font-weight: 900;
    }

    /* ---------- About section ---------- */
    .about-clean {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 56px;
    }
    .about-clean-photo {
      flex: 0 0 44%;
      height: 420px;
      border-radius: 32px;
      overflow: hidden;
      box-shadow: var(--shadow);
    }
    .about-clean-photo img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center center;
    }
    .about-clean-copy {
      flex: 1 1 auto;
      max-width: 650px;
      text-align: left;
    }
    .about-clean-copy h2 {
      font-size: clamp(34px, 5vw, 54px);
      line-height: 1.05;
      margin: 0 0 20px;
      color: var(--white);
    }
    .about-clean-copy p {
      color: #edf4ff;
      font-size: 18px;
      margin: 0 0 16px;
    }
    .about-clean-copy .btn { margin-top: 10px; }

    /* ---------- Merch / quote band ---------- */
    .merch-style-section { background: linear-gradient(135deg, var(--white), #fff8e8); }
    .merch-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      align-items: stretch;
    }
    .merch-box, .quote-box {
      border-radius: 32px;
      padding: 42px;
      box-shadow: var(--shadow);
    }
    .merch-box { background: var(--navy); color: var(--white); }
    .merch-box h2, .quote-box p {
      font-size: clamp(30px, 4vw, 46px);
      line-height: 1.08;
      margin: 0 0 18px;
      font-weight: 900;
    }
    .merch-box p { color: #edf4ff; font-size: 18px; }
    .quote-box { background: var(--gold); color: var(--navy); }
    .quote-box strong { display: block; text-align: right; font-size: 18px; text-transform: uppercase; letter-spacing: 0.08em; }

    /* ---------- Events / Gallery ---------- */
    .event-card .date { color: var(--red); font-weight: 900; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
    .gallery-item { overflow: hidden; padding: 0; width: 100%; }
    .gallery-media {
      aspect-ratio: 16 / 10;
      background: linear-gradient(135deg, rgba(6,38,83,0.92), rgba(201,147,46,0.65)), var(--navy);
      display: flex; align-items: center; justify-content: center;
      color: var(--white);
      font-size: 28px; font-weight: 900;
      cursor: pointer;
      border: none;
      width: 100%;
    }
    .gallery-caption { padding: 14px; text-align: center; }
    .gallery-caption span { color: var(--red); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.14em; }
    .gallery-caption h3 { margin: 4px 0 0; font-size: 16px; }

    /* ---------- Donate band ---------- */
    .donate-band { background: var(--red); color: var(--white); padding: 58px 0; }
    .donation-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }
    .donation-card {
      background: white; color: var(--navy);
      border-radius: 20px;
      padding: 26px;
      text-align: center;
      font-weight: 900;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      box-shadow: var(--shadow);
    }
    .donation-card strong { display: block; font-size: 28px; margin-bottom: 6px; }
    .donation-card span { font-size: 14px; color: var(--muted); }
    .donation-card:hover, .donation-card:focus-visible { transform: translateY(-4px); }
    .donation-card.highlight { border: 4px solid var(--gold); background: #fff8e6; transform: scale(1.05); }
    .donation-card.max { border: 4px solid var(--red); background: #ffe9ee; }

    /* ---------- Volunteer / Get Involved form ---------- */
    .volunteer-card {
      max-width: 720px; margin: 0 auto;
      background: var(--white);
      border-radius: 32px;
      padding: 42px;
      box-shadow: var(--shadow);
      border: 1px solid rgba(6,38,83,0.1);
    }
    .volunteer-card h2 { color: var(--navy); font-size: clamp(32px, 5vw, 50px); line-height: 1.05; margin: 0 0 14px; text-align: center; }
    .volunteer-card .lede { color: var(--muted); font-size: 18px; margin-bottom: 26px; text-align: center; }

    .field-label {
      display: block;
      color: var(--navy);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      font-size: 13px;
      margin: 18px 0 10px;
    }

    .role-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
      margin-bottom: 4px;
    }
    .role-option {
      cursor: pointer;
      padding: 14px 16px;
      background: var(--cream);
      border: 2px solid transparent;
      border-radius: 14px;
      font-weight: 700;
      color: var(--navy);
      font-size: 15px;
      transition: background 0.18s ease, border-color 0.18s ease;
      display: flex;
      align-items: center;
      gap: 12px;
      line-height: 1.3;
    }
    .role-option input {
      flex: 0 0 20px;
      width: 20px;
      height: 20px;
      margin: 0;
      cursor: pointer;
      accent-color: var(--red);
    }
    .role-option:hover { background: #ede7d8; border-color: rgba(201,147,46,0.4); }
    .role-option:has(input:checked) {
      background: #fff8e8;
      border-color: var(--gold);
    }
    .role-option:has(input:focus-visible) { outline: 3px solid var(--gold); outline-offset: 2px; }

    .volunteer-form .input-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .volunteer-form input:not([type="checkbox"]):not([type="radio"]),
    .volunteer-form textarea {
      width: 100%;
      border: 2px solid #d8dce5;
      border-radius: 14px;
      padding: 14px 18px;
      font-size: 15px;
      font-family: inherit;
      outline: none;
      transition: border-color 0.18s ease, box-shadow 0.18s ease;
    }
    .volunteer-form input:not([type="checkbox"]):not([type="radio"]):focus,
    .volunteer-form textarea:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 4px rgba(201,147,46,0.18);
    }
    .volunteer-form textarea { min-height: 90px; resize: vertical; }
    .volunteer-form .full-width { grid-column: 1 / -1; }

    .yardsign-block {
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-height 0.35s ease, opacity 0.25s ease, margin 0.25s ease;
      margin: 0;
    }
    .yardsign-block.show {
      max-height: 600px;
      opacity: 1;
      margin-top: 4px;
    }
    .yardsign-inner {
      background: #fff8e8;
      border: 2px solid var(--gold);
      border-radius: 14px;
      padding: 18px;
    }
    .yardsign-inner .field-label { margin-top: 0; color: #8a6612; }
    .yardsign-note { font-size: 13px; color: #8a6612; margin: 10px 0 0; line-height: 1.4; }

    .volunteer-submit-row {
      margin-top: 22px;
      display: flex;
      justify-content: center;
    }
    .volunteer-submit-row .btn { min-width: 220px; }

    .form-success {
      display: none;
      text-align: center;
      padding: 30px 16px;
    }
    .form-success.show { display: block; animation: checkerSlideIn 0.4s ease; }
    .form-success-icon {
      width: 72px; height: 72px;
      border-radius: 50%;
      background: #1f7a3a;
      color: var(--white);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 38px;
      font-weight: 900;
      margin-bottom: 18px;
    }
    .form-success h3 { color: #1f7a3a; font-size: 28px; margin: 0 0 10px; font-weight: 900; }
    .form-success p { color: var(--muted); font-size: 16px; margin: 0; }

    /* ---------- Language toggle ---------- */
    .lang-toggle {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.25);
      color: var(--white);
      padding: 6px 12px;
      border-radius: 999px;
      font-weight: 900;
      font-size: 12px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.18s ease;
      font-family: inherit;
    }
    .lang-toggle:hover, .lang-toggle:focus-visible {
      background: rgba(255,255,255,0.2);
    }
    .lang-toggle .lang-icon { font-size: 14px; line-height: 1; }

    .goog-te-banner-frame, .skiptranslate { display: none !important; }
    body { top: 0 !important; }
    .goog-te-gadget { font-size: 0 !important; }
    .goog-te-gadget > span { display: none !important; }
    #google_translate_element { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

    /* ---------- Scroll-triggered fade-ins ---------- */
    .fade-in {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s ease-out, transform 0.7s ease-out;
      will-change: opacity, transform;
    }
    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }
    @media (prefers-reduced-motion: reduce) {
      .fade-in { opacity: 1; transform: none; transition: none; }
    }

    @media (max-width: 700px) {
      .role-grid { grid-template-columns: 1fr; }
      .volunteer-form .input-grid { grid-template-columns: 1fr; }
      .volunteer-card { padding: 28px 22px; }
    }

    /* ---------- Vote section / Address checker ---------- */
    .vote-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
      align-items: stretch;
    }

    .vote-card {
      display: flex;
      flex-direction: column;
      text-align: left;
    }
    .vote-card p { flex-grow: 1; }
    .vote-card-cta {
      display: inline-block;
      margin-top: 18px;
      color: var(--red);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      font-size: 14px;
      transition: color 0.18s ease, transform 0.18s ease;
    }
    a.vote-card:hover .vote-card-cta,
    a.vote-card:focus-visible .vote-card-cta { color: var(--red-dark); transform: translateX(4px); }

    .vote-card-checker { background: linear-gradient(180deg, var(--white), #fff8e8); border-color: rgba(201,147,46,0.45); }

    .checker-form-inline {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 8px;
      margin-top: 14px;
    }
    .checker-form-inline input {
      width: 100%;
      border: 2px solid #d8dce5;
      border-radius: 999px;
      padding: 12px 16px;
      font-size: 14px;
      font-family: inherit;
      outline: none;
      transition: border-color 0.18s ease, box-shadow 0.18s ease;
      min-width: 0;
    }
    .checker-form-inline input:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201,147,46,0.18); }
    .checker-form-inline button { min-height: 46px; border-radius: 999px; padding: 10px 18px; font-size: 13px; }
    .checker-form-inline button:disabled { background: #b8becb; cursor: not-allowed; transform: none; }

    .checker-hint {
      margin: 10px 0 0;
      font-size: 12px;
      color: var(--muted);
      line-height: 1.4;
      font-style: italic;
    }
    .vote-card-checker .checker-hint { color: #8a6612; }

    .checker-result {
      margin-top: 16px;
      border-radius: 14px;
      padding: 16px;
      display: none;
      animation: checkerSlideIn 0.32s ease;
    }
    .checker-result.show { display: block; }
    @keyframes checkerSlideIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
    .checker-result-head {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 6px;
    }
    .checker-result-icon {
      flex: 0 0 32px; width: 32px; height: 32px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 18px; font-weight: 900;
    }
    .checker-result h4 { margin: 0; font-size: 16px; line-height: 1.2; font-weight: 900; }
    .checker-result p { margin: 0; font-size: 13px; line-height: 1.45; }
    .checker-result .actions { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 8px; }

    .checker-result.in-district { background: #e7f5ec; border: 2px solid #1f7a3a; }
    .checker-result.in-district .checker-result-icon { background: #1f7a3a; color: var(--white); }
    .checker-result.in-district h4 { color: #1f7a3a; }
    .checker-result.in-district p { color: #224b30; }

    .checker-result.out-district { background: #fff8e8; border: 2px solid var(--gold); }
    .checker-result.out-district .checker-result-icon { background: var(--gold); color: var(--white); }
    .checker-result.out-district h4 { color: #8a6612; }
    .checker-result.out-district p { color: #5d4815; }

    .checker-result.not-found { background: #fff8e8; border: 2px solid var(--gold); }
    .checker-result.not-found .checker-result-icon { background: var(--gold); color: var(--white); }
    .checker-result.not-found h4 { color: #8a6612; }
    .checker-result.not-found p { color: #5d4815; }
    .checker-result.not-found p strong { color: var(--navy); }

    .checker-result-icon-warn { background: var(--navy) !important; color: var(--white) !important; }

    .checker-small-btn {
      display: inline-flex; align-items: center;
      padding: 8px 14px;
      border-radius: 999px;
      background: var(--navy); color: var(--white);
      font-weight: 900; font-size: 12px;
      text-transform: uppercase; letter-spacing: 0.04em;
      border: none; cursor: pointer;
      font-family: inherit;
      transition: background 0.2s ease;
    }
    .checker-small-btn:hover, .checker-small-btn:focus-visible { background: var(--navy-dark); color: var(--white); }
    .checker-small-btn.gold { background: var(--gold); color: var(--navy); }
    .checker-small-btn.gold:hover, .checker-small-btn.gold:focus-visible { background: var(--gold-light); color: var(--navy); }

    .checker-spinner {
      width: 14px; height: 14px;
      border: 2px solid rgba(255,255,255,0.4);
      border-top-color: var(--white);
      border-radius: 50%;
      animation: checkerSpin 0.7s linear infinite;
      margin-right: 6px;
    }
    @keyframes checkerSpin { to { transform: rotate(360deg); } }

    @media (max-width: 900px) {
      .vote-grid { grid-template-columns: 1fr; }
    }

    /* ---------- Signup ---------- */
    .signup-card {
      max-width: 820px; margin: 0 auto;
      text-align: center;
      background: var(--white);
      border-radius: 32px;
      padding: 42px;
      box-shadow: var(--shadow);
      border: 1px solid rgba(6,38,83,0.1);
    }
    .signup-card h2 { color: var(--navy); font-size: clamp(32px, 5vw, 50px); line-height: 1.05; margin: 0 0 14px; }
    .signup-card p { color: var(--muted); font-size: 18px; margin-bottom: 26px; }
    .signup-form {
      display: grid;
      grid-template-columns: 1fr 1fr auto;
      gap: 12px;
    }
    .signup-form input {
      width: 100%;
      border: 1px solid #d8dce5;
      border-radius: 999px;
      padding: 15px 18px;
      font-size: 16px;
      outline: none;
      transition: border-color 0.18s ease, box-shadow 0.18s ease;
    }
    .signup-form input:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201,147,46,0.18); }

    /* ---------- Footer ---------- */
    footer { background: var(--navy-dark); color: var(--white); padding: 42px 0; }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.1fr 1fr 1fr;
      gap: 28px;
      align-items: start;
    }
    footer .footer-heading { display: block; font-size: 22px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--gold-light); }
    footer p, footer a { color: #dfe8f6; margin: 8px 0 0; }
    footer a:hover, footer a:focus-visible { color: var(--gold-light); text-decoration: underline; }
    .disclaimer { border: 1px solid rgba(255,255,255,0.22); border-radius: 16px; padding: 14px; font-size: 13px; }
    .social-row { display: flex; justify-content: center; gap: 16px; margin-top: 24px; }
    .social-btn {
      width: 50px; height: 50px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    }
    .social-btn svg { width: 22px; height: 22px; fill: white; }
    .social-btn:hover, .social-btn:focus-visible { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0,0,0,0.3); }
    .social-btn.fb:hover, .social-btn.fb:focus-visible { background: #1877f2; }
    .social-btn.x:hover, .social-btn.x:focus-visible { background: #000; }
    .social-btn.ig:hover, .social-btn.ig:focus-visible { background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4); }
    .social-btn.yt:hover, .social-btn.yt:focus-visible { background: #ff0000; }

    /* ---------- Lightbox ---------- */
    .lightbox {
      display: none;
      position: fixed; inset: 0;
      z-index: 3000;
      background: rgba(3, 26, 58, 0.86);
      align-items: center; justify-content: center;
      padding: 24px;
    }
    .lightbox.open { display: flex; }
    .lightbox-card {
      width: min(760px, 100%);
      min-height: 420px;
      border-radius: 28px;
      background: var(--white); color: var(--navy);
      box-shadow: var(--shadow);
      padding: 28px;
      position: relative;
      text-align: center;
      display: flex; flex-direction: column; justify-content: center;
      border: 4px solid var(--gold);
    }
    .lightbox-card .close-btn {
      position: absolute; top: 14px; right: 14px;
      border: none; background: var(--red); color: var(--white);
      border-radius: 999px;
      width: 42px; height: 42px;
      cursor: pointer;
      font-weight: 900;
    }
    #lightboxContent { font-size: 46px; font-weight: 900; color: var(--gold); }

    /* ---------- Focus-visible defaults (accessibility) ---------- */
    a:focus-visible, button:focus-visible, input:focus-visible {
      outline: 3px solid var(--gold);
      outline-offset: 2px;
    }

    /* ---------- Reduced motion ---------- */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
    }

    /* ===================================================
       RESPONSIVE
       =================================================== */
    @media (max-width: 1200px) {
      .final-nav { grid-template-columns: 165px 1fr 160px; gap: 18px; padding: 0 22px; }
      .nav-links { gap: 18px; }
      .nav-links a { font-size: 14px; }
      .final-hero { grid-template-columns: 33% 42% 25%; padding-left: 24px; padding-right: 24px; }
      .hero-content h1 { font-size: 60px; }
      .donate-tier strong { font-size: 26px; }
    }

    @media (max-width: 900px) {
      .mobile-toggle { display: block; justify-self: end; }
      .topbar { height: auto; }
      .final-nav { grid-template-columns: 110px 1fr 52px; padding: 8px 16px; min-height: 84px; }
      .final-brand img { height: 64px; width: auto; max-width: 180px; }
      .top-chip { display: none; }
      .nav-links {
        display: none;
        position: absolute; top: 84px; left: 0; right: 0;
        background: var(--navy);
        padding: 16px;
        border-top: 1px solid rgba(255,255,255,0.12);
        height: auto;
      }
      .nav-links.open { display: grid; gap: 8px; }
      .nav-links a {
        background: rgba(255,255,255,0.08);
        padding: 14px 16px;
        height: auto;
      }
      .nav-links a.active::after { display: none; }

      .final-hero { grid-template-columns: 1fr; padding: 22px 16px 0; }
      .hero-photo { min-height: 430px; justify-content: center; }
      .hero-photo img { height: 430px; }
      .hero-donate-card { justify-self: center; margin-top: 20px; }
      .hero-content { padding: 30px 0; }
      .hero-content h1 { font-size: 54px; }
      .hero-content h2 { font-size: 28px; }
      .hero-content p { font-size: 16px; }
      .hero-buttons { gap: 10px; }

      .priority-strip { grid-template-columns: 1fr; padding: 28px 22px; }
      .priority-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.25); padding-bottom: 18px; padding-right: 0; }
      .priority-item:last-child { border-bottom: none; padding-bottom: 0; }

      .city-grid, .issue-grid, .event-grid, .gallery-grid, .stats-row { grid-template-columns: 1fr; }
      .merch-grid { grid-template-columns: 1fr; }
      .signup-form { grid-template-columns: 1fr; }
      .donation-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr; }

      .about-clean { flex-direction: column; }
      .about-clean-photo, .about-clean-copy { flex: 0 0 auto; width: 100%; }
    }

    @media (max-width: 520px) {
      .final-brand img { width: 82px; height: 94px; }
      .final-nav { grid-template-columns: 90px 1fr 52px; }
      .hero-photo { min-height: 350px; }
      .hero-photo img { height: 350px; }
      .hero-content h1 { font-size: 44px; }
      .hero-donate-card { width: 100%; }
      .donate-card-body { padding: 16px; }
      .priority-item { grid-template-columns: 54px 1fr; }
      .priority-icon { width: 48px; height: 48px; font-size: 22px; }
      .section { padding: 62px 0; }
      .signup-card { padding: 28px 20px; }
      .donation-grid { grid-template-columns: 1fr; }
      .merch-box, .quote-box { padding: 28px; }
    }

/* ===== Media strip (As Seen On) ===== */
        .endorse-people {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
          gap: 24px;
          max-width: 960px;
          margin: 0 auto;
        }
        .endorse-person {
          background: var(--white);
          border: 1px solid rgba(6,38,83,0.1);
          border-radius: var(--radius);
          box-shadow: var(--shadow-sm);
          padding: 30px 22px 26px;
          margin: 0;
          text-align: center;
          transition: transform 0.18s ease, box-shadow 0.18s ease;
        }
        .endorse-person:hover { transform: translateY(-4px); box-shadow: 0 18px 42px rgba(3,26,58,0.14); }
        .endorse-photo {
          width: 132px; height: 132px;
          margin: 0 auto 18px;
          border-radius: 50%;
          overflow: hidden;
          border: 4px solid var(--gold);
          box-shadow: 0 8px 22px rgba(3,26,58,0.16);
          background: var(--navy);
        }
        .endorse-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
        .endorse-person h3 { color: var(--navy); font-size: 22px; margin: 0 0 4px; line-height: 1.15; }
        .endorse-role { color: var(--muted); font-size: 15px; margin: 0; }
        .endorse-star { color: var(--gold); font-size: 15px; letter-spacing: 3px; margin-bottom: 10px; }

        .endorse-orgs {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
          gap: 24px;
          max-width: 1040px;
          margin: 0 auto;
        }
        .endorse-org {
          background: var(--white);
          border: 1px solid rgba(6,38,83,0.1);
          border-radius: var(--radius);
          box-shadow: var(--shadow-sm);
          padding: 26px 24px 28px;
          text-align: center;
          display: flex; flex-direction: column;
          transition: transform 0.18s ease, box-shadow 0.18s ease;
        }
        .endorse-org:hover { transform: translateY(-4px); box-shadow: 0 18px 42px rgba(3,26,58,0.14); }
        .endorse-logo {
          height: 118px;
          display: flex; align-items: center; justify-content: center;
          background: var(--cream);
          border-radius: 16px;
          margin-bottom: 18px;
          padding: 14px;
        }
        .endorse-logo img { max-width: 100%; max-height: 90px; object-fit: contain; display: block; }
        .endorse-org h3 { color: var(--navy); font-size: 20px; margin: 0 0 8px; line-height: 1.15; }
        .endorse-org p { color: var(--muted); font-size: 15px; margin: 0 0 16px; }
        .endorse-badge {
          margin-top: auto;
          align-self: center;
          display: inline-block;
          background: rgba(201,147,46,0.16);
          color: var(--gold);
          font-weight: 900;
          font-size: 12px;
          letter-spacing: 1.5px;
          text-transform: uppercase;
          padding: 6px 14px;
          border-radius: 999px;
        }
        .endorse-badge.endorsed { background: rgba(211,10,58,0.10); color: var(--red); }

/* ===== Endorsements ===== */
        .media-strip {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
          gap: 14px;
          max-width: 980px;
          margin: 0 auto;
        }
        .media-pill {
          display: block;
          background: var(--cream);
          border: 2px solid rgba(6, 38, 83, 0.08);
          border-radius: 14px;
          padding: 18px 14px;
          text-align: center;
          transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
          color: inherit;
          text-decoration: none;
          position: relative;
        }
        a.media-pill:hover, a.media-pill:focus-visible {
          transform: translateY(-3px);
          border-color: var(--gold);
          box-shadow: 0 12px 28px rgba(3, 26, 58, 0.10);
        }
        a.media-pill::after {
          content: "↗";
          position: absolute;
          top: 8px;
          right: 10px;
          font-size: 13px;
          color: var(--gold);
          opacity: 0.45;
          font-weight: 700;
          transition: opacity 0.2s ease, transform 0.2s ease;
        }
        a.media-pill:hover::after, a.media-pill:focus-visible::after {
          opacity: 1;
          transform: translate(2px, -2px);
        }
        .media-pill .outlet {
          display: block;
          font-weight: 900;
          color: var(--navy);
          font-size: 17px;
          letter-spacing: 0.01em;
          line-height: 1.2;
        }
        .media-pill .show {
          display: block;
          font-size: 13px;
          color: var(--muted);
          margin-top: 6px;
          line-height: 1.3;
        }
        @media (max-width: 600px) {
          .media-strip { grid-template-columns: repeat(2, 1fr); gap: 10px; }
          .media-pill { padding: 14px 10px; }
          .media-pill .outlet { font-size: 15px; }
        }

/* ===== Press / Press Releases ===== */
  
    /* ===== PRESS PAGE STYLES ===== */
    .press-hero {
      background: linear-gradient(135deg, var(--navy), #0a3675);
      color: var(--white);
      padding: 70px 0 60px;
      text-align: center;
    }
    .press-hero .eyebrow {
      color: var(--gold-light);
      background: rgba(200, 162, 76, 0.15);
      border-color: rgba(200, 162, 76, 0.3);
    }
    .press-hero h1 {
      font-size: clamp(40px, 5vw, 64px);
      font-weight: 900;
      letter-spacing: -0.02em;
      color: var(--white);
      margin: 16px 0 18px;
      text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    }
    .press-lede {
      max-width: 720px;
      margin: 0 auto 28px;
      font-size: 18px;
      color: #edf4ff;
      line-height: 1.5;
    }
    .press-lede strong { color: var(--gold-light); }
    .press-cta {
      display: inline-flex;
      align-items: center;
      font-size: 17px;
      padding: 16px 32px;
    }

    .press-snapshot {
      display: grid;
      grid-template-columns: 220px 1fr;
      gap: 36px;
      max-width: 920px;
      margin: 0 auto;
      align-items: center;
    }
    .press-snapshot img {
      width: 100%;
      border-radius: 12px;
      box-shadow: 0 18px 42px rgba(3, 26, 58, 0.18);
    }
    .press-snapshot h2 {
      color: var(--navy);
      font-size: 28px;
      margin: 0 0 14px;
    }
    .press-snapshot p {
      color: var(--muted);
      font-size: 16px;
      line-height: 1.55;
      margin: 0 0 12px;
    }
    .press-snapshot .press-stat {
      color: var(--navy);
      font-weight: 700;
      font-size: 17px;
      padding: 10px 14px;
      background: rgba(200, 162, 76, 0.12);
      border-left: 4px solid var(--gold);
      border-radius: 4px;
    }

    .press-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 18px;
      max-width: 1100px;
      margin: 0 auto;
    }
    .press-card {
      display: flex;
      flex-direction: column;
      background: var(--white);
      border: 2px solid rgba(6, 38, 83, 0.08);
      border-radius: 14px;
      padding: 22px 20px;
      text-decoration: none;
      color: inherit;
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
      position: relative;
    }
    .press-card:hover, .press-card:focus-visible {
      transform: translateY(-4px);
      border-color: var(--gold);
      box-shadow: 0 18px 42px rgba(3, 26, 58, 0.12);
    }
    .press-card::after {
      content: "↓";
      position: absolute;
      top: 14px;
      right: 16px;
      font-size: 18px;
      color: var(--gold);
      opacity: 0.5;
      font-weight: 900;
      transition: opacity 0.2s ease, transform 0.2s ease;
    }
    .press-card:hover::after, .press-card:focus-visible::after {
      opacity: 1;
      transform: translateY(2px);
    }
    .press-card-icon {
      font-size: 32px;
      margin-bottom: 10px;
      line-height: 1;
    }
    .press-card h3 {
      color: var(--navy);
      font-size: 19px;
      margin: 0 0 8px;
      font-weight: 900;
    }
    .press-card p {
      color: var(--muted);
      font-size: 14px;
      margin: 0 0 12px;
      line-height: 1.45;
      flex: 1;
    }
    .press-card-meta {
      font-size: 12px;
      color: var(--gold);
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .press-facts-wrap {
      max-width: 760px;
      margin: 0 auto;
    }
    .press-facts {
      background: var(--cream);
      border-radius: 14px;
      padding: 12px 24px;
    }
    .fact-row {
      display: grid;
      grid-template-columns: 180px 1fr;
      gap: 16px;
      padding: 14px 0;
      border-bottom: 1px solid rgba(6, 38, 83, 0.08);
      align-items: baseline;
    }
    .fact-row:last-child { border-bottom: none; }
    .fact-key {
      font-weight: 900;
      color: var(--navy);
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }
    .fact-val {
      color: var(--muted);
      font-size: 16px;
    }

    .press-contact {
      text-align: center;
      max-width: 640px;
      margin: 0 auto;
      color: var(--white);
    }
    .press-contact h2 {
      color: var(--white);
      font-size: 36px;
      margin: 0 0 12px;
    }
    .press-contact p {
      color: #d6e2f5;
      font-size: 17px;
      margin: 0 0 20px;
      line-height: 1.5;
    }
    .press-contact-email {
      display: inline-block;
      color: var(--gold-light);
      font-size: 28px;
      font-weight: 900;
      text-decoration: none;
      padding: 14px 28px;
      border: 2px solid var(--gold-light);
      border-radius: 10px;
      transition: background 0.2s ease, color 0.2s ease;
      margin-bottom: 18px;
    }
    .press-contact-email:hover, .press-contact-email:focus-visible {
      background: var(--gold-light);
      color: var(--navy);
    }
    .press-contact-note {
      font-size: 14px !important;
      color: #aec3e3 !important;
      font-style: italic;
    }

    @media (max-width: 700px) {
      .press-snapshot { grid-template-columns: 1fr; gap: 22px; text-align: center; }
      .press-snapshot img { max-width: 220px; margin: 0 auto; }
      .fact-row { grid-template-columns: 1fr; gap: 4px; padding: 10px 0; }
      .press-contact-email { font-size: 22px; padding: 12px 18px; }
    }


/* ===== Reveal on scroll (added via JS; content stays visible without JS / reduced-motion) ===== */
@media (prefers-reduced-motion: no-preference) {
  main section.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,.61,.36,1); }
  main section.reveal.is-visible { opacity: 1; transform: none; }
}

/* ===== Candidate signature (quote box) ===== */
.quote-signature { display: block; width: 280px; max-width: 90%; height: auto; margin: 14px 0 6px auto; }
