﻿    /* ── TOKENS ─────────────────────────────── */
    :root {
      --gold: #FFCD00;
      --gold-mid: #E6B800;
      --gold-stroke: #FFCD00;
      --ink: #0D0E10;
      --ink-soft: #2A2B2E;
      --paper: #FAFAF8;
      --paper-alt: #F3F2EF;
      --mist: #E8E7E3;
      --dim: #7A7974;
      --white: #FFFFFF;
      --dark-panel: #111214;
      --dark-panel-2: #1A1B1E;
      --black-translucent: rgba(0, 0, 0, 0.72);
      --hero-ink: rgba(13, 14, 16, 0.92);
      --hero-ink-soft: rgba(13, 14, 16, 0.78);
      --rad: 3px;
      --rad-lg: 8px;

      /* Shared with css/scoreboard.js + scoreboard.css (LED ticker / panel) */
      --sb-gold: #ffcd00;
      --sb-black: #08080a;
      --sb-dark: #0d0d10;
      --sb-mid: #14151a;
      --sb-surface: #1a1b21;
      --sb-border: rgba(255, 205, 0, 0.18);
      --sb-border-dim: rgba(255, 205, 0, 0.07);
      --sb-text: #f0f0f0;
      --sb-muted: rgba(240, 240, 240, 0.42);
      --sb-green: #22c55e;
      --sb-green-glow: rgba(34, 197, 94, 0.18);
      --sb-gold-glow: rgba(255, 205, 0, 0.35);
      --sb-mono: 'DM Mono', ui-monospace, monospace;

      font-size: 16px;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--paper);
      color: var(--ink);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    /* ── REVEAL ANIMATIONS ──────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
                  transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.08s; }
    .reveal-delay-2 { transition-delay: 0.16s; }
    .reveal-delay-3 { transition-delay: 0.24s; }
    .reveal-delay-4 { transition-delay: 0.32s; }
    .reveal-left {
      opacity: 0;
      transform: translateX(-24px);
      transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                  transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal-left.visible { opacity: 1; transform: translateX(0); }
    .reveal-scale {
      opacity: 0;
      transform: scale(0.94);
      transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
                  transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal-scale.visible { opacity: 1; transform: scale(1); }

    /* ── NAV ────────────────────────────────── */
    .nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(250, 250, 248, 0.9);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1.5px solid var(--mist);
    }
    .nav-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
      height: 74px;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 2rem;
    }
    .nav-brand {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      text-decoration: none;
      margin-right: auto;
    }
    .nav-brand-badge {
      width: 54px;
      height: 54px;
      flex-shrink: 0;
      background: var(--gold);
      border-radius: 50%;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid rgba(0, 0, 0, 0.06);
    }
    .nav-brand-badge .large-logo,
    .nav-brand-badge img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 20%;
      display: block;
    }
    .nav-brand-name {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 0.9rem;
      letter-spacing: -0.02em;
      color: var(--ink);
      text-transform: uppercase;
      line-height: 1.1;
    }
    .nav-brand-sub {
      font-family: 'DM Mono', monospace;
      font-size: 0.55rem;
      letter-spacing: 0.06em;
      color: var(--dim);
      text-transform: uppercase;
      display: block;
      font-weight: 400;
      margin-top: 1px;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 0.25rem;
      list-style: none;
    }
    .nav-links a {
      font-family: 'Syne', sans-serif;
      font-weight: 600;
      font-size: 0.8rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--dim);
      text-decoration: none;
      padding: 0.4rem 0.75rem;
      border-radius: var(--rad);
      transition: color 0.2s, background 0.2s;
    }
    .nav-links a:hover { color: var(--ink); background: var(--mist); }
    .nav-links a.active { color: var(--ink); }
    .nav-cta {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 0.75rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      background: var(--gold);
      color: var(--ink);
      padding: 0.5rem 1.1rem;
      border-radius: var(--rad);
      text-decoration: none;
      transition: background 0.2s, transform 0.15s;
      white-space: nowrap;
    }
    .nav-cta:hover { background: var(--gold-mid); transform: translateY(-1px); }
    @media (max-width: 700px) {
      .nav-links { display: none; }
    }

    /* ── HERO ───────────────────────────────── */
    .hero {
      width: 100vw;
      max-width: 100vw;
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
      box-sizing: border-box;
      background-color: #0a0a0c;
      padding: 5rem clamp(1.25rem, 4vw, 2rem) 4rem;
      position: relative;
      overflow: hidden;
      min-height: clamp(22rem, 68vh, 44rem);
    }
    .hero-bg-video {
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden;
    }
    .hero-bg-video .hero-video,
    .hero-bg-video .hero-fallback-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }
    .hero-bg-video .hero-video {
      filter: brightness(0.72) saturate(1.05);
    }
    .hero-bg-video .hero-fallback-img {
      filter: brightness(0.7) saturate(1.05);
    }
    .hero-video.hero-video--hidden {
      display: none;
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      background: linear-gradient(
        105deg,
        rgba(250, 250, 248, 0.88) 0%,
        rgba(250, 250, 248, 0.42) 38%,
        rgba(13, 14, 16, 0.22) 68%,
        rgba(13, 14, 16, 0.55) 100%
      );
    }
    .hero::before {
      content: '';
      position: absolute;
      top: -60px; right: -80px;
      width: 420px; height: 420px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,205,0,0.08) 0%, transparent 70%);
      pointer-events: none;
      z-index: 2;
    }
    .hero::after {
      content: '';
      position: absolute;
      bottom: -40px; left: -60px;
      width: 280px; height: 280px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,205,0,0.05) 0%, transparent 70%);
      pointer-events: none;
      z-index: 2;
    }
    @media (prefers-reduced-motion: reduce) {
      .hero-bg-video {
        display: none;
      }
      .hero-overlay {
        display: none;
      }
      .hero {
        background-image:
          linear-gradient(
            105deg,
            rgba(250, 250, 248, 0.88) 0%,
            rgba(250, 250, 248, 0.42) 38%,
            rgba(13, 14, 16, 0.22) 68%,
            rgba(13, 14, 16, 0.55) 100%
          ),
          url('images/kinnick.webp');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
      }
    }
    .hero-inner {
      position: relative;
      z-index: 3;
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 4rem;
      align-items: center;
    }
    .hero-eyebrow {
      font-family: 'DM Mono', monospace;
      font-size: 0.68rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--hero-ink-soft);
      font-weight: 500;
      margin-bottom: 1.25rem;
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }
    .hero-eyebrow::before {
      content: '';
      display: inline-block;
      width: 24px; height: 2px;
      background: var(--gold);
    }
    .hero-headline {
      font-family: Anton, sans-serif;
      font-weight: 800;
      font-size: clamp(3.75rem, 10vw, 7.75rem);
      line-height: 0.86;
      letter-spacing: -0.045em;
      text-transform: uppercase;
      margin: 0 0 1.35rem;
    }
    .hero-headline .stroke-text {
      color: #fff;
      -webkit-text-stroke: 0;
      display: block;
      text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.35),
        0 4px 24px rgba(0, 0, 0, 0.2);
    }
    .hero-headline .solid-text {
      color: var(--ink);
      display: block;
      text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9),
        0 2px 24px rgba(255, 255, 255, 0.45),
        0 6px 40px rgba(0, 0, 0, 0.12);
    }
    .hero-headline .gold-text {
      color: var(--gold);
      display: block;
      text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.35),
        0 3px 28px rgba(255, 205, 0, 0.35),
        0 8px 40px rgba(0, 0, 0, 0.15);
    }
    .hero-body {
      font-family: 'DM Sans', sans-serif;
      font-size: clamp(1.05rem, 1.9vw, 1.2rem);
      font-weight: 500;
      line-height: 1.65;
      letter-spacing: 0.01em;
      color: #d4d3cf;
      max-width: 32rem;
      margin-bottom: 2rem;
    }
    .hero-actions {
      display: flex;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .btn-primary {
      font-family: Anton, sans-serif;
      font-weight: 700;
      font-size: 0.82rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      background: var(--ink);
      color: var(--white);
      padding: 0.85rem 2rem;
      border-radius: var(--rad);
      text-decoration: none;
      transition: background 0.2s, transform 0.15s;
    }
    .btn-primary:hover { background: var(--ink-soft); transform: translateY(-2px); }
    .btn-secondary {
      font-family: Anton, sans-serif;
      font-weight: 600;
      font-size: 0.82rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--ink);
      border-bottom: 2px solid var(--gold);
      text-decoration: none;
      padding-bottom: 1px;
      transition: color 0.2s;
    }
    .btn-secondary:hover { color: var(--dim); }

    /* Hero stat blocks */
    .hero-stats {
      display: flex;
      flex-direction: column;
      gap: 1px;
      flex-shrink: 0;
    }
    .hstat {
      background: var(--paper-alt);
      border: 1.5px solid var(--mist);
      border-radius: var(--rad-lg);
      padding: 1.25rem 1.5rem;
      min-width: 140px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .hstat::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: var(--gold);
    }
    .hstat-num {
      font-family: Anton, sans-serif;
      font-weight: 800;
      font-size: 2.4rem;
      line-height: 1;
      letter-spacing: -0.04em;
      color: var(--ink);
      margin-bottom: 0.2rem;
    }
    .hstat-label {
      font-family: 'DM Mono', monospace;
      font-size: 0.58rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--dim);
    }
    @media (max-width: 860px) {
      .hero-inner { grid-template-columns: 1fr; }
      .hero-stats { flex-direction: row; flex-wrap: wrap; justify-content: flex-start; }
      .hstat { min-width: 110px; }
    }

    /* ── SECTION WRAPPER ────────────────────── */
    .section-wrap {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
    }
    .section-label {
      font-family: 'DM Mono', monospace;
      font-size: 0.6rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--dim);
      margin-bottom: 0.6rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .section-label::before {
      content: '';
      width: 20px; height: 2px;
      background: var(--gold);
    }
    .section-title {
      font-family: Anton, sans-serif;
      font-weight: 800;
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      letter-spacing: -0.03em;
      line-height: 1;
      color: var(--ink);
    }

    /* ── GEOMETRIC STAT BLOCKS ──────────────── */
    .stats-section {
      background: var(--paper-alt);
      border-top: 1.5px solid var(--mist);
      border-bottom: 1.5px solid var(--mist);
      padding: 4rem 2rem;
      margin: 0;
    }
    .stats-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5px;
      background: var(--mist);
      border: 1.5px solid var(--mist);
      border-radius: var(--rad-lg);
      overflow: hidden;
    }
    .stat-block {
      background: var(--white);
      padding: 2.25rem 2rem;
      position: relative;
    }
    .stat-block::before {
      content: attr(data-index);
      position: absolute;
      top: 1.25rem; right: 1.5rem;
      font-family: Anton, sans-serif;
      font-weight: 800;
      font-size: 4.5rem;
      color: rgba(0,0,0,0.04);
      line-height: 1;
      letter-spacing: -0.06em;
    }
    .stat-block-icon {
      width: 36px; height: 36px;
      background: var(--gold);
      border-radius: var(--rad);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.25rem;
    }
    .stat-block-icon svg { width: 18px; height: 18px; }
    .stat-block-number {
      font-family: Anton, sans-serif;
      font-weight: 800;
      font-size: 2.8rem;
      letter-spacing: -0.05em;
      line-height: 1;
      color: var(--ink);
      margin-bottom: 0.35rem;
    }
    .stat-block-label {
      font-family: 'DM Sans', sans-serif;
      font-weight: 500;
      font-size: 0.85rem;
      color: var(--dim);
      line-height: 1.4;
    }
    .stat-block-sub {
      font-family: 'DM Mono', monospace;
      font-size: 0.6rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold-mid);
      margin-top: 0.5rem;
    }
    @media (max-width: 760px) {
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 440px) {
      .stats-grid { grid-template-columns: 1fr; }
    }

    /* ── SPORTS CARDS ───────────────────────── */
    .sports-section {
      padding: 5rem 2rem;
      background: var(--white);
    }
    .sports-header {
      max-width: 1200px;
      margin: 0 auto 3rem;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 2rem;
    }
    .sports-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5px;
      background: var(--mist);
      border: 1.5px solid var(--mist);
      border-radius: var(--rad-lg);
      overflow: hidden;
    }
    .sport-card {
      background: var(--white);
      padding: 2.5rem 2rem;
      cursor: pointer;
      text-decoration: none;
      color: inherit;
      position: relative;
      transition: background 0.2s;
      display: block;
    }
    .sport-card:hover { background: #fefefe; }
    .sport-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: var(--mist);
      transition: background 0.2s;
    }
    .sport-card:hover::before { background: var(--gold); }
    .sport-card-sport {
      font-family: 'DM Mono', monospace;
      font-size: 0.6rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--dim);
      margin-bottom: 0.75rem;
    }
    .sport-card-title {
      font-family: Anton, sans-serif;
      font-weight: 800;
      font-size: 1.5rem;
      letter-spacing: -0.03em;
      line-height: 1.05;
      color: var(--ink);
      margin-bottom: 0.9rem;
    }
    .sport-card-record {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: var(--paper-alt);
      border: 1.5px solid var(--mist);
      border-radius: 99px;
      padding: 0.3rem 0.75rem;
      font-family: Anton, sans-serif;
      font-weight: 700;
      font-size: 0.75rem;
      letter-spacing: 0.04em;
      color: var(--ink);
      margin-bottom: 1.25rem;
    }
    .sport-card-record .dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--gold);
    }
    .sport-card-desc {
      font-size: 0.88rem;
      line-height: 1.6;
      color: var(--dim);
      margin-bottom: 1.75rem;
    }
    .sport-card-link {
      font-family: Anton, sans-serif;
      font-weight: 700;
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--ink);
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }
    .sport-card-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
    .sport-card:hover .sport-card-link svg { transform: translateX(3px); }
    @media (max-width: 760px) {
      .sports-grid { grid-template-columns: 1fr; }
    }

    /* Score ticker (css/scoreboard.css) — full-bleed strip between hero & sections */
    .sb-ticker-outer {
      grid-column: unset;
      margin-bottom: 0;
      max-width: none;
    }

    /* ── PULLOUT QUOTE (full-bleed band + centered inner, mirrors why-join) ── */
    .pullout-quote {
      background: var(--gold);
      color: var(--ink);
      padding: 3rem 1.5rem;
      position: relative;
      overflow: hidden;
      margin: 0;
      clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), calc(100% - 24px) 100%, 0 100%);
    }
    @media (min-width: 768px) {
      .pullout-quote {
        padding: 4rem 2rem;
      }
    }
    .pullout-quote-inner {
      max-width: 1100px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
    }
    .pullout-quote::before {
      content: '❝';
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      top: -1.5rem;
      font-size: 12rem;
      opacity: 0.08;
      line-height: 1;
      font-family: serif;
      z-index: 0;
      pointer-events: none;
    }
    .pullout-quote blockquote {
      font-family: Anton, sans-serif;
      font-size: clamp(1.8rem, 4.5vw, 3.2rem);
      line-height: 1.1;
      margin: 0;
      max-width: 1000px;
      text-transform: uppercase;
      letter-spacing: -1px;
    }
    .pullout-quote cite {
      display: block;
      margin-top: 1.2rem;
      font-family: Antonio, sans-serif;
      font-size: 0.9rem;
      letter-spacing: 3px;
      font-weight: 700;
      opacity: 0.7;
      font-style: normal;
      text-transform: uppercase;
    }

    /* ── CONTACT STRIP ──────────────────────── */
    .contact-strip {
      background: var(--white);
      border-top: 1.5px solid var(--mist);
      border-bottom: 1.5px solid var(--mist);
      padding: 4rem 2rem;
      scroll-margin-top: 84px;
    }
    .contact-strip-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
    }
    .contact-tagline {
      font-family: Anton, sans-serif;
      font-weight: 800;
      font-size: clamp(2rem, 4vw, 3.2rem);
      letter-spacing: -0.04em;
      line-height: 0.95;
      color: var(--ink);
    }
    .contact-tagline em {
      font-style: normal;
      -webkit-text-stroke: 2px var(--gold-stroke);
      color: transparent;
    }
    .contact-form-row {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
    .contact-input {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem;
      color: var(--ink);
      background: var(--paper-alt);
      border: 1.5px solid var(--mist);
      border-radius: var(--rad);
      padding: 0.75rem 1rem;
      outline: none;
      transition: border-color 0.2s;
      width: 100%;
    }
    .contact-input::placeholder { color: var(--dim); }
    .contact-input:focus { border-color: var(--gold); }
    .contact-submit {
      font-family: Anton, sans-serif;
      font-weight: 700;
      font-size: 0.8rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      background: var(--gold);
      color: var(--ink);
      border: none;
      border-radius: var(--rad);
      padding: 0.85rem 2rem;
      cursor: pointer;
      align-self: flex-start;
      transition: background 0.2s, transform 0.15s;
    }
    .contact-submit:hover { background: var(--gold-mid); transform: translateY(-1px); }
    @media (max-width: 720px) {
      .contact-strip-inner { grid-template-columns: 1fr; gap: 2rem; }
      .sports-header { flex-direction: column; align-items: flex-start; }
    }

    /* ── FOOTER ─────────────────────────────── */
    .footer {
      background: var(--ink);
      padding: 4rem 2rem 2rem;
    }
    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr auto;
      gap: 3rem;
      padding-bottom: 3rem;
      border-bottom: 1.5px solid rgba(255,255,255,0.06);
      align-items: start;
    }
    .footer-logo-wrap {
      justify-self: end;
      align-self: start;
      width: 86px;
      height: 86px;
      border-radius: 50%;
      overflow: hidden;
      border: 2px solid rgba(255, 205, 0, 0.4);
      background: #000;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    }
    .footer-herky-logo {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .footer-brand-name {
      font-family: Anton, sans-serif;
      font-weight: 800;
      font-size: 1.1rem;
      letter-spacing: -0.02em;
      color: var(--white);
      margin-bottom: 0.35rem;
    }
    .footer-brand-sub {
      font-family: 'DM Mono', monospace;
      font-size: 0.58rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.3);
      margin-bottom: 1.25rem;
    }
    .footer-desc {
      font-size: 0.85rem;
      line-height: 1.65;
      color: rgba(255,255,255,0.4);
      max-width: 320px;
    }
    .footer-col-title {
      font-family: 'DM Mono', monospace;
      font-size: 0.6rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255,205,0,0.6);
      margin-bottom: 1.25rem;
    }
    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.55rem;
    }
    .footer-links a {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.45);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--white); }
    .footer-contact-name {
      font-family: Anton, sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      color: var(--white);
      margin-bottom: 0.2rem;
    }
    .footer-contact-detail {
      font-family: 'DM Mono', monospace;
      font-size: 0.7rem;
      letter-spacing: 0.08em;
      color: rgba(255,255,255,0.35);
      margin-bottom: 1.25rem;
    }
    .footer-donate-btn {
      display: inline-block;
      font-family: Anton, sans-serif;
      font-weight: 700;
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      background: var(--gold);
      color: var(--ink);
      padding: 0.6rem 1.25rem;
      border-radius: var(--rad);
      text-decoration: none;
      transition: background 0.2s;
    }
    .footer-donate-btn:hover { background: var(--gold-mid); }
    .footer-bottom {
      max-width: 1200px;
      margin: 2rem auto 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }
    .footer-copy {
      font-family: 'DM Mono', monospace;
      font-size: 0.6rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.2);
    }
    @media (max-width: 760px) {
      .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
      .footer-logo-wrap { justify-self: center; margin-top: 0.5rem; }
      .footer-bottom { flex-direction: column; text-align: center; }
    }

    /* ── SCROLL TO TOP ──────────────────────── */
    #scroll-top {
      position: fixed;
      bottom: 1.75rem;
      right: 1.75rem;
      width: 40px; height: 40px;
      background: var(--ink);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      border: none;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s, transform 0.2s;
      z-index: 50;
    }
    #scroll-top.visible { opacity: 1; pointer-events: all; }
    #scroll-top:hover { transform: translateY(-2px); }
    #scroll-top svg { width: 16px; height: 16px; }
