/* ============================================================
   Em & Me — Website Theme · theme.css
   Layers on top of tokens.css. Ports kit.css and translates the
   design kit's inline component styles into reusable classes.
   ============================================================ */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); color: var(--ink); }
img { display: block; max-width: 100%; }
button { font-family: var(--font-sans); cursor: pointer; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.section { padding: 88px 0; }

/* ---- Eyebrow ---- */
.kit-eyebrow {
  font-family: var(--font-sans); font-size: 13px; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase; color: var(--gold-deep);
  margin: 0;
}
.kit-eyebrow.on-navy { color: var(--gold); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: 15px; line-height: 1;
  padding: 14px 24px; border-radius: 11px; border: 1.6px solid transparent;
  transition: transform .15s ease, background .18s ease, box-shadow .18s ease, color .18s ease;
  text-decoration: none;
}
.btn:active { transform: scale(.975); }
/* "Ordering Coming Soon" / disabled buttons — present but clearly inactive. */
.btn.is-soon, .btn:disabled { cursor: default; opacity: .68; }
.btn.is-soon:hover, .btn:disabled:hover { box-shadow: var(--shadow-sm); }
.btn.is-soon:active, .btn:disabled:active { transform: none; }
.btn-gold.is-soon:hover { background: var(--gold); color: #3a2c12; }
.btn-primary.is-soon:hover { background: var(--navy); }
.btn-primary { background: var(--navy); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--navy-700); box-shadow: var(--shadow-md); color: #fff; }
.btn-gold { background: var(--gold); color: #3a2c12; font-weight: 700; box-shadow: var(--shadow-sm); }
.btn-gold:hover { background: var(--gold-deep); color:#fff; box-shadow: var(--shadow-gold); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-outline.on-navy { color:#fff; border-color: rgba(255,255,255,.5); }
.btn-outline.on-navy:hover { background:#fff; color: var(--navy-deep); border-color:#fff; }
.btn-ghost { background: transparent; color: var(--navy); padding: 10px 12px; border: none; }
.btn-ghost:hover { color: var(--navy-700); }
.btn .ic { width: 18px; height: 18px; }
/* Let each icon keep the size set on its placeholder; the span (inline style)
   and the Lucide-generated SVG size themselves. Constrain only oversized svgs. */
.ic svg { display: block; }

/* ---- Chips / badges ---- */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; padding: 6px 12px; border-radius: 999px;
}
.chip-best { background: var(--navy-deep); color:#fff; font-weight:700; letter-spacing:.04em; text-transform:uppercase; }
.chip-veg { background: var(--green); color:#fff; font-weight:700; letter-spacing:.05em; text-transform:uppercase; border-radius:6px; }
.chip-soon { background: transparent; border:1px solid var(--gold); color: var(--gold-deep); font-style: italic; font-family: var(--font-serif); font-size:13px; }
.chip-soft { background: var(--tan-soft); color:#5a513f; }
.chip-cal { background: var(--green-soft); color: var(--green-deep); }

/* ---- Cards ---- */
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 18px; box-shadow: var(--shadow-md); overflow: hidden;
}

/* ---- Headings helpers ---- */
.display-xl { font-family: var(--font-display); font-weight: 600; font-size: clamp(44px, 6vw, 78px); line-height: 1.0; letter-spacing: -.01em; color: var(--navy-deep); margin:0; }
.display-lg { font-family: var(--font-display); font-weight: 600; font-size: clamp(34px, 4vw, 52px); line-height: 1.06; color: var(--navy-deep); margin:0; }
.serif-italic { font-family: var(--font-serif); font-style: italic; color: var(--slate); }

/* ---- Fret border ornament ---- */
.fret { width: 100%; height: 18px; display:block; background-repeat: repeat-x; background-position: center; }
.fret--flip { transform: scaleY(-1); }

/* ---- Reveal on scroll (kept subtle) ---- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---- Nav ---- */
.nav-link {
  font-size: 15px; font-weight: 500; color: var(--navy-deep);
  text-decoration: none; padding: 6px 2px; position: relative; background:none; border:none;
  cursor: pointer; font-family: var(--font-sans);
}
.nav-link::after {
  content:''; position:absolute; left:0; right:0; bottom:-3px; height:2px;
  background: var(--gold); transform: scaleX(0); transform-origin:left; transition: transform .2s ease;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--navy); }

/* ---- Menu rows ---- */
.menu-row { display:flex; justify-content:space-between; gap:18px; padding:16px 0; border-top:1px solid var(--line); }
.menu-row:first-child { border-top:none; }
.menu-name { font-family: var(--font-sans); font-weight:700; font-size:17px; color: var(--navy-deep); }
.menu-vi { font-weight:400; font-style:italic; font-family: var(--font-serif); color: var(--stone); font-size:15px; }
.menu-desc { font-size:13.5px; color: var(--stone); margin-top:3px; max-width: 52ch; }
.menu-price { font-family: var(--font-display); font-weight:600; font-size:22px; color: var(--navy-deep); white-space:nowrap; }

/* scrollbar niceties */
.modal-scroll::-webkit-scrollbar{ width:10px; }
.modal-scroll::-webkit-scrollbar-thumb{ background: var(--line); border-radius:10px; }

/* ============================================================
   Header (ported from Header.jsx)
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease;
}
.site-header.scrolled {
  background: rgba(247,242,233,.88);
  -webkit-backdrop-filter: saturate(120%) blur(10px);
  backdrop-filter: saturate(120%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner { display:flex; align-items:center; justify-content:space-between; height:76px; }
.site-brand { background:none; border:none; padding:0; display:flex; align-items:center; gap:12px; text-decoration:none; cursor:pointer; }
.site-brand img { height:50px; }
.site-brand__word { font-family: var(--font-display); font-weight:600; font-size:24px; color: var(--navy-deep); letter-spacing:-.01em; }
.site-nav { display:flex; align-items:center; gap:30px; }
.site-nav__links { display:flex; gap:26px; }
.nav-toggle { display:none; background:none; border:none; padding:6px; cursor:pointer; align-items:center; }
.nav-toggle .ic { width:26px; height:26px; }

/* ---- Mobile slide-out nav ---- */
.mobile-nav-scrim {
  position:fixed; inset:0; background:rgba(13,44,81,.42);
  -webkit-backdrop-filter:blur(2px); backdrop-filter:blur(2px);
  opacity:0; pointer-events:none; transition:opacity .28s ease; z-index:88;
}
.mobile-nav-scrim.open { opacity:1; pointer-events:auto; }
.mobile-nav {
  position:fixed; top:0; right:0; bottom:0; width:min(320px,86vw);
  background:var(--cream); box-shadow:var(--shadow-lg); z-index:89;
  transform:translateX(102%); transition:transform .32s cubic-bezier(.4,0,.2,1);
  display:flex; flex-direction:column; padding:0;
}
.mobile-nav.open { transform:none; }
.mobile-nav__head { display:flex; align-items:center; justify-content:space-between; padding:18px 20px; border-bottom:1px solid var(--line); }
.mobile-nav__logo { height:46px; }
.mobile-nav__links { display:flex; flex-direction:column; padding:10px 8px; flex:1; }
.mobile-nav__links .nav-link { font-size:20px; font-family:var(--font-display); font-weight:600; color:var(--navy-deep); padding:14px 16px; border-radius:12px; }
.mobile-nav__links .nav-link::after { display:none; }
.mobile-nav__links .nav-link:hover, .mobile-nav__links .nav-link.active { background:var(--cream-deep); color:var(--navy); }
.mobile-nav__cta { padding:14px 20px 20px; }

/* ============================================================
   Hero (ported from Hero.jsx)
   ============================================================ */
.hero { position:relative; overflow:hidden; }
.hero__grid {
  display:grid; grid-template-columns:1.05fr .95fr; gap:56px;
  align-items:center; padding:64px 28px 96px;
}
.hero__title { margin-top:18px; }
.hero__title em { font-style:italic; color: var(--gold-deep); }
.hero__lead { font-size:21px; line-height:1.5; margin-top:22px; max-width:44ch; }
.hero__actions { display:flex; gap:14px; margin-top:32px; flex-wrap:wrap; }
.hero__maps { display:flex; align-items:center; gap:8px; flex-wrap:wrap; margin-top:16px; font-size:14px; color:var(--slate); }
.hero__maps-label { font-weight:600; color:var(--navy-deep); }
.hero__maps a { color:var(--navy); font-weight:600; text-decoration:underline; text-decoration-color:var(--gold); text-underline-offset:3px; }
.hero__maps a:hover { color:var(--navy-700); }
.hero__maps-sep { color:var(--stone); }
.hero__status { display:flex; align-items:center; flex-wrap:wrap; gap:6px 10px; margin-top:30px; color: var(--slate); }
/* Keep each phrase intact; wrap the row between phrases, never mid-word. */
.hero__status-open, .hero__status-hours, .hero__status-next { white-space:nowrap; }
.hero__status-dot { width:9px; height:9px; border-radius:999px; background: var(--green); box-shadow:0 0 0 4px rgba(19,123,62,.16); }
.hero__status-dot.is-closed { background: var(--stone); box-shadow:0 0 0 4px rgba(138,133,121,.16); }
.hero__svc { font-size:11px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color: var(--green-deep); background: var(--green-soft); padding:3px 9px; border-radius:999px; margin-left:6px; }
.hero__status-next { font-size:14px; font-weight:600; color: var(--gold-deep); }
.hero__status-open { font-size:14px; font-weight:600; color: var(--navy-deep); }
.hero__status-hours { font-size:14px; }
.hero__stack { position:relative; height:540px; }
.hero__float { display:none; }  /* desktop uses the layered stack; this is mobile-only */
.hero__photo-main { position:absolute; top:0; right:0; width:78%; height:74%; border-radius:20px; overflow:hidden; box-shadow: var(--shadow-lg); border:1px solid var(--line); }
.hero__photo-main img, .hero__photo-sub img { width:100%; height:100%; object-fit:cover; }
.hero__photo-sub { position:absolute; bottom:0; left:0; width:56%; height:50%; border-radius:18px; overflow:hidden; box-shadow: var(--shadow-lg); border:4px solid var(--cream); }
.hero__badge {
  position:absolute; top:64%; right:2%; background: var(--navy-deep); color:#fff;
  border-radius:999px; padding:12px 18px; box-shadow: var(--shadow-lg); text-align:center; transform: rotate(-4deg);
}
.hero__badge-num { font-family: var(--font-display); font-weight:600; font-size:22px; line-height:1; }
.hero__badge-label { font-size:10px; letter-spacing:.12em; text-transform:uppercase; color: var(--gold); margin-top:3px; }

/* ============================================================
   Featured drinks (ported from Menu.jsx)
   ============================================================ */
.section-head { display:flex; align-items:flex-end; justify-content:space-between; gap:20px; margin-bottom:36px; }
.feat-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.feat-card { display:flex; flex-direction:column; position:relative; }
/* Whole card links to the menu; the Add row sits above the stretched link. */
.feat-card__link { position:absolute; inset:0; z-index:1; }
.feat-card__row { position:relative; z-index:2; }
.feat-card:hover { box-shadow: var(--shadow-lg); }
.feat-card__media { position:relative; height:220px; overflow:hidden; }
.feat-card__media img { width:100%; height:100%; object-fit:cover; transition: transform .4s ease; }
.feat-card:hover .feat-card__media img { transform: scale(1.05); }
.feat-card__body { padding:20px 22px 22px; display:flex; flex-direction:column; flex:1; }
.feat-card__name { font-family: var(--font-display); font-weight:600; font-size:27px; color: var(--navy-deep); margin:0; line-height:1.05; }
.feat-card__vi { font-size:15px; margin:4px 0 0; }
.feat-card__row { display:flex; align-items:center; justify-content:space-between; margin-top:18px; }

/* ============================================================
   Full menu (ported from Menu.jsx)
   ============================================================ */
.menu-page { padding-top:56px; padding-bottom:96px; }
.menu-page__head { text-align:center; margin-bottom:14px; }
.menu-page__fret { max-width:360px; margin:0 auto 40px; }
.menu-cols { display:grid; grid-template-columns:1fr 1fr; gap:64px; }
.menu-col-group { break-inside:avoid; margin-bottom:38px; }
.menu-col-group__head { display:flex; align-items:baseline; gap:10px; margin-bottom:6px; flex-wrap:nowrap; }
.menu-col-group__label { font-family: var(--font-display); font-weight:600; font-size:26px; color: var(--navy-deep); margin:0; text-transform:uppercase; letter-spacing:.01em; white-space:nowrap; }
.menu-col-group__vi { font-size:15px; white-space:nowrap; }
.menu-row__main { flex:1; }
.menu-row__thumb { flex:none; width:72px; height:72px; border-radius:12px; overflow:hidden; border:1px solid var(--line); box-shadow: var(--shadow-sm); }
.menu-row__thumb img { width:100%; height:100%; object-fit:cover; }
.menu-row__chips { display:flex; gap:6px; margin-top:8px; flex-wrap:wrap; }
.menu-row__aside { display:flex; flex-direction:column; align-items:flex-end; gap:8px; }
.menu-fineprint { text-align:center; font-size:12.5px; color: var(--stone); margin-top:30px; max-width:620px; margin-left:auto; margin-right:auto; }

/* ============================================================
   Story band + Atmosphere (ported from Story.jsx)
   ============================================================ */
.story { background: var(--navy-deep); color:#fff; position:relative; }
.story__grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; padding:84px 28px; }
.story__media { position:relative; }
.story__media-frame { border-radius:20px; overflow:hidden; box-shadow: var(--shadow-lg); border:1px solid rgba(255,255,255,.12); }
.story__media-frame img { width:100%; height:460px; object-fit:cover; }
.story__amp { position:absolute; bottom:-22px; right:-14px; width:116px; opacity:.9; }
.story__title { color:#fff; margin-top:14px; }
.story__body { font-family: var(--font-serif); font-size:18px; line-height:1.62; color: rgba(255,255,255,.82); margin-top:18px; }
.story__points { margin-top:30px; display:flex; flex-direction:column; gap:18px; }
.story__point { display:flex; gap:14px; align-items:flex-start; }
.story__point-ic { flex:none; width:42px; height:42px; border-radius:12px; background: rgba(198,162,108,.16); display:flex; align-items:center; justify-content:center; color: var(--gold); }
.story__point-t { font-weight:700; font-size:16px; }
.story__point-d { font-size:14px; color: rgba(255,255,255,.7); margin-top:2px; }

.atmo-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.atmo-fig { margin:0; position:relative; border-radius:16px; overflow:hidden; box-shadow: var(--shadow-md); aspect-ratio:3/4; }
.atmo-fig img { width:100%; height:100%; object-fit:cover; transition: transform .4s ease; }
.atmo-fig figcaption { position:absolute; left:0; right:0; bottom:0; padding:28px 14px 12px; color:#fff; font-size:13px; font-weight:600; background: linear-gradient(to top, rgba(0,40,86,.86), transparent); }
.atmo-fig__link { display:block; width:100%; height:100%; position:relative; cursor:zoom-in; }
.atmo-fig:hover img { transform: scale(1.05); }
.atmo-fig__zoom { position:absolute; top:12px; right:12px; width:32px; height:32px; border-radius:999px; background:rgba(13,44,81,.55); display:flex; align-items:center; justify-content:center; opacity:0; transition:opacity .2s ease; }
.atmo-fig:hover .atmo-fig__zoom { opacity:1; }

/* ---- Lightbox ---- */
.emme-lb {
  position:fixed; inset:0; z-index:120; display:none;
  align-items:center; justify-content:center;
  background:rgba(13,44,81,.92); -webkit-backdrop-filter:blur(3px); backdrop-filter:blur(3px);
  padding:40px;
}
.emme-lb.open { display:flex; }
.emme-lb__stage { margin:0; max-width:90vw; max-height:86vh; display:flex; flex-direction:column; align-items:center; gap:14px; }
.emme-lb__img { max-width:90vw; max-height:78vh; object-fit:contain; border-radius:12px; box-shadow:var(--shadow-lg); }
.emme-lb__cap { color:rgba(255,255,255,.9); font-family:var(--font-serif); font-style:italic; font-size:16px; text-align:center; }
.emme-lb__close { position:absolute; top:20px; right:24px; background:none; border:none; color:#fff; font-size:34px; line-height:1; cursor:pointer; opacity:.85; }
.emme-lb__close:hover { opacity:1; }
.emme-lb__nav { position:absolute; top:50%; transform:translateY(-50%); background:rgba(255,255,255,.12); border:none; color:#fff; width:48px; height:48px; border-radius:999px; font-size:30px; line-height:1; cursor:pointer; transition:background .2s ease; }
.emme-lb__nav:hover { background:rgba(255,255,255,.24); }
.emme-lb__prev { left:18px; } .emme-lb__next { right:18px; }
@media (max-width:540px){ .emme-lb__nav { width:40px; height:40px; font-size:24px; } .emme-lb__prev{left:6px} .emme-lb__next{right:6px} }

/* ============================================================
   CTA band (ported from app.jsx CTABand)
   ============================================================ */
.cta { position:relative; }
.cta__media { position:relative; height:360px; overflow:hidden; }
.cta__media img { width:100%; height:100%; object-fit:cover; }
.cta__scrim { position:absolute; inset:0; background: linear-gradient(90deg, rgba(0,40,86,.92), rgba(0,40,86,.55)); }
.cta__inner { position:absolute; inset:0; display:flex; flex-direction:column; justify-content:center; }
.cta__title { color:#fff; margin-top:12px; max-width:18ch; }
.cta__actions { display:flex; gap:14px; margin-top:26px; }

/* ============================================================
   Visit (ported from Visit.jsx)
   ============================================================ */
.visit { padding-top:64px; padding-bottom:90px; }
.visit__head { text-align:center; margin-bottom:40px; }
.visit__grid { display:grid; grid-template-columns:1fr 1.1fr; gap:36px; align-items:stretch; }
.visit__info { padding:34px 34px 30px; display:flex; flex-direction:column; }
.visit__row-icon { display:flex; align-items:center; gap:11px; color: var(--navy-deep); }
.visit__name { font-weight:700; font-size:17px; }
.visit__addr { color: var(--slate); margin:6px 0 0 31px; font-size:15px; }
.visit__parking { color: var(--slate); margin:10px 0 0 31px; font-size:14.5px; line-height:1.5; max-width:46ch; }
.visit__hr { height:1px; background: var(--line); margin:24px 0; }
.visit__hours-head { display:flex; align-items:center; gap:11px; margin-bottom:14px; }
.visit__hours-head span { font-weight:700; font-size:15px; color: var(--navy-deep); }
.visit__hours-row { display:flex; justify-content:space-between; padding:7px 0; font-size:14.5px; color: var(--ink); }
.visit__hours-row span:last-child { color: var(--slate); font-variant-numeric: tabular-nums; }
.visit__contact { display:flex; gap:22px; flex-wrap:wrap; }
.visit__aside { display:flex; flex-direction:column; gap:16px; }
.visit__photo { border-radius:18px; overflow:hidden; box-shadow: var(--shadow-md); border:1px solid var(--line); flex:1; min-height:260px; }
.visit__photo img { width:100%; height:100%; object-fit:cover; min-height:260px; }
.visit__map { border-radius:14px; overflow:hidden; box-shadow: var(--shadow-sm); border:1px solid var(--line); flex:none; height:230px; margin-top:14px; display:flex; }
.visit__map iframe { width:100%; height:100%; display:block; }
.visit__dir { display:flex; gap:12px; margin-top:16px; }
.visit__dir .btn { flex:1; justify-content:center; padding:12px 14px; font-size:14px; }
.visit__addr-link { color: var(--navy); text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset:3px; }
.visit__addr-link:hover { color: var(--navy-700); }
.visit__quote { display:flex; align-items:center; gap:16px; padding:18px; }
.visit__quote-ic { flex:none; width:52px; height:52px; border-radius:14px; background: var(--green-soft); display:flex; align-items:center; justify-content:center; }
.visit__quote-t { font-weight:700; color: var(--navy-deep); }
.visit__quote-d { font-size:14px; color: var(--slate); margin-top:2px; }

/* ============================================================
   Footer (ported from Footer.jsx)
   ============================================================ */
.site-footer { background: var(--navy-deep); color:#fff; }
.site-footer__inner { padding:56px 28px 28px; }
.site-footer__grid { display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:40px; align-items:start; }
.site-footer__logo { height:96px; }
.site-footer__tag { font-family: var(--font-serif); font-style:italic; font-size:17px; color: rgba(255,255,255,.8); margin-top:16px; max-width:34ch; }
.site-footer__h { font-size:12px; letter-spacing:.2em; text-transform:uppercase; color: var(--gold); margin-bottom:14px; }
.site-footer__link { display:block; background:none; border:none; color: rgba(255,255,255,.82); font-size:15px; padding:6px 0; cursor:pointer; font-family: var(--font-sans); text-decoration:none; text-align:left; }
.site-footer__link:hover { color:#fff; }
.site-footer__find p { color: rgba(255,255,255,.82); font-size:15px; margin:0 0 8px; }
.site-footer__social { display:inline-flex; align-items:center; gap:8px; color:#fff; text-decoration:none; font-size:15px; margin-top:4px; }
.site-footer__rule { height:1px; background: rgba(255,255,255,.14); margin:36px 0 18px; }
.site-footer__bottom { display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; color: rgba(255,255,255,.55); font-size:13px; }

/* ============================================================
   Order drawer / cart (ported from OrderFlow.jsx)
   ============================================================ */
.drawer-scrim {
  position:fixed; inset:0; background: rgba(13,44,81,.42);
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
  opacity:0; pointer-events:none; transition: opacity .28s ease; z-index:80;
}
.drawer-scrim.open { opacity:1; pointer-events:auto; }
.drawer {
  position:fixed; top:0; right:0; bottom:0; width:min(420px,92vw); background: var(--cream);
  box-shadow: var(--shadow-lg); z-index:81; transform: translateX(102%);
  transition: transform .32s cubic-bezier(.4,0,.2,1); display:flex; flex-direction:column;
}
.drawer.open { transform:none; }
.drawer__head { display:flex; align-items:center; justify-content:space-between; padding:20px 22px; border-bottom:1px solid var(--line); }
.drawer__title-wrap { display:flex; align-items:center; gap:10px; }
.drawer__title { font-family: var(--font-display); font-weight:600; font-size:24px; color: var(--navy-deep); }
.drawer__state { flex:1; display:flex; flex-direction:column; }
.drawer__empty { flex:1; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; padding:30px; color: var(--stone); }
.drawer__empty img { width:84px; opacity:.25; margin-bottom:18px; }
.drawer__confirm { flex:1; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; padding:30px; }
.drawer__confirm-ic { width:76px; height:76px; border-radius:999px; background: var(--green-soft); display:flex; align-items:center; justify-content:center; margin-bottom:20px; }
.drawer__items { flex:1; overflow-y:auto; padding:12px 22px; }
.drawer__item { display:flex; align-items:center; gap:12px; padding:14px 0; border-bottom:1px solid var(--line); }
.drawer__item-main { flex:1; }
.drawer__item-name { font-weight:700; font-size:15px; color: var(--navy-deep); }
.drawer__item-price { font-size:13px; color: var(--stone); margin-top:2px; }
.drawer__item-mods { font-size:12px; color: var(--slate); margin-top:2px; font-style:italic; font-family: var(--font-serif); }

/* ---- Modifier chooser modal ---- */
.emme-modal-scrim {
  position: fixed; inset: 0; z-index: 95; display: flex; align-items: center; justify-content: center;
  background: rgba(13,44,81,.45); -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
  opacity: 0; pointer-events: none; transition: opacity .28s ease; padding: 20px;
}
.emme-modal-scrim.is-open { opacity: 1; pointer-events: auto; }
.emme-modal {
  background: var(--cream); border-radius: 18px; box-shadow: var(--shadow-lg);
  width: min(440px, 100%); max-height: 86vh; display: flex; flex-direction: column; overflow: hidden;
  transform: translateY(12px) scale(.98); transition: transform .28s ease;
}
.emme-modal-scrim.is-open .emme-modal { transform: none; }
.emme-modal__head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--line); }
.emme-modal__title { font-family: var(--font-display); font-weight: 600; font-size: 23px; color: var(--navy-deep); }
.emme-modal__close { background: none; border: none; font-size: 24px; line-height: 1; color: var(--slate); cursor: pointer; }
.emme-modal__body { padding: 8px 20px; overflow-y: auto; }
.emme-modal__group { padding: 14px 0; border-bottom: 1px solid var(--line); }
.emme-modal__group:last-child { border-bottom: none; }
.emme-modal__group-title { font-weight: 700; font-size: 14px; color: var(--navy-deep); margin-bottom: 8px; }
.emme-modal__opt { display: flex; align-items: center; gap: 10px; padding: 7px 0; font-size: 14.5px; cursor: pointer; }
.emme-modal__op { color: var(--gold-deep); font-weight: 600; }
.emme-modal__foot { padding: 16px 20px; border-top: 1px solid var(--line); background: var(--surface); }
.emme-modal__add { width: 100%; justify-content: center; font-size: 15px; }
.drawer__stepper { display:flex; align-items:center; gap:10px; background: var(--surface); border:1px solid var(--line); border-radius:999px; padding:5px 8px; }
.drawer__stepper button { border:none; background:none; display:flex; color: var(--navy); padding:0; }
.drawer__stepper-qty { font-weight:700; font-size:14px; min-width:14px; text-align:center; }
.drawer__item-line { font-family: var(--font-display); font-weight:600; font-size:17px; min-width:54px; text-align:right; }
.drawer__deal { display:flex; align-items:center; gap:10px; margin-top:18px; padding:12px 14px; background: var(--green-soft); border-radius:12px; color: var(--green-deep); }
.drawer__deal span { font-size:13.5px; font-weight:600; }
.drawer__foot { padding:18px 22px 22px; border-top:1px solid var(--line); background: var(--surface); }
.drawer__sumrow { display:flex; justify-content:space-between; font-size:14px; padding:3px 0; color: var(--slate); }
.drawer__sumrow.muted { color: var(--stone); }
.drawer__sumrow span:last-child { font-variant-numeric: tabular-nums; }
.drawer__total { display:flex; justify-content:space-between; align-items:baseline; margin-top:8px; }
.drawer__total-label { font-weight:700; font-size:16px; color: var(--navy-deep); }
.drawer__total-val { font-family: var(--font-display); font-weight:600; font-size:28px; color: var(--navy-deep); }
.drawer__fields { display:flex; gap:10px; margin-top:14px; }
.drawer__input { flex:1; min-width:0; font-family: var(--font-sans); font-size:14px; padding:11px 12px; border:1px solid var(--line); border-radius:10px; background: var(--cream); color: var(--ink); }
.drawer__input:focus { outline:none; border-color: var(--gold); box-shadow:0 0 0 3px rgba(198,162,108,.18); }
.drawer__input.is-error { border-color: var(--terracotta); box-shadow:0 0 0 3px rgba(182,83,47,.14); }
.drawer__place { width:100%; justify-content:center; margin-top:16px; font-size:16px; }
.drawer__fine { font-size:11.5px; color: var(--stone); text-align:center; margin-top:10px; }
.drawer__error { background: rgba(182,83,47,.1); color: var(--terracotta); font-size:13px; font-weight:600; padding:10px 14px; border-radius:10px; margin:12px 22px 0; display:none; }
.drawer__error.show { display:block; }

/* ---- Toast (add confirmation, ported from app.jsx) ---- */
.add-toast {
  position:fixed; left:50%; bottom:26px; transform: translateX(-50%) translateY(20px);
  opacity:0; transition: opacity .25s ease, transform .25s ease; z-index:90; pointer-events:none;
  background: var(--navy-deep); color:#fff; padding:12px 20px; border-radius:999px; box-shadow: var(--shadow-lg);
  display:flex; align-items:center; gap:10px; font-size:14px; font-weight:600;
}
.add-toast.show { opacity:1; transform: translateX(-50%) translateY(0); }

/* ---- FOMO recent-orders banner ---- */
.fomo {
  position: fixed; left: 22px; bottom: 22px; z-index: 85;
  display: flex; align-items: center; gap: 10px;
  max-width: min(340px, calc(100vw - 44px));
  background: var(--navy-deep); color: #fff;
  padding: 11px 14px 11px 15px; border-radius: 14px;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.1);
  font-size: 13.5px; line-height: 1.35;
  opacity: 0; transform: translateY(14px) scale(.98); pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
}
.fomo.is-in { opacity: 1; transform: none; pointer-events: auto; }
.fomo__dot { flex: none; width: 8px; height: 8px; border-radius: 999px; background: var(--green); box-shadow: 0 0 0 4px rgba(19,123,62,.28); }
.fomo__thumb { flex: none; width: 40px; height: 40px; border-radius: 10px; overflow: hidden; box-shadow: 0 0 0 2px rgba(255,255,255,.18); }
.fomo__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fomo__text { flex: 1; }
.fomo__text strong, .fomo__text b { color: var(--gold); }
.fomo__close { flex: none; background: none; border: none; color: rgba(255,255,255,.6); font-size: 18px; line-height: 1; padding: 0 2px; cursor: pointer; }
.fomo__close:hover { color: #fff; }
@media (max-width: 540px) {
  .fomo { left: 12px; right: 12px; bottom: 12px; max-width: none; }
}
@media (prefers-reduced-motion: reduce) {
  .fomo { transition: opacity .2s ease; transform: none; }
  .fomo.is-in { transform: none; }
}

/* spinner for in-flight order placement */
.spin { animation: em-spin 1s linear infinite; }
@keyframes em-spin { to { transform: rotate(360deg); } }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 920px) {
  .hero__grid { grid-template-columns:1fr; gap:36px; padding:40px 28px 64px; }
  .hero__stack { display:none; }   /* replaced by the floated photo on mobile */
  .hero__float {
    display:block; float:right; width:42%; max-width:190px; aspect-ratio:3/4;
    object-fit:cover; border-radius:16px; box-shadow:var(--shadow-lg);
    border:4px solid var(--cream); margin:4px 0 14px 18px;
  }
  .hero__actions { clear:both; }   /* buttons start below the floated photo */
  .story__grid { grid-template-columns:1fr; gap:36px; padding:56px 28px; }
  .story__amp { width:84px; right:8px; bottom:-16px; }
  .visit__grid { grid-template-columns:1fr; }

  /* Mobile: the "Pull up a chair" header sits on a faded photo of the owner
     with a navy scrim — same photographic treatment as the home CTA band,
     brand-toned and high-contrast for readability. */
  .visit__head {
    position:relative; overflow:hidden; border-radius:20px;
    padding:48px 24px; margin-bottom:32px; box-shadow:var(--shadow-md);
  }
  .visit__head > * { position:relative; z-index:1; }
  .visit__head::before {
    content:''; position:absolute; inset:0; z-index:0;
    background-image:
      linear-gradient(180deg, rgba(0,40,86,.66), rgba(0,40,86,.90)),
      var(--visit-photo);
    background-size:cover; background-position:center 30%;
  }
  .visit__head .kit-eyebrow { color:var(--gold); }
  .visit__head .display-xl { color:#fff; }
  .visit__head .serif-italic { color:rgba(255,255,255,.88); }
  .menu-cols { grid-template-columns:1fr; gap:0; }
  .feat-grid { grid-template-columns:1fr; }
  .atmo-grid { grid-template-columns:repeat(2,1fr); }
  .site-footer__grid { grid-template-columns:1fr; gap:30px; }
  .site-nav__links { display:none; }
  .site-brand__word { display:none; }  /* logo only on mobile */
  .nav-toggle { display:inline-flex; }
  /* Keep the order button in the header on mobile, compact so it fits next to
     the logo + hamburger. */
  .site-nav { gap:10px; }
  .site-brand img { height:44px; }
  .site-nav__order { display:inline-flex; }
  .site-nav__order .btn { padding:9px 13px !important; font-size:12px !important; white-space:nowrap; }
  .site-nav__order .btn .ic { display:none; }  /* drop the icon to save width */
  .section { padding:56px 0; }
  .cta__title { max-width:none; }
}
/* Desktop: the slide-out + hamburger never show. */
@media (min-width: 921px) {
  .mobile-nav, .mobile-nav-scrim, .nav-toggle { display:none !important; }
}
@media (max-width: 540px) {
  .container { padding:0 18px; }
  .atmo-grid { grid-template-columns:1fr; }
  .section-head { flex-direction:column; align-items:flex-start; }
}

/* Home — Taste Quiz invitation band. */
.quiz-cta { background:var(--cream-deep); }
.quiz-cta__inner { text-align:center; max-width:720px; margin:0 auto; }
.quiz-cta__title { margin-top:12px; }
.quiz-cta__sub { font-size:18px; margin-top:10px; }
.quiz-cta__actions { display:flex; justify-content:center; gap:12px; margin-top:24px; flex-wrap:wrap; }

/* Menu page — slim "take the quiz" banner above the board. */
.menu-quiz-banner {
  display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap;
  background:var(--surface); border:1px solid var(--line); border-radius:var(--r-lg);
  padding:16px 22px; margin-bottom:32px; box-shadow:var(--shadow-sm);
}
.menu-quiz-banner__text { font-family:var(--font-serif); font-style:italic; color:var(--slate); font-size:17px; }

/* ── Google reviews wall ──────────────────────────────────────────── */
.reviews__summary {
  display:inline-flex; align-items:center; gap:10px; flex-wrap:wrap;
  justify-content:center; margin-top:16px;
}
.reviews__avg { font-family:var(--font-display); font-weight:600; font-size:20px; color:var(--navy-deep); }
.reviews__count { color:var(--navy-soft); font-size:15px; }

.rev-stars { display:inline-flex; gap:2px; align-items:center; }
.rev-star svg { fill:none; stroke:#d8cfc0; }          /* empty star */
.rev-star.is-on svg { fill:var(--gold); stroke:var(--gold); } /* filled star */

.reviews__grid {
  display:grid; gap:22px;
  grid-template-columns:repeat(auto-fill, minmax(300px, 1fr));
}
.review-card { display:flex; flex-direction:column; padding:24px; gap:14px; }
.review-card__head { display:flex; align-items:center; justify-content:space-between; }
.review-card__body {
  font-family:var(--font-serif); font-size:16px; line-height:1.6; color:var(--ink);
  margin:0; flex:1;
}
.review-card__foot { display:flex; align-items:center; gap:12px; margin-top:4px; }
.review-card__avatar {
  width:40px; height:40px; border-radius:50%; object-fit:cover; flex-shrink:0;
  border:1px solid var(--line);
}
.review-card__avatar--initial {
  display:inline-flex; align-items:center; justify-content:center;
  background:var(--cream-deep); color:var(--navy-deep);
  font-family:var(--font-display); font-weight:600; font-size:17px;
}
.review-card__meta { display:flex; flex-direction:column; line-height:1.3; }
.review-card__author { font-weight:600; color:var(--navy-deep); font-size:15px; }
.review-card__when { color:var(--navy-soft); font-size:13px; }

/* ============================================================
   Careers / job application form
   ============================================================ */
.careers__head { text-align:center; margin-bottom:36px; }
.careers__body { max-width:760px; margin:0 auto; }
.careers-form { padding:30px 30px 26px; }
.careers-hp { position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }
.careers-grid { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.careers-field { display:flex; flex-direction:column; gap:6px; }
.careers-field--full { grid-column:1 / -1; }
.careers-field > span { font-size:13px; font-weight:600; color:var(--navy-deep); letter-spacing:.01em; }
.careers-field > span i { color:var(--terracotta); font-style:normal; }
.careers-field > span small { font-weight:500; color:var(--stone); }
.careers-field input,
.careers-field select,
.careers-field textarea {
  font-family:var(--font-sans); font-size:15px; color:var(--ink);
  padding:11px 13px; border:1px solid var(--line); border-radius:10px; background:var(--surface);
  width:100%;
}
.careers-field textarea { resize:vertical; }
.careers-field input:focus,
.careers-field select:focus,
.careers-field textarea:focus { outline:none; border-color:var(--gold); box-shadow:0 0 0 3px rgba(198,162,108,.18); }
.careers-field input[type="file"] { padding:9px 12px; background:var(--cream); cursor:pointer; }
.careers-foot { display:flex; align-items:center; gap:18px; flex-wrap:wrap; margin-top:22px; }
.careers-note { margin:0; font-size:14px; font-weight:600; color:var(--green-deep); }
.careers-note.is-error { color:var(--terracotta); }
.careers-done { padding:30px 32px; text-align:center; }
.careers-done__msg { font-family:var(--font-serif); font-style:italic; font-size:19px; color:var(--navy-deep); margin:0; }
@media (max-width:600px){ .careers-grid { grid-template-columns:1fr; } }

/* ---- Social links (hero + reusable) ---- */
.social-links { display:flex; align-items:center; gap:14px; }
.social-links__a { display:inline-flex; color:var(--navy); transition:color .18s ease, transform .15s ease; }
.social-links__a:hover { color:var(--gold-deep); transform:translateY(-1px); }
.social-links svg { width:20px; height:20px; display:block; }
.hero__social { margin-top:18px; }

/* ============================================================
   About page
   ============================================================ */
.about__head { text-align:center; max-width:780px; }
.about__head { margin-left:auto; margin-right:auto; }
.about__intro { font-size:21px; line-height:1.55; margin-top:18px; }
.about__fret { max-width:360px; margin:34px auto 44px; }
.about__story { display:grid; grid-template-columns:.85fr 1.15fr; gap:48px; align-items:start; }
.about__media { position:relative; }
.about__media-frame { border-radius:20px; overflow:hidden; box-shadow:var(--shadow-lg); border:1px solid var(--line); }
.about__media-frame img { width:100%; height:100%; object-fit:cover; aspect-ratio:4/5; }
.about__amp { position:absolute; bottom:-18px; right:-12px; width:96px; opacity:.9; }
.about__prose p { font-family:var(--font-serif); font-size:18px; line-height:1.7; color:var(--ink); margin:0 0 18px; }
.about__prose > p:first-of-type { font-size:21px; line-height:1.55; color:var(--navy-deep); }
.about__prose h2 { font-family:var(--font-display); font-weight:600; font-size:30px; color:var(--navy-deep); margin:30px 0 10px; }
.about__media { position:sticky; top:96px; }

.about__mission { background:var(--navy-deep); color:#fff; position:relative; margin-top:20px; }
.about__mission-inner { text-align:center; padding:72px 28px; max-width:820px; }
.about__mission-text { color:#fff; margin-top:14px; }
.about__mission-actions { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; margin-top:30px; }
.about__social { justify-content:center; margin-top:26px; }
.about__social .social-links__a { color:rgba(255,255,255,.85); }
.about__social .social-links__a:hover { color:var(--gold); }

@media (max-width:820px){
  .about__story { grid-template-columns:1fr; gap:30px; }
  .about__media { position:static; max-width:420px; margin:0 auto; }
  .about__mission-inner { padding:54px 24px; }
}

/* ============================================================
   Menu — tabbed categories
   ============================================================ */
.menu-tabs__bar {
  display:flex; flex-wrap:wrap; justify-content:center; gap:6px;
  border-bottom:1px solid var(--line); margin:0 auto 32px; padding-bottom:0;
}
.menu-tab {
  appearance:none; background:none; border:none; cursor:pointer;
  font-family:var(--font-display); font-weight:600; font-size:22px; line-height:1;
  color:var(--slate); padding:10px 20px 14px; position:relative;
  transition:color .18s ease;
}
.menu-tab:hover { color:var(--navy-deep); }
.menu-tab::after {
  content:''; position:absolute; left:14px; right:14px; bottom:-1px; height:3px;
  background:var(--gold); border-radius:3px 3px 0 0;
  transform:scaleX(0); transform-origin:center; transition:transform .2s ease;
}
.menu-tab.is-active { color:var(--navy-deep); }
.menu-tab.is-active::after { transform:scaleX(1); }

.menu-tabs__panel { animation:emme-fade .25s ease; }
.menu-tabs__panel[hidden] { display:none; }
.menu-tabs__vi { text-align:center; font-size:17px; margin:0 0 18px; }
@keyframes emme-fade { from { opacity:0; transform:translateY(6px); } to { opacity:1; transform:none; } }

@media (max-width:540px){
  .menu-tab { font-size:18px; padding:9px 14px 12px; }
  .menu-tabs__bar { gap:2px; }
}

/* ---- Menu page photographic hero header ---- */
.menu-hero {
  position:relative; border-radius:20px; overflow:hidden;
  background-size:cover; background-position:center;
  box-shadow:var(--shadow-lg); margin:0 0 28px;
  min-height:300px; display:flex; align-items:center; justify-content:center;
  text-align:center;
}
.menu-hero__inner { padding:56px 28px; max-width:760px; }
.menu-hero__title { color:#fff; font-size:clamp(44px,6vw,72px); margin-top:10px; }
.menu-hero__sub { color:rgba(255,255,255,.9); font-size:19px; margin-top:8px; }
@media (max-width:540px){ .menu-hero { min-height:230px; } .menu-hero__inner { padding:40px 20px; } }
