/* ============================================================================
   The Sea Biscuit Café — Design System
   Coastal Southern café: sand-dollar badge, teal script, driftwood browns, cream.
   Palette sampled from the restaurant's own logo. Mobile-first. WCAG 2.2 AA aims.
   ========================================================================== */

/* ---------------------------------------------------------------- Tokens -- */
:root {
  /* Brand — sampled from the logo */
  --sea:        #2f97a8;   /* teal script — primary brand */
  --sea-deep:   #1f7382;   /* deeper teal for text/contrast on cream */
  --sea-soft:   #7cc4cf;   /* pale sea for tints */
  --driftwood:  #3d2b20;   /* deep brown outline — dark bands, headings */
  --driftwood-2:#5c4433;   /* mid brown */
  --cream:      #f4ecd9;   /* warm neutral — primary background */
  --cream-2:    #efe4cd;   /* slightly deeper cream for panels */
  --sand:       #d9c6a3;   /* sand line / borders */
  --biscuit:    #e0a43b;   /* biscuit gold — highlights */
  --coral:      #e2674a;   /* warm accent — order/specials punch */
  --coral-deep: #c8482c;
  --ink:        #2a2119;   /* body text on light */
  --ink-soft:   #5b4f42;   /* muted text */
  --paper:      #ffffff;

  /* UI */
  --ok:         #2e7d54;
  --closed:     #b23b2e;

  --maxw: 1200px;
  --gap: clamp(1rem, 3vw, 2rem);
  --pad-band: clamp(3rem, 7vw, 6rem);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(61, 43, 32, .10);
  --shadow: 0 12px 34px rgba(61, 43, 32, .18);
  --shadow-lg: 0 26px 60px rgba(61, 43, 32, .28);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-ui: "Barlow", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --header-h: 76px;
}

/* ---------------------------------------------------------------- Reset --- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--font-ui);
  color: var(--ink);
  background: var(--cream);
  font-size: clamp(1rem, .96rem + .2vw, 1.125rem);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--sea-deep); text-underline-offset: .18em; }
a:hover { color: var(--coral-deep); }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.06; color: var(--driftwood); letter-spacing: -.01em; }
ul { padding-left: 1.1em; }

/* Focus — visible for keyboard users */
:focus-visible { outline: 3px solid var(--sea-deep); outline-offset: 3px; border-radius: 4px; }
.on-dark :focus-visible { outline-color: var(--biscuit); }

/* Skip link */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--driftwood); color: #fff; padding: .7rem 1.1rem;
  border-radius: 0 0 10px 10px; font-weight: 700; transition: top .18s;
}
.skip-link:focus { top: 0; color: #fff; }

/* --------------------------------------------------------------- Layout --- */
.wrap { width: min(100% - 2.2rem, var(--maxw)); margin-inline: auto; }
.band { padding-block: var(--pad-band); }
.band--tight { padding-block: clamp(2.2rem, 5vw, 3.5rem); }
.band--cream { background: var(--cream); }
.band--paper { background: var(--paper); }
.band--sea   { background: var(--sea); color: #fff; }
.band--driftwood { background: var(--driftwood); color: var(--cream); }
.band--coral { background: var(--coral); color: #fff; }
.on-dark, .band--sea, .band--driftwood, .band--coral { }
.band--sea h2, .band--sea h3, .band--driftwood h2, .band--driftwood h3,
.band--coral h2, .band--coral h3 { color: #fff; }
.band--driftwood h2, .band--driftwood h3 { color: var(--cream); }

.eyebrow {
  font-family: var(--font-ui); font-weight: 700; text-transform: uppercase;
  letter-spacing: .18em; font-size: .78rem; color: var(--sea-deep);
  display: inline-flex; align-items: center; gap: .5rem; margin-bottom: .7rem;
}
.band--sea .eyebrow, .band--driftwood .eyebrow, .band--coral .eyebrow { color: var(--biscuit); }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; opacity: .7; }

h1 { font-size: clamp(2.4rem, 1.5rem + 4.4vw, 4.6rem); }
.section-title { font-size: clamp(1.9rem, 1.3rem + 2.6vw, 3rem); }
.lead { font-size: clamp(1.06rem, 1rem + .5vw, 1.3rem); color: var(--ink-soft); max-width: 62ch; }
.band--sea .lead, .band--driftwood .lead, .band--coral .lead { color: rgba(255,255,255,.9); }
.center { text-align: center; }
.center .eyebrow, .center .lead { margin-left: auto; margin-right: auto; }
.center .eyebrow { justify-content: center; }

/* -------------------------------------------------------------- Buttons --- */
.btn {
  --btn-bg: var(--sea-deep); --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-ui); font-weight: 700; font-size: 1rem;
  letter-spacing: .02em; text-decoration: none; cursor: pointer;
  padding: .85rem 1.5rem; border-radius: 999px; border: 2px solid transparent;
  background: var(--btn-bg); color: var(--btn-fg); line-height: 1;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, color .16s ease;
  box-shadow: var(--shadow-sm); min-height: 48px;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); color: var(--btn-fg); }
.btn:active { transform: translateY(0); }
.btn--coral { --btn-bg: var(--coral); }
.btn--coral:hover { --btn-bg: var(--coral-deep); }
.btn--biscuit { --btn-bg: var(--biscuit); --btn-fg: var(--driftwood); }
.btn--white { --btn-bg: #fff; --btn-fg: #111; border-color: #fff; }
.btn--white:hover { --btn-bg: #f1ecd9; --btn-fg: #111; }
.btn--ghost { background: transparent; color: var(--driftwood); border-color: var(--driftwood); box-shadow: none; }
.btn--ghost:hover { background: var(--driftwood); color: var(--cream); }
.on-dark .btn--ghost, .band--sea .btn--ghost, .band--driftwood .btn--ghost, .band--coral .btn--ghost {
  color: #fff; border-color: rgba(255,255,255,.75);
}
.on-dark .btn--ghost:hover, .band--sea .btn--ghost:hover, .band--driftwood .btn--ghost:hover, .band--coral .btn--ghost:hover {
  background: #fff; color: var(--driftwood);
}
.btn--lg { padding: 1.02rem 1.9rem; font-size: 1.08rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }
.center .btn-row { justify-content: center; }

/* --------------------------------------------------------------- Header --- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--cream) 92%, transparent);
  backdrop-filter: saturate(1.4) blur(8px);
  border-bottom: 1px solid var(--sand);
  transition: box-shadow .2s, background .2s;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); background: var(--cream); }
.header-inner {
  width: min(100% - 2.2rem, var(--maxw)); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; flex-shrink: 0; }
.brand img { height: 52px; width: auto; }
.brand .brand-word { display: none; }

.primary-nav ul { list-style: none; display: flex; gap: .3rem; padding: 0; margin: 0; align-items: center; }
.primary-nav a {
  display: inline-block; padding: .55rem .8rem; border-radius: 999px;
  color: var(--driftwood); text-decoration: none; font-weight: 600; font-size: .98rem;
  transition: background .15s, color .15s;
}
.primary-nav a:hover, .primary-nav a[aria-current="page"] { background: var(--cream-2); color: var(--sea-deep); }
.primary-nav a[aria-current="page"] { box-shadow: inset 0 -2px 0 var(--coral); }

.header-cta { display: flex; align-items: center; gap: .5rem; }
.header-cta .btn { padding: .62rem 1.1rem; min-height: 44px; }

.nav-toggle {
  display: none; background: var(--driftwood); color: var(--cream); border: 0;
  width: 48px; height: 48px; border-radius: 12px; cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 960px) {
  .primary-nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    background: var(--cream); border-bottom: 1px solid var(--sand);
    padding: 1rem 1.1rem 1.6rem; box-shadow: var(--shadow);
    transform: translateY(-120%); transition: transform .28s ease; z-index: 90;
    max-height: calc(100dvh - var(--header-h)); overflow-y: auto;
  }
  .primary-nav.is-open { transform: translateY(0); }
  .primary-nav ul { flex-direction: column; align-items: stretch; gap: .2rem; }
  .primary-nav a { padding: .85rem 1rem; font-size: 1.1rem; border-bottom: 1px solid var(--cream-2); border-radius: 8px; }
  .nav-toggle { display: inline-flex; }
  /* Mobile: Order CTA before the hamburger, hamburger pinned to the far right */
  .header-cta { order: 2; }
  .nav-toggle { order: 3; }
  .header-cta .btn--call-desktop { display: none; }
}
@media (max-width: 520px) {
  .header-cta .btn .btn-label-long { display: none; }
}

/* ----------------------------------------------------------- Alert bar --- */
.alert-bar {
  background: var(--driftwood); color: var(--cream); font-size: .95rem;
  border-bottom: 2px solid var(--biscuit);
}
.alert-bar__inner {
  width: min(100% - 2.2rem, var(--maxw)); margin-inline: auto;
  display: flex; align-items: center; gap: .7rem; padding: .55rem 0;
}
.alert-bar strong { color: var(--biscuit); text-transform: uppercase; letter-spacing: .05em; font-size: .8rem; }
.alert-bar a { color: #fff; font-weight: 700; }
.alert-bar__close {
  margin-left: auto; background: transparent; border: 1px solid rgba(255,255,255,.4);
  color: var(--cream); width: 30px; height: 30px; border-radius: 8px; cursor: pointer; flex-shrink: 0;
}
.alert-bar[hidden] { display: none; }

/* ----------------------------------------------------------------- Hero --- */
.hero { position: relative; min-height: min(88vh, 760px); display: grid; align-items: end; overflow: clip; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* Crossfading background slideshow: all slides stacked, only .is-active shown */
.hero__slide { opacity: 0; transition: opacity .45s ease-in-out; will-change: opacity; }
.hero__slide.is-active { opacity: 1; }
/* Slide indicator dots (built by JS) */
.hero__dots {
  position: absolute; z-index: 2;
  right: clamp(1rem, 3vw, 2.4rem); bottom: clamp(1rem, 3vw, 1.8rem);
  display: flex; gap: .5rem;
}
.hero__dot {
  width: 10px; height: 10px; border-radius: 50%; border: 0; padding: 0; cursor: pointer;
  background: rgba(255,255,255,.45); box-shadow: 0 1px 4px rgba(0,0,0,.45);
  transition: background .3s ease, transform .3s ease;
}
.hero__dot:hover { background: rgba(255,255,255,.85); }
.hero__dot.is-active { background: var(--biscuit); transform: scale(1.3); }
.hero__dot:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(24,15,10,.85) 0%, rgba(24,15,10,.6) 30%, rgba(24,15,10,.25) 52%, rgba(24,15,10,0) 74%),
    linear-gradient(180deg, rgba(24,15,10,.4) 0%, rgba(24,15,10,.12) 28%, rgba(24,15,10,.5) 74%, rgba(24,15,10,.84) 100%);
}
.hero__inner {
  position: relative; z-index: 1; color: #fff;
  width: min(100% - 2.2rem, var(--maxw)); margin-inline: auto;
  padding-block: clamp(2.4rem, 6vw, 4.5rem); padding-top: clamp(4rem, 12vw, 7rem);
}
.hero h1 { color: #fff; text-shadow: 0 2px 22px rgba(0,0,0,.4); max-width: 16ch; }
.hero .hero__kicker {
  color: #f7c96b; font-weight: 700; text-transform: uppercase; letter-spacing: .2em;
  font-size: clamp(.78rem, .7rem + .3vw, .95rem); margin-bottom: 1rem;
  display: inline-flex; align-items: center; gap: .6rem;
  text-shadow: 0 1px 10px rgba(0,0,0,.75), 0 0 2px rgba(0,0,0,.6);
}
.hero .hero__kicker::before { content: ""; width: 34px; height: 2px; background: var(--biscuit); }
.hero__sub { color: rgba(255,255,255,.94); font-size: clamp(1.05rem, 1rem + .5vw, 1.35rem); max-width: 46ch; margin-top: 1rem; text-shadow: 0 1px 10px rgba(0,0,0,.4); }
.hero__actions { margin-top: 1.8rem; display: flex; flex-wrap: wrap; gap: .8rem; }
.hero__facts {
  margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1.4rem 2rem; align-items: center;
  font-size: .98rem; color: rgba(255,255,255,.95);
}
.hero__facts .fact { display: inline-flex; align-items: center; gap: .5rem; text-shadow: 0 1px 8px rgba(0,0,0,.5); }
.hero__facts svg { width: 20px; height: 20px; color: var(--biscuit); flex-shrink: 0; }
.hero__facts a { color: #fff; font-weight: 700; }

/* --------------------------------------------------------- Status chips --- */
.status-chip {
  display: inline-flex; align-items: center; gap: .5rem; font-weight: 700;
  padding: .35rem .8rem; border-radius: 999px; font-size: .92rem; line-height: 1;
  background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.28); color: #fff;
}
.status-chip .dot { width: 10px; height: 10px; border-radius: 50%; background: #bbb; box-shadow: 0 0 0 4px rgba(255,255,255,.15); }
.status-chip.is-open .dot { background: #7bd88f; }
.status-chip.is-closed .dot { background: #ff9c8a; }
.status-chip--light { background: var(--cream-2); color: var(--driftwood); border-color: var(--sand); }
.status-chip--light.is-open .dot { background: var(--ok); }
.status-chip--light.is-closed .dot { background: var(--closed); }

/* --------------------------------------------------------- Today status --- */
.today {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem;
  margin-top: 1.8rem;
}
.today__card {
  background: var(--paper); border: 1px solid var(--sand); border-radius: var(--radius);
  padding: 1.2rem 1.25rem; box-shadow: var(--shadow-sm);
}
.today__card h3 { font-family: var(--font-ui); font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; color: var(--sea-deep); margin-bottom: .5rem; }
.today__value { font-family: var(--font-display); font-size: 1.5rem; color: var(--driftwood); line-height: 1.1; }
.today__note { font-size: .9rem; color: var(--ink-soft); margin-top: .35rem; }
.today__card.is-primary { background: var(--driftwood); color: var(--cream); border-color: var(--driftwood); }
.today__card.is-primary h3 { color: var(--biscuit); }
.today__card.is-primary .today__value { color: #fff; }
.today__card.is-primary .today__note { color: rgba(255,255,255,.8); }

.verify-note {
  font-size: .88rem; color: var(--ink-soft); background: var(--cream-2);
  border-left: 3px solid var(--biscuit); padding: .6rem .9rem; border-radius: 0 8px 8px 0;
  display: inline-block; margin-top: 1rem;
}
.band--sea .verify-note, .band--driftwood .verify-note { color: rgba(255,255,255,.92); background: rgba(255,255,255,.1); }

/* ---------------------------------------------------------- Dish cards --- */
.card-grid { display: grid; gap: clamp(1rem, 2.4vw, 1.8rem); }
.card-grid--3 { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.card-grid--4 { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }

.dish {
  background: var(--paper); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--sand);
  display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s;
}
.dish:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.dish__img { aspect-ratio: 4/3; overflow: hidden; background: var(--cream-2); }
.dish__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.dish:hover .dish__img img { transform: scale(1.05); }
.dish__body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.dish__tag { align-self: flex-start; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--sea-deep); background: var(--cream); padding: .25rem .6rem; border-radius: 999px; }
.dish__name { font-family: var(--font-display); font-size: 1.3rem; color: var(--driftwood); }
.dish__desc { color: var(--ink-soft); font-size: .96rem; flex: 1; }

/* ------------------------------------------------------------- Pathways --- */
.pathways { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; }
.pathway {
  position: relative; aspect-ratio: 3/4; border-radius: var(--radius); overflow: hidden;
  display: flex; align-items: flex-end; text-decoration: none; box-shadow: var(--shadow-sm);
  border: 1px solid var(--sand);
}
.pathway img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.pathway::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(30,20,14,0) 40%, rgba(30,20,14,.82) 100%); }
.pathway span { position: relative; z-index: 1; color: #fff; font-family: var(--font-display); font-size: 1.25rem; padding: .9rem 1rem; font-weight: 600; }
.pathway:hover img { transform: scale(1.06); }
.pathway:hover span { color: #fff; }

/* -------------------------------------------------------------- Split --- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 4vw, 3.5rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
@media (max-width: 780px) { .split { grid-template-columns: 1fr; } .split--reverse .split__media { order: 0; } }

/* ------------------------------------------------------------- Carousel --- */
.carousel { position: relative; }
.carousel__track {
  display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding-bottom: .6rem; -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.carousel__track > * { scroll-snap-align: start; flex: 0 0 auto; }
.carousel--photos .carousel__track > * { width: min(80vw, 460px); }
.carousel--photos img { width: 100%; aspect-ratio: 3/2; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.carousel__btns { display: flex; gap: .5rem; }
.carousel__btn {
  width: 46px; height: 46px; border-radius: 50%; border: 2px solid currentColor;
  background: transparent; color: inherit; cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
}
.carousel__btn:hover { background: currentColor; }
.carousel__btn:hover svg { color: var(--sea); }
.carousel__btn svg { width: 20px; height: 20px; }

/* --------------------------------------------------------------- Reviews --- */
.review {
  background: var(--paper); border: 1px solid var(--sand); border-radius: var(--radius-lg);
  padding: 1.5rem 1.5rem 1.4rem; width: min(84vw, 400px); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: .8rem;
}
.review__stars { color: var(--biscuit); letter-spacing: .1em; font-size: 1.1rem; }
.review__text { font-size: 1.02rem; color: var(--ink); font-style: italic; }
.review__who { font-weight: 700; color: var(--driftwood); font-size: .95rem; }
.review__who span { display: block; font-weight: 500; color: var(--ink-soft); font-size: .85rem; font-style: normal; }

/* --------------------------------------------------------------- Gallery --- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: .6rem; }
.gallery button { padding: 0; border: 0; background: var(--cream-2); cursor: zoom-in; overflow: hidden; border-radius: 10px; aspect-ratio: 1; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s, filter .3s; }
.gallery button:hover img { transform: scale(1.07); filter: brightness(1.05); }
@media (max-width: 780px) { .gallery { grid-template-columns: repeat(2, 1fr); } }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(20,14,10,.9); display: none; align-items: center; justify-content: center; padding: 4vmin; }
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 94vw; max-height: 88vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lightbox__close, .lightbox__nav {
  position: absolute; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.35);
  color: #fff; width: 52px; height: 52px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.lightbox__close { top: 3vmin; right: 3vmin; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev { left: 2vmin; }
.lightbox__nav--next { right: 2vmin; }
.lightbox svg { width: 26px; height: 26px; }

/* ---------------------------------------------------------------- Menu --- */
.menu-toc { display: flex; flex-wrap: wrap; gap: .5rem; margin-block: 1.4rem 2.4rem; }
.menu-toc a { text-decoration: none; }
.menu-section { margin-bottom: 3rem; scroll-margin-top: calc(var(--header-h) + 12px); }
.menu-section > h2 { font-size: clamp(1.6rem, 1.2rem + 1.8vw, 2.4rem); border-bottom: 2px solid var(--sand); padding-bottom: .5rem; margin-bottom: .4rem; }
.menu-section__note { color: var(--ink-soft); font-size: .95rem; margin-bottom: 1.4rem; }
.menu-items { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: .3rem 2.4rem; }
.menu-item { padding: .9rem 0; border-bottom: 1px dashed var(--sand); }
.menu-item__head { display: flex; align-items: baseline; gap: .6rem; }
.menu-item__name { font-family: var(--font-display); font-size: 1.18rem; color: var(--driftwood); font-weight: 600; }
.menu-item__dots { flex: 1; border-bottom: 1px dotted var(--sand); transform: translateY(-3px); min-width: 1rem; }
.menu-item__price { font-variant-numeric: tabular-nums; font-weight: 700; color: var(--sea-deep); white-space: nowrap; }
.menu-item__desc { color: var(--ink-soft); font-size: .95rem; margin-top: .2rem; }
.menu-badges { display: inline-flex; gap: .3rem; margin-left: .3rem; vertical-align: middle; }
.badge {
  font-size: .64rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em;
  padding: .12rem .4rem; border-radius: 5px; vertical-align: middle; line-height: 1.4;
}
.badge--v { background: #e4f1df; color: #2e7d32; }
.badge--gf { background: #fdeede; color: #b06a12; }
.badge--fav { background: #fbe1db; color: var(--coral-deep); }
.badge--spicy { background: #fde3dd; color: #c0341d; }

.notice-box {
  background: var(--cream-2); border: 1px solid var(--sand); border-left: 4px solid var(--coral);
  border-radius: 0 12px 12px 0; padding: 1.1rem 1.3rem; font-size: .92rem; color: var(--ink-soft);
}
.notice-box h3 { font-family: var(--font-ui); font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; color: var(--driftwood); margin-bottom: .4rem; }

/* ------------------------------------------------------------ Hours table --- */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th, .hours-table td { text-align: left; padding: .7rem .4rem; border-bottom: 1px solid var(--sand); }
.hours-table th { font-family: var(--font-ui); font-weight: 700; color: var(--driftwood); }
.hours-table td { font-variant-numeric: tabular-nums; color: var(--ink-soft); }
.hours-table tr.is-today { background: var(--cream-2); }
.hours-table tr.is-today th, .hours-table tr.is-today td { color: var(--driftwood); font-weight: 700; }
.hours-table .closed { color: var(--closed); }

/* --------------------------------------------------------------- Map --- */
.map-embed { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 16/10; background: var(--cream-2); border: 1px solid var(--sand); }
.map-embed iframe { width: 100%; height: 100%; border: 0; }
.map-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; text-align: center; padding: 2rem; cursor: pointer; background-size: cover; background-position: center; }
.map-placeholder::before { content: ""; position: absolute; inset: 0; background: rgba(45,33,25,.55); }
.map-placeholder > * { position: relative; z-index: 1; color: #fff; }
.map-placeholder p { color: #fff; }

/* --------------------------------------------------------------- Forms --- */
.signup-form { display: flex; flex-wrap: wrap; gap: .7rem; max-width: 520px; margin-top: 1.4rem; }
.signup-form input {
  flex: 1 1 220px; padding: .9rem 1.1rem; border-radius: 999px; border: 2px solid rgba(255,255,255,.5);
  background: rgba(255,255,255,.12); color: #fff; font-family: inherit; font-size: 1rem; min-height: 48px;
}
.signup-form input::placeholder { color: rgba(255,255,255,.75); }
.signup-form input:focus { background: #fff; color: var(--ink); border-color: #fff; }
.center .signup-form { margin-inline: auto; justify-content: center; }
.form-hint { font-size: .82rem; color: rgba(255,255,255,.8); margin-top: .8rem; }

/* --------------------------------------------------------------- Footer --- */
.site-footer { background: var(--driftwood); color: var(--cream); padding-block: clamp(2.6rem, 5vw, 4rem) 1.6rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; }
.site-footer h4 { color: var(--biscuit); font-family: var(--font-ui); font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 1rem; }
.site-footer a { color: var(--cream); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-links { list-style: none; padding: 0; display: grid; gap: .55rem; }
.footer-brand img { height: 74px; width: auto; margin-bottom: 1rem; }
.footer-brand p { color: rgba(244,236,217,.8); font-size: .95rem; }
.footer-contact { list-style: none; padding: 0; display: grid; gap: .7rem; font-size: .96rem; }
.footer-contact li { display: flex; gap: .6rem; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; color: var(--biscuit); flex-shrink: 0; margin-top: .2rem; }
.social-row { display: flex; gap: .6rem; margin-top: 1.1rem; }
.social-row a { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; }
.social-row a:hover { background: var(--sea); }
.social-row svg { width: 20px; height: 20px; color: var(--cream); }
.footer-bottom { border-top: 1px solid rgba(244,236,217,.18); margin-top: 2.4rem; padding-top: 1.4rem; display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: space-between; font-size: .85rem; color: rgba(244,236,217,.7); }
.footer-bottom a { color: rgba(244,236,217,.85); }
.footer-disclaimer { font-size: .82rem; color: rgba(244,236,217,.6); margin-top: 1rem; max-width: 70ch; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* -------------------------------------------------------- Mobile action bar --- */
.action-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 95; display: none;
  grid-template-columns: repeat(4, 1fr); background: var(--driftwood);
  border-top: 2px solid var(--biscuit); box-shadow: 0 -6px 20px rgba(0,0,0,.2);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.action-bar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .2rem;
  padding: .55rem .2rem; color: var(--cream); text-decoration: none; font-size: .72rem; font-weight: 600;
  border-right: 1px solid rgba(255,255,255,.12); min-height: 58px;
}
.action-bar a:last-child { border-right: 0; }
.action-bar a:hover, .action-bar a:active { background: rgba(255,255,255,.08); color: #fff; }
.action-bar svg { width: 22px; height: 22px; color: var(--biscuit); }
@media (max-width: 760px) {
  .action-bar { display: grid; }
  body { padding-bottom: 62px; }
}

/* ----------------------------------------------------------- Utilities --- */
.stack > * + * { margin-top: 1.1rem; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mb-0 { margin-bottom: 0; }
.pill-list { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.pill-list li { background: var(--cream-2); border: 1px solid var(--sand); border-radius: 999px; padding: .4rem .9rem; font-size: .9rem; font-weight: 600; color: var(--driftwood); }
.band--driftwood .pill-list li, .band--sea .pill-list li { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.25); color: #fff; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.divider-wave { display: block; width: 100%; height: 40px; color: var(--cream); }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* Info cards (visit / order) */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.2rem; }
.info-card { background: var(--paper); border: 1px solid var(--sand); border-radius: var(--radius); padding: 1.4rem; box-shadow: var(--shadow-sm); }
.info-card h3 { font-size: 1.25rem; margin-bottom: .5rem; display: flex; align-items: center; gap: .5rem; }
.info-card svg { width: 22px; height: 22px; color: var(--sea-deep); }
.info-card p, .info-card ul { color: var(--ink-soft); font-size: .96rem; }

/* Page hero (interior pages) */
.page-hero { background: var(--driftwood); color: var(--cream); padding-block: clamp(2.6rem, 6vw, 4.2rem); }
.page-hero h1 { color: #fff; }
.page-hero .lead { color: rgba(255,255,255,.88); margin-top: .8rem; }
.breadcrumb { font-size: .85rem; color: rgba(255,255,255,.7); margin-bottom: .8rem; }
.breadcrumb a { color: var(--biscuit); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
