/* ═══════════════════════════════════════════════════
   MOTI MAHAL DELUX — WORLD CLASS LUXURY CSS
   Dark Cinematic · Gold · Premium 2026
═══════════════════════════════════════════════════ */

:root {
  --black: #050505;
  --dark: #0a0a0a;
  --dark2: #111;
  --dark3: #161616;
  --dark4: #1c1c1c;
  --gold: #C9A24A;
  --gold2: #E2C07A;
  --gold3: #F0D898;
  --gold-dim: #9A7A35;
  --gold-glow: rgba(201,162,74,0.25);
  --maroon: #5C1020;
  --maroon2: #7A1A2E;
  --white: #FFFFFF;
  --off-white: #F5F0E8;
  --grey: #888;
  --grey2: #aaa;
  --grey3: #ccc;
  --border: rgba(201,162,74,0.12);
  --border2: rgba(255,255,255,0.06);
  --glass: rgba(255,255,255,0.03);
  --glass2: rgba(255,255,255,0.06);
  --serif: 'Playfair Display', 'Georgia', serif;
  --serif2: 'Cormorant Garamond', serif;
  --sans: 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease2: cubic-bezier(0.16, 1, 0.3, 1);
  --r: 12px; --r2: 20px; --r3: 32px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
::selection { background: var(--gold); color: var(--black); }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 2px; }

/* ── CUSTOM CURSOR ── */
#cursor { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 99999; }
#cursor-dot {
  position: absolute; width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
  transform: translate(-50%, -50%); transition: transform 0.1s;
}
#cursor-ring {
  position: absolute; width: 36px; height: 36px;
  border: 1.5px solid rgba(201,162,74,0.6); border-radius: 50%;
  transform: translate(-50%, -50%); transition: all 0.15s var(--ease);
}
body.cursor-hover #cursor-ring { width: 56px; height: 56px; background: rgba(201,162,74,0.08); border-color: var(--gold); }

/* ── PRELOADER ── */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s, visibility 0.8s;
}
#preloader.out { opacity: 0; visibility: hidden; }
.pl-content { text-align: center; }
.pl-logo img { width: 90px; height: 90px; object-fit: contain; margin: 0 auto 20px; border-radius: 50%; border: 1px solid var(--border); padding: 8px; animation: plPulse 2s ease-in-out infinite; }
@keyframes plPulse { 0%,100%{opacity:0.7;transform:scale(0.97)} 50%{opacity:1;transform:scale(1)} }
.pl-name { font-family: var(--serif); font-size: 1.4rem; font-weight: 700; letter-spacing: 0.25em; color: var(--gold); margin-bottom: 6px; }
.pl-tagline { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey); margin-bottom: 32px; }
.pl-progress { width: 220px; height: 1px; background: rgba(201,162,74,0.15); margin: 0 auto 12px; border-radius: 1px; overflow: hidden; }
.pl-bar { height: 100%; width: 0; background: linear-gradient(90deg, var(--gold-dim), var(--gold), var(--gold2)); animation: plLoad 2s var(--ease) forwards; }
@keyframes plLoad { to { width: 100%; } }
.pl-counter { font-size: 0.7rem; letter-spacing: 0.15em; color: var(--grey); }

/* ── NAVIGATION ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0;
  transition: all 0.4s var(--ease);
}
#nav.scrolled { background: rgba(5,5,5,0.96); backdrop-filter: blur(24px); border-bottom: 1px solid var(--border); }
.nav-wrap {
  max-width: 1440px; margin: 0 auto;
  padding: 22px 60px;
  display: flex; align-items: center; gap: 40px;
}
.logo { display: flex; align-items: center; gap: 14px; }
.logo-img img { width: 44px; height: 44px; border-radius: 50%; object-fit: contain; border: 1px solid var(--border); padding: 4px; }
.logo-text { display: flex; flex-direction: column; }
.logo-main { font-family: var(--serif); font-size: 1.05rem; font-weight: 700; color: var(--white); line-height: 1.1; }
.logo-sub { font-size: 0.55rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.nav-menu { display: flex; align-items: center; gap: 40px; margin-left: auto; }
.nav-link { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.6); transition: color 0.3s; position: relative; padding-bottom: 4px; }
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.35s var(--ease); }
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-reserve {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 28px; background: var(--gold); color: var(--black);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: 4px; transition: all 0.3s var(--ease); flex-shrink: 0;
}
.nav-reserve:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,162,74,0.35); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mob-nav {
  display: none; position: fixed; inset: 0; top: 0; z-index: 998;
  background: rgba(5,5,5,0.98); backdrop-filter: blur(30px);
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
  padding: 40px;
}
.mob-nav.open { display: flex; }
.mob-nav a { font-family: var(--serif); font-size: 2rem; font-weight: 600; color: rgba(255,255,255,0.8); transition: color 0.3s; }
.mob-nav a:hover { color: var(--gold); }
.mob-nav .mob-cta { font-family: var(--sans); font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 14px 40px; background: var(--gold); color: var(--black); border-radius: 4px; font-weight: 700; margin-top: 16px; }

/* ── HERO ── */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.08);
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom { from{transform:scale(1.08)} to{transform:scale(1.15)} }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5,5,5,0.85) 0%,
    rgba(5,5,5,0.6) 40%,
    rgba(92,16,32,0.3) 70%,
    rgba(5,5,5,0.8) 100%
  );
}
.hero-noise {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}
#heroCanvas { position: absolute; inset: 0; pointer-events: none; }
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 24px;
  max-width: 900px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 20px; border: 1px solid rgba(201,162,74,0.35);
  border-radius: 100px; margin-bottom: 32px;
  background: rgba(201,162,74,0.06); backdrop-filter: blur(10px);
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  opacity: 0; animation: fadeUp 0.8s 0.5s var(--ease2) forwards;
}
.hero-badge-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero-title {
  font-family: var(--serif); font-weight: 900;
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  line-height: 0.95; letter-spacing: -0.02em;
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.9s 0.7s var(--ease2) forwards;
}
.hero-title .line1 { display: block; color: var(--white); }
.hero-title .line2 { display: block; color: var(--gold); font-style: italic; }
.hero-title .line3 { display: block; color: rgba(255,255,255,0.5); font-size: 0.45em; font-weight: 400; letter-spacing: 0.15em; font-style: normal; margin-top: 12px; font-family: var(--sans); text-transform: uppercase; }
.hero-desc {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem); color: rgba(255,255,255,0.65);
  max-width: 560px; margin: 0 auto 44px; line-height: 1.8;
  opacity: 0; animation: fadeUp 0.9s 0.9s var(--ease2) forwards;
}
.hero-actions {
  display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.9s 1.1s var(--ease2) forwards;
}
.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 40px; background: var(--gold); color: var(--black);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  border-radius: 4px; transition: all 0.35s var(--ease);
  position: relative; overflow: hidden;
}
.btn-gold::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
  transform: translateX(-100%); transition: transform 0.5s var(--ease);
}
.btn-gold:hover::before { transform: translateX(100%); }
.btn-gold:hover { background: var(--gold2); transform: translateY(-3px); box-shadow: 0 16px 48px rgba(201,162,74,0.4); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 36px; border: 1px solid rgba(255,255,255,0.25); color: var(--white);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  border-radius: 4px; transition: all 0.35s var(--ease); backdrop-filter: blur(10px);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fadeUp 0.9s 1.4s var(--ease2) forwards;
}
.hero-scroll span { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100%{opacity:0.4;transform:scaleY(0.8)} 50%{opacity:1;transform:scaleY(1)} }
.hero-stats {
  position: absolute; bottom: 40px; right: 60px;
  display: flex; flex-direction: column; gap: 20px;
  opacity: 0; animation: fadeRight 0.9s 1.3s var(--ease2) forwards;
}
.hero-stat { text-align: right; }
.hero-stat-num { font-family: var(--serif); font-size: 1.8rem; font-weight: 700; color: var(--gold); line-height: 1; }
.hero-stat-label { font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); }

/* ── MARQUEE ── */
.marquee-wrap {
  background: var(--gold); padding: 14px 0; overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.2); border-bottom: 1px solid rgba(0,0,0,0.2);
}
.marquee-track {
  display: flex; gap: 0; white-space: nowrap;
  animation: marquee 25s linear infinite;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 20px;
  padding: 0 32px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--black);
}
.marquee-dot { width: 4px; height: 4px; background: rgba(0,0,0,0.4); border-radius: 50%; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── SECTION COMMONS ── */
.section { padding: 120px 0; }
.section-sm { padding: 80px 0; }
.wrap { max-width: 1440px; margin: 0 auto; padding: 0 60px; }
.wrap-sm { max-width: 1200px; margin: 0 auto; padding: 0 60px; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.section-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
.section-title {
  font-family: var(--serif); font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.05; letter-spacing: -0.02em; color: var(--white);
}
.section-title em { color: var(--gold); font-style: italic; }
.section-title span { color: rgba(255,255,255,0.25); }
.section-sub { font-size: 1rem; color: var(--grey2); max-width: 520px; margin-top: 16px; line-height: 1.8; }
.divider { width: 60px; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); margin: 24px 0; }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s var(--ease2), transform 0.8s var(--ease2); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s var(--ease2), transform 0.8s var(--ease2); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s var(--ease2), transform 0.8s var(--ease2); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }

@keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeRight { from{opacity:0;transform:translateX(30px)} to{opacity:1;transform:translateX(0)} }

/* ── WHY CHOOSE US ── */
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  background: var(--border2); border: 1px solid var(--border2); border-radius: var(--r2);
  overflow: hidden; margin-top: 60px;
}
.why-card {
  background: var(--dark); padding: 52px 40px;
  transition: background 0.4s var(--ease);
  position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transition: transform 0.5s var(--ease);
}
.why-card:hover { background: var(--dark3); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 56px; height: 56px; border-radius: var(--r);
  background: rgba(201,162,74,0.08); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px; transition: all 0.4s var(--ease);
}
.why-card:hover .why-icon { background: rgba(201,162,74,0.15); border-color: var(--gold); transform: scale(1.05); }
.why-icon svg { width: 24px; height: 24px; color: var(--gold); }
.why-num { font-family: var(--serif); font-size: 3.5rem; font-weight: 900; color: rgba(201,162,74,0.06); position: absolute; top: 20px; right: 28px; line-height: 1; }
.why-title { font-family: var(--serif); font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 14px; }
.why-text { font-size: 0.88rem; color: var(--grey2); line-height: 1.8; }

/* ── FEATURED DISHES ── */
.dishes-section { background: var(--dark); }
.dishes-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 60px; }
.dishes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dish-card {
  background: var(--dark2); border: 1px solid var(--border2);
  border-radius: var(--r2); overflow: hidden;
  transition: all 0.5s var(--ease); position: relative;
}
.dish-card:hover { transform: translateY(-8px); border-color: var(--border); box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,162,74,0.1); }
.dish-img {
  position: relative; height: 260px; overflow: hidden;
}
.dish-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.dish-card:hover .dish-img img { transform: scale(1.08); }
.dish-badge {
  position: absolute; top: 16px; left: 16px;
  padding: 5px 12px; background: var(--gold); color: var(--black);
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 100px;
}
.dish-badge.veg { background: #2d7a3a; color: #fff; }
.dish-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,5,5,0.8) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.4s;
}
.dish-card:hover .dish-overlay { opacity: 1; }
.dish-order-btn {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%) translateY(10px);
  padding: 10px 28px; background: var(--gold); color: var(--black);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 4px; white-space: nowrap;
  opacity: 0; transition: all 0.4s var(--ease);
}
.dish-card:hover .dish-order-btn { opacity: 1; transform: translateX(-50%) translateY(0); }
.dish-body { padding: 28px; }
.dish-name { font-family: var(--serif); font-size: 1.25rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.dish-desc { font-size: 0.82rem; color: var(--grey); line-height: 1.7; margin-bottom: 20px; }
.dish-footer { display: flex; align-items: center; justify-content: space-between; }
.dish-price { font-family: var(--serif); font-size: 1.4rem; font-weight: 700; color: var(--gold); }
.dish-rating { display: flex; align-items: center; gap: 4px; font-size: 0.75rem; color: var(--grey2); }
.dish-rating svg { width: 13px; height: 13px; fill: var(--gold); color: var(--gold); }

/* ── ABOUT SPLIT ── */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-main {
  border-radius: var(--r2); overflow: hidden;
  aspect-ratio: 4/5; position: relative;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-main::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(92,16,32,0.3), transparent);
}
.about-img-accent {
  position: absolute; bottom: -32px; right: -32px;
  width: 200px; border-radius: var(--r);
  overflow: hidden; border: 4px solid var(--dark);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.about-img-accent img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.about-badge {
  position: absolute; top: 32px; left: -24px;
  background: var(--gold); color: var(--black);
  padding: 16px 20px; border-radius: var(--r);
  text-align: center; box-shadow: 0 16px 40px rgba(201,162,74,0.4);
}
.about-badge-num { font-family: var(--serif); font-size: 2rem; font-weight: 900; line-height: 1; }
.about-badge-text { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.about-content { padding-right: 20px; }
.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px; }
.pillar {
  padding: 20px; background: var(--glass2); border: 1px solid var(--border2);
  border-radius: var(--r); transition: all 0.3s var(--ease);
}
.pillar:hover { border-color: var(--border); background: var(--dark3); }
.pillar-title { font-family: var(--serif); font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.pillar-text { font-size: 0.78rem; color: var(--grey); line-height: 1.6; }

/* ── MENU PREVIEW ── */
.menu-section { background: var(--dark); }
.menu-tabs { display: flex; gap: 4px; background: var(--dark2); border: 1px solid var(--border2); border-radius: 100px; padding: 4px; width: fit-content; margin: 0 auto 60px; }
.menu-tab {
  padding: 10px 28px; border-radius: 100px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--grey); transition: all 0.3s var(--ease); cursor: none;
}
.menu-tab.active { background: var(--gold); color: var(--black); }
.menu-tab:hover:not(.active) { color: var(--white); }
.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.menu-item {
  display: flex; gap: 20px; align-items: center;
  padding: 20px 24px; background: var(--dark2); border: 1px solid var(--border2);
  border-radius: var(--r); transition: all 0.35s var(--ease);
}
.menu-item:hover { border-color: var(--border); background: var(--dark3); transform: translateX(4px); }
.menu-item-img { width: 72px; height: 72px; border-radius: var(--r-sm, 8px); overflow: hidden; flex-shrink: 0; }
.menu-item-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.menu-item:hover .menu-item-img img { transform: scale(1.1); }
.menu-item-info { flex: 1; }
.menu-item-name { font-family: var(--serif); font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.menu-item-desc { font-size: 0.78rem; color: var(--grey); line-height: 1.5; }
.menu-item-price { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: var(--gold); flex-shrink: 0; }

/* ── GALLERY PREVIEW ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 12px; margin-top: 60px;
}
.gallery-item {
  border-radius: var(--r); overflow: hidden; position: relative; cursor: none;
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,5,5,0.7), transparent);
  opacity: 0; transition: opacity 0.4s;
  display: flex; align-items: flex-end; padding: 20px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-label { font-family: var(--serif); font-size: 0.9rem; font-weight: 600; color: var(--white); }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--dark); overflow: hidden; }
.testimonials-track { display: flex; gap: 24px; transition: transform 0.6s var(--ease2); }
.testimonial-card {
  min-width: 400px; padding: 40px;
  background: var(--dark2); border: 1px solid var(--border2);
  border-radius: var(--r2); flex-shrink: 0;
  transition: border-color 0.3s;
}
.testimonial-card.active { border-color: var(--border); }
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 20px; }
.testimonial-stars svg { width: 14px; height: 14px; fill: var(--gold); color: var(--gold); }
.testimonial-text { font-family: var(--serif2); font-size: 1.05rem; font-style: italic; color: var(--grey3); line-height: 1.8; margin-bottom: 28px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gold-glow); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: var(--gold); }
.testimonial-name { font-weight: 600; font-size: 0.88rem; color: var(--white); }
.testimonial-role { font-size: 0.72rem; color: var(--grey); }
.testimonials-nav { display: flex; gap: 8px; margin-top: 40px; }
.t-nav-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--border2); color: var(--grey);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease); cursor: none;
}
.t-nav-btn:hover { border-color: var(--gold); color: var(--gold); }
.t-nav-btn svg { width: 16px; height: 16px; }

/* ── CTA SECTION ── */
.cta-section {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--maroon) 0%, #3a0a14 50%, var(--dark) 100%);
  padding: 120px 0;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://firebasestorage.googleapis.com/v0/b/batao-97d07.appspot.com/o/stores%2FvihrhL8895SYockl8LZx%2FcoverPhoto?alt=media&token=a127acb8-45ae-4691-bb81-bbf0ed2b918f') center/cover;
  opacity: 0.08;
}
.cta-content { position: relative; z-index: 1; text-align: center; max-width: 700px; margin: 0 auto; }
.cta-content .section-title { font-size: clamp(2.5rem, 5vw, 4rem); }
.cta-content p { font-size: 1rem; color: rgba(255,255,255,0.7); margin: 20px 0 44px; line-height: 1.8; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer {
  background: var(--dark); border-top: 1px solid var(--border2);
  padding: 80px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand p { font-size: 0.85rem; color: var(--grey); line-height: 1.8; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--border2); color: var(--grey);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease); font-size: 0.75rem; font-weight: 700;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,162,74,0.08); }
.footer-col h4 { font-family: var(--serif); font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.82rem; color: var(--grey); transition: color 0.3s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.footer-contact-item svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item span { font-size: 0.82rem; color: var(--grey); line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid var(--border2); padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom p { font-size: 0.75rem; color: var(--grey); }
.footer-bottom span { color: var(--gold); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative; height: 55vh; min-height: 420px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(5,5,5,0.5) 0%, rgba(5,5,5,0.75) 100%);
}
.page-hero-content { position: relative; z-index: 1; text-align: center; }
.page-hero-content h1 { font-family: var(--serif); font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 900; color: var(--white); line-height: 1; }
.page-hero-content h1 em { color: var(--gold); font-style: italic; }
.breadcrumb { display: flex; align-items: center; gap: 8px; justify-content: center; margin-top: 16px; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .nav-menu { gap: 28px; }
  .wrap, .wrap-sm { padding: 0 40px; }
  .dishes-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  .nav-menu, .nav-reserve { display: none; }
  .hamburger { display: flex; }
  .nav-wrap { padding: 18px 32px; }
  .why-grid { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; gap: 60px; }
  .about-img-accent { display: none; }
  .about-badge { left: 16px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .menu-grid { grid-template-columns: 1fr; }
  .section { padding: 80px 0; }
  .wrap, .wrap-sm { padding: 0 24px; }
  .hero-stats { display: none; }
  .dishes-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  body { cursor: auto; }
  #cursor { display: none; }
  button { cursor: pointer; }
}
@media (max-width: 600px) {
  .hero-title { font-size: 2.8rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 1; }
  .testimonial-card { min-width: 300px; }
  .about-pillars { grid-template-columns: 1fr; }
  .dishes-header { flex-direction: column; align-items: flex-start; gap: 20px; }
}