/* ============================================================
   OMA GOURD // HANDCRAFTED TACOS
   Design system: "Desert Dusk"
   The site is the truck wrap: a sunset you scroll through.
   Sky at the top, warm daylight cream in the middle,
   night sky at the footer. Built by Scroll Theory Media.
   ============================================================ */

/* ---------- Fonts (self-hosted) ---------- */
@font-face {
  font-family: 'Titan One';
  src: url('/fonts/titanone-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito';
  src: url('/fonts/nunito-var.woff2') format('woff2');
  font-weight: 200 1000;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Caveat';
  src: url('/fonts/caveat-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  /* sky */
  --night: #150826;
  --night-deep: #0d0518;
  --dusk-purple: #3b1362;
  --dusk-magenta: #a1246f;
  --dusk-pink: #d94368;
  --dusk-orange: #f2793a;
  --dusk-gold: #ffb347;

  /* brand (pulled from the logo + wrap) */
  --cream: #f7ecd0;
  --cream-deep: #efdcb2;
  --paper: #faf3e0;
  --ink: #2b1430;
  --ink-soft: #55355c;
  --red: #c1342e;
  --red-deep: #9c2622;
  --orange: #f7941d;
  --cactus: #7cb928;
  /* Darkened from #578f1d. Every use of this token is green sitting on cream
     or on a green-tinted chip, so hue was doing all the separating and
     lightness almost none: 2.95:1 in the menu tags, 3.00:1 in the catering
     "Best for" boxes, 3.34:1 on the form success message. All clear 4.5:1
     here, and the chip border clears the 3:1 non-text floor. */
  --cactus-deep: #436e16;
  --purple: #7b2d8b;

  /* type */
  --display: 'Titan One', 'Arial Black', sans-serif;
  --body: 'Nunito', 'Segoe UI', system-ui, sans-serif;
  --script: 'Caveat', 'Comic Sans MS', cursive;

  /* scale */
  --step-5: clamp(2.6rem, 1.6rem + 4.6vw, 5.2rem);
  --step-4: clamp(2rem, 1.4rem + 2.8vw, 3.4rem);
  --step-3: clamp(1.6rem, 1.25rem + 1.6vw, 2.4rem);
  --step-2: clamp(1.3rem, 1.15rem + .8vw, 1.7rem);
  --step-1: clamp(1.08rem, 1rem + .35vw, 1.25rem);
  --step-0: 1rem;
  --step--1: .88rem;

  --space: clamp(4rem, 3rem + 5vw, 8rem);
  --gutter: clamp(1.1rem, 4vw, 2.5rem);
  --wrap: 72rem;
  --wrap-tight: 50rem;

  --shadow-pop: 0 10px 0 rgba(21, 8, 38, .28);
  --shadow-card: 0 14px 34px rgba(43, 20, 48, .18);
  --radius: 1.25rem;
}

/* ---------- Reset-lite ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
body {
  font-family: var(--body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--cream); padding: .7rem 1.2rem;
  border-radius: 0 0 .6rem 0; font-weight: 800; text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ---------- Type helpers ---------- */
h1, h2, h3, .display {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: .01em;
  text-transform: uppercase;
}
h1 { font-size: var(--step-5); }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-2); }
.lede { font-size: var(--step-1); font-weight: 600; max-width: 42rem; }
.script { font-family: var(--script); font-size: 1.6em; text-transform: none; letter-spacing: 0; line-height: 1.1; }

/* Speckled ink display text, echoing the logo fill */
.speckle {
  color: var(--cream);
  text-shadow:
    0 3px 0 var(--night-deep),
    0 6px 0 rgba(13, 5, 24, .55);
}
.speckle-warm {
  background: linear-gradient(180deg, var(--orange) 0%, #ffcf6e 45%, var(--cream) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 3px 0 rgba(13, 5, 24, .8));
}

/* ---------- Banner label (the red logo ribbon) ---------- */
.banner {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: var(--red);
  color: var(--cream);
  font-family: var(--script);
  font-size: clamp(1.25rem, 1.05rem + 1vw, 1.7rem);
  font-weight: 600;
  padding: .28rem 1.5rem .42rem;
  border-radius: 999px;
  box-shadow: 0 4px 0 rgba(21, 8, 38, .3);
  transform: rotate(-1.5deg);
  position: relative;
}
.banner::before, .banner::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 16px; height: 16px;
  background: var(--purple);
  clip-path: polygon(0 45%, 100% 0, 70% 50%, 100% 100%);
}
.banner::before { left: -24px; transform: translateY(-50%); }
.banner::after { right: -24px; transform: translateY(-50%) scaleX(-1); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--display);
  font-size: var(--step-0);
  text-transform: uppercase;
  letter-spacing: .04em;
  text-decoration: none;
  padding: .95rem 1.9rem 1rem;
  border-radius: 999px;
  border: 3px solid var(--night-deep);
  transition: transform .15s ease, box-shadow .15s ease;
  text-align: center;
}
.btn-primary {
  background: linear-gradient(180deg, var(--orange), #e0781a);
  color: var(--night-deep);
  box-shadow: 0 6px 0 var(--night-deep);
}
.btn-secondary {
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 6px 0 var(--night-deep);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
  box-shadow: 0 6px 0 rgba(247, 236, 208, .25);
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--night-deep); }

/* Online ordering is paused until the Square site relaunches (~Oct 2026).
   The Square links stay in place but sit greyed out; script.js swaps their
   click for the "currently unavailable" popup below. To relaunch: strip
   `is-offline` and `aria-disabled` from the Square links, then delete this
   block and the matching block in script.js. */
.btn.is-offline {
  background: #8a8177;
  color: rgba(13, 5, 24, .5);
  border-color: rgba(13, 5, 24, .5);
  box-shadow: 0 6px 0 rgba(13, 5, 24, .5);
  cursor: not-allowed;
}
.btn.is-offline:hover { transform: none; }
.btn.is-offline:active { transform: none; box-shadow: 0 6px 0 rgba(13, 5, 24, .5); }
a.is-offline:not(.btn) { opacity: .55; cursor: not-allowed; }
a.is-offline:not(.btn)::after { content: " (currently unavailable)"; font-size: .85em; }

.offline-pop {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: var(--gutter);
  background: rgba(13, 5, 24, .55);
  backdrop-filter: blur(3px);
}
.offline-card {
  background: var(--cream);
  color: var(--ink);
  border: 4px solid var(--night-deep);
  border-radius: 1.6rem;
  box-shadow: var(--shadow-pop);
  max-width: 24rem;
  padding: 2rem 1.8rem;
  text-align: center;
  animation: pop-in .18s ease-out;
}
.offline-emoji { display: block; font-size: 2.4rem; margin-bottom: .4rem; }
.offline-card h3 { color: var(--red); margin-bottom: .7rem; }
.offline-card p { margin-bottom: 1.3rem; }
.offline-actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }
.offline-actions .btn { font-size: .85rem; padding: .65rem 1.3rem .7rem; cursor: pointer; }
@keyframes pop-in { from { transform: scale(.92); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .offline-card { animation: none; } }

/* ---------- Header ---------- */
.site-head {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(21, 8, 38, .82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(247, 236, 208, .12);
}
.site-head .inner {
  max-width: var(--wrap);
  margin-inline: auto;
  padding: .55rem var(--gutter);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.brand { flex-shrink: 0; }
.brand img { height: 52px; width: auto; }
.site-nav { margin-left: auto; display: flex; align-items: center; gap: 1.4rem; }
.site-nav a {
  color: var(--cream);
  text-decoration: none;
  font-weight: 800;
  font-size: var(--step--1);
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .3rem 0;
  border-bottom: 3px solid transparent;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { border-bottom-color: var(--orange); }
.site-nav .btn { padding: .55rem 1.3rem .6rem; font-size: .85rem; border-width: 2px; box-shadow: 0 4px 0 var(--night-deep); }
.site-nav .btn-primary { color: var(--night-deep); }

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 0;
  padding: .5rem;
  color: var(--cream);
}
.nav-toggle svg { width: 30px; height: 30px; }

@media (max-width: 800px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--night);
    border-bottom: 3px solid var(--orange);
    padding: .5rem 0 1rem;
    display: none;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: .85rem var(--gutter); border-bottom: 0; }
  .site-nav .btn { margin: .8rem var(--gutter) 0; justify-content: center; }
}

/* ---------- Hero: the dusk scene ---------- */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--cream);
  background: linear-gradient(180deg,
    var(--night) 0%,
    var(--dusk-purple) 26%,
    var(--dusk-magenta) 52%,
    var(--dusk-pink) 68%,
    var(--dusk-orange) 84%,
    var(--dusk-gold) 100%);
  min-height: 92svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 6rem var(--gutter) 9rem;
}
.hero-inner { position: relative; z-index: 6; max-width: 56rem; }
.hero-logo { width: min(620px, 82vw); margin-inline: auto; filter: drop-shadow(0 14px 24px rgba(13, 5, 24, .5)); }
.hero .script { color: var(--cream); font-size: clamp(1.5rem, 1.2rem + 1.6vw, 2.2rem); margin-top: .8rem; text-shadow: 0 2px 0 rgba(13,5,24,.5); }
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }
/* mobile: the 92svh hero leaves a big empty band above the logo and below the
   buttons on phones. Shrink the height and trim vertical padding so the centered
   content sits closer to the sunrise; night-sky and sun composition is preserved. */
@media (max-width: 640px) {
  .hero { min-height: 72svh; padding-top: 4rem; padding-bottom: 5.5rem; }
}

/* sun + rays */
.sun {
  position: absolute;
  left: 50%; bottom: -14vmin;
  width: 68vmin; height: 68vmin;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
}
.sun::before {
  content: '';
  position: absolute; inset: 18%;
  border-radius: 50%;
  background: radial-gradient(circle, #fff3cf 0%, var(--dusk-gold) 42%, rgba(255, 179, 71, 0) 72%);
}
.sun-rays {
  position: absolute; inset: 0;
  background: repeating-conic-gradient(from 0deg,
    rgba(255, 210, 120, .28) 0deg 9deg,
    rgba(255, 210, 120, 0) 9deg 24deg);
  border-radius: 50%;
  -webkit-mask-image: radial-gradient(circle, #000 30%, transparent 70%);
  mask-image: radial-gradient(circle, #000 30%, transparent 70%);
  animation: spin 90s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* stars in the upper sky */
.stars { position: absolute; inset: 0 0 55% 0; z-index: 0; pointer-events: none; }
.stars i {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--cream);
  border-radius: 50%;
  opacity: .8;
  animation: twinkle 3.2s ease-in-out infinite;
}
@keyframes twinkle { 0%, 100% { opacity: .25; } 50% { opacity: .9; } }

/* layered desert ridges + cacti (SVG bands pinned to hero bottom) */
.ridge { position: absolute; left: 0; right: 0; bottom: 0; pointer-events: none; }
.ridge svg { width: 100%; height: auto; display: block; }
.ridge-back { z-index: 2; }
.ridge-mid { z-index: 3; }
.ridge-front { z-index: 4; }

/* tumbleweed */
.tumbleweed {
  position: absolute;
  bottom: 4%;
  left: -140px;
  z-index: 5;
  width: 90px; height: 90px;
  pointer-events: none;
  opacity: 0;
}
.tumbleweed.rolling { animation: tumble var(--dur, 13s) linear forwards; }
.tumbleweed svg { animation: tumblespin var(--spin, 1.4s) linear infinite; }
@keyframes tumble {
  0%   { transform: translateX(0) translateY(0); opacity: 0; }
  3%   { opacity: var(--maxop, .9); }
  14%  { transform: translateX(15vw) translateY(calc(var(--hop, 1) * -30px)); }
  27%  { transform: translateX(31vw) translateY(calc(var(--hop, 1) * -4px)); }
  41%  { transform: translateX(47vw) translateY(calc(var(--hop, 1) * -27px)); }
  56%  { transform: translateX(64vw) translateY(calc(var(--hop, 1) * -3px)); }
  72%  { transform: translateX(84vw) translateY(calc(var(--hop, 1) * -25px)); }
  88%  { transform: translateX(103vw) translateY(calc(var(--hop, 1) * -3px)); }
  96%  { opacity: var(--maxop, .9); }
  100% { transform: translateX(122vw) translateY(0); opacity: 0; }
}
@keyframes tumblespin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .tumbleweed { display: none; } .sun-rays { animation: none; } }

/* scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 1.2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  color: var(--cream);
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: .65;
}

/* ---------- Section machinery ---------- */
.section { padding: var(--space) var(--gutter); }
.wrap { max-width: var(--wrap); margin-inline: auto; }
.wrap-tight { max-width: var(--wrap-tight); margin-inline: auto; }
.section-head { text-align: center; margin-bottom: clamp(2rem, 4vw, 3.4rem); }
.section-head h2 { margin-top: .9rem; }
.section-head .lede { margin: 1rem auto 0; }

/* day sections: warm cream with faint speckle */
.day {
  background-color: var(--paper);
  background-image: radial-gradient(rgba(43, 20, 48, .05) 1px, transparent 1.4px);
  background-size: 26px 26px;
}
.day-deep { background-color: var(--cream-deep); background-image: radial-gradient(rgba(43, 20, 48, .05) 1px, transparent 1.4px); background-size: 26px 26px; }

/* dusk sections */
.dusk {
  background: linear-gradient(180deg, var(--dusk-purple), var(--dusk-magenta) 60%, var(--dusk-pink));
  color: var(--cream);
}
.night-sec {
  background: linear-gradient(180deg, var(--dusk-purple), var(--night) 55%, var(--night-deep));
  color: var(--cream);
}

/* torn / wavy seam between day and dusk */
.seam { display: block; width: 100%; height: auto; margin-bottom: -2px; }

/* reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- Home: intro split ---------- */
.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
@media (max-width: 800px) { .intro-grid { grid-template-columns: 1fr; } }
.intro-copy p + p { margin-top: 1rem; }
.intro-copy .lede { margin-bottom: 1rem; }

/* polaroid cards */
.polaroid {
  background: #fff;
  padding: .7rem .7rem 2.4rem;
  border-radius: .4rem;
  box-shadow: var(--shadow-card);
  transform: rotate(var(--tilt, -2deg));
  position: relative;
}
.polaroid img { width: 100%; border-radius: .2rem; aspect-ratio: 1; object-fit: cover; }
.polaroid figcaption {
  position: absolute; left: 0; right: 0; bottom: .45rem;
  text-align: center;
  font-family: var(--script);
  font-size: 1.25rem;
  color: var(--ink-soft);
}
.polaroid::before {
  content: '';
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%) rotate(2deg);
  width: 92px; height: 26px;
  background: rgba(247, 148, 29, .5);
  border-left: 1px dashed rgba(255,255,255,.6);
  border-right: 1px dashed rgba(255,255,255,.6);
}
.polaroid-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.polaroid-stack .polaroid:nth-child(2) { --tilt: 2.4deg; margin-top: 2.2rem; }

/* food marquee strip */
.marquee-band {
  background: var(--red);
  padding: 1.6rem 0;
  overflow: hidden;
  border-top: 4px solid var(--night-deep);
  border-bottom: 4px solid var(--night-deep);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 48s linear infinite;
}
.marquee-group {
  display: flex;
  gap: 1.4rem;
  padding-right: 1.4rem;
}
.marquee-band:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(calc(-1 * var(--marw, 50%))); } }
@media (prefers-reduced-motion: reduce) {
  /* No animation: don't wrap into a tall one-per-row stack. Keep a single
     row the user can swipe, and drop the duplicate group used for the loop. */
  .marquee-track {
    animation: none;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .marquee-track::-webkit-scrollbar { display: none; }
  .marquee-group:nth-child(2) { display: none; }
}
.marquee-group img {
  width: 200px; height: 200px;
  object-fit: cover;
  border-radius: 1rem;
  border: 3px solid var(--cream);
  transform: rotate(-1.2deg);
  flex-shrink: 0;
}
.marquee-group img:nth-child(even) { transform: rotate(1.4deg); }

/* ---------- Menu ---------- */
.menu-board {
  background: var(--cream);
  border: 4px solid var(--night-deep);
  border-radius: 1.6rem;
  box-shadow: var(--shadow-pop);
  padding: clamp(1.5rem, 4vw, 3rem);
}
.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 3vw, 3rem); }
@media (max-width: 720px) { .menu-grid { grid-template-columns: 1fr; } }
.menu-col h3 {
  color: var(--red);
  border-bottom: 3px dashed rgba(43, 20, 48, .25);
  padding-bottom: .45rem;
  margin-bottom: 1rem;
}
.menu-item + .menu-item { margin-top: 1.1rem; }
.menu-item dt { font-family: var(--display); text-transform: uppercase; font-size: var(--step-1); }
.menu-item dd, .menu-item p { color: var(--ink-soft); font-weight: 600; }
.menu-tags { display: flex; flex-wrap: wrap; gap: .5rem .6rem; margin-top: .6rem; padding: 0; list-style: none; }
.menu-tags li {
  background: rgba(124, 185, 40, .18);
  border: 2px solid var(--cactus-deep);
  color: var(--cactus-deep);
  font-weight: 800;
  font-size: .82rem;
  padding: .12rem .7rem;
  border-radius: 999px;
}
.menu-note {
  margin-top: 1.6rem;
  padding-top: 1.2rem;
  border-top: 3px dashed rgba(43, 20, 48, .25);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.menu-note p { font-weight: 700; color: var(--ink-soft); max-width: 34rem; }

/* ---------- Reviews ---------- */
.rating-badges { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.4rem; }
.rating-badge {
  background: var(--night-deep);
  border: 2px solid rgba(247, 236, 208, .35);
  border-radius: 1rem;
  padding: .8rem 1.4rem;
  text-align: center;
  text-decoration: none;
  color: var(--cream);
  min-width: 10rem;
}
.rating-badge strong { font-family: var(--body); font-weight: 900; font-size: var(--step-3); letter-spacing: .01em; line-height: 1.05; display: block; }
.rating-badge .st { color: var(--dusk-gold); letter-spacing: .12em; }
.rating-badge small { font-weight: 700; opacity: .85; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
@media (max-width: 900px) { .review-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .review-grid { grid-template-columns: 1fr; } }
.review-card {
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.2rem;
  box-shadow: 0 8px 0 rgba(13, 5, 24, .35);
  transform: rotate(var(--tilt, 0deg));
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
/* Gold on a night pill, the same treatment as .rating-badge above. Orange on
   cream was 1.94:1, the worst on the site; this is 10.77:1. align-self keeps
   the pill shrink-wrapped, since .review-card is a column flex container and
   the span would otherwise stretch the full card width. */
.review-card .st {
  color: var(--dusk-gold);
  background: var(--night-deep);
  align-self: flex-start;
  padding: .15rem .75rem .25rem;
  border-radius: 999px;
  letter-spacing: .14em;
  font-size: .95rem;
}
.review-card blockquote { font-weight: 600; }
.review-card footer { margin-top: auto; font-weight: 800; color: var(--ink-soft); font-size: var(--step--1); }

/* ---------- Split feature (catering teaser etc) ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
@media (max-width: 800px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-copy p + p { margin-top: 1rem; }
.feature-copy .btn { margin-top: 1.6rem; }
.feature-copy h2 { margin-top: .9rem; margin-bottom: 1rem; }

.stat-band { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.6rem; }
.stat {
  background: rgba(13, 5, 24, .3);
  border: 2px solid rgba(247, 236, 208, .3);
  border-radius: 1rem;
  padding: .7rem 1.2rem;
  font-weight: 800;
}
.stat b { font-family: var(--display); font-size: var(--step-2); display: block; color: var(--dusk-gold); }

/* link cards (gift, merch, order) */
/* Track is capped rather than 1fr so a row of two (home) centers under the
   heading instead of hugging the left with a dead third column. 23rem is the
   width a 1fr track lands on at --wrap, so the row of three (contact) is
   unchanged. */
.link-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 23rem));
  justify-content: center;
  gap: 1.4rem;
}
@media (max-width: 760px) { .link-cards { grid-template-columns: 1fr; } }
.link-card {
  background: var(--cream);
  border: 3px solid var(--night-deep);
  border-radius: var(--radius);
  box-shadow: 0 8px 0 var(--night-deep);
  padding: 1.8rem 1.6rem;
  text-decoration: none;
  color: var(--ink);
  transition: transform .15s ease;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.link-card:hover { transform: translateY(-4px) rotate(-.6deg); }
.link-card .emoji { font-size: 2rem; }
.link-card h3 { color: var(--red); }
.link-card p { font-weight: 600; color: var(--ink-soft); }
.link-card span { font-weight: 800; color: var(--purple); margin-top: auto; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(180deg, var(--night) 0%, var(--dusk-purple) 45%, var(--dusk-magenta) 80%, var(--dusk-pink) 100%);
  color: var(--cream);
  text-align: center;
  padding: clamp(4rem, 8vw, 6.5rem) var(--gutter) clamp(4.5rem, 9vw, 7rem);
  position: relative;
  overflow: hidden;
}
.page-hero .wrap-tight { position: relative; z-index: 2; }
.page-hero h1 { margin-top: 1rem; }
.page-hero .lede { margin: 1.2rem auto 0; }
/* Long single words (e.g. "Professionals") overflow the base h1 size on
   phones; cap it so the widest inner-hero word fits down to 320px. */
@media (max-width: 430px) { .page-hero h1 { font-size: clamp(2rem, 8vw, 2.6rem); } }

/* ---------- Catering ---------- */
.style-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
@media (max-width: 760px) { .style-cards { grid-template-columns: 1fr; } }
.style-card {
  background: var(--cream);
  border: 4px solid var(--night-deep);
  border-radius: var(--radius);
  box-shadow: var(--shadow-pop);
  padding: 2rem 1.8rem;
}
.style-card h3 { color: var(--red); margin-bottom: .8rem; }
.style-card p + p { margin-top: .8rem; }
.style-card .fits {
  margin-top: 1.2rem;
  font-weight: 800;
  color: var(--cactus-deep);
  background: rgba(124, 185, 40, .16);
  border-radius: .7rem;
  padding: .5rem .9rem;
  display: inline-block;
}

/* form */
.form-shell {
  background: var(--cream);
  border: 4px solid var(--night-deep);
  border-radius: 1.6rem;
  box-shadow: var(--shadow-pop);
  padding: clamp(1.6rem, 4vw, 2.8rem);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.4rem; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field-full { grid-column: 1 / -1; }
.field label, .field .label { font-weight: 800; font-size: var(--step--1); text-transform: uppercase; letter-spacing: .05em; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  font: inherit;
  font-weight: 600;
  padding: .75rem .9rem;
  border: 3px solid var(--ink);
  border-radius: .8rem;
  background: #fff;
  color: var(--ink);
  width: 100%;
}
.field textarea { min-height: 7.5rem; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid var(--orange); outline-offset: 1px; }
.yn-group { display: flex; gap: 1.2rem; align-items: center; padding-top: .3rem; }
.yn-group label { display: inline-flex; gap: .4rem; align-items: center; font-weight: 700; text-transform: none; letter-spacing: 0; font-size: var(--step-0); color: var(--ink); }
.yn-group input { width: 1.15rem; height: 1.15rem; accent-color: var(--red); }
/* Column, not a centered row: the status message appears after submit, and in
   a row it would push the button off-center the moment it showed up. */
.form-actions { grid-column: 1 / -1; display: flex; flex-direction: column; align-items: center; gap: 1rem; margin-top: .4rem; }
.form-status { font-weight: 800; text-align: center; }
.form-status.ok { color: var(--cactus-deep); }
.form-status.err { color: var(--red-deep); }

/* ---------- Events ---------- */
.find-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
@media (max-width: 860px) { .find-cards { grid-template-columns: 1fr; } }

/* ---------- Footer: night sky ---------- */
.site-foot {
  background: linear-gradient(180deg, var(--night) 0%, var(--night-deep) 100%);
  color: var(--cream);
  padding: calc(var(--space) * .9) var(--gutter) 6.5rem;
  position: relative;
  overflow: hidden;
}
.site-foot .stars { inset: 0 0 30% 0; }
.foot-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2.5rem;
  max-width: var(--wrap);
  margin-inline: auto;
}
@media (max-width: 800px) { .foot-grid { grid-template-columns: 1fr; } }
.foot-grid img { width: 240px; }
.foot-grid h3 { font-size: var(--step-0); letter-spacing: .1em; color: var(--dusk-gold); margin-bottom: .9rem; }
.foot-grid ul { list-style: none; padding: 0; display: grid; gap: .5rem; }
.foot-grid a { color: var(--cream); text-decoration: none; font-weight: 700; }
.foot-grid a:hover { color: var(--dusk-gold); }
.foot-tag { margin-top: 1rem; font-weight: 600; opacity: .85; max-width: 24rem; }
.foot-legal {
  position: relative; z-index: 2;
  max-width: var(--wrap);
  margin: 3rem auto 0;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(247, 236, 208, .18);
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.6rem;
  justify-content: space-between;
  font-size: var(--step--1);
  font-weight: 600;
  opacity: .85;
}
.foot-legal a { color: var(--cream); }
/* ---------- Scroll Theory canonical footer credit ---------- */
.foot-legal .st-credit {
  font-family: var(--font-mono, monospace);
  font-size: .75rem;
  letter-spacing: .02em;
  color: #fff;
  opacity: .6;
  text-decoration: none;
  transition: color .2s ease, opacity .2s ease;
}
.foot-legal .st-credit:hover { opacity: 1; color: #BFFF00; }
.st-wm { font-weight: 700; }
.st-wm u { color: #BFFF00; text-decoration: none; } /* the lime underscore, always lime */
/* desert floor silhouette pinned to footer bottom */
.foot-horizon { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; opacity: .9; }

/* ---------- Sticky mobile order bar ---------- */
.mobile-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: none;
  gap: .5rem;
  background: var(--night-deep);
  border-top: 3px solid var(--orange);
  padding: .5rem var(--gutter);
}
/* ~25% smaller than the base .btn, one line each, so the sticky bar stays short */
.mobile-bar .btn { flex: 1; justify-content: center; padding: .5rem .7rem .55rem; font-size: .78rem; border-width: 2px; box-shadow: 0 4px 0 var(--night-deep); }
@media (max-width: 720px) { .mobile-bar { display: flex; } }

/* ---------- 404 ---------- */
.lost {
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem var(--gutter);
}
.lost .hero-ctas { margin-top: 1.8rem; }

/* ---------- utility ---------- */
.center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
