  /* ---------- DESIGN TOKENS ---------- */
  :root {
    --bg-deep: #050814;
    --bg-night: #0a1024;
    --bg-elevated: #111935;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-card-hover: rgba(255, 255, 255, 0.07);
    --border-subtle: rgba(255, 255, 255, 0.08);
    --text-bright: #ffffff;
    --text-primary: #e8eaf3;
    --text-secondary: #a8aec5;
    --text-muted: #6b7390;
    --gold: #f5c66b;
    --gold-glow: #ffd789;
    --warm-white: #fff4d6;
    --halloween: #ff8b3d;
    --christmas: #6fb6ff;
    --accent: var(--gold);
    --max-width: 1180px;
    --section-pad: clamp(4rem, 9vw, 7rem);
    --radius: 16px;
    --radius-sm: 10px;
    --font-display: 'Anton', Impact, sans-serif;
    --font-ui: 'Oswald', 'Lato', sans-serif;
    --font-body: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-glow: 0 0 60px rgba(245, 198, 107, 0.25);
  }

  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--bg-deep);
    line-height: 1.7;
    font-size: 1.05rem;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }
  h1, h2, h3, h4 {
    color: var(--text-bright);
    line-height: 1.15;
    margin: 0 0 1rem;
  }
  h1, h2 {
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: 0.01em;
    text-transform: uppercase;
  }
  h3, h4 {
    font-family: var(--font-ui);
    font-weight: 600;
    letter-spacing: 0.005em;
  }
  p { margin: 0 0 1rem; color: var(--text-primary); }
  a { color: var(--gold-glow); text-decoration: none; transition: color .2s ease; }
  a:hover { color: var(--warm-white); }

  .container { max-width: var(--max-width); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
  .eyebrow {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--gold);
    margin-bottom: 1.25rem;
  }
  section { padding: var(--section-pad) 0; position: relative; }

  /* ---------- NAVIGATION ---------- */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.25rem 0;
    background: rgba(5, 8, 20, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
  }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
  .brand { display: inline-flex; align-items: center; }
  .brand-arch {
    height: 60px;
    width: auto;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.45));
    transition: transform .2s ease, filter .2s ease;
  }
  .brand:hover .brand-arch { transform: translateY(-1px); filter: drop-shadow(0 7px 12px rgba(0, 0, 0, 0.5)); }
  @media (max-width: 480px) { .brand-arch { height: 48px; } }
  .nav-right { display: flex; align-items: center; gap: 1.75rem; }
  .nav-home {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: color .2s ease, transform .2s ease;
  }
  .nav-home svg { width: 26px; height: 26px; fill: currentColor; transform: rotate(-6deg); }
  .nav-home:hover { color: var(--gold-glow); transform: translateY(-1px); }
  .nav-links { display: flex; gap: 2rem; list-style: none; padding: 0; margin: 0; }
  .nav-links a {
    color: var(--text-secondary);
    font-family: var(--font-ui);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color .2s ease;
  }
  .nav-links a:hover { color: var(--warm-white); }
  .nav-links a.nav-donate {
    color: var(--gold-glow);
    padding: 0.4rem 1rem;
    border: 1px solid rgba(245, 198, 107, 0.4);
    border-radius: 999px;
    transition: all .2s ease;
  }
  .nav-links a.nav-donate:hover {
    background: var(--gold);
    color: #1a1206;
    border-color: var(--gold);
  }
  @media (max-width: 760px) { .nav-links { display: none; } }

  /* ---------- BUTTONS ---------- */
  .btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2rem; }
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.85rem;
    border-radius: 999px;
    font-family: var(--font-ui);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all .25s ease;
    text-decoration: none;
  }
  .btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-glow) 100%);
    color: #1a1206;
    box-shadow: 0 0 30px rgba(245, 198, 107, 0.35);
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(245, 198, 107, 0.55);
    color: #1a1206;
  }
  .btn-ghost {
    background: transparent;
    color: var(--text-bright);
    border-color: rgba(255, 255, 255, 0.2);
  }
  .btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold-glow);
  }

  /* ---------- HERO ---------- */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
    background:
      radial-gradient(ellipse at 30% 20%, rgba(245, 198, 107, 0.08) 0%, transparent 50%),
      radial-gradient(ellipse at 70% 80%, rgba(111, 182, 255, 0.06) 0%, transparent 55%),
      var(--bg-deep);
  }
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 960px;
    text-align: center;
    margin: 0 auto;
  }
  .hero-logo {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    max-width: min(940px, 94vw);
    width: 100%;
  }
  .hero-logo img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    box-shadow:
      0 25px 60px rgba(0, 0, 0, 0.55),
      0 0 0 1px rgba(245, 198, 107, 0.25),
      0 0 90px rgba(245, 198, 107, 0.16);
  }
  .hero-logo::before {
    content: '';
    position: absolute;
    inset: -12%;
    background: radial-gradient(ellipse at center, rgba(245, 198, 107, 0.16) 0%, transparent 62%);
    z-index: -1;
    pointer-events: none;
  }
  .hero .btn-row { justify-content: center; }
  .hero h1 {
    font-size: clamp(1.6rem, 3.2vw, 2.5rem);
    margin-bottom: 1.25rem;
    color: var(--text-bright);
  }
  .hero h1 .highlight {
    color: var(--gold-glow);
    filter: drop-shadow(0 0 16px rgba(245, 198, 107, 0.4));
  }
  .hero p.lead {
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
    text-transform: none;
  }
  .hero-loc {
    margin-top: 2.9rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-transform: none;
  }
  .hero-loc strong { color: var(--gold); }
  .hero-loc a { color: var(--gold-glow); white-space: nowrap; }
  .season-banner {
    display: none;
    margin: 0 auto 1.75rem;
    padding: 0.7rem 1.6rem;
    border-radius: 999px;
    border: 1px solid var(--gold);
    background: rgba(245, 198, 107, 0.08);
    box-shadow: 0 0 34px rgba(245, 198, 107, 0.15);
  }
  .season-banner.show { display: inline-block; }
  .season-banner.halloween { border-color: var(--halloween); background: rgba(255, 139, 61, 0.1); box-shadow: 0 0 34px rgba(255, 139, 61, 0.18); }
  .season-banner.christmas { border-color: var(--christmas); background: rgba(111, 182, 255, 0.1); box-shadow: 0 0 34px rgba(111, 182, 255, 0.18); }
  .season-banner .sb-status {
    font-family: var(--font-ui);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    font-size: clamp(0.92rem, 2vw, 1.08rem);
    color: var(--text-bright);
  }
  .season-banner .sb-hours {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    letter-spacing: 0.03em;
  }
  .hero-facts {
    margin-top: 1.4rem;
    font-size: 0.98rem;
    color: var(--text-secondary);
    text-transform: none;
    letter-spacing: 0.01em;
  }
  .hero-facts strong { color: var(--gold); }

  /* Twinkling lights backdrop */
  .stars { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
  .star {
    position: absolute;
    background: var(--warm-white);
    border-radius: 50%;
    animation: twinkle 4s ease-in-out infinite;
    box-shadow: 0 0 6px var(--gold-glow);
  }
  @keyframes twinkle {
    0%, 100% { opacity: 0.2; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
  }

  /* ---------- ABOUT ---------- */
  .about { background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-night) 100%); }
  .about-grid {
    display: grid;
    grid-template-columns: minmax(280px, 360px) 1fr;
    gap: clamp(2rem, 6vw, 5rem);
    align-items: start;
  }
  @media (max-width: 800px) { .about-grid { grid-template-columns: 1fr; } }
  .about h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
  .about p { color: var(--text-secondary); font-size: 1.05rem; }

  /* ---------- TWO SEASONS ---------- */
  .seasons { background: var(--bg-night); }
  .seasons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
    margin-top: 3rem;
  }
  @media (max-width: 760px) { .seasons-grid { grid-template-columns: 1fr; } }
  .season-card {
    padding: 2.75rem 2.25rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;
    transition: transform .3s ease, border-color .3s ease;
  }
  .season-card:hover { transform: translateY(-4px); }
  .season-card.halloween {
    background:
      radial-gradient(ellipse at top left, rgba(255, 139, 61, 0.18) 0%, transparent 60%),
      linear-gradient(160deg, #1a0f1e 0%, #0a1024 100%);
  }
  .season-card.halloween:hover { border-color: rgba(255, 139, 61, 0.4); }
  .season-card.christmas {
    background:
      radial-gradient(ellipse at top right, rgba(111, 182, 255, 0.18) 0%, transparent 60%),
      linear-gradient(160deg, #0a1429 0%, #0a1024 100%);
  }
  .season-card.christmas:hover { border-color: rgba(111, 182, 255, 0.4); }
  .season-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
  }
  .season-card.halloween .season-tag {
    background: rgba(255, 139, 61, 0.15);
    color: var(--halloween);
  }
  .season-card.christmas .season-tag {
    background: rgba(111, 182, 255, 0.15);
    color: var(--christmas);
  }
  .season-card h3 { font-size: 2rem; margin-bottom: 1rem; }
  .season-card p { color: var(--text-secondary); margin-bottom: 0; }
  .season-image {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 1.75rem;
    position: relative;
    box-shadow:
      0 12px 30px rgba(0, 0, 0, 0.5),
      0 0 0 1px rgba(255, 255, 255, 0.06);
  }
  .season-image img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* ---------- EXPERIENCE ---------- */
  .experience { background: linear-gradient(180deg, var(--bg-night) 0%, var(--bg-deep) 100%); }
  .section-header { max-width: 720px; margin-bottom: 3.5rem; }
  .section-header h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
  .section-header p { color: var(--text-secondary); font-size: 1.1rem; }
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
  }
  .feature {
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    transition: all .25s ease;
  }
  .feature:hover {
    background: var(--bg-card-hover);
    border-color: rgba(245, 198, 107, 0.25);
    transform: translateY(-3px);
  }
  .feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(245, 198, 107, 0.2), rgba(245, 198, 107, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--gold-glow);
    font-size: 1.3rem;
  }
  .feature h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
  .feature p { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 0; }

  /* ---------- WATCH THE SHOW ---------- */
  .watch { background: var(--bg-deep); }
  .video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 2.5rem;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-glow);
  }
  .video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
  .video-caption {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-top: 1.25rem;
    font-style: italic;
  }

  /* ---------- IN THE NEWS ---------- */
  .news { background: var(--bg-night); }
  .press-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
  }
  @media (max-width: 700px) { .press-grid { grid-template-columns: 1fr; } }
  .press-card {
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    transition: all .25s ease;
    display: flex;
    flex-direction: column;
  }
  .press-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(245, 198, 107, 0.3);
    transform: translateY(-3px);
  }
  .press-thumb {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: 1.25rem;
    display: block;
  }
  .press-source {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
  }
  .press-card h3 { font-size: 1.4rem; margin-bottom: 0.75rem; }
  .press-card p { color: var(--text-secondary); font-size: 0.95rem; flex: 1; }
  .press-card .btn { align-self: flex-start; margin-top: 0.5rem; padding: 0.65rem 1.25rem; font-size: 0.88rem; }

  /* ---------- TESTIMONIALS ---------- */
  .testimonials {
    background:
      radial-gradient(ellipse at center, rgba(245, 198, 107, 0.06) 0%, transparent 60%),
      var(--bg-deep);
  }
  .quote-carousel { position: relative; margin-top: 3rem; }
  .quote-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 0.5rem 0.25rem 1.5rem;
    scrollbar-width: none;
  }
  .quote-track::-webkit-scrollbar { display: none; }
  .quote-card {
    scroll-snap-align: center;
    flex: 0 0 min(520px, 84%);
    padding: 2.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    position: relative;
  }
  .quote-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 0.5rem;
  }
  .quote-dot {
    width: 9px; height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all .2s ease;
  }
  .quote-dot.active { background: var(--gold); transform: scale(1.3); }
  .quote-arrow {
    position: absolute;
    top: calc(50% - 0.75rem);
    transform: translateY(-50%);
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border-subtle);
    background: rgba(10, 16, 36, 0.75);
    color: var(--gold-glow);
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 3;
    transition: all .2s ease;
  }
  .quote-arrow:hover { border-color: var(--gold); background: var(--bg-elevated); }
  .quote-arrow.prev { left: -8px; }
  .quote-arrow.next { right: -8px; }
  @media (max-width: 760px) { .quote-arrow { display: none; } }

  /* ---------- FLOATING TESTIMONIAL BUBBLE ---------- */
  .tw {
    position: fixed;
    left: 24px;
    bottom: 30px;
    z-index: 90;
    width: min(320px, calc(100vw - 48px));
    opacity: 0;
    transform: translateY(14px) scale(0.96);
    transition: opacity .5s ease, transform .5s ease;
    pointer-events: none;
  }
  .tw.show { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
  .tw-bubble {
    position: relative;
    background: linear-gradient(160deg, var(--bg-elevated) 0%, var(--bg-night) 100%);
    border: 1px solid rgba(245, 198, 107, 0.3);
    border-radius: 20px;
    padding: 1.15rem 2.4rem 1.15rem 1.3rem;
    box-shadow:
      0 18px 45px rgba(0, 0, 0, 0.55),
      0 0 40px rgba(245, 198, 107, 0.12);
  }
  /* thought-bubble trailing circles */
  .tw-bubble::before,
  .tw-bubble::after {
    content: '';
    position: absolute;
    background: var(--bg-elevated);
    border: 1px solid rgba(245, 198, 107, 0.3);
    border-radius: 50%;
  }
  .tw-bubble::before { width: 15px; height: 15px; left: 26px; bottom: -9px; }
  .tw-bubble::after  { width: 8px;  height: 8px;  left: 18px; bottom: -20px; }
  .tw-eyebrow {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--gold);
    margin-bottom: 0.5rem;
  }
  .tw-text {
    margin: 0;
    color: var(--text-primary);
    font-size: 0.92rem;
    font-style: italic;
    line-height: 1.55;
    transition: opacity .35s ease;
  }
  .tw-close {
    position: absolute;
    top: 8px;
    right: 10px;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--text-muted);
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    transition: color .2s ease;
  }
  .tw-close:hover { color: var(--warm-white); }
  @media (max-width: 600px) { .tw { display: none; } }

  /* ---------- SHARE-A-TESTIMONIAL FORM ---------- */
  .tform-wrap { max-width: 640px; margin: 3.75rem auto 0; text-align: center; }
  .tform-title { font-size: 1.4rem; margin-bottom: 0.4rem; }
  .tform-sub { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 1.6rem; }
  .tform { display: flex; flex-direction: column; gap: 0.9rem; text-align: left; }
  .tform-row { display: flex; gap: 0.9rem; }
  .tform input, .tform textarea {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 0.8rem 1rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color .2s ease, background .2s ease;
  }
  .tform input::placeholder, .tform textarea::placeholder { color: var(--text-muted); }
  .tform input:focus, .tform textarea:focus { outline: none; border-color: var(--gold); background: var(--bg-card-hover); }
  .tform textarea { resize: vertical; min-height: 110px; }
  .tform-check { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.9rem; color: var(--text-secondary); cursor: pointer; text-align: left; }
  .tform-check input { width: auto; flex: 0 0 auto; margin-top: 0.15rem; accent-color: var(--gold); }
  .tform .btn { align-self: center; margin-top: 0.4rem; }
  /* honeypot — hidden from people, tempting to bots */
  .tform-hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; opacity: 0; }
  .tform-msg { margin-top: 1.1rem; font-size: 0.95rem; min-height: 1.2em; }
  .tform-msg.ok { color: #7ddf9a; }
  .tform-msg.err { color: #ff8a9a; }
  @media (max-width: 520px) { .tform-row { flex-direction: column; } }
  .quote-card::before {
    content: '"';
    position: absolute;
    top: 0.5rem;
    left: 1.5rem;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 5.5rem;
    color: var(--gold);
    opacity: 0.4;
    line-height: 1;
  }
  .quote-card p {
    color: var(--text-primary);
    font-style: italic;
    font-size: 1.08rem;
    line-height: 1.7;
    margin: 1.5rem 0 0;
    position: relative;
    z-index: 1;
  }
  .quote-cite {
    display: block;
    margin-top: 1rem;
    color: var(--gold);
    font-style: normal;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
  }

  /* ---------- PLAN YOUR VISIT ---------- */
  .visit { background: var(--bg-night); }
  .visit-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
    align-items: start;
  }
  @media (max-width: 800px) { .visit-grid { grid-template-columns: 1fr; } }
  .info-card {
    padding: 2.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
  }
  .info-card h3 {
    font-size: 1.25rem;
    color: var(--gold);
    margin-bottom: 0.6rem;
  }
  .info-card p { color: var(--text-secondary); font-size: 0.98rem; }
  .visit-address { color: var(--text-bright) !important; font-size: 1.1rem; margin-bottom: 0.9rem; letter-spacing: 0.01em; }
  .visit-directions { margin: 0 0 1.4rem; padding: 0.7rem 1.4rem; font-size: 0.9rem; }
  .visit-map-wrap { margin: 1.5rem auto 0; max-width: 620px; }
  .visit-map-wrap img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius);
    border: 1px solid var(--border-subtle);
  }
  .visit-map-wrap figcaption {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.85rem;
  }
  .qr-listen {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    margin: 1.25rem auto 0.25rem;
    background: #fff;
    padding: 0.7rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    transition: transform .2s ease, box-shadow .2s ease;
  }
  .qr-listen:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(245, 198, 107, 0.28); }
  .qr-listen img { width: 132px; height: 132px; display: block; }
  .qr-listen span {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #0a1024;
  }

  /* ---------- MISSION ---------- */
  .mission {
    text-align: center;
    padding: clamp(5rem, 12vw, 9rem) 0;
    background:
      radial-gradient(ellipse at center, rgba(245, 198, 107, 0.1) 0%, transparent 60%),
      linear-gradient(180deg, var(--bg-night) 0%, var(--bg-deep) 100%);
  }
  .mission-inner { max-width: 760px; margin: 0 auto; }
  .mission h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
  }
  .mission p {
    font-size: clamp(1.05rem, 1.6vw, 1.2rem);
    color: var(--text-secondary);
    line-height: 1.7;
  }

  /* ---------- DONATE ---------- */
  .donate {
    background:
      radial-gradient(ellipse at top, rgba(196, 30, 58, 0.12) 0%, transparent 55%),
      radial-gradient(ellipse at bottom, rgba(245, 198, 107, 0.08) 0%, transparent 55%),
      var(--bg-deep);
    padding: clamp(4rem, 9vw, 6.5rem) 0;
  }
  .donate-card {
    max-width: 880px;
    margin: 0 auto;
    padding: clamp(2.5rem, 5vw, 4rem);
    background: linear-gradient(160deg, rgba(196, 30, 58, 0.10) 0%, rgba(17, 25, 53, 0.6) 60%);
    border: 1px solid rgba(245, 198, 107, 0.25);
    border-radius: 24px;
    text-align: center;
    box-shadow:
      0 0 80px rgba(196, 30, 58, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
  }
  .donate-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(245, 198, 107, 0.08) 0%, transparent 50%);
    pointer-events: none;
  }
  .donate-card > * { position: relative; }
  .donate-card .eyebrow { color: #ff8a9a; }
  .donate-card h2 {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    margin-bottom: 1.25rem;
  }
  .donate-card h2 .accent {
    color: var(--gold-glow);
    filter: drop-shadow(0 0 16px rgba(245, 198, 107, 0.4));
  }
  .donate-card .lead {
    font-size: clamp(1.1rem, 1.5vw, 1.25rem);
    color: var(--text-primary);
    max-width: 640px;
    margin: 0 auto 1.25rem;
    line-height: 1.7;
  }
  .donate-card p.detail {
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto 1rem;
    font-size: 1rem;
  }
  .donate-meta {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 999px;
    font-size: 0.82rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
  }
  .donate-card .btn-row { justify-content: center; margin-top: 2.25rem; }

  /* ---------- FOOTER ---------- */
  footer {
    padding: 3rem 0 2rem;
    background: var(--bg-deep);
    border-top: 1px solid var(--border-subtle);
    text-align: center;
  }
  footer .brand { font-size: 1.6rem; margin-bottom: 0.5rem; display: block; }
  footer p { color: var(--text-muted); font-size: 0.9rem; margin: 0.5rem 0; }
  footer .footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    flex-wrap: wrap;
  }
  footer .footer-links a { color: var(--text-secondary); font-size: 0.92rem; }
  footer .copyright { color: var(--text-muted); font-size: 0.82rem; margin-top: 2rem; }

  /* ---------- DIVIDER ---------- */
  .divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
    margin: 0;
  }
