/* ============ EATOGRAPHY — editorial neo-brutalist ============ */
:root {
  --ink: #12100c;
  --cream: #faf5ec;
  --cream-2: #f3ead9;
  --orange: #ff4d00;
  --yellow: #ffb800;
  --display: "Anton", sans-serif;
  --body: "Space Grotesk", sans-serif;
  --hand: "Caveat", cursive;
  --shadow: 6px 6px 0 var(--ink);
  --radius: 18px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

/* subtle grain */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  opacity: .05;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.7'/%3E%3C/svg%3E");
}

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

/* ============ focus-visible (keyboard nav) ============ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
  border-radius: 4px;
}
.section-dark :focus-visible,
.footer :focus-visible {
  outline-color: var(--yellow);
}

h1, h2, h3 { font-weight: 400; }
h1, h2 { font-family: var(--display); text-transform: uppercase; letter-spacing: .01em; }

h1 { font-size: clamp(3rem, 8.5vw, 6.8rem); line-height: .98; }
h2 { font-size: clamp(2.2rem, 5.5vw, 4.2rem); line-height: 1.02; margin-bottom: .6em; }
/* page-title h1 on subpages: h2 scale, not the hero's */
h1.page-title { font-size: clamp(2.2rem, 5.5vw, 4.2rem); line-height: 1.02; margin-bottom: .6em; }
.map-fallback-note { padding: 1.2rem; font-weight: 500; }

.hl {
  color: var(--orange);
  position: relative;
}
.hl-outline {
  color: transparent;
  -webkit-text-stroke: 3px var(--ink);
}
.hl-ink { color: var(--ink); }

.kicker {
  font-weight: 700;
  letter-spacing: .28em;
  font-size: .8rem;
  margin-bottom: 1.2rem;
}
.kicker::before {
  content: "";
  display: inline-block;
  width: 34px; height: 3px;
  background: var(--orange);
  margin-right: .8rem;
  vertical-align: middle;
}

.lede {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  max-width: 34rem;
  margin-top: 1.4rem;
}

/* ============ buttons ============ */
.btn {
  display: inline-block;
  font-family: var(--body);
  font-weight: 700;
  text-decoration: none;
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: .85rem 1.7rem;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  box-shadow: 4px 4px 0 var(--ink);
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--ink); }
.btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.btn-orange { background: var(--orange); color: var(--ink); } /* ink-on-orange: ~5.7:1 contrast, cream-on-orange was only ~3:1 */
.btn-ink { background: var(--ink); color: var(--cream); box-shadow: 4px 4px 0 rgba(18,16,12,.25); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-small { padding: .5rem 1.1rem; font-size: .85rem; }
.btn-big { font-size: clamp(1.1rem, 2.4vw, 1.6rem); padding: 1.1rem 2.2rem; }

/* ============ nav ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: .9rem clamp(1rem, 4vw, 3rem);
  background: color-mix(in srgb, var(--cream) 85%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid transparent;
  transition: border-color .2s ease;
}
.nav.scrolled { border-bottom-color: var(--ink); }

.nav-brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  margin-right: auto;
}
.mark { width: 42px; height: auto; color: var(--ink); }
.wordmark {
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: .22em;
}

.nav-links { display: flex; gap: 1.6rem; }
.nav-links a {
  text-decoration: none;
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .04em;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 3px;
  background: var(--orange);
  transition: width .2s ease;
}
.nav-links a:hover::after { width: 100%; }

/* ============ hero ============ */
.hero {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(8rem, 16vh, 11rem) clamp(1.2rem, 5vw, 4rem) clamp(3rem, 8vh, 5rem);
  max-width: 1300px;
  margin: 0 auto;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }

.hero-art { position: relative; display: flex; justify-content: center; min-height: clamp(340px, 40vw, 460px); }

.hero-photo {
  position: relative;
  z-index: 2;
  width: min(380px, 84vw);
  background: #fff;
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 10px 10px 0;
  transform: rotate(-2deg);
}
.hero-photo img {
  width: 100%;
  height: auto; /* natural 3:4 — the forced 4:5 crop read as "zoomed in" */
  border-radius: 4px 4px 0 0;
  filter: saturate(1.3) contrast(1.1) brightness(1.03);
}
.hero-photo-tag {
  font-family: var(--hand);
  font-size: 1.2rem;
  text-align: center;
  padding: .5rem 0 .7rem;
}

.hero-card {
  position: absolute;
  z-index: 1;
  right: -2%;
  bottom: -6%;
  background: var(--cream-2);
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.1rem 1.3rem;
  text-align: center;
  transform: rotate(6deg);
  width: clamp(140px, 19vw, 190px);
}
.hero-mark { width: 100%; color: var(--ink); }
.hero-card-label {
  margin-top: .7rem;
  font-weight: 700;
  font-size: .58rem;
  letter-spacing: .18em;
}

.spin-badge {
  position: absolute;
  z-index: 3;
  width: clamp(100px, 11vw, 140px);
  top: -28px;
  left: -6px;
  animation: spin 14s linear infinite;
}
.badge-bg { fill: var(--orange); stroke: var(--ink); stroke-width: 3; }
.badge-text {
  font-family: var(--body);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: .18em;
  fill: var(--cream);
}
.badge-emoji { font-size: 30px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============ ticker ============ */
.ticker {
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  border-block: 3px solid var(--ink);
  padding: .85rem 0;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: ticker 28s linear infinite;
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: .14em;
}
@keyframes ticker { to { transform: translateX(-50%); } }

/* ============ stats ============ */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(3rem, 7vh, 5rem) clamp(1.2rem, 4vw, 2rem);
  text-align: center;
}
.stat-num, .stat-plus {
  font-family: var(--display);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  color: var(--orange);
}
.stat p { font-weight: 700; letter-spacing: .05em; margin-top: .2rem; }

/* ============ sections ============ */
.section {
  padding: clamp(4rem, 10vh, 7rem) clamp(1.2rem, 5vw, 4rem);
  max-width: 1300px;
  margin: 0 auto;
}
.section-label {
  font-weight: 700;
  letter-spacing: .3em;
  font-size: .8rem;
  color: var(--orange);
  margin-bottom: 1rem;
}
.section-sub { max-width: 38rem; font-size: 1.05rem; margin-bottom: 2.5rem; }

.section-cream {
  max-width: none;
  background: var(--cream-2);
  border-block: 3px solid var(--ink);
}
.section-cream > * { max-width: 1300px; margin-left: auto; margin-right: auto; }

.section-dark {
  max-width: none;
  background: var(--ink);
  color: var(--cream);
}
.section-dark > * { max-width: 1300px; margin-left: auto; margin-right: auto; }
.section-dark .section-label { color: var(--yellow); }

.section-orange {
  max-width: none;
  background: var(--orange);
  color: var(--ink); /* cream-on-orange failed WCAG AA (~3:1) for body text; ink-on-orange is ~5.7:1 */
  text-align: center;
}
.section-orange .section-label { color: var(--ink); }
.section-orange .section-sub { margin-inline: auto; }
.section-orange .btn-ink:hover { background: var(--cream); color: var(--ink); }

.pitch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 2.5rem auto;
  text-align: left;
}
.pitch-wide {
  grid-column: 1 / -1;
}
.pitch-card {
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
}
.pitch-card h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: .5rem; }
.pitch-card p { font-size: .88rem; line-height: 1.5; }
.pitch-card ul { font-size: .88rem; line-height: 1.6; padding-left: 1.1rem; }

.inquiry-form {
  max-width: 640px;
  margin: 1rem auto 2rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.inquiry-form label {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .03em;
}
.inquiry-form input,
.inquiry-form textarea {
  font-family: var(--body);
  font-size: 1rem;
  padding: .7rem .9rem;
  border: 3px solid var(--ink);
  border-radius: 10px;
  background: var(--cream);
  color: var(--ink);
}
.inquiry-form textarea { resize: vertical; }
.inquiry-form .btn { align-self: flex-start; }
.form-note { font-size: .8rem; opacity: .75; margin-top: -.3rem; }

/* ============ drops ============ */
.countdown {
  display: inline-block;
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--yellow);
  padding: 1.2rem 2rem;
  margin: 0 0 3rem;
}
.countdown-label { font-weight: 700; letter-spacing: .18em; font-size: .8rem; }
.countdown-time {
  font-family: var(--display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.05;
  font-variant-numeric: tabular-nums;
}

.drops-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
  max-width: 700px;
}
.drop-card {
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: var(--shadow);
  padding: 1.6rem 1.4rem;
  position: relative;
  transition: transform .18s ease;
}
.drop-card:hover { transform: translateY(-6px) rotate(-.5deg); }
.drop-time {
  font-family: var(--display);
  font-size: 2.6rem;
  line-height: 1;
}
.drop-time span { font-size: 1.2rem; margin-left: .2rem; }
.drop-card h3 { font-size: 1.15rem; font-weight: 700; margin: .7rem 0 .4rem; }
.drop-card p:not(.drop-time) { font-size: .92rem; }
.drop-card-flagship { background: var(--ink); color: var(--cream); }
.drop-badge {
  position: absolute;
  top: -16px; right: 14px;
  background: var(--orange);
  color: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: .25rem .8rem;
}

/* ============ snapshots ============ */
.snaps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin: 3rem auto;
}
.snap {
  background: #fff;
  border: 3px solid var(--ink);
  padding: 14px 14px 10px;
  box-shadow: var(--shadow);
  transform: rotate(var(--tilt, 0deg));
  transition: transform .2s ease;
  width: min(320px, 82vw);
}
.snap:hover { transform: rotate(0deg) scale(1.04); z-index: 2; }
.snap img {
  width: 100%;
  height: auto; /* natural 3:4 — 4:5 cover crop read as "zoomed in" */
  filter: saturate(1.35) contrast(1.12) brightness(1.04);
}
.snap figcaption {
  font-family: var(--hand);
  font-size: 1.45rem;
  text-align: center;
  padding-top: .5rem;
}

.picks-intro { font-size: 1rem; margin: -1.5rem 0 2rem; max-width: 34rem; }
.picks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 3vw, 1.6rem);
  max-width: 900px;
  margin: 0 auto;
}
.pick {
  position: relative;
  display: block;
  aspect-ratio: 9 / 16;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  text-decoration: none;
  color: var(--cream);
}
.pick img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.3) contrast(1.1) brightness(1.02);
  transition: transform .35s ease;
}
.pick:hover img { transform: scale(1.06); }
.pick-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.55);
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, rgba(0,0,0,0) 42%);
}
.pick-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: .9rem .8rem;
  font-weight: 700;
  font-size: .85rem;
  line-height: 1.3;
  background: linear-gradient(to top, rgba(0,0,0,.8), transparent);
}

.tiktok-label { font-weight: 700; letter-spacing: .12em; font-size: .8rem; text-align: center; margin-top: 3rem; opacity: .65; }
.tiktok-wrap { display: flex; justify-content: center; margin-top: 1rem; }
.tiktok-wrap a { font-weight: 700; }

/* ============ spots ============ */
.spots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.4rem;
  margin-top: 2.5rem;
}
.spot {
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.3rem 1.2rem;
  background: var(--cream);
  transition: transform .15s ease, box-shadow .15s ease;
}
.spot:hover { transform: translate(-3px, -3px); box-shadow: 5px 5px 0 var(--ink); }
.spot h3 { font-size: 1.12rem; font-weight: 700; }
.spot p { font-size: .88rem; margin: .25rem 0 .8rem; }
.tag {
  display: inline-block;
  background: var(--ink);
  color: var(--cream);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  border-radius: 999px;
  padding: .3rem .75rem;
}
.spot-links { display: flex; gap: .8rem; margin-top: 1rem; flex-wrap: wrap; }
.spot-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
  padding: .5rem 1rem;
  font-size: .8rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--cream);
  transition: color .15s ease, border-color .15s ease, background .15s ease;
}
.spot-links a:hover { color: var(--orange); border-color: var(--orange); }
.spot-cta {
  background: var(--orange);
  color: var(--cream);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.spot-cta p { font-weight: 700; margin-bottom: 0; }

/* ============ rules ============ */
.rules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.rule {
  border-top: 3px solid var(--cream);
  padding-top: 1.4rem;
}
.rule-num {
  font-family: var(--display);
  font-size: 2.2rem;
  color: var(--orange);
}
.rule h3 { font-size: 1.25rem; font-weight: 700; margin: .6rem 0 .5rem; }
.rule p { font-size: .95rem; opacity: .85; }

/* ============ footer ============ */
.footer {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  padding: 4rem 1.5rem 3rem;
}
.footer .mark { width: 64px; margin: 0 auto 1rem; color: var(--cream); }
.footer-word {
  font-family: var(--display);
  font-size: 1.6rem;
  letter-spacing: .3em;
  margin-bottom: .8rem;
}
.footer-meta { font-size: .85rem; opacity: .75; }
.footer-meta a { color: var(--yellow); }

/* ============ reveal animation ============ */
/* Reveal is gated on html.js (set by the first inline script): without JS —
   crawlers, screenshot tools, reader modes — every section is simply visible.
   Review 2026-08-23 caught whole viewports blank until the animation fired. */
html.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .35s ease, transform .35s ease;
}
html.js .reveal.in { opacity: 1; transform: none; }
.clips { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; max-width: 1000px; margin: 1.2rem auto 0; }
.clip { margin: 0; }
.clip video { width: 100%; height: auto; aspect-ratio: 9 / 16; border: 3px solid var(--ink); border-radius: var(--radius); background: #000; display: block; }
.clip figcaption { font-size: .8rem; font-weight: 700; margin-top: .5rem; }
@media (max-width: 760px) { .clips { grid-template-columns: repeat(2, 1fr); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  .ticker-track, .spin-badge { animation: none; }
}

/* ============ spot filters + enriched cards ============ */
.chips { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 2rem; }
.chip {
  min-height: 44px;
  padding: .5rem 1.1rem;
  font-family: inherit;
  font-size: .85rem;
  font-weight: 700;
  background: var(--cream);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 999px;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.chip:hover { border-color: var(--orange); color: var(--orange); }
.chip.active { background: var(--ink); color: var(--cream); }
.spot.hidden { display: none; }
.spot h3 a { color: inherit; text-decoration: none; }
.spot h3 a:hover { color: var(--orange); }
.spot-dish {
  font-family: var(--hand);
  font-size: 1.15rem;
  color: var(--orange);
  margin: .2rem 0 .4rem;
}

/* ============ interactive map + meal randomizer ============ */
.spot-map {
  height: clamp(300px, 45vw, 460px);
  margin-top: 1.5rem;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  z-index: 0; /* keep Leaflet panes under the fixed nav */
}
.spot-map .leaflet-popup-content { font-family: var(--body); font-weight: 500; }
.spot-map .leaflet-popup-content a { font-weight: 700; }
.map-note { margin-top: .8rem; display: flex; gap: .6rem; }
.chip-dice { background: var(--orange); color: var(--ink); border-color: var(--ink); }
.chip-dice:hover { background: var(--ink); color: var(--cream); }
.meal-result {
  margin-top: 1.5rem;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--cream);
  padding: 1.4rem 1.6rem;
  max-width: 480px;
}
.meal-result-label { font-weight: 700; font-size: .75rem; letter-spacing: .14em; color: var(--orange); }
.meal-result h3 { font-size: 1.4rem; margin: .3rem 0 0; }

/* ============ a11y: skip link ============ */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--ink);
  color: var(--cream);
  font-weight: 700;
  padding: .8rem 1.4rem;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ============ picture wrappers (img sizing passes through) ============ */
.snap picture, .pick picture, .hero-photo picture { display: block; width: 100%; height: 100%; }
.hero-photo picture, .snap picture { height: auto; }
.pick { margin: 0; }
.pick-cap { color: var(--cream); margin: 0; }
.picks-cta { text-align: center; margin-top: 2rem; }

/* ============ form status ============ */
.form-status { font-weight: 700; margin-top: 1rem; min-height: 1.2em; }
.form-status.ok { color: var(--ink); }

/* ============ mobile nav toggle ============ */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============ responsive ============ */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding-top: 7.5rem; }
  .hero-art { margin-top: 1rem; }
  .rules { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .pitch-grid { grid-template-columns: 1fr; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--cream);
    border-bottom: 3px solid var(--ink);
  }
  .nav.open .nav-links { display: flex; }
  .nav-links a {
    padding: 1rem clamp(1rem, 4vw, 3rem);
    min-height: 44px;
    display: flex;
    align-items: center;
    border-top: 1px solid color-mix(in srgb, var(--ink) 15%, transparent);
  }
  .nav-links a::after { display: none; }
}
@media (max-width: 640px) {
  .picks { grid-template-columns: 1fr; max-width: 320px; }
  .pick { aspect-ratio: 4 / 5; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .drops-grid { grid-template-columns: 1fr; }
  .wordmark { display: none; }
  h1 { font-size: clamp(2.1rem, 12vw, 3rem); }
  .hero { padding-left: 1rem; padding-right: 1rem; }
  .spin-badge { display: none; }
}
