/* ====================================================================
   LOVE FOOD ITALIA — DARK ITALIAN PREMIUM THEME
   Author: Coddexa Media  |  9 New Road, Kidderminster DY10 1AF
   ==================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Source+Sans+3:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;1,400&display=swap');

:root {
  /* SURFACES */
  --bg: #0F0D0B;
  --bg-raised: #1A1613;
  --surface: #221E1A;
  --surface2: #2A2520;
  --surface3: #342D27;

  /* TEXT */
  --fg: #F5EDE4;
  --text: #D4C8BA;
  --muted: #8A7E72;
  --dim: #5A5148;

  /* ACCENTS */
  --gold: #C8962D;
  --gold-bright: #E2B44A;
  --gold-dim: rgba(200, 150, 45, 0.12);
  --gold-line: rgba(200, 150, 45, 0.25);
  --wine: #6B1C23;
  --wine-dim: rgba(107, 28, 35, 0.18);
  --olive: #3D5A3E;
  --cream: #FDF8F0;

  /* TYPOGRAPHY */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;

  /* FLUID TYPE */
  --fs-xs:   clamp(0.7rem, 0.65rem + 0.25vw, 0.8rem);
  --fs-sm:   clamp(0.82rem, 0.78rem + 0.2vw, 0.92rem);
  --fs-base: clamp(0.95rem, 0.9rem + 0.25vw, 1.05rem);
  --fs-lg:   clamp(1.1rem, 1rem + 0.5vw, 1.25rem);
  --fs-xl:   clamp(1.3rem, 1.1rem + 0.8vw, 1.6rem);
  --fs-2xl:  clamp(1.6rem, 1.3rem + 1.2vw, 2.2rem);
  --fs-3xl:  clamp(2rem, 1.5rem + 2vw, 3rem);
  --fs-4xl:  clamp(2.5rem, 1.8rem + 3vw, 4rem);
  --fs-hero: clamp(2.6rem, 1.8rem + 3.8vw, 5.4rem);

  /* SPACING */
  --section-gap: clamp(4rem, 6vw, 8rem);
  --section-pad: clamp(3rem, 5vw, 6rem);
  --container: 1240px;
  --container-narrow: 760px;
  --container-wide: 1440px;
  --gutter: clamp(1.25rem, 3vw, 2rem);

  /* RADII & SHADOWS */
  --radius: 2px;
  --radius-md: 6px;
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.25);
  --shadow: 0 8px 32px rgba(0,0,0,0.45);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.6);

  /* TRANSITIONS */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.4s;
  --dur-slow: 0.7s;

  /* LAYOUT */
  --header-h: 120px;
  --header-h-mobile: 72px;
}

/* ================================ RESET ================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--gold-bright); }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--fg);
  line-height: 1.15;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
p { text-wrap: pretty; max-width: 65ch; }

::selection { background: var(--gold); color: var(--bg); }

/* ============================== UTILITIES =============================== */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container-narrow { max-width: var(--container-narrow); }
.container-wide { max-width: var(--container-wide); }
.section { padding: var(--section-pad) 0; }
.section-gap { padding: var(--section-gap) 0; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.eyebrow::before, .eyebrow::after { content: '—'; display: inline-block; margin: 0 0.6em; color: var(--gold-line); }

.divider-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--gold);
  font-family: var(--font-accent);
  font-style: italic;
  margin: 2rem auto;
}
.divider-ornament::before, .divider-ornament::after {
  content: '';
  flex: 0 0 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line), transparent);
}

h1.display { font-size: var(--fs-hero); line-height: 1.05; letter-spacing: -0.025em; }
h2.display { font-size: var(--fs-4xl); }
.italic { font-family: var(--font-accent); font-style: italic; color: var(--gold); }

/* ================================ BUTTONS =============================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.2rem;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-bright);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 150, 45, 0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--gold-line);
}
.btn-ghost:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  color: var(--gold-bright);
  transform: translateY(-2px);
}
.btn-sm { padding: 0.7rem 1.4rem; font-size: var(--fs-xs); }

/* ============================== TOP BAR ================================ */
.topbar {
  background: #0A0907;
  border-bottom: 1px solid rgba(200, 150, 45, 0.08);
  font-size: var(--fs-xs);
  color: var(--muted);
  padding: 0.7rem 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.topbar-info { display: flex; gap: 2rem; flex-wrap: wrap; }
.topbar-info span { display: inline-flex; align-items: center; gap: 0.5rem; letter-spacing: 0.05em; }
.topbar-info a { color: var(--text); }
.topbar-info a:hover { color: var(--gold-bright); }
.topbar-social { display: flex; gap: 1rem; }
.topbar-social a {
  width: 30px; height: 30px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(200, 150, 45, 0.2);
  border-radius: 50%;
  transition: all var(--dur) var(--ease);
}
.topbar-social a:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); transform: translateY(-2px); }

/* ================================ HEADER =============================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 13, 11, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 150, 45, 0.1);
  transition: all var(--dur) var(--ease);
}
.site-header .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}
.nav-primary { display: flex; gap: 2.4rem; justify-self: end; }
.nav-primary a {
  font-size: var(--fs-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text);
  position: relative;
  padding: 0.5rem 0;
}
.nav-primary a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 1px;
  background: var(--gold);
  transition: all var(--dur) var(--ease);
  transform: translateX(-50%);
}
.nav-primary a:hover::after, .nav-primary a.active::after { width: 100%; }
.nav-primary a:hover, .nav-primary a.active { color: var(--gold-bright); }

.brand {
  font-family: var(--font-heading);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.brand-italic {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}
.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg);
}
.brand-sub {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.3rem;
}

.nav-secondary { display: flex; gap: 2.4rem; justify-self: start; }
.nav-secondary a {
  font-size: var(--fs-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text);
  position: relative;
  padding: 0.5rem 0;
}
.nav-secondary a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 1px;
  background: var(--gold);
  transition: all var(--dur) var(--ease);
  transform: translateX(-50%);
}
.nav-secondary a:hover::after, .nav-secondary a.active::after { width: 100%; }
.nav-secondary a:hover, .nav-secondary a.active { color: var(--gold-bright); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid var(--gold-line);
  border-radius: var(--radius);
  color: var(--gold);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: currentColor;
  position: relative;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0; width: 20px; height: 2px;
  background: currentColor;
  transition: transform var(--dur) var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle.active span { background: transparent; }
.nav-toggle.active span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle.active span::after { transform: translateY(-6px) rotate(-45deg); }

/* ================================= HERO ================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at center, rgba(15, 13, 11, 0.55) 0%, rgba(15, 13, 11, 0.82) 60%, rgba(15, 13, 11, 0.95) 100%),
    linear-gradient(180deg, rgba(15, 13, 11, 0.55) 0%, rgba(15, 13, 11, 0.35) 40%, rgba(15, 13, 11, 0.95) 100%);
}
.hero-content {
  text-align: center;
  padding: 2rem var(--gutter);
  max-width: 860px;
  animation: fadeInUp 1.2s var(--ease-out) both;
}
.hero h1 {
  font-size: var(--fs-hero);
  font-weight: 700;
  letter-spacing: 0.01em;
  margin: 1rem 0 1.5rem;
  text-shadow: 0 4px 30px rgba(0,0,0,0.8);
}
.hero h1 .italic { display: block; font-weight: 400; letter-spacing: 0; margin-top: 0.2em; }
.hero-sub {
  font-family: var(--font-accent);
  font-size: var(--fs-xl);
  font-style: italic;
  color: var(--text);
  margin-bottom: 2.5rem;
  font-weight: 400;
}
.hero-cta { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }

.hero-banner {
  position: relative;
  min-height: 45svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  padding: 5rem 0 3rem;
}
.hero-banner h1 {
  font-size: var(--fs-4xl);
  text-align: center;
}
.hero-banner .eyebrow { display: block; text-align: center; }

/* ============================ SECTION HEADERS =========================== */
.section-header { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-header h2 { font-size: var(--fs-3xl); margin-bottom: 1rem; }
.section-header p { color: var(--muted); margin: 0 auto; font-size: var(--fs-lg); }

/* =============================== ABOUT SPLIT =========================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.split-media:hover img { transform: scale(1.04); }
.split-media::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold-line);
  pointer-events: none;
  transform: translate(14px, 14px);
  z-index: -1;
}
.split-content h2 { margin-bottom: 1.5rem; }
.split-content p { color: var(--text); margin-bottom: 1rem; max-width: 52ch; }
.split-content .btn { margin-top: 2rem; }

/* ================================ CARDS =============================== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.dish-card {
  background: var(--surface);
  border: 1px solid rgba(200, 150, 45, 0.08);
  overflow: hidden;
  transition: all var(--dur-slow) var(--ease);
  position: relative;
}
.dish-card:hover {
  border-color: var(--gold-line);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.dish-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.dish-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.dish-card:hover .dish-media img { transform: scale(1.08); }
.dish-body { padding: 1.8rem 1.6rem 2rem; text-align: center; }
.dish-body h3 {
  font-size: var(--fs-xl);
  margin-bottom: 0.6rem;
  color: var(--gold-bright);
}
.dish-body p { color: var(--muted); font-size: var(--fs-sm); margin: 0 auto; }
.dish-body .price {
  display: inline-block;
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--gold);
  font-size: var(--fs-lg);
  margin-top: 1rem;
}

/* ========================= SET MENU PROMO BAND ========================= */
.promo-band {
  position: relative;
  background: linear-gradient(135deg, var(--wine-dim), transparent), var(--bg-raised);
  padding: clamp(3rem, 6vw, 5rem) var(--gutter);
  text-align: center;
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  margin: var(--section-gap) 0;
}
.promo-band h2 { font-size: var(--fs-3xl); margin-bottom: 1rem; }
.promo-band p { color: var(--text); max-width: 620px; margin: 0 auto 2rem; font-size: var(--fs-lg); }
.promo-price {
  font-family: var(--font-heading);
  font-size: var(--fs-4xl);
  color: var(--gold-bright);
  font-weight: 700;
  display: block;
  margin: 1rem 0;
}

/* ============================= TESTIMONIALS ============================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 2rem;
}
.testimonial {
  background: var(--surface);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(200, 150, 45, 0.1);
  position: relative;
  text-align: center;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: -10px; left: 20px;
  font-family: var(--font-heading);
  font-size: 6rem;
  color: var(--gold-dim);
  line-height: 1;
}
.testimonial .stars { color: var(--gold); letter-spacing: 0.1em; margin-bottom: 1rem; font-size: var(--fs-lg); }
.testimonial p { font-family: var(--font-accent); font-style: italic; font-size: var(--fs-lg); color: var(--text); margin: 0 auto 1.5rem; }
.testimonial .author { font-size: var(--fs-xs); color: var(--muted); text-transform: uppercase; letter-spacing: 0.15em; }

/* ============================ LOCATION BAND =========================== */
.location-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}
.location-map {
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.location-map iframe { width: 100%; height: 100%; border: 0; filter: invert(0.9) hue-rotate(180deg) saturate(0.7); }
.location-info {
  background: var(--bg-raised);
  padding: clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.location-info h2 { font-size: var(--fs-2xl); margin-bottom: 2rem; }
.location-info .info-row {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(200, 150, 45, 0.08);
}
.location-info .info-row:last-child { border-bottom: 0; }
.location-info .info-icon { color: var(--gold); flex: 0 0 auto; font-size: 1.2rem; }
.location-info .info-row div { flex: 1; }
.location-info .info-row strong { color: var(--fg); display: block; margin-bottom: 0.2rem; font-size: var(--fs-sm); text-transform: uppercase; letter-spacing: 0.1em; }
.location-info .info-row p, .location-info .info-row a { color: var(--text); font-size: var(--fs-base); margin: 0; }

/* =============================== MENU PAGE ============================= */
.menu-nav {
  position: sticky;
  top: var(--header-h);
  z-index: 50;
  background: rgba(15, 13, 11, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gold-line);
  padding: 1rem 0;
}
.menu-nav ul {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  flex-wrap: wrap;
}
.menu-nav a {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text);
  padding: 0.5rem 0.2rem;
  border-bottom: 1px solid transparent;
  transition: all var(--dur) var(--ease);
}
.menu-nav a:hover, .menu-nav a.active { color: var(--gold-bright); border-color: var(--gold); }

.menu-section { padding: 4rem 0; scroll-margin-top: calc(var(--header-h) + 80px); }
.menu-section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.menu-section-title h2 {
  font-size: var(--fs-3xl);
  display: inline-block;
  position: relative;
  padding-bottom: 1rem;
}
.menu-section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: var(--gold);
}
.menu-section-title p { color: var(--muted); font-family: var(--font-accent); font-style: italic; font-size: var(--fs-lg); margin-top: 1rem; }

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: 2rem 4rem;
  max-width: 900px;
  margin: 0 auto;
}
.menu-item { padding: 1rem 0; border-bottom: 1px dashed rgba(200, 150, 45, 0.15); }
.menu-item-head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.4rem;
}
.menu-item-head h3 {
  font-size: var(--fs-lg);
  color: var(--fg);
  font-weight: 600;
  flex: 0 0 auto;
  letter-spacing: 0;
}
.menu-item-dots {
  flex: 1;
  border-bottom: 1px dotted var(--gold-line);
  margin: 0 0.5rem;
  transform: translateY(-4px);
}
.menu-item-price {
  color: var(--gold);
  font-family: var(--font-accent);
  font-style: italic;
  font-size: var(--fs-lg);
  font-weight: 500;
  flex: 0 0 auto;
}
.menu-item p { font-size: var(--fs-sm); color: var(--muted); line-height: 1.55; }
.menu-item .badges { display: inline-flex; gap: 0.4rem; margin-left: 0.5rem; vertical-align: middle; }
.menu-item .badge {
  font-size: 0.6rem;
  padding: 0.2rem 0.5rem;
  background: var(--gold-dim);
  color: var(--gold-bright);
  border: 1px solid var(--gold-line);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.set-menu-banner {
  background: var(--bg-raised);
  border: 1px solid var(--gold-line);
  padding: clamp(2rem, 5vw, 3.5rem);
  margin: 3rem auto;
  max-width: 800px;
  text-align: center;
}
.set-menu-banner h3 { font-size: var(--fs-2xl); color: var(--gold-bright); margin-bottom: 0.5rem; }
.set-menu-banner .price-tag { font-family: var(--font-heading); font-size: var(--fs-3xl); color: var(--gold); margin: 1rem 0; display: block; }

/* ============================== GALLERY =============================== */
.gallery-filters {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.gallery-filter {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 0.7rem 1.4rem;
  background: transparent;
  border: 1px solid var(--gold-line);
  color: var(--text);
  cursor: pointer;
  transition: all var(--dur) var(--ease);
}
.gallery-filter:hover, .gallery-filter.active { background: var(--gold); color: var(--bg); border-color: var(--gold); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  cursor: pointer;
  background: var(--surface);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-out); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(15, 13, 11, 0.8));
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item.hidden { display: none; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 4, 3, 0.94);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  backdrop-filter: blur(8px);
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: 2rem; right: 2rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(200, 150, 45, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close:hover { background: var(--gold); color: var(--bg); }

/* ========================== RESERVATION / FORM ========================= */
.booking-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.booking-widget {
  background: var(--bg-raised);
  border: 1px solid var(--gold-line);
  padding: clamp(2rem, 4vw, 3rem);
}
.booking-widget h2 { font-size: var(--fs-2xl); margin-bottom: 0.5rem; }
.booking-widget > p { color: var(--muted); margin-bottom: 2rem; font-family: var(--font-accent); font-style: italic; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-field { margin-bottom: 1rem; }
.form-field label {
  display: block;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid rgba(200, 150, 45, 0.15);
  color: var(--fg);
  padding: 0.9rem 1rem;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  border-radius: var(--radius);
  transition: all var(--dur) var(--ease);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--surface2);
  box-shadow: 0 0 0 3px rgba(200, 150, 45, 0.12);
}
.form-field textarea { min-height: 120px; resize: vertical; font-family: var(--font-body); }
.form-field select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23C8962D' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

.time-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.time-slot {
  padding: 0.7rem 0.5rem;
  background: var(--surface);
  border: 1px solid rgba(200, 150, 45, 0.15);
  color: var(--text);
  font-size: var(--fs-sm);
  cursor: pointer;
  text-align: center;
  transition: all var(--dur) var(--ease);
  font-family: var(--font-body);
}
.time-slot:hover:not(:disabled) { border-color: var(--gold); color: var(--gold-bright); }
.time-slot.selected { background: var(--gold); color: var(--bg); border-color: var(--gold); font-weight: 600; }
.time-slot:disabled { opacity: 0.3; cursor: not-allowed; text-decoration: line-through; }

.booking-step { display: none; animation: fadeInUp 0.5s var(--ease-out); }
.booking-step.active { display: block; }
.booking-step .step-label { color: var(--gold); font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 1.5rem; display: block; }
.booking-success {
  text-align: center;
  padding: 2rem 0;
}
.booking-success .check {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
.booking-success h3 { font-size: var(--fs-2xl); margin-bottom: 1rem; color: var(--gold-bright); }
.booking-success p { color: var(--text); margin: 0 auto; }
.booking-success .summary {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--surface);
  border-left: 3px solid var(--gold);
  text-align: left;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.booking-success .summary span { display: block; margin: 0.3rem 0; }

.booking-info {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--surface);
  border-top: 2px solid var(--gold);
}
.booking-info h3 { font-size: var(--fs-xl); margin-bottom: 1rem; }
.booking-info ul { margin: 1.5rem 0; }
.booking-info li {
  padding: 0.8rem 0;
  color: var(--text);
  border-bottom: 1px solid rgba(200, 150, 45, 0.1);
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}
.booking-info li::before { content: '◆'; color: var(--gold); font-size: 0.7rem; margin-top: 0.3rem; }
.booking-info .note { color: var(--muted); font-size: var(--fs-sm); margin-top: 1.5rem; font-family: var(--font-accent); font-style: italic; }

/* =============================== FOOTER =============================== */
.site-footer {
  background: #0A0907;
  border-top: 1px solid rgba(200, 150, 45, 0.1);
  padding: 4rem 0 1.5rem;
  margin-top: var(--section-gap);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand h3 {
  font-size: var(--fs-xl);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  color: var(--gold-bright);
}
.footer-brand p { color: var(--muted); font-size: var(--fs-sm); max-width: 320px; font-family: var(--font-accent); font-style: italic; }
.footer-col h4 {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col a { color: var(--text); font-size: var(--fs-sm); }
.footer-col p { color: var(--text); font-size: var(--fs-sm); margin-bottom: 0.5rem; }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(200, 150, 45, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--muted);
  font-size: var(--fs-xs);
}
.footer-social { display: flex; gap: 0.8rem; }
.footer-social a {
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  color: var(--text);
  transition: all var(--dur) var(--ease);
}
.footer-social a:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); transform: translateY(-2px); }

/* ============================== ANIMATIONS ============================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ========================= MOBILE RESPONSIVE =========================== */
@media (max-width: 960px) {
  :root { --header-h: var(--header-h-mobile); }
  .topbar-info { justify-content: center; width: 100%; gap: 1rem; font-size: 0.7rem; }
  .topbar-social { display: none; }
  .topbar .container { justify-content: center; }
  .site-header .container {
    grid-template-columns: auto 1fr auto;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    gap: 1rem;
  }
  .nav-primary, .nav-secondary {
    position: fixed;
    inset: var(--header-h-mobile) 0 0;
    background: var(--bg);
    flex-direction: column;
    justify-content: flex-start;
    padding: 3rem 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-out);
    z-index: 99;
    border-top: 1px solid var(--gold-line);
  }
  .nav-primary.open, .nav-secondary.open { transform: translateX(0); }
  .nav-primary a, .nav-secondary a { font-size: var(--fs-lg); letter-spacing: 0.1em; padding: 0.8rem 0; }
  .nav-secondary { padding-top: 14rem; }
  .nav-toggle { display: inline-flex; justify-self: end; }
  .brand { justify-self: start; }
  .brand-name { font-size: 1.1rem; letter-spacing: 0.1em; }
  .brand-italic, .brand-sub { display: none; }
  .split { grid-template-columns: 1fr; }
  .split.reverse > .split-media { order: -1; }
  .split-media { aspect-ratio: 3 / 2; }
  .booking-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .location-band { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .hero h1 { font-size: clamp(2rem, 9vw, 3.5rem); }
  .hero-sub { font-size: var(--fs-lg); }
  .section-header h2, .menu-section-title h2 { font-size: var(--fs-2xl); }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; }
  .testimonial { padding: 2rem 1.5rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

/* ============================================
   PATCH: Missing classes — Chunk 1/5 (Header)
   ============================================ */
.brand-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  display: block;
  flex-shrink: 0;
}
.brand-accent { color: var(--gold); font-style: italic; font-family: var(--font-accent); }
.brand-name,
.brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  color: var(--ink);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.topbar {
  background: rgba(0,0,0,0.35);
  border-bottom: 1px solid rgba(200,150,45,0.12);
  font-size: 0.78rem;
  color: var(--muted);
}
.topbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.55rem var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar-left, .topbar-right { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
.topbar-item { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--muted); text-decoration: none; }
.topbar-item:hover { color: var(--gold); }
.site-header { min-height: 76px; }
.site-header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1rem var(--space-lg);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.5rem 0;
  transition: color 0.25s;
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -2px;
  width: 20px; height: 1px;
  background: var(--gold);
  transform: translateX(-50%);
}

/* ============================================
   PATCH: Chunk 2/5 (Hero accents + splits)
   ============================================ */
.hero-title-accent {
  display: block;
  color: var(--gold);
  font-style: italic;
  font-family: var(--font-accent);
  font-weight: 400;
  font-size: 0.85em;
  margin-top: 0.2em;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-align: center;
  pointer-events: none;
  animation: scrollPulse 2.4s ease-in-out infinite;
}
.hero-scroll::after {
  content: "";
  display: block;
  margin: 0.6rem auto 0;
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 1; }
}
.page-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem var(--space-lg) 5rem;
  background: linear-gradient(rgba(15,13,11,0.78), rgba(15,13,11,0.88)), var(--bg) center/cover;
  border-bottom: 1px solid rgba(200,150,45,0.12);
}
.page-hero-compact { min-height: 38vh; padding: 7rem var(--space-lg) 4rem; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--ink);
  margin: 0 0 1rem;
}
.page-hero .eyebrow {
  color: var(--gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 0.8rem;
}
.page-hero p { color: var(--muted); max-width: 640px; margin: 0 auto; }
.split-reverse > :first-child { order: 2; }
.split-reverse > :last-child { order: 1; }
.split-media-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--gold);
  color: var(--bg);
  padding: 1rem 1.5rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.section-title-italic {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  font-weight: 400;
  display: block;
  margin-bottom: 0.3rem;
}
.pull-quote {
  border-left: 2px solid var(--gold);
  padding: 1.5rem 2rem;
  margin: 3rem auto;
  max-width: 780px;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  color: var(--ink);
  line-height: 1.5;
}
.pull-quote cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-body);
  font-style: normal;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.value-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(200,150,45,0.15);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}
.value-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.value-card h3 { font-family: var(--font-display); color: var(--gold); margin: 1rem 0 0.5rem; }
.value-card p { color: var(--muted); font-size: 0.92rem; }

/* ============================================
   PATCH: Chunk 3/5 (Booking widget)
   ============================================ */
.booking-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}
.booking-widget {
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(200,150,45,0.2);
  padding: 2.5rem;
  position: relative;
}
.booking-stepper {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(200,150,45,0.12);
}
.booking-stepper .step {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.5;
  transition: opacity 0.3s, color 0.3s;
}
.booking-stepper .step.active { color: var(--gold); opacity: 1; }
.booking-stepper .step.done { color: var(--ink); opacity: 1; }
.booking-stepper .step-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}
.booking-step { display: none; }
.booking-step[data-active="true"] { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.booking-step h3 {
  font-family: var(--font-display);
  color: var(--ink);
  font-size: 1.4rem;
  margin: 0 0 0.4rem;
}
.booking-step .step-hint { color: var(--muted); font-size: 0.88rem; margin-bottom: 1.5rem; }
.booking-actions {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(200,150,45,0.12);
}
.booking-summary {
  background: rgba(200,150,45,0.06);
  border: 1px solid rgba(200,150,45,0.18);
  padding: 1rem 1.2rem;
  margin-bottom: 1.5rem;
  font-size: 0.88rem;
  color: var(--muted);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.5rem 1rem;
}
.booking-summary strong { color: var(--gold); display: block; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.2rem; }
.booking-success {
  text-align: center;
  padding: 2rem 1rem;
}
.booking-success .success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.2rem;
}
.booking-success .reference {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  background: rgba(200,150,45,0.1);
  border: 1px dashed var(--gold);
  color: var(--gold);
  font-family: ui-monospace, monospace;
  letter-spacing: 0.15em;
}
.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
  gap: 0.6rem;
  margin-top: 1rem;
}
.slot {
  padding: 0.75rem 0.5rem;
  background: transparent;
  border: 1px solid rgba(200,150,45,0.25);
  color: var(--ink);
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  font-family: var(--font-body);
}
.slot:hover:not(:disabled) { border-color: var(--gold); color: var(--gold); }
.slot.selected { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.slot:disabled { opacity: 0.25; cursor: not-allowed; text-decoration: line-through; }
.booking-info {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(200,150,45,0.15);
  padding: 2rem;
  position: sticky;
  top: 100px;
}
.booking-info h3 {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}
.booking-info + .booking-info { margin-top: 1.5rem; }
.booking-info ul { list-style: none; padding: 0; margin: 0; }
.booking-info li { padding: 0.5rem 0; color: var(--muted); font-size: 0.9rem; border-bottom: 1px solid rgba(200,150,45,0.08); display: flex; justify-content: space-between; gap: 1rem; }
.booking-info li:last-child { border-bottom: none; }
.booking-info li strong { color: var(--ink); }

/* ============================================
   PATCH: Chunk 4/5 (Gallery + Forms + Menu)
   ============================================ */
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.gallery-filter button {
  padding: 0.6rem 1.4rem;
  background: transparent;
  border: 1px solid rgba(200,150,45,0.3);
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  font-family: var(--font-body);
}
.gallery-filter button:hover,
.gallery-filter button.active {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.2rem;
}
.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  background: #000;
  border: 1px solid transparent;
  transition: border-color 0.3s;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, opacity 0.3s;
}
.gallery-item:hover { border-color: var(--gold); }
.gallery-item:hover img { transform: scale(1.06); opacity: 0.85; }
.gallery-item::after {
  content: "+";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  color: var(--gold);
  font-size: 2.5rem;
  font-weight: 200;
  opacity: 0;
  transition: all 0.3s;
  pointer-events: none;
}
.gallery-item:hover::after { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.gallery-item[hidden] { display: none; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-field { display: flex; flex-direction: column; margin-bottom: 1rem; }
.form-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
  font-weight: 600;
}
.form-input,
.form-textarea,
select.form-input {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(200,150,45,0.25);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
  border-radius: 0;
}
.form-input:focus,
.form-textarea:focus,
select.form-input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(0,0,0,0.5);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-error {
  color: #e57373;
  font-size: 0.82rem;
  margin-top: 0.4rem;
  min-height: 1em;
}
.form-success {
  background: rgba(200,150,45,0.1);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 1rem 1.2rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-info-list li {
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(200,150,45,0.12);
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 1rem;
  align-items: start;
}
.contact-info-list li:last-child { border-bottom: none; }
.contact-info-list .icon {
  color: var(--gold);
  font-size: 1.3rem;
  line-height: 1;
  margin-top: 0.2rem;
}
.contact-info-list .label {
  display: block;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.contact-info-list .value { color: var(--ink); }
.contact-info-list a { color: var(--ink); text-decoration: none; }
.contact-info-list a:hover { color: var(--gold); }
.contact-form-card {
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(200,150,45,0.2);
  padding: 2.5rem;
}
.btn-block { display: block; width: 100%; text-align: center; }
.btn-gold,
.btn.btn-gold {
  background: var(--gold);
  color: var(--bg);
  border: 1px solid var(--gold);
}
.btn-gold:hover,
.btn.btn-gold:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
}
.menu-item-dots {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 0.6rem;
}
.menu-item-dots .name { color: var(--ink); font-family: var(--font-display); font-size: 1.05rem; }
.menu-item-dots .leader {
  border-bottom: 1px dashed rgba(200,150,45,0.35);
  transform: translateY(-4px);
}
.menu-item-dots .price { color: var(--gold); font-family: var(--font-display); font-size: 1.05rem; }
.menu-item-dots + .menu-item-desc { color: var(--muted); font-size: 0.85rem; margin-top: 0.3rem; margin-bottom: 1.2rem; }

/* ============================================
   PATCH: Chunk 5/5 (Footer + Lightbox + Mobile)
   ============================================ */
.menu-nav {
  position: sticky;
  top: 76px;
  background: rgba(15,13,11,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(200,150,45,0.15);
  z-index: 50;
  padding: 1rem var(--space-lg);
}
.menu-nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.menu-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.3rem 0;
  transition: color 0.2s;
  border-bottom: 1px solid transparent;
}
.menu-nav a:hover, .menu-nav a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.promo-price {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: clamp(2rem, 5vw, 3.2rem);
  display: block;
  line-height: 1;
  margin: 0.4rem 0 1rem;
}
.promo-price .currency { font-size: 0.6em; vertical-align: super; margin-right: 0.1em; }
.promo-band-overlay {
  position: relative;
  background: linear-gradient(rgba(107,28,35,0.85), rgba(107,28,35,0.85)), var(--bg) center/cover;
  padding: 5rem var(--space-lg);
  text-align: center;
  color: var(--ink);
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  max-width: var(--container);
  margin: 0 auto;
  align-items: stretch;
}
.location-info {
  padding: 4rem 3rem;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(200,150,45,0.15);
}
.location-map {
  border: 1px solid rgba(200,150,45,0.15);
  border-left: none;
  min-height: 420px;
}
.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  border: 0;
  filter: grayscale(0.6) brightness(0.85);
}
.map-full {
  width: 100%;
  min-height: 450px;
  border: 1px solid rgba(200,150,45,0.15);
  margin-top: 3rem;
}
.map-full iframe {
  width: 100%;
  min-height: 450px;
  border: 0;
  display: block;
  filter: grayscale(0.5) brightness(0.85);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 4rem var(--space-lg) 3rem;
}
.footer-brand .brand { font-size: 1.5rem; margin-bottom: 1rem; }
.footer-tagline { color: var(--muted); font-size: 0.88rem; max-width: 300px; }
.footer-heading {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 1.2rem;
  font-family: var(--font-body);
  font-weight: 600;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact, .footer-hours { color: var(--muted); font-size: 0.88rem; line-height: 1.8; }
.footer-contact a { color: var(--muted); text-decoration: none; }
.footer-contact a:hover { color: var(--gold); }
.hours-list { list-style: none; padding: 0; margin: 0; }
.hours-list li { display: flex; justify-content: space-between; color: var(--muted); font-size: 0.88rem; padding: 0.25rem 0; }
.hours-list .closed { opacity: 0.5; }
.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(200,150,45,0.3);
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.25s;
  font-size: 0.85rem;
}
.footer-social a:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(200,150,45,0.12);
  padding: 1.5rem var(--space-lg);
  text-align: center;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}
.footer-legal { display: flex; gap: 1.5rem; justify-content: center; margin-top: 0.6rem; }
.footer-legal a { color: var(--muted); text-decoration: none; }
.footer-legal a:hover { color: var(--gold); }
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 2rem;
}
.lightbox.open { display: flex; animation: fadeIn 0.3s; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 1.4rem;
  cursor: pointer;
}
.lightbox-close:hover { background: var(--gold); color: var(--bg); }
@media (max-width: 820px) {
  .site-header-inner { grid-template-columns: auto auto; }
  .site-header-inner nav { display: none; }
  .topbar-inner { font-size: 0.72rem; }
  .topbar-left, .topbar-right { gap: 0.8rem; }
  .booking-wrap { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .location-map { border-left: 1px solid rgba(200,150,45,0.15); border-top: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; padding-top: 3rem; }
  .booking-widget { padding: 1.5rem; }
  .booking-stepper { flex-direction: column; gap: 0.8rem; }
  .booking-stepper .step { font-size: 0.72rem; }
  .page-hero { padding: 6rem 1rem 3.5rem; }
}
@media (max-width: 540px) {
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .brand-logo { width: 44px; height: 44px; }
  .brand-name, .brand { font-size: 1.1rem; }
  .contact-form-card { padding: 1.5rem; }
  .slot-grid { grid-template-columns: repeat(auto-fill, minmax(78px, 1fr)); }
}

/* ============================================
   PATCH: Chunk 6/6 (Stepper real class names)
   ============================================ */
.booking-stepper { list-style: none; }
.booking-stepper-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.5;
  transition: opacity 0.3s, color 0.3s;
  position: relative;
}
.booking-stepper-item.active { color: var(--gold); opacity: 1; }
.booking-stepper-item.done { color: var(--ink); opacity: 1; }
.booking-stepper-item.active .booking-stepper-num { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.booking-stepper-item.done .booking-stepper-num { border-color: var(--ink); color: var(--ink); }
.booking-stepper-num {
  width: 30px; height: 30px;
  min-width: 30px;
  border-radius: 50%;
  border: 1px solid currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-family: var(--font-body);
  flex-shrink: 0;
}
.booking-stepper-label { font-weight: 500; }
.booking-stepper-item + .booking-stepper-item::before {
  content: "";
  position: absolute;
  left: -0.8rem;
  top: 50%;
  width: 0.6rem;
  height: 1px;
  background: rgba(200,150,45,0.2);
}

/* ============================================
   PATCH: Chunk 7 (booking-step.active + .time-slot)
   ============================================ */
.booking-step { display: none; }
.booking-step.active { display: block; animation: fadeIn 0.4s ease; }
.time-slot {
  padding: 0.75rem 0.5rem;
  background: transparent;
  border: 1px solid rgba(200,150,45,0.25);
  color: var(--ink);
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  font-family: var(--font-body);
}
.time-slot:hover:not(:disabled) { border-color: var(--gold); color: var(--gold); }
.time-slot.selected { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.time-slot:disabled { opacity: 0.25; cursor: not-allowed; text-decoration: line-through; }
#time-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
  gap: 0.6rem;
  margin-top: 1rem;
}
#booking-next-1 { display: none; }
