/* ---------- Base ---------- */
:root {
  --black: #101010;
  --white: #ffffff;
  --grey: #6f6f6f;
  --line: #e4e4e0;
  --green: #1e5636;
  --accent: #8d2a3a;
  --hero-tint: #f8f2f3;
  /* A deeper pick from the same gradient family (~11% accent over white),
     used only for Safari's chrome sampling — reads as clearly pink up in
     the status-bar area instead of near-white. */
  --chrome-tint: #f3e5e8;
  --font-sans: "Space Grotesk", -apple-system, sans-serif;
  --font-mono: "Space Mono", monospace;
  --pad: clamp(1.25rem, 4vw, 4rem);
}

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

.safari-chrome-tint {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 12px;
  background: var(--chrome-tint);
  pointer-events: none;
  /* Painted behind all page content (Safari still samples it there), so the
     deeper pink never visibly overlaps the hero — it only shows up in the
     status-bar/toolbar chrome. */
  z-index: -1;
}

/* Safari 26 dropped support for the theme-color meta tag entirely — it now
   derives the status-bar/toolbar tint straight from real CSS: either a
   fixed/sticky element sitting within 4px of the viewport top, or (as the
   fallback) the actual `background-color` of <body>. That's why nothing
   we tried via meta tags ever stuck. Giving `body` itself this pale tint
   (matched to the top of the hero's gradient) is the fix Safari actually
   reads, on every load, reliably. */
html { scroll-behavior: smooth; background: var(--hero-tint); }

body {
  font-family: var(--font-sans);
  color: var(--black);
  background: var(--hero-tint);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent); color: var(--white); }

section[id] { scroll-margin-top: 96px; }

h1, h2 {
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

/* Mono eyebrow label */
.label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.label--light { color: rgba(255, 255, 255, 0.6); }
.label--pad { padding: 0 var(--pad); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.92rem;
  text-decoration: none;
  border: 1px solid var(--black);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.btn--solid { background: var(--black); color: var(--white); }
.btn--solid:hover { background: var(--accent); border-color: var(--accent); }

/* Primary DoorDash CTA — carries the same maroon accent used throughout
   the mobile hero, so it reads as the one action to take. */
.btn--accent { background: var(--accent); border-color: var(--accent); }
.btn--accent:hover { filter: brightness(1.1); }

.btn--line { background: transparent; color: var(--black); }
.btn--line:hover { background: var(--black); color: var(--white); }

.btn--white { background: var(--white); color: var(--black); border-color: var(--white); }
.btn--white:hover { background: transparent; color: var(--white); }

.btn--lg { padding: 0.95rem 1.9rem; font-size: 1rem; }
.btn--sm { padding: 0.5rem 1.05rem; font-size: 0.82rem; }

/* ---------- Age gate ---------- */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  /* This full-screen fixed overlay is what Safari 26 samples for its chrome
     tint on first load (fixed elements at the top edge outrank everything).
     Carry the same pink background-color as the chrome strip — plus the
     hero's gradient for visual cohesion — so the status bar is never flat
     white while the gate is up. (Safari only reads background-color, not
     gradients, hence both.) */
  background-color: var(--chrome-tint);
  background-image: radial-gradient(120% 55% at 50% -8%, rgba(141, 42, 58, 0.06), transparent 62%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 1;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
/* visibility:hidden matters beyond a11y: the dismissed gate stays in the DOM,
   and while merely transparent it can still win Safari's chrome sampling. */
.age-gate.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.age-gate__card { text-align: center; max-width: 420px; }
.age-gate__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: clamp(1.6rem, 5vw, 2.1rem);
  letter-spacing: -0.02em;
  color: var(--black);
}
.age-gate__brand span { color: var(--grey); font-weight: 400; }
.age-gate__heart { width: 22px; height: 22px; fill: var(--accent); margin-left: 0.6rem; }
.age-gate__card h1 {
  font-size: clamp(3rem, 9vw, 4.5rem);
  margin: 1.2rem 0 0.4rem;
}
.age-gate__sub { color: var(--grey); font-size: 0.95rem; }
.age-gate__actions {
  display: flex;
  gap: 0.7rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* ---------- Header (floating pill) ---------- */
.header {
  position: fixed;
  top: clamp(0.75rem, 2vw, 1.25rem);
  left: 50%;
  transform: translateX(-50%);
  width: min(1060px, calc(100% - 1.5rem));
  z-index: 50;
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.6rem;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 34px rgba(16, 16, 16, 0.08);
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--black);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}
.nav__brand span { color: var(--grey); font-weight: 400; }
.nav__heart { width: 15px; height: 15px; fill: var(--accent); margin-left: 0.5rem; }


.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav__links a:not(.btn) {
  text-decoration: none;
  color: var(--black);
  font-size: 0.92rem;
}
.nav__links a:not(.btn):hover { color: var(--accent); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: 0;
  padding: 8px 4px;
  cursor: pointer;
}
.nav__toggle span { width: 24px; height: 1.5px; background: var(--black); transition: transform 0.2s ease; }
.nav__toggle[aria-expanded="true"] span:first-child { transform: translateY(3.75px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
  align-items: end;
  padding: clamp(6.5rem, 14vw, 9.5rem) var(--pad) clamp(2.5rem, 5vw, 4rem);
}

.hero__watermark { display: none; }
.hero__cats { display: none; }
.hero__stats { display: none; }

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b5b5b5;
  display: inline-block;
}
.status-dot.is-open { background: var(--green); }
.status-dot.is-closed { background: #b3261e; }

.hero__title {
  font-size: clamp(2.5rem, 7.2vw, 5.6rem);
  margin: 1.3rem 0 1.4rem;
}
.hero__title-outline {
  font-weight: 700;
}
@supports ((-webkit-text-stroke: 1px black)) {
  .hero__title-outline {
    color: transparent;
    -webkit-text-stroke: 0.035em var(--accent);
  }
}

.hero__lede {
  color: var(--grey);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  max-width: 26em;
}

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

.hero__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.6rem;
  text-decoration: none;
  color: var(--grey);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}
.hero__rating:hover span:last-child { text-decoration: underline; color: var(--black); }
.hero__stars { color: var(--accent); letter-spacing: 0.2em; font-size: 0.85rem; }

.hero__art { color: var(--black); }
.hero__art svg { width: 100%; max-width: 420px; height: auto; display: block; margin-left: auto; }
.hero__art-fill { fill: var(--accent); }
.hero__art-accent { stroke: var(--accent); }

/* ---------- Ticker ---------- */
.ticker {
  border-top: 1px solid var(--line);
  overflow: hidden;
  padding: 0.85rem 0;
  white-space: nowrap;
}
.ticker__track {
  display: inline-flex;
  animation: ticker 28s linear infinite;
  will-change: transform;
}
.ticker__track span {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  flex-shrink: 0;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.ticker__heart { color: var(--accent); }

/* ---------- Instagram banner ---------- */
.ig-banner { border-bottom: 1px solid var(--line); background: var(--accent); }
.ig-banner__link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding: 0.95rem var(--pad);
  color: var(--white);
  text-decoration: none;
  font-size: 0.92rem;
  text-align: center;
  transition: filter 0.18s ease;
}
.ig-banner__link:hover { filter: brightness(1.1); }
.ig-banner__icon { width: 17px; height: 17px; fill: currentColor; flex-shrink: 0; }
.ig-banner__text strong { font-weight: 600; }
.ig-banner__arrow { transition: transform 0.18s ease; }
.ig-banner__link:hover .ig-banner__arrow { transform: translateX(6px); }

/* Compact pill version, surfaced above the fold on mobile — hidden elsewhere,
   the full-width band below still handles tablet/desktop. */
.hero__ig { display: none; }

/* ---------- Category index ---------- */
.shop { padding: clamp(3.5rem, 7vw, 6rem) 0 0; }

.index { margin-top: 1.5rem; border-top: 1px solid var(--line); }

.index__row {
  display: grid;
  grid-template-columns: 4rem 1fr auto 3rem;
  align-items: baseline;
  gap: 1.5rem;
  padding: clamp(1.4rem, 3vw, 2.1rem) var(--pad);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--black);
  transition: background 0.18s ease, color 0.18s ease;
}

.index__num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--grey);
}

.index__name {
  font-size: clamp(1.7rem, 4.5vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.index__desc {
  color: var(--grey);
  font-size: 0.92rem;
  justify-self: end;
}

.index__arrow {
  font-size: 1.4rem;
  justify-self: end;
  transition: transform 0.18s ease;
}

.index__row:hover { background: var(--black); color: var(--white); }
.index__row:hover .index__num,
.index__row:hover .index__desc { color: rgba(255, 255, 255, 0.55); }
.index__row:hover .index__arrow { transform: translateX(6px); }

/* ---------- DoorDash band ---------- */
.band {
  position: relative;
  overflow: hidden;
  background: var(--accent);
  color: var(--white);
}

.band__heart {
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%) rotate(-6deg);
  width: min(46%, 460px);
  fill: #ffffff;
  opacity: 0.08;
  pointer-events: none;
}

.band__inner { position: relative; padding: clamp(4rem, 8vw, 7rem) var(--pad); }

.band h2 {
  font-size: clamp(2.6rem, 7.5vw, 5.5rem);
  margin: 1.2rem 0 2.2rem;
}

.band__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  padding-top: 2rem;
}

.band__note {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  max-width: 30em;
}

/* ---------- Visit ---------- */
.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
}

.visit__info {
  padding: clamp(3rem, 6vw, 5.5rem) var(--pad);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.visit__info h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  margin: 1.1rem 0 0.6rem;
}

.visit__phone {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
  font-size: 1.05rem;
}
.visit__phone:hover { text-decoration: underline; }

.hours {
  margin: 1.8rem 0 2.2rem;
  border-collapse: collapse;
  width: 100%;
  max-width: 320px;
}
.hours th, .hours td {
  text-align: left;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  font-weight: 400;
}
.hours th { padding-right: 2rem; }
.hours td { color: var(--grey); }
.hours tr.is-today th, .hours tr.is-today td { color: var(--accent); font-weight: 500; }

.visit__map { border-left: 1px solid var(--line); }
.visit__map iframe {
  width: 100%;
  height: 100%;
  min-height: 440px;
  border: 0;
  display: block;
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding: clamp(2rem, 5vw, 3.5rem) var(--pad) 1.75rem;
  overflow: hidden;
}

.footer__word {
  font-size: clamp(4.5rem, 17vw, 15rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.85;
  color: var(--black);
  user-select: none;
}
.footer__heart {
  width: 0.28em;
  height: 0.28em;
  fill: var(--accent);
  margin-left: 0.06em;
}

.footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
}

.footer__social {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--grey);
  text-decoration: none;
  transition: color 0.18s ease;
}
.footer__social:hover { color: var(--accent); }
.footer__social-icon { width: 13px; height: 13px; fill: currentColor; flex-shrink: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; align-items: start; }
  /* The line-art illustration has no good home at this in-between width —
     too cramped to sit beside the text, too awkward floating above it with
     a dead gap. Drop it here rather than let it look half-baked. */
  .hero__art { display: none; }
  .index__desc { display: none; }
  .index__row { grid-template-columns: 3rem 1fr 2rem; gap: 1rem; }
  .visit__grid { grid-template-columns: 1fr; }
  .visit__map { border-left: 0; border-top: 1px solid var(--line); }
  .visit__map iframe { min-height: 320px; }
}

@media (max-width: 640px) {
  .ig-banner__extra { display: none; }
  .ig-banner__link { font-size: 0.82rem; padding: 0.85rem 1.25rem; gap: 0.5rem; }
  .ig-banner__icon { width: 15px; height: 15px; }
}

@media (max-width: 720px) {
  .header { top: 0.9rem; width: min(480px, calc(100% - 2.25rem)); }
  .nav { padding: 0.65rem 1.1rem; }
  .nav__brand { font-size: 1.1rem; }
  .nav__heart { width: 13px; height: 13px; }
  .nav__toggle { display: flex; }
  .nav__links {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(16, 16, 16, 0.12);
    flex-direction: column;
    align-items: stretch;
    padding: 0.9rem;
    gap: 0;
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links li { border-bottom: 1px solid var(--line); }
  .nav__links li:last-child { border-bottom: 0; padding-top: 0.9rem; }
  .nav__links a:not(.btn) {
    display: block;
    padding: 0.95rem 0.6rem;
    font-size: 1.05rem;
    font-weight: 500;
  }
  .nav__links .btn { width: 100%; }

  /* First screen: header + centered headline + ticker pinned to the
     bottom edge, so "What we stock" only appears once you scroll. */
  .hero {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - env(safe-area-inset-top));
    min-height: calc(100dvh - env(safe-area-inset-top));
    background: radial-gradient(120% 55% at 50% -8%, rgba(141, 42, 58, 0.06), transparent 62%);
    /* Relying on Safari to auto-tint the notch/status-bar strip (via
       theme-color) turned out flaky — it'd match once, then revert to
       stark white on refresh. Instead, physically extend this element's
       own background up into that area: pull the box up by the safe-area
       inset with a negative margin, then pad it back down by the same
       amount so the actual content doesn't sit underneath the notch. The
       background now genuinely paints there every time, deterministically. */
    margin-top: calc(env(safe-area-inset-top) * -1);
    padding-top: env(safe-area-inset-top);
  }
  .hero__grid {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    /* Override the tablet tier's `align-items: start` (meant for its grid
       layout) — without this, children shrink to their content width and
       hug the left edge instead of stretching to fill the viewport, which
       is especially visible on iPad-width and narrowed-desktop windows. */
    align-items: stretch;
    justify-content: center;
    padding-top: clamp(5rem, 20vw, 7rem);
    padding-bottom: clamp(1.25rem, 4vw, 2rem);
    gap: 0;
  }
  .hero__text { min-width: 0; }

  /* The full-width band further down the page is redundant once the pill
     above the fold covers the same job on mobile. */
  .ig-banner { display: none; }

  .hero__ig {
    /* Block-level (not inline-flex) so it always sits on its own line above
       the status text, even once the text column is wide enough for both
       to otherwise fit side by side (tablet widths, narrowed browsers). */
    display: flex;
    width: fit-content;
    max-width: 100%;
    align-items: center;
    gap: 0.4rem;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    padding: 0.48rem 0.85rem;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 500;
    box-shadow: 0 10px 24px -8px rgba(141, 42, 58, 0.55);
    margin-bottom: 1rem;
    transition: transform 0.15s ease;
  }
  .hero__ig:active { transform: scale(0.96); }
  .hero__ig-icon { width: 13px; height: 13px; fill: currentColor; flex-shrink: 0; }
  .hero__ig strong { font-weight: 700; }
  .hero__ig-arrow { transition: transform 0.18s ease; }
  .hero__ig:hover .hero__ig-arrow { transform: translateX(3px); }

  /* Status line: plain text with a live-pulsing dot — quiet, not another card. */
  .hero__status { font-size: 0.68rem; }
  @keyframes statusPulse {
    0% { box-shadow: 0 0 0 0 rgba(30, 86, 54, 0.35); }
    70% { box-shadow: 0 0 0 7px rgba(30, 86, 54, 0); }
    100% { box-shadow: 0 0 0 0 rgba(30, 86, 54, 0); }
  }
  .hero__status .status-dot.is-open { animation: statusPulse 2.2s ease-out infinite; }

  .hero__title {
    font-size: clamp(3.25rem, 13vw, 4rem);
    letter-spacing: -0.02em;
    margin: 1rem 0 1.1rem;
    overflow-wrap: break-word;
  }

  /* Quick category jump — scannable, tappable, gets people shopping faster. */
  /* No fixed max-width here on purpose — a hard em cap left the line break
     frozen in an unbalanced spot (long line + short orphan line) on every
     viewport past ~490px. Letting it use the full (already-stretched) text
     column keeps the wrap point flowing naturally as the screen resizes. */
  .hero__lede { max-width: 100%; font-size: 0.95rem; margin-bottom: 1.2rem; }

  /* Shop-by-category grid — cycling product shots, tap straight through to DoorDash. */
  .hero__cats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }
  .hero__cat {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    background: var(--white);
    transition: transform 0.15s ease, box-shadow 0.2s ease;
  }
  .hero__cat:active { transform: scale(0.97); }
  .hero__cat-imgs { position: relative; flex: 1; min-height: 132px; isolation: isolate; }
  .hero__cat-img {
    position: absolute;
    top: 10%;
    right: 6%;
    bottom: 6%;
    left: 6%;
    width: 88%;
    height: 84%;
    object-fit: contain;
    opacity: 0;
    animation: catCycle 9s ease-in-out infinite;
  }
  .hero__cat-img:nth-of-type(1) { animation-delay: 0s; }
  .hero__cat-img:nth-of-type(2) { animation-delay: 4.5s; }
  .hero__cat:nth-child(1) { background: linear-gradient(165deg, rgba(180, 120, 40, 0.09), rgba(180, 120, 40, 0.02)); }
  .hero__cat:nth-child(2) { background: linear-gradient(165deg, rgba(141, 42, 58, 0.09), rgba(141, 42, 58, 0.02)); }
  .hero__cat:nth-child(3) { background: linear-gradient(165deg, rgba(120, 76, 20, 0.09), rgba(120, 76, 20, 0.02)); }
  .hero__cat:nth-child(4) { background: linear-gradient(165deg, rgba(60, 140, 140, 0.09), rgba(60, 140, 140, 0.02)); }
  /* Negative delays put each card mid-cycle immediately on load, so every
     card shows a product on first paint instead of staying blank until its
     stagger kicks in. */
  .hero__cat:nth-child(2) .hero__cat-img:nth-of-type(1) { animation-delay: -1.2s; }
  .hero__cat:nth-child(2) .hero__cat-img:nth-of-type(2) { animation-delay: 3.3s; }
  .hero__cat:nth-child(3) .hero__cat-img:nth-of-type(1) { animation-delay: -2.4s; }
  .hero__cat:nth-child(3) .hero__cat-img:nth-of-type(2) { animation-delay: 2.1s; }
  .hero__cat:nth-child(4) .hero__cat-img:nth-of-type(1) { animation-delay: -3.6s; }
  .hero__cat:nth-child(4) .hero__cat-img:nth-of-type(2) { animation-delay: 0.9s; }
  /* Two images per card, offset by half the animation duration, so one is
     always fully visible — no gap where the card would sit blank. */
  @keyframes catCycle {
    0%, 42% { opacity: 1; transform: scale(1); }
    50%, 92% { opacity: 0; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1); }
  }
  .hero__cat-meta { padding: 0.7rem 0.85rem 0.85rem; }
  .hero__cat-index {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    color: var(--grey);
    margin-bottom: 0.2rem;
  }
  .hero__cat-name { display: block; font-size: 0.96rem; font-weight: 600; color: var(--black); }
  @media (prefers-reduced-motion: reduce) {
    .hero__cat-img { animation: none; opacity: 1; }
    .hero__cat-img:nth-of-type(2) { opacity: 0; }
  }

  /* Quick-glance stats — hours + rating, app-native feel. */
  .hero__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-top: 1.3rem;
  }
  .hero__stat {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.8rem 1rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 6px 16px rgba(16, 16, 16, 0.04);
    text-decoration: none;
  }
  .hero__stat-label {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--grey);
  }
  .hero__stat-value { font-size: 0.92rem; font-weight: 500; color: var(--black); }
  .hero__stat-star { color: var(--accent); }

  .hero__actions { flex-direction: column; align-items: stretch; gap: 0.7rem; margin-top: 1.7rem; }
  .hero__actions .btn { padding: 1.05rem 1.9rem; font-size: 1.02rem; }
  .hero__actions .btn--solid {
    box-shadow: 0 16px 32px -14px rgba(141, 42, 58, 0.55);
    transition: background 0.18s ease, transform 0.15s ease;
  }
  .hero__actions .btn--solid:active { transform: scale(0.98); }
  .hero__actions .btn--line:active { transform: scale(0.98); }
  .hero__actions .btn--line { transition: background 0.18s ease, color 0.18s ease, transform 0.15s ease; }

  /* Superseded by the stat cards above — avoid repeating the same rating twice. */
  .hero__rating { display: none; }

  /* Subtle staggered entrance — the kind of polish that reads "product," not "brochure". */
  .hero__ig, .hero__status, .hero__title, .hero__lede, .hero__cats, .hero__stats, .hero__actions {
    animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
  }
  .hero__status { animation-delay: 0s; }
  .hero__title { animation-delay: 0.06s; }
  .hero__ig { animation-delay: 0.12s; }
  .hero__lede { animation-delay: 0.18s; }
  .hero__cats { animation-delay: 0.24s; }
  .hero__stats { animation-delay: 0.31s; }
  .hero__actions { animation-delay: 0.38s; }
  @keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @media (prefers-reduced-motion: reduce) {
    .hero__ig, .hero__status, .hero__title, .hero__lede, .hero__cats, .hero__stats, .hero__actions,
    .hero__status .status-dot.is-open { animation: none; }
  }

  /* The full illustration reads as clutter at this size — desktop only. */
  .hero__art { display: none; }

  .hero__watermark {
    display: block;
    position: absolute;
    top: -12%;
    right: -16%;
    width: 80%;
    max-width: 320px;
    color: var(--accent);
    opacity: 0.1;
    fill: currentColor;
    filter: blur(42px);
    pointer-events: none;
    z-index: 0;
  }

  .ticker {
    flex-shrink: 0;
    -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
    mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  }

  .band__row { flex-direction: column; align-items: stretch; }
  .band__row .btn { width: 100%; }
  .visit__info .btn { width: 100%; }

  /* Footer: lead with the Instagram handle, then legal/location text —
     and drop the redundant domain repeat since the page is already there. */
  .footer__row { flex-direction: column; align-items: center; text-align: center; gap: 0.85rem; }
  .footer__social { order: -1; text-transform: lowercase; }
  .footer__url { display: none; }
}

/* Compact phones (e.g. iPhone SE): tighten rhythm so everything still
   comfortably fits above the fold. */
@media (max-width: 720px) and (max-height: 700px) {
  .hero__grid { padding-top: clamp(4.5rem, 19vw, 6rem); }
  .hero__stats { margin-top: 1.1rem; }
  .hero__actions { margin-top: 1.3rem; }
}
