/* ============================================================
   MOTI MAHAL DELUX — CINEMATIC DESIGN SYSTEM
   Pinterest-Style Restaurant Animation Website
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;0,900;1,400;1,700&family=Inter:wght@300;400;500;600&family=Bebas+Neue&display=swap');

/* ── VARIABLES ─────────────────────────────────────────── */
:root {
  --black:   #080808;
  --black2:  #0f0f0f;
  --black3:  #141414;
  --black4:  #1a1a1a;
  --gold:    #C9A24A;
  --gold2:   #E2C07A;
  --gold3:   #9A7A35;
  --maroon:  #6B1A2A;
  --white:   #FFFFFF;
  --off:     #F5F0E8;
  --grey:    #888888;
  --grey2:   #BBBBBB;
  --border:  rgba(201,162,74,0.18);
  --glass:   rgba(255,255,255,0.03);
  --r:       16px;
  --r2:      8px;
  --ease:    cubic-bezier(0.76, 0, 0.24, 1);
  --ease2:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t:       0.6s var(--ease);
  --serif:   'Playfair Display', Georgia, serif;
  --sans:    'Inter', system-ui, sans-serif;
  --display: 'Bebas Neue', sans-serif;
}

/* ── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 400;
  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, select, textarea { font-family: var(--sans); }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold3); border-radius: 2px; }
::selection { background: var(--gold); color: var(--black); }

/* ── CUSTOM CURSOR ─────────────────────────────────────── */
.cursor-dot {
  position: fixed; z-index: 99999;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed; z-index: 99998;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(201,162,74,0.6);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: all 0.12s var(--ease2);
}
body.cursor-hover .cursor-dot { width: 14px; height: 14px; }
body.cursor-hover .cursor-ring { width: 56px; height: 56px; border-color: var(--gold); }
body.cursor-click .cursor-dot { width: 6px; height: 6px; }

/* ── PRELOADER ─────────────────────────────────────────── */
#preloader {
  position: fixed; inset: 0; z-index: 99990;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}
#preloader.out { opacity: 0; visibility: hidden; pointer-events: none; }
.pl-content { text-align: center; }
.pl-logo img {
  width: 72px; height: 72px; object-fit: contain;
  margin: 0 auto 28px;
  animation: plPulse 1.4s ease-in-out infinite;
}
@keyframes plPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(0.92)} }
.pl-text {
  display: flex; gap: 16px; justify-content: center;
  margin-bottom: 32px;
}
.pl-word {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: 0.15em;
  color: var(--white);
  opacity: 0;
  transform: translateY(30px);
  animation: plWord 0.6s var(--ease) forwards;
}
.pl-word:nth-child(1) { animation-delay: 0.1s; }
.pl-word:nth-child(2) { animation-delay: 0.25s; color: var(--gold); }
.pl-word:nth-child(3) { animation-delay: 0.4s; }
@keyframes plWord { to { opacity:1; transform:translateY(0); } }
.pl-line {
  width: 240px; height: 1px;
  background: rgba(201,162,74,0.2);
  margin: 0 auto 16px; overflow: hidden;
}
.pl-progress {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--gold3), var(--gold), var(--gold2));
  animation: plBar 1.8s var(--ease) forwards;
}
@keyframes plBar { to { width: 100%; } }
.pl-year {
  font-size: 0.72rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--grey);
}

/* ── NAVIGATION ────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0;
  transition: background 0.5s, border 0.5s, padding 0.3s;
}
#nav.scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(24px);
  -webkit-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: 48px;
}
.nav-brand {
  display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}
.nav-brand img { width: 42px; height: 42px; object-fit: contain; border-radius: 50%; }
.brand-text { display: flex; flex-direction: column; }
.brand-name {
  font-family: var(--serif); font-size: 1.05rem; font-weight: 700;
  color: var(--white); line-height: 1.1; letter-spacing: 0.02em;
}
.brand-sub {
  font-size: 0.65rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
}
.nav-links {
  display: flex; align-items: center; gap: 40px; margin-left: auto;
}
.nl {
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--grey2); position: relative; padding-bottom: 3px;
  transition: color 0.3s;
}
.nl::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.4s var(--ease);
}
.nl:hover, .nl.active { color: var(--gold); }
.nl:hover::after, .nl.active::after { width: 100%; }
.nav-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 26px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 3px;
  transition: background 0.3s, color 0.3s;
  flex-shrink: 0;
}
.nav-btn svg { width: 14px; height: 14px; }
.nav-btn:hover { background: var(--gold); color: var(--black); }
.nav-hamburger {
  display: none; flex-direction: column; gap: 6px;
  padding: 4px; cursor: none;
}
.nav-hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--white);
  transition: var(--t);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile Menu */
.mob-menu {
  position: fixed; inset: 0; z-index: 990;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.7s var(--ease);
}
.mob-menu.open { clip-path: inset(0 0 0% 0); }
.mob-menu-inner { text-align: center; }
.mob-menu ul li {
  overflow: hidden; margin-bottom: 8px;
}
.mob-menu ul a {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  font-family: var(--serif); font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700; color: var(--white);
  transition: color 0.3s;
  transform: translateY(100%);
  display: block;
}
.mob-menu.open ul a { transform: translateY(0); transition: transform 0.6s var(--ease), color 0.3s; }
.mob-menu ul li:nth-child(1) a { transition-delay: 0.1s; }
.mob-menu ul li:nth-child(2) a { transition-delay: 0.15s; }
.mob-menu ul li:nth-child(3) a { transition-delay: 0.2s; }
.mob-menu ul li:nth-child(4) a { transition-delay: 0.25s; }
.mob-menu ul li:nth-child(5) a { transition-delay: 0.3s; }
.mob-menu ul li:nth-child(6) a { transition-delay: 0.35s; }
.mob-menu ul a:hover { color: var(--gold); }
.mob-menu ul a span { font-family: var(--sans); font-size: 0.75rem; color: var(--gold); letter-spacing: 0.1em; }
.mob-footer { margin-top: 40px; }
.mob-footer p { font-size: 0.78rem; color: var(--grey); letter-spacing: 0.08em; }

/* ── MAGNETIC BUTTON ───────────────────────────────────── */
.magnetic { display: inline-flex; align-items: center; gap: 8px; }

/* ── HERO ──────────────────────────────────────────────── */
#hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center; overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg-img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.08);
  transition: transform 8s ease;
}
#hero.loaded .hero-bg-img { transform: scale(1); }
.hero-vignette {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(8,8,8,0.92) 0%,
    rgba(8,8,8,0.7) 50%,
    rgba(8,8,8,0.3) 100%
  );
}
.hero-grain {
  position: absolute; inset: 0; opacity: 0.04;
  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");
  background-size: 200px;
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1440px; margin: 0 auto;
  padding: 0 60px;
  padding-top: 80px;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 32px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease) 2.2s forwards;
}
.eyebrow-line { flex: 0 0 40px; height: 1px; background: var(--gold); }
.hero-eyebrow span {
  font-size: 0.72rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
}
.hero-headline {
  margin-bottom: 28px;
  overflow: hidden;
}
.hl-row {
  overflow: hidden; line-height: 0.9;
  margin-bottom: 4px;
}
.hl-word {
  display: block;
  font-family: var(--display);
  font-size: clamp(4rem, 9vw, 9rem);
  letter-spacing: 0.04em;
  color: var(--white);
  transform: translateY(110%);
  animation: slideUp 0.9s var(--ease) forwards;
}
.hl-row:nth-child(1) .hl-word { animation-delay: 2.4s; }
.hl-row:nth-child(2) .hl-word { animation-delay: 2.55s; }
.hl-row:nth-child(3) .hl-word { animation-delay: 2.7s; }
.italic-row { margin: 8px 0; }
.italic-word {
  font-family: var(--serif) !important;
  font-style: italic !important;
  font-size: clamp(3rem, 7vw, 7rem) !important;
  color: var(--gold) !important;
  letter-spacing: 0.02em !important;
}
.hero-desc {
  max-width: 480px;
  font-size: 1rem; font-weight: 300;
  color: rgba(255,255,255,0.65); line-height: 1.8;
  margin-bottom: 40px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease) 3s forwards;
}
.hero-ctas {
  display: flex; align-items: center; gap: 20px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease) 3.15s forwards;
}
.cta-fill {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 40px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: 3px;
  transition: color 0.4s;
}
.cta-fill-bg {
  position: absolute; inset: 0;
  background: var(--black);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease);
  z-index: 0;
}
.cta-fill span { position: relative; z-index: 1; }
.cta-fill:hover { color: var(--gold); }
.cta-fill:hover .cta-fill-bg { transform: translateY(0); }
.cta-stroke {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 3px;
  transition: border-color 0.3s, color 0.3s;
}
.cta-stroke svg { width: 16px; height: 16px; transition: transform 0.3s; }
.cta-stroke:hover { border-color: var(--gold); color: var(--gold); }
.cta-stroke:hover svg { transform: translate(3px, -3px); }
.hero-stats {
  position: absolute; bottom: 48px; right: 60px; z-index: 2;
  display: flex; align-items: center; gap: 32px;
  opacity: 0; animation: fadeUp 0.8s var(--ease) 3.3s forwards;
}
.hs-item { text-align: center; }
.hs-num {
  display: block;
  font-family: var(--display); font-size: 2.2rem;
  color: var(--gold); letter-spacing: 0.05em; line-height: 1;
}
.hs-label {
  font-size: 0.65rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--grey);
  margin-top: 4px; display: block;
}
.hs-sep { width: 1px; height: 40px; background: var(--border); }
.hero-scroll {
  position: absolute; bottom: 48px; left: 60px; z-index: 2;
  display: flex; align-items: center; gap: 12px;
  opacity: 0; animation: fadeUp 0.8s var(--ease) 3.4s forwards;
}
.scroll-track {
  width: 1px; height: 60px;
  background: rgba(255,255,255,0.15);
  position: relative; overflow: hidden;
}
.scroll-thumb {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 40%;
  background: var(--gold);
  animation: scrollThumb 2s ease-in-out infinite;
}
@keyframes scrollThumb {
  0% { top: -40%; } 100% { top: 140%; }
}
.hero-scroll span {
  font-size: 0.65rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--grey);
  writing-mode: vertical-rl;
}

/* ── MARQUEE ───────────────────────────────────────────── */
.marquee-strip {
  background: var(--gold);
  overflow: hidden; padding: 14px 0;
}
.marquee-track {
  display: flex; align-items: center; gap: 0;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: var(--display);
  font-size: 1rem; letter-spacing: 0.12em;
  color: var(--black); padding: 0 24px;
}
.ms-dot { color: var(--black3) !important; padding: 0 8px !important; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTIONS ──────────────────────────────────────────── */
.section { padding: 120px 0; }
.section-sm { padding: 80px 0; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.wrap-wide { max-width: 1440px; margin: 0 auto; padding: 0 60px; }

/* Section Header */
.sh { margin-bottom: 72px; }
.sh-label {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.sh-line { flex: 0 0 32px; height: 1px; background: var(--gold); }
.sh-tag {
  font-size: 0.7rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
}
.sh-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700; line-height: 1.1;
  color: var(--white);
}
.sh-title em { font-style: italic; color: var(--gold); }
.sh-sub {
  margin-top: 16px;
  font-size: 0.95rem; color: var(--grey);
  max-width: 520px; line-height: 1.8;
}

/* ── REVEAL ANIMATIONS ─────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(50px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.left { transform: translateX(-50px); }
.reveal.right { transform: translateX(50px); }
.reveal.scale { transform: scale(0.92); }
.reveal.visible { opacity: 1; transform: none; }

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes slideUp { to { transform: translateY(0); } }

/* ── WHY CHOOSE US ─────────────────────────────────────── */
#why { background: var(--black2); }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin-top: 0;
}
.why-card {
  background: var(--black3);
  padding: 52px 40px;
  position: relative; overflow: hidden;
  transition: background 0.4s;
}
.why-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.5s var(--ease);
}
.why-card:hover { background: var(--black4); }
.why-card:hover::before { width: 100%; }
.wc-num {
  font-family: var(--display);
  font-size: 5rem; color: rgba(201,162,74,0.08);
  line-height: 1; margin-bottom: 24px;
  transition: color 0.4s;
}
.why-card:hover .wc-num { color: rgba(201,162,74,0.15); }
.wc-icon {
  width: 48px; height: 48px;
  background: rgba(201,162,74,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 20px;
  transition: background 0.3s;
}
.wc-icon svg { width: 22px; height: 22px; }
.why-card:hover .wc-icon { background: rgba(201,162,74,0.2); }
.wc-title {
  font-family: var(--serif);
  font-size: 1.4rem; font-weight: 700;
  color: var(--white); margin-bottom: 14px; line-height: 1.2;
}
.wc-text { font-size: 0.88rem; color: var(--grey); line-height: 1.8; }

/* ── SIGNATURE DISHES ──────────────────────────────────── */
#dishes { background: var(--black); }
.dishes-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dish-card {
  position: relative; border-radius: var(--r);
  overflow: hidden; background: var(--black3);
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
  cursor: none;
}
.dish-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 64px rgba(0,0,0,0.5), 0 0 0 1px var(--border);
}
.dish-img {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3;
}
.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;
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 2px;
}
.dish-body { padding: 28px; }
.dish-name {
  font-family: var(--serif);
  font-size: 1.3rem; font-weight: 700;
  color: var(--white); margin-bottom: 10px; line-height: 1.2;
}
.dish-desc { font-size: 0.83rem; 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-order {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--grey2);
  transition: color 0.3s;
}
.dish-order svg { width: 14px; height: 14px; transition: transform 0.3s; }
.dish-card:hover .dish-order { color: var(--gold); }
.dish-card:hover .dish-order svg { transform: translate(3px, -3px); }

/* ── ABOUT SPLIT ───────────────────────────────────────── */
#about-preview { background: var(--black2); overflow: hidden; }
.about-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-visual { position: relative; }
.about-img-wrap {
  position: relative; border-radius: var(--r);
  overflow: hidden; aspect-ratio: 4/5;
}
.about-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.about-img-wrap:hover img { transform: scale(1.04); }
.about-img-badge {
  position: absolute; bottom: -20px; right: -20px;
  width: 120px; height: 120px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.badge-yr {
  font-family: var(--display);
  font-size: 1.8rem; color: var(--black); line-height: 1;
}
.badge-lbl {
  font-size: 0.6rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--black3);
}
.about-text { }
.about-text .sh { margin-bottom: 32px; }
.about-body {
  font-size: 0.95rem; color: var(--grey);
  line-height: 1.9; margin-bottom: 32px;
}
.about-body strong { color: var(--white); font-weight: 600; }
.about-pillars { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.pillar {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; background: var(--glass);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--r2);
  transition: border-color 0.3s;
}
.pillar:hover { border-color: var(--border); }
.pillar-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(201,162,74,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.pillar-icon svg { width: 18px; height: 18px; }
.pillar h4 {
  font-family: var(--serif); font-size: 1rem; font-weight: 700;
  color: var(--white); margin-bottom: 4px;
}
.pillar p { font-size: 0.82rem; color: var(--grey); line-height: 1.6; }

/* ── MENU PREVIEW ──────────────────────────────────────── */
#menu-preview { background: var(--black); }
.menu-tabs {
  display: flex; gap: 4px;
  background: var(--black3);
  border-radius: var(--r2);
  padding: 6px; margin-bottom: 48px;
  width: fit-content;
}
.menu-tab {
  padding: 10px 24px;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--grey); border-radius: 6px;
  transition: all 0.3s;
  cursor: none;
}
.menu-tab.active { background: var(--gold); color: var(--black); }
.menu-tab:hover:not(.active) { color: var(--white); }
.menu-panel { display: none; }
.menu-panel.active { display: block; }
.menu-list { display: flex; flex-direction: column; gap: 0; }
.menu-item {
  display: flex; align-items: center; gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: padding 0.3s;
}
.menu-item:hover { padding-left: 8px; }
.menu-item-img {
  width: 72px; height: 72px; flex-shrink: 0;
  border-radius: 10px; overflow: hidden;
}
.menu-item-img img { width: 100%; height: 100%; object-fit: cover; }
.menu-item-info { flex: 1; }
.menu-item-name {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 700;
  color: var(--white); margin-bottom: 4px;
}
.menu-item-desc { font-size: 0.82rem; color: var(--grey); line-height: 1.6; }
.menu-item-price {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 700;
  color: var(--gold); flex-shrink: 0;
}
.menu-veg { display: inline-block; width: 14px; height: 14px; border: 1.5px solid #4CAF50; border-radius: 2px; margin-right: 6px; position: relative; top: 2px; }
.menu-veg::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 6px; height: 6px; background: #4CAF50; border-radius: 50%; }
.menu-nonveg { display: inline-block; width: 14px; height: 14px; border: 1.5px solid #f44336; border-radius: 2px; margin-right: 6px; position: relative; top: 2px; }
.menu-nonveg::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 6px; height: 6px; background: #f44336; border-radius: 50%; }

/* ── GALLERY PREVIEW ───────────────────────────────────── */
#gallery-preview { background: var(--black2); overflow: hidden; }
.gallery-scroll-wrap { overflow: hidden; }
.gallery-scroll-track {
  display: flex; gap: 16px;
  width: max-content;
  animation: galleryScroll 30s linear infinite;
}
.gallery-scroll-track:hover { animation-play-state: paused; }
@keyframes galleryScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.gs-item {
  width: 320px; height: 240px; flex-shrink: 0;
  border-radius: var(--r); overflow: hidden;
  position: relative; cursor: none;
}
.gs-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gs-item:hover img { transform: scale(1.08); }
.gs-overlay {
  position: absolute; inset: 0;
  background: rgba(8,8,8,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.gs-overlay svg { width: 32px; height: 32px; color: var(--white); }
.gs-item:hover .gs-overlay { opacity: 1; }

/* ── TESTIMONIALS ──────────────────────────────────────── */
#testimonials { background: var(--black); }
.testi-wrap { max-width: 800px; margin: 0 auto; text-align: center; }
.testi-slider { position: relative; min-height: 220px; }
.testi-card {
  position: absolute; inset: 0;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  pointer-events: none;
}
.testi-card.active {
  opacity: 1; transform: translateY(0);
  pointer-events: all; position: relative;
}
.testi-quote {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-style: italic; font-weight: 400;
  color: var(--grey2); line-height: 1.8;
  margin-bottom: 32px;
  position: relative; padding: 0 32px;
}
.testi-quote::before {
  content: '"';
  font-size: 6rem; color: var(--gold); opacity: 0.2;
  position: absolute; top: -20px; left: 0;
  font-family: var(--serif); line-height: 1;
}
.testi-author {
  display: flex; align-items: center; justify-content: center; gap: 16px;
}
.testi-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.2rem; font-weight: 700;
  color: var(--black);
}
.testi-name {
  font-family: var(--serif); font-size: 1rem; font-weight: 700;
  color: var(--white);
}
.testi-stars { color: var(--gold); font-size: 0.8rem; letter-spacing: 2px; }
.testi-controls {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-top: 48px;
}
.testi-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--grey2); cursor: none;
  transition: all 0.3s;
}
.testi-btn svg { width: 18px; height: 18px; }
.testi-btn:hover { border-color: var(--gold); color: var(--gold); }
.testi-dots { display: flex; gap: 8px; }
.tdot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--grey); cursor: none;
  transition: all 0.3s;
}
.tdot.active { background: var(--gold); width: 20px; border-radius: 3px; }

/* ── RESERVATION CTA ───────────────────────────────────── */
#res-cta {
  background: var(--black2);
  position: relative; overflow: hidden;
}
#res-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,162,74,0.08) 0%, transparent 70%);
}
.res-cta-inner {
  text-align: center; position: relative; z-index: 1;
}
.res-cta-inner .sh-title { font-size: clamp(2.5rem, 6vw, 5rem); }
.res-cta-inner p {
  font-size: 1rem; color: var(--grey);
  max-width: 500px; margin: 20px auto 48px; line-height: 1.8;
}
.res-cta-btns { display: flex; align-items: center; justify-content: center; gap: 20px; }

/* ── FOOTER ────────────────────────────────────────────── */
#footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 60px;
}
.footer-brand img { width: 52px; height: 52px; object-fit: contain; border-radius: 50%; margin-bottom: 16px; }
.footer-brand-name {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 700;
  color: var(--white); margin-bottom: 4px;
}
.footer-brand-sub {
  font-size: 0.7rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.footer-brand p { font-size: 0.85rem; color: var(--grey); line-height: 1.8; max-width: 280px; }
.footer-col h4 {
  font-size: 0.72rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 0.88rem; color: var(--grey);
  transition: color 0.3s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-col p { font-size: 0.85rem; color: var(--grey); line-height: 1.8; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-copy { font-size: 0.78rem; color: var(--grey); }
.footer-copy span { color: var(--gold); }
.footer-socials { display: flex; gap: 12px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--grey); cursor: none;
  transition: all 0.3s;
}
.social-btn svg { width: 15px; height: 15px; }
.social-btn:hover { border-color: var(--gold); color: var(--gold); }

/* ── PAGE HERO ─────────────────────────────────────────── */
.page-hero {
  position: relative; height: 55vh; min-height: 420px;
  display: flex; align-items: flex-end;
  padding-bottom: 80px;
}
.ph-bg { position: absolute; inset: 0; }
.ph-bg img { width: 100%; height: 100%; object-fit: cover; }
.ph-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.95) 0%, rgba(8,8,8,0.5) 60%, rgba(8,8,8,0.3) 100%);
}
.ph-content {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
  width: 100%;
}
.section-label-row {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.s-line { flex: 0 0 32px; height: 1px; background: var(--gold); }
.s-label {
  font-size: 0.7rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
}
.ph-content h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800; color: var(--white); line-height: 1.05;
  margin-bottom: 16px;
}
.ph-content h1 em { font-style: italic; color: var(--gold); }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; color: var(--grey);
}
.breadcrumb a { color: var(--grey); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--grey); }

/* ── MASONRY GALLERY ───────────────────────────────────── */
.masonry-grid {
  columns: 3; column-gap: 16px;
}
.masonry-item {
  break-inside: avoid; margin-bottom: 16px;
  border-radius: var(--r); overflow: hidden;
  position: relative; cursor: none;
}
.masonry-item img {
  width: 100%; display: block;
  transition: transform 0.6s var(--ease);
}
.masonry-item:hover img { transform: scale(1.05); }
.masonry-overlay {
  position: absolute; inset: 0;
  background: rgba(8,8,8,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.masonry-overlay svg { width: 36px; height: 36px; color: var(--white); }
.masonry-item:hover .masonry-overlay { opacity: 1; }

/* ── LIGHTBOX ──────────────────────────────────────────── */
#lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.95);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s;
}
#lightbox.open { opacity: 1; pointer-events: all; }
#lightbox img {
  max-width: 90vw; max-height: 90vh;
  border-radius: var(--r);
  transform: scale(0.9);
  transition: transform 0.4s var(--ease);
}
#lightbox.open img { transform: scale(1); }
.lb-close {
  position: absolute; top: 24px; right: 24px;
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); cursor: none;
  transition: all 0.3s;
}
.lb-close svg { width: 20px; height: 20px; }
.lb-close:hover { border-color: var(--gold); color: var(--gold); }

/* ── FORMS ─────────────────────────────────────────────── */
.form-card {
  background: var(--black3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r); padding: 48px;
}
.form-card h2 {
  font-family: var(--serif); font-size: 1.8rem; font-weight: 700;
  color: var(--white); margin-bottom: 8px;
}
.form-card h2 em { font-style: italic; color: var(--gold); }
.form-card > p { color: var(--grey); font-size: 0.88rem; margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-field label {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--grey2);
}
.form-field label span { color: var(--gold); }
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--black4);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r2);
  padding: 14px 18px;
  color: var(--white); font-size: 0.9rem;
  transition: border-color 0.3s;
  outline: none;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--gold); }
.form-field select option { background: var(--black3); }
.form-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 24px 0; }
.form-section-tag {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.guests-counter {
  display: flex; align-items: center; gap: 20px;
  background: var(--black4);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r2); padding: 12px 18px;
  width: fit-content;
}
.gc-btn {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(201,162,74,0.15);
  color: var(--gold); font-size: 1.2rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  cursor: none; transition: background 0.3s;
}
.gc-btn:hover { background: rgba(201,162,74,0.3); }
.gc-display { text-align: center; }
.gc-num {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 700;
  color: var(--white); display: block; line-height: 1;
}
.gc-label { font-size: 0.65rem; color: var(--grey); letter-spacing: 0.1em; }
.occasion-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.occ-btn {
  padding: 10px 8px;
  background: var(--black4);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r2);
  color: var(--grey); font-size: 0.75rem; font-weight: 500;
  text-align: center; cursor: none;
  transition: all 0.3s;
}
.occ-btn:hover, .occ-btn.selected {
  background: rgba(201,162,74,0.1);
  border-color: var(--gold); color: var(--gold);
}
.cta-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 40px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: 3px; border: none; cursor: none;
  transition: all 0.3s; width: 100%;
  position: relative; overflow: hidden;
}
.cta-primary:hover { background: var(--gold2); transform: translateY(-2px); }

/* ── CONTACT ───────────────────────────────────────────── */
.contact-layout {
  display: grid; grid-template-columns: 1fr 380px;
  gap: 60px; align-items: start;
}
.contact-info-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--black3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r); padding: 24px;
  margin-bottom: 16px;
  transition: border-color 0.3s;
}
.contact-info-card:hover { border-color: var(--border); }
.cic-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(201,162,74,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.cic-icon svg { width: 20px; height: 20px; }
.contact-info-card h4 {
  font-family: var(--serif); font-size: 1rem; font-weight: 700;
  color: var(--white); margin-bottom: 6px;
}
.contact-info-card p { font-size: 0.85rem; color: var(--grey); line-height: 1.7; }
.map-embed {
  border-radius: var(--r); overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  margin-top: 16px;
}
.map-embed iframe { display: block; filter: grayscale(1) invert(0.9) contrast(0.8); }

/* ── ABOUT PAGE ────────────────────────────────────────── */
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 1px; background: var(--border);
}
.tl-item {
  position: relative; margin-bottom: 56px;
}
.tl-dot {
  position: absolute; left: -44px; top: 4px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,162,74,0.2);
}
.tl-year {
  font-family: var(--display); font-size: 1.4rem;
  color: var(--gold); letter-spacing: 0.1em; margin-bottom: 8px;
}
.tl-title {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 700;
  color: var(--white); margin-bottom: 8px;
}
.tl-text { font-size: 0.88rem; color: var(--grey); line-height: 1.8; }

/* ── RESERVATION PAGE ──────────────────────────────────── */
.res-layout {
  display: grid; grid-template-columns: 1fr 380px;
  gap: 60px; align-items: start;
}
.res-info-card {
  background: var(--black3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r); padding: 28px; margin-bottom: 16px;
}
.res-info-card h3 {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 700;
  color: var(--white); margin-bottom: 16px;
  padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.res-detail {
  display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px;
}
.res-detail svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.res-detail p { font-size: 0.85rem; color: var(--grey); line-height: 1.6; }
.res-detail strong { color: var(--white); display: block; margin-bottom: 2px; }

/* ── MENU PAGE ─────────────────────────────────────────── */
.menu-section-title {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 700;
  color: var(--gold); margin: 40px 0 20px;
  padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.ai-rec-box {
  background: linear-gradient(135deg, rgba(201,162,74,0.08), rgba(107,26,42,0.08));
  border: 1px solid var(--border); border-radius: var(--r);
  padding: 40px; text-align: center; margin-bottom: 60px;
}
.ai-rec-box h3 {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 700;
  color: var(--white); margin-bottom: 8px;
}
.ai-rec-box p { color: var(--grey); margin-bottom: 24px; font-size: 0.9rem; }

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1100px) {
  .nav-links { gap: 28px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .dishes-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  .nav-links, .nav-btn { display: none; }
  .nav-hamburger { display: flex; }
  .nav-wrap { padding: 18px 24px; }
  .hero-content { padding: 0 24px; padding-top: 80px; }
  .hero-stats { right: 24px; bottom: 32px; gap: 20px; }
  .hero-scroll { left: 24px; }
  .about-split { grid-template-columns: 1fr; gap: 48px; }
  .about-img-badge { right: 0; bottom: -16px; width: 100px; height: 100px; }
  .contact-layout { grid-template-columns: 1fr; }
  .res-layout { grid-template-columns: 1fr; }
  .masonry-grid { columns: 2; }
  .wrap { padding: 0 24px; }
  .wrap-wide { padding: 0 24px; }
  .section { padding: 80px 0; }
  .form-card { padding: 32px 24px; }
}
@media (max-width: 640px) {
  .why-grid { grid-template-columns: 1fr; }
  .dishes-grid { grid-template-columns: 1fr; }
  .masonry-grid { columns: 1; }
  .hero-stats { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .occasion-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .menu-tabs { flex-wrap: wrap; width: 100%; }
  .hl-word { font-size: clamp(2.8rem, 12vw, 5rem); }
}