/* ============================================================
   AL QUDS GRILL — DESIGN SYSTEM & STYLESHEET
   Premium Mediterranean Charcoal Grill — Montréal, QC
   ============================================================ */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font-body); background: var(--dark); color: var(--cream); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---- CSS VARIABLES ---- */
:root {
  --gold: #C8913A;
  --gold-light: #E8B96A;
  --gold-dark: #9B6E28;
  --dark: #0D0D0B;
  --charcoal: #161613;
  --surface: #1E1E1B;
  --surface-elevated: #272723;
  --cream: #F2E8D5;
  --cream-muted: #C8BAA2;
  --cream-light: #FAF5EC;
  --white: #FFFFFF;
  --text-muted: #7A7265;
  --border: rgba(200, 145, 58, 0.18);
  --border-light: rgba(242, 232, 213, 0.1);
  --ember: #C0392B;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --section-pad: 100px 0;
  --container-max: 1280px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --duration: 0.35s;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.35);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.5);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.65);
  --shadow-gold: 0 4px 28px rgba(200,145,58,0.28);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;
}

/* ---- CONTAINER ---- */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.12; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; }
p { font-size: 1rem; line-height: 1.75; color: var(--cream-muted); }

.eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title { margin-bottom: 16px; color: var(--cream); }
.section-subtitle { font-size: 1.05rem; color: var(--cream-muted); max-width: 560px; }
.section-header { margin-bottom: 64px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

.gold-line { display: block; width: 52px; height: 2px; background: var(--gold); margin: 20px 0; }
.gold-line.centered { margin: 20px auto; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 32px; border-radius: 50px; font-family: var(--font-body); font-size: 0.82rem;
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
  transition: all var(--duration) var(--ease); cursor: pointer; white-space: nowrap; border: 2px solid transparent;
}
.btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.btn-lg { padding: 18px 44px; font-size: 0.9rem; }
.btn-sm { padding: 10px 22px; font-size: 0.75rem; }

.btn-primary { background: var(--gold); color: var(--dark); border-color: var(--gold); box-shadow: var(--shadow-gold); }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 36px rgba(200,145,58,0.45); }

.btn-outline { background: transparent; color: var(--cream); border-color: rgba(242,232,213,0.35); }
.btn-outline:hover { background: rgba(242,232,213,0.06); border-color: var(--cream); transform: translateY(-2px); }

.btn-outline-gold { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--dark); transform: translateY(-2px); }

.btn-dark { background: var(--surface); color: var(--cream); border-color: var(--border-light); }
.btn-dark:hover { background: var(--surface-elevated); border-color: var(--gold); transform: translateY(-2px); }

/* ---- STARS ---- */
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 24px; height: 80px; display: flex; align-items: center;
  transition: background var(--duration) var(--ease), box-shadow var(--duration) var(--ease), height var(--duration) var(--ease);
}

.nav.scrolled {
  background: rgba(13, 13, 11, 0.97);
  box-shadow: 0 1px 0 var(--border), 0 4px 28px rgba(0,0,0,0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  height: 66px;
}

.nav-inner {
  max-width: var(--container-max); margin: 0 auto; width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}

.nav-logo-text {
  font-family: var(--font-display); font-size: 1.55rem; font-weight: 700;
  color: var(--cream); letter-spacing: -0.02em; line-height: 1;
}
.nav-logo-text span { color: var(--gold); }
.nav-logo-sub {
  display: block; font-family: var(--font-body); font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase; color: rgba(200,145,58,0.7); margin-top: 4px;
}

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(242,232,213,0.65); transition: color var(--duration) var(--ease); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: width var(--duration) var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--cream); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 30px; padding: 4px 0; cursor: pointer; }
.nav-toggle span { display: block; height: 2px; background: var(--cream); border-radius: 2px; transition: all var(--duration) var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Drawer */
.nav-drawer {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10, 10, 9, 0.98);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  z-index: 999; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 8px;
  transform: translateX(100%); transition: transform 0.4s var(--ease);
  padding: 80px 40px 40px;
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer a {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 700;
  color: var(--cream); transition: color var(--duration) var(--ease); padding: 8px 0;
}
.nav-drawer a:hover { color: var(--gold); }
.nav-drawer-divider { width: 48px; height: 1px; background: var(--border); margin: 12px 0; }
.nav-drawer-social { display: flex; gap: 20px; margin-top: 20px; }
.nav-drawer-social a { font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.nav-drawer-social a:hover { color: var(--gold); font-family: var(--font-body); font-size: 0.8rem; }

/* ============================================================
   FLOATING ORDER BAR
   ============================================================ */

.order-bar {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 900; background: rgba(22, 22, 19, 0.96);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border); border-radius: 50px; padding: 8px 10px;
  display: flex; align-items: center; gap: 6px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.65), 0 0 0 1px rgba(200,145,58,0.1);
  transition: all var(--duration) var(--ease);
}
.order-bar:hover { box-shadow: 0 12px 56px rgba(0,0,0,0.7), 0 0 0 1px rgba(200,145,58,0.3); }

.order-bar-btn {
  display: flex; align-items: center; gap: 7px; padding: 10px 18px; border-radius: 40px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase;
  transition: all var(--duration) var(--ease); white-space: nowrap; text-decoration: none;
}
.order-bar-btn svg { width: 14px; height: 14px; flex-shrink: 0; }
.order-bar-btn.primary { background: var(--gold); color: var(--dark); }
.order-bar-btn.primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.order-bar-btn.secondary { background: rgba(255,255,255,0.07); color: var(--cream); border: 1px solid var(--border-light); }
.order-bar-btn.secondary:hover { background: rgba(255,255,255,0.12); border-color: var(--gold); color: var(--gold); }
.order-bar-divider { width: 1px; height: 26px; background: var(--border-light); }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative; height: 100vh; min-height: 680px;
  display: flex; align-items: center; overflow: hidden;
}

.hero-video-wrap { position: absolute; inset: 0; z-index: 0; }
.hero-video { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.hero-bg-fallback {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #2A1A08 0%, #0D0D0B 45%, #1A0D05 100%);
}

/* Animated ember glow for fallback */
.hero-glow {
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse 70% 60% at 30% 60%, rgba(192, 57, 43, 0.22) 0%, transparent 65%),
              radial-gradient(ellipse 50% 40% at 70% 30%, rgba(200, 145, 58, 0.15) 0%, transparent 60%);
  animation: glowPulse 6s ease-in-out infinite alternate;
}
@keyframes glowPulse {
  from { opacity: 0.7; }
  to { opacity: 1; }
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(13,13,11,0.15) 0%,
    rgba(13,13,11,0.42) 40%,
    rgba(13,13,11,0.78) 75%,
    rgba(13,13,11,0.95) 100%
  );
}

.hero-content { position: relative; z-index: 3; width: 100%; }
.hero-inner { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; padding-top: 80px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
}
.hero-eyebrow-line { display: block; width: 36px; height: 1px; background: var(--gold); }

.hero h1 {
  font-size: clamp(3.2rem, 7.5vw, 7rem); font-weight: 700;
  color: var(--white); line-height: 1.03; letter-spacing: -0.025em;
  margin-bottom: 24px; max-width: 860px;
}
.hero h1 em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem); color: rgba(242,232,213,0.7);
  max-width: 480px; margin-bottom: 48px; line-height: 1.7;
}

.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

/* Rating pills bottom-right */
.hero-ratings {
  position: absolute; z-index: 3; bottom: 60px; right: 24px;
  display: flex; gap: 12px;
}
.hero-rating-pill {
  background: rgba(22, 22, 19, 0.88);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 14px 20px; text-align: center; min-width: 100px;
}
.hero-rating-score { display: block; font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; color: var(--gold); line-height: 1; }
.hero-rating-stars { display: block; color: var(--gold); font-size: 0.7rem; letter-spacing: 2px; margin: 4px 0 2px; }
.hero-rating-source { display: block; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream-muted); }

.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px;
  cursor: pointer; opacity: 0.55; transition: opacity var(--duration) var(--ease);
}
.hero-scroll:hover { opacity: 1; }
.hero-scroll-label { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--cream); }
.hero-scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollAnim 2s ease-in-out infinite; }
@keyframes scrollAnim { 0%,100% { transform: scaleY(1); opacity: 0.6; } 50% { transform: scaleY(0.4); opacity: 1; } }

/* ============================================================
   SIGNATURE DISHES
   ============================================================ */

.dishes-section { padding: var(--section-pad); background: var(--dark); }

.dishes-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.dish-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 3/4; cursor: pointer; background: var(--surface);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.dish-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.dish-card::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(13,13,11,0) 35%, rgba(13,13,11,0.92) 100%);
  transition: opacity var(--duration) var(--ease);
}

.dish-card-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.6s var(--ease);
}
.dish-card:hover .dish-card-bg { transform: scale(1.07); }

.dish-card-placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
}

.dish-card-body {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 28px 22px 22px;
}
.dish-card-cat {
  display: block; font-size: 0.63rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
.dish-card-name {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
  color: var(--white); line-height: 1.2; margin-bottom: 14px;
}
.dish-card-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold); transform: translateY(6px); opacity: 0;
  transition: all var(--duration) var(--ease);
}
.dish-card:hover .dish-card-link { opacity: 1; transform: translateY(0); }
.dish-card-link svg { width: 13px; height: 13px; }

.dish-card.grill .dish-card-placeholder { background: linear-gradient(160deg, #2D1B08, #180E03); }
.dish-card.plates .dish-card-placeholder { background: linear-gradient(160deg, #0F1A0A, #0A1007); }
.dish-card.family .dish-card-placeholder { background: linear-gradient(160deg, #1F0E18, #120A10); }
.dish-card.sandwiches .dish-card-placeholder { background: linear-gradient(160deg, #1C1305, #120D04); }

.dish-placeholder-icon {
  width: 72px; height: 72px; border-radius: 50%; background: rgba(200,145,58,0.12);
  border: 1px solid rgba(200,145,58,0.25); display: flex; align-items: center; justify-content: center;
}
.dish-placeholder-icon svg { width: 32px; height: 32px; color: var(--gold); opacity: 0.7; }

/* ============================================================
   ABOUT TEASER
   ============================================================ */

.about-teaser { padding: var(--section-pad); background: var(--charcoal); overflow: hidden; }
.about-teaser-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }

.about-teaser-visual { position: relative; padding-right: 40px; padding-bottom: 40px; }
.about-teaser-img-main {
  border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5;
  background: linear-gradient(160deg, #2A1806, #1A0E04);
  display: flex; align-items: center; justify-content: center;
}
.about-teaser-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-teaser-img-accent {
  position: absolute; bottom: 0; right: 0; width: 55%; aspect-ratio: 1;
  border-radius: var(--radius-md); overflow: hidden; border: 4px solid var(--charcoal);
  background: linear-gradient(160deg, #1A1205, #0F0B03);
  display: flex; align-items: center; justify-content: center;
}
.about-teaser-img-accent img { width: 100%; height: 100%; object-fit: cover; }

.about-badge {
  position: absolute; top: 28px; left: -20px; background: var(--gold); color: var(--dark);
  border-radius: var(--radius-md); padding: 18px 22px; text-align: center; box-shadow: var(--shadow-md);
}
.about-badge-num { display: block; font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; line-height: 1; }
.about-badge-label { display: block; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; opacity: 0.8; }

.about-teaser-content { max-width: 560px; }
.about-teaser-content p { font-size: 1.05rem; line-height: 1.82; margin-bottom: 20px; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */

.why-section { padding: var(--section-pad); background: var(--dark); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 60px; }

.why-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px 26px; transition: all var(--duration) var(--ease);
}
.why-card:hover { border-color: var(--gold); transform: translateY(-5px); box-shadow: var(--shadow-gold); }

.why-icon {
  width: 54px; height: 54px; background: rgba(200,145,58,0.1); border: 1px solid rgba(200,145,58,0.22);
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
}
.why-icon svg { width: 24px; height: 24px; color: var(--gold); }
.why-card h4 { font-family: var(--font-display); font-size: 1.08rem; color: var(--cream); margin-bottom: 12px; }
.why-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   REVIEWS
   ============================================================ */

.reviews-section { padding: var(--section-pad); background: var(--charcoal); overflow: hidden; }

.reviews-aggregate {
  display: flex; gap: 0; margin-bottom: 56px;
  background: var(--surface); border-radius: var(--radius-lg); border: 1px solid var(--border);
  overflow: hidden;
}
.reviews-agg-item {
  flex: 1; padding: 32px 24px; text-align: center;
  border-right: 1px solid var(--border);
}
.reviews-agg-item:last-child { border-right: none; }
.reviews-agg-score { display: block; font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--gold); line-height: 1; }
.reviews-agg-stars { display: block; color: var(--gold); font-size: 0.8rem; letter-spacing: 3px; margin: 8px 0 6px; }
.reviews-agg-source { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream-muted); }
.reviews-agg-count { font-size: 0.68rem; color: var(--text-muted); margin-top: 3px; }

.reviews-carousel { position: relative; overflow: hidden; }
.reviews-track { display: flex; gap: 20px; transition: transform 0.52s var(--ease); }

.review-card {
  flex: 0 0 calc(33.333% - 14px); background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  transition: border-color var(--duration) var(--ease);
}
.review-card:hover { border-color: rgba(200,145,58,0.38); }
.review-card-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 18px; }
.review-card-text { font-size: 0.93rem; color: var(--cream-muted); line-height: 1.78; font-style: italic; margin-bottom: 24px; }
.review-card-author { display: flex; align-items: center; gap: 13px; }
.review-card-avatar {
  width: 42px; height: 42px; background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 0.95rem; font-weight: 700; color: var(--dark); flex-shrink: 0;
}
.review-card-name { font-weight: 600; font-size: 0.88rem; color: var(--cream); }
.review-card-source { font-size: 0.7rem; color: var(--text-muted); margin-top: 2px; }

.reviews-controls { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 40px; }
.reviews-btn {
  width: 42px; height: 42px; border-radius: 50%; background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--cream);
  transition: all var(--duration) var(--ease);
}
.reviews-btn:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.reviews-btn svg { width: 16px; height: 16px; }
.reviews-dots { display: flex; gap: 7px; }
.reviews-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--border-light); cursor: pointer; transition: all var(--duration) var(--ease); }
.reviews-dot.active { background: var(--gold); width: 22px; border-radius: 4px; }

/* ============================================================
   LOCATIONS PREVIEW
   ============================================================ */

.locations-preview { padding: var(--section-pad); background: var(--dark); }
.locations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 56px; }

.location-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; transition: all var(--duration) var(--ease);
}
.location-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-md); }

.location-card-img {
  aspect-ratio: 16/9; background: linear-gradient(160deg, #221505, #141005);
  overflow: hidden; display: flex; align-items: center; justify-content: center; position: relative;
}
.location-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.location-card:hover .location-card-img img { transform: scale(1.05); }
.location-card-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.location-card-img-placeholder svg { width: 48px; height: 48px; color: var(--gold); opacity: 0.3; }

.location-tag {
  display: inline-block; background: rgba(200,145,58,0.12); color: var(--gold);
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 50px; border: 1px solid rgba(200,145,58,0.22); margin-bottom: 14px;
}
.location-card-body { padding: 28px 30px; }
.location-card-name { font-family: var(--font-display); font-size: 1.45rem; color: var(--cream); margin-bottom: 18px; }
.location-card-details { display: flex; flex-direction: column; gap: 9px; margin-bottom: 26px; }
.location-card-detail { display: flex; align-items: flex-start; gap: 10px; font-size: 0.86rem; color: var(--cream-muted); }
.location-card-detail svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   GALLERY
   ============================================================ */

.gallery-section { padding: var(--section-pad); background: var(--charcoal); }
.gallery-masonry { columns: 4; column-gap: 14px; margin-top: 56px; }
.gallery-item { break-inside: avoid; margin-bottom: 14px; border-radius: var(--radius-md); overflow: hidden; cursor: pointer; position: relative; }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: rgba(200,145,58,0); transition: background var(--duration) var(--ease); border-radius: var(--radius-md); }
.gallery-item:hover::after { background: rgba(200,145,58,0.12); }
.gallery-item img { width: 100%; display: block; transition: transform 0.5s var(--ease); }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-placeholder {
  background: var(--surface); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px; min-height: 200px;
}
.gallery-placeholder svg { width: 32px; height: 32px; color: var(--text-muted); opacity: 0.4; }
.gallery-placeholder.tall { min-height: 320px; }

/* ============================================================
   FINAL CTA BANNER
   ============================================================ */

.cta-banner {
  padding: 130px 24px; text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #1C1005 0%, #0D0D0B 50%, #1A0804 100%);
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(200,145,58,0.1) 0%, transparent 70%);
}
.cta-banner-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-banner h2 { font-size: clamp(2.4rem, 5vw, 4.2rem); color: var(--white); margin-bottom: 18px; }
.cta-banner h2 em { color: var(--gold); font-style: italic; }
.cta-banner p { font-size: 1.08rem; margin-bottom: 48px; }
.cta-banner-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */

.footer { background: #090908; border-top: 1px solid var(--border); }
.footer-top {
  padding: 80px 24px 60px; max-width: var(--container-max); margin: 0 auto;
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 56px;
}
.footer-brand p { font-size: 0.86rem; color: var(--text-muted); margin-top: 18px; max-width: 270px; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; margin-top: 26px; }
.footer-social-btn {
  width: 38px; height: 38px; border-radius: 50%; background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; color: var(--text-muted);
  transition: all var(--duration) var(--ease);
}
.footer-social-btn:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.footer-social-btn svg { width: 15px; height: 15px; }

.footer-col h5 { font-family: var(--font-body); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a { font-size: 0.86rem; color: var(--text-muted); transition: color var(--duration) var(--ease); }
.footer-col ul li a:hover { color: var(--cream); }
.footer-col address { font-style: normal; font-size: 0.86rem; color: var(--text-muted); line-height: 1.8; }
.footer-col address a { transition: color var(--duration) var(--ease); }
.footer-col address a:hover { color: var(--cream); }

.footer-bottom {
  border-top: 1px solid var(--border); padding: 22px 24px;
  max-width: var(--container-max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.76rem; color: var(--text-muted);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { transition: color var(--duration) var(--ease); }
.footer-bottom-links a:hover { color: var(--cream); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */

.page-hero {
  padding: 164px 24px 96px; text-align: center;
  background: linear-gradient(160deg, #1C1005 0%, #0D0D0B 100%);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(200,145,58,0.09) 0%, transparent 60%);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 16px; color: var(--white); }
.page-hero p { font-size: 1.08rem; max-width: 500px; margin: 0 auto; }

/* ============================================================
   MENU PAGE
   ============================================================ */

.menu-page { padding: 80px 24px 120px; background: var(--dark); }
.menu-page-inner { max-width: var(--container-max); margin: 0 auto; }

.menu-tabs {
  display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 56px;
  border-bottom: 1px solid var(--border);
}
.menu-tab {
  padding: 14px 22px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--text-muted); cursor: pointer;
  transition: all var(--duration) var(--ease); border-bottom: 2px solid transparent;
  margin-bottom: -1px; background: none; border-top: none; border-left: none; border-right: none;
  font-family: var(--font-body);
}
.menu-tab:hover { color: var(--cream); }
.menu-tab.active { color: var(--gold); border-bottom-color: var(--gold); }

.menu-panel { display: none; }
.menu-panel.active { display: block; animation: fadeUp 0.32s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.menu-cat-header { margin-bottom: 40px; }
.menu-cat-header h2 { font-size: 2rem; color: var(--cream); margin-bottom: 8px; }
.menu-cat-header p { font-size: 0.9rem; color: var(--text-muted); max-width: 480px; }

.menu-items-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 20px; }

.menu-item {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; transition: all var(--duration) var(--ease);
}
.menu-item:hover { border-color: rgba(200,145,58,0.38); transform: translateY(-3px); box-shadow: var(--shadow-md); }

.menu-item-img {
  aspect-ratio: 16/10; background: linear-gradient(160deg, #221505, #141005);
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.menu-item-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.menu-item:hover .menu-item-img img { transform: scale(1.06); }
.menu-item-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.menu-item-img-placeholder svg { width: 36px; height: 36px; color: var(--gold); opacity: 0.25; }

.menu-item-body { padding: 22px 22px 20px; }
.menu-item-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 8px; }
.menu-item-name { font-family: var(--font-display); font-size: 1.05rem; color: var(--cream); line-height: 1.3; }
.menu-item-price { font-size: 1rem; font-weight: 700; color: var(--gold); white-space: nowrap; flex-shrink: 0; }
.menu-item-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.menu-item-badge {
  display: inline-block; background: rgba(200,145,58,0.1); color: var(--gold);
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 50px; border: 1px solid rgba(200,145,58,0.22); margin-bottom: 14px;
}
.menu-item-actions { display: flex; gap: 8px; }

/* ============================================================
   LOCATIONS PAGE
   ============================================================ */

.locations-page { padding: 80px 24px 120px; background: var(--dark); }
.locations-page-inner { max-width: var(--container-max); margin: 0 auto; }

.location-full { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; margin-bottom: 40px; }
.location-full-split { display: grid; grid-template-columns: 1fr 1fr; }

.location-full-img {
  aspect-ratio: 4/3; background: linear-gradient(160deg, #221505, #141005);
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.location-full-img img { width: 100%; height: 100%; object-fit: cover; }
.location-full-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.location-full-img-placeholder svg { width: 56px; height: 56px; color: var(--gold); opacity: 0.25; }

.location-full-info { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.location-full-info h2 { font-size: 1.9rem; color: var(--cream); margin-bottom: 6px; }
.location-details { margin: 28px 0; display: flex; flex-direction: column; gap: 16px; }

.location-detail { display: flex; align-items: flex-start; gap: 14px; }
.location-detail-icon {
  width: 38px; height: 38px; background: rgba(200,145,58,0.09); border: 1px solid rgba(200,145,58,0.2);
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.location-detail-icon svg { width: 15px; height: 15px; color: var(--gold); }
.location-detail-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); display: block; margin-bottom: 3px; }
.location-detail-val { font-size: 0.9rem; color: var(--cream-muted); line-height: 1.5; }
.location-detail-val a { transition: color var(--duration) var(--ease); }
.location-detail-val a:hover { color: var(--gold); }

.location-full-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.location-full-map { height: 280px; background: var(--surface-elevated); overflow: hidden; }
.location-full-map iframe { width: 100%; height: 100%; border: none; display: block; filter: grayscale(30%) brightness(0.9); }
.map-fallback { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; background: #141410; }
.map-fallback svg { width: 40px; height: 40px; color: var(--gold); opacity: 0.4; }
.map-fallback p { font-size: 0.82rem; color: var(--text-muted); }

/* ============================================================
   ORDER PAGE
   ============================================================ */

.order-page { padding: 80px 24px 120px; background: var(--dark); }
.order-page-inner { max-width: 840px; margin: 0 auto; text-align: center; }

.order-options { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin: 56px 0; }
.order-option {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-xl);
  padding: 44px 32px; text-align: center; transition: all 0.3s var(--ease);
}
.order-option:hover { border-color: var(--gold); transform: translateY(-5px); box-shadow: var(--shadow-gold); }
.order-option-icon { width: 72px; height: 72px; background: rgba(200,145,58,0.1); border: 1px solid rgba(200,145,58,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; }
.order-option-icon svg { width: 30px; height: 30px; color: var(--gold); }
.order-option h3 { font-size: 1.4rem; color: var(--cream); margin-bottom: 12px; }
.order-option p { font-size: 0.86rem; color: var(--text-muted); margin-bottom: 28px; line-height: 1.6; }

.order-locs { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 60px; text-align: left; }
.order-loc {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px;
}
.order-loc h4 { font-family: var(--font-display); color: var(--cream); font-size: 1.1rem; margin-bottom: 12px; }
.order-loc p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 4px; }
.order-loc a { font-size: 0.82rem; color: var(--gold); transition: color var(--duration) var(--ease); }
.order-loc a:hover { color: var(--gold-light); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */

.about-page { padding: 80px 24px 120px; background: var(--dark); }
.about-page-inner { max-width: var(--container-max); margin: 0 auto; }

.about-story { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; margin-bottom: 100px; }
.about-story-text p { font-size: 1.05rem; line-height: 1.85; margin-bottom: 20px; }

.about-img-stack { position: relative; padding: 0 24px 40px 0; }
.about-img-main {
  border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5;
  background: linear-gradient(160deg, #2A1806, #1A0E04);
  display: flex; align-items: center; justify-content: center;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-float {
  position: absolute; bottom: 0; right: 0; width: 50%; aspect-ratio: 1;
  border-radius: var(--radius-md); overflow: hidden; border: 4px solid var(--dark);
  background: linear-gradient(160deg, #1A1205, #0F0B03);
  display: flex; align-items: center; justify-content: center;
}
.about-img-float img { width: 100%; height: 100%; object-fit: cover; }

.about-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.about-img-placeholder svg { width: 48px; height: 48px; color: var(--gold); opacity: 0.2; }

.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 80px 0; }
.value-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px 26px; text-align: center; transition: all var(--duration) var(--ease);
}
.value-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.value-icon {
  width: 64px; height: 64px; background: rgba(200,145,58,0.09); border: 1px solid rgba(200,145,58,0.2);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
.value-icon svg { width: 26px; height: 26px; color: var(--gold); }
.value-card h4 { font-family: var(--font-display); font-size: 1.08rem; color: var(--cream); margin-bottom: 12px; }
.value-card p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.65; }

/* FAQ */
.faq-section { padding-top: 80px; }
.faq-section h2 { margin-bottom: 48px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 0; font-size: 0.98rem; font-weight: 600; color: var(--cream);
  cursor: pointer; text-align: left; font-family: var(--font-body); background: none; border: none;
  transition: color var(--duration) var(--ease);
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 26px; height: 26px; border-radius: 50%; background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold);
  font-size: 1.2rem; line-height: 1; transition: all var(--duration) var(--ease); font-family: var(--font-body);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); color: var(--dark); border-color: var(--gold); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease), padding 0.3s var(--ease); }
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 22px; }
.faq-answer p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.72; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-page { padding: 80px 24px 120px; background: var(--dark); }
.contact-page-inner { max-width: var(--container-max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; }

.contact-info h2 { margin-bottom: 20px; font-size: 2.1rem; }
.contact-info > p { margin-bottom: 40px; }
.contact-info-list { display: flex; flex-direction: column; gap: 22px; margin-bottom: 40px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-info-icon {
  width: 42px; height: 42px; background: rgba(200,145,58,0.09); border: 1px solid rgba(200,145,58,0.2);
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold);
}
.contact-info-icon svg { width: 16px; height: 16px; }
.contact-info-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); display: block; margin-bottom: 3px; }
.contact-info-val { font-size: 0.9rem; color: var(--cream-muted); }
.contact-info-val a { transition: color var(--duration) var(--ease); }
.contact-info-val a:hover { color: var(--gold); }

.contact-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.contact-social-chip {
  display: inline-flex; align-items: center; gap: 7px; padding: 9px 16px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 50px;
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--cream-muted); transition: all var(--duration) var(--ease);
}
.contact-social-chip:hover { border-color: var(--gold); color: var(--gold); }
.contact-social-chip svg { width: 14px; height: 14px; }

.contact-form-wrap {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 48px;
}
.contact-form-wrap h3 { font-family: var(--font-display); font-size: 1.55rem; color: var(--cream); margin-bottom: 8px; }
.contact-form-wrap > p { font-size: 0.86rem; color: var(--text-muted); margin-bottom: 36px; }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream-muted); margin-bottom: 10px; }
.form-group input, .form-group textarea {
  width: 100%; background: var(--surface-elevated); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 14px 16px; font-family: var(--font-body);
  font-size: 0.9rem; color: var(--cream); transition: border-color var(--duration) var(--ease); outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-success { display: none; padding: 14px 18px; background: rgba(34, 197, 94, 0.1); border: 1px solid rgba(34,197,94,0.25); border-radius: var(--radius-sm); font-size: 0.86rem; color: #4ade80; margin-top: 16px; }
.form-success.show { display: block; }
.form-error { padding: 14px 18px; background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239,68,68,0.28); border-radius: var(--radius-sm); font-size: 0.86rem; color: #f87171; margin-top: 16px; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-36px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(36px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ============================================================
   UTILITIES
   ============================================================ */

.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.text-italic { font-style: italic; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; } .mt-60 { margin-top: 60px; }
.mb-8 { margin-bottom: 8px; } .mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; } .mb-60 { margin-bottom: 60px; }
.flex { display: flex; } .flex-center { align-items: center; justify-content: center; }
.gap-16 { gap: 16px; } .gap-24 { gap: 24px; } .flex-wrap { flex-wrap: wrap; }

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

@media (max-width: 1100px) {
  .dishes-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .gallery-masonry { columns: 3; }
  .about-story { grid-template-columns: 1fr; gap: 48px; }
  .about-teaser-inner { grid-template-columns: 1fr; padding: 0 24px; }
  .about-values { grid-template-columns: repeat(2, 1fr); }
  .contact-page-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px 0; }
  .nav-links, .nav-actions .btn { display: none; }
  .nav-toggle { display: flex; }
  .hero h1 { font-size: clamp(2.6rem, 9vw, 3.6rem); }
  .hero-ratings { display: none; }
  .dishes-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .why-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 2; }
  .reviews-track .review-card { flex: 0 0 100%; }
  .order-options { grid-template-columns: 1fr; }
  .order-locs { grid-template-columns: 1fr; }
  .location-full-split { grid-template-columns: 1fr; }
  .location-full-info { padding: 32px 24px; }
  .contact-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; padding: 48px 20px; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .about-story { grid-template-columns: 1fr; gap: 40px; margin-bottom: 60px; }
  .about-values { grid-template-columns: 1fr; }
  body { padding-bottom: 70px; }
  .order-bar { bottom: 0; border-radius: 0; border: none; border-top: 1px solid var(--border); left: 0; right: 0; transform: none; }
  .order-bar-btn { flex: 1; justify-content: center; padding: 10px 10px; font-size: 0.7rem; }
  .cta-banner { padding: 80px 20px; }
}

@media (max-width: 480px) {
  .dishes-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 1; }
  .hero-actions { flex-direction: column; align-items: flex-start; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .order-bar-divider { display: none; }
  .menu-tabs { overflow-x: auto; padding-bottom: 4px; }
  .menu-tab { flex-shrink: 0; }
  .reviews-aggregate { flex-direction: column; }
}

/* ============================================================
   LOGO IMAGE
   ============================================================ */

.nav-logo-img { height: 46px; width: auto; display: block; object-fit: contain; }
.nav-logo-img-sm { height: 38px; width: auto; display: block; object-fit: contain; }
.nav.scrolled .nav-logo-img { height: 38px; }

/* ============================================================
   CART SYSTEM
   ============================================================ */

.nav-cart-btn {
  position: relative; width: 40px; height: 40px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream); cursor: pointer; flex-shrink: 0;
  transition: all var(--duration) var(--ease);
}
.nav-cart-btn:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.nav-cart-btn svg { width: 17px; height: 17px; }

.cart-badge {
  position: absolute; top: -5px; right: -5px; background: var(--ember);
  color: #fff; font-size: 0.6rem; font-weight: 700; min-width: 17px; height: 17px;
  border-radius: 50px; display: flex; align-items: center; justify-content: center;
  padding: 0 4px; border: 2px solid var(--dark); pointer-events: none;
}

.cart-overlay {
  position: fixed; inset: 0; z-index: 1100; background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none; transition: opacity 0.32s var(--ease);
}
.cart-overlay.show { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 1101;
  width: min(420px, 100vw); background: var(--surface);
  border-left: 1px solid var(--border); display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.38s var(--ease);
  box-shadow: var(--shadow-lg);
}
.cart-drawer.open { transform: translateX(0); }

.cart-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 26px; border-bottom: 1px solid var(--border); flex-shrink: 0;
}
.cart-drawer-header h3 { font-family: var(--font-display); font-size: 1.25rem; color: var(--cream); }

.cart-drawer-close {
  width: 34px; height: 34px; border-radius: 50%; background: var(--surface-elevated);
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  color: var(--cream); cursor: pointer; transition: all var(--duration) var(--ease);
}
.cart-drawer-close:hover { background: var(--ember); border-color: var(--ember); color: #fff; }
.cart-drawer-close svg { width: 14px; height: 14px; }

.cart-drawer-items { flex: 1; overflow-y: auto; padding: 16px 26px; }

.cart-empty {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; padding: 60px 0; text-align: center;
}
.cart-empty svg { color: var(--text-muted); opacity: 0.3; }
.cart-empty p { color: var(--text-muted); font-size: 0.88rem; }

.cart-item {
  display: flex; flex-direction: column; gap: 10px;
  padding: 14px 0; border-bottom: 1px solid var(--border-light);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-info { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.cart-item-name { font-size: 0.88rem; color: var(--cream); font-weight: 500; line-height: 1.4; }
.cart-item-price { font-size: 0.92rem; font-weight: 700; color: var(--gold); white-space: nowrap; flex-shrink: 0; }
.cart-item-controls { display: flex; align-items: center; gap: 7px; }

.cart-qty-btn {
  width: 26px; height: 26px; border-radius: 50%; background: var(--surface-elevated);
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  color: var(--cream); cursor: pointer; font-size: 1rem; line-height: 1;
  transition: all var(--duration) var(--ease); font-family: var(--font-body);
}
.cart-qty-btn:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.cart-item-qty { min-width: 24px; text-align: center; font-size: 0.88rem; font-weight: 600; color: var(--cream); }

.cart-remove-btn {
  width: 26px; height: 26px; border-radius: 50%; background: transparent;
  border: 1px solid transparent; display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); cursor: pointer; margin-left: auto;
  transition: all var(--duration) var(--ease);
}
.cart-remove-btn:hover { color: var(--ember); border-color: rgba(192,57,43,0.4); background: rgba(192,57,43,0.08); }

.cart-drawer-footer {
  padding: 18px 26px; border-top: 1px solid var(--border); flex-shrink: 0;
}
.cart-drawer-total {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px;
}
.cart-drawer-total span:first-child { font-size: 0.76rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.cart-drawer-total span:last-child { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: var(--gold); }

.cart-toast {
  position: fixed; bottom: 90px; left: 50%; transform: translateX(-50%) translateY(12px);
  background: var(--surface-elevated); border: 1px solid rgba(200,145,58,0.3);
  color: var(--cream); padding: 10px 20px; border-radius: 50px; font-size: 0.8rem;
  font-weight: 500; z-index: 1200; opacity: 0; pointer-events: none;
  transition: all 0.28s var(--ease); white-space: nowrap; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 8px;
}
.cart-toast svg { color: var(--gold); }
.cart-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ============================================================
   ORDER PAGE (Full cart/checkout)
   ============================================================ */

.order-page-full { padding: 80px 24px 120px; background: var(--dark); }
.order-page-full-inner { max-width: var(--container-max); margin: 0 auto; }

.order-layout { display: grid; grid-template-columns: 1.35fr 1fr; gap: 36px; align-items: start; }

.order-cart-section {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-xl);
  overflow: hidden;
}
.order-cart-header {
  padding: 26px 30px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.order-cart-header h2 { font-size: 1.45rem; color: var(--cream); }
.order-cart-clear {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted); cursor: pointer; background: none; border: none; font-family: var(--font-body);
  transition: color var(--duration) var(--ease);
}
.order-cart-clear:hover { color: var(--ember); }

.order-cart-body { padding: 20px 30px; }

.cart-page-item {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--border-light);
}
.cart-page-item:last-child { border-bottom: none; }
.cart-page-item-info { flex: 1; min-width: 0; }
.cart-page-item-name { font-size: 0.9rem; color: var(--cream); font-weight: 500; display: block; line-height: 1.35; }
.cart-page-item-unit { font-size: 0.73rem; color: var(--text-muted); }
.cart-page-item-controls { display: flex; align-items: center; gap: 7px; flex-shrink: 0; }
.cart-page-item-subtotal { font-size: 0.9rem; font-weight: 700; color: var(--gold); min-width: 52px; text-align: right; }

.order-cart-total {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 30px; border-top: 1px solid var(--border); background: var(--surface-elevated);
}
.order-cart-total-label { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); }
.order-cart-total-amount { font-family: var(--font-display); font-size: 1.55rem; font-weight: 700; color: var(--gold); }

.order-checkout-section {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-xl);
  padding: 32px 28px; position: sticky; top: 96px;
}
.order-checkout-section h3 { font-size: 1.35rem; color: var(--cream); margin-bottom: 8px; }
.order-checkout-section > p { font-size: 0.84rem; color: var(--text-muted); margin-bottom: 26px; line-height: 1.6; }

.order-whatsapp-btn {
  width: 100%; justify-content: center; background: #25D366; color: #fff; border-color: #25D366;
  font-size: 0.85rem;
}
.order-whatsapp-btn:hover { background: #1fba59; border-color: #1fba59; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.4); }

.order-uber-btn {
  width: 100%; justify-content: center; margin-top: 10px;
}

.cart-empty-page { text-align: center; padding: 80px 20px; }
.cart-empty-page svg { color: var(--text-muted); opacity: 0.25; margin: 0 auto 24px; display: block; }
.cart-empty-page h3 { font-size: 1.5rem; color: var(--cream); margin-bottom: 12px; }
.cart-empty-page p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 32px; max-width: 360px; margin-left: auto; margin-right: auto; }

.order-confirm {
  display: none; text-align: center; padding: 40px 24px;
  background: rgba(37,211,102,0.06); border: 1px solid rgba(37,211,102,0.2);
  border-radius: var(--radius-lg); margin-top: 20px;
}
.order-confirm h4 { font-family: var(--font-display); font-size: 1.3rem; color: var(--cream); margin-bottom: 10px; }
.order-confirm p { font-size: 0.88rem; color: var(--text-muted); }

.field-error { border-color: var(--ember) !important; }

@media (max-width: 900px) {
  .order-layout { grid-template-columns: 1fr; }
  .order-checkout-section { position: static; }
}

/* ============================================================
   COMMUNITY SECTION
   ============================================================ */

.community-section { padding: var(--section-pad); background: var(--charcoal); }
.community-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }

.community-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 34px 26px; transition: all var(--duration) var(--ease);
}
.community-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.community-icon {
  width: 52px; height: 52px; background: rgba(200,145,58,0.1); border: 1px solid rgba(200,145,58,0.22);
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.community-icon svg { width: 22px; height: 22px; color: var(--gold); }
.community-card h4 { font-family: var(--font-display); font-size: 1.08rem; color: var(--cream); margin-bottom: 12px; }
.community-card p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.68; }

@media (max-width: 768px) {
  .community-grid { grid-template-columns: 1fr; }
  .catering-features-grid { grid-template-columns: 1fr 1fr !important; }
  .catering-steps-grid { grid-template-columns: 1fr !important; }
  .catering-gallery-grid { grid-template-columns: 1fr !important; }
}

/* ============================================================
   MANIFESTO / REAL FLAVOUR STRIP
   ============================================================ */

.manifesto-strip {
  background: var(--charcoal);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 64px 24px; text-align: center;
}
.manifesto-text {
  font-family: var(--font-display); font-size: clamp(1.15rem, 2.4vw, 1.65rem);
  font-style: italic; color: var(--cream); line-height: 1.7; max-width: 800px;
  margin: 0 auto; font-weight: 600; letter-spacing: -0.01em;
}
.manifesto-text strong { color: var(--gold); font-style: normal; }

/* ============================================================
   PAGE HERO WITH IMAGE BACKGROUND
   ============================================================ */

.page-hero-img { position: relative; overflow: hidden; }
.page-hero-bg-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.page-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(13,13,11,0.45) 0%, rgba(13,13,11,0.85) 100%);
}

/* ============================================================
   ADD-TO-CART BUTTON
   ============================================================ */

.btn-cart {
  background: rgba(200,145,58,0.12); color: var(--gold); border-color: rgba(200,145,58,0.3);
}
.btn-cart:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); transform: translateY(-2px); }

/* ============================================================
   VIDEO FEATURE SECTION
   ============================================================ */

.video-feature { position: relative; overflow: hidden; height: clamp(520px, 85vh, 860px); }
.video-feature-inner { position: relative; height: 100%; }
.video-feature-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-feature-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(13,13,11,0.94) 0%, rgba(13,13,11,0.52) 55%, rgba(13,13,11,0.18) 100%);
}
.video-feature-text {
  position: relative; z-index: 2; display: flex; flex-direction: column;
  justify-content: center; height: 100%; padding: 0 max(8vw, 48px); max-width: 680px;
}
.video-feature-stats { display: flex; gap: 40px; margin-top: 36px; flex-wrap: wrap; }
.video-feature-stat-num { display: block; font-family: var(--font-display); font-size: 2.4rem; color: var(--gold); line-height: 1; }
.video-feature-stat-label { display: block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-top: 4px; }

/* ============================================================
   MENU ITEM — NO PHOTO
   ============================================================ */

.menu-item-no-photo {
  background: linear-gradient(140deg, var(--charcoal) 0%, var(--surface) 60%, rgba(200,145,58,0.06) 100%);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px;
}
.menu-item-no-photo::after {
  content: 'Photo coming soon';
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); opacity: 0.55;
}

/* ============================================================
   LOCATIONS PHOTO STRIP
   ============================================================ */

.location-photo-strip {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px;
  margin-top: 32px;
}
.location-photo-strip-item {
  border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3;
}
.location-photo-strip-item img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease);
}
.location-photo-strip-item:hover img { transform: scale(1.06); }

/* ============================================================
   ABOUT — IN THE PRESS / FEATURED
   ============================================================ */
.about-press { margin: 0 0 80px; }
.press-feature {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; margin-top: 48px;
  box-shadow: var(--shadow-md);
}
.press-feature-img { position: relative; min-height: 360px; }
.press-feature-img img { width: 100%; height: 100%; object-fit: cover; }
.press-feature-img::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, transparent 55%, var(--surface));
}
.press-feature-body { padding: 46px 50px; display: flex; flex-direction: column; align-items: flex-start; }
.press-meta {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--cream-muted); margin-bottom: 18px;
}
.press-source { color: var(--gold); }
.press-dot { color: var(--text-muted); }
.press-feature-body h3 {
  font-family: var(--font-display); font-size: 1.9rem; line-height: 1.2;
  color: var(--cream); margin-bottom: 16px;
}
.press-feature-body > p { font-size: 1rem; line-height: 1.75; color: var(--cream-muted); margin-bottom: 22px; }
.press-quote {
  border-left: 3px solid var(--gold); padding: 4px 0 4px 20px; margin: 0 0 26px;
  font-family: var(--font-display); font-style: italic; font-size: 1.15rem;
  line-height: 1.55; color: var(--cream);
}
.press-verdict {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 28px;
  font-size: 0.85rem; color: var(--cream-muted);
}
.press-verdict strong { color: var(--gold); }
.press-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
.press-badge {
  text-align: center; padding: 26px 18px; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-md);
}
.press-badge-score { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.press-badge-stars { display: block; color: var(--gold); font-size: 0.9rem; margin: 6px 0 8px; letter-spacing: 2px; }
.press-badge-source { display: block; font-size: 0.85rem; font-weight: 600; color: var(--cream); }
.press-badge-count { display: block; font-size: 0.72rem; color: var(--text-muted); margin-top: 2px; }

@media (max-width: 900px) {
  .press-feature { grid-template-columns: 1fr; }
  .press-feature-img { min-height: 240px; }
  .press-feature-img::after { background: linear-gradient(0deg, var(--surface), transparent 55%); }
}
@media (max-width: 768px) {
  .press-feature-body { padding: 32px 26px; }
  .press-badges { grid-template-columns: 1fr; }
}

/* ============================================================
   CATERING — OCCASIONS
   ============================================================ */
.occasions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.occasion-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/5; border: 1px solid var(--border);
}
.occasion-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.occasion-card:hover img { transform: scale(1.06); }
.occasion-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,13,11,0.12) 28%, rgba(13,13,11,0.92));
}
.occasion-card-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 26px 24px; }
.occasion-card-body h4 { font-family: var(--font-display); font-size: 1.3rem; color: var(--cream-light); margin-bottom: 6px; }
.occasion-card-body p { font-size: 0.85rem; line-height: 1.55; color: var(--cream-muted); margin: 0; }

@media (max-width: 900px) { .occasions-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .occasions-grid { grid-template-columns: 1fr; } }

/* ============================================================
   ABOUT — FEATURED NEWS STORY (CityNews + video)
   ============================================================ */
.news-feature { margin: 24px 0 90px; }
.news-feature-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: linear-gradient(135deg, var(--surface-elevated), var(--charcoal) 65%);
  border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden;
  margin-top: 48px; box-shadow: var(--shadow-lg);
}
.news-feature-media {
  position: relative; background: #000;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border-right: 1px solid var(--border);
}
.news-video { position: relative; width: 100%; aspect-ratio: 16 / 9; background: #000; }
.news-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.news-video-caption {
  width: 100%; margin: 0; padding: 12px 16px; text-align: center;
  font-size: 0.76rem; color: var(--text-muted); background: rgba(0,0,0,0.55);
}
.news-video-caption a { color: var(--gold); font-weight: 600; }
.news-feature-body {
  padding: 50px 54px; display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center;
}
.news-source {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--cream-muted); margin-bottom: 22px;
}
.news-source-badge {
  background: var(--gold); color: var(--dark); padding: 5px 13px;
  border-radius: 100px; font-weight: 700; letter-spacing: 0.06em;
}
.news-feature-body h3 {
  font-family: var(--font-display); font-size: 2rem; line-height: 1.18;
  color: var(--cream-light); margin-bottom: 18px;
}
.news-feature-body > p { font-size: 1.02rem; line-height: 1.78; color: var(--cream-muted); margin-bottom: 26px; }
.news-quote {
  border-left: 3px solid var(--gold); padding: 6px 0 6px 22px; margin: 0 0 30px;
  font-family: var(--font-display); font-style: italic; font-size: 1.32rem;
  line-height: 1.5; color: var(--cream);
}
.news-quote cite {
  display: block; margin-top: 12px; font-size: 0.76rem; font-style: normal;
  font-family: var(--font-body); font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gold);
}

@media (max-width: 960px) {
  .news-feature-card { grid-template-columns: 1fr; }
  .news-feature-media { border-right: 0; border-bottom: 1px solid var(--border); }
  .news-feature-body { padding: 36px 26px; }
  .news-feature-body h3 { font-size: 1.6rem; }
  .news-quote { font-size: 1.15rem; }
}

/* ============================================================
   LANGUAGE SWITCH (EN / FR)
   ============================================================ */
.lang-switch {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 34px; padding: 0 12px; margin-right: 4px;
  border: 1px solid var(--border); border-radius: 100px;
  color: var(--cream-muted); font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em;
  text-decoration: none; transition: color var(--duration) var(--ease), border-color var(--duration) var(--ease);
}
.lang-switch:hover { color: var(--gold); border-color: var(--gold); }
