/* ==========================================================================
   Area 7 — Your Local Pit Stop
   Shared styles for the hub and all four business pages. Mobile-first.
   ========================================================================== */

:root {
  --ink: #0E0C0B;
  --ink-2: #1A1614;
  --ink-3: #25201C;
  --cream: #F0C894;
  --cream-muted: rgba(240, 200, 148, 0.78);
  --cream-faint: rgba(240, 200, 148, 0.22);
  --copper: #C16A34;
  --orange: #F2701F;
  --maroon: #9E2A3A;

  --font-display: "Bebas Neue", "Oswald", "Arial Narrow", Impact, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-script: "Pacifico", "Brush Script MT", cursive;

  --radius: 16px;
  --maxw: 74rem;
  --gutter: clamp(1rem, 4vw, 2.5rem);
  --topbar-h: 4.25rem;
  --ease: cubic-bezier(.4, 0, .2, 1);

  /* Fine copper speckle, like the logo disc */
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 .76 0 0 0 0 .42 0 0 0 0 .2 0 0 0 9 -6.2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");

  color-scheme: dark;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--topbar-h) + 1rem); }
body {
  margin: 0;
  background-color: var(--ink);
  background-image: var(--grain);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; letter-spacing: .02em; line-height: 1; margin: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; }

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

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 1rem; top: -4rem; z-index: 100;
  background: var(--orange); color: var(--ink); padding: .6rem 1rem; border-radius: 8px;
  font-weight: 700; text-decoration: none; transition: top .2s;
}
.skip-link:focus { top: 1rem; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.script { font-family: var(--font-script); font-weight: 400; letter-spacing: 0; }
.muted { color: var(--cream-muted); }

.icon { width: 1.25em; height: 1.25em; flex: none; }
.icon svg { width: 100%; height: 100%; }

/* ---------- Logo ---------- */
.logo { display: block; aspect-ratio: 1; border-radius: 50%; position: relative; }
.logo img { width: 100%; height: 100%; object-fit: contain; }
.logo.is-missing {
  background: var(--ink); border: 3px solid var(--cream);
  display: grid; place-items: center;
}
.logo.is-missing::after {
  content: "AREA 7"; font-family: var(--font-display); color: var(--cream);
  font-size: clamp(.9rem, 22%, 3rem); letter-spacing: .06em;
}

/* ---------- Media (photos with graceful placeholder) ---------- */
.media { position: absolute; inset: 0; overflow: hidden; background: var(--ink-2); }
.media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.media::after { content: ""; position: absolute; inset: 0; background: rgba(14, 12, 11, .6); }
.media[data-icon="carwash"] img { object-position: 50% 28%; } /* keep the headlight in wide crops */
.media__fallback { display: none; }
.media.is-missing { background-image: var(--grain), var(--tint, radial-gradient(circle at 30% 30%, #3a2416, var(--ink) 70%)); }
.media.is-missing .media__fallback {
  display: grid; place-items: center; position: absolute; inset: 0;
  color: var(--cream); opacity: .14;
}
.media.is-missing .media__fallback svg { width: min(46%, 18rem); height: auto; }
.media.is-missing::after { background: linear-gradient(180deg, rgba(14,12,11,.1), rgba(14,12,11,.55)); }

[data-business="carwash"] .media, .media[data-icon="carwash"] { --tint: radial-gradient(circle at 70% 25%, #3d5a68, #1f2e34 55%, #141312 95%); }
[data-business="kebab"] .media, .media[data-icon="kebab"] { --tint: radial-gradient(circle at 30% 80%, #a3481a, #4a2210 50%, #161110 95%); }
[data-business="dessert"] .media, .media[data-icon="dessert"] { --tint: radial-gradient(circle at 70% 70%, #8a2f43, #421d1c 55%, #161110 95%); }
[data-business="pizza"] .media, .media[data-icon="pizza"] { --tint: radial-gradient(circle at 30% 30%, #a35f28, #4a2d15 55%, #161110 95%); }
/* Hub placeholders: lighter veil so the colours read (real photos keep the darker overlay) */
.quad .media.is-missing::after { background: rgba(14, 12, 11, .28); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 44px; padding: .65rem 1.25rem; border-radius: 999px;
  font-family: var(--font-display); font-size: 1.25rem; letter-spacing: .05em; line-height: 1;
  text-decoration: none; border: 2px solid transparent; cursor: pointer;
  transition: transform .2s var(--ease), background-color .2s, color .2s, border-color .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--orange); color: var(--ink); }
.btn--primary:hover { background: #ff8436; }
.btn--ghost { border-color: var(--cream); color: var(--cream); background: transparent; }
.btn--ghost:hover { background: var(--cream); color: var(--ink); }
.btn--small { min-height: 40px; padding: .45rem 1rem; font-size: 1.1rem; }
.btn[aria-disabled="true"] {
  border: 2px dashed var(--cream-faint); color: var(--cream-muted); background: transparent;
  cursor: not-allowed; transform: none;
}
.btn .soon {
  font-family: var(--font-body); font-size: .68rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; background: var(--cream-faint); color: var(--cream);
  padding: .2rem .45rem; border-radius: 999px;
}

/* ---------- Pills & tags ---------- */
.pill {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: .18rem .5rem; border-radius: 999px; border: 1px solid currentColor; line-height: 1.4;
  vertical-align: middle; white-space: nowrap;
}
.pill--veg { color: #A9D18E; }
.pill--popular { color: var(--orange); }
.pill--new { background: var(--orange); color: var(--ink); border-color: var(--orange); }
.pill--best { background: var(--copper); color: var(--ink); border-color: var(--copper); }
.pill--label { color: var(--cream); border-color: var(--cream-faint); background: rgba(158, 42, 58, .45); }

/* ==========================================================================
   HUB (index.html)
   ========================================================================== */
.hub { position: relative; display: flex; flex-direction: column; gap: .75rem; padding: 0 .75rem .75rem; }

.hub-logo {
  width: clamp(140px, 44vw, 200px); margin: 1.25rem auto .5rem;
  padding: 5px; background: var(--cream); border-radius: 50%;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .65), 0 0 0 1px rgba(0,0,0,.4);
  pointer-events: none; z-index: 5; order: -1;
}

.quad {
  position: relative; display: grid; min-height: 180px; overflow: hidden;
  border-radius: var(--radius); text-decoration: none; color: var(--cream);
  isolation: isolate; transition: filter .4s var(--ease);
}
.quad .media { z-index: -1; }
.quad .media::after { background: linear-gradient(180deg, rgba(14,12,11,.45), rgba(14,12,11,.75)); }

.quad__content {
  align-self: end; padding: 1.25rem; max-width: 30rem;
  display: flex; flex-direction: column; gap: .35rem;
}
.quad__icon { width: 2.5rem; height: 2.5rem; color: var(--cream); margin-bottom: .25rem; }
.quad__name { font-size: clamp(2rem, 7vw, 3.4rem); }
.quad__tagline { color: var(--cream-muted); font-weight: 500; }

.quad__peek { display: grid; grid-template-rows: 1fr; transition: grid-template-rows .4s var(--ease), opacity .3s var(--ease); }
.quad__peek-inner { overflow: hidden; display: flex; flex-direction: column; gap: .6rem; }
.quad__preview { font-size: .95rem; }
.quad__preview p:first-child { color: var(--cream); font-weight: 600; }
.quad__preview p + p { color: var(--cream-muted); }
.quad__badges { display: flex; flex-wrap: wrap; gap: .35rem; }
.quad__badges .pill { color: var(--cream); border-color: var(--cream-faint); }
.quad__status { font-size: .8rem; font-weight: 600; display: inline-flex; align-items: center; gap: .4rem; }
.quad__enter { align-self: flex-start; margin-top: .25rem; pointer-events: none; }

.status-dot { width: .55rem; height: .55rem; border-radius: 50%; background: #7a7068; flex: none; }
.is-open .status-dot { background: #6FCF7F; box-shadow: 0 0 0 3px rgba(111, 207, 127, .2); }

/* Tablet & up: the 2x2 grid with the logo in the centre */
@media (min-width: 600px) {
  .hub {
    display: grid; gap: 0; padding: 0;
    height: 100vh; height: 100dvh; min-height: 520px;
    grid-template-columns: var(--c1, 1fr) var(--c2, 1fr);
    grid-template-rows: var(--r1, 1fr) var(--r2, 1fr);
    transition: grid-template-columns .4s var(--ease), grid-template-rows .4s var(--ease);
  }
  .hub-logo {
    position: absolute; left: 50%; top: 50%; margin: 0;
    width: clamp(140px, 22vmin, 260px); transform: translate(-50%, -50%);
  }
  .quad { border-radius: 0; min-height: 0; }
  .quad__content { padding: clamp(1.25rem, 3.5vw, 3rem); }
  .quad--carwash .quad__content { align-self: start; justify-self: start; }
  .quad--kebab .quad__content { align-self: start; justify-self: end; text-align: right; align-items: flex-end; }
  .quad--dessert .quad__content { align-self: end; justify-self: start; }
  .quad--pizza .quad__content { align-self: end; justify-self: end; text-align: right; align-items: flex-end; }
  .quad--kebab .quad__badges, .quad--pizza .quad__badges { justify-content: flex-end; }
  .quad--kebab .quad__enter, .quad--pizza .quad__enter { align-self: flex-end; }
  .quad--carwash .media::after { background: linear-gradient(135deg, rgba(14,12,11,.78), rgba(14,12,11,.5)); }
  .quad--kebab .media::after { background: linear-gradient(225deg, rgba(14,12,11,.78), rgba(14,12,11,.5)); }
  .quad--dessert .media::after { background: linear-gradient(45deg, rgba(14,12,11,.78), rgba(14,12,11,.5)); }
  .quad--pizza .media::after { background: linear-gradient(315deg, rgba(14,12,11,.78), rgba(14,12,11,.5)); }
  .quad__name { font-size: clamp(2.2rem, 4.6vw, 4.2rem); }

  .hub[data-active="carwash"] { --c1: 1.5fr; --r1: 1.5fr; }
  .hub[data-active="kebab"]   { --c2: 1.5fr; --r1: 1.5fr; }
  .hub[data-active="dessert"] { --c1: 1.5fr; --r2: 1.5fr; }
  .hub[data-active="pizza"]   { --c2: 1.5fr; --r2: 1.5fr; }
  .hub[data-active] .quad:not(.is-active) { filter: brightness(.35) saturate(.7); }
  .quad.is-active .media img { transform: scale(1.04); }
}

/* Hover-capable desktops: preview is revealed on hover/focus ("peek") */
@media (min-width: 600px) and (hover: hover) and (pointer: fine) {
  .quad__peek { grid-template-rows: 0fr; opacity: 0; }
  .quad.is-active .quad__peek { grid-template-rows: 1fr; opacity: 1; }
  .quad { cursor: pointer; }
}
/* Keyboard users on any device get the peek on focus */
@media (min-width: 600px) {
  .quad:focus-visible { outline-offset: -6px; border-radius: 0; }
  .quad.is-active .quad__peek { grid-template-rows: 1fr; opacity: 1; }
}
/* Touch tablets: preview always visible, keep it compact */
@media (min-width: 600px) and (hover: none) {
  .quad__badges { display: none; }
}

.hub-footer { border-top: 1px solid var(--cream-faint); }

/* ==========================================================================
   SUBPAGES
   ========================================================================== */

/* ---------- Top bar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(14, 12, 11, .92);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--cream-faint);
}
.topbar__inner { display: flex; align-items: center; gap: 1rem; min-height: var(--topbar-h); }
.topbar__logo { width: 48px; flex: none; border-radius: 50%; }
.topbar__nav { margin-left: auto; position: relative; }
.menu-toggle {
  display: inline-flex; align-items: center; gap: .4rem; min-height: 44px; padding: .4rem .9rem;
  background: none; border: 1px solid var(--cream-faint); border-radius: 999px; cursor: pointer;
  font-family: var(--font-display); font-size: 1.15rem; letter-spacing: .06em;
}
.menu-toggle .bars { width: 1.1rem; height: .8rem; position: relative; }
.menu-toggle .bars::before, .menu-toggle .bars::after, .menu-toggle .bars span {
  content: ""; position: absolute; left: 0; right: 0; height: 2px; background: currentColor; border-radius: 2px;
}
.menu-toggle .bars::before { top: 0; } .menu-toggle .bars span { top: calc(50% - 1px); } .menu-toggle .bars::after { bottom: 0; }
.topbar__links {
  display: none; position: absolute; right: 0; top: calc(100% + .6rem); min-width: 15rem;
  background: var(--ink-2); border: 1px solid var(--cream-faint); border-radius: 12px; padding: .5rem;
  box-shadow: 0 18px 40px rgba(0,0,0,.5);
}
.topbar__links.is-open { display: block; }
.topbar__links a {
  display: flex; align-items: center; gap: .6rem; padding: .7rem .8rem; border-radius: 8px;
  text-decoration: none; font-weight: 600;
}
.topbar__links a:hover { background: var(--ink-3); }
.topbar__links .icon { width: 1.4rem; height: 1.4rem; }
.topbar .btn--call { flex: none; }
.no-js .menu-toggle { display: none; }
.no-js .topbar__links { display: flex; position: static; background: none; border: 0; box-shadow: none; padding: 0; min-width: 0; }

@media (min-width: 900px) {
  .menu-toggle { display: none; }
  .topbar__links {
    display: flex; position: static; background: none; border: 0; box-shadow: none; padding: 0; min-width: 0; gap: .25rem;
  }
  .topbar__links a { padding: .5rem .8rem; font-weight: 500; }
}

/* ---------- Hero ---------- */
.hero { position: relative; isolation: isolate; min-height: min(78vh, 46rem); display: flex; align-items: flex-end; }
.hero .media { z-index: -1; }
.hero .media::after {
  background:
    linear-gradient(90deg, rgba(14,12,11,.7) 0%, rgba(14,12,11,.35) 55%, rgba(14,12,11,0) 80%),
    linear-gradient(180deg, rgba(14,12,11,.35) 0%, rgba(14,12,11,.55) 45%, var(--ink) 100%);
}
.hero__content { padding-top: 5rem; padding-bottom: clamp(2rem, 6vw, 4.5rem); display: flex; flex-direction: column; gap: .9rem; }
.eyebrow {
  font-family: var(--font-display); font-size: 1.15rem; letter-spacing: .14em; color: var(--copper);
}
.hero h1 { font-size: clamp(3rem, 11vw, 6.5rem); max-width: 14ch; }
.hero__sub { font-family: var(--font-display); font-size: clamp(1.4rem, 4vw, 2rem); letter-spacing: .08em; color: var(--cream-muted); }
.hero__tagline { font-size: clamp(1.35rem, 4.2vw, 2.1rem); color: var(--orange); line-height: 1.3; }
.hero__about { max-width: 42rem; color: var(--cream-muted); font-size: 1.05rem; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: .4rem; }
.hero__ctas [data-render="features"] { display: contents; }
.hero__meta { display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; color: var(--cream-muted); font-size: .95rem; }
.hero__meta a { color: var(--cream); }
.hero__meta span { display: inline-flex; align-items: center; gap: .4rem; }
.hero__meta .icon { width: 1.1rem; height: 1.1rem; color: var(--copper); }

.seal {
  position: absolute; right: var(--gutter); top: 1.5rem; z-index: 2;
  width: clamp(88px, 16vw, 130px); aspect-ratio: 1; border-radius: 50%;
  display: grid; place-content: center; text-align: center;
  background: var(--ink); border: 3px solid var(--cream); box-shadow: 0 0 0 5px var(--ink), 0 0 0 7px var(--copper);
  transform: rotate(-8deg);
}
.seal strong { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.6rem, 4vw, 2.4rem); color: var(--cream); line-height: .9; }
.seal span { font-size: .6rem; font-weight: 700; letter-spacing: .14em; color: var(--copper); text-transform: uppercase; }

.rating { display: inline-flex; flex-wrap: wrap; align-items: center; gap: .4rem .75rem; font-size: .95rem; }
.rating__stars { color: var(--orange); letter-spacing: .1em; }
.rating a { color: var(--cream); }

/* ---------- Badge strip ---------- */
.badges { border-block: 1px solid var(--cream-faint); background: rgba(26, 22, 20, .6); }
.badges ul { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem 2rem; padding-block: 1.1rem; }
.badges li {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display); font-size: 1.2rem; letter-spacing: .08em;
}
.badges .icon { color: var(--orange); width: 1.1rem; height: 1.1rem; }

/* ---------- Sections ---------- */
.section { padding-block: clamp(3rem, 8vw, 5.5rem); }
.section__head { margin-bottom: 2rem; display: flex; flex-direction: column; gap: .75rem; align-items: flex-start; }
.brush {
  position: relative; display: inline-block; font-size: clamp(2.3rem, 7vw, 3.6rem);
  padding: .12em .45em .02em; z-index: 0;
}
.brush::before {
  content: ""; position: absolute; inset: 0; z-index: -1; background: var(--maroon);
  border-radius: 4px 18px 6px 14px / 12px 6px 16px 6px; transform: skew(-6deg) rotate(-1deg);
  box-shadow: 6px 4px 0 -1px rgba(158, 42, 58, .45);
}
.section__intro { color: var(--cream-muted); max-width: 44rem; }

/* ---------- Menu ---------- */
.menu-layout { display: grid; gap: 2rem; }
.menu-layout > div { min-width: 0; }
.menu-jump { display: none; }
.menu-tabs {
  position: sticky; top: var(--topbar-h); z-index: 20; margin-inline: calc(var(--gutter) * -1);
  padding: .6rem var(--gutter); background: rgba(14, 12, 11, .95);
  display: flex; gap: .5rem; overflow-x: auto; scrollbar-width: none; border-bottom: 1px solid var(--cream-faint);
}
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tabs [role="tab"], .menu-jump a {
  flex: none; min-height: 44px; padding: .45rem 1rem; border-radius: 999px;
  border: 1px solid var(--cream-faint); background: none; cursor: pointer; text-decoration: none;
  font-family: var(--font-display); font-size: 1.15rem; letter-spacing: .06em; color: var(--cream-muted);
}
.menu-tabs [role="tab"][aria-selected="true"] { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.menu-tabs:not([role="tablist"]) { display: none; }
.menu-panel[hidden] { display: none; }

.cat + .cat { margin-top: 2.75rem; }
.cat__title { font-size: clamp(1.9rem, 5vw, 2.6rem); color: var(--cream); display: flex; align-items: baseline; gap: .75rem; flex-wrap: wrap; }
.cat__title::after { content: ""; flex: 1; min-width: 2rem; height: 2px; background: var(--cream-faint); align-self: center; }
.cat__note { margin-top: .5rem; color: var(--copper); font-weight: 600; font-size: .95rem; }
.items { display: grid; gap: .25rem 3rem; margin-top: 1.25rem; }
.item { padding: .7rem 0; border-bottom: 1px solid rgba(240, 200, 148, .08); }
.item__row { display: flex; align-items: baseline; gap: .5rem; }
.item__name { font-weight: 700; font-size: 1.05rem; display: inline-flex; flex-wrap: wrap; align-items: center; gap: .4rem; }
.item__name a { color: var(--cream); }
.item__num { font-family: var(--font-display); color: var(--copper); font-size: 1.2rem; font-weight: 400; min-width: 1.4rem; }
.item__leader { flex: 1; min-width: 1.5rem; border-bottom: 2px dotted rgba(240, 200, 148, .35); transform: translateY(-.3em); }
.item__price { font-family: var(--font-display); font-size: 1.55rem; color: var(--orange); letter-spacing: .03em; white-space: nowrap; text-align: right; }
.item__desc { color: var(--cream-muted); font-size: .92rem; margin-top: .15rem; max-width: 36rem; }
.item.is-unavailable { opacity: .45; }

.callout {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .75rem 1.5rem;
  border: 2px solid var(--orange); border-radius: var(--radius); padding: 1.1rem 1.4rem; margin-bottom: 2.25rem;
  background: linear-gradient(90deg, rgba(242, 112, 31, .14), transparent);
}
.callout strong { font-family: var(--font-display); font-size: 1.7rem; font-weight: 400; letter-spacing: .04em; }
.callout .item__price { font-size: 2rem; }

.cards { display: grid; gap: 1rem; margin-top: 1.25rem; }
.card {
  position: relative; background: var(--ink-2); background-image: var(--grain);
  border: 1px solid var(--cream-faint); border-radius: var(--radius); padding: 1.4rem;
  display: flex; flex-direction: column; gap: .6rem;
}
.card--featured { border: 2px solid var(--orange); box-shadow: 0 16px 40px rgba(242, 112, 31, .15); }
.card__ribbon { position: absolute; top: -.8rem; right: 1rem; }
.card h3 { font-size: 1.9rem; }
.card__price { display: flex; align-items: baseline; gap: .5rem; }
.card__price small { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--cream-muted); font-weight: 700; }
.card__price .item__price { font-size: 2.6rem; }
.card__slogan { color: var(--copper); font-weight: 600; font-style: italic; }
.card__list { display: flex; flex-direction: column; gap: .4rem; margin-top: .25rem; font-size: .95rem; }
.card__list li { display: flex; gap: .55rem; align-items: flex-start; }
.card__list .icon { color: var(--orange); margin-top: .2rem; width: 1rem; height: 1rem; }
.card__list li:first-child { font-weight: 600; }

/* Car wash packages: swipeable row on phones */
.packages {
  display: grid; grid-auto-flow: column; grid-auto-columns: min(82%, 20rem); gap: 1rem;
  overflow-x: auto; scroll-snap-type: x mandatory; padding: 1.2rem var(--gutter) 1.2rem;
  margin-inline: calc(var(--gutter) * -1); scrollbar-width: thin;
}
.packages .card { scroll-snap-align: center; }

.extras { display: grid; gap: 0 3rem; }
.extras .item { padding: .45rem 0; }
.extras .item__name { font-weight: 500; font-size: 1rem; }
.extras .item__price { font-size: 1.3rem; }

@media (min-width: 700px) {
  .items { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .extras { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cards { grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); }
}
@media (min-width: 960px) {
  .packages { grid-auto-flow: row; grid-template-columns: repeat(4, 1fr); overflow: visible; margin: 0; padding: 1.2rem 0 0; }
}

/* Desktop: stacked categories + sticky jump nav instead of tabs */
@media (min-width: 900px) {
  .menu-layout.has-nav { grid-template-columns: 12rem minmax(0, 1fr); gap: 3rem; }
  .menu-tabs { display: none !important; }
  .menu-jump {
    display: flex; flex-direction: column; gap: .5rem; position: sticky; top: calc(var(--topbar-h) + 1.5rem); align-self: start;
  }
  .menu-jump a { text-align: left; }
  .menu-jump a:hover, .menu-jump a.is-current { color: var(--ink); background: var(--cream); border-color: var(--cream); }
  .menu-panel[hidden] { display: block; }
}

/* ---------- Find us ---------- */
.find__grid { display: grid; gap: 2rem; }
.find__info { display: flex; flex-direction: column; gap: 1.25rem; }
.find__row { display: flex; gap: .75rem; align-items: flex-start; }
.find__row .icon { color: var(--copper); width: 1.4rem; height: 1.4rem; margin-top: .15rem; }
.find__row a { color: var(--cream); font-weight: 600; }
.find__label { display: block; font-family: var(--font-display); font-size: 1.2rem; letter-spacing: .08em; color: var(--cream-muted); }
.hours { width: 100%; max-width: 24rem; border-collapse: collapse; font-size: .95rem; }
.hours th, .hours td { padding: .35rem 0; text-align: left; font-weight: 500; border-bottom: 1px solid rgba(240,200,148,.08); }
.hours td { text-align: right; }
.hours tr.is-today th, .hours tr.is-today td { color: var(--orange); font-weight: 700; }
.status { display: inline-flex; align-items: center; gap: .45rem; font-weight: 600; font-size: .95rem; margin-bottom: .5rem; }
.find__actions { display: flex; flex-wrap: wrap; gap: .6rem; }
.map { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--cream-faint); min-height: 320px; background: var(--ink-2); }
.map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
@media (min-width: 860px) { .find__grid { grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); } .map { min-height: 440px; } }

/* ---------- Cross promo ---------- */
.promo { background: var(--ink-2); background-image: var(--grain); border-top: 1px solid var(--cream-faint); }
.promo__lead { font-family: var(--font-display); font-size: clamp(1.8rem, 5vw, 2.7rem); max-width: 30ch; line-height: 1.05; }
.promo__grid { display: grid; gap: 1rem; margin-top: 1.75rem; }
.promo-card {
  position: relative; display: flex; flex-direction: column; gap: .4rem; padding: 1.4rem; min-height: 11rem;
  border-radius: var(--radius); border: 1px solid var(--cream-faint); text-decoration: none; overflow: hidden; isolation: isolate;
  transition: border-color .25s, transform .25s var(--ease);
}
.promo-card .media { z-index: -1; }
.promo-card:hover { border-color: var(--orange); transform: translateY(-2px); }
.promo-card .quad__icon { width: 2.2rem; height: 2.2rem; }
.promo-card h3 { font-size: 2rem; }
.promo-card p { color: var(--cream-muted); font-size: .95rem; }
.promo-card .go { margin-top: auto; font-family: var(--font-display); font-size: 1.2rem; letter-spacing: .06em; color: var(--orange); }
@media (min-width: 760px) { .promo__grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Footer ---------- */
.site-footer { padding-block: 2.5rem 1.5rem; border-top: 1px solid var(--cream-faint); font-size: .95rem; }
.footer__grid { display: grid; gap: 1.75rem; }
.footer__brand { display: flex; align-items: center; gap: 1rem; }
.footer__brand .logo { width: 72px; flex: none; }
.footer__tag { font-size: 1.5rem; color: var(--cream); line-height: 1.2; }
.footer__tag:not(.script) { font-family: var(--font-display); font-size: 1.9rem; letter-spacing: .05em; }
.footer__col h2 { font-size: 1.25rem; letter-spacing: .1em; color: var(--copper); margin-bottom: .6rem; }
.footer__col li + li { margin-top: .35rem; }
.footer__col a { color: var(--cream); text-decoration-color: var(--cream-faint); text-underline-offset: 3px; }
.footer__col a:hover { color: var(--orange); }
.social { display: flex; gap: .6rem; }
.social a {
  width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%;
  border: 1px solid var(--cream-faint); color: var(--cream);
}
.social a:hover { border-color: var(--orange); color: var(--orange); }
.social .icon { width: 1.25rem; height: 1.25rem; }
.footer__legal { margin-top: 2rem; padding-top: 1.25rem; border-top: 1px solid rgba(240,200,148,.1); color: var(--cream-muted); font-size: .82rem; display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between; }
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; align-items: start; } }

/* Compact hub footer */
.hub-footer .footer__grid { align-items: center; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
