/*
 * styles.css — Best Burger
 * A 24/7 Downtown Las Vegas smash-burger stand brought to the web as a
 * painted American sign: scarlet fields, flame-gold lettering, twilight-ink
 * nights, and the recurring "OPEN 24 HRS" marquee that restates the one fact.
 */

/* ============================================================
   Design Tokens
   ============================================================ */
:root {
  --color-primary: #D72B2B;        /* Best Burger Red */
  --color-primary-dark: #A11C1C;   /* Charred Maroon */
  --color-primary-light: #F7D9D4;  /* Soft Bun Red */
  --color-secondary: #1B1430;      /* Twilight Ink */
  --color-accent: #F5C518;         /* Flame Gold */
  --color-accent-deep: #E0B30A;
  --color-berry: #7A1F3D;          /* deep berry pulled from smoothies */
  --color-bg: #FBF5EC;             /* Diner Cream */
  --color-surface: #FFFFFF;        /* Paper White */
  --color-text: #211B17;           /* Griddle Char */
  --color-text-secondary: #6E6258; /* Warm Ash */
  --color-text-on-accent: #211B17;
  --color-text-on-primary: #FFFFFF;
  --color-border: #E8DCC9;         /* Tan Hairline */
  --color-ink-hair: rgba(245,197,24,0.22);
  --color-ink-text: #E9E2D6;       /* readable warm light on ink */
  --color-ink-text-soft: #C7BCAE;

  --font-primary: 'Anton', sans-serif;
  --font-secondary: 'Hanken Grotesk', sans-serif;
  --font-size-base: 16px;
  --spacing-base: 8px;

  --motion-duration: 200ms;
  --motion-duration-slow: 380ms;
  --motion-ease: cubic-bezier(0.2, 0.7, 0.2, 1);

  --wrap: 1200px;
  --wrap-narrow: 880px;
}

/* ============================================================
   Base Reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: var(--font-size-base, 16px);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-secondary, sans-serif);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  padding-bottom: 42px; /* required */
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }

a { color: var(--color-primary); text-decoration: none; }

:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ============================================================
   Typographic Scale
   ============================================================ */
.t-display, h1.t-display {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 0.88;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}
h1, .t-h1 {
  font-family: var(--font-primary); font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  line-height: 0.92; letter-spacing: 0.01em; text-transform: uppercase;
}
h2, .t-h2 {
  font-family: var(--font-primary); font-weight: 400;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 0.96; letter-spacing: 0.01em; text-transform: uppercase;
}
h3, .t-h3 {
  font-family: var(--font-primary); font-weight: 400;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  line-height: 1.0; letter-spacing: 0.015em; text-transform: uppercase;
}
.t-h4 {
  font-family: var(--font-secondary); font-weight: 800;
  font-size: 1.125rem; line-height: 1.2; letter-spacing: 0.01em;
}
.lead {
  font-family: var(--font-secondary); font-weight: 500;
  font-size: clamp(1.15rem, 1.6vw, 1.4rem); line-height: 1.5;
}
p { font-family: var(--font-secondary); font-weight: 400; font-size: 1.0625rem; line-height: 1.6; }
.small { font-family: var(--font-secondary); font-weight: 500; font-size: 0.9375rem; line-height: 1.45; }
.eyebrow {
  font-family: var(--font-secondary); font-weight: 600;
  font-size: 0.78rem; line-height: 1.3; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--color-text-secondary);
  display: inline-block;
}

/* ============================================================
   Layout helpers
   ============================================================ */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(20px, 5vw, 56px); }
.wrap--narrow { max-width: var(--wrap-narrow); }
.section { padding-block: clamp(64px, 9vw, 128px); }
.section--tight { padding-block: clamp(48px, 6vw, 84px); }
.min0 { min-width: 0; }
.flow > * + * { margin-top: 1.1rem; }

/* ============================================================
   Buttons / CTAs / Pills
   ============================================================ */
.btn-gold {
  display: inline-flex; align-items: center; gap: 0.55em;
  font-family: var(--font-secondary); font-weight: 800;
  font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.04em;
  background: var(--color-accent); color: var(--color-text-on-accent);
  padding: 0.85em 1.6em; border-radius: 999px; border: 2px solid var(--color-accent);
  transition: transform var(--motion-duration) var(--motion-ease),
              background var(--motion-duration) var(--motion-ease);
}
.btn-gold:hover { transform: translateY(-2px); background: #ffd23a; }
.btn-outline-light {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-family: var(--font-secondary); font-weight: 600; font-size: 0.95rem;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--color-text-on-primary); border: 1.5px solid rgba(255,255,255,0.6);
  padding: 0.75em 1.5em; border-radius: 999px;
  transition: border-color var(--motion-duration) var(--motion-ease), color var(--motion-duration) var(--motion-ease);
}
.btn-outline-light:hover { border-color: var(--color-accent); color: var(--color-accent); }
.text-link {
  font-family: var(--font-secondary); font-weight: 600; font-size: 0.98rem;
  letter-spacing: 0.02em; color: inherit; border-bottom: 2px solid var(--color-accent);
  padding-bottom: 2px; transition: color var(--motion-duration) var(--motion-ease);
}
.text-link:hover { color: var(--color-primary); }

/* ============================================================
   Navigation — illustrated badge + gold-dotted links
   ============================================================ */
.bb-nav {
  position: sticky; top: 0; z-index: 60;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  gap: clamp(16px, 3vw, 40px);
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: 12px clamp(20px, 5vw, 56px);
  transition: background var(--motion-duration) var(--motion-ease),
              border-color var(--motion-duration) var(--motion-ease);
}
.bb-nav__badge { display: inline-flex; align-items: center; }
.bb-nav__badge img { height: 54px; width: auto; }
.bb-nav__links { display: flex; align-items: center; list-style: none; justify-self: end; flex-wrap: wrap; }
.bb-nav__links li { display: inline-flex; align-items: center; }
.bb-nav__links li + li::before {
  content: ''; display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--color-accent); margin: 0 clamp(12px, 1.8vw, 20px); flex: none;
}
.bb-nav__link {
  font-family: var(--font-secondary); font-weight: 600;
  font-size: 0.95rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--color-text);
  transition: color var(--motion-duration) var(--motion-ease);
}
.bb-nav__link:hover, .bb-nav__link[aria-current="page"] { color: var(--color-primary); }
.bb-nav__order { justify-self: end; }
.bb-nav__order.btn-gold { padding: 0.7em 1.4em; }
/* Inverted state over the home red hero */
.bb-nav--on-dark { background: var(--color-secondary); border-bottom-color: transparent; }
.bb-nav--on-dark .bb-nav__link { color: #fff; }
.bb-nav--on-dark .bb-nav__link:hover, .bb-nav--on-dark .bb-nav__link[aria-current="page"] { color: var(--color-accent); }

/* ============================================================
   "OPEN 24 HRS" gold-on-ink marquee divider (recurring ribbon)
   ============================================================ */
.marquee {
  background: var(--color-secondary); color: var(--color-accent);
  overflow: hidden; white-space: nowrap; padding-block: 18px;
  border-block: 1px solid var(--color-ink-hair);
}
.marquee__track {
  display: inline-flex; align-items: center;
  will-change: transform; animation: marquee-scroll 26s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
  font-family: var(--font-primary); text-transform: uppercase;
  font-size: clamp(1.1rem, 2vw, 1.6rem); letter-spacing: 0.06em;
  padding-inline: 0.6em; color: var(--color-accent);
}
.marquee__track .dot { color: var(--color-accent); opacity: 0.85; }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   HOME — Hero (red type-field + rotating gold seal)
   ============================================================ */
.hero {
  position: relative; min-height: 88vh; overflow: hidden;
  background: var(--color-primary); display: grid; place-items: center;
  isolation: isolate;
}
.hero__texture {
  position: absolute; inset: -14%; z-index: 0; pointer-events: none;
  display: grid; align-content: center; justify-items: center; gap: 0.2em;
  transform: rotate(-6deg);
}
.hero__texture span {
  font-family: var(--font-primary); text-transform: uppercase; text-align: center;
  font-size: clamp(4.5rem, 16vw, 13rem); line-height: 0.82; letter-spacing: 0.01em;
  color: rgba(255,255,255,0.13);
}
.hero__inner {
  position: relative; z-index: 2; width: 100%; max-width: var(--wrap);
  margin-inline: auto; padding: clamp(40px,8vw,90px) clamp(20px,5vw,56px);
  min-height: 88vh; display: grid; align-items: center;
}
.hero__seal {
  position: relative; width: clamp(220px, 30vw, 360px); aspect-ratio: 1;
  justify-self: end; align-self: center; margin-right: clamp(0px, 4vw, 60px);
}
.hero__seal svg { width: 100%; height: 100%; display: block; }
.hero__seal-ring { animation: seal-spin 28s linear infinite; transform-origin: 50% 50%; }
.hero__seal-core {
  position: absolute; inset: 26%; border-radius: 50%;
  background: var(--color-secondary); display: grid; place-items: center; text-align: center;
  box-shadow: inset 0 0 0 3px var(--color-accent);
}
.hero__seal-core img { width: 76%; height: auto; }
@keyframes seal-spin { to { transform: rotate(360deg); } }
.hero__seal text { font-family: var(--font-primary); font-size: 12.5px; letter-spacing: 0.12em; text-transform: uppercase; fill: var(--color-accent); }
@keyframes rise-in { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.hero__card .eyebrow, .hero__card-title, .hero__card-msg, .hero__card-actions { animation: rise-in 0.6s var(--motion-ease) both; }
.hero__card .eyebrow { animation-delay: 0.14s; }
.hero__card-title { animation-delay: 0.26s; }
.hero__card-msg { animation-delay: 0.40s; }
.hero__card-actions { animation-delay: 0.54s; }
.hero__card-title {
  font-family: var(--font-primary); font-weight: 400; text-transform: uppercase;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem); line-height: 0.92; letter-spacing: 0.01em;
  color: var(--color-primary); margin-top: 0.5rem;
}
.hero__card {
  position: absolute; left: clamp(20px,5vw,56px); bottom: clamp(28px,5vw,56px);
  z-index: 3; max-width: 360px; background: var(--color-bg); color: var(--color-text);
  padding: clamp(22px, 3vw, 32px); border-radius: 3px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.28);
}
.hero__card .eyebrow { color: var(--color-primary); }
.hero__card-msg { font-family: var(--font-secondary); font-weight: 500; font-size: 1.18rem; line-height: 1.4; margin-block: 0.55em 1.2em; }
.hero__card-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }

/* ============================================================
   HOME — Night Proof Band (the real neon)
   ============================================================ */
.night-proof {
  position: relative; background: var(--color-secondary); color: var(--color-ink-text);
  display: grid; grid-template-columns: 1fr 1.35fr; align-items: stretch;
  min-height: clamp(420px, 60vh, 640px);
}
.night-proof__copy {
  min-width: 0; z-index: 2; align-self: center;
  padding: clamp(48px,7vw,96px) clamp(8px,2vw,24px) clamp(48px,7vw,96px) clamp(20px,6vw,90px);
  max-width: 640px;
}
.night-proof__copy h2 { color: var(--color-accent); position: relative; }
.night-proof__copy .lead { color: #fff; margin-top: 1rem; }
.night-proof__media { position: relative; min-width: 0; overflow: hidden; }
.night-proof__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.night-proof__media::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, var(--color-secondary) 0%, rgba(27,20,48,0.55) 22%, rgba(27,20,48,0) 50%);
}
@media (min-width: 861px) {
  .night-proof__copy h2 { margin-right: -40px; } /* headline bites into the photo edge */
}

/* ============================================================
   HOME — Food Smash Feature (asymmetric offset frame)
   ============================================================ */
.smash { background: var(--color-bg); }
.smash__grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 72px); align-items: center;
}
.smash__copy { min-width: 0; }
.smash__copy h2 { color: var(--color-text); }
.smash__copy p { color: var(--color-text-secondary); max-width: 46ch; margin-top: 1.1rem; }
.smash__flex {
  display: flex; align-items: baseline; gap: 0.5em; flex-wrap: wrap;
  margin-top: 1.6rem; font-family: var(--font-secondary); font-weight: 800; font-size: 1.05rem;
}
.smash__flex .price { font-family: var(--font-primary); font-weight: 400; color: var(--color-primary); font-size: clamp(1.7rem, 3vw, 2.4rem); line-height: 1; letter-spacing: 0.01em; }
.smash__frame { position: relative; min-width: 0; margin-top: clamp(0px, -3vw, -36px); }
.smash__frame img { width: 100%; height: auto; border-radius: 2px; }
.smash__frame::before { /* printer's crop mark — top-left gold corner-rule only */
  content: ''; position: absolute; top: -14px; left: -14px; width: 84px; height: 84px;
  border-top: 6px solid var(--color-accent); border-left: 6px solid var(--color-accent); z-index: 2;
}

/* ============================================================
   HOME — The Range (gutterless color-block columns)
   ============================================================ */
.range { display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 0; }
.range__col {
  position: relative; background: var(--col); color: var(--on);
  min-height: clamp(440px, 72vh, 760px); overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  padding: clamp(28px,4vw,44px) clamp(12px,2vw,22px) clamp(34px,4vw,52px);
  text-align: center; transition: background var(--motion-duration) var(--motion-ease);
}
.range__col--burgers     { --col: var(--color-primary);      --on: #fff; }
.range__col--tenders     { --col: var(--color-primary-dark); --on: #fff; }
.range__col--specialties { --col: var(--color-accent);       --on: var(--color-text-on-accent); }
.range__col--breakfast   { --col: var(--color-secondary);    --on: #fff; }
.range__col--drinks      { --col: var(--color-berry);        --on: #fff; }
.range__img {
  position: absolute; top: 46%; left: 50%; transform: translate(-50%,-52%);
  height: 56%; width: auto; max-width: 130%; object-fit: contain;
  transition: transform var(--motion-duration-slow) var(--motion-ease);
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.35));
}
.range__name { position: relative; z-index: 2; margin-bottom: 0.7rem; font-size: clamp(1.5rem, 2.2vw, 2.1rem); }
.range__link {
  position: relative; z-index: 2;
  font-family: var(--font-secondary); font-weight: 600; font-size: 0.9rem;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--on);
  border: 1.5px solid currentColor; border-radius: 999px; padding: 0.6em 1.4em;
  transition: background var(--motion-duration) var(--motion-ease), color var(--motion-duration) var(--motion-ease);
}
.range__col:hover { background: color-mix(in srgb, var(--col) 86%, #000); }
.range__col--specialties:hover { background: color-mix(in srgb, var(--col) 90%, #000); }
.range__col:hover .range__img { transform: translate(-50%,-60%) scale(1.04); }
.range__link:hover { background: var(--on); color: var(--col); }
.range__col--specialties .range__link:hover { color: var(--color-accent); }

/* ============================================================
   HOME — Downtown LV Place Band (overlapping day/night panels)
   ============================================================ */
.place { background: var(--color-bg); }
.place__grid { position: relative; display: grid; grid-template-columns: 2fr 1fr; align-items: start; }
.place__day { min-width: 0; }
.place__day img { width: 100%; height: clamp(340px, 48vh, 540px); object-fit: cover; object-position: center 55%; border-radius: 2px; }
.place__panel {
  position: relative; z-index: 2; align-self: center; margin-left: -16%;
  background: var(--color-secondary); color: var(--color-ink-text);
  padding: clamp(26px,3vw,40px); border-radius: 3px; box-shadow: 0 24px 50px rgba(0,0,0,0.3);
}
.place__panel h3 { color: var(--color-accent); }
.place__panel p { color: var(--color-ink-text); margin-top: 0.8rem; }
.place__inset { margin-top: 1.4rem; border-radius: 2px; overflow: hidden; transition: transform var(--motion-duration) var(--motion-ease); }
.place__inset img { width: 100%; height: 150px; object-fit: cover; object-position: center 40%; }
.place__inset:hover { transform: translateY(-4px); }

/* ============================================================
   CTA closing band (red, gold-dot action thread)
   ============================================================ */
.cta-band { background: var(--color-primary); color: #fff; text-align: left; }
.cta-band h2 { color: #fff; max-width: 18ch; }
.cta-actions {
  display: flex; align-items: center; flex-wrap: wrap; gap: 6px 4px; margin-top: 1.8rem;
}
.cta-actions a {
  font-family: var(--font-secondary); font-weight: 700; font-size: 1.05rem; color: #fff;
  letter-spacing: 0.01em; transition: color var(--motion-duration) var(--motion-ease);
}
.cta-actions a:hover { color: var(--color-accent); }
.cta-actions .sep {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--color-accent); margin-inline: 16px; transition: transform var(--motion-duration) var(--motion-ease);
}
.cta-actions a:hover + .sep, .cta-actions .sep:hover { transform: scale(1.5); }
.cta-band__hours { margin-top: 1.4rem; color: #fff; letter-spacing: 0.04em; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--color-secondary); color: var(--color-ink-text); }
.site-footer__top { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: clamp(28px,4vw,56px); padding-block: clamp(48px,6vw,84px); }
.site-footer__brand img { height: 78px; width: auto; }
.site-footer__brand p { color: var(--color-ink-text-soft); margin-top: 1rem; max-width: 30ch; font-size: 0.95rem; }
.site-footer h4 { font-family: var(--font-primary); font-weight: 400; text-transform: uppercase; color: var(--color-accent); font-size: 1.05rem; letter-spacing: 0.04em; margin-bottom: 1rem; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 0.55rem; }
.site-footer__top a { color: var(--color-ink-text); font-size: 0.98rem; transition: color var(--motion-duration) var(--motion-ease); }
.site-footer__top a:hover { color: var(--color-accent); }
.site-footer__top li.has-dot::before { content: ''; display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: var(--color-accent); margin-right: 9px; vertical-align: middle; }
.site-footer__hours-line { color: var(--color-ink-text-soft); }
.site-footer__legal {
  border-top: 1px solid var(--color-ink-hair); padding-block: 20px;
  display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between;
  color: var(--color-ink-text-soft); font-size: 0.85rem; letter-spacing: 0.03em;
}

/* ============================================================
   Page hero strip (Menu / Drinks compact red type-field)
   ============================================================ */
.page-hero {
  position: relative; background: var(--color-primary); color: #fff;
  min-height: clamp(300px, 46vh, 460px); display: flex; align-items: center; overflow: hidden;
}
.page-hero__texture {
  position: absolute; inset: -16%; transform: rotate(-6deg); z-index: 0; pointer-events: none;
  display: grid; align-content: center; justify-items: center;
}
.page-hero__texture span { font-family: var(--font-primary); text-transform: uppercase; font-size: clamp(4rem, 15vw, 11rem); line-height: 0.82; color: rgba(255,255,255,0.12); }
.page-hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(24px,4vw,56px); align-items: center; width: 100%; }
.page-hero__copy { min-width: 0; }
.page-hero__copy .eyebrow { color: #fff; }
.page-hero__copy h1 { color: #fff; margin-top: 0.4rem; }
.page-hero__copy p { color: #fff; margin-top: 1rem; max-width: 44ch; }
.page-hero__media img { width: 100%; height: clamp(220px, 30vh, 340px); object-fit: cover; object-position: center 40%; border-radius: 3px; box-shadow: 0 22px 50px rgba(0,0,0,0.3); }

/* ============================================================
   Anchor chip bar (sticky category jump bar — gold "neon" active)
   ============================================================ */
.chipbar { position: sticky; top: 78px; z-index: 40; background: var(--color-secondary); border-block: 1px solid var(--color-ink-hair); }
.chipbar__track { display: flex; gap: 10px; overflow-x: auto; padding: 12px clamp(20px,5vw,56px); scrollbar-width: thin; }
.chip {
  flex: none; font-family: var(--font-secondary); font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-ink-text);
  border: 1.5px solid rgba(245,197,24,0.4); border-radius: 999px; padding: 0.55em 1.15em;
  white-space: nowrap; transition: background var(--motion-duration) var(--motion-ease), color var(--motion-duration) var(--motion-ease), border-color var(--motion-duration) var(--motion-ease);
}
.chip:hover { border-color: var(--color-accent); color: var(--color-accent); }
.chip.is-active { background: var(--color-accent); color: var(--color-text-on-accent); border-color: var(--color-accent); }
.anchor-target { scroll-margin-top: 150px; }

/* ============================================================
   Menu — editorial price-led lists
   ============================================================ */
.menu-section { padding-block: clamp(52px, 7vw, 96px); }
.menu-section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(24px,3vw,40px); }
.menu-section__head .eyebrow { color: var(--color-primary); }
.menu-section__head h2 { color: var(--color-text); }
.menu-list { list-style: none; }
.menu-row {
  display: grid; grid-template-columns: 1fr auto; gap: 6px 24px; align-items: baseline;
  padding: 20px clamp(8px,1.5vw,18px); border-bottom: 1px solid var(--color-border);
  transition: background var(--motion-duration) var(--motion-ease);
}
.menu-row:hover { background: var(--color-primary-light); }
.menu-row__name { min-width: 0; }
.menu-row__name .t-h4 { display: inline; }
.menu-row__name .num { color: var(--color-text-secondary); font-weight: 700; margin-right: 0.4em; }
.menu-row__desc { color: var(--color-text-secondary); font-size: 0.98rem; margin-top: 4px; max-width: 60ch; }
.menu-row__price {
  font-family: var(--font-primary); font-weight: 400; color: var(--color-primary);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem); line-height: 1; letter-spacing: 0.01em; white-space: nowrap; justify-self: end;
}
.menu-row__price .tax { font-family: var(--font-secondary); font-weight: 600; font-size: 0.72rem; color: var(--color-text-secondary); letter-spacing: 0.04em; margin-left: 0.3em; vertical-align: 0.4em; }
.badge-new {
  display: inline-block; font-family: var(--font-secondary); font-weight: 800; font-size: 0.66rem;
  text-transform: uppercase; letter-spacing: 0.1em; background: var(--color-primary); color: #fff;
  padding: 0.25em 0.6em; border-radius: 3px; margin-left: 0.5em; vertical-align: 0.15em;
}
.upsell-note {
  margin-top: 8px; font-size: 0.9rem; font-weight: 600; color: #7a5a00;
  background: rgba(245,197,24,0.16); border-left: 3px solid var(--color-accent);
  padding: 8px 14px; border-radius: 2px; max-width: 64ch;
}
.menu-headimg { margin-bottom: clamp(20px,3vw,36px); }
.menu-headimg img { width: 100%; max-height: 300px; object-fit: cover; object-position: center 40%; border-radius: 2px; }

/* Tenders edge-bleed head */
.tenders-head { position: relative; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 0; margin-bottom: clamp(24px,3vw,44px); }
.tenders-head__img { min-width: 0; }
.tenders-head__img img { width: 100%; height: clamp(260px,34vh,380px); object-fit: cover; object-position: center; border-radius: 2px; }
.tenders-head h2 { position: relative; z-index: 2; margin-left: -10%; color: var(--color-primary); font-size: clamp(2.4rem,6vw,4.5rem); }

/* Specialties gold band */
.spec-band { background: var(--color-accent); color: var(--color-text-on-accent); }
.spec-band__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px,4vw,64px); align-items: center; }
.spec-band__media { min-width: 0; }
.spec-band__media img { width: 100%; border-radius: 2px; box-shadow: 0 20px 44px rgba(33,27,23,0.25); }
.spec-band__copy { min-width: 0; }
.spec-band .eyebrow { color: var(--color-primary-dark); }
.spec-band h2 { color: var(--color-text-on-accent); }
.spec-band .menu-row { border-bottom-color: rgba(33,27,23,0.18); }
.spec-band .menu-row:hover { background: rgba(255,255,255,0.28); }
.spec-band .menu-row__desc { color: #4a3a1a; }
.spec-band .menu-row__price { color: var(--color-primary-dark); }
.spec-band .badge-new { background: var(--color-primary); color: #fff; }

/* Breakfast ink band */
.ink-band { background: var(--color-secondary); color: var(--color-ink-text); }
.ink-band .eyebrow { color: var(--color-accent); }
.ink-band h2 { color: var(--color-accent); }
.ink-band .menu-row { border-bottom-color: var(--color-ink-hair); }
.ink-band .menu-row:hover { background: rgba(245,197,24,0.08); }
.ink-band .menu-row__name .t-h4 { color: #fff; }
.ink-band .menu-row__desc { color: var(--color-ink-text-soft); }
.ink-band .menu-row__price { color: var(--color-accent); }
.ink-band .menu-row__name .num { color: var(--color-ink-text-soft); }
.ink-band .menu-headimg img { opacity: 0.96; }

/* À la carte / sides split + fountain run */
.compact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,64px); }
.compact-grid .min0 { min-width: 0; }
.mini-row { display: flex; justify-content: space-between; align-items: baseline; gap: 18px; padding: 13px 6px; border-bottom: 1px solid var(--color-border); }
.mini-row span:first-child { font-family: var(--font-secondary); font-weight: 700; }
.mini-row .price { font-family: var(--font-primary); font-weight: 400; color: var(--color-primary); font-size: 1.4rem; line-height: 1; }
.fountain { margin-top: clamp(32px,4vw,52px); padding-top: clamp(24px,3vw,36px); border-top: 2px solid var(--color-border); }
.fountain h3 { color: var(--color-text); }
.fountain__price { font-family: var(--font-primary); color: var(--color-primary); font-size: 1.4rem; margin-left: 0.4em; }
.fountain__run { margin-top: 1rem; font-family: var(--font-secondary); font-weight: 600; font-size: 1.05rem; line-height: 2; }
.fountain__run .dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--color-accent); margin-inline: 12px; vertical-align: middle; }

/* Menu footer note + drinks cross-link */
.fresh-note { background: var(--color-bg); }
.fresh-note__inner { max-width: 64ch; }
.fresh-note .made-fresh { font-family: var(--font-secondary); font-weight: 500; font-size: clamp(1.15rem,1.8vw,1.45rem); line-height: 1.5; color: var(--color-text); }
.fresh-note .surcharge { margin-top: 1.6rem; color: var(--color-text-secondary); font-weight: 500; }
.fresh-note .surcharge i { color: var(--color-primary); margin-right: 0.4em; }
.drinks-crosslink { background: var(--color-primary); color: #fff; }
.drinks-crosslink__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.drinks-crosslink h2 { color: #fff; }
.drinks-crosslink .btn-gold { background: var(--color-accent); }

/* ============================================================
   Drinks — color-coded bands
   ============================================================ */
.drink-band { padding-block: clamp(52px,7vw,96px); }
.drink-band__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,64px); align-items: center; }
.drink-band__media { min-width: 0; }
.drink-band__media img { width: 100%; height: clamp(280px,40vh,460px); object-fit: cover; border-radius: 2px; box-shadow: 0 18px 40px rgba(0,0,0,0.18); }
.drink-band__copy { min-width: 0; }
.drink-list { list-style: none; margin-top: 0.5rem; }
.drink-row { display: grid; grid-template-columns: 1fr auto; gap: 4px 18px; align-items: baseline; padding: 14px 4px; border-bottom: 1px solid var(--color-border); transition: background var(--motion-duration) var(--motion-ease); }
.drink-row:hover { background: rgba(0,0,0,0.03); }
.drink-row__name { font-family: var(--font-secondary); font-weight: 800; min-width: 0; }
.drink-row__ing { display: block; font-weight: 400; font-size: 0.9rem; color: var(--color-text-secondary); margin-top: 3px; }
.drink-row__price { font-family: var(--font-primary); font-weight: 400; color: var(--color-primary); font-size: 1.5rem; line-height: 1; white-space: nowrap; }
.band-price-tag { font-family: var(--font-primary); color: var(--color-primary); font-size: clamp(1.4rem,2.4vw,2rem); }
.drinks-juices { background: linear-gradient(180deg, #FBF5EC 0%, #FCEFD6 100%); }
.drinks-smoothies { background: linear-gradient(180deg, #F3DCE2 0%, #E6C3CE 100%); }
.drinks-smoothies .drink-band__copy h2 { color: var(--color-berry); }
.drinks-smoothies .drink-row__price { color: var(--color-berry); }
.drinks-shakes { background: linear-gradient(180deg, #FBF0E2 0%, #F4E1C9 100%); }
.drinks-aguas { background: var(--color-bg); }
/* keto inherits .ink-band */
.drinks-keto .drink-row { border-bottom-color: var(--color-ink-hair); }
.drinks-keto .drink-row:hover { background: rgba(245,197,24,0.08); }
.drinks-keto .drink-row__name { color: #fff; }
.drinks-keto .drink-row__ing { color: var(--color-ink-text-soft); }
.drinks-keto .drink-row__price { color: var(--color-accent); }

/* Build-your-own salad panel */
.salad-panel { margin-top: clamp(32px,4vw,52px); border: 2px solid var(--color-border); background: var(--color-surface); border-radius: 4px; padding: clamp(26px,3vw,40px); }
.salad-panel__top { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.salad-panel__top .price { font-family: var(--font-primary); color: var(--color-primary); font-size: clamp(1.8rem,3vw,2.6rem); }
.salad-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: clamp(20px,3vw,36px); margin-top: 1.6rem; }
.salad-grid h4 { font-family: var(--font-secondary); font-weight: 800; margin-bottom: 0.7rem; }
.chip-static { display: flex; flex-wrap: wrap; gap: 8px; }
.chip-static span { font-family: var(--font-secondary); font-weight: 600; font-size: 0.85rem; background: var(--color-bg); border: 1px solid var(--color-border); border-radius: 999px; padding: 0.4em 0.9em; transition: background var(--motion-duration) var(--motion-ease), border-color var(--motion-duration) var(--motion-ease); }
.chip-static span:hover { background: var(--color-accent); border-color: var(--color-accent); }
.salad-extra { margin-top: 1.2rem; color: var(--color-text-secondary); font-weight: 600; }

/* ============================================================
   About
   ============================================================ */
.wall-hero { position: relative; min-height: clamp(440px,72vh,720px); display: flex; align-items: center; overflow: hidden; background: var(--color-secondary); }
.wall-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 35%; z-index: 0; }
.wall-hero::before { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(27,20,48,0.95) 0%, rgba(27,20,48,0.82) 30%, rgba(27,20,48,0.2) 62%, rgba(27,20,48,0) 100%); }
.wall-hero__inner { position: relative; z-index: 2; max-width: 620px; }
.wall-hero .eyebrow { color: var(--color-accent); }
.wall-hero h1 { color: var(--color-accent); margin-top: 0.4rem; }
.wall-hero p { color: #fff; margin-top: 1.2rem; max-width: 46ch; }

.promises { background: var(--color-bg); }
.promises__grid { position: relative; display: grid; grid-template-columns: 1.05fr 1fr 1.25fr; gap: 0; align-items: end; }
.promise { padding: clamp(20px,3vw,40px) clamp(20px,3vw,36px) clamp(70px,9vw,120px); border-left: 1px solid var(--color-border); }
.promise:first-child { border-left: 0; padding-left: 0; }
.promise__word { font-family: var(--font-primary); color: var(--color-primary); line-height: 0.9; }
.promise--fresh .promise__word { font-size: clamp(2.6rem,5vw,4rem); }
.promise--fair  .promise__word { font-size: clamp(2.9rem,5.5vw,4.6rem); }
.promise--awake .promise__word { font-size: clamp(3.6rem,8vw,6.6rem); }
.promise__word::after { content: ''; display: block; width: 54px; height: 5px; background: var(--color-accent); margin-top: 0.5rem; }
.promise p { margin-top: 1rem; color: var(--color-text-secondary); max-width: 34ch; }
.promises__img { position: absolute; right: 0; bottom: 0; width: clamp(220px,32vw,420px); z-index: 3; }
.promises__img img { width: 100%; height: clamp(140px,16vw,220px); object-fit: cover; border-radius: 2px 2px 0 0; box-shadow: 0 -10px 30px rgba(0,0,0,0.18); }

.story-band { position: relative; background: var(--color-secondary); color: var(--color-ink-text); display: grid; grid-template-columns: 1.1fr 1fr; align-items: stretch; min-height: clamp(420px,56vh,620px); }
.story-band__copy { min-width: 0; align-self: center; padding: clamp(48px,7vw,96px) clamp(8px,2vw,24px) clamp(48px,7vw,96px) clamp(20px,6vw,90px); max-width: 640px; }
.story-band__copy h2 { color: var(--color-accent); }
.story-band__copy p { color: var(--color-ink-text); margin-top: 1rem; }
.story-band__media { position: relative; min-width: 0; overflow: hidden; }
.story-band__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.story-band__media::before { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, var(--color-secondary) 0%, rgba(27,20,48,0) 45%); }

/* ============================================================
   Visit
   ============================================================ */
.visit-hero { position: relative; }
.visit-hero__diptych { display: grid; grid-template-columns: 1fr 1fr; min-height: clamp(380px,56vh,600px); }
.visit-hero__half { position: relative; min-width: 0; overflow: hidden; }
.visit-hero__half img { width: 100%; height: 100%; object-fit: cover; }
.visit-hero__half--day img { object-position: center 55%; }
.visit-hero__half--night img { object-position: center; }
.visit-hero__half--day::after { content: ''; position: absolute; inset: 0; background: rgba(27,20,48,0.18); }
.visit-hero__half--night::after { content: ''; position: absolute; inset: 0; background: rgba(27,20,48,0.42); }
.visit-hero__plate {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 3;
  background: var(--color-secondary); color: #fff; text-align: center;
  padding: clamp(26px,3.5vw,44px) clamp(30px,4vw,60px); border-radius: 4px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4); max-width: 90%;
}
.visit-hero__plate .eyebrow { color: var(--color-accent); }
.visit-hero__plate h1 { color: #fff; margin-block: 0.4rem 0.8rem; }
.visit-hero__plate .addr { color: var(--color-ink-text); font-weight: 600; }
.visit-hero__plate .addr i { color: var(--color-accent); margin-right: 0.4em; }

.hours-panel { background: var(--color-bg); }
.hours-table { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: clamp(18px,2.5vw,28px); margin-top: clamp(28px,4vw,44px); }
.hours-cell { border: 1px solid var(--color-border); background: var(--color-surface); border-radius: 4px; padding: clamp(22px,3vw,32px); }
.hours-cell .label { font-family: var(--font-secondary); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-primary); font-size: 0.85rem; }
.hours-cell .val { font-family: var(--font-primary); font-weight: 400; font-size: clamp(1.6rem,2.6vw,2.2rem); line-height: 1; margin-top: 0.6rem; color: var(--color-text); }
.hours-cell--24 { background: var(--color-secondary); border-color: var(--color-secondary); }
.hours-cell--24 .label { color: var(--color-accent); }
.hours-cell--24 .val { color: var(--color-accent); font-size: clamp(2rem,3.4vw,3rem); }
.hours-note { margin-top: clamp(20px,2.5vw,32px); display: inline-flex; align-items: center; gap: 0.5em; font-weight: 700; color: var(--color-text); }
.hours-note i { color: var(--color-primary); font-size: 1.3em; }

.find { background: var(--color-surface); }
.find__grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: clamp(24px,3vw,40px); align-items: stretch; }
.find__map { min-width: 0; border-radius: 4px; overflow: hidden; border: 1px solid var(--color-border); min-height: 360px; }
.find__map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }
.find__panel { background: var(--color-secondary); color: var(--color-ink-text); border-radius: 4px; padding: clamp(26px,3vw,40px); }
.find__panel h2 { color: var(--color-accent); }
.find__panel .contact-line { display: flex; align-items: flex-start; gap: 0.7em; margin-top: 1.2rem; }
.find__panel .contact-line i { color: var(--color-accent); font-size: 1.3em; margin-top: 0.1em; }
.find__panel .contact-line a, .find__panel .contact-line span { color: #fff; font-weight: 600; }
.find__delivery { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 1.6rem; }
.find__surcharge { margin-top: 1.6rem; padding-top: 1.4rem; border-top: 1px solid var(--color-ink-hair); color: var(--color-ink-text-soft); font-size: 0.95rem; }
.find__surcharge strong { color: var(--color-accent); }

/* Contact form */
.contact-band { background: var(--color-bg); }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: clamp(24px,3vw,36px); max-width: 760px; }
.contact-form .field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.contact-form .field--full { grid-column: 1 / -1; }
.contact-form label { font-family: var(--font-secondary); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-text); }
.contact-form input, .contact-form textarea {
  font-family: var(--font-secondary); font-size: 1rem; color: var(--color-text);
  background: var(--color-surface); border: 1.5px solid var(--color-border); border-radius: 3px; padding: 0.75em 0.9em; width: 100%;
  transition: border-color var(--motion-duration) var(--motion-ease);
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--color-primary); outline: none; }
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form .btn-gold { justify-self: start; border: 0; cursor: pointer; }

/* ============================================================
   404
   ============================================================ */
.notfound { min-height: 70vh; background: var(--color-primary); color: #fff; display: grid; place-items: center; text-align: center; padding: clamp(40px,8vw,90px) 20px; }
.notfound h1 { font-size: clamp(4rem,14vw,10rem); color: #fff; }
.notfound p { font-size: 1.2rem; margin-block: 1rem 1.8rem; color: rgba(255,255,255,0.92); }

/* ============================================================
   Reveal-on-scroll
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity var(--motion-duration-slow) var(--motion-ease), transform var(--motion-duration-slow) var(--motion-ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.range__col.reveal { transform: translateY(28px); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .site-footer__top { grid-template-columns: 1fr 1fr; }
  .smash__grid { grid-template-columns: 1fr; }
  .smash__frame { margin-top: 0; }
  .spec-band__grid, .drink-band__grid, .find__grid { grid-template-columns: 1fr; }
  .page-hero__grid { grid-template-columns: 1fr; }
  .page-hero__media { display: none; }
}

@media (max-width: 860px) {
  .range { grid-auto-flow: row; }            /* turns 90°, not a generic stack */
  .range__col { min-height: 56vw; }
  .night-proof, .story-band { grid-template-columns: 1fr; }
  .night-proof__media, .story-band__media { min-height: 300px; position: relative; }
  .night-proof__media img, .story-band__media img { position: absolute; }
  .night-proof__media::before { background: linear-gradient(0deg, var(--color-secondary) 0%, rgba(27,20,48,0) 55%); }
  .story-band__media::before { background: none; }
  .place__grid { grid-template-columns: 1fr; }
  .place__panel { margin-left: 0; margin-top: -36px; width: calc(100% - 32px); margin-inline: auto; }
  .promises__grid { grid-template-columns: 1fr; }
  .promise { border-left: 0; border-top: 1px solid var(--color-border); padding: clamp(20px,4vw,32px) 0; }
  .promise:first-child { border-top: 0; }
  .promises__img { position: relative; width: 100%; margin-top: 1rem; }
  .promises__img img { height: 200px; }
  .tenders-head { grid-template-columns: 1fr; }
  .tenders-head h2 { margin-left: 0; margin-top: 1rem; }
  .visit-hero__plate { position: static; transform: none; max-width: 100%; border-radius: 0; }
  .visit-hero__diptych { min-height: 300px; }
}

@media (max-width: 760px) {
  .bb-nav { grid-template-columns: auto auto; row-gap: 12px; }
  .bb-nav__links { grid-column: 1 / -1; justify-content: center; justify-self: center; }
  .bb-nav__links li + li::before { margin: 0 12px; }
  .bb-nav__order { grid-row: 1; grid-column: 2; }
  .chipbar { top: 0; }
  .compact-grid { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .hero__card { max-width: none; left: clamp(16px,5vw,28px); right: clamp(16px,5vw,28px); }
}

@media (max-width: 480px) {
  .hero { min-height: 84vh; }
  .hero__seal { justify-self: center; margin: 0; }
  .cta-actions { flex-direction: column; align-items: flex-start; }
  .cta-actions .sep { display: none; }
  .menu-row { grid-template-columns: 1fr; }
  .menu-row__price { justify-self: start; margin-top: 6px; }
  .drink-row { grid-template-columns: 1fr auto; }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__seal-ring { animation: none; }
  .marquee__track { animation: none; transform: none; justify-content: center; width: 100%; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* Skip navigation link — WCAG 2.4.1 (managed by fix_ada_safe.py) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 1.25rem;
  background: var(--color-secondary, #1B1430);
  color: var(--color-accent, #F5C518);
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--color-accent, #F5C518);
  border-radius: 0 0 4px 0;
}
.skip-link:focus {
  left: 0;
}
