/* ════════════════════════════════════════════
   BRIGADE — style.css
   Dark luxury Mediterranean aesthetic
   Fonts: Great Vibes (brand + display calligraphy) · Cormorant Garamond (accent) · Outfit (body)
   ════════════════════════════════════════════ */

/* ─── TOKENS ─────────────────────────────── */
:root {
  --bg:          #272019;
  --bg-2:        #302820;
  --bg-3:        #3a3028;
  --bg-4:        #453a30;

  --bg-light:    #ddd5c8;
  --bg-light-2:  #d3cab9;
  --bg-light-3:  #c9bfac;
  --text-dark:   #1c1814;
  --text-mid:    #3e3630;
  --text-muted:  #6a5e50;

  --gold:        #c8a96e;
  --gold-dim:    #a18a58;
  --gold-on-light: #9a7238;
  --gold-light:  #e8d5a3;
  --cream:       #f4f0e8;
  --muted:       #a69888;
  --wine:        #8b2635;
  --border:      rgba(200, 169, 110, 0.18);
  --border-solid:#3e3830;
  --border-light:#a89880;
  --shadow:      0 8px 40px rgba(0,0,0,0.45);

  --font-script:  'EB Garamond', Georgia, serif;
  --font-display: 'EB Garamond', Georgia, serif;
  --font-accent:  'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', system-ui, sans-serif;

  --transition: 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;

  --max-w: 1160px;
}

/* ─── RESET & BASE ───────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── SCROLLBAR ──────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }

/* ─── SELECTION ──────────────────────────── */
::selection { background: var(--gold); color: var(--bg); }

/* ─── CONTAINER ──────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─── TYPOGRAPHY UTILITIES ───────────────── */
.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-label.centered { text-align: center; }

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.15;
  letter-spacing: 0.04em;
  color: var(--cream);
}
.section-heading em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
}
.section-heading.centered { text-align: center; }

/* ─── BUTTONS ────────────────────────────── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  transition: background var(--transition-fast), color var(--transition-fast), transform 0.2s;
}
.btn-gold:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-gold.btn-large { padding: 1rem 2.4rem; font-size: 0.82rem; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(242, 237, 228, 0.3);
  transition: border-color var(--transition-fast), color var(--transition-fast), transform 0.2s;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ─── SCROLL ANIMATIONS ──────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate].is-visible {
  opacity: 1;
  transform: none;
}

/* ════════════════════════════════════════════
   LOADER
   ════════════════════════════════════════════ */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
#loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
}

.loader-logo-wrap {
  width: min(200px, 48vw);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: loaderCardIn 0.5s ease both;
}
.loader-logo-img {
  width: 100%;
  max-width: 200px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 6px 32px rgba(180, 140, 60, 0.18));
}

.loader-divider {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  opacity: 0;
  animation: loaderFadeUp 0.4s ease 0.3s forwards;
}
.loader-rule {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold-dim);
}
.loader-tagline {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: var(--gold-dim);
  text-transform: uppercase;
  white-space: nowrap;
}

.loader-bar-track {
  width: 220px;
  height: 1px;
  background: var(--border-solid);
  overflow: hidden;
  opacity: 0;
  animation: loaderFadeUp 0.3s ease 0.2s forwards;
}
.loader-bar-fill {
  height: 100%;
  background: linear-gradient(to right, var(--gold-dim), var(--gold));
  width: 0;
  animation: loaderFill 1s ease 0.2s forwards;
}

@keyframes loaderCardIn {
  from { opacity: 0; transform: scale(0.88) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes loaderFadeUp {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}
@keyframes loaderFill {
  from { width: 0%; }
  to   { width: 100%; }
}

/* ════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0.6rem 2rem;
  transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}
#navbar.scrolled {
  background: rgba(28, 25, 22, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.6rem 2rem;
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.nav-logo-img {
  height: 120px;
  width: auto;
  object-fit: contain;
  margin: -28px 0;
}
.nav-logo-text {
  display: none;
  font-family: var(--font-script);
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.04em;
  color: var(--gold);
}

.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links li a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.9;
  transition: opacity var(--transition-fast), color var(--transition-fast);
  position: relative;
}
.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition-fast);
}
.nav-links li a:hover { opacity: 1; color: var(--gold); }
.nav-links li a:hover::after { width: 100%; }

.nav-cta {
  padding: 0.55rem 1.4rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background var(--transition-fast), color var(--transition-fast);
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--bg);
}

/* ─── LANGUAGE TOGGLE ────────────────────── */
.lang-toggle {
  padding: 0.35rem 0.7rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 4px;
  background: transparent;
  transition: background var(--transition-fast), color var(--transition-fast);
  cursor: pointer;
  white-space: nowrap;
}
.lang-toggle:hover {
  background: var(--gold);
  color: var(--bg);
}
.lang-toggle--mobile {
  margin-top: 1.5rem;
  padding: 0.5rem 1.2rem;
  font-size: 0.75rem;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  justify-self: end;
  z-index: 960;
  position: relative;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}
.nav-burger.open span { background: var(--gold); }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(28, 24, 20, 0.82);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.mobile-menu.open { opacity: 1; visibility: visible; }

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.mobile-menu ul li {
  overflow: hidden;
}
.mobile-menu ul li a {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.1em;
  color: var(--cream);
  padding: 0.6rem 0;
  transition: color 0.3s ease, transform 0.3s ease;
  transform: translateY(100%);
  opacity: 0;
}
.mobile-menu.open ul li a {
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu.open ul li:nth-child(1) a { transition-delay: 0.08s; }
.mobile-menu.open ul li:nth-child(2) a { transition-delay: 0.14s; }
.mobile-menu.open ul li:nth-child(3) a { transition-delay: 0.20s; }
.mobile-menu.open ul li:nth-child(4) a { transition-delay: 0.26s; }
.mobile-menu.open ul li:nth-child(5) a { transition-delay: 0.32s; }
.mobile-menu.open ul li:nth-child(6) a { transition-delay: 0.38s; }

.mobile-menu ul li a:hover,
.mobile-menu ul li a:active { color: var(--gold); }

.mobile-menu .mobile-cta {
  display: inline-block;
  padding: 0.9rem 2.8rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 1rem;
  transform: translateY(20px);
  opacity: 0;
  transition: background 0.3s ease, color 0.3s ease, transform 0.4s ease, opacity 0.4s ease;
}
.mobile-menu.open .mobile-cta {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.44s;
}
.mobile-menu .mobile-cta:hover {
  background: var(--gold);
  color: var(--bg);
}

.mobile-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition-delay: 0.5s;
}
.mobile-menu.open .mobile-social {
  opacity: 1;
  transform: translateY(0);
}
.mobile-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(242,237,228,0.75);
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.mobile-social-btn:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.mobile-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--muted);
  z-index: 10;
  transition: color 0.2s ease, transform 0.2s ease;
}
.mobile-close:hover { color: var(--cream); transform: rotate(90deg); }

.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 940;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  pointer-events: none;
}
.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════ */
#hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, #2e2118 0%, #1c1916 65%);
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 13, 12, 0.45);
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  max-width: 900px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: heroReveal 0.8s ease 0.2s forwards;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.6rem;
}
.title-greek {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--cream);
  opacity: 0;
  animation: heroReveal 0.9s ease 0.4s forwards;
}
.title-rule {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0.4rem auto;
  opacity: 0;
  animation: heroReveal 0.6s ease 0.65s forwards;
}
.title-latin {
  display: block;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1.5rem, 3.5vw, 2.8rem);
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--gold-light);
  opacity: 0;
  animation: heroReveal 0.9s ease 0.7s forwards;
}

.title-location {
  display: block;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.6rem;
  opacity: 0;
  animation: heroReveal 0.9s ease 0.7s forwards;
}

.hero-subtitle {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-bottom: 2.8rem;
  opacity: 0;
  animation: heroReveal 0.9s ease 0.9s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: 4rem;
  opacity: 0;
  animation: heroReveal 0.9s ease 1.1s forwards;
}

/* ─── Order Online Dropdown ─────────────── */
.order-online-wrap {
  position: relative;
}
.order-dropdown {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  display: flex;
  gap: 1.2rem;
  padding: 1.2rem 1.4rem;
  background: rgba(30, 28, 25, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(242, 237, 228, 0.12);
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.order-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.delivery-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 52px;
  border-radius: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}
.delivery-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.delivery-btn--wolt {
  background: #009de0;
}
.delivery-btn--efood {
  background: #ED2E2E;
}
.delivery-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 8px;
}

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  z-index: 2;
  opacity: 0;
  animation: heroReveal 0.8s ease 1.4s forwards;
}
.hero-scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}

/* ════════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════════ */
#about {
  padding: 8rem 0;
  background: var(--bg-light-2);
  overflow: hidden;
}

#about .section-label   { color: var(--gold-on-light); }
#about .section-heading { color: var(--text-dark); }
#about .section-heading em { color: var(--gold-on-light); }
#about .about-body      { color: var(--text-mid); }
#about .stat-num        { color: var(--gold-on-light); }
#about .stat-label      { color: var(--text-muted); }
#about .about-stats     { border-top-color: var(--border-light); }
#about .about-img-label { background: rgba(28,24,20,0.72); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  aspect-ratio: 3/4;
  max-height: 580px;
}
.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9) saturate(0.9);
  transition: filter var(--transition);
}
.about-image-wrap:hover .about-img { filter: brightness(1) saturate(1); }
.about-image-wrap.no-image {
  background: var(--bg-3);
  border: 1px solid var(--border);
}
.about-image-wrap.no-image::after {
  content: 'Photo coming soon';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--muted);
  font-size: 1rem;
}

.about-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 70%;
  height: 70%;
  border: 1px solid var(--border);
  z-index: -1;
}
.about-img-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(28,25,22,0.88);
  padding: 0.4rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.about-text { padding-left: 1rem; }

.about-body {
  font-size: 1.05rem;
  color: rgba(242,237,228,0.75);
  line-height: 1.85;
  margin: 1.8rem 0 3rem;
  max-width: 46ch;
}
.about-body--origin {
  font-size: 0.92rem;
  color: rgba(242,237,228,0.52);
  margin-top: -1.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
  font-style: italic;
}

.about-stats {
  display: flex;
  gap: 3rem;
  border-top: 1px solid var(--border);
  padding-top: 2.5rem;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
}
.stat-num sup {
  font-size: 0.9rem;
  vertical-align: super;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ─── About Features (Business / Accessibility) ── */
.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 2rem;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1rem;
  background: rgba(28,24,20,0.06);
  border: 1px solid var(--border-light);
  border-radius: 6px;
}
.about-feature svg {
  color: var(--gold-on-light);
  flex-shrink: 0;
}
.about-feature span {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-mid);
  letter-spacing: 0.02em;
}

/* ─── About Corporate Events strip ── */
.about-corporate {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 6rem;
  min-height: 480px;
  overflow: hidden;
}
.about-corporate-img-wrap {
  position: relative;
  overflow: hidden;
}
.about-corporate-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.88) saturate(0.9);
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.5s ease;
}
.about-corporate-img-wrap:hover .about-corporate-img {
  transform: scale(1.04);
  filter: brightness(0.95) saturate(1);
}
.about-corporate-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--bg-2) 100%);
  pointer-events: none;
}
.about-corporate-text {
  background: var(--bg-2);
  padding: 4rem 3.5rem 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-corporate-heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--cream);
  margin: 0.8rem 0 1.6rem;
}
.about-corporate-heading em {
  font-style: italic;
  color: var(--gold);
}
.about-corporate-body {
  font-size: 1rem;
  color: rgba(242,237,228,0.72);
  line-height: 1.85;
  max-width: 46ch;
  margin-bottom: 2rem;
}
.about-corporate-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.2rem;
  border: 1px solid var(--border);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  align-self: flex-start;
}
.about-corporate-badge svg { flex-shrink: 0; }

@media (max-width: 900px) {
  .about-corporate {
    grid-template-columns: 1fr;
    margin-top: 4rem;
  }
  .about-corporate-img-wrap {
    height: 300px;
  }
  .about-corporate-img-overlay {
    background: linear-gradient(to bottom, transparent 60%, var(--bg-2) 100%);
  }
  .about-corporate-text {
    padding: 2.5rem 1.5rem;
  }
}

/* ════════════════════════════════════════════
   MENU  — Light cream background, modern style
   ════════════════════════════════════════════ */
#menu {
  padding: 8rem 0;
  background: var(--bg-light);
}

#menu .section-label   { color: var(--gold-on-light); }
#menu .section-heading { color: var(--text-dark); }
#menu .section-heading em { color: var(--gold-on-light); }

.menu-tabs {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin: 3rem auto 3rem;
  padding: 0.35rem;
  background: rgba(28, 24, 20, 0.08);
  border-radius: 100px;
  width: fit-content;
  border: none;
}
.tab-btn {
  padding: 0.6rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: transparent;
  border: none;
  border-radius: 100px;
  transition: background var(--transition-fast), color var(--transition-fast);
}
.tab-btn:hover:not(.active) {
  background: rgba(28,24,20,0.07);
  color: var(--text-dark);
}
.tab-btn.active {
  background: var(--text-dark);
  color: var(--cream);
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

.menu-panels { min-height: 300px; }
.tab-panel {
  display: none;
  animation: tabFadeIn 0.35s ease;
}
.tab-panel.active { display: block; }

@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

.menu-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: none;
  max-width: 980px;
  margin: 0 auto;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.2rem 1.4rem 1.2rem 0;
  border-bottom: none;
  border-right: none;
  position: relative;
  transition: background var(--transition-fast), padding-left var(--transition-fast);
  cursor: default;
}
.menu-item:nth-child(odd)  { padding-right: 2rem; }
.menu-item:nth-child(even) { padding-left: 2rem; border-left: 1px solid var(--border-light); }

.menu-item:nth-child(odd)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 1px;
  background: var(--border-light);
  pointer-events: none;
}
.menu-item:nth-last-child(-n+2):nth-child(odd)::after { display: none; }
.menu-item:last-child:nth-child(odd) {
  grid-column: span 2;
  padding-left: 0;
  border-left: none;
}
.menu-item:last-child:nth-child(odd)::after { display: none; }
.menu-item:hover { background: rgba(28,24,20,0.03); }

.menu-item-text {
  flex: 1;
  min-width: 0;
}
.menu-item-text h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}
.menu-item-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.menu-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.35rem;
  padding: 0.15rem 0.6rem;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wine);
  border: 1px solid rgba(139,38,53,0.25);
  border-radius: 100px;
  background: rgba(139,38,53,0.06);
}
.menu-badge::before {
  content: '★';
  font-size: 0.55rem;
}

.menu-subcategory {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 2.5rem auto 1rem;
  max-width: 980px;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-light);
}

.menu-serves {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 0.4rem;
}

.menu-item--premium {
  border-left: 2px solid var(--gold-on-light) !important;
  padding-left: 1rem !important;
}
.menu-item--premium .menu-item-text h4 { color: var(--text-dark); }

.menu-note {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 1.8rem;
  letter-spacing: 0.02em;
}

.menu-cta {
  text-align: center;
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.menu-cta p {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.menu-cta-buttons {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.menu-delivery-btns {
  display: flex;
  gap: 0.6rem;
}

#menu .btn-gold {
  background: var(--text-dark);
  color: var(--cream);
  border-color: var(--text-dark);
}
#menu .btn-gold:hover {
  background: transparent;
  color: var(--text-dark);
}

/* ════════════════════════════════════════════
   GALLERY
   ════════════════════════════════════════════ */
#gallery {
  padding: 8rem 0 0;
  background: var(--bg-2);
}
.gallery-header {
  padding-bottom: 3.5rem;
}

.gallery-section {
  margin-bottom: 5rem;
}
.gallery-section:last-child {
  margin-bottom: 0;
}
.gallery-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0 0 1.8rem;
  margin: 0;
  text-align: center;
}

/* ── Gallery Carousel ── */
.gallery-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.carousel-viewport {
  overflow: hidden;
  width: 100%;
  border-radius: 8px;
}

.carousel-track {
  display: flex;
  align-items: center;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 60%;
  max-width: 60%;
  padding: 0 6px;
  transition: opacity 0.5s ease, transform 0.5s ease, filter 0.5s ease;
  opacity: 0.4;
  transform: scale(0.88);
  filter: brightness(0.5);
}

.carousel-slide.active {
  opacity: 1;
  transform: scale(1);
  filter: brightness(1);
  z-index: 2;
}

.carousel-slide img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}

/* Arrow buttons */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  background: rgba(28, 25, 22, 0.7);
  backdrop-filter: blur(6px);
  color: var(--cream);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.carousel-arrow:hover {
  background: rgba(28, 25, 22, 0.9);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.08);
}
.carousel-prev { left: 4px; }
.carousel-next { right: 4px; }

/* Responsive */
@media (max-width: 768px) {
  .gallery-carousel {
    padding: 0 44px;
  }
  .carousel-slide {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .carousel-arrow {
    width: 38px;
    height: 38px;
    font-size: 1.3rem;
  }
  .carousel-prev { left: 2px; }
  .carousel-next { right: 2px; }
}

@media (max-width: 480px) {
  .gallery-carousel {
    padding: 0 36px;
  }
  .carousel-slide {
    flex: 0 0 85%;
    max-width: 85%;
  }
  .carousel-arrow {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
  }
}

/* Lightbox */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(18,16,14,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
#lightbox.open { display: flex; }

#lightboxImgWrap {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
#lightboxImg {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border: 1px solid var(--border);
  animation: lightboxIn 0.3s ease;
}
@keyframes lightboxIn {
  from { opacity: 0; transform: scale(0.97); }
  to   { opacity: 1; transform: none; }
}

#lightboxClose,
#lightboxPrev,
#lightboxNext {
  position: absolute;
  color: var(--cream);
  font-size: 1.5rem;
  background: rgba(28,25,22,0.65);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  transition: background var(--transition-fast), color var(--transition-fast);
}
#lightboxClose:hover,
#lightboxPrev:hover,
#lightboxNext:hover {
  background: var(--gold);
  color: var(--bg);
}
#lightboxClose { top: 1.5rem; right: 1.5rem; }
#lightboxPrev { left: 1.5rem; top: 50%; transform: translateY(-50%); font-size: 2rem; }
#lightboxNext { right: 1.5rem; top: 50%; transform: translateY(-50%); font-size: 2rem; }

/* ════════════════════════════════════════════
   REVIEWS
   ════════════════════════════════════════════ */
#reviews {
  padding: 8rem 0;
  background: var(--bg);
  overflow: hidden;
}

.reviews-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin: 1.5rem 0 3rem;
}
.reviews-stars-display {
  font-size: 1.2rem;
  color: #f5b731;
  letter-spacing: 0.1em;
}
.reviews-score {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.reviews-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

.review-arrow {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--cream);
  background: rgba(200,169,110,0.1);
  border: 1px solid var(--border);
  flex-shrink: 0;
  transition: background var(--transition-fast), color var(--transition-fast);
  z-index: 2;
}
.review-arrow:hover {
  background: var(--gold);
  color: var(--bg);
}

.reviews-viewport {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.reviews-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.review-card {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 2.5rem 3rem;
  text-align: center;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

@media (min-width: 768px) {
  .review-card {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 1024px) {
  .review-card {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
}

.review-stars {
  font-size: 1rem;
  color: #f5b731;
  letter-spacing: 0.15em;
  margin-bottom: 1.2rem;
}

.review-text {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(242,237,228,0.85);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  min-height: 4.5em;
}

.review-author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.review-author strong {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.04em;
}
.review-author span {
  font-family: var(--font-body);
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reviews-cta {
  text-align: center;
  margin-top: 3rem;
}
.reviews-cta-link {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
}
.reviews-cta-link:hover {
  background: var(--gold) !important;
  color: var(--bg) !important;
}

/* ════════════════════════════════════════════
   LOCATION
   ════════════════════════════════════════════ */
#location {
  padding: 8rem 0;
  background: var(--bg-light-2);
}
#location .section-label   { color: var(--gold-on-light); }
#location .section-heading { color: var(--text-dark); }
#location .section-heading em { color: var(--gold-on-light); }
#location .contact-item strong { color: var(--gold-on-light); }
#location .contact-item p  { color: var(--text-mid); }
#location .contact-icon    { color: var(--gold-on-light); border-color: var(--border-light); }
#location .phone-link      { color: var(--text-dark); }
#location .phone-link:hover{ color: var(--gold-on-light); }
#location .btn-gold {
  background: var(--text-dark);
  color: var(--cream);
  border-color: var(--text-dark);
}
#location .btn-gold:hover {
  background: transparent;
  color: var(--text-dark);
}
#location .location-map { border-color: var(--border-light); }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: stretch;
  min-height: 520px;
}

.location-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.location-info .section-heading {
  margin: 1rem 0 2.5rem;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-bottom: 3rem;
}
.contact-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.contact-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-item strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.contact-item p {
  font-size: 0.92rem;
  color: rgba(242,237,228,0.7);
  line-height: 1.65;
}

.phone-link {
  font-size: 1.1rem;
  font-family: var(--font-accent);
  color: var(--cream);
  letter-spacing: 0.04em;
  transition: color var(--transition-fast);
}
.phone-link:hover { color: var(--gold); }

.location-map {
  border: 1px solid var(--border);
  overflow: hidden;
  min-height: 420px;
}
.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  filter: grayscale(0.5) brightness(0.8) saturate(0.7);
  transition: filter var(--transition);
}
.location-map:hover iframe { filter: grayscale(0) brightness(0.9) saturate(1); }

/* ─── Navbar social icons ── */
.nav-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: rgba(242,237,228,0.65);
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.nav-social-btn:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(139,38,53,0.08);
}

/* ─── Location social buttons ── */
.location-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.8rem;
}
.location-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--border);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.location-social-btn:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(139,38,53,0.06);
}

/* ════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */
#footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer-logo {
  height: 200px;
  width: auto;
  object-fit: contain;
  align-self: flex-start;
}
.footer-logo-text {
  font-family: var(--font-script);
  font-size: 1.6rem;
  font-style: italic;
  letter-spacing: 0.04em;
  color: var(--gold);
}
.footer-brand p {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding-top: 0.5rem;
}
.footer-nav a {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
  transition: color var(--transition-fast);
}
.footer-nav a:hover { color: var(--gold); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding-top: 0.5rem;
}
.footer-phone {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: var(--gold);
  transition: opacity var(--transition-fast);
}
.footer-phone:hover { opacity: 0.75; }
.footer-contact p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
}

.footer-delivery {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.4rem;
}
.footer-delivery-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}
.footer-delivery-link:first-child { background: #009de0; }
.footer-delivery-link:last-child { background: #ED2E2E; }
.footer-delivery-link:hover { transform: translateY(-1px); opacity: 0.85; }
.footer-delivery-logo {
  height: 20px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-bottom {
  padding-top: 2rem;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 960px) {
  #navbar { grid-template-columns: 1fr auto; }
  .nav-right { display: none; }
  .nav-burger { display: flex; }
  .nav-brand { justify-content: flex-start; }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-wrap { max-height: 400px; aspect-ratio: 4/3; }
  .about-text { padding-left: 0; }

  .location-grid { grid-template-columns: 1fr; gap: 3rem; }
  .location-map { min-height: 360px; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: span 2; }

  .menu-items { grid-template-columns: 1fr; }
  .menu-item {
    padding-left: 0 !important;
    padding-right: 0 !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: 1px solid var(--border-light) !important;
  }
  .menu-item::after { display: none !important; }
  .menu-item:last-child { border-bottom: none !important; }
  .menu-item:last-child:nth-child(odd) { grid-column: span 1; }
  .menu-item--premium { padding-left: 1rem !important; }
  .menu-subcategory { width: 100%; }

  .review-card { padding: 2rem 1.5rem; }
}

/* Mobile */
@media (max-width: 640px) {
  #navbar { padding: 0.7rem 1.4rem; }
  #navbar.scrolled { padding: 0.55rem 1.4rem; }

  .hero-actions { flex-direction: column; align-items: center; }
  .btn-gold, .btn-outline { width: 100%; max-width: 280px; justify-content: center; }
  .order-dropdown { flex-direction: row; }
  .delivery-btn { padding: 0.5rem 1rem; font-size: 0.7rem; }

  .about-stats { gap: 1.5rem; flex-wrap: wrap; }
  .about-features { flex-direction: column; }

  .menu-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    width: calc(100% - 2rem);
    border-radius: 100px;
  }
  .menu-tabs::-webkit-scrollbar { display: none; }
  .tab-btn { flex-shrink: 0; padding: 0.55rem 1.1rem; font-size: 0.68rem; }

  .menu-cta-buttons { flex-direction: column; }

  .gallery-grid { columns: 2 140px; }

  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: span 1; }

  #lightboxPrev { left: 0.5rem; }
  #lightboxNext { right: 0.5rem; }

  .contact-item { flex-direction: row; }

  .mobile-menu ul li a { font-size: clamp(1.4rem, 6vw, 2rem); }
  .mobile-close { top: 0.8rem; right: 1rem; }

  .container { padding: 0 1.4rem; }
  .section-heading { font-size: clamp(1.6rem, 5vw, 2.4rem); }

  .review-arrow { width: 36px; height: 36px; font-size: 1.5rem; }
  .review-card { padding: 1.5rem 1rem; }
  .review-text { font-size: 0.95rem; }
}

/* Very small screens */
@media (max-width: 400px) {
  .gallery-grid { columns: 1; }
  #navbar { padding: 0.6rem 1rem; }
}

/* ─── REDUCED MOTION ─────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero-photo { animation: none; }
}
