/* ============================================================
   Michael's Flapjacks — Design tokens
   ============================================================ */
:root {
  --ink: #15120d;
  --ink-soft: #221c14;
  --ink-line: rgba(250, 243, 228, 0.16);
  --cream: #faf3e4;
  --paper: #fffdf7;
  --cream-line: rgba(21, 18, 13, 0.12);
  --amber: #f2a63c;
  --amber-deep: #d6842a;
  --oat-brown: #6b4a2b;

  --f-original: #f2a63c;
  --f-blue: #3fa9e0;
  --f-red: #e14b4b;
  --f-yellow: #f0c33b;
  --f-green: #3fa968;
  --f-brown: #8a5a2e;

  --font-display: 'Anton', 'Arial Narrow', 'Helvetica Neue', sans-serif;
  --font-body: 'Work Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'Space Mono', 'SFMono-Regular', Consolas, monospace;

  --container: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 18px;
}

/* ============================================================
   Reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }
button { font: inherit; cursor: pointer; }
input { font: inherit; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--amber); color: var(--ink); padding: 0.75rem 1.25rem;
  font-weight: 700;
}
.skip-link:focus { left: 1rem; top: 1rem; }

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

.section-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 7rem) var(--gutter);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.7rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-amber { background: var(--amber); color: var(--ink); }
.btn-amber:hover { background: var(--amber-deep); }
.btn-ghost { border-color: currentColor; color: inherit; }
.btn-ghost:hover { background: var(--ink-line); }
.btn-ink { background: var(--ink); color: var(--cream); }
.btn-ink:hover { background: var(--ink-soft); }

/* ============================================================
   Logo mark
   ============================================================ */
.logo-svg { height: 50px; width: auto; overflow: visible; }
.logo-oval { fill: var(--paper); stroke: var(--ink); stroke-width: 15; }
.logo-shadow {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 70px;
  letter-spacing: -0.5px;
  fill: var(--ink);
}
.logo-face {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 70px;
  letter-spacing: -0.5px;
  fill: var(--paper);
  paint-order: stroke fill;
  stroke: var(--ink);
  stroke-width: 2.75px;
  stroke-linejoin: round;
}
.logo-accent { fill: var(--amber); }
.logo-svg--footer { height: 68px; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--cream-line);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(21, 18, 13, 0.08);
  background: color-mix(in srgb, var(--cream) 96%, transparent);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.6rem var(--gutter);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.header-inner .logo-mark { margin-right: auto; }
.primary-nav {
  display: flex;
  gap: 2rem;
}
.primary-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 0.3rem 0;
}
.primary-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: -2px;
  height: 2px;
  background: var(--amber);
  transition: right 0.25s ease;
}
.primary-nav a:hover::after { right: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none; padding: 0;
}
.nav-toggle span {
  display: block; height: 2.5px; width: 100%;
  background: var(--ink); border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  background: var(--ink);
  color: var(--cream);
  padding-top: 6.5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: -20% -10% auto auto;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, color-mix(in srgb, var(--amber) 22%, transparent) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 5rem) var(--gutter) clamp(4rem, 8vw, 6rem);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.25rem;
}
.hero-title {
  font-family: var(--font-display);
  font-style: oblique -6deg;
  font-weight: 400;
  font-size: clamp(2.75rem, 6.4vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: 0.3px;
  text-wrap: balance;
}
/* padding-bottom gives the overflow:hidden mask room for descenders (g, j,
   p) that the tight 0.98 line-height on .hero-title otherwise clips; the
   matching negative margin pulls the next line back up so spacing is
   unaffected. */
.reveal-line { display: block; overflow: hidden; padding-bottom: 0.22em; margin-bottom: -0.22em; }
.reveal-line span {
  display: inline-block;
  transform: translateY(110%);
  animation: line-up 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: var(--d, 0s);
}
.reveal-line:nth-child(1) span { --d: 0.05s; }
.reveal-line:nth-child(2) span { --d: 0.18s; }
.reveal-line:nth-child(3) span { --d: 0.31s; }
@keyframes line-up { to { transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  .reveal-line span { animation: none; transform: none; }
}
.accent-underline { position: relative; }
.accent-underline::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0.08em;
  height: 0.22em;
  background: var(--amber);
  z-index: -1;
}
.dots { color: var(--amber); }

.hero-sub {
  margin-top: 1.5rem;
  max-width: 46ch;
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--cream) 82%, transparent);
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.25rem;
}
.hero .btn-ghost { border-color: color-mix(in srgb, var(--cream) 55%, transparent); color: var(--cream); }
.hero .btn-ghost:hover { background: rgba(250,243,228,0.08); }

.hero-visual { display: flex; flex-direction: column; align-items: center; }

/* Ingredients-to-bar stage */
.hero-stage {
  position: relative;
  width: min(420px, 88vw);
  aspect-ratio: 1 / 1;
}
.stage-ring {
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  border: 2px dashed color-mix(in srgb, var(--fc, var(--amber)) 55%, transparent);
  transition: border-color 0.6s ease;
}
.stage-orbit { position: absolute; inset: 0; }
.stage-chip {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: var(--ink-soft);
  border: 1.5px solid var(--fc, var(--amber));
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  white-space: nowrap;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.4s ease, border-color 0.6s ease;
  transition-delay: calc(var(--i) * 70ms);
}
.stage-chip:empty { opacity: 0 !important; }
.stage-orbit.is-active .stage-chip:not(:empty) {
  opacity: 1;
  transform:
    translate(-50%, -50%)
    rotate(calc(var(--i) * (360deg / var(--n, 6))))
    translateY(clamp(-150px, -34vw, -100px))
    rotate(calc(var(--i) * (-360deg / var(--n, 6))))
    scale(1);
}

.stage-bar {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.55) rotate(-8deg);
  transition: opacity 0.5s ease, transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero-stage[data-phase="revealed"] .stage-bar,
.hero-stage[data-phase="exiting"] .stage-bar { opacity: 1; transform: scale(1) rotate(0deg); }

.stage-bar-photo {
  width: min(360px, 84%);
  height: auto;
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.55));
}

.stage-caption { margin-top: 1.75rem; text-align: center; }
.stage-caption-name {
  display: block;
  font-family: var(--font-display);
  font-style: oblique -4deg;
  font-size: 1.35rem;
  color: var(--cream);
}
.stage-caption-line {
  display: block;
  margin-top: 0.3rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--fc, var(--amber));
  transition: color 0.4s ease;
}
.stage-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.1rem; }
.stage-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--cream) 28%, transparent);
  transition: background 0.35s ease, transform 0.35s ease;
}
.stage-dot.is-active { background: var(--fc, var(--amber)); transform: scale(1.35); }

@keyframes spin { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
  .stage-bar { transition: opacity 0.3s ease; transform: none !important; }
  .stage-chip { transition: opacity 0.3s ease; transform: translate(-50%, -50%) !important; }
}

.hero-scroll-cue {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 2rem;
  color: color-mix(in srgb, var(--cream) 60%, transparent);
}
.hero-scroll-cue span { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; }
.scroll-line { width: 1px; height: 36px; background: var(--ink-line); overflow: hidden; }
.scroll-line i {
  display: block; width: 100%; height: 40%;
  background: var(--amber);
  animation: scroll-cue 1.8s ease-in-out infinite;
}
@keyframes scroll-cue {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(250%); }
}
@media (prefers-reduced-motion: reduce) { .scroll-line i { animation: none; } }

/* ============================================================
   Scoreboard ticker
   ============================================================ */
.ticker-band {
  background: var(--amber);
  color: var(--ink);
  overflow: hidden;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}
.ticker-track {
  display: flex;
  width: max-content;
  gap: 1.5rem;
  padding: 0.85rem 0;
  animation: ticker 34s linear infinite;
  white-space: nowrap;
}
@media (prefers-reduced-motion: reduce) { .ticker-track { animation-duration: 90s; } }
.ticker-track span {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
.ticker-track .dot { font-size: 0.5rem; align-self: center; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ============================================================
   Section headings (shared)
   ============================================================ */
.section-kicker {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 0.75rem;
}
.section-kicker--light { color: var(--amber); }
.section-title {
  font-family: var(--font-display);
  font-style: oblique -4deg;
  font-weight: 400;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  line-height: 1.08;
  max-width: 22ch;
  text-wrap: balance;
}
.section-title--light { color: var(--cream); }
.body-lead {
  font-size: 1.05rem;
  max-width: 56ch;
  color: var(--ink-soft);
  margin-top: 1.25rem;
}
.body-lead--light { color: color-mix(in srgb, var(--cream) 80%, transparent); max-width: 60ch; }

/* ============================================================
   Scroll reveal (generic, JS-driven)
   ============================================================ */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal-up { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   Stats / USPs
   ============================================================ */
.stats { background: var(--cream); }
.stat-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.stat-card {
  background: var(--paper);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -18px rgba(21,18,13,0.18);
  border-color: color-mix(in srgb, var(--amber) 50%, var(--cream-line));
}
.stat-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--amber-deep);
  border: 1.5px solid var(--amber-deep);
  border-radius: 999px;
  width: 2.1rem; height: 2.1rem;
  line-height: 1.95rem;
  text-align: center;
  margin-bottom: 1rem;
}
.stat-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}
.stat-card p { color: var(--ink-soft); font-size: 0.95rem; }

/* ============================================================
   Flavours
   ============================================================ */
.flavours { background: var(--ink); color: var(--cream); }
.flavour-hint {
  margin-top: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: color-mix(in srgb, var(--cream) 55%, transparent);
}
.flavour-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.flavour-card {
  position: relative;
  border-radius: var(--radius);
  perspective: 1600px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.flavour-card:hover {
  transform: translateY(-8px) rotate(-0.6deg);
  box-shadow: 0 24px 48px -18px rgba(0,0,0,0.55);
}

.flavour-flip {
  position: relative;
  width: 100%;
  min-height: 280px;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.flavour-card.is-flipped .flavour-flip { transform: rotateY(180deg); }

.flavour-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-soft);
  border: 1px solid var(--ink-line);
}
.flavour-face--back { transform: rotateY(180deg); }

.flavour-card-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  border-top: 6px solid var(--fc);
}
.flavour-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.flavour-swatch {
  width: 2.4rem; height: 2.4rem;
  border-radius: 50%;
  background: var(--fc);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--fc) 25%, transparent);
}
.flavour-num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--cream) 45%, transparent);
}
.flavour-card h3 {
  font-family: var(--font-display);
  font-style: oblique -4deg;
  font-weight: 400;
  font-size: 1.55rem;
  margin-bottom: 0.6rem;
}
.flavour-ingredients {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--fc);
  margin-bottom: 0.6rem;
}
.flavour-note { color: color-mix(in srgb, var(--cream) 70%, transparent); font-size: 0.95rem; }

.flavour-back-kicker {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fc);
  margin-bottom: 0.6rem;
}
.flavour-back-name {
  font-family: var(--font-display);
  font-style: oblique -4deg;
  font-weight: 400;
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}
.flavour-back-note {
  color: color-mix(in srgb, var(--cream) 72%, transparent);
  font-size: 0.9rem;
  line-height: 1.45;
  margin-bottom: auto;
  padding-bottom: 1rem;
}

.flavour-flip-trigger {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  z-index: 2;
  border-radius: var(--radius);
}
.flavour-corner {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--fc);
  border-top-left-radius: 10px;
  border-bottom-right-radius: var(--radius);
  transition: width 0.25s ease, height 0.25s ease;
}
.flavour-corner-icon {
  width: 15px;
  height: 15px;
  color: var(--ink);
  opacity: 0;
  transform: translate(4px, 4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.flavour-flip-trigger:hover .flavour-corner,
.flavour-flip-trigger:focus-visible .flavour-corner {
  width: 58px;
  height: 58px;
}
.flavour-flip-trigger:hover .flavour-corner-icon,
.flavour-flip-trigger:focus-visible .flavour-corner-icon {
  opacity: 1;
  transform: translate(0, 0);
}
.flavour-flip-trigger:focus-visible {
  outline: 3px solid var(--fc);
  outline-offset: 2px;
}

/* ============================================================
   Ingredients / recipe ledger
   ============================================================ */
.ingredients { background: var(--cream); }
.ingredients-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.recipe-ledger {
  background: var(--paper);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius);
  overflow: hidden;
}
.recipe-ledger li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 0.25rem 1.25rem;
  padding: 1.5rem 1.75rem;
  align-items: baseline;
}
.recipe-ledger li + li { border-top: 1px solid var(--cream-line); }
.ledger-index {
  font-family: var(--font-mono);
  color: var(--amber-deep);
  font-weight: 700;
}
.ledger-name {
  grid-column: 2;
  font-family: var(--font-display);
  font-style: oblique -4deg;
  font-weight: 400;
  font-size: 1.4rem;
}
.ledger-note {
  grid-column: 2;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

/* ============================================================
   Story
   ============================================================ */
.story { background: var(--ink); color: var(--cream); }
.story-grid {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.story-badge-wrap { display: flex; justify-content: center; }
.story-badge { width: min(280px, 100%); height: auto; animation: spin 40s linear infinite; }
@media (prefers-reduced-motion: reduce) { .story-badge { animation: none; } }
.story-badge-text {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  fill: var(--cream);
  letter-spacing: 0.06em;
}
.story .section-title { color: var(--cream); }
.story .body-lead { color: color-mix(in srgb, var(--cream) 78%, transparent); max-width: 58ch; }
.story .body-lead + .body-lead { margin-top: 1rem; }

/* ============================================================
   Club / merch
   ============================================================ */
.club { background: var(--oat-brown); color: var(--cream); }
.club .section-kicker--light { color: var(--amber); }
.jersey-grid {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}
.jersey-tag {
  flex: 1 1 calc(33.333% - 0.85rem);
  min-width: 220px;
  background: var(--ink);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  font-family: var(--font-display);
  font-style: oblique -4deg;
  font-weight: 400;
  font-size: 1.15rem;
  line-height: 1.25;
  text-align: center;
  color: var(--amber);
  transition: transform 0.25s ease;
}
.jersey-tag:hover { transform: scale(1.03) rotate(-0.5deg); }
.jersey-tag:nth-child(3n+2) { color: var(--cream); }

/* ============================================================
   Shop / notify
   ============================================================ */
.shop { background: var(--amber); color: var(--ink); }
.shop-inner { text-align: left; }
.section-title--shop { max-width: 26ch; }
.body-lead--shop { color: var(--ink-soft); }
.notify-form {
  display: flex;
  gap: 0.85rem;
  margin-top: 2rem;
  max-width: 480px;
  flex-wrap: wrap;
}
.notify-form input {
  flex: 1 1 220px;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  border: 2px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  font-size: 0.95rem;
}
.notify-form input::placeholder { color: color-mix(in srgb, var(--ink) 45%, transparent); }
.notify-form .btn-amber { background: var(--ink); color: var(--cream); }
.notify-form .btn-amber:hover { background: var(--ink-soft); }
.form-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--ink) 70%, transparent);
  max-width: 50ch;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--cream); border-top: 1px solid var(--cream-line); }
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 3.5rem var(--gutter) 2.5rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-areas:
    "brand nav"
    "legal legal";
  gap: 2rem;
}
.footer-brand { grid-area: brand; }
.footer-brand p { margin-top: 0.75rem; color: var(--ink-soft); font-style: italic; }
.footer-nav { grid-area: nav; display: flex; flex-wrap: wrap; gap: 1.25rem 1.75rem; align-content: start; justify-content: flex-end; }
.footer-nav a { font-weight: 600; font-size: 0.92rem; }
.footer-nav a:hover { color: var(--amber-deep); }
.footer-legal {
  grid-area: legal;
  border-top: 1px solid var(--cream-line);
  padding-top: 1.5rem;
  font-size: 0.78rem;
  color: color-mix(in srgb, var(--ink) 55%, transparent);
  max-width: 80ch;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; margin-bottom: 1rem; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .flavour-grid { grid-template-columns: repeat(2, 1fr); }
  .ingredients-grid, .story-grid { grid-template-columns: 1fr; }
  .story-badge-wrap { order: -1; }
  .jersey-tag { flex-basis: calc(50% - 0.65rem); }
  .footer-inner { grid-template-columns: 1fr; grid-template-areas: "brand" "nav" "legal"; }
  .footer-nav { justify-content: flex-start; }
}

@media (max-width: 720px) {
  .primary-nav, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .primary-nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--cream-line);
    padding: 1.5rem var(--gutter) 2rem;
    gap: 1.25rem;
  }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .flavour-grid { grid-template-columns: 1fr; }
  .jersey-tag { flex-basis: 100%; min-width: 0; }
  .notify-form { flex-direction: column; align-items: stretch; }
}

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