/* ============================================================
   ROADSIDE GRILL — Piedmont, AL
   Aesthetic: vintage roadside sign at dusk.
   Palette pulled straight from their truck logo: deep forest
   green, warm cream, amber headlight glow, copper trim, with
   their red basket-check as a small accent.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Color */
  --green-950: #0e1c14;      /* page background            */
  --green-900: #14261a;      /* section background         */
  --green-800: #1c3324;      /* cards / raised surfaces    */
  --green-700: #26422f;      /* borders on raised surfaces */
  --cream:     #f3ebd7;      /* primary text               */
  --cream-dim: #c9c0a6;      /* secondary text             */
  --amber:     #e9a94e;      /* headlight accent           */
  --amber-soft:#f2c684;      /* accent hover / highlights  */
  --copper:    #b97b32;      /* deep accent / rules        */
  --red:       #b23a30;      /* basket-check red, sparing  */
  --shadow:    0 10px 30px rgba(0, 0, 0, .35);

  /* Type */
  --font-display: "Alfa Slab One", "Georgia", serif;
  --font-body: "Libre Franklin", "Helvetica Neue", Arial, sans-serif;
  --text-xs:  clamp(.72rem, .68rem + .2vw, .8rem);
  --text-sm:  clamp(.84rem, .8rem + .2vw, .95rem);
  --text-base:clamp(1rem, .95rem + .3vw, 1.125rem);
  --text-lg:  clamp(1.15rem, 1.05rem + .5vw, 1.4rem);
  --text-xl:  clamp(1.5rem, 1.3rem + 1vw, 2.1rem);
  --text-2xl: clamp(2rem, 1.6rem + 2vw, 3.2rem);
  --text-hero:clamp(2.4rem, 1.8rem + 3.2vw, 4.6rem);

  /* Spacing scale (8px base) */
  --s1: .5rem;  --s2: 1rem;   --s3: 1.5rem; --s4: 2rem;
  --s5: 3rem;   --s6: 4rem;   --s7: 6rem;   --s8: 8rem;

  /* Misc */
  --radius: 10px;
  --radius-lg: 16px;
  --container: 1240px;
  --ease: cubic-bezier(.22, .8, .3, 1);
  --t-fast: 180ms;
  --t-med: 280ms;
  --header-h: 76px;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--green-950);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  overflow-x: hidden;
}

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

a { color: var(--amber); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;           /* Alfa Slab One only ships 400 */
  line-height: 1.12;
  margin: 0 0 var(--s2);
  letter-spacing: .01em;
}

p { margin: 0 0 var(--s2); }

/* Visible focus for every interactive element */
:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--amber);
  color: var(--green-950);
  padding: var(--s1) var(--s2);
  z-index: 200;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { left: var(--s2); }

/* Layout helpers */
.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

section { scroll-margin-top: calc(var(--header-h) + 12px); }

.section-pad { padding-block: clamp(3.5rem, 6vw, 6.5rem); }

/* Eyebrow label above section titles */
.eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--s2);
}

.section-title { font-size: var(--text-2xl); }
.section-intro { max-width: 62ch; color: var(--cream-dim); }

/* Highway centerline divider — the road motif between sections */
.road-divider {
  border: none;
  height: 4px;
  margin: 0 auto;
  width: min(60%, 520px);
  background-image: linear-gradient(90deg, var(--copper) 0 34px, transparent 34px 58px);
  background-size: 58px 4px;
  opacity: .55;
  border-radius: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  min-height: 48px;                 /* comfortable touch target */
  padding: .8em 1.6em;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--t-fast) var(--ease),
              background-color var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease);
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--amber);
  color: var(--green-950);
  box-shadow: 0 6px 18px rgba(233, 169, 78, .25);
}
.btn-primary:hover { background: var(--amber-soft); }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--green-700);
}
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background-color var(--t-med) var(--ease),
              box-shadow var(--t-med) var(--ease),
              border-color var(--t-med) var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(14, 28, 20, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-color: var(--green-700);
  box-shadow: 0 6px 24px rgba(0, 0, 0, .35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s2);
  height: var(--header-h);
  transition: height var(--t-med) var(--ease);
}
.site-header.is-scrolled .header-inner { height: 62px; }

.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  color: var(--cream);
}
.brand img {
  width: 46px;
  height: 46px;
  transition: width var(--t-med) var(--ease), height var(--t-med) var(--ease);
}
.site-header.is-scrolled .brand img { width: 38px; height: 38px; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: .02em;
  white-space: nowrap;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.primary-nav a:not(.btn) {
  color: var(--cream);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--text-sm);
  padding: .4rem 0;
  position: relative;
}
.primary-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--amber);
  transition: right var(--t-fast) var(--ease);
}
.primary-nav a:not(.btn):hover::after,
.primary-nav a:not(.btn):focus-visible::after { right: 0; }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--green-700);
  border-radius: var(--radius);
  padding: .55rem .7rem;
  cursor: pointer;
  color: var(--cream);
  min-width: 48px;
  min-height: 48px;
}
.nav-toggle .bars {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  position: relative;
  transition: background var(--t-fast);
}
.nav-toggle .bars::before,
.nav-toggle .bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform var(--t-med) var(--ease), top var(--t-med) var(--ease);
}
.nav-toggle .bars::before { top: -7px; }
.nav-toggle .bars::after  { top: 7px;  }
.nav-toggle[aria-expanded="true"] .bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .bars::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bars::after  { top: 0; transform: rotate(-45deg); }

/* ---------- Hero: the lit sign at dusk ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: calc(var(--header-h) + 2rem) 0 4.5rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 55% at 50% 30%, rgba(233, 169, 78, .16), transparent 62%),
    radial-gradient(ellipse 130% 80% at 50% 110%, rgba(0, 0, 0, .55), transparent 60%),
    linear-gradient(180deg, rgba(16, 35, 26, .88) 0%, rgba(14, 28, 20, .94) 70%, var(--green-950) 100%),
    url("../images/bbq-jumbo-wings.webp") center 38% / cover no-repeat,
    linear-gradient(180deg, #10231a 0%, var(--green-950) 78%);
}
/* soft grain so the dark background isn't flat */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

.hero-inner { position: relative; z-index: 1; }

.hero-logo {
  width: clamp(150px, 24vw, 240px);
  margin-inline: auto;
  margin-bottom: var(--s3);
  filter: drop-shadow(0 0 44px rgba(233, 169, 78, .38))
          drop-shadow(0 14px 32px rgba(0, 0, 0, .5));
}

.hero h1 {
  font-size: var(--text-hero);
  margin-bottom: var(--s2);
  text-wrap: balance;
  text-shadow: 0 3px 24px rgba(0, 0, 0, .45);
}
.hero h1 .accent { color: var(--amber); }

.hero-sub {
  font-size: var(--text-lg);
  color: var(--cream-dim);
  max-width: 46ch;
  margin-inline: auto;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s2);
  margin-top: var(--s4);
}

.hero-meta {
  margin-top: var(--s4);
  font-size: var(--text-sm);
  color: var(--cream-dim);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .4rem 1.4rem;
}
.hero-meta strong { color: var(--cream); font-weight: 700; }

/* ---------- Buffet feature band ---------- */
.buffet {
  background:
    radial-gradient(ellipse 60% 90% at 85% 20%, rgba(233, 169, 78, .08), transparent 60%),
    var(--green-900);
  border-block: 1px solid var(--green-700);
}
.buffet-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s4);
  align-items: center;
}
.buffet-price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: .5rem;
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  padding: .35em .8em;
  border-radius: var(--radius);
  transform: rotate(-1.5deg);
  box-shadow: var(--shadow);
  margin-bottom: var(--s3);
}
.buffet-price-tag small {
  font-family: var(--font-body);
  font-size: .48em;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.buffet-list {
  list-style: none;
  margin: var(--s3) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: .6rem 1.4rem;
  color: var(--cream-dim);
}
.buffet-list li {
  padding-left: 1.3em;
  position: relative;
}
.buffet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: .55em;
  height: .55em;
  border-radius: 2px;
  background: var(--amber);
  transform: rotate(45deg);
}
.buffet-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--green-700);
}
.buffet-photo img { aspect-ratio: 3 / 2; object-fit: cover; width: 100%; }

/* ---------- Menu favorites ---------- */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s3);
  margin-top: var(--s5);
}

.menu-card {
  background: var(--green-800);
  border: 1px solid var(--green-700);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-med) var(--ease),
              box-shadow var(--t-med) var(--ease),
              border-color var(--t-med) var(--ease);
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--copper);
}
.menu-card figure { margin: 0; overflow: hidden; }
.menu-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 500ms var(--ease);
}
.menu-card:hover img { transform: scale(1.045); }

.menu-card-body {
  padding: var(--s3);
  display: flex;
  flex-direction: column;
  gap: .4rem;
  flex: 1;
}
.menu-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s2);
}
.menu-card h3 { font-size: var(--text-lg); margin: 0; }
.price {
  font-family: var(--font-display);
  color: var(--amber);
  font-size: var(--text-lg);
  white-space: nowrap;
}
.menu-card p { color: var(--cream-dim); font-size: var(--text-sm); margin: 0; }

.menu-note {
  margin-top: var(--s4);
  color: var(--cream-dim);
  font-size: var(--text-sm);
  text-align: center;
}

/* ---------- Weekly sign pole ----------
   Signature element: the weekly lineup rendered as stacked
   sign panels, echoing their actual pole sign on Hwy 278. */
.week-wrap {
  position: relative;
  max-width: 780px;
  margin: var(--s5) auto 0;
  padding-inline: clamp(0px, 4vw, 40px);
}
/* the two poles */
.week-wrap::before,
.week-wrap::after {
  content: "";
  position: absolute;
  top: -28px;
  bottom: -12px;
  width: 12px;
  border-radius: 6px;
  background: linear-gradient(90deg, #3d3d3b, #6a6a66 45%, #2e2e2c);
  z-index: 0;
}
.week-wrap::before { left: clamp(14px, 8%, 70px); }
.week-wrap::after  { right: clamp(14px, 8%, 70px); }

.sign-panel {
  position: relative;
  z-index: 1;
  background: #101d15;
  border: 3px solid var(--cream);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .45);
  padding: var(--s3) var(--s4);
  margin-bottom: var(--s3);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s2);
  align-items: center;
}
.sign-panel .day {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--cream);
  margin: 0;
}
.sign-panel .day span { color: var(--amber); }
.sign-panel .deal {
  color: var(--cream-dim);
  margin: 0;
  font-size: var(--text-sm);
}
.sign-panel .deal strong { color: var(--cream); }
.sign-panel .panel-photo {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--green-700);
}
.sign-panel .panel-photo img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}
/* red check ribbon strip on the taco panel */
.sign-panel.check-accent {
  border-color: var(--cream);
  background:
    linear-gradient(#101d15, #101d15) padding-box;
}
.sign-panel.check-accent::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 8px;
  background:
    repeating-conic-gradient(var(--red) 0% 25%, #f3ebd7 0% 50%)
    0 0 / 16px 16px;
  border-radius: 0 0 5px 5px;
  opacity: .9;
}

/* ---------- Reviews ---------- */
.reviews { background: var(--green-900); border-block: 1px solid var(--green-700); }
.review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s3);
  margin-top: var(--s5);
}
.review-card {
  background: var(--green-800);
  border: 1px solid var(--green-700);
  border-radius: var(--radius-lg);
  padding: var(--s4);
  position: relative;
}
.review-card::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 3.4rem;
  color: var(--amber);
  line-height: 1;
  display: block;
  margin-bottom: .4rem;
  opacity: .85;
}
.review-card blockquote {
  margin: 0 0 var(--s2);
  font-size: var(--text-lg);
  line-height: 1.45;
}
.review-card cite {
  font-style: normal;
  color: var(--cream-dim);
  font-size: var(--text-sm);
}
.stars {
  color: var(--amber);
  letter-spacing: .15em;
  font-size: var(--text-sm);
  margin-bottom: var(--s1);
  display: block;
}
.review-meta {
  margin-top: var(--s4);
  text-align: center;
  color: var(--cream-dim);
  font-size: var(--text-sm);
}

/* ---------- Visit ---------- */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s4);
  margin-top: var(--s5);
  align-items: start;
}
.visit-details h3 { font-size: var(--text-lg); color: var(--amber); margin-bottom: .4rem; }
.visit-block { margin-bottom: var(--s4); }
.visit-block p { margin: 0; color: var(--cream-dim); }
.visit-block a { color: var(--cream); text-decoration-color: var(--copper); }
.visit-block a:hover { color: var(--amber); }

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
}
.hours-table td {
  padding: .45rem 0;
  border-bottom: 1px dashed var(--green-700);
  color: var(--cream-dim);
}
.hours-table td:last-child { text-align: right; color: var(--cream); font-weight: 600; }
.hours-table tr.closed td:last-child { color: var(--red); }

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--green-700);
  box-shadow: var(--shadow);
  min-height: 320px;
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
  filter: grayscale(.25) contrast(1.02);
}

/* ---------- Specials signup ---------- */
.signup {
  background: var(--green-800);
  border: 1px solid var(--green-700);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 3rem);
  margin-top: var(--s6);
  text-align: center;
}
.signup h2 { font-size: var(--text-xl); }
.signup p { color: var(--cream-dim); max-width: 52ch; margin-inline: auto; }
.signup-form {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  justify-content: center;
  margin-top: var(--s3);
}
.field { text-align: left; }
.field label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: .35rem;
}
.field input {
  background: var(--green-950);
  color: var(--cream);
  border: 2px solid var(--green-700);
  border-radius: var(--radius);
  min-height: 48px;
  padding: .6rem 1rem;
  font: inherit;
  width: min(320px, 78vw);
  transition: border-color var(--t-fast) var(--ease);
}
.field input:hover { border-color: var(--copper); }
.field input:focus { outline: none; border-color: var(--amber); }
.field input[aria-invalid="true"] { border-color: var(--red); }
.field-error {
  display: none;
  color: #e2857d;
  font-size: var(--text-xs);
  margin-top: .35rem;
}
.field-error.is-visible { display: block; }
.signup-form .btn { align-self: end; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--green-700);
  background: #0b160f;
  padding-block: var(--s5) var(--s4);
  font-size: var(--text-sm);
  color: var(--cream-dim);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s4);
  margin-bottom: var(--s4);
}
.footer-brand { display: flex; align-items: center; gap: .8rem; color: var(--cream); }
.footer-brand img { width: 52px; height: 52px; }
.footer-brand .brand-name { font-family: var(--font-display); font-size: 1.1rem; }
.site-footer h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--amber);
  margin-bottom: var(--s2);
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.site-footer a { color: var(--cream-dim); text-decoration: none; }
.site-footer a:hover { color: var(--amber); }
.footer-legal {
  border-top: 1px solid var(--green-700);
  padding-top: var(--s3);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  justify-content: space-between;
  font-size: var(--text-xs);
}

/* ---------- Toasts ---------- */
.toast-region {
  position: fixed;
  bottom: var(--s3);
  right: var(--s3);
  z-index: 300;
  display: grid;
  gap: var(--s1);
  max-width: min(360px, calc(100vw - 2rem));
}
.toast {
  background: var(--green-800);
  color: var(--cream);
  border: 1px solid var(--green-700);
  border-left: 5px solid var(--amber);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: var(--s2) var(--s3);
  font-size: var(--text-sm);
  display: flex;
  align-items: center;
  gap: .8rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--t-med) var(--ease), transform var(--t-med) var(--ease);
}
.toast.is-in { opacity: 1; transform: translateY(0); }
.toast.toast-success { border-left-color: #6fbf73; }
.toast.toast-error   { border-left-color: var(--red); }

/* ---------- Scroll reveals ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   Responsive — mobile-first, layering up
   Tablet ≥ 641px, Laptop ≥ 1025px, Large ≥ 1441px
   ============================================================ */

/* --- Tablet --- */
@media (min-width: 641px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: repeat(3, 1fr); }
  .sign-panel { grid-template-columns: 1.4fr 1fr; }
  .buffet-grid { grid-template-columns: 1.1fr 1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .visit-grid { grid-template-columns: 1fr 1.2fr; }
}

/* --- Below laptop: collapse nav to mobile menu --- */
@media (max-width: 1024px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .primary-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(320px, 84vw);
    background: var(--green-900);
    border-left: 1px solid var(--green-700);
    box-shadow: -18px 0 42px rgba(0, 0, 0, .45);
    transform: translateX(105%);
    transition: transform var(--t-med) var(--ease);
    padding: calc(var(--header-h) + 1.5rem) var(--s4) var(--s4);
    z-index: 90;
    overflow-y: auto;
  }
  .primary-nav.is-open { transform: translateX(0); }
  .primary-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: var(--s2);
  }
  .primary-nav a:not(.btn) {
    display: block;
    font-size: var(--text-lg);
    padding: .7rem 0;
    min-height: 44px;
  }
  .primary-nav .btn { width: 100%; margin-top: var(--s2); }
  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(8, 15, 11, .6);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t-med) var(--ease);
    z-index: 80;
  }
  .nav-backdrop.is-visible { opacity: 1; pointer-events: auto; }
  body.menu-open { overflow: hidden; }
}

/* --- Laptop --- */
@media (min-width: 1025px) {
  .menu-grid { grid-template-columns: repeat(4, 1fr); }
  .hero-ctas .btn { font-size: var(--text-base); }
}

/* --- Large desktop --- */
@media (min-width: 1441px) {
  :root { --container: 1360px; }
}

/* ---------- Full menu ---------- */
.full-menu { background: var(--green-950); }

.menu-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
  margin: var(--s4) auto 0;
  max-width: 900px;
}
.menu-pills a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: .45em 1.05em;
  border: 1.5px solid var(--green-700);
  border-radius: 999px;
  color: var(--cream-dim);
  text-decoration: none;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease),
              background-color var(--t-fast) var(--ease);
}
.menu-pills a:hover,
.menu-pills a:focus-visible {
  color: var(--green-950);
  background: var(--amber);
  border-color: var(--amber);
}

.menu-cats {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-flow: row dense;   /* backfill around wide cards, no holes */
  gap: var(--s4);
  margin-top: var(--s5);
  align-items: stretch;
}
.menu-cat {
  background: var(--green-900);
  border: 1px solid var(--green-700);
  border-radius: var(--radius-lg);
  padding: var(--s4);
  scroll-margin-top: calc(var(--header-h) + 16px);
  contain: content;            /* cheaper layout/paint while scrolling */
}
/* Long categories stretch across two tracks so rows stay even */
@media (min-width: 641px) {
  .menu-cat.span-2 { grid-column: span 2; }
  .menu-cat.span-2 .menu-list.two-col {
    columns: 2;
    column-gap: var(--s4);
  }
  .menu-cat.span-2 .menu-list.two-col li { break-inside: avoid; }
}
.menu-cat h3 {
  font-size: var(--text-lg);
  color: var(--amber);
  margin-bottom: var(--s2);
  padding-bottom: var(--s1);
  border-bottom: 2px solid var(--green-700);
}
.cat-note {
  color: var(--cream-dim);
  font-size: var(--text-sm);
  margin: calc(-1 * var(--s1)) 0 var(--s2);
}
.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-list li {
  display: flex;
  align-items: baseline;
  gap: .6rem;
  padding: .42rem 0;
  font-size: var(--text-sm);
}
.mi-name { color: var(--cream); }
.mi-dots {
  flex: 1;
  min-width: 24px;
  border-bottom: 2px dotted var(--green-700);
  transform: translateY(-4px);
}
.mi-price {
  color: var(--amber);
  font-weight: 700;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

@media (min-width: 641px)  { .menu-cats { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1025px) { .menu-cats { grid-template-columns: repeat(3, 1fr); } }

/* On phones the pills become a swipeable strip instead of a tall stack */
@media (max-width: 640px) {
  .menu-pills {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    padding-bottom: .5rem;
    margin-inline: -1.25rem;      /* bleed to screen edges */
    padding-inline: 1.25rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
    /* fade hints at more pills off-screen */
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 1.25rem, #000 calc(100% - 1.5rem), transparent);
            mask-image: linear-gradient(90deg, transparent, #000 1.25rem, #000 calc(100% - 1.5rem), transparent);
  }
  .menu-pills::-webkit-scrollbar { display: none; }
  .menu-pills a { flex: 0 0 auto; scroll-snap-align: start; }
}

/* Touch devices: shorter, quicker reveals so scrolling never feels laggy */
@media (hover: none) and (pointer: coarse) {
  .reveal {
    transform: translateY(14px);
    transition-duration: 420ms;
  }
}
