:root {
  --primary: #C97B5E;
  --primary-dark: #A8634A;
  --background: #FFF8F1;
  --surface: #FBF1E5;
  --text: #1C1917;
  --text-muted: #44403C;
  --text-subtle: #78716C;
  --border: rgba(28, 25, 23, 0.08);
  --border-strong: rgba(28, 25, 23, 0.18);
  --serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--background);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; cursor: pointer; }
button { cursor: pointer; font-family: inherit; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ========== NAV ========== */
.nav {
  background: var(--background);
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 0.5px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 32px; height: 32px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--background);
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
}
.logo-text {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--text);
  letter-spacing: 0.5px;
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 14px;
  color: var(--text);
  letter-spacing: 0.3px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--primary); }
.nav-cta {
  background: var(--primary);
  color: var(--background) !important;
  padding: 10px 22px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--primary-dark); color: var(--background) !important; }
.mobile-menu-toggle { display: none; background: none; border: none; font-size: 22px; }

/* ========== HERO ========== */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 580px;
}
.hero-text {
  padding: 64px 32px 48px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.eyebrow-line { width: 28px; height: 1px; background: var(--primary); }
.eyebrow-text {
  font-size: 11px;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}
h1 {
  font-family: var(--serif);
  font-size: 64px;
  line-height: 1.02;
  margin: 0 0 22px 0;
  font-weight: 400;
  letter-spacing: -1.5px;
}
h1 em { color: var(--primary); font-style: italic; }
.lede {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 0 36px 0;
  max-width: 440px;
}
.ctas { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--primary);
  color: var(--background);
  font-size: 14px;
  padding: 14px 30px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  border: none;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--primary-dark); }
.btn-secondary {
  background: transparent;
  border: 1px solid var(--text);
  color: var(--text);
  font-size: 14px;
  padding: 13px 26px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  transition: background 0.2s, color 0.2s;
}
.btn-secondary:hover { background: var(--text); color: var(--background); }
.info-row {
  display: flex;
  gap: 36px;
  padding-top: 36px;
  border-top: 0.5px solid var(--border);
  margin-top: 44px;
  flex-wrap: wrap;
}
.info-item-label {
  font-size: 10px;
  color: var(--text-subtle);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.info-item-value { font-size: 14px; color: var(--text); }
.hero-visual {
  background: var(--primary);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
#lottie-chef {
  width: 100%;
  height: 100%;
  max-width: 540px;
  max-height: 540px;
  position: relative;
  z-index: 2;
  mix-blend-mode: multiply;
}
.visual-tag {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-family: var(--serif);
  font-size: 11px;
  color: var(--background);
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.7;
  white-space: nowrap;
}

/* ========== FEATURED STRIP ========== */
.featured-strip {
  background: var(--text);
  color: var(--background);
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.featured { display: flex; gap: 32px; align-items: center; flex-wrap: wrap; }
.featured-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.6;
}
.featured-name {
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  opacity: 0.85;
}
.scroll-hint { font-size: 11px; letter-spacing: 1.5px; opacity: 0.5; }

/* ========== SECTION GENERIC ========== */
.section { padding: 96px 0; }
.section-eyebrow {
  font-size: 11px;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 16px;
}
h2 {
  font-family: var(--serif);
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: -1px;
  font-weight: 400;
  margin-bottom: 20px;
}
h2 em { color: var(--primary); font-style: italic; }
h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 8px;
}
.section-lede {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.7;
}

/* ========== THIS WEEK ========== */
.this-week { background: var(--surface); }
.dishes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.dish-card {
  background: var(--background);
  border-radius: 8px;
  overflow: hidden;
  border: 0.5px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.dish-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}
.dish-image {
  height: 200px;
  background: var(--primary);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 13px;
  color: var(--background);
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.85;
}
.dish-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1), transparent);
}
.dish-content { padding: 24px; }
.dish-tag {
  display: inline-block;
  font-size: 10px;
  color: var(--primary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 500;
}
.dish-name {
  font-family: var(--serif);
  font-size: 22px;
  margin-bottom: 8px;
}
.dish-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.dish-price {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--primary);
  font-style: italic;
}

/* ========== STORY ========== */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-image {
  background: var(--primary);
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  height: 480px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.story-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(28,25,23,0) 50%, rgba(28,25,23,.55) 100%);
  z-index: 1;
}
.story-image-text {
  font-family: var(--serif);
  font-size: 12px;
  color: var(--background);
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: .85;
  z-index: 2;
  padding-bottom: 20px;
  text-shadow: 0 1px 6px rgba(0,0,0,.4);
}
.story-content { padding-right: 32px; }
.signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--primary);
  margin-top: 32px;
}
.signature-name { font-size: 13px; color: var(--text-subtle); margin-top: 4px; letter-spacing: 1px; }

/* ========== TESTIMONIALS ========== */
.testimonials { background: var(--surface); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.testimonial {
  padding: 32px;
  background: var(--background);
  border-radius: 8px;
  border: 0.5px solid var(--border);
}
.stars {
  color: var(--primary);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-text {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50%;
  color: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 14px;
}
.author-info-name { font-size: 14px; font-weight: 500; }
.author-info-meta { font-size: 12px; color: var(--text-subtle); }

/* ========== GALLERY ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 48px;
}
.gallery-item {
  aspect-ratio: 1;
  background: var(--primary);
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 12px;
  color: var(--background);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: transform .3s ease;
  border: none;
  cursor: pointer;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item:hover .gallery-item__overlay { background: rgba(28,25,23,.18); }
/* Light grey overlay so the label stays readable on top of any photo */
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,25,23,.32);
  transition: background .25s ease;
  z-index: 1;
}
.gallery-item__label {
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 6px rgba(0,0,0,.35);
  padding: 0 12px;
  text-align: center;
}
/* Solid-colour fallback for tiles without a background photo */
.gallery-item:not(.has-bg):nth-child(2n) { background-color: var(--primary-dark); }
.gallery-item:not(.has-bg):nth-child(3n) { background-color: var(--text); }
.gallery-item:not(.has-bg) .gallery-item__overlay { background: transparent; }

/* ========== MENU PAGE ========== */
.menu-page-hero {
  background: var(--primary);
  color: var(--background);
  padding: 96px 32px 80px;
  text-align: center;
}
.menu-page-hero h1 {
  color: var(--background);
  font-size: 72px;
  margin-bottom: 12px;
}
.menu-page-hero h1 em { color: var(--background); opacity: 0.9; }
.menu-page-subtitle {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  opacity: 0.85;
  letter-spacing: 0.5px;
}
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 32px 16px 0;
  flex-wrap: wrap;
  border-bottom: 0.5px solid var(--border);
  background: var(--background);
  position: sticky;
  top: 70px;
  z-index: 50;
}
.menu-tab {
  background: transparent;
  border: none;
  padding: 16px 24px;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-subtle);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}
.menu-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}
.menu-tab:hover:not(.active) { color: var(--text); }
.menu-section { padding: 80px 0; }
.menu-section-title {
  font-family: var(--serif);
  font-size: 36px;
  text-align: center;
  margin-bottom: 8px;
}
.menu-section-meta {
  font-size: 12px;
  color: var(--text-subtle);
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 48px;
}
.menu-items {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 0.5px solid var(--border);
}
.menu-item:last-child { border-bottom: none; }
.menu-item-name {
  font-family: var(--serif);
  font-size: 22px;
  margin-bottom: 6px;
}
.menu-item-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 540px;
}
.menu-item-tags {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.menu-tag {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 100px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--surface);
  color: var(--text-subtle);
}
.menu-tag.v { background: #DCEEDC; color: #2D5A2D; }
.menu-tag.gf { background: #E8E0F0; color: #4A3470; }
.menu-tag.spicy { background: #F5DDD3; color: #8B3A1F; }
.menu-item-price {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--primary);
  font-style: italic;
  white-space: nowrap;
}
.menu-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-subtle);
  font-style: italic;
  padding: 32px 16px;
  max-width: 720px;
  margin: 0 auto;
}

/* ========== FOOTER ========== */
footer {
  background: var(--text);
  color: var(--background);
  padding: 80px 32px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.4fr;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto 64px;
}
.footer-grid:not(:has(.footer-subscribe)) {
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}
/* Newsletter column (matches warm restaurant palette) */
.footer-subscribe .footer-subscribe__lede {
  font-family: var(--serif, serif);
  font-style: italic;
  font-size: 14px;
  opacity: 0.7;
  line-height: 1.6;
  margin-bottom: 14px;
}
.footer-subscribe__form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-subscribe__form input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.04);
  color: inherit;
  font-size: 13px;
  border-radius: 4px;
  outline: none;
  transition: border-color .15s, background .15s;
}
.footer-subscribe__form input:focus {
  border-color: var(--primary);
  background: rgba(255,255,255,.08);
}
.footer-subscribe__form input::placeholder { opacity: 0.45; }
.footer-subscribe__form button {
  padding: 10px 14px;
  background: var(--primary);
  color: #fff;
  border: 0;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
  transition: background .15s;
}
.footer-subscribe__form button:hover { background: var(--primary-dark); }
.footer-subscribe__success {
  margin-top: 10px;
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
}
.footer-brand-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  opacity: 0.7;
  margin-top: 16px;
  max-width: 280px;
  line-height: 1.6;
}
.footer-col-title {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; opacity: 0.85; transition: opacity 0.2s; }
.footer-col a:hover { opacity: 1; color: var(--primary); }
.footer-bottom {
  padding-top: 32px;
  border-top: 0.5px solid rgba(255,248,241,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
}
.copyright { font-size: 12px; opacity: 0.5; }
.social-links { display: flex; gap: 16px; }
.social-links a {
  width: 36px; height: 36px;
  border: 0.5px solid rgba(255,248,241,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  opacity: 0.7;
  transition: opacity 0.2s, border-color 0.2s;
}
.social-links a:hover { opacity: 1; border-color: var(--primary); }

/* ========== MODAL ========== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 25, 23, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  padding: 20px;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal {
  background: var(--background);
  border-radius: 12px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s;
}
.modal-overlay.active .modal { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: var(--text-subtle);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.modal-close:hover { background: var(--surface); }
.modal-eyebrow {
  font-size: 11px;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.modal-title {
  font-family: var(--serif);
  font-size: 32px;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.modal-subtitle {
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 11px;
  color: var(--text-subtle);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 500;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 0.5px solid var(--border-strong);
  border-radius: 6px;
  font-size: 15px;
  background: var(--background);
  color: var(--text);
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(201, 123, 94, 0.15);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.party-pills, .time-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.pill {
  padding: 10px 16px;
  border: 0.5px solid var(--border-strong);
  border-radius: 100px;
  background: transparent;
  font-size: 14px;
  color: var(--text);
  font-family: inherit;
  transition: all 0.2s;
}
.pill:hover { border-color: var(--primary); }
.pill.active {
  background: var(--primary);
  color: var(--background);
  border-color: var(--primary);
}
.modal-submit {
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: var(--background);
  border: none;
  border-radius: 6px;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 12px;
  transition: background 0.2s;
}
.modal-submit:hover { background: var(--primary-dark); }
.modal-footnote {
  text-align: center;
  font-size: 12px;
  color: var(--text-subtle);
  margin-top: 16px;
  line-height: 1.5;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .mobile-menu-toggle { display: block; }
  .hero { grid-template-columns: 1fr; }
  .hero-text { padding: 48px 24px 32px; }
  h1 { font-size: 44px; }
  .hero-visual { min-height: 320px; }
  .info-row { gap: 24px; }
  .featured-strip { flex-direction: column; align-items: flex-start; }
  .section { padding: 64px 0; }
  .container { padding: 0 24px; }
  h2 { font-size: 32px; }
  .dishes-grid { grid-template-columns: 1fr; gap: 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .story { grid-template-columns: 1fr; gap: 40px; }
  .story-content { padding-right: 0; }
  .story-image { height: 320px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .menu-page-hero h1 { font-size: 48px; }
  .menu-page-hero { padding: 64px 24px 56px; }
  .menu-section-title { font-size: 28px; }
  .menu-item { grid-template-columns: 1fr; }
  .menu-item-price { font-size: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .modal { padding: 32px 24px; }
  .modal-title { font-size: 26px; }
}

@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  h1 { font-size: 36px; }
  .nav { padding: 14px 20px; }
  .menu-tabs { gap: 4px; padding-top: 24px; }
  .menu-tab { padding: 12px 14px; font-size: 12px; }
}

/* ============================================================
   PHP-LAYER ADDITIONS (lang switcher, FAB, active nav, mobile menu open)
   ============================================================ */

/* Active nav link */
.nav-links a.active { color: var(--primary); }

/* Language switcher dropdown */
.lang-switcher { position: relative; }
.lang-toggle {
  background: transparent;
  border: 1px solid var(--border-strong);
  padding: 7px 12px;
  border-radius: 4px;
  font-size: 13px;
  font-family: var(--sans);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: .3px;
  transition: border-color .2s, color .2s;
}
.lang-toggle:hover { border-color: var(--primary); color: var(--primary); }
.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
  list-style: none;
  padding: 6px;
  margin: 0;
  display: none;
  z-index: 200;
}
.lang-menu.open { display: block; }
.lang-menu li { list-style: none; }
.lang-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 4px;
  font-size: 13px;
  color: var(--text);
  transition: background .15s;
}
.lang-menu a:hover { background: var(--surface); color: var(--primary); }
.lang-menu a.active { background: var(--surface); color: var(--primary); }

/* Floating Book a Table FAB (bottom-right) */
.float-book-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--background);
  border: none;
  border-radius: 100px;
  padding: 14px 22px;
  font-size: 14px;
  font-family: var(--sans);
  letter-spacing: .5px;
  box-shadow: 0 8px 28px rgba(201,123,94,.45);
  cursor: pointer;
  transition: transform .25s, box-shadow .25s, background .2s;
}
.float-book-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(201,123,94,.55);
}
.float-book-btn i { font-size: 16px; }
@media (max-width: 991.98px) {
  .float-book-btn span { display: none; }
  .float-book-btn {
    width: 56px; height: 56px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
  .float-book-btn i { font-size: 20px; }
}

/* Mobile menu open state — slide-in pane from the right */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 88vw);
    height: 100vh;
    background: var(--background);
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 80px 24px 32px;
    box-shadow: -4px 0 32px rgba(0,0,0,.08);
    transition: right .3s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
    z-index: 150;
  }
  .nav-links.open { right: 0; }
  .nav-links a {
    padding: 14px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links a.nav-cta {
    border: none;
    margin-top: 16px;
    text-align: center;
  }
  .lang-switcher { padding: 12px 0; }
}

/* ============================================================
   GALLERY LIGHTBOX (categorised — inner images per tile)
   ============================================================ */
.gallery-item {
  cursor: pointer;
  border: none;
  font-family: var(--serif);
}
.gallery-item:focus-visible { outline: 2px solid var(--background); outline-offset: 4px; }

.gallery-lightbox {
  position: fixed; inset: 0;
  background: rgba(28,25,23,.92);
  display: none;
  align-items: center; justify-content: center;
  z-index: 1000;
  padding: 24px;
}
.gallery-lightbox.active { display: flex; }
.gallery-lightbox__inner {
  position: relative;
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.gallery-lightbox img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 6px;
  background: var(--surface);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.gallery-lightbox__caption {
  color: var(--background);
  text-align: center;
  font-family: var(--serif);
}
.gallery-lightbox__caption > div:first-child {
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.gallery-lightbox__count {
  font-size: 12px;
  font-family: var(--sans);
  letter-spacing: 1.5px;
  opacity: .55;
  margin-top: 4px;
}
.gallery-lightbox__close,
.gallery-lightbox__prev,
.gallery-lightbox__next {
  position: absolute;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--background);
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 20px;
  z-index: 1010;
  transition: background .2s;
}
.gallery-lightbox__close:hover,
.gallery-lightbox__prev:hover,
.gallery-lightbox__next:hover { background: rgba(255,255,255,.18); }
.gallery-lightbox__close { top: 24px; right: 24px; font-size: 22px; }
.gallery-lightbox__prev  { top: 50%; left: 24px;  transform: translateY(-50%); }
.gallery-lightbox__next  { top: 50%; right: 24px; transform: translateY(-50%); }
@media (max-width: 600px) {
  .gallery-lightbox__close { top: 16px; right: 16px; width: 40px; height: 40px; }
  .gallery-lightbox__prev,
  .gallery-lightbox__next  { width: 40px; height: 40px; bottom: 24px; top: auto; transform: none; }
  .gallery-lightbox__prev  { left: 24px; }
  .gallery-lightbox__next  { right: 24px; }
}

/* ============================================================
   TESTIMONIALS CAROUSEL — desktop shows 3 at once, mobile shows 1
   Supports drag/swipe (mouse + touch).
   ============================================================ */
.testimonials-carousel {
  margin-top: 48px;
  position: relative;
}
.testimonials-viewport {
  overflow: hidden;
  cursor: grab;
  user-select: none;
}
.testimonials-viewport.is-dragging { cursor: grabbing; }
.testimonials-viewport.is-dragging .testimonials-track { transition: none; }
.testimonials-track {
  display: flex;
  transition: transform .55s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
  touch-action: pan-y;        /* allow vertical scroll, intercept horizontal */
}
/* 3 cards on desktop, 1 on mobile, with a real visual gap between cards.
   We use margin (not gap) so each slide still measures exactly 1/N of the
   viewport width — that keeps translateX(-N * 100%) landing on the right page. */
.testimonials-track .testimonial {
  flex: 0 0 calc(100% / 3 - 16px);
  margin: 0 8px;
  box-sizing: border-box;
  -webkit-user-drag: none;
}
@media (max-width: 900px) {
  .testimonials-track .testimonial {
    flex: 0 0 calc(100% - 16px);
  }
}

/* Carousel dots — shared */
.carousel-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 28px;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(28,25,23,.18);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: width .25s, background .25s;
}
.carousel-dot.active {
  width: 24px;
  border-radius: 100px;
  background: var(--primary);
}

/* ============================================================
   MOBILE SNAP ROW (this-week dishes on mobile become a swipe row)
   ============================================================ */
@media (max-width: 768px) {
  .mobile-snap-row {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    margin: 0 -32px;
    padding: 0 32px 8px;
    flex-wrap: nowrap !important;
    grid-template-columns: none !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .mobile-snap-row::-webkit-scrollbar { display: none; }
  .mobile-snap-row > * {
    flex: 0 0 85%;
    scroll-snap-align: center;
    min-width: 0;
  }
  .mobile-snap-dots { display: flex !important; }
}
.mobile-snap-dots {
  display: none;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
}

/* ============================================================
   BRAND LOGO (BadeRestaurant — image + name like nursery/restaurant demos)
   ============================================================ */
.site-logo__link { text-decoration: none !important; gap: 10px; display: inline-flex; align-items: center; }
.logo-img { height: 32px; width: auto; }
.site-logo__text {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: .3px;
  white-space: nowrap;
  line-height: 1;
}
.site-logo__text strong { color: var(--primary); font-weight: 500; font-style: italic; }
@media (max-width: 575px) { .site-logo__text { font-size: 16px; } }

/* Footer logo: invert the brand text colour on dark footer bg */
footer .site-logo__text { color: var(--background); }
footer .site-logo__text strong { color: var(--primary); }

/* ============================================================
   DISHES SECTION — desktop is a 3-col grid (6 items wrap to 2 rows).
   Mobile is a swipe carousel (1 visible, drag/swipe).
   ============================================================ */
.dishes-carousel {
  margin-top: 48px;
  position: relative;
}
.dishes-viewport {
  overflow: visible;
}
.dishes-track {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -8px;
  /* JS only sets transform on mobile; on desktop we leave it untouched (none) */
}
.dishes-track .dish-card {
  flex: 0 0 calc(100% / 3 - 16px);
  margin: 0 8px 32px;
  box-sizing: border-box;
}
.dishes-carousel .carousel-dots { display: none; }

/* Mobile: swipe carousel — 1 visible, hide overflow, enable drag, show dots */
@media (max-width: 900px) {
  .dishes-viewport {
    overflow: hidden;
    cursor: grab;
    user-select: none;
  }
  .dishes-viewport.is-dragging { cursor: grabbing; }
  .dishes-viewport.is-dragging .dishes-track { transition: none; }
  .dishes-track {
    flex-wrap: nowrap;
    transition: transform .55s cubic-bezier(.4, 0, .2, 1);
    will-change: transform;
    touch-action: pan-y;
    margin: 0;
  }
  .dishes-track .dish-card {
    flex: 0 0 calc(100% - 16px);
    margin: 0 8px;
    -webkit-user-drag: none;
  }
  .dishes-carousel .carousel-dots { display: flex; }
}

/* Scroll hint as clickable link */
a.scroll-hint {
  cursor: pointer;
  transition: opacity .2s, color .2s;
  text-decoration: none;
}
a.scroll-hint:hover { opacity: 1; color: var(--primary); }

/* ============================================================
   STICKY SUBSCRIBE BAR
   ============================================================ */
.resto-sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--background);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 24px rgba(28,25,23,.08);
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 80;
  flex-wrap: wrap;
}
.resto-sticky-bar__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  flex-wrap: wrap;
  max-width: 900px;
}
.resto-sticky-bar__text {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--text);
  flex-shrink: 0;
}
.resto-sticky-bar__form {
  display: flex;
  gap: 0;
  flex: 1;
  min-width: 260px;
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}
.resto-sticky-bar__form input {
  flex: 1;
  padding: 10px 14px;
  border: none;
  outline: none;
  font-size: 14px;
  background: transparent;
  font-family: var(--sans);
  color: var(--text);
}
.resto-sticky-bar__form button {
  padding: 10px 22px;
  background: var(--primary);
  color: var(--background);
  border: none;
  font-size: 13px;
  letter-spacing: .5px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
}
.resto-sticky-bar__form button:hover { background: var(--primary-dark); }
#restoBarSuccess {
  color: var(--primary);
  font-family: var(--serif);
  font-size: 14px;
}
.resto-sticky-bar__close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-subtle);
  font-size: 22px;
  padding: 4px 10px;
  line-height: 1;
  flex-shrink: 0;
  transition: color .2s;
}
.resto-sticky-bar__close:hover { color: var(--text); }

/* When sticky bar visible, lift FAB above it */
body.resto-sticky-bar-visible .float-book-btn { bottom: calc(72px + env(safe-area-inset-bottom, 0px)); }
@media (min-width: 992px) {
  body.resto-sticky-bar-visible .float-book-btn { bottom: calc(96px + env(safe-area-inset-bottom, 0px)); }
}

/* Mobile: compress sticky bar (text hidden, just form + close) */
@media (max-width: 768px) {
  .resto-sticky-bar { padding: 10px 12px; gap: 8px; }
  .resto-sticky-bar__text { display: none; }
  .resto-sticky-bar__inner { gap: 8px; }
  .resto-sticky-bar__form { min-width: 0; }
  .resto-sticky-bar__form input { padding: 9px 10px; font-size: 13px; }
  .resto-sticky-bar__form button { padding: 9px 14px; font-size: 12px; }
}

/* Dish-image with photo background + readability overlay */
.dish-image {
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.dish-image__label {
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 6px rgba(0,0,0,.4);
  padding: 0 16px;
  text-align: center;
  display: none; /* hide the text label since we now have real food photos */
}
.dish-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(28,25,23,.05), rgba(28,25,23,.18));
  z-index: 1;
}

/* ============================================================
   MENU ITEM with thumbnail (left photo + body + price)
   ============================================================ */
.menu-item--with-thumb {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 0.5px solid var(--border);
}
.menu-item__thumb {
  width: 80px;
  height: 80px;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  background-color: var(--surface);
  flex-shrink: 0;
}
.menu-item__body { min-width: 0; }
@media (max-width: 600px) {
  .menu-item--with-thumb {
    grid-template-columns: 64px 1fr;
    gap: 14px;
  }
  .menu-item__thumb { width: 64px; height: 64px; }
  .menu-item__body { grid-column: 2; }
  .menu-item--with-thumb .menu-item-price {
    grid-column: 2;
    margin-top: 4px;
    font-size: 14px;
  }
}

/* ============================================================
   Logo demo tag — small italic line under the brand text
   ("Demo website by BadeStudio") so visitors instantly know
   this is a sales demo, not a real restaurant.
   ============================================================ */
.site-logo__stack {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-start;
  line-height: 1;
}
.site-logo__demo {
  font-family: var(--serif);
  font-style: italic;
  font-size: 11px;
  letter-spacing: .3px;
  color: var(--text-subtle);
  text-decoration: none;
  transition: color .2s;
  white-space: nowrap;
}
.site-logo__demo:hover { color: var(--primary); }
@media (max-width: 600px) {
  .site-logo__demo { font-size: 10px; letter-spacing: 0; }
}

/* Footer variant: lighter for dark footer background */
footer .site-logo__demo { color: rgba(255,248,241,.55); }
footer .site-logo__demo:hover { color: var(--background); }

/* ============================================================
   Brand logo image (header + footer + mobile menu)
   The wide SVG bakes in: B-mark + brand name + "Demo website by BadeStudio"
   so we never have to position text alongside an image again.
   ============================================================ */
.brand-logo {
  height: 48px;
  width: auto;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}
/* (footer uses logo-light.svg which has white text baked in) */
@media (max-width: 600px) {
  .brand-logo { height: 40px; }
}


/* ============================================================
   iOS Safari URL bar transition fix
   Force GPU compositing on fixed-bottom elements so the browser repaints
   them when the address bar slides away. Bottom-anchor (safe-area) only
   applies to full-width sticky bars; floating buttons keep their own
   offsets so they don't get pushed into the bar.
============================================================ */
.beauty-sticky-bar,
.nursery-sticky-bar,
.resto-sticky-bar,
.fitness-sticky-bar,
.business-sticky-bar,
.bs-sticky-bar,
.bm-fab,
.beauty-float-btn,
.nursery-float-btn,
.resto-float-btn,
.fitness-float-btn,
.business-float-btn {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  will-change: transform;
}
/* Sticky bars only: respect safe-area at bottom */
.beauty-sticky-bar,
.nursery-sticky-bar,
.resto-sticky-bar,
.fitness-sticky-bar,
.business-sticky-bar,
.bs-sticky-bar {
  padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 8px);
}
