/* ============================================================
   AURORA'S EXPERIENCE · Luxury Indian Fusion Dining
   Global stylesheet
   ============================================================ */

/* ---------- Fonts ---------- */
/* Loaded from Google Fonts in the page <head> · Libre Baskerville + Red Hat Display */

/* ---------- Design tokens ---------- */
:root {
  /* Palette */
  --c-charcoal: #2a2625;
  --c-black: #1d1a19;
  --c-ivory: #f1f2eb;
  --c-gold: #e2c66c;
  --c-gold-soft: #ecd590;
  --c-bronze: #a88842;
  --c-navy: #223762;
  --c-navy-deep: #18294a;
  --c-burgundy: #223762;   /* mapped to navy for legacy variable references */
  --c-emerald: #18294a;    /* mapped to deeper navy for legacy variable references */
  --c-grey: #b8ada0;
  --c-line: rgba(226, 198, 108, 0.24);
  --c-line-soft: rgba(241, 242, 235, 0.08);
  --c-surface: #25211f;
  --c-surface-2: #322d2b;

  /* Type · Libre Baskerville on headings, Red Hat Display on body / UI. */
  --f-serif: "Libre Baskerville", "Playfair Display", Georgia, "Times New Roman", serif;
  --f-sans: "Red Hat Display", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Spacing */
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --section-y: clamp(60px, 7vw, 120px);

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.2, 0.65, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  /* Clip stops any element from causing a horizontal scrollbar without
     turning html into a scroll container (which breaks sticky positioning). */
  overflow-x: clip;
  overscroll-behavior-x: contain;
}
body {
  margin: 0;
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-ivory);
  background: var(--c-black);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  width: 100%;
  max-width: 100vw;
  word-wrap: break-word;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--f-serif);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.16;
  margin: 0;
  color: var(--c-ivory);
}
h1 { font-size: clamp(2.4rem, 6vw, 4.8rem); line-height: 1.1; }
h2 { font-size: clamp(1.85rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.3vw, 1.8rem); }
h4 { font-size: 1.1rem; letter-spacing: 0.03em; }
p  { margin: 0 0 1em; color: rgba(241, 242, 235, 0.78); }

.eyebrow {
  display: inline-block;
  font-family: var(--f-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 1.4rem;
}
.eyebrow.centred { /* legacy hook · retained for templating consistency */ }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
section { position: relative; padding: var(--section-y) 0; }
.section-hd { max-width: 720px; margin: 0 auto clamp(40px, 6vw, 80px); text-align: center; }
.section-hd.left { margin-left: 0; text-align: left; }

/* ---------- Header / Navigation ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 18px 0;
  background: rgba(15, 13, 12, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--c-line-soft);
  transition: background-color 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s var(--ease);
}
.site-header.scrolled {
  background: rgba(8, 7, 6, 0.94);
  padding: 12px 0;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  font-family: var(--f-serif);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--c-ivory);
  line-height: 1;
}
.brand-logo {
  display: block;
  height: 42px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}
.site-header.scrolled .brand-logo { height: 36px; }
@media (max-width: 820px) { .brand-logo { height: 34px; } }
.brand-mark {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: radial-gradient(circle at 30% 30%, var(--c-gold), var(--c-bronze) 70%);
  color: var(--c-black);
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 0 0 1px rgba(226, 198, 108, 0.4), 0 12px 30px rgba(226, 198, 108, 0.18);
}
.brand small {
  display: block;
  font-family: var(--f-sans);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(241, 242, 235, 0.78);
  transition: color 0.3s var(--ease);
  position: relative;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--c-gold); }
.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--c-gold);
}

.nav-cta { display: flex; align-items: center; gap: 14px; }

/* Hidden by default · only shown inside the mobile dropdown when it opens */
.nav-mobile-cta { display: none; }

/* Mobile-only tap-to-call between logo and hamburger */
.nav-phone {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: var(--c-gold);
  font-family: var(--f-sans);
  padding: 6px 14px;
  border: 1px solid var(--c-line);
  border-radius: 14px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), background 0.3s var(--ease);
}
.nav-phone:hover, .nav-phone:focus-visible {
  border-color: var(--c-gold);
  background: rgba(226, 198, 108, 0.08);
}
.nav-phone-small {
  font-size: 0.52rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.8;
  line-height: 1;
}
.nav-phone-label {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  font-weight: 600;
  line-height: 1.1;
}
@media (max-width: 820px) {
  .nav-phone { display: inline-flex; margin-left: auto; }
  .nav { gap: 14px; }
  .nav-cta { margin-left: 0; }
}
@media (max-width: 420px) {
  .nav-phone-label { font-size: 0.74rem; }
  .nav-phone-small { font-size: 0.5rem; }
  .nav-phone { padding: 5px 10px; }
}

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--c-line);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  position: relative;
  display: block;
  width: 18px; height: 1px;
  background: var(--c-ivory);
  transition: transform 0.3s var(--ease);
}
.nav-toggle span::before, .nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px; height: 1px;
  background: var(--c-ivory);
  transition: transform 0.3s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 22px;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid var(--c-gold);
  background: transparent;
  color: var(--c-gold);
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  min-height: 42px;
  white-space: nowrap;
}
.btn:hover {
  background: rgba(226, 198, 108, 0.10);
  color: var(--c-gold-soft);
  border-color: var(--c-gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -18px rgba(226, 198, 108, 0.35);
}
/* Secondary · slightly muted outline that promotes to full gold on hover */
.btn-ghost {
  color: var(--c-ivory);
  border-color: var(--c-line);
}
.btn-ghost:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
  background: rgba(226, 198, 108, 0.05);
}
.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-gold);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--c-line);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), gap 0.3s var(--ease);
}
.btn-text::after { content: "→"; font-size: 1rem; }
.btn-text:hover { color: var(--c-gold-soft); border-color: var(--c-gold); gap: 18px; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.btn-row.centred { justify-content: center; }

/* ---------- Store badges ---------- */
.store-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  border-radius: 12px;
  background: var(--c-surface);
  color: var(--c-ivory);
  min-height: 54px;
  border: 1px solid var(--c-line-soft);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.store-badge:hover {
  transform: translateY(-2px);
  border-color: var(--c-gold);
  background: var(--c-surface-2);
  box-shadow: 0 14px 32px -16px rgba(226, 198, 108, 0.35);
}
.store-badge svg { width: 24px; height: 24px; flex-shrink: 0; color: var(--c-gold); }
.store-badge-text { display: flex; flex-direction: column; line-height: 1.1; text-align: left; color: var(--c-ivory); }
.store-badge-text small {
  font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.7; color: var(--c-ivory);
}
.store-badge-text strong {
  font-family: var(--f-serif);
  font-size: 1rem; font-weight: 400; letter-spacing: 0.02em; color: var(--c-ivory);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(34, 55, 98, 0.55), transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(226, 198, 108, 0.18), transparent 55%),
    linear-gradient(180deg, rgba(29,26,25,0.7) 0%, rgba(29,26,25,0.65) 40%, rgba(29,26,25,0.95) 100%),
    rgba(0, 0, 0, 0.2);
  z-index: 2;
}

/* Minimal hero · let the photography lead, only a soft bottom vignette so the
   CTAs and headline stay readable. Drops the heavy overlay from .hero-bg::before */
.hero.hero-minimal .hero-bg::before {
  background:
    linear-gradient(180deg,
      rgba(29,26,25,0.4) 0%,
      rgba(29,26,25,0.3) 35%,
      rgba(29,26,25,0.65) 80%,
      rgba(29,26,25,0.9) 100%),
    rgba(0, 0, 0, 0.15);
}
.hero.hero-minimal { justify-content: center; }
.hero.hero-minimal .hero-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.hero.hero-minimal h1 {
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.75),
    0 6px 24px rgba(0, 0, 0, 0.6),
    0 14px 60px rgba(0, 0, 0, 0.5);
  margin: 0 auto;
  max-width: 22ch;
  text-align: center;
}

/* Word-by-word fade for the hero headline */
.hero-words .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(22px);
  filter: blur(6px);
  animation: word-in 1.1s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}
.hero-words .word + .word { margin-left: 0.28em; }
.hero-words br + .word { margin-left: 0; }
.hero-words em {
  font-style: normal;
  font-weight: 400;
  color: var(--c-gold);
}
@keyframes word-in {
  to { opacity: 1; transform: none; filter: blur(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-words .word {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
  }
}

/* Scroll cue · sits at the foot of the hero with a slow drawing line */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: var(--c-ivory);
  opacity: 0.85;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.hero-scroll:hover { opacity: 1; transform: translate(-50%, 4px); }
.hero-scroll-label {
  font-family: var(--f-sans);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.hero-scroll-line {
  position: relative;
  width: 1px;
  height: 56px;
  background: rgba(241, 242, 235, 0.25);
  overflow: hidden;
}
.hero-scroll-line::after {
  content: "";
  position: absolute;
  top: -56px;
  left: 0;
  width: 1px;
  height: 56px;
  background: var(--c-gold);
  animation: scroll-cue 2.2s var(--ease) infinite;
}
@keyframes scroll-cue {
  0%   { transform: translateY(0); }
  100% { transform: translateY(112px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scroll-line::after { animation: none; top: 0; opacity: 0.6; }
}
.hero-bg img, .hero-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
}
/* Source video is 832×464 so a 5% upscale crops noisy encoder edges and the
   contrast/saturation lift gives it a richer cinematic read at full bleed. */
.hero-video {
  filter: saturate(1.08) contrast(1.06) brightness(0.96);
  transform: scale(1.05);
  transform-origin: center center;
  will-change: transform;
}
.hero-inner { position: relative; z-index: 3; max-width: 880px; }
.hero h1 { margin-bottom: 24px; }
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--c-gold);
}
.hero-lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  max-width: 620px;
  line-height: 1.75;
  margin-bottom: 38px;
}
.hero-meta {
  position: absolute;
  bottom: 40px;
  left: var(--gutter);
  right: var(--gutter);
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}
.hero-meta-item {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(241, 242, 235, 0.6);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-meta-item strong { color: var(--c-gold); font-weight: 500; }

/* Page hero (interior pages) */
.page-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 180px 0 100px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.page-hero-bg img, .page-hero-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
}

/* Hero slideshow · cross-fades four strong images on the page heroes */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.page-hero-bg .hero-slide,
.hero-bg .hero-slide,
img.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: hero-rotate 20s infinite;
  animation-fill-mode: both;
  will-change: opacity;
}
img.hero-slide:nth-child(1) { animation-delay: -1s; }
img.hero-slide:nth-child(2) { animation-delay: 4s; }
img.hero-slide:nth-child(3) { animation-delay: 9s; }
img.hero-slide:nth-child(4) { animation-delay: 14s; }
@keyframes hero-rotate {
  0%   { opacity: 0; }
  5%   { opacity: 1; }
  25%  { opacity: 1; }
  30%  { opacity: 0; }
  100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide { animation: none; opacity: 0; }
  .hero-slide:nth-child(1) { opacity: 1; }
}

/* Feature variant · taller hero, lighter overlay, bottom-anchored copy.
   Use when an interior page leads with photography. */
.page-hero.is-feature {
  min-height: 92vh;
  align-items: flex-end;
  padding: 180px 0 80px;
}
.page-hero.is-feature .page-hero-bg::before {
  background:
    linear-gradient(180deg,
      rgba(29,26,25,0.55) 0%,
      rgba(29,26,25,0.32) 30%,
      rgba(29,26,25,0.25) 50%,
      rgba(29,26,25,0.8) 88%,
      rgba(29,26,25,0.96) 100%),
    rgba(0, 0, 0, 0.18);
}
/* Apply the Ken Burns zoom only to single-image is-feature heroes, NOT to
   slides inside .hero-slideshow (slides have their own crossfade animation). */
.page-hero.is-feature .page-hero-bg > img {
  animation: hero-feature-zoom 18s var(--ease) infinite alternate;
}
@keyframes hero-feature-zoom {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}
.page-hero.is-feature h1 {
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  max-width: 22ch;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.55),
    0 8px 30px rgba(0, 0, 0, 0.45),
    0 18px 60px rgba(0, 0, 0, 0.35);
  margin-bottom: 22px;
}
.page-hero.is-feature .hero-lede {
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
  max-width: 540px;
}
.page-hero.is-feature .eyebrow {
  margin-bottom: 26px;
}
.page-hero.is-feature::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, transparent, var(--c-gold));
  opacity: 0.6;
  z-index: 3;
}
@media (prefers-reduced-motion: reduce) {
  .page-hero.is-feature .page-hero-bg img { animation: none; }
}
.page-hero-bg::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(34, 55, 98, 0.4), transparent 60%),
    linear-gradient(180deg,
      rgba(29,26,25,0.4) 0%,
      rgba(29,26,25,0.3) 35%,
      rgba(29,26,25,0.65) 80%,
      rgba(29,26,25,0.92) 100%);
  z-index: 2;
}
.page-hero-inner { position: relative; z-index: 3; max-width: 820px; }

/* ---------- Image placeholders ---------- */
.img-ph {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, var(--c-surface-2), #1a1612 55%, var(--c-charcoal));
  border: 1px solid var(--c-line-soft);
  overflow: hidden;
  display: grid;
  place-items: center;
  color: rgba(241, 242, 235, 0.35);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.img-ph::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0, transparent 14px, rgba(226,198,108,0.04) 14px, rgba(226,198,108,0.04) 15px),
    radial-gradient(circle at 50% 50%, rgba(226,198,108,0.12), transparent 60%);
  pointer-events: none;
}
.img-ph span { position: relative; z-index: 1; padding: 0 16px; text-align: center; }
/* Real photograph inside an .img-ph wrapper · keeps aspect-ratio and reveal */
.img-ph img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}
.img-ph.has-image { background: var(--c-surface); border-color: transparent; }
.img-ph.has-image::before { display: none; }
.img-ph.has-image span { display: none; }
/* Gallery grid · masonry handles flow now, legacy span rules removed */
.img-ph.tall { aspect-ratio: 3/4; }
.img-ph.square { aspect-ratio: 1/1; }
.img-ph.wide { aspect-ratio: 16/10; }
.img-ph.cinema { aspect-ratio: 21/9; }
.img-ph.hero { position: absolute; inset: 0; aspect-ratio: auto; }

/* ---------- Gold rule ---------- */
.rule {
  display: inline-block;
  width: 44px;
  height: 1px;
  background: var(--c-gold);
  opacity: 0.7;
}
.rule-row { display: flex; align-items: center; gap: 18px; margin-bottom: 22px; }
.rule-row .rule { flex-shrink: 0; }

/* ---------- Intro / Welcome ---------- */
.intro {
  background: var(--c-black);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.intro-grid .img-ph { aspect-ratio: 4/5; }
.intro-content p { font-size: 1.05rem; max-width: 540px; }

/* Full-bleed photographic intro variant */
.intro.intro-bg {
  position: relative;
  overflow: hidden;
  padding: clamp(120px, 14vw, 200px) 0;
  background: var(--c-black);
}
.intro-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.intro-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.intro-bg-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(29,26,25,0.85) 0%, rgba(29,26,25,0.55) 50%, rgba(29,26,25,0.35) 100%),
    linear-gradient(180deg, rgba(29,26,25,0.4) 0%, rgba(29,26,25,0.2) 50%, rgba(29,26,25,0.5) 100%);
}
.intro.intro-bg .container { position: relative; z-index: 1; }
.intro.intro-bg .intro-content {
  max-width: 600px;
}
.intro.intro-bg .intro-content h2,
.intro.intro-bg .intro-content p {
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
}

/* ---------- Feature blocks ---------- */
.features {
  background: var(--c-surface);
  border-top: 1px solid var(--c-line-soft);
  border-bottom: 1px solid var(--c-line-soft);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--c-line-soft);
  border: 1px solid var(--c-line-soft);
}
.feature-card {
  background: var(--c-surface);
  padding: clamp(36px, 5vw, 64px) clamp(28px, 4vw, 44px);
  position: relative;
  transition: background 0.5s var(--ease);
}
.feature-card:hover { background: var(--c-surface-2); }
.feature-card .num {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1rem;
  color: var(--c-gold);
  margin-bottom: 32px;
  display: block;
}
.feature-card h3 { margin-bottom: 18px; }
.feature-card p { font-size: 0.97rem; }

/* ---------- Food carousel (homepage) ---------- */
.food-carousel {
  background: var(--c-black);
  padding: var(--section-y) 0;
  overflow: hidden;
}
.food-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 56px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.food-marquee-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: food-marquee 60s linear infinite;
  will-change: transform;
}
.food-marquee:hover .food-marquee-track {
  animation-play-state: paused;
}
.food-marquee-item {
  flex-shrink: 0;
  width: clamp(240px, 28vw, 380px);
  aspect-ratio: 4/3;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--c-line-soft);
  background: var(--c-surface);
  transition: transform 0.5s var(--ease);
}
.food-marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.food-marquee-item:hover img {
  transform: scale(1.05);
}
@keyframes food-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .food-marquee-track { animation: none; }
  .food-marquee { overflow-x: auto; }
}

/* ---------- Featured menu preview ---------- */
.menu-preview {
  background: var(--c-black);
}
.menu-preview-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.menu-preview-list { list-style: none; padding: 0; margin: 32px 0 0; }
.menu-preview-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--c-line-soft);
  align-items: baseline;
}
.menu-preview-list li:last-child { border-bottom: none; }
.menu-preview-list h4 {
  font-family: var(--f-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--c-ivory);
  margin-bottom: 4px;
}
.menu-preview-list p { font-size: 0.9rem; margin: 0; color: rgba(241, 242, 235, 0.6); }
.menu-preview-list .price {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--c-gold);
}
.menu-preview-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.menu-preview-images .img-ph:nth-child(1) { grid-row: 1 / 3; aspect-ratio: 3/5; }
.menu-preview-images .img-ph:nth-child(2) { aspect-ratio: 4/3; }
.menu-preview-images .img-ph:nth-child(3) { aspect-ratio: 4/3; }

/* ---------- App section ---------- */
.app-section {
  background: linear-gradient(180deg, var(--c-black), var(--c-surface-2));
  position: relative;
  overflow: hidden;
}
.app-section::before {
  content: "";
  position: absolute;
  top: -40%; right: -10%;
  width: 80vmin; height: 80vmin;
  background: radial-gradient(circle, rgba(226, 198, 108, 0.16), transparent 60%);
  pointer-events: none;
}
.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  position: relative;
}
.app-grid.reversed { direction: rtl; }
.app-grid.reversed > * { direction: ltr; }
/* Single-column variant · used when no phone mockup or photo sits alongside the copy */
.app-grid--solo {
  grid-template-columns: 1fr;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.app-grid--solo .eyebrow { padding-left: 0; }
.app-grid--solo .app-points {
  text-align: left;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.app-grid--solo .store-row { justify-content: center; }
.app-points { list-style: none; padding: 0; margin: 28px 0 36px; display: grid; gap: 14px; }
.app-points li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 18px;
  border: 1px solid var(--c-line-soft);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.015);
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.app-points li:hover { border-color: var(--c-line); background: rgba(226, 198, 108, 0.04); }
.app-points .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  margin-top: 9px;
  background: var(--c-gold);
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(226, 198, 108, 0.12);
}
.app-points strong {
  display: block;
  font-family: var(--f-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--c-ivory);
  margin-bottom: 2px;
}
.app-points p { font-size: 0.9rem; margin: 0; }

/* Phone mockup */
.phone-stage {
  position: relative;
  display: grid;
  place-items: center;
  padding: 40px 0;
}
.phone-stage::after {
  content: "";
  position: absolute;
  bottom: 10%; left: 50%;
  width: 70%; height: 30%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(226, 198, 108, 0.35), transparent 70%);
  filter: blur(30px);
  z-index: 0;
}
.phone {
  position: relative;
  width: min(300px, 70vw);
  aspect-ratio: 9/19;
  border-radius: 44px;
  padding: 12px;
  background: linear-gradient(155deg, #2a2218, #0c0a08);
  box-shadow:
    0 30px 80px -30px rgba(0,0,0,0.9),
    0 0 0 1px rgba(226, 198, 108, 0.3),
    inset 0 0 0 1px rgba(255,255,255,0.03);
  z-index: 1;
}
.phone-screen {
  width: 100%; height: 100%;
  border-radius: 34px;
  background: linear-gradient(180deg, #1a140e 0%, #0a0807 100%);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.phone-notch {
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 18px;
  border-radius: 999px;
  background: #050403;
  z-index: 3;
}
.phone-status {
  padding: 36px 22px 8px;
  display: flex; justify-content: space-between;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  color: rgba(241, 242, 235, 0.55);
}
.phone-app {
  flex: 1;
  padding: 18px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.phone-app .pa-brand {
  font-family: var(--f-serif);
  font-size: 1.05rem;
  color: var(--c-gold);
  letter-spacing: 0.06em;
}
.phone-app .pa-greet {
  font-family: var(--f-serif);
  font-size: 1.4rem;
  line-height: 1.2;
  color: var(--c-ivory);
}
.phone-app .pa-pill {
  align-self: flex-start;
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(226, 198, 108, 0.15);
  color: var(--c-gold);
  border: 1px solid rgba(226, 198, 108, 0.3);
}
.phone-app .pa-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(226, 198, 108, 0.18);
  border-radius: 16px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.phone-app .pa-thumb {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--c-burgundy), var(--c-bronze));
  flex-shrink: 0;
}
.phone-app .pa-meta { flex: 1; }
.phone-app .pa-meta strong {
  display: block;
  font-family: var(--f-serif);
  font-size: 0.85rem;
  color: var(--c-ivory);
}
.phone-app .pa-meta span {
  display: block;
  font-size: 0.62rem;
  color: rgba(241, 242, 235, 0.5);
  letter-spacing: 0.08em;
}
.phone-app .pa-price {
  font-family: var(--f-serif);
  color: var(--c-gold);
  font-size: 0.95rem;
}
.phone-app .pa-track {
  margin-top: auto;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(226, 198, 108, 0.18), rgba(34, 55, 98, 0.4));
  border: 1px solid rgba(226, 198, 108, 0.3);
}
.phone-app .pa-track-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-gold);
}
.phone-app .pa-bar {
  height: 4px;
  border-radius: 999px;
  background: rgba(241, 242, 235, 0.12);
  overflow: hidden;
}
.phone-app .pa-bar i {
  display: block;
  height: 100%;
  width: 62%;
  background: linear-gradient(90deg, var(--c-gold), var(--c-bronze));
  border-radius: 999px;
}

/* ---------- Private lounge teaser ---------- */
.private-teaser {
  background: var(--c-surface);
  position: relative;
  overflow: hidden;
}
.private-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.private-teaser .img-ph { aspect-ratio: 5/6; }

/* ---------- Gallery preview ---------- */
.gallery-preview { background: var(--c-black); }
.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  margin-top: 40px;
}
.gallery-preview-grid .img-ph:nth-child(1) { grid-column: span 5; aspect-ratio: 4/5; }
.gallery-preview-grid .img-ph:nth-child(2) { grid-column: span 7; aspect-ratio: 4/3; }
.gallery-preview-grid .img-ph:nth-child(3) { grid-column: span 7; aspect-ratio: 4/3; }
.gallery-preview-grid .img-ph:nth-child(4) { grid-column: span 5; aspect-ratio: 4/5; }

/* ---------- Reviews ---------- */
.reviews {
  background: var(--c-surface-2);
  border-top: 1px solid var(--c-line-soft);
  border-bottom: 1px solid var(--c-line-soft);
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.review-card {
  padding: 36px 32px;
  border: 1px solid var(--c-line-soft);
  border-radius: 4px;
  background: rgba(255,255,255,0.015);
  position: relative;
}
.review-card .stars { color: var(--c-gold); font-size: 0.9rem; letter-spacing: 0.2em; margin-bottom: 18px; }
.review-card blockquote {
  margin: 0 0 22px;
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.12rem;
  line-height: 1.55;
  color: rgba(241, 242, 235, 0.92);
  position: relative;
  padding-left: 18px;
}
.review-card blockquote::before {
  content: "\201C";
  position: absolute;
  left: -4px;
  top: -10px;
  font-size: 2.2rem;
  color: var(--c-gold);
  line-height: 1;
}
.review-card cite {
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
}
.hygiene {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 22px 28px;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  max-width: 540px;
  margin-left: auto; margin-right: auto;
}
.hygiene-score {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--c-gold), var(--c-bronze));
  color: var(--c-black);
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: 1.2rem;
}
.hygiene small {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(241, 242, 235, 0.6);
}
.hygiene strong { font-family: var(--f-serif); font-size: 1rem; }

/* ---------- Location ---------- */
.location {
  background: var(--c-black);
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: stretch;
}
.location-card {
  padding: clamp(32px, 4vw, 50px);
  border: 1px solid var(--c-line-soft);
  background: var(--c-surface);
}
.location-list { display: grid; gap: 22px; margin-top: 32px; }
.location-list dt {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 6px;
}
.location-list dd { margin: 0; font-family: var(--f-serif); font-size: 1.15rem; }
.hours { display: grid; gap: 8px; margin-top: 22px; }
.hours-row {
  display: flex; justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--c-line-soft);
  font-size: 0.95rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child { color: rgba(241, 242, 235, 0.6); }
.hours-row span:last-child { color: var(--c-ivory); font-family: var(--f-serif); }
.map-frame {
  border: 1px solid var(--c-line-soft);
  background: var(--c-surface);
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}
.map-frame iframe { width: 100%; height: 100%; border: none; filter: grayscale(0.6) contrast(0.9) brightness(0.7); }

/* Tighter section rhythm on the homepage */
.page-home {
  --section-y: clamp(50px, 6vw, 96px);
}
.page-home .section-hd {
  margin-bottom: clamp(28px, 4vw, 56px);
}
.page-home .final-cta {
  padding: clamp(50px, 6vw, 96px) 0;
}

/* Mobile polish for the Visit Us In Worcester section */
@media (max-width: 820px) {
  .location-grid { gap: 28px; }
  .location-card {
    padding: clamp(24px, 6vw, 36px) clamp(20px, 5vw, 28px);
  }
  .location-card h3 { font-size: clamp(1.4rem, 5vw, 1.8rem); }
  .location-list { margin-top: 26px; gap: 18px; }
  .location-list dt { font-size: 0.66rem; letter-spacing: 0.22em; margin-bottom: 4px; }
  .location-list dd { font-size: 1rem; line-height: 1.5; }
  .hours-row {
    font-size: 0.88rem;
    padding: 9px 0;
    gap: 12px;
  }
  .hours-row span:first-child { flex: 1 1 auto; }
  .hours-row span:last-child { flex: 0 0 auto; text-align: right; }
  .map-frame { aspect-ratio: 4/3; }
}
@media (max-width: 420px) {
  .hours-row { font-size: 0.82rem; }
  .location-list dd { font-size: 0.95rem; }
}

/* ---------- Final CTA ---------- */
.final-cta {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(226, 198, 108, 0.16), transparent 60%),
    var(--c-black);
  text-align: center;
  padding: clamp(60px, 7vw, 110px) 0;
  border-top: 1px solid var(--c-line-soft);
}
.final-cta h2 { margin-bottom: 24px; }
.final-cta p { max-width: 560px; margin: 0 auto 36px; font-size: 1.05rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--c-black);
  border-top: 1px solid var(--c-line-soft);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}
.footer-grid h5 {
  font-family: var(--f-sans);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin: 0 0 22px;
  font-weight: 500;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer-grid a { font-size: 0.95rem; color: rgba(241, 242, 235, 0.75); transition: color 0.3s var(--ease); }
.footer-grid a:hover { color: var(--c-gold); }
.footer-grid p { font-size: 0.95rem; }
.footer-brand .brand { margin-bottom: 20px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--c-line-soft);
  font-size: 0.78rem;
  color: rgba(241, 242, 235, 0.5);
  letter-spacing: 0.06em;
  flex-wrap: wrap;
  gap: 16px;
}

/* ---------- Sticky mobile booking CTA ---------- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  z-index: 60;
  display: none;
  padding: 12px var(--gutter) calc(12px + env(safe-area-inset-bottom));
  background: rgba(29, 26, 25, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--c-line-soft);
  gap: 10px;
}
.sticky-cta .btn { flex: 1; padding: 14px 16px; min-height: 48px; font-size: 0.7rem; letter-spacing: 0.22em; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.16s; }
.reveal.delay-3 { transition-delay: 0.24s; }

/* ---------- Menus page ---------- */
.menu-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  padding: 8px;
  border: 1px solid var(--c-line-soft);
  border-radius: 999px;
  background: var(--c-surface);
  margin: 0 auto 60px;
  max-width: 100%;
  width: fit-content;
  overflow-x: auto;
}
.menu-tab {
  padding: 12px 22px;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(241, 242, 235, 0.65);
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.menu-tab:hover { color: var(--c-ivory); }
.menu-tab.active { background: linear-gradient(135deg, var(--c-gold), var(--c-bronze)); color: var(--c-black); }
.menu-section {
  padding: clamp(44px, 6vw, 72px) 0;
  border-bottom: 1px solid var(--c-line-soft);
}
.menu-section:last-of-type { border-bottom: none; }
.menu-section-hd {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 50px;
  margin-bottom: 50px;
  align-items: end;
}
.menu-section-hd p { margin: 0; font-size: 1.02rem; }
.menu-list { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 60px; }
.menu-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--c-line-soft);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 18px;
}
.menu-item h4 {
  font-family: var(--f-serif);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 6px;
  color: var(--c-ivory);
  display: flex;
  align-items: center;
  gap: 10px;
}
.menu-item h4 .tag {
  font-family: var(--f-sans);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid var(--c-line);
  color: var(--c-gold);
}
.menu-item .desc { font-size: 0.88rem; color: rgba(241, 242, 235, 0.55); margin: 0; }
.menu-item .dish-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 10px;
  font-family: var(--f-sans);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  align-items: center;
}
.menu-item .allergens { color: rgba(241, 242, 235, 0.55); }
.menu-item .heat {
  color: var(--c-gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.menu-item .heat .chilies {
  font-size: 0.85rem;
  letter-spacing: -0.06em;
  line-height: 1;
  display: inline-flex;
}
.menu-item .heat[data-heat="medium"]  { color: #e4b85a; }
.menu-item .heat[data-heat="hot"]     { color: #e09360; }
.menu-item .heat[data-heat="veryhot"] { color: #d96d4e; }

/* Menu legend (heat + allergen key) */
.menu-key {
  background: var(--c-surface);
  border-top: 1px solid var(--c-line-soft);
  border-bottom: 1px solid var(--c-line-soft);
  padding: clamp(56px, 8vw, 96px) 0;
}
.menu-key-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(36px, 5vw, 80px);
}
.menu-key h3 {
  font-family: var(--f-sans);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-gold);
  font-weight: 500;
  margin: 0 0 20px;
}
.heat-key, .allergen-key {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 10px;
}
.heat-key li, .allergen-key li {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 12px;
  align-items: center;
  font-size: 0.92rem;
  color: rgba(241, 242, 235, 0.85);
}
.heat-key .chilies {
  color: var(--c-gold);
  font-size: 1rem;
  letter-spacing: -0.06em;
}
.heat-key[data-row="medium"]  { color: #e4b85a; }
.allergen-key {
  grid-template-columns: repeat(2, 1fr);
}
.allergen-key li { grid-template-columns: 44px 1fr; }
.allergen-key strong {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--c-gold);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}
@media (max-width: 820px) {
  .menu-key-grid { grid-template-columns: 1fr; }
  .allergen-key { grid-template-columns: 1fr; }
}

/* Allergen statement */
.allergen-statement {
  background: var(--c-black);
  padding: clamp(56px, 8vw, 96px) 0;
  border-top: 1px solid var(--c-line-soft);
}
.allergen-statement-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.allergen-statement h3 {
  font-family: var(--f-sans);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-gold);
  font-weight: 500;
  margin: 0 0 20px;
}
.allergen-statement p {
  font-size: 0.92rem;
  color: rgba(241, 242, 235, 0.68);
  line-height: 1.7;
}

/* Small subsection divider inside a menu-section (e.g. "Extras") */
.menu-sub {
  margin-top: 36px;
  margin-bottom: 18px;
  padding-top: 24px;
  border-top: 1px solid var(--c-line-soft);
}
.menu-sub h4 {
  font-family: var(--f-sans);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-gold);
  font-weight: 500;
}

/* Note line under a section heading (e.g. "Burgers: Double stacked and flame grilled") */
.menu-section-note {
  margin: 0 0 36px;
  font-size: 0.92rem;
  color: rgba(241, 242, 235, 0.68);
  font-style: italic;
}
.menu-item .variants {
  display: block;
  margin-top: 8px;
  font-family: var(--f-sans);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--c-gold);
  opacity: 0.85;
}
.menu-item .price {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--c-gold);
  white-space: nowrap;
}

/* ---------- App page specifics ---------- */
.app-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}
.app-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.benefit-card {
  padding: 36px 32px;
  background: var(--c-surface);
  border: 1px solid var(--c-line-soft);
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
}
.benefit-card:hover { transform: translateY(-4px); border-color: var(--c-line); }
.benefit-card .icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(226, 198, 108, 0.1);
  border: 1px solid var(--c-line);
  color: var(--c-gold);
  margin-bottom: 22px;
  font-family: var(--f-serif);
  font-weight: 400;
}
.benefit-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.benefit-card p { font-size: 0.95rem; margin: 0; }

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--c-line-soft);
  border: 1px solid var(--c-line-soft);
  margin-top: 60px;
}
.how-step {
  background: var(--c-surface);
  padding: 40px 30px;
  position: relative;
}
.how-step .step-num {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 2.6rem;
  color: var(--c-gold);
  margin-bottom: 22px;
  line-height: 1;
}
.how-step h4 { font-size: 1.1rem; margin-bottom: 10px; }
.how-step p { font-size: 0.92rem; margin: 0; }

/* ---------- Private dining page ---------- */
.lounge-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.lounge-feature {
  padding: 30px 26px;
  border: 1px solid var(--c-line-soft);
  background: rgba(255,255,255,0.015);
}
.lounge-feature .num { color: var(--c-gold); font-family: var(--f-serif); font-style: italic; font-weight: 400; margin-bottom: 16px; font-size: 1.05rem; }
.lounge-feature h4 { font-size: 1.1rem; margin-bottom: 10px; }
.lounge-feature p { font-size: 0.9rem; margin: 0; }

.occasions {
  background: var(--c-surface);
}
.occasion-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid var(--c-line-soft);
  border-left: 1px solid var(--c-line-soft);
}
.occasion-list li {
  padding: 28px 30px;
  border-right: 1px solid var(--c-line-soft);
  border-bottom: 1px solid var(--c-line-soft);
  font-family: var(--f-serif);
  font-size: 1.2rem;
  list-style: none;
  display: flex; align-items: center;
  gap: 16px;
}
.occasion-list li::before {
  content: "✦";
  color: var(--c-gold);
  font-size: 0.8rem;
}

/* ---------- Gallery page ---------- */
.gallery-category-nav {
  display: flex;
  gap: 4px;
  padding: 8px;
  border: 1px solid var(--c-line-soft);
  border-radius: 999px;
  margin: 0 auto 60px;
  width: fit-content;
  flex-wrap: wrap;
}
.gallery-grid {
  column-count: 3;
  column-gap: 14px;
}
.gallery-grid .img-ph {
  break-inside: avoid;
  margin-bottom: 14px;
  cursor: pointer;
  display: block;
  position: relative;
  background: var(--c-surface);
  border: 1px solid var(--c-line-soft);
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  overflow: hidden;
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease), border-color 0.6s var(--ease);
}
.gallery-grid .img-ph img {
  position: static;
  inset: auto;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.7s var(--ease);
}
.gallery-grid .img-ph:hover {
  border-color: var(--c-line);
  box-shadow: 0 18px 40px -20px rgba(0,0,0,0.6);
}
.gallery-grid .img-ph:hover img { transform: scale(1.03); }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 90px);
}
.contact-form {
  display: grid;
  gap: 22px;
  background: var(--c-surface);
  padding: clamp(32px, 4vw, 50px);
  border: 1px solid var(--c-line-soft);
}
.field { display: grid; gap: 8px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
}
.field input, .field select, .field textarea {
  padding: 14px 16px;
  background: var(--c-black);
  border: 1px solid var(--c-line-soft);
  color: var(--c-ivory);
  font-size: 1rem;
  border-radius: 4px;
  transition: border-color 0.3s var(--ease);
  font-family: var(--f-sans);
}
.field textarea { resize: vertical; min-height: 140px; font-family: var(--f-sans); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--c-gold);
}
.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--c-gold) 50%),
                    linear-gradient(135deg, var(--c-gold) 50%, transparent 50%);
  background-position: calc(100% - 22px) 50%, calc(100% - 16px) 50%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
}

/* ---------- SEO page ---------- */
.seo-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.seo-reasons {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}
.seo-reason {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: 22px;
  border: 1px solid var(--c-line-soft);
  background: rgba(255,255,255,0.015);
}
.seo-reason .ix {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--c-gold);
  line-height: 1;
}
.seo-reason h4 { font-size: 1.1rem; margin-bottom: 6px; }
.seo-reason p { margin: 0; font-size: 0.92rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .feature-grid, .app-benefits, .lounge-feature-grid, .how-grid, .occasion-list { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .nav-links, .nav-cta .btn:not(.btn-book-mobile) { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(29,26,25,0.97);
    backdrop-filter: blur(20px);
    padding: 24px var(--gutter) 40px;
    border-top: 1px solid var(--c-line-soft);
  }
  .nav-links.open li { width: 100%; }
  .nav-links.open a {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid var(--c-line-soft);
    font-size: 0.85rem;
  }
  .nav-links.open .nav-mobile-cta {
    display: block;
    margin-top: 22px;
    border-bottom: none;
  }
  .nav-links.open .nav-mobile-cta a {
    border-bottom: none;
    padding: 0;
  }
  /* Inside the mobile drawer the outline button stretched full-width and the
     pill border looked off. Strip the chrome and present it as a clean centered
     gold link instead. */
  .nav-links.open .nav-mobile-cta .btn {
    width: 100%;
    border: none;
    background: transparent;
    color: var(--c-gold);
    padding: 14px 0;
    min-height: 0;
    letter-spacing: 0.3em;
    font-size: 0.78rem;
    box-shadow: none;
  }
  .nav-links.open .nav-mobile-cta .btn:hover {
    background: transparent;
    color: var(--c-gold-soft);
    transform: none;
    box-shadow: none;
  }
  .intro-grid, .menu-preview-grid, .app-grid, .private-teaser-grid, .location-grid, .contact-grid, .app-hero-grid, .seo-grid {
    grid-template-columns: 1fr;
  }
  .app-grid.reversed { direction: ltr; }
  .menu-list { grid-template-columns: 1fr; }
  .menu-section-hd { grid-template-columns: 1fr; gap: 20px; }
  .review-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 80px; }
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 16px; }
  .gallery-grid { column-count: 2; column-gap: 12px; }
  .gallery-grid .img-ph { margin-bottom: 12px; }
}
@media (max-width: 540px) {
  .feature-grid, .app-benefits, .lounge-feature-grid, .how-grid, .occasion-list, .footer-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .btn { padding: 10px 18px; font-size: 0.68rem; letter-spacing: 0.2em; min-height: 40px; }
  .menu-preview-images { grid-template-columns: 1fr; }
  .menu-preview-images .img-ph:nth-child(1) { grid-row: auto; aspect-ratio: 4/3; }
  .brand small { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Utility ---------- */
.muted { color: rgba(241, 242, 235, 0.55); }
.gold { color: var(--c-gold); }
.serif { font-family: var(--f-serif); }
.italic { font-style: italic; }
.text-centre { text-align: center; }
.no-margin { margin: 0; }

/* ============================================================
   Accessibility, utility and chrome additions for the PHP build
   ============================================================ */

/* Skip to main content (visible on focus only) */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 100;
  padding: 12px 18px;
  background: var(--c-gold);
  color: var(--c-black);
  font-family: var(--f-sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: top 0.2s var(--ease);
}
.skip-link:focus {
  top: 14px;
  outline: 3px solid var(--c-ivory);
  outline-offset: 2px;
}

/* Universal visible focus ring */
:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Breadcrumb */
.breadcrumb {
  font-family: var(--f-sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(241, 242, 235, 0.55);
  padding: 92px var(--gutter) 0;
  max-width: var(--container);
  margin: 0 auto;
}
/* Once the header shrinks on scroll the breadcrumb is mostly off-screen,
   but on landing the gap should still feel airy without being a full hero */
.has-breadcrumb .page-hero { padding-top: 24px; }
.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
}
.breadcrumb li::after {
  content: "·";
  margin-left: 10px;
  color: var(--c-gold);
  opacity: 0.5;
}
.breadcrumb li:last-child::after { display: none; }
.breadcrumb a { color: rgba(241, 242, 235, 0.75); transition: color 0.3s var(--ease); }
.breadcrumb a:hover { color: var(--c-gold); }
.breadcrumb li[aria-current="page"] { color: var(--c-gold); }

/* Footer legal link row */
.footer-bottom .footer-legal {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-bottom .footer-legal a {
  color: rgba(241, 242, 235, 0.55);
  transition: color 0.3s var(--ease);
}
.footer-bottom .footer-legal a:hover { color: var(--c-gold); }

/* Address tag inside footer (resets italic from browser default) */
address.not-italic { font-style: normal; line-height: 1.9; color: rgba(241, 242, 235, 0.78); }
address.not-italic a { color: inherit; transition: color 0.3s var(--ease); }
address.not-italic a:hover { color: var(--c-gold); }

/* Social links row inside footer brand block */
.social-links { display: flex; gap: 18px; margin-top: 18px; }
.social-links a {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 55;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: var(--c-charcoal);
  border: 1px solid var(--c-line);
  border-radius: 50%;
  color: var(--c-gold);
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), background 0.3s var(--ease);
}
.back-to-top.is-visible { opacity: 1; transform: none; }
.back-to-top:hover { background: var(--c-surface-2); }
@media (max-width: 820px) { .back-to-top { right: 16px; bottom: 110px; } }

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px; right: 16px;
  z-index: 70;
  background: rgba(15, 13, 12, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--c-line);
  border-radius: 16px;
  box-shadow: 0 24px 50px -20px rgba(0,0,0,0.6);
  padding: 22px 26px;
  max-width: 720px;
  margin: 0 auto;
  animation: cookie-in 0.6s var(--ease);
}
@keyframes cookie-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
.cookie-banner-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
.cookie-banner p { margin: 0; font-size: 0.92rem; max-width: 460px; }
.cookie-banner a { color: var(--c-gold); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 10px; }
.cookie-banner-actions .btn { padding: 12px 22px; min-height: 44px; }
@media (max-width: 540px) {
  .cookie-banner { bottom: 90px; padding: 18px 20px; }
  .cookie-banner-actions { width: 100%; }
  .cookie-banner-actions .btn { flex: 1; }
}
.cookie-banner[hidden] { display: none; }

/* Noscript */
.noscript-banner {
  position: fixed;
  top: 80px; left: 16px; right: 16px;
  z-index: 100;
  padding: 14px 20px;
  background: var(--c-burgundy);
  color: var(--c-ivory);
  border-radius: 10px;
  font-size: 0.9rem;
  text-align: center;
}

/* Inline form feedback */
.form-status {
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 0.92rem;
  display: none;
}
.form-status[data-state="success"] {
  display: block;
  background: rgba(23, 61, 53, 0.25);
  border: 1px solid rgba(23, 61, 53, 0.5);
  color: var(--c-ivory);
}
.form-status[data-state="error"] {
  display: block;
  background: rgba(75, 17, 23, 0.25);
  border: 1px solid rgba(75, 17, 23, 0.6);
  color: var(--c-ivory);
}
.form-status[data-state="loading"] {
  display: block;
  background: rgba(226, 198, 108, 0.1);
  border: 1px solid var(--c-line);
  color: var(--c-ivory);
}
.field-error {
  color: #f3b6b6;
  font-size: 0.82rem;
  margin-top: 6px;
  display: none;
}
.field-error[data-visible="true"] { display: block; }
.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] { border-color: #c66; }

/* GDPR consent */
.gdpr-notice { margin: 4px 0 4px; }
.gdpr-consent a {
  color: var(--c-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.gdpr-consent a:hover { color: var(--c-ivory); }
.gdpr-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(241, 242, 235, 0.85);
  cursor: pointer;
}
.gdpr-consent input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  border: 1px solid var(--c-line);
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.gdpr-consent input[type="checkbox"]:hover { border-color: var(--c-gold); }
.gdpr-consent input[type="checkbox"]:checked {
  background: var(--c-gold);
  border-color: var(--c-gold);
}
.gdpr-consent input[type="checkbox"]:checked::after {
  content: "";
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--c-dark);
  border-bottom: 2px solid var(--c-dark);
  transform: rotate(-45deg) translate(1px, -1px);
}
.gdpr-consent input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 2px;
}
.gdpr-consent span { line-height: 1.45; }

/* Honeypot (never visible) */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden;
}

/* Print stylesheet */
@media print {
  .site-header, .site-footer, .sticky-cta, .back-to-top,
  .cookie-banner, .noscript-banner, .hero-scroll, .nav-toggle,
  .menu-tabs, .gallery-category-nav, .app-section, .features,
  .reviews, .private-teaser, .gallery-preview, .final-cta { display: none !important; }
  body, .menu-section, .menu-list, .menu-item, p, h1, h2, h3, h4 {
    color: #000 !important;
    background: #fff !important;
    text-shadow: none !important;
    -webkit-text-stroke-width: 0 !important;
  }
  .menu-item .price, .menu-item .variants { color: #333 !important; }
  .container { max-width: 100% !important; padding: 0 !important; }
}

/* Dark mode preparation · the site is already dark by default. This forces
   dark even if the user is on a light-mode OS and we ever add light tokens. */
@media (prefers-color-scheme: light) {
  :root { color-scheme: dark; }
}

