/* =========================================================
   THE HEAD STASH — design tokens
   Theme: cultivation/apothecary, not stoner-cliché.
   Freshness is the whole point: verified data ages visibly,
   the way flower itself does. Every color tied to that idea
   is functional (fresh/aging/recheck), not decorative.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  /* ---- surfaces ---- */
  --bg: #15130f;
  --bg-elevated: #1c1913;
  --surface: #211d16;
  --surface-hover: #292418;
  --border: #38321f;
  --border-soft: #2a2519;

  /* ---- text ---- */
  --text: #f3eee2;
  --text-muted: #ab9f89;
  --text-faint: #746a58;

  /* ---- brand accents ---- */
  --amber: #c9903c;
  --amber-bright: #e5ac52;
  --sage: #8a9a6c;
  --sage-bright: #a3b686;
  --rust: #b6543a;
  --rust-bright: #d1694c;

  /* ---- freshness states (the signature system) ---- */
  --fresh: var(--sage-bright);
  --fresh-dim: #46512f;
  --aging: var(--amber-bright);
  --aging-dim: #4a3a1c;
  --recheck: var(--rust-bright);
  --recheck-dim: #4a2a20;

  /* ---- type ---- */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', monospace;

  /* ---- shape / rhythm ---- */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --edge: 1px solid var(--border);
  --container: 1240px;

  --shadow-card: 0 1px 2px rgba(0,0,0,0.4), 0 12px 32px -16px rgba(0,0,0,0.6);
}

/* ---------------------------------------------------------
   Reset & base
   --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 900px 500px at 15% -10%, rgba(201,144,60,0.10), transparent 60%),
    radial-gradient(ellipse 700px 600px at 100% 0%, rgba(138,154,108,0.08), transparent 55%);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
input, select { font-family: inherit; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; margin: 0; letter-spacing: -0.01em; }
p { margin: 0; }

.mono { font-family: var(--font-mono); }

:focus-visible {
  outline: 2px solid var(--amber-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-bright);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 14px;
  height: 1px;
  background: var(--amber-bright);
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0; padding: 0; margin: -1px;
}

/* ---------------------------------------------------------
   Buttons
   --------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--amber-bright);
  color: #1c1408;
}
.btn-primary:hover { background: #f0bb66; }

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--amber-bright); color: var(--amber-bright); }

.btn-quiet {
  background: var(--bg-elevated);
  border-color: var(--border);
  color: var(--text-muted);
}
.btn-quiet:hover { color: var(--text); border-color: var(--text-faint); }

.btn-block { width: 100%; }
.btn-sm { padding: 9px 14px; font-size: 13px; }

/* ---------------------------------------------------------
   Header
   --------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(21, 19, 15, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: var(--edge);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}

.wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}
.wordmark .mark {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.wordmark .mark .accent { color: var(--amber-bright); }
.wordmark .sub {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: 3px;
}

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.15s ease, background 0.15s ease;
}
.main-nav a:hover { color: var(--text); background: var(--surface); }
.main-nav a.active { color: var(--text); background: var(--surface); }

.header-right { display: flex; align-items: center; gap: 14px; }

/* store status pill — reused in header + footer + store page */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
}
.status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--fresh);
  box-shadow: 0 0 0 3px var(--fresh-dim);
  flex-shrink: 0;
}
.status-pill.closed .status-dot {
  background: var(--recheck);
  box-shadow: 0 0 0 3px var(--recheck-dim);
}

.nav-toggle {
  display: none;
  background: none; border: 1px solid var(--border); border-radius: var(--radius-sm);
  width: 42px; height: 42px; color: var(--text);
  align-items: center; justify-content: center;
}

/* ---------------------------------------------------------
   Footer
   --------------------------------------------------------- */
.site-footer {
  border-top: var(--edge);
  margin-top: 120px;
  background: var(--bg-elevated);
}
.footer-grid {
  padding: 64px 0 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 16px;
}
.footer-col a, .footer-col p {
  display: block;
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 10px;
}
.footer-col a:hover { color: var(--amber-bright); }
.footer-brand p { color: var(--text-muted); font-size: 14px; max-width: 34ch; margin-top: 14px; }

.compliance-strip {
  border-top: var(--edge);
  padding: 22px 0 30px;
}
.compliance-strip .wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.compliance-strip p {
  font-family: var(--font-mono);
  font-size: 11.5px;
  line-height: 1.7;
  color: var(--text-faint);
  max-width: 92ch;
}
.compliance-strip .license {
  color: var(--text-muted);
}

/* ---------------------------------------------------------
   Age gate
   --------------------------------------------------------- */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(ellipse 900px 500px at 20% 10%, rgba(201,144,60,0.14), transparent 60%),
    rgba(10, 9, 7, 0.94);
  backdrop-filter: blur(6px);
}
.age-gate[hidden] { display: none; }
.age-gate-card {
  width: 100%;
  max-width: 420px;
  background: var(--bg-elevated);
  border: var(--edge);
  border-radius: var(--radius-lg);
  padding: 40px 34px 34px;
  text-align: center;
  box-shadow: var(--shadow-card);
  animation: rise 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.age-gate-card .glyph {
  width: 46px; height: 46px; margin: 0 auto 20px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--amber-bright);
}
.age-gate-card h2 { font-size: 24px; margin-bottom: 10px; }
.age-gate-card p.lede { color: var(--text-muted); font-size: 14.5px; margin-bottom: 26px; }
.age-gate-actions { display: flex; flex-direction: column; gap: 10px; }
.age-gate-fine {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text-faint);
  margin-top: 22px;
  line-height: 1.6;
}

/* ---------------------------------------------------------
   Hero
   --------------------------------------------------------- */
.hero {
  padding: 76px 0 40px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(38px, 4.6vw, 62px);
  line-height: 1.04;
  margin: 18px 0 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--amber-bright);
}
.hero .lede {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 46ch;
  margin-bottom: 30px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 34px; }

.hero-trust {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}
.hero-trust div { display: flex; flex-direction: column; }
.hero-trust .num {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
}
.hero-trust .label { font-size: 12.5px; color: var(--text-faint); margin-top: 2px; }

/* the hero's "thesis" widget: a live mini verification ticker */
.hero-visual {
  background: var(--bg-elevated);
  border: var(--edge);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-card);
}
.hero-visual-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px; padding-bottom: 16px; border-bottom: var(--edge);
}
.hero-visual-head .t { font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); letter-spacing: 0.04em; }
.mini-cards { display: flex; flex-direction: column; gap: 10px; }

.mini-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border-soft);
}
.mini-card .thumb {
  width: 44px; height: 44px; border-radius: 8px;
  background: linear-gradient(145deg, #35301f, #221e15);
  flex-shrink: 0; overflow: hidden;
}
.mini-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.mini-card .info { flex: 1; min-width: 0; }
.mini-card .name { font-size: 13.5px; font-weight: 600; }
.mini-card .meta { font-family: var(--font-mono); font-size: 11px; color: var(--text-faint); margin-top: 2px; }
.mini-card .ring { flex-shrink: 0; }

/* ---------------------------------------------------------
   Freshness ring — the signature element
   --------------------------------------------------------- */
.freshness-ring {
  position: relative;
  width: var(--ring-size, 40px);
  height: var(--ring-size, 40px);
  flex-shrink: 0;
}
.freshness-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.freshness-ring circle.track { stroke: var(--border); fill: none; }
.freshness-ring circle.fill { fill: none; stroke-linecap: round; transition: stroke-dashoffset 0.6s ease; }
.freshness-ring.state-fresh circle.fill { stroke: var(--fresh); }
.freshness-ring.state-aging circle.fill { stroke: var(--aging); }
.freshness-ring.state-recheck circle.fill { stroke: var(--recheck); }
.freshness-ring .dot {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
}
.freshness-ring .dot svg { width: 46%; height: 46%; transform: none; }
.state-fresh .dot { color: var(--fresh); }
.state-aging .dot { color: var(--aging); }
.state-recheck .dot { color: var(--recheck); }

/* ---------------------------------------------------------
   Section scaffolding
   --------------------------------------------------------- */
.section { padding: 84px 0; }
.section-tight { padding: 56px 0; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
  flex-wrap: wrap;
}
.section-head h2 { font-size: clamp(26px, 3vw, 36px); margin-top: 12px; max-width: 22ch; }
.section-head .desc { color: var(--text-muted); max-width: 42ch; font-size: 15px; }
.section-alt { background: var(--bg-elevated); border-top: var(--edge); border-bottom: var(--edge); }

/* ---------------------------------------------------------
   Verification process (numbered — real sequence)
   --------------------------------------------------------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: var(--edge);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.process-step {
  background: var(--bg);
  padding: 34px 30px 30px;
}
.process-step .n {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--amber-bright);
  margin-bottom: 18px;
}
.process-step h3 { font-size: 19px; margin-bottom: 10px; }
.process-step p { color: var(--text-muted); font-size: 14.5px; }

/* ---------------------------------------------------------
   Category cards
   --------------------------------------------------------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.cat-card {
  border: var(--edge);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface);
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.cat-card:hover { border-color: var(--amber-bright); transform: translateY(-3px); }
.cat-card .cat-img {
  aspect-ratio: 1 / 1;
  background: linear-gradient(150deg, #362f1e, #201c13);
  position: relative;
}
.cat-card .cat-img img { width: 100%; height: 100%; object-fit: cover; }
.cat-card .cat-body { padding: 12px 14px 15px; }
.cat-card .cat-name { font-weight: 600; font-size: 14px; }
.cat-card .cat-count { font-family: var(--font-mono); font-size: 11px; color: var(--text-faint); margin-top: 3px; }

/* ---------------------------------------------------------
   Product grid + card
   --------------------------------------------------------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(252px, 1fr));
  gap: 20px;
}
.product-card {
  background: var(--surface);
  border: var(--edge);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.product-card:hover { border-color: var(--text-faint); transform: translateY(-2px); }

.product-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(150deg, #362f1e, #201c13);
}
.product-media .media-photo { position: absolute; inset: 0; }
.product-media img { width: 100%; height: 100%; object-fit: cover; }
.product-media .strain-badge {
  position: absolute; top: 10px; left: 10px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(21,19,15,0.78);
  border: 1px solid var(--border);
  backdrop-filter: blur(4px);
}
.product-media .ring-slot {
  position: absolute; top: 8px; right: 8px;
  background: rgba(21,19,15,0.78);
  border-radius: 50%;
  padding: 3px;
  backdrop-filter: blur(4px);
}

.product-body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product-cat { font-family: var(--font-mono); font-size: 10.5px; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.08em; }
.product-name { font-family: var(--font-display); font-size: 17px; font-weight: 600; line-height: 1.25; }
.product-brand { font-size: 12.5px; color: var(--text-muted); }

.product-specs { display: flex; gap: 14px; font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); }
.product-specs b { color: var(--text); font-weight: 600; }

.product-effects { display: flex; gap: 6px; flex-wrap: wrap; }
.effect-chip {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.product-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 12px;
  border-top: var(--edge);
}
.product-price { font-family: var(--font-mono); font-size: 18px; font-weight: 600; }
.product-price small { font-size: 11px; color: var(--text-faint); font-weight: 400; }

.stock-line {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 11px; color: var(--text-muted);
}
.stock-line.low { color: var(--aging); }
.stock-line.out { color: var(--recheck); }

/* ---------------------------------------------------------
   Menu page: filter rail + results
   --------------------------------------------------------- */
.menu-layout {
  display: grid;
  grid-template-columns: 268px 1fr;
  gap: 36px;
  align-items: start;
}

.filter-rail {
  background: var(--bg-elevated);
  border: var(--edge);
  border-radius: var(--radius-lg);
  padding: 22px;
  position: sticky;
  top: 96px;
}
.filter-rail h3 {
  font-size: 14px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  color: var(--text-faint);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.filter-group { padding: 18px 0; border-bottom: var(--edge); }
.filter-group:first-child { padding-top: 0; }
.filter-group:last-child { border-bottom: none; padding-bottom: 0; }
.filter-group-title {
  font-size: 13px; font-weight: 600; margin-bottom: 12px;
  display: flex; align-items: center; justify-content: space-between;
}
.filter-group-title .reset-mini {
  font-family: var(--font-mono); font-size: 10.5px; color: var(--text-faint); font-weight: 400;
}
.filter-group-title .reset-mini:hover { color: var(--amber-bright); }

.search-box {
  display: flex; align-items: center; gap: 8px;
  background: var(--surface); border: var(--edge); border-radius: var(--radius-sm);
  padding: 10px 12px;
}
.search-box input {
  border: none; background: none; color: var(--text); font-size: 13.5px; width: 100%; outline: none;
}
.search-box input::placeholder { color: var(--text-faint); }

.chip-row { display: flex; flex-wrap: wrap; gap: 7px; }
.chip {
  font-size: 12.5px;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
  transition: all 0.12s ease;
}
.chip:hover { border-color: var(--text-faint); color: var(--text); }
.chip.is-active {
  background: var(--amber-bright);
  border-color: var(--amber-bright);
  color: #1c1408;
  font-weight: 600;
}

.check-row { display: flex; flex-direction: column; gap: 9px; }
.check-row label {
  display: flex; align-items: center; gap: 9px;
  font-size: 13.5px; color: var(--text-muted); cursor: pointer;
}
.check-row label:hover { color: var(--text); }
.check-row input[type="checkbox"] {
  appearance: none; width: 16px; height: 16px; border-radius: 4px;
  border: 1px solid var(--border); background: var(--surface); flex-shrink: 0;
  display: grid; place-content: center;
}
.check-row input[type="checkbox"]::before {
  content: ""; width: 8px; height: 8px; border-radius: 2px; background: var(--amber-bright); transform: scale(0);
  transition: transform 0.1s ease;
}
.check-row input[type="checkbox"]:checked::before { transform: scale(1); }
.check-row input[type="checkbox"]:checked { border-color: var(--amber-bright); }

.toggle-row {
  display: flex; align-items: center; justify-content: space-between;
}
.toggle-row span { font-size: 13.5px; color: var(--text-muted); }
.switch {
  width: 38px; height: 22px; border-radius: 999px; background: var(--surface); border: 1px solid var(--border);
  position: relative; flex-shrink: 0;
}
.switch::after {
  content: ""; position: absolute; top: 2px; left: 2px; width: 16px; height: 16px; border-radius: 50%;
  background: var(--text-faint); transition: transform 0.15s ease, background 0.15s ease;
}
.switch.on { border-color: var(--amber-bright); background: var(--aging-dim); }
.switch.on::after { transform: translateX(16px); background: var(--amber-bright); }

.results-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin-bottom: 22px; padding-bottom: 18px; border-bottom: var(--edge);
}
.results-count { font-size: 14.5px; }
.results-count b { font-family: var(--font-mono); }
.sync-note {
  font-family: var(--font-mono); font-size: 11.5px; color: var(--text-faint);
  display: flex; align-items: center; gap: 6px; margin-top: 4px;
}
.sort-select {
  background: var(--surface); border: var(--edge); border-radius: var(--radius-sm);
  color: var(--text); padding: 9px 12px; font-size: 13px;
}

.empty-state {
  text-align: center; padding: 70px 20px; border: 1px dashed var(--border); border-radius: var(--radius-lg);
}
.empty-state h3 { font-size: 19px; margin-bottom: 8px; }
.empty-state p { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; }

/* ---------------------------------------------------------
   Store page
   --------------------------------------------------------- */
.store-hero {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.store-photo {
  aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden; border: var(--edge);
  background: linear-gradient(150deg, #362f1e, #201c13);
}
.store-photo img { width: 100%; height: 100%; object-fit: cover; }

.hours-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.hours-table td { padding: 10px 0; border-bottom: 1px solid var(--border-soft); font-size: 14.5px; }
.hours-table td:first-child { color: var(--text-muted); }
.hours-table td:last-child { text-align: right; font-family: var(--font-mono); font-size: 13.5px; }
.hours-table tr.today td { color: var(--text); font-weight: 600; }

.info-card {
  background: var(--surface); border: var(--edge); border-radius: var(--radius-lg); padding: 26px;
}
.info-card h3 { font-size: 15px; margin-bottom: 16px; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-faint); }

.mode-toggle { display: flex; gap: 8px; margin-bottom: 20px; }
.mode-toggle button {
  flex: 1; padding: 10px; border-radius: var(--radius-sm); border: 1px solid var(--border);
  background: var(--surface); color: var(--text-muted); font-size: 13.5px; font-weight: 600;
}
.mode-toggle button.is-active { background: var(--amber-bright); color: #1c1408; border-color: var(--amber-bright); }

.deal-row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 16px 0; border-bottom: 1px solid var(--border-soft);
}
.deal-row:last-child { border-bottom: none; }
.deal-row .day { font-family: var(--font-mono); font-size: 11.5px; color: var(--amber-bright); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.deal-row .desc { font-size: 14.5px; }

/* ---------------------------------------------------------
   About page
   --------------------------------------------------------- */
.about-lede {
  font-family: var(--font-display); font-size: clamp(24px, 3vw, 32px); line-height: 1.35; max-width: 26ch;
}
.split-media {
  display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center;
}
.split-media.reverse .media { order: 2; }
.media {
  aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden; border: var(--edge);
  background: linear-gradient(150deg, #362f1e, #201c13);
}
.media img { width: 100%; height: 100%; object-fit: cover; }
.stat-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); border: var(--edge); border-radius: var(--radius-lg); overflow: hidden; }
.stat-cell { background: var(--bg); padding: 26px 20px; text-align: center; }
.stat-cell .num { font-family: var(--font-mono); font-size: 30px; font-weight: 600; color: var(--amber-bright); }
.stat-cell .label { font-size: 12.5px; color: var(--text-muted); margin-top: 6px; }

/* ---------------------------------------------------------
   Placeholder image fallback (graceful missing-image state)
   --------------------------------------------------------- */
.ph-fallback {
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 6px;
  width: 100%; height: 100%; color: var(--text-faint);
  font-family: var(--font-mono); font-size: 10.5px; text-align: center; padding: 10px;
}
.ph-fallback svg { width: 22px; height: 22px; opacity: 0.6; }

/* ---------------------------------------------------------
   Responsive
   --------------------------------------------------------- */
@media (max-width: 1080px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 920px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .menu-layout { grid-template-columns: 1fr; }
  .filter-rail { position: static; }
  .store-hero { grid-template-columns: 1fr; }
  .split-media { grid-template-columns: 1fr; }
  .split-media.reverse .media { order: 0; }
  .process-grid { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 640px) {
  .wrap { padding: 0 18px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero { padding: 44px 0 30px; }
  .section { padding: 56px 0; }
}
