/* ═══════════════════════════════════════════════════════════
   GEORGIA GENERALS BASEBALL — "Friday Night Lights" theme
   ═══════════════════════════════════════════════════════════ */

:root {
  --navy-900: #060b16;
  --navy-800: #0a1426;
  --navy-700: #10203c;
  --navy-500: #1b2f55;
  --navy-300: #3d5a8f;
  --red-600: #b31228;
  --red-500: #c8102e;
  --red-400: #e5203f;
  --silver: #c9d2de;
  --cream: #f3ede0;
  --gold: #b9945a;

  --font-script: "Yellowtail", cursive;
  --font-display: "Alfa Slab One", serif;
  --font-label: "Graduate", serif;
  --font-cond: "Barlow Condensed", sans-serif;
  --font-body: "Barlow", sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-slam: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--navy-900);
  color: var(--cream);
  font-family: var(--font-body);
  overflow-x: hidden;
}

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

::selection { background: var(--red-500); color: #fff; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  padding: 0.85em 1.8em;
  border: 2px solid transparent;
  position: relative;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out),
    background 0.25s, color 0.25s, border-color 0.25s;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}
.btn--red {
  background: linear-gradient(160deg, var(--red-400), var(--red-600));
  color: #fff;
  box-shadow: 0 6px 24px rgba(200, 16, 46, 0.35);
}
.btn--red:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(200, 16, 46, 0.5);
}
.btn--ghost {
  border-color: rgba(201, 210, 222, 0.4);
  color: var(--silver);
  background: rgba(6, 11, 22, 0.35);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  border-color: var(--cream);
  color: #fff;
  transform: translateY(-3px);
}
.btn--lg { font-size: 0.95rem; padding: 1em 2.2em; }

.star { color: var(--red-500); }

/* ── Ticker ──────────────────────────────────────────────── */
.ticker {
  background: var(--red-500);
  color: #fff;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 60;
}
.ticker__track {
  display: flex;
  gap: 3rem;
  width: max-content;
  padding: 0.42em 0;
  animation: ticker 28s linear infinite;
}
.ticker__item {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  white-space: nowrap;
}
@keyframes ticker {
  to { transform: translateX(-33.333%); }
}

/* ── Nav ─────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 0.9rem clamp(1.2rem, 4vw, 3rem);
  background: linear-gradient(180deg, rgba(6, 11, 22, 0.92), rgba(6, 11, 22, 0.75));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 210, 222, 0.08);
}
.nav__brand { display: flex; align-items: center; gap: 0.8rem; }
.nav__emblem {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
  transition: transform 0.35s var(--ease-slam);
}
.nav__brand:hover .nav__emblem { transform: rotate(-6deg) scale(1.08); }
.nav__wordmark { display: flex; flex-direction: column; line-height: 1; }
.nav__wordmark-script {
  font-family: var(--font-script);
  font-size: 1rem;
  color: var(--red-400);
  transform: rotate(-3deg);
  margin-bottom: -2px;
}
.nav__wordmark-main {
  font-family: var(--font-label);
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  color: var(--cream);
}
.nav__links {
  display: flex;
  gap: 1.8rem;
  margin-left: auto;
}
.nav__links a {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
  position: relative;
  padding: 0.3em 0;
  transition: color 0.25s;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--red-500);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease-out);
}
.nav__links a:hover,
.nav__links a.is-active { color: #fff; }
.nav__links a:hover::after,
.nav__links a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav__burger { display: none; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - 110px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; overflow: hidden; }
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 30s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenburns {
  from { transform: scale(1) translateY(0); }
  to { transform: scale(1.12) translateY(-2%); }
}

/* Floodlight sweeps */
.hero__beam {
  position: absolute;
  top: -30%;
  width: 34%;
  height: 130%;
  background: linear-gradient(
    to bottom,
    rgba(243, 237, 224, 0.14),
    rgba(243, 237, 224, 0.03) 55%,
    transparent 80%
  );
  filter: blur(18px);
  mix-blend-mode: screen;
  pointer-events: none;
}
.hero__beam--left {
  left: 4%;
  transform-origin: top center;
  animation: sweepL 11s ease-in-out infinite alternate;
}
.hero__beam--right {
  right: 4%;
  transform-origin: top center;
  animation: sweepR 13s ease-in-out infinite alternate;
}
@keyframes sweepL {
  from { transform: rotate(-14deg); opacity: 0.5; }
  50% { opacity: 0.95; }
  to { transform: rotate(10deg); opacity: 0.6; }
}
@keyframes sweepR {
  from { transform: rotate(12deg); opacity: 0.6; }
  50% { opacity: 1; }
  to { transform: rotate(-10deg); opacity: 0.45; }
}

.hero__vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 38%, transparent 30%, rgba(6, 11, 22, 0.55) 78%, rgba(6, 11, 22, 0.92)),
    linear-gradient(180deg, rgba(6, 11, 22, 0.55), transparent 30%, transparent 55%, rgba(6, 11, 22, 0.97) 96%);
}
.hero__grain {
  position: absolute;
  inset: -100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.07;
  animation: grain 0.9s steps(4) infinite;
  pointer-events: none;
}
@keyframes grain {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 3%); }
  50% { transform: translate(3%, -2%); }
  75% { transform: translate(-3%, -3%); }
  100% { transform: translate(2%, 2%); }
}

.hero__inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(2rem, 6vh, 5rem) clamp(1.2rem, 5vw, 4.5rem) 1rem;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.hero__copy { max-width: 640px; }

.hero__eyebrow {
  font-family: var(--font-label);
  font-size: clamp(0.7rem, 1.1vw, 0.85rem);
  letter-spacing: 0.3em;
  color: var(--silver);
  margin-bottom: 0.6rem;
}

.hero__title { display: flex; flex-direction: column; }

.hero__script {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  color: var(--red-400);
  transform: rotate(-4deg);
  margin-bottom: -0.35em;
  margin-left: 0.15em;
  text-shadow: 0 4px 24px rgba(200, 16, 46, 0.35), 2px 2px 0 rgba(6, 11, 22, 0.8);
  z-index: 2;
}

.hero__main {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 9.5vw, 8rem);
  line-height: 0.95;
  color: var(--cream);
  letter-spacing: 0.01em;
  display: flex;
}
.hero__main .ltr {
  display: inline-block;
  opacity: 0;
  transform: translateY(-1.2em) rotate(6deg) scale(1.25);
  animation: slam 0.55s var(--ease-slam) forwards;
  animation-delay: calc(0.45s + var(--i) * 0.07s);
  text-shadow:
    0 1px 0 #8d94a0,
    0 3px 0 #565d68,
    0 6px 0 #2a3038,
    0 10px 18px rgba(0, 0, 0, 0.65),
    0 0 42px rgba(200, 16, 46, 0.25);
}
@keyframes slam {
  60% { opacity: 1; transform: translateY(0.06em) rotate(-1deg) scale(0.98); }
  100% { opacity: 1; transform: translateY(0) rotate(0) scale(1); }
}

.hero__sub {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-label);
  font-size: clamp(1rem, 2.2vw, 1.6rem);
  letter-spacing: 0.52em;
  text-indent: 0.52em;
  color: var(--red-400);
  margin-top: 0.55em;
}
.hero__sub-rule {
  flex: 0 0 clamp(2rem, 6vw, 5rem);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red-500));
}
.hero__sub-rule:last-child {
  background: linear-gradient(90deg, var(--red-500), transparent);
}

.hero__tag {
  font-family: var(--font-cond);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 400;
  color: var(--silver);
  max-width: 32ch;
  margin-top: 1.6rem;
  line-height: 1.5;
}
.hero__tag em {
  color: var(--cream);
  font-style: italic;
  border-bottom: 2px solid var(--red-500);
}

.hero__actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* Emblem */
.hero__emblem-wrap {
  position: relative;
  flex: 0 0 clamp(260px, 30vw, 430px);
  perspective: 1100px;
}
.hero__emblem-wrap::after,
.footer__mascot::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: -9%;
  height: 9%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.6), transparent 70%);
  filter: blur(7px);
  pointer-events: none;
}
.hero__emblem-glow {
  position: absolute;
  inset: 16%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 16, 46, 0.35), rgba(27, 47, 85, 0.28) 50%, transparent 66%);
  filter: blur(26px);
  animation: pulse 4.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scale(0.96); }
  50% { opacity: 0.85; transform: scale(1.04); }
}
.hero__emblem {
  position: relative;
  width: 100%;
  aspect-ratio: 1177 / 855;
  transform-style: preserve-3d;
  animation: float 6s ease-in-out infinite;
}

/* ── 3D "coin" stack: layered copies give the logo real thickness.
     NOTE: never put `filter` on .coin3d — it flattens preserve-3d. ── */
.coin3d {
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
}
.coin3d__layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}
.coin3d__layer--rim {
  filter: brightness(0.3) saturate(0.65) contrast(1.05);
}
.coin3d__layer--back {
  filter: brightness(0.8);
}
@keyframes float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -14px; }
}
.reveal-emblem {
  opacity: 0;
  animation: emblemIn 1s var(--ease-slam) 0.7s forwards;
}
@keyframes emblemIn {
  from { opacity: 0; transform: translateY(-60px) scale(0.7) rotate(8deg); }
  to { opacity: 1; transform: translateY(0) scale(1) rotate(0); }
}

/* Stat bar */
.hero__stats {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin: 0 auto;
  margin-bottom: 3.4rem;
  border: 1px solid rgba(201, 210, 222, 0.14);
  background: rgba(6, 11, 22, 0.55);
  backdrop-filter: blur(14px);
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}
.stat {
  padding: 1.1rem 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  border-right: 1px solid rgba(201, 210, 222, 0.12);
}
.stat:last-child { border-right: none; }
.stat__label {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(201, 210, 222, 0.65);
}
.stat__value {
  font-family: var(--font-label);
  font-size: 1.25rem;
  color: var(--cream);
}
.countdown { display: flex; align-items: baseline; gap: 0.45rem; }
.countdown b {
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--cream);
  font-variant-numeric: tabular-nums;
}
.countdown i {
  font-family: var(--font-cond);
  font-style: normal;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(201, 210, 222, 0.6);
  margin-left: 0.2rem;
}
.countdown__sep { color: var(--red-500); }
.countdown span { display: inline-flex; align-items: baseline; }

/* ── Reveal animations ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: rise 0.8s var(--ease-out) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}
.reveal-scroll {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal-scroll.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ── About ───────────────────────────────────────────────── */
.about {
  background: var(--navy-900);
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(3.5rem, 9vh, 6.5rem) clamp(1.2rem, 5vw, 4.5rem) clamp(1.5rem, 4vh, 3rem);
}
.about__inner {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.about__lead {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  color: var(--cream);
  line-height: 1.5;
  margin-top: 1.4rem;
  max-width: 46ch;
}
.about__body {
  font-size: 1.02rem;
  color: var(--silver);
  line-height: 1.75;
  margin-top: 1rem;
  max-width: 58ch;
}
.about__plaque {
  position: relative;
  border: 1px solid rgba(201, 210, 222, 0.16);
  background:
    radial-gradient(ellipse 120% 100% at 50% 0%, rgba(27, 47, 85, 0.5), transparent 70%),
    linear-gradient(160deg, var(--navy-700), var(--navy-800));
  padding: clamp(2rem, 4vw, 3.2rem) clamp(1.6rem, 3vw, 2.6rem);
  text-align: center;
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
  transform: rotate(-1.5deg);
  transition: transform 0.35s var(--ease-out);
}
.about__plaque:hover { transform: rotate(0deg) scale(1.02); }
.about__plaque-star {
  color: var(--red-500);
  font-size: 1.4rem;
  display: block;
  margin-bottom: 0.6rem;
}
.about__quote { display: flex; flex-direction: column; gap: 0.15em; }
.about__quote-script {
  font-family: var(--font-script);
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  color: var(--cream);
  transform: rotate(-2deg);
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.5);
}
.about__quote-script:nth-child(2) { color: var(--red-400); }
.about__quote-fivec {
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  line-height: 1.9;
  color: var(--silver);
  margin-top: 1.1rem;
}
.about__quote-attr {
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  color: rgba(201, 210, 222, 0.6);
  margin-top: 1.2rem;
}

/* ── Pillars ─────────────────────────────────────────────── */
.pillars {
  background: var(--navy-900);
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(3rem, 8vh, 5.5rem) clamp(1.2rem, 5vw, 4.5rem);
}
.pillars__head { margin-bottom: 2.4rem; }
.pillars__intro {
  font-family: var(--font-cond);
  font-size: 1.12rem;
  color: var(--silver);
  line-height: 1.6;
  max-width: 56ch;
  margin-top: 1rem;
}
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
}
.pillar {
  position: relative;
  overflow: hidden;
  padding: 2.2rem 1.8rem 2rem;
  background: linear-gradient(165deg, var(--navy-700), var(--navy-800));
  border: 1px solid rgba(201, 210, 222, 0.1);
  border-top: 3px solid var(--red-500);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
  transition: transform 0.35s var(--ease-out), border-color 0.35s;
}
.pillar:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 16, 46, 0.45);
}
.pillar__num {
  position: absolute;
  top: 0.2rem;
  right: 0.9rem;
  font-family: var(--font-display);
  font-size: 4.6rem;
  line-height: 1;
  color: rgba(201, 210, 222, 0.07);
  transition: color 0.35s;
}
.pillar:hover .pillar__num { color: rgba(200, 16, 46, 0.16); }
.pillar__icon {
  width: 40px;
  height: 40px;
  color: var(--red-400);
  margin-bottom: 1.1rem;
}
.pillar__name {
  font-family: var(--font-label);
  font-size: 1.3rem;
  letter-spacing: 0.16em;
  color: var(--cream);
  margin-bottom: 0.7rem;
}
.pillar__name::after {
  content: "";
  display: block;
  width: 2.4rem;
  height: 2px;
  background: var(--red-500);
  margin-top: 0.55rem;
  transition: width 0.35s var(--ease-out);
}
.pillar:hover .pillar__name::after { width: 4.2rem; }
.pillar__credo {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--cream);
  line-height: 1.4;
  margin-bottom: 0.7rem;
}
.pillar__text {
  font-size: 0.95rem;
  color: var(--silver);
  line-height: 1.65;
}
.pillar__standard {
  margin-top: 1.1rem;
  padding-top: 0.9rem;
  border-top: 1px dashed rgba(201, 210, 222, 0.16);
  font-family: var(--font-cond);
  font-size: 0.92rem;
  font-style: italic;
  color: var(--silver);
  line-height: 1.45;
}
.pillar__standard b {
  display: block;
  font-family: var(--font-label);
  font-style: normal;
  font-weight: 400;
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  color: var(--red-400);
  margin-bottom: 0.3rem;
}

/* ── Up Next ─────────────────────────────────────────────── */
.upnext {
  background: var(--navy-900);
  padding: clamp(3rem, 8vh, 6rem) clamp(1.2rem, 5vw, 4.5rem) clamp(3rem, 8vh, 5rem);
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  overflow: visible;
}
.upnext__watermark {
  position: absolute;
  top: 50%;
  right: clamp(-14rem, -12vw, -4rem);
  width: clamp(320px, 42vw, 620px);
  margin-top: calc(clamp(320px, 42vw, 620px) / -2.6);
  opacity: 0.055;
  filter: grayscale(35%) brightness(1.6);
  pointer-events: none;
  user-select: none;
  will-change: transform;
  z-index: 0;
}
.upnext__head,
.upnext__grid,
.upnext__more {
  position: relative;
  z-index: 1;
}
.section-eyebrow {
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--silver);
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  color: var(--cream);
  line-height: 1.05;
  text-shadow: 0 2px 0 #565d68, 0 5px 14px rgba(0, 0, 0, 0.5);
}
.upnext__head { margin-bottom: 2.4rem; }
.upnext__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}
.game {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.4rem 1.5rem;
  background: linear-gradient(160deg, var(--navy-700), var(--navy-800));
  border: 1px solid rgba(201, 210, 222, 0.1);
  position: relative;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  transition: transform 0.3s var(--ease-out), border-color 0.3s;
}
.game:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 16, 46, 0.5);
}
.game__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-label);
  color: var(--red-400);
  border-right: 1px dashed rgba(201, 210, 222, 0.2);
  padding-right: 1.2rem;
}
.game__date b { font-size: 0.7rem; letter-spacing: 0.2em; font-weight: 400; }
.game__date span { font-size: 1.8rem; color: var(--cream); }
.game__vs {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.game__meta {
  font-family: var(--font-cond);
  font-size: 0.9rem;
  color: rgba(201, 210, 222, 0.65);
  margin-top: 0.2rem;
}
.game__tag {
  margin-left: auto;
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  padding: 0.45em 0.9em;
  border: 1px solid rgba(201, 210, 222, 0.35);
  color: var(--silver);
}
.game__tag--home {
  background: var(--red-500);
  border-color: var(--red-500);
  color: #fff;
}
.game__tag--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #241a09;
}
.upnext__more { margin-top: 2rem; text-align: center; }

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background:
    radial-gradient(ellipse 70% 90% at 25% 100%, rgba(27, 47, 85, 0.55), transparent 60%),
    var(--navy-800);
  border-top: 1px solid rgba(201, 210, 222, 0.08);
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(3rem, 8vh, 5.5rem) clamp(1.2rem, 5vw, 4.5rem) 2rem;
  display: flex;
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}
.footer__mascot {
  position: relative;
  flex: 0 0 clamp(180px, 24vw, 320px);
  width: clamp(180px, 24vw, 320px);
  perspective: 1000px;
  animation: float 7s ease-in-out infinite;
}
.footer__crest {
  width: 100%;
  aspect-ratio: 1058 / 1362;
}
.footer__blurb {
  font-family: var(--font-cond);
  font-size: 1.15rem;
  color: var(--silver);
  max-width: 42ch;
  line-height: 1.55;
  margin: 1.2rem 0 1.8rem;
}
.footer__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__bar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.1rem clamp(1.2rem, 5vw, 4.5rem);
  border-top: 1px solid rgba(201, 210, 222, 0.08);
  font-family: var(--font-cond);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: rgba(201, 210, 222, 0.55);
}
.footer__motto {
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  color: var(--silver);
}

/* ── Team page: login gate + clubhouse ───────────────────── */
.team-page { min-height: 100vh; display: flex; flex-direction: column; }
.team {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: clamp(2rem, 6vh, 4rem) clamp(1.2rem, 4vw, 3rem);
}
.team__bg { position: absolute; inset: 0; overflow: hidden; }
.team__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) saturate(0.85);
  animation: kenburns 36s ease-in-out infinite alternate;
}

.gate { position: relative; z-index: 2; width: min(430px, 100%); }
.gate__card {
  background: rgba(6, 11, 22, 0.78);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(201, 210, 222, 0.16);
  padding: 2.6rem 2.2rem 2.4rem;
  text-align: center;
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
}
.gate__card.shake { animation: shake 0.45s ease; }
@keyframes shake {
  20% { transform: translateX(-9px); }
  40% { transform: translateX(8px); }
  60% { transform: translateX(-5px); }
  80% { transform: translateX(3px); }
}
.gate__emblem {
  width: 110px;
  margin: 0 auto 1rem;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.6));
}
.gate__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5vw, 2.6rem);
  color: var(--cream);
  margin: 0.2rem 0 0.5rem;
  text-shadow: 0 2px 0 #565d68, 0 5px 14px rgba(0, 0, 0, 0.5);
}
.gate__hint {
  font-family: var(--font-cond);
  color: var(--silver);
  font-size: 1rem;
  margin-bottom: 1.6rem;
}
.gate__label {
  display: block;
  text-align: left;
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  color: rgba(201, 210, 222, 0.7);
  margin-bottom: 0.45rem;
}
.gate__input {
  width: 100%;
  background: rgba(16, 32, 60, 0.6);
  border: 1px solid rgba(201, 210, 222, 0.25);
  color: var(--cream);
  font-family: var(--font-cond);
  font-size: 1.15rem;
  letter-spacing: 0.2em;
  padding: 0.85em 1em;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.gate__input:focus {
  border-color: var(--red-400);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.25);
}
.gate__error {
  color: var(--red-400);
  font-family: var(--font-cond);
  font-size: 0.92rem;
  text-align: left;
  margin-top: 0.6rem;
}
.gate__submit { width: 100%; margin-top: 1.2rem; }

.clubhouse {
  position: relative;
  z-index: 2;
  width: min(1100px, 100%);
  opacity: 0;
  transform: translateY(24px);
}
.clubhouse.is-open { animation: rise 0.7s var(--ease-out) forwards; }
.clubhouse__head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.8rem;
}
.clubhouse__logout { margin-left: auto; }
.clubhouse__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.4rem;
  align-items: start;
}
.clubhouse__side { display: grid; gap: 1.4rem; }
.club-card {
  background: rgba(6, 11, 22, 0.82);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(201, 210, 222, 0.14);
  border-top: 3px solid var(--red-500);
  padding: 1.6rem 1.7rem 1.8rem;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
}
.club-card__title {
  font-family: var(--font-label);
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--cream);
  margin-bottom: 1.1rem;
}
.roster { width: 100%; border-collapse: collapse; }
.roster th {
  font-family: var(--font-label);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: rgba(201, 210, 222, 0.6);
  text-align: left;
  padding: 0.5em 0.6em;
  border-bottom: 1px solid rgba(201, 210, 222, 0.2);
}
.roster td {
  font-family: var(--font-cond);
  font-size: 1.02rem;
  color: var(--silver);
  padding: 0.55em 0.6em;
  border-bottom: 1px dashed rgba(201, 210, 222, 0.1);
}
.roster td:first-child {
  font-family: var(--font-label);
  color: var(--red-400);
  width: 2.5em;
}
.roster tr:hover td { color: var(--cream); background: rgba(200, 16, 46, 0.06); }
.staff, .notes { list-style: none; display: grid; gap: 0.9rem; }
.staff li { display: grid; gap: 0.15rem; }
.staff b {
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--cream);
  font-weight: 400;
}
.staff span, .notes li {
  font-family: var(--font-cond);
  font-size: 0.98rem;
  color: var(--silver);
}
.notes li { padding-left: 1.1em; position: relative; }
.notes li::before {
  content: "★";
  position: absolute;
  left: 0;
  color: var(--red-500);
  font-size: 0.7em;
  top: 0.35em;
}

/* ── Gold button (Donate) ────────────────────────────────── */
.btn--gold {
  background: linear-gradient(160deg, #d4af6a, var(--gold) 60%, #8f6f3d);
  color: #241a09;
  box-shadow: 0 6px 24px rgba(185, 148, 90, 0.35);
}
.btn--gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(185, 148, 90, 0.5);
}

/* ── Donate modal ────────────────────────────────────────── */
.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; }
.modal[hidden] { display: none; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 6, 12, 0.78);
  backdrop-filter: blur(6px);
}
.modal__card {
  position: relative;
  width: min(420px, calc(100vw - 2rem));
  background: linear-gradient(170deg, var(--navy-700), var(--navy-800));
  border: 1px solid rgba(201, 210, 222, 0.18);
  padding: 2.4rem 2rem 1.8rem;
  text-align: center;
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
  animation: modalIn 0.4s var(--ease-slam);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(30px) scale(0.94); }
}
.modal__close {
  position: absolute;
  top: 0.6rem;
  right: 0.9rem;
  background: none;
  border: none;
  color: var(--silver);
  font-size: 1.6rem;
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
}
.modal__close:hover { color: #fff; transform: rotate(90deg); }
.modal__emblem { width: 90px; margin: 0 auto 0.8rem; }
.modal__title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--cream);
  margin: 0.2rem 0 0.6rem;
  text-shadow: 0 2px 0 #565d68, 0 5px 14px rgba(0, 0, 0, 0.5);
}
.modal__blurb {
  font-family: var(--font-cond);
  color: var(--silver);
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.4rem;
}
.donate-options { list-style: none; display: grid; gap: 0.7rem; }
.donate-option {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.85em 1.1em;
  border: 1px solid rgba(201, 210, 222, 0.2);
  font-family: var(--font-label);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--cream);
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.donate-option span {
  font-family: var(--font-cond);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: rgba(201, 210, 222, 0.6);
  text-transform: none;
}
.donate-option:hover {
  border-color: var(--gold);
  background: rgba(185, 148, 90, 0.08);
  transform: translateX(4px);
}
.donate-option[data-pending] { opacity: 0.55; cursor: default; }
.donate-option[data-pending]:hover { transform: none; border-color: rgba(201, 210, 222, 0.2); background: none; }
.modal__note {
  margin-top: 1.3rem;
  font-family: var(--font-cond);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: rgba(201, 210, 222, 0.45);
}

/* ── Clubhouse tabs ──────────────────────────────────────── */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.6rem;
  border-bottom: 1px solid rgba(201, 210, 222, 0.14);
  padding-bottom: 0.6rem;
}
.tab {
  background: none;
  border: 1px solid transparent;
  color: var(--silver);
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  padding: 0.65em 1.1em;
  cursor: pointer;
  transition: color 0.25s, background 0.25s, border-color 0.25s;
}
.tab:hover { color: #fff; }
.tab--link { color: var(--gold); }
.tab--link:hover { color: #d4af6a; }
.tab--link span { font-size: 0.85em; }
.tab.is-active {
  color: #fff;
  background: var(--red-500);
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}
.tabpane { animation: rise 0.5s var(--ease-out); }
.tabpane__note {
  margin-top: 1.2rem;
  font-family: var(--font-cond);
  font-size: 0.92rem;
  font-style: italic;
  color: rgba(201, 210, 222, 0.55);
}

/* ── Calendar ────────────────────────────────────────────── */
.cal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.9rem; }
.cal__head .club-card__title { margin-bottom: 0; }
.cal__nav { display: flex; gap: 0.4rem; }
.cal__btn {
  width: 2rem;
  height: 2rem;
  background: rgba(27, 47, 85, 0.5);
  border: 1px solid rgba(201, 210, 222, 0.2);
  color: var(--cream);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.cal__btn:hover { background: var(--red-500); border-color: var(--red-500); }
.cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.cal__grid--days span {
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: rgba(201, 210, 222, 0.5);
  text-align: center;
  padding: 0.4em 0;
}
.cal__cell {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: rgba(16, 32, 60, 0.45);
  border: 1px solid transparent;
  color: var(--silver);
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: default;
  transition: background 0.2s, border-color 0.2s;
}
.cal__cell--pad { background: none; }
.cal__cell--has { cursor: pointer; }
.cal__cell--has:hover { background: rgba(27, 47, 85, 0.8); border-color: rgba(201, 210, 222, 0.25); }
.cal__cell--today { border-color: var(--red-500); color: #fff; }
.cal__dots { display: flex; gap: 2px; min-height: 5px; }
.cal__dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--silver);
}
.cal__dot--game { background: var(--red-500); }
.cal__dot--practice { background: var(--silver); }
.cal__dot--event { background: var(--gold); }
.cal__legend {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.9rem;
  font-family: var(--font-cond);
  font-size: 0.8rem;
  color: rgba(201, 210, 222, 0.6);
}
.cal__legend .cal__dot { margin-left: 0.6rem; }
.cal__legend .cal__dot:first-child { margin-left: 0; }
.cal__all { margin-top: 0.8rem; font-size: 0.7rem; }

.events { list-style: none; display: grid; gap: 0.8rem; }
.event {
  display: grid;
  gap: 0.1rem;
  padding: 0.7rem 0.9rem;
  background: rgba(16, 32, 60, 0.45);
  border-left: 3px solid var(--silver);
}
.event--game { border-left-color: var(--red-500); }
.event--event { border-left-color: var(--gold); }
.event__date {
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: rgba(201, 210, 222, 0.6);
}
.event__title {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.event__meta {
  font-family: var(--font-cond);
  font-size: 0.85rem;
  color: rgba(201, 210, 222, 0.65);
}

/* ── Coaches ─────────────────────────────────────────────── */
.coach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}
.coach { position: relative; text-align: center; padding-top: 2.2rem; }
.coach__badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red-500);
  color: #fff;
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  padding: 0.35em 0.9em;
}
.coach__name {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.35rem;
  text-transform: uppercase;
  color: var(--cream);
}
.coach__role {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: var(--red-400);
  margin: 0.3rem 0 1rem;
}
.coach__links { display: grid; gap: 0.35rem; }
.coach__links a {
  font-family: var(--font-cond);
  font-size: 0.95rem;
  color: var(--silver);
  transition: color 0.2s;
}
.coach__links a:hover { color: #fff; }

/* ── Mentality ───────────────────────────────────────────── */
.mentality__lead {
  font-family: var(--font-cond);
  font-size: 1.12rem;
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: 0.9rem;
}
.mentality__lead b { color: var(--red-400); }
.mentality__body {
  font-size: 0.98rem;
  color: var(--silver);
  line-height: 1.7;
  margin-bottom: 0.9rem;
}
.checklist { list-style: none; display: grid; gap: 0.75rem; }
.checklist li {
  position: relative;
  padding: 0.75rem 0.9rem 0.75rem 2.5rem;
  background: rgba(16, 32, 60, 0.45);
  font-family: var(--font-cond);
  font-size: 1.05rem;
  color: var(--silver);
}
.checklist li b { color: var(--cream); }
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red-400);
  font-weight: 700;
}
.mentality__closer {
  margin-top: 1.3rem;
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--cream);
  transform: rotate(-1.5deg);
}

/* ── Playbook · Field Orders ─────────────────────────────── */
.fo { max-width: 720px; }
.fo__head {
  border-bottom: 1px dashed rgba(201, 210, 222, 0.2);
  padding-bottom: 1.2rem;
  margin-bottom: 1.2rem;
}
.fo__kicker {
  font-family: "Courier New", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.fo__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--cream);
  line-height: 1;
  text-shadow: 0 2px 0 #565d68, 0 5px 14px rgba(0, 0, 0, 0.5);
}
.fo__sub {
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  color: rgba(201, 210, 222, 0.65);
  margin-top: 0.6rem;
}
.fo__motto { color: var(--red-400); }
.fo__open { display: inline-block; margin: 0.6rem 0 1.4rem; }
.fo__links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.7rem;
}
.fo__links a {
  display: grid;
  gap: 0.15rem;
  padding: 0.8rem 1rem;
  background: rgba(16, 32, 60, 0.5);
  border-left: 3px solid var(--gold);
  transition: background 0.25s, transform 0.25s;
}
.fo__links a:hover { background: rgba(27, 47, 85, 0.75); transform: translateX(4px); }
.fo__links b {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
}
.fo__links span {
  font-family: "Courier New", monospace;
  font-size: 0.78rem;
  color: rgba(201, 210, 222, 0.6);
}

/* ── Photos ──────────────────────────────────────────────── */
.photos-uploader { margin-bottom: 1.4rem; }
.dropzone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem 1.5rem;
  border: 2px dashed rgba(201, 210, 222, 0.3);
  cursor: pointer;
  text-align: center;
  transition: border-color 0.25s, background 0.25s;
}
.dropzone:hover, .dropzone.is-drag {
  border-color: var(--red-400);
  background: rgba(200, 16, 46, 0.06);
}
.dropzone__icon { font-size: 2rem; }
.dropzone__text {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--cream);
}
.dropzone__text small { color: rgba(201, 210, 222, 0.6); font-weight: 400; }
.dropzone__status {
  margin-top: 0.7rem;
  font-family: var(--font-cond);
  font-size: 0.95rem;
  color: var(--silver);
  min-height: 1.3em;
}
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.8rem;
}
.photo {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(201, 210, 222, 0.14);
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-out);
}
.photo:hover img { transform: scale(1.07); }

/* ── Coach admin ─────────────────────────────────────────── */
.admin-textarea {
  width: 100%;
  margin-top: 0.8rem;
  background: rgba(16, 32, 60, 0.6);
  border: 1px solid rgba(201, 210, 222, 0.25);
  color: var(--cream);
  font-family: var(--font-cond);
  font-size: 1rem;
  letter-spacing: 0.06em;
  line-height: 1.8;
  padding: 0.8em 1em;
  resize: vertical;
  outline: none;
}
.admin-textarea:focus { border-color: var(--red-400); }
.admin-save { margin-top: 0.9rem; }
.admin-add { margin-top: 0.9rem; margin-right: 0.8rem; font-size: 0.7rem; }
.admin-fields { display: grid; gap: 0.9rem; }
.admin-fields > label {
  display: grid;
  gap: 0.35rem;
  font-family: var(--font-label);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: rgba(201, 210, 222, 0.7);
}
.admin-fields input[type="date"],
.admin-fields input[type="text"] {
  background: rgba(16, 32, 60, 0.6);
  border: 1px solid rgba(201, 210, 222, 0.25);
  color: var(--cream);
  font-family: var(--font-cond);
  font-size: 1rem;
  padding: 0.55em 0.8em;
  outline: none;
  color-scheme: dark;
}
.admin-fields input:focus { border-color: var(--red-400); }
.admin-days {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.admin-days label {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-cond);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--silver);
  cursor: pointer;
}
.admin-days input { accent-color: var(--red-500); }
.admin-events { display: grid; gap: 0.6rem; }
.admin-event {
  display: grid;
  grid-template-columns: 8.4rem 6.2rem 1fr 5.6rem 1fr 2rem;
  gap: 0.45rem;
  align-items: center;
}
.admin-event input,
.admin-event select {
  background: rgba(16, 32, 60, 0.6);
  border: 1px solid rgba(201, 210, 222, 0.25);
  color: var(--cream);
  font-family: var(--font-cond);
  font-size: 0.92rem;
  padding: 0.5em 0.6em;
  outline: none;
  min-width: 0;
  color-scheme: dark;
}
.admin-event input:focus,
.admin-event select:focus { border-color: var(--red-400); }
.admin-remove {
  background: none;
  border: 1px solid rgba(201, 210, 222, 0.25);
  color: var(--silver);
  font-size: 1rem;
  height: 2rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.admin-remove:hover { color: #fff; border-color: var(--red-500); background: rgba(200, 16, 46, 0.2); }
@media (max-width: 900px) {
  .admin-event {
    grid-template-columns: 1fr 1fr;
  }
  .admin-event .ev-title { grid-column: 1 / -1; }
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__cta { margin-left: auto; }
  .nav__burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
  }
  .nav__burger span {
    width: 24px;
    height: 2px;
    background: var(--cream);
  }
  .hero__inner {
    flex-direction: column-reverse;
    justify-content: center;
    text-align: center;
    padding-top: 2.5rem;
  }
  .hero__emblem-wrap { flex-basis: auto; width: clamp(200px, 46vw, 300px); }
  .hero__copy { display: flex; flex-direction: column; align-items: center; }
  .hero__main { justify-content: center; }
  .hero__sub { justify-content: center; }
  .hero__tag { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__stats { margin-inline: 1rem; margin-bottom: 4rem; }
  .stat { padding: 0.9rem 1.3rem; flex: 1 1 40%; }
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__pitch { display: flex; flex-direction: column; align-items: center; }
  .footer__actions { justify-content: center; }
  .about__inner { grid-template-columns: 1fr; }
  .about__plaque { max-width: 420px; margin: 0 auto; }
  .clubhouse__grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .nav {
    gap: 0.8rem;
    padding-inline: 1rem;
  }
  .nav__brand { flex-shrink: 0; }
  .nav__emblem { width: 40px; height: 40px; }
  .nav__wordmark-script { font-size: 0.8rem; }
  .nav__wordmark-main { font-size: 0.82rem; letter-spacing: 0.1em; }
  .nav__cta {
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    padding: 0.75em 1em;
    white-space: nowrap;
  }
  .nav__burger { padding: 4px; }
}

@media (max-width: 350px) {
  .nav__wordmark { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-emblem, .hero__main .ltr, .reveal-scroll { opacity: 1; transform: none; }
}
