/* =============================================================================
 * MOJO 71 — STYLESHEET
 * =============================================================================
 * CONTENTS
 *   01  Design tokens
 *   02  Reset & base
 *   03  Typography & layout
 *   04  Buttons & chips
 *   05  Header, navigation, language switch
 *   06  Hero
 *   07  About
 *   08  Menu — filters, categories, product cards, glass artwork
 *   09  Google reviews
 *   11  Reservations & contact
 *   12  Cart drawer
 *   13  Footer
 *   14  Motion & reveal
 *   15  Responsive
 *   16  Reduced motion, print, forced colours
 * ========================================================================== */

/* =============================================================================
 * 01  DESIGN TOKENS
 * -----------------------------------------------------------------------------
 * Change the whole look from here. Two brand accents only — warm gold for
 * anything actionable, violet for atmosphere — so the per-drink card colours
 * stay the loudest thing on the page.
 * ========================================================================== */
:root {
  /* Surfaces */
  --ink:            #08070A;
  --ink-raised:     #0D0B11;
  --surface:        #141019;
  --surface-2:      #1B1622;
  --line:           rgba(242, 237, 228, 0.10);
  --line-strong:    rgba(242, 237, 228, 0.18);

  /* Text */
  --cream:          #F2EDE4;
  --cream-dim:      rgba(242, 237, 228, 0.74);
  --cream-faint:    rgba(242, 237, 228, 0.52);
  --cream-ghost:    rgba(242, 237, 228, 0.34);

  /* Brand accents */
  --gold:           #E0B45C;
  --gold-deep:      #C2913A;
  --violet:         #A96BE8;
  --magenta:        #E0499E;

  /* Feedback */
  --open:           #5FD08A;
  --closed:         #E0705F;

  /* Typography */
  --font-display: 'Manrope', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-body:    'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Rhythm */
  --container:      1240px;
  --gutter:         clamp(1.15rem, 4vw, 2.5rem);
  --section-y:      clamp(4.5rem, 10vw, 8.5rem);
  --radius:         18px;
  --radius-sm:      11px;
  --radius-lg:      26px;

  /* Depth */
  --shadow-sm:  0 2px 12px rgba(0, 0, 0, 0.35);
  --shadow-md:  0 14px 40px rgba(0, 0, 0, 0.45);
  --shadow-lg:  0 30px 80px rgba(0, 0, 0, 0.55);

  /* Motion */
  --ease:       cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --dur:        260ms;

  --header-h:   74px;
}

/* =============================================================================
 * 02  RESET & BASE
 * ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1.03rem);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

/* The [hidden] attribute is how JS shows and hides the cart badge, filtered
 * menu categories, field errors and the cart drawer. Any author `display` rule
 * would otherwise beat the browser default and leave them visible. */
[hidden] { display: none !important; }

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

ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: inherit; text-decoration: none; }

button, input, select, textarea {
  font: inherit;
  color: inherit;
  margin: 0;
}
button { background: none; border: 0; cursor: pointer; }

address { font-style: normal; }
blockquote { margin: 0; }

/* Consistent, always-visible focus ring */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
:focus:not(:focus-visible) { outline: none; }

::selection { background: var(--violet); color: #fff; }

.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -120%);
  z-index: 200;
  padding: 0.7rem 1.3rem;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  border-radius: 0 0 10px 10px;
  transition: transform var(--dur) var(--ease);
}
.skip-link:focus { transform: translate(-50%, 0); }

/* Sitewide film grain — adds depth without another image request */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* =============================================================================
 * 03  TYPOGRAPHY & LAYOUT
 * ========================================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  position: relative;
  z-index: 2;
  padding-block: var(--section-y);
  scroll-margin-top: calc(var(--header-h) + 8px);
}

.section__head {
  max-width: 62ch;
  margin-bottom: clamp(2.4rem, 5vw, 3.8rem);
}

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.section__eyebrow::before {
  content: '';
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.section__title {
  font-size: clamp(2rem, 1.4rem + 2.6vw, 3.5rem);
  margin-bottom: 0.7rem;
}

.section__blurb {
  color: var(--cream-dim);
  font-size: 1.03rem;
  max-width: 58ch;
}

/* Alternating section grounds keep the long page from flattening out */
.section--menu { background: linear-gradient(180deg, var(--ink) 0%, var(--ink-raised) 12%, var(--ink-raised) 88%, var(--ink) 100%); }
.section--reviews { background: var(--ink); }
.section--contact { background: linear-gradient(180deg, var(--ink) 0%, var(--ink-raised) 100%); }

/* =============================================================================
 * 04  BUTTONS & CHIPS
 * ========================================================================== */
.btn {
  --btn-bg: transparent;
  --btn-fg: var(--cream);
  --btn-border: var(--line-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.6rem;
  border: 1px solid var(--btn-border);
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: center;
  cursor: pointer;
  transition: transform var(--dur) var(--ease),
              background-color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              color var(--dur) var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  --btn-bg: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  --btn-fg: #17120A;
  --btn-border: transparent;
  box-shadow: 0 8px 26px rgba(224, 180, 92, 0.24);
}
.btn--primary:hover { box-shadow: 0 12px 34px rgba(224, 180, 92, 0.36); }

.btn--outline { --btn-border: var(--line-strong); }
.btn--outline:hover {
  --btn-bg: rgba(242, 237, 228, 0.07);
  --btn-border: var(--cream-ghost);
}

.btn--ghost {
  --btn-border: transparent;
  --btn-fg: var(--cream-dim);
  padding-inline: 1.1rem;
}
.btn--ghost:hover { --btn-fg: var(--cream); --btn-bg: rgba(242, 237, 228, 0.07); }

.btn--sm { padding: 0.55rem 1.05rem; font-size: 0.8rem; }
.btn--lg { padding: 1rem 2rem; font-size: 0.95rem; }
.btn--block { width: 100%; }

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.24rem 0.66rem;
  border: 1px solid color-mix(in srgb, var(--accent, var(--gold)) 34%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent, var(--gold)) 12%, transparent);
  color: color-mix(in srgb, var(--accent, var(--gold)) 76%, #fff);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  white-space: nowrap;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold);
  font-size: 0.87rem;
  font-weight: 600;
  transition: gap var(--dur) var(--ease);
}
.link-arrow:hover { gap: 0.7rem; }

.icon { flex: none; }

/* Star rating — partial fill so 4.8 reads as 4.8 */
.stars { display: inline-flex; gap: 2px; }
.star { display: inline-block; line-height: 0; }
.star svg { overflow: visible; }
.star__bg { fill: rgba(242, 237, 228, 0.18); }
.star__fg {
  fill: var(--gold);
  clip-path: inset(0 calc(100% - var(--star-fill, 100%)) 0 0);
}

/* =============================================================================
 * 05  HEADER, NAVIGATION, LANGUAGE SWITCH
 * ========================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background-color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              backdrop-filter var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-stuck {
  background: rgba(8, 7, 10, 0.82);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: var(--header-h);
}

/* --- Wordmark --- */
.brand { display: flex; flex-direction: column; gap: 1px; flex: none; }
.brand__mark {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.42rem;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--cream);
}
.brand__num {
  font-size: 0.62em;
  color: var(--gold);
  transform: translateY(-1px);
}
.brand__sub {
  font-size: 0.55rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream-ghost);
}
.brand:hover .brand__num { color: var(--violet); }
.brand__mark--lg { font-size: 2.1rem; }

/* --- Navigation --- */
.site-nav { margin-inline: auto; }
.site-nav__list { display: flex; align-items: center; gap: 0.35rem; }

.site-nav__link {
  position: relative;
  display: block;
  padding: 0.5rem 0.85rem;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--cream-dim);
  border-radius: 8px;
  transition: color var(--dur) var(--ease);
}
.site-nav__link::after {
  content: '';
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.25rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.site-nav__link:hover { color: var(--cream); }
.site-nav__link:hover::after,
.site-nav__link.is-current::after { transform: scaleX(1); }
.site-nav__link.is-current { color: var(--cream); }

.site-nav__mobile-only { display: none; }

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: none;
  margin-left: auto;
}

/* --- Language switch: deliberately small and quiet --- */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  padding: 0.38rem 0.68rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--cream-faint);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              background-color var(--dur) var(--ease);
}
.lang-toggle:hover {
  color: var(--cream);
  border-color: var(--cream-ghost);
  background: rgba(242, 237, 228, 0.06);
}
.lang-toggle__icon { opacity: 0.7; }
.lang-toggle__text { line-height: 1; }

/* --- Order trigger --- */
.cart-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.5rem 0.95rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--cream-dim);
  font-size: 0.82rem;
  font-weight: 600;
  transition: color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              background-color var(--dur) var(--ease);
}
.cart-trigger:hover { color: var(--cream); border-color: var(--cream-ghost); }
.cart-trigger.has-items {
  color: var(--gold);
  border-color: color-mix(in srgb, var(--gold) 45%, transparent);
  background: color-mix(in srgb, var(--gold) 10%, transparent);
}
.cart-trigger__count {
  min-width: 1.25rem;
  height: 1.25rem;
  display: grid;
  place-items: center;
  padding-inline: 0.3rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
}

/* --- Burger --- */
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 10px;
  flex-direction: column;
  justify-content: space-between;
}
.nav-toggle__bar {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--cream);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav-open .nav-toggle__bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-open .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle__bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* =============================================================================
 * 06  HERO
 * ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;  /* fallback for older mobile browsers */
  min-height: 100svh; /* ignores the phone's collapsing address bar */
  display: flex;
  align-items: flex-end;
  padding-block: calc(var(--header-h) + 3rem) clamp(3.5rem, 9vw, 7rem);
  overflow: hidden;
  isolation: isolate;
}

.hero__media { position: absolute; inset: 0; z-index: -2; }

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Shown instead of the video when site.js has no heroVideo. A very slow drift
 * keeps the opening frame from feeling like a dead screenshot. */
.hero__still { animation: hero-drift 32s ease-in-out infinite alternate; }
@keyframes hero-drift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to   { transform: scale(1.12) translate3d(-1.5%, -1.5%, 0); }
}

/* Layered scrim: dark at the bottom for text, a violet/gold wash for mood */
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 7, 10, 0.72) 0%, rgba(8, 7, 10, 0.22) 32%, rgba(8, 7, 10, 0.86) 82%, var(--ink) 100%),
    radial-gradient(90% 65% at 78% 18%, rgba(169, 107, 232, 0.24) 0%, transparent 62%),
    radial-gradient(70% 55% at 12% 88%, rgba(224, 180, 92, 0.16) 0%, transparent 60%);
}
.hero__grain { position: absolute; inset: 0; opacity: 0.5; }

.hero__inner { position: relative; z-index: 2; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
  padding: 0.34rem 0.85rem 0.34rem 0.6rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(8, 7, 10, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.hero__pin { color: var(--gold); display: flex; }

.hero__title {
  font-size: clamp(2.6rem, 1.2rem + 7vw, 6.4rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin-bottom: 1.3rem;
  max-width: 15ch;
}
.hero__title-line { display: block; }
.hero__title-line--accent {
  background: linear-gradient(100deg, var(--gold) 0%, #F3DCA8 42%, var(--violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__subtitle {
  max-width: 46ch;
  margin-bottom: 2rem;
  font-size: clamp(1rem, 0.94rem + 0.3vw, 1.15rem);
  color: var(--cream-dim);
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2.4rem; }

.hero__badges { display: flex; flex-wrap: wrap; gap: 0.6rem 1.6rem; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--cream-faint);
}
.hero__badge .icon { color: var(--gold); }

/* Video pause control, tucked out of the way */
.hero__video-toggle {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(3.5rem, 9vw, 7rem);
  z-index: 3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(8, 7, 10, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--cream-dim);
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.hero__video-toggle:hover { color: var(--cream); border-color: var(--cream-ghost); }

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%);
  z-index: 3;
  width: 26px;
  height: 44px;
  display: grid;
  place-items: center;
}
.hero__scroll-line {
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, transparent, var(--cream-ghost));
  animation: scroll-cue 2.4s var(--ease) infinite;
}
@keyframes scroll-cue {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  60%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* =============================================================================
 * 07  ABOUT
 * ========================================================================== */
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.about__media { position: relative; }
.about__figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.about__figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 900ms var(--ease-out);
}
.about__media:hover .about__figure img { transform: scale(1.04); }

/* Circular badge echoing the printed logo */
.about__badge {
  position: absolute;
  right: -14px;
  bottom: -18px;
  width: clamp(94px, 15vw, 128px);
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 1px;
  border-radius: 50%;
  background: var(--ink);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-md);
  font-family: var(--font-display);
}
.about__badge-word { font-size: 0.86rem; font-weight: 800; letter-spacing: 0.16em; }
.about__badge-num { font-size: 1.75rem; font-weight: 800; color: var(--gold); line-height: 1; }
.about__badge-sub {
  font-size: 0.48rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-ghost);
}

.about__lead {
  font-size: clamp(1.03rem, 0.96rem + 0.35vw, 1.2rem);
  color: var(--cream);
  margin-bottom: 1.1rem;
}
.about__text { color: var(--cream-dim); margin-bottom: 2rem; }

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-block: 1.6rem;
  border-block: 1px solid var(--line);
  margin-bottom: 1.8rem;
}
.stat { display: flex; flex-direction: column; gap: 0.25rem; }
.stat__value {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2.1rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat__label {
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: var(--cream-faint);
}

.about__quote {
  padding-left: 1.2rem;
  border-left: 2px solid var(--violet);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--cream-dim);
}

/* =============================================================================
 * 08  MENU
 * ========================================================================== */
/* --- Featured six / full-menu reveal -------------------------------------
 * The only new UI on the page. It adds no colours, no fonts and no new
 * components: the button is the existing .btn .btn--outline .btn--lg, and the
 * featured grid is the existing .card-grid holding the existing cards. Change
 * a token in section 01 and this follows automatically.
 *
 * The fold uses grid-template-rows 1fr <-> 0fr, which animates to and from a
 * content-sized height without JavaScript measuring anything. That matters
 * here: the full menu is ~10,000px tall, and no measured max-height approach
 * eases smoothly across that range.
 * ---------------------------------------------------------------------- */
/* --- Category groups -----------------------------------------------------
 * Five collapsible headings. No new colours, fonts or components: the heading
 * borrows .menu-category__head's rule and typography, and the panels hold the
 * existing category blocks untouched.
 *
 * Panel heights are animated from JavaScript. The CSS-only technique
 * (grid-template-rows 0fr -> 1fr) does not collapse the track in this engine,
 * verified by forcing it inline with min-height:0 and overflow:hidden, which
 * still measured the full content height.
 * ---------------------------------------------------------------------- */
.menu-groups { display: flex; flex-direction: column; }

.menu-group { border-bottom: 1px solid var(--line); }
.menu-group:first-child { border-top: 1px solid var(--line); }

.menu-group__head { margin: 0; }

.menu-group__btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.4rem);
  padding: clamp(1.15rem, 2.6vw, 1.7rem) 0;
  text-align: left;
  color: var(--cream);
}

.menu-group__name {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 1.1rem + 1.1vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.1;
  transition: color var(--dur) var(--ease);
}

.menu-group__meta {
  margin-left: auto;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-ghost);
  white-space: nowrap;
}

.menu-group__icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: none;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--cream-faint);
  transition: transform 420ms var(--ease-out),
              color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              background-color var(--dur) var(--ease);
}
.menu-group__btn:hover .menu-group__icon,
.menu-group__btn:focus-visible .menu-group__icon {
  color: var(--cream);
  border-color: var(--cream-ghost);
  background: rgba(242, 237, 228, 0.06);
}
.menu-group__btn:hover .menu-group__name { color: var(--gold); }

.menu-group.is-open .menu-group__name { color: var(--gold); }
.menu-group.is-open .menu-group__icon {
  transform: rotate(180deg);
  color: var(--gold);
  border-color: color-mix(in srgb, var(--gold) 45%, transparent);
  background: color-mix(in srgb, var(--gold) 10%, transparent);
}

/* Closed state is height 0 plus the clip — that alone hides the contents
 * completely, and menu.js also marks a closed panel `inert` so it stays out of
 * tab order and off screen readers.
 *
 * Deliberately no opacity/visibility layer here. An earlier version faded the
 * panel as well, and under prefers-reduced-motion the panel stayed at
 * opacity 0 / visibility hidden even with the open rule matching, so an open
 * category rendered blank for exactly those visitors. One mechanism, driven by
 * height alone, behaves identically whatever the motion setting. */
.menu-group__panel {
  height: 0;
  overflow: hidden;
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

/* Wrapper the height measurement reads. */
.menu-group__inner { padding-bottom: clamp(1.75rem, 4vw, 2.75rem); }

.menu-group__blurb {
  max-width: 60ch;
  margin: 0 0 clamp(1.25rem, 3vw, 1.9rem);
  font-size: 0.88rem;
  color: var(--cream-faint);
}

/* Inside a group the category heading is one level down, so the divider that
 * separated top-level categories is not needed. */
.menu-group .menu-category__head { border-bottom: 0; padding-bottom: 0.6rem; }
.menu-group .menu-category:first-child { margin-top: 0; }

.menu-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(2.2rem, 5vw, 3.4rem);
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line);
}

.filter {
  padding: 0.5rem 1.05rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--cream-faint);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  transition: color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              background-color var(--dur) var(--ease);
}
.filter:hover { color: var(--cream); border-color: var(--cream-ghost); }
.filter.is-active {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--ink);
}

.menu-category + .menu-category { margin-top: clamp(3rem, 7vw, 5rem); }

.menu-category__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 2.5rem;
  margin-bottom: 1.9rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
}
.menu-category__kicker {
  margin-bottom: 0.3rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--violet);
}
.menu-category__title {
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.15rem);
  letter-spacing: -0.015em;
}
.menu-category__blurb {
  flex: 1 1 24ch;
  max-width: 46ch;
  font-size: 0.88rem;
  color: var(--cream-faint);
  text-align: right;
}
.menu-category__note {
  margin-top: 1.4rem;
  font-size: 0.8rem;
  font-style: italic;
  color: var(--cream-ghost);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

/* --- Product card --------------------------------------------------------
 * --accent comes from the item in data/menu.js. Text uses a lightened mix of
 * it so even a deep colour (red wine, dark rum) stays legible on the card.
 * ---------------------------------------------------------------------- */
.card {
  --accent-text: color-mix(in srgb, var(--accent) 72%, #fff);
  --accent-soft: color-mix(in srgb, var(--accent) 14%, transparent);
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  transition: transform var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.card:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--accent) 36%, transparent);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5),
              0 0 0 1px color-mix(in srgb, var(--accent) 14%, transparent);
}
.card:hover::before { opacity: 1; }
.card:focus-within { border-color: color-mix(in srgb, var(--accent) 46%, transparent); }

.card__media {
  position: relative;
  display: grid;
  place-items: center;
  padding: 1.1rem 1.1rem 0.4rem;
  background:
    radial-gradient(70% 60% at 50% 42%, var(--accent-soft) 0%, transparent 70%),
    linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
}

.glass-art {
  width: clamp(96px, 30%, 124px);
  height: auto;
  filter: drop-shadow(0 6px 18px color-mix(in srgb, var(--accent) 30%, transparent));
  transition: transform 520ms var(--ease-out);
}
.card:hover .glass-art { transform: translateY(-4px) scale(1.045); }

.card__photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-sm);
  transition: transform 620ms var(--ease-out);
}
.card:hover .card__photo { transform: scale(1.05); }

.card__price {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  margin: 0;
  padding: 0.28rem 0.68rem;
  border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
  border-radius: 999px;
  background: rgba(8, 7, 10, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--accent-text);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.card__body { flex: 1; padding: 0.9rem 1.15rem 0.4rem; }

.card__name {
  font-size: 1.06rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
}

.card__desc {
  font-size: 0.855rem;
  line-height: 1.55;
  color: var(--cream-dim);
  margin-bottom: 0.85rem;
}

.card__ingredients { margin-bottom: 0.8rem; }
.card__ingredients-label {
  margin-bottom: 0.32rem;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--cream-ghost);
}
.card__ingredients-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 0.5rem;
  font-size: 0.79rem;
  color: var(--accent-text);
}
.card__ingredients-list li { display: inline-flex; align-items: center; }
.card__ingredients-list li:not(:last-child)::after {
  content: '·';
  margin-left: 0.5rem;
  color: var(--cream-ghost);
}
/* Long spirit label lists stay compact and scroll inside the card. The mask
 * fades the last line out so it reads as "there is more", not as a clipped list. */
.card__ingredients-list.is-long {
  font-size: 0.735rem;
  color: var(--cream-faint);
  max-height: 5.4rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--line-strong) transparent;
  padding-right: 0.3rem;
  -webkit-mask-image: linear-gradient(180deg, #000 74%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 74%, transparent 100%);
}
.card__ingredients-list.is-long::-webkit-scrollbar { width: 4px; }
.card__ingredients-list.is-long::-webkit-scrollbar-thumb {
  background: var(--line-strong);
  border-radius: 4px;
}

.card__tags { display: flex; flex-wrap: wrap; gap: 0.35rem; }

.card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.9rem 1.15rem 1.15rem;
  margin-top: auto;
}
.card__volume {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--cream-ghost);
  white-space: nowrap;
}

.btn--accent {
  --btn-bg: color-mix(in srgb, var(--accent) 15%, transparent);
  --btn-fg: var(--accent-text);
  --btn-border: color-mix(in srgb, var(--accent) 38%, transparent);
  position: relative;
  margin-left: auto;
  padding: 0.55rem 1.05rem;
  font-size: 0.8rem;
  overflow: hidden;
}
.btn--accent:hover {
  --btn-bg: color-mix(in srgb, var(--accent) 26%, transparent);
  --btn-border: color-mix(in srgb, var(--accent) 60%, transparent);
}

/* Momentary "Added" confirmation */
.card__add-done {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background: color-mix(in srgb, var(--accent) 24%, var(--surface));
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 180ms var(--ease), transform 180ms var(--ease);
}
.card__add-text { transition: opacity 180ms var(--ease); }
.card__add.is-added .card__add-done { opacity: 1; transform: translateY(0); }
.card__add.is-added .card__add-text { opacity: 0; }

.menu-allergens {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: clamp(2.4rem, 5vw, 3.6rem);
  padding: 1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(242, 237, 228, 0.03);
  font-size: 0.82rem;
  color: var(--cream-faint);
}
.menu-allergens .icon { color: var(--gold); margin-top: 2px; }

/* --- Glass artwork -------------------------------------------------------
 * Two layers: everything inside the glass is clipped to its silhouette, while
 * garnishes sit on top unclipped. Garnish shapes inherit `color` from the
 * drink's accent, set inline by glassArt.js.
 * ---------------------------------------------------------------------- */
.ga-glass {
  fill: rgba(242, 237, 228, 0.035);
  stroke: rgba(242, 237, 228, 0.5);
  stroke-width: 2;
  stroke-linejoin: round;
}
.ga-line { fill: none; stroke: rgba(242, 237, 228, 0.55); stroke-width: 2; stroke-linecap: round; }
.ga-line-thin { fill: none; stroke: rgba(242, 237, 228, 0.45); stroke-width: 1.4; stroke-linecap: round; }
.ga-line-faint { fill: none; stroke: rgba(255, 255, 255, 0.28); stroke-width: 2; stroke-linecap: round; }
.ga-line-solid { fill: none; stroke: rgba(242, 237, 228, 0.5); stroke-width: 2; stroke-linecap: round; }

.ga-ice { fill: rgba(255, 255, 255, 0.22); stroke: rgba(255, 255, 255, 0.34); stroke-width: 1.5; }
.ga-bubble { fill: rgba(255, 255, 255, 0.42); }
.ga-foam { fill: rgba(255, 253, 245, 0.82); }
.ga-label { fill: rgba(8, 7, 10, 0.32); }
.ga-topping { fill: rgba(255, 255, 255, 0.34); stroke: rgba(255, 255, 255, 0.22); stroke-width: 1; }

/* Garnishes — tinted by the drink's own accent via currentColor */
.ga-garnish {
  fill: currentColor;
  fill-opacity: 0.85;
  stroke: rgba(242, 237, 228, 0.55);
  stroke-width: 1.6;
}
.ga-leaf {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  opacity: 0.9;
}
.ga-cap { fill: currentColor; fill-opacity: 0.8; stroke: rgba(242, 237, 228, 0.5); stroke-width: 1.6; }

/* =============================================================================
 * 08b  HOVER "MIXING" SEQUENCE  (3s, hover only, never autoplays)
 * -----------------------------------------------------------------------------
 * Ice drops in -> spirit pours -> mixer splash -> garnish lands.
 *
 * No new assets: this animates the same SVG the card already draws, so the
 * accent colour, stroke weights and palette match by construction.
 *
 * CONTAINMENT — three independent guarantees, none of which touch layout:
 *   1. `.card` is already `overflow: hidden`.
 *   2. An inline <svg> gets `overflow: hidden` from the UA stylesheet; it is
 *      restated below so it survives any future reset.
 *   3. Every moving element except the pour stream lives inside the glass
 *      `clip-path`, so it is clipped to the glass silhouette itself.
 * Only `transform` and `opacity` animate — both compositor-only, so nothing
 * reflows, resizes or shifts the grid.
 * ========================================================================== */

.glass-art { overflow: hidden; }

/* Resting state. The card looks exactly as it did before the pointer arrives. */
.ga-fx-ice, .ga-fx-drop, .ga-fx-bub, .ga-fx-pour { opacity: 0; }

.ga-fx-ice {
  fill: rgba(255, 255, 255, 0.2);
  stroke: rgba(255, 255, 255, 0.34);
  stroke-width: 1.5;            /* matches .ga-ice */
}
.ga-fx-drop, .ga-fx-bub { fill: rgba(255, 255, 255, 0.45); }
.ga-fx-pour {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  opacity: 0;
}

/* Rotation and scale need a box to work from — SVG defaults to the viewBox
 * origin, which would swing elements off-centre. */
.ga-fx-ice, .ga-fx-drop, .ga-fx-bub, .ga-outer {
  transform-box: fill-box;
  transform-origin: center;
}
.ga-fx-pour { transform-box: fill-box; transform-origin: top center; }

/* Eases everything back when the pointer leaves mid-sequence, instead of
 * snapping. While the animation runs it wins over the transition. */
.ga-liquid, .ga-inner, .ga-outer, .ga-glow,
.ga-fx-ice, .ga-fx-drop, .ga-fx-bub, .ga-fx-pour {
  transition: opacity 260ms var(--ease), transform 260ms var(--ease);
}

/* --- The sequence. `is-mixing` is added on mouseenter, removed on mouseleave --- */
.card.is-mixing .ga-liquid  { animation: ga-fill    3s var(--ease-out) both; }
.card.is-mixing .ga-inner   { animation: ga-inner   3s linear both; }
.card.is-mixing .ga-outer   { animation: ga-garnish 3s var(--ease-out) both; }
.card.is-mixing .ga-glow    { animation: ga-glow    3s ease-in-out both; }
.card.is-mixing .ga-fx-pour { animation: ga-pour    3s var(--ease-out) both; }
.card.is-mixing .ga-fx-drop { animation: ga-splash  3s var(--ease-out) both; }

/* Two cubes and three bubbles are staggered by shortening the duration and
 * adding an equal delay, so every track still finishes exactly on 3s. */
.card.is-mixing .ga-fx-ice--a { animation: ga-ice 3.00s var(--ease-out) 0s both; }
.card.is-mixing .ga-fx-ice--b { animation: ga-ice 2.82s var(--ease-out) .18s both; }
.card.is-mixing .ga-fx-bub--a { animation: ga-bubble 3.00s linear 0s both; }
.card.is-mixing .ga-fx-bub--b { animation: ga-bubble 2.86s linear .14s both; }
.card.is-mixing .ga-fx-bub--c { animation: ga-bubble 2.72s linear .28s both; }

/* Phase 1 · 0.00–0.90s  ice          Phase 2 · 0.51–1.65s  pour + fill
 * Phase 3 · 1.47–2.76s  splash       Phase 4 · 2.10–2.82s  garnish          */

@keyframes ga-fill {
  0%, 18%   { transform: translateY(115px); }   /* glass empty */
  52%       { transform: translateY(0); }       /* filled */
  57%       { transform: translateY(-2.5px); }  /* splash kick */
  63%, 100% { transform: translateY(0); }
}

@keyframes ga-pour {
  0%, 17%   { opacity: 0; transform: scaleY(0); }
  21%       { opacity: 1; transform: scaleY(.18); }
  29%, 48%  { opacity: 1; transform: scaleY(1); }
  55%, 100% { opacity: 0; transform: scaleY(1); }
}

@keyframes ga-ice {
  0%, 4%    { opacity: 0; transform: translateY(-32px) rotate(-24deg); }
  9%        { opacity: 1; transform: translateY(-18px) rotate(-18deg); }
  21%       { transform: translateY(0) rotate(-8deg); }
  25%       { transform: translateY(-2px) rotate(-11deg); }  /* settle bounce */
  30%, 100% { opacity: 1; transform: translateY(0) rotate(-9deg); }
}

@keyframes ga-splash {
  0%, 49%   { opacity: 0; transform: translateY(5px) scale(.35); }
  54%       { opacity: .95; transform: translateY(-5px) scale(1); }
  64%, 100% { opacity: 0; transform: translateY(-13px) scale(.6); }
}

@keyframes ga-bubble {
  0%, 56%   { opacity: 0; transform: translateY(0) scale(.6); }
  62%       { opacity: .75; transform: translateY(-8px) scale(1); }
  84%       { opacity: .5; transform: translateY(-22px) scale(1); }
  92%, 100% { opacity: 0; transform: translateY(-28px) scale(.7); }
}

@keyframes ga-garnish {
  0%, 72%   { opacity: 0; transform: translateY(-9px) scale(.55) rotate(-14deg); }
  86%       { opacity: 1; transform: translateY(0) scale(1.06) rotate(2deg); }
  94%, 100% { opacity: 1; transform: translateY(0) scale(1) rotate(0deg); }
}

@keyframes ga-inner {
  0%, 70%   { opacity: 0; }
  88%, 100% { opacity: 1; }
}

@keyframes ga-glow {
  0%, 40%   { opacity: .55; }
  60%       { opacity: 1; }
  78%       { opacity: .8; }
  90%, 100% { opacity: 1; }
}
.ga-chip {
  fill: currentColor;
  fill-opacity: 0.55;
  stroke: rgba(242, 237, 228, 0.6);
  stroke-width: 1.8;
  stroke-linejoin: round;
}

/* =============================================================================
 * 09  GOOGLE REVIEWS
 * ========================================================================== */
.reviews__layout {
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.reviews__summary {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  padding: 1.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--surface-2) 0%, var(--surface) 100%);
  text-align: center;
}
.reviews__google { display: inline-flex; margin-bottom: 0.9rem; }
.reviews__score {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.3rem;
  margin-bottom: 0.5rem;
}
.reviews__score-value {
  font-family: var(--font-display);
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 1;
  color: var(--cream);
}
.reviews__score-max { font-size: 0.92rem; color: var(--cream-ghost); }
.reviews__count {
  margin-top: 0.7rem;
  font-size: 0.8rem;
  color: var(--cream-faint);
}
.reviews__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.3rem;
}

.reviews__notice {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 1.3rem;
  padding: 0.85rem 0.95rem;
  border: 1px dashed color-mix(in srgb, var(--gold) 40%, transparent);
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--gold) 7%, transparent);
  font-size: 0.73rem;
  line-height: 1.5;
  text-align: left;
  color: var(--cream-faint);
}
.reviews__notice strong {
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.reviews__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
  gap: clamp(0.9rem, 2vw, 1.35rem);
}

.review {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.review:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
}

.review__head { display: flex; align-items: center; gap: 0.75rem; }

.review__avatar {
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 50%;
  object-fit: cover;
}
.review__avatar--initials {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--violet) 0%, var(--magenta) 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.87rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.review__who { min-width: 0; flex: 1; }
.review__name {
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review__meta { margin: 0; font-size: 0.73rem; color: var(--cream-ghost); }
.review__source { display: flex; flex: none; opacity: 0.85; }

.review__text {
  font-size: 0.875rem;
  line-height: 1.62;
  color: var(--cream-dim);
}
.review__text p { margin: 0; }

/* =============================================================================
 * 11  RESERVATIONS & CONTACT
 * ========================================================================== */
/* Booking form on top, then the "find us" band: address / hours / phone on the
 * left with the map beside them. DOM order matches visual order, so keyboard
 * tabbing follows the page. */
.contact__grid {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
}

.contact__locate {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1rem, 2.5vw, 1.75rem);
  align-items: stretch;
}

.booking {
  /* The form now spans the full grid width, so cap it at a comfortable
   * reading measure rather than stretching inputs across the whole page. */
  max-width: 940px;
  margin-inline: auto;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(165deg, var(--surface-2) 0%, var(--surface) 100%);
}
.booking__legend {
  font-size: 1.2rem;
  margin-bottom: 1.4rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
}

.field { margin-bottom: 1rem; min-width: 0; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field-row--three { grid-template-columns: repeat(3, 1fr); }

.field__label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-faint);
}
.field__req { color: var(--gold); }

.field__input {
  width: 100%;
  padding: 0.72rem 0.9rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: rgba(8, 7, 10, 0.55);
  color: var(--cream);
  font-size: 0.92rem;
  transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.field__input::placeholder { color: var(--cream-ghost); }
.field__input:hover { border-color: var(--cream-ghost); }
.field__input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(8, 7, 10, 0.8);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--gold) 18%, transparent);
}
.field__input--area { resize: vertical; min-height: 84px; }
.field__input.has-error { border-color: var(--closed); }

/* Native pickers render dark rather than white-on-white */
.field__input[type="date"],
.field__input[type="time"] { color-scheme: dark; }
select.field__input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23F2EDE4' stroke-width='2' stroke-linecap='round' opacity='0.6'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.2rem;
}
select.field__input option { background: var(--surface-2); color: var(--cream); }

.field__error {
  margin: 0.35rem 0 0;
  font-size: 0.76rem;
  color: var(--closed);
}

.booking__disclaimer {
  margin-top: 0.9rem;
  font-size: 0.74rem;
  line-height: 1.5;
  color: var(--cream-ghost);
  text-align: center;
}
.booking__success {
  margin-top: 0.9rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid color-mix(in srgb, var(--open) 40%, transparent);
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--open) 10%, transparent);
  font-size: 0.83rem;
  color: var(--open);
  text-align: center;
}

.contact__details { display: flex; flex-direction: column; gap: 1rem; }

.info-card {
  padding: 1.35rem 1.45rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.info-card__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.9rem;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.info-card__title .icon { color: var(--gold); }
.info-card__address { color: var(--cream-dim); font-size: 0.92rem; margin-bottom: 0.8rem; line-height: 1.7; }

.status {
  margin-left: auto;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.status--open { background: color-mix(in srgb, var(--open) 16%, transparent); color: var(--open); }
.status--closed { background: color-mix(in srgb, var(--closed) 16%, transparent); color: var(--closed); }

.hours { font-size: 0.87rem; }
.hours__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.42rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--cream-dim);
}
.hours__row:last-child { border-bottom: 0; }
.hours__row.is-today {
  color: var(--cream);
  font-weight: 600;
}
.hours__row.is-today .hours__day::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 0.5rem;
  border-radius: 50%;
  background: var(--gold);
  vertical-align: middle;
}
.hours__row.is-closed { color: var(--cream-ghost); }
.hours__time { font-variant-numeric: tabular-nums; white-space: nowrap; }

.contact-list { display: flex; flex-direction: column; gap: 0.6rem; font-size: 0.9rem; }
.contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--cream-dim);
  transition: color var(--dur) var(--ease);
}
.contact-list a:hover { color: var(--gold); }
.contact-list .icon { color: var(--cream-ghost); }

/* The map fills its grid cell, matching the height of the info column beside
 * it, and never drops below a usable height on narrow screens. */
.map {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  min-height: clamp(300px, 42vw, 460px);
}
.map__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  /* Left in Google's own colours: this is a real listing, and inverting the
   * tiles would recolour the pin and Google's branding. A slight knock-back
   * settles it into the dark page without misrepresenting it. */
  filter: saturate(0.88) brightness(0.94) contrast(1.04);
  opacity: 0;
  transition: opacity 400ms var(--ease);
}
.map__frame.is-loaded { opacity: 1; }

/* Sits behind the embed; visible only while it loads, or if it is blocked. */
.map__fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 0.75rem;
  padding: 1.75rem;
  text-align: center;
}
.map__fallback-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
}
.map__fallback-address {
  font-size: 0.87rem;
  line-height: 1.6;
  color: var(--cream-faint);
}

/* =============================================================================
 * 12  CART DRAWER
 * ========================================================================== */
.cart { position: fixed; inset: 0; z-index: 140; }
.cart[hidden] { display: none; }

.cart__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 3, 6, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.cart.is-open .cart__backdrop { opacity: 1; }

.cart__panel {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(420px, 100%);
  display: flex;
  flex-direction: column;
  background: var(--ink-raised);
  border-left: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  transform: translateX(100%);
  transition: transform 320ms var(--ease-out);
}
.cart.is-open .cart__panel { transform: translateX(0); }

.cart__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  border-bottom: 1px solid var(--line);
}
.cart__title { font-size: 1.15rem; }
.cart__close {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--cream-faint);
  transition: color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.cart__close:hover { color: var(--cream); background: rgba(242, 237, 228, 0.08); }

.cart__body { flex: 1; overflow-y: auto; padding: 0.6rem 1.4rem; }

.cart__empty { padding: 3.5rem 0; text-align: center; }
.cart__empty-title { font-weight: 600; margin-bottom: 0.3rem; }
.cart__empty-hint { font-size: 0.85rem; color: var(--cream-ghost); }

.cart__lines { display: flex; flex-direction: column; }

.cart-line {
  display: grid;
  grid-template-columns: 3px minmax(0, 1fr) auto auto auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
}
.cart-line__swatch {
  align-self: stretch;
  border-radius: 3px;
  background: var(--accent);
}
.cart-line__info { min-width: 0; }
.cart-line__name {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cart-line__unit { margin: 0; font-size: 0.75rem; color: var(--cream-ghost); }

.cart-line__qty {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0.15rem;
}
.cart-line__qty button {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: var(--cream-faint);
  transition: color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.cart-line__qty button:hover { color: var(--cream); background: rgba(242, 237, 228, 0.1); }
.cart-line__count {
  min-width: 1.4rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.cart-line__total {
  margin: 0;
  min-width: 4.2rem;
  text-align: right;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.cart-line__remove {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--cream-ghost);
  transition: color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.cart-line__remove:hover { color: var(--closed); background: color-mix(in srgb, var(--closed) 14%, transparent); }

.cart__foot { padding: 1.1rem 1.4rem 1.4rem; border-top: 1px solid var(--line); }
.cart__foot:empty { display: none; }
.cart__total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.9rem;
  font-size: 0.88rem;
  color: var(--cream-faint);
}
.cart__total strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--cream);
  font-variant-numeric: tabular-nums;
}
.cart__clear {
  display: block;
  width: 100%;
  margin-top: 0.6rem;
  padding: 0.5rem;
  font-size: 0.78rem;
  color: var(--cream-ghost);
  transition: color var(--dur) var(--ease);
}
.cart__clear:hover { color: var(--closed); }
.cart__disclaimer {
  margin: 0.8rem 0 0;
  font-size: 0.72rem;
  line-height: 1.5;
  text-align: center;
  color: var(--cream-ghost);
}

/* =============================================================================
 * 13  FOOTER
 * ========================================================================== */
.site-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  background: var(--ink);
  padding-top: clamp(3rem, 6vw, 4.5rem);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: clamp(1.8rem, 4vw, 3rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.site-footer__tagline { margin: 0.7rem 0 0.3rem; font-size: 0.9rem; color: var(--cream-dim); }
.site-footer__motto {
  font-size: 0.78rem;
  font-style: italic;
  color: var(--cream-ghost);
  margin-bottom: 1.2rem;
}

.socials { display: flex; gap: 0.5rem; }
.socials__link {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--cream-faint);
  transition: color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              background-color var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
.socials__link:hover {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.site-footer__heading {
  margin-bottom: 0.95rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--gold);
}
.site-footer__list { display: flex; flex-direction: column; gap: 0.55rem; font-size: 0.87rem; }
.site-footer__list a, .site-footer__list address {
  color: var(--cream-dim);
  transition: color var(--dur) var(--ease);
}
.site-footer__list a:hover { color: var(--cream); }
.site-footer__list--fine { font-size: 0.72rem; line-height: 1.55; color: var(--cream-ghost); }
.site-footer__list--fine li { color: var(--cream-ghost); }

.site-footer__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem 1.5rem;
  padding-block: 1.3rem;
  border-top: 1px solid var(--line);
  font-size: 0.76rem;
  color: var(--cream-ghost);
}
.site-footer__bar p { margin: 0; }
.site-footer__responsibly { letter-spacing: 0.04em; }
.site-footer__top {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--cream-faint);
  transition: color var(--dur) var(--ease);
}
.site-footer__top:hover { color: var(--gold); }

/* =============================================================================
 * 14  MOTION & REVEAL
 * ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }

/* Stagger cards and tiles so a grid arrives in a wave rather than all at once */
.card-grid > *:nth-child(2),  .reviews__list > *:nth-child(2)  { transition-delay: 60ms; }
.card-grid > *:nth-child(3),  .reviews__list > *:nth-child(3)  { transition-delay: 120ms; }
.card-grid > *:nth-child(4),  .reviews__list > *:nth-child(4)  { transition-delay: 180ms; }
.card-grid > *:nth-child(n+5), .reviews__list > *:nth-child(n+5) { transition-delay: 220ms; }

/* =============================================================================
 * 15  RESPONSIVE
 * ========================================================================== */

/* --- Laptop --- */
@media (max-width: 1080px) {
  .reviews__layout { grid-template-columns: 1fr; }
  .reviews__summary { position: static; }
  .reviews__actions { flex-direction: row; justify-content: center; flex-wrap: wrap; }
}

/* --- Tablet --- */
@media (max-width: 960px) {
  .site-header__book { display: none; }
  .cart-trigger__label { display: none; }
  .cart-trigger { padding: 0.5rem 0.6rem; }
  .nav-toggle { display: flex; }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    margin: 0;
    padding: 1rem var(--gutter) 1.6rem;
    background: rgba(8, 7, 10, 0.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--dur) var(--ease),
                opacity var(--dur) var(--ease),
                visibility var(--dur) var(--ease);
  }
  .nav-open .site-nav { transform: translateY(0); opacity: 1; visibility: visible; }

  .site-nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav__link {
    padding: 0.85rem 0.2rem;
    font-size: 1.02rem;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }
  .site-nav__link::after { display: none; }
  .site-nav__mobile-only { display: block; margin-top: 1.1rem; }

  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 460px; }
  .about__figure img { aspect-ratio: 3 / 2; }

  /* Map drops below the address / hours / phone column */
  .contact__locate { grid-template-columns: 1fr; }

  .menu-category__blurb { text-align: left; flex-basis: 100%; }

  .site-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer__brand { grid-column: 1 / -1; }
}

/* --- Large phone --- */
@media (max-width: 640px) {
  :root { --header-h: 64px; }

  .hero { min-height: 92svh; align-items: flex-end; }
  .hero__title { max-width: 100%; }
  .hero__actions { gap: 0.6rem; }
  .hero__actions .btn { flex: 1 1 auto; }
  .hero__video-toggle { width: 38px; height: 38px; bottom: auto; top: calc(var(--header-h) + 0.75rem); }
  .hero__scroll { display: none; }

  .about__stats { grid-template-columns: 1fr; gap: 0.9rem; padding-block: 1.2rem; }
  .stat { flex-direction: row; align-items: baseline; gap: 0.6rem; }

  .card-grid { grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr)); }


  .field-row, .field-row--three { grid-template-columns: 1fr; gap: 0; }

  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__bar { justify-content: center; text-align: center; }
}

/* --- Small phone --- */
@media (max-width: 400px) {
  .brand__sub { display: none; }
  .menu-filters { gap: 0.4rem; }
  .filter { padding: 0.45rem 0.85rem; font-size: 0.78rem; }
  .cart-line { grid-template-columns: 3px minmax(0, 1fr) auto; row-gap: 0.5rem; }
  .cart-line__total { grid-column: 2; text-align: left; }
  .cart-line__remove { grid-column: 3; }
}

/* --- Very wide --- */
@media (min-width: 1600px) {
  :root { --container: 1360px; }
}

/* =============================================================================
 * 16  REDUCED MOTION, PRINT, FORCED COLOURS
 * ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .card:hover, .review:hover, .btn:hover { transform: none; }
}

@media (forced-colors: active) {
  .card, .review, .info-card, .booking { border: 1px solid CanvasText; }
  .btn { border: 1px solid CanvasText; }
}

@media print {
  body::after, .site-header, .hero__media, .hero__video-toggle, .hero__scroll,
  .cart, .map, .site-footer__top { display: none !important; }
  body { background: #fff; color: #111; }
  .card, .review, .info-card { break-inside: avoid; border-color: #ccc; }
  .section { padding-block: 1.5rem; }
}
