/* ===== TOKENS ===== */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-dark: #9B7A2F;
  --amber: #D4820A;
  --purple-neon: #9B59B6;
  --purple-glow: rgba(155, 89, 182, 0.35);
  --pink-neon: #E040FB;
  --bg-deep: #0A0806;
  --bg-dark: #111009;
  --bg-mid: #18150F;
  --bg-card: #1E1A12;
  --bg-card-hover: #26211A;
  --text-primary: #F0E8D5;
  --text-secondary: #A89880;
  --text-muted: #6B5D4A;
  --border: rgba(201, 168, 76, 0.15);
  --border-hover: rgba(201, 168, 76, 0.4);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-gold: 0 0 30px rgba(201, 168, 76, 0.12);
  --shadow-deep: 0 20px 60px rgba(0, 0, 0, 0.6);
  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-sans: 'Jost', system-ui, sans-serif;
  --transition: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--ff-sans);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

/* ===== GRAIN TEXTURE ===== */
.hero-grain, .res-grain {
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.45;
}

/* ===== TYPOGRAPHY ===== */
.section-label {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 1.2rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto;
}
.section-header { text-align: center; margin-bottom: 3.5rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  border-radius: 2px;
  font-family: var(--ff-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.08);
  transform: translateX(-110%);
  transition: transform 0.4s ease;
}
.btn:hover::before { transform: translateX(0); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: #0A0806;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
}
.btn-gold:hover {
  box-shadow: 0 6px 30px rgba(201, 168, 76, 0.55);
  transform: translateY(-1px);
}
.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: rgba(201, 168, 76, 0.08);
  transform: translateY(-1px);
}

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.2rem 2.5rem;
  transition: background 0.5s cubic-bezier(0.16,1,0.3,1), padding 0.5s cubic-bezier(0.16,1,0.3,1), box-shadow 0.5s ease;
}
.navbar.scrolled {
  background: rgba(10, 8, 6, 0.94);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  padding: 0.85rem 2.5rem;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 0.1rem; }
.logo-lsd {
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.logo-dash { color: var(--text-muted); font-size: 1rem; }
.logo-sub {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0; right: 100%;
  height: 1px; background: var(--gold);
  transition: right 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { right: 0; }
.nav-cta {
  padding: 0.55rem 1.4rem !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  border-radius: 2px;
  transition: background 0.3s, color 0.3s !important;
}
.nav-cta:hover { background: var(--gold) !important; color: #0A0806 !important; }
.nav-cta::after { display: none !important; }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--text-primary);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  position: relative; height: 100vh; min-height: 640px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img { object-position: center 30%; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,8,6,0.85) 0%,
    rgba(10,8,6,0.55) 40%,
    rgba(10,8,6,0.75) 100%
  );
}
.hero-content {
  position: relative; z-index: 3;
  text-align: center; padding: 0 1.5rem;
  max-width: 860px;
  animation: heroEntrance 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes heroEntrance {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.4rem;
}
.hero-headline {
  font-family: var(--ff-serif);
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  font-weight: 600;
  line-height: 1.0;
  color: var(--text-primary);
  margin-bottom: 1.2rem;
  text-shadow: 0 4px 40px rgba(0,0,0,0.6);
}
.hero-headline em {
  font-style: italic; color: var(--gold);
  display: block;
  text-shadow: 0 0 60px rgba(201,168,76,0.3);
}
.hero-sub {
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(240,232,213,0.75);
  margin-bottom: 2.8rem;
}
.hero-ctas { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.5rem 1.4rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  background: rgba(10,8,6,0.5);
  backdrop-filter: blur(8px);
}
.star-icon { color: var(--gold); font-size: 0.9rem; }
.hero-scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

/* ===== ABOUT ===== */
.about {
  padding: 7rem 0;
  background: var(--bg-dark);
  position: relative;
}
.about::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
}
.about-body {
  font-size: 1.05rem; font-weight: 300;
  color: var(--text-secondary); line-height: 1.85;
  margin-bottom: 1.4rem;
}
.about-tagline {
  font-family: var(--ff-serif);
  font-size: 1.6rem; font-style: italic;
  color: var(--gold);
  margin-top: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}
.stats-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-bottom: 2rem;
}
.stat-card {
  display: flex; align-items: flex-start; gap: 0.9rem;
  padding: 1.2rem; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius);
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition), transform var(--transition);
  will-change: transform;
}
.stat-swiggy { grid-column: span 2; }
.stat-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}
.stat-icon { font-size: 1.6rem; line-height: 1; flex-shrink: 0; }
.stat-icon svg { color: var(--gold); }
.stat-text { display: flex; flex-direction: column; gap: 0.15rem; }
.stat-text strong { font-size: 0.95rem; font-weight: 600; color: var(--text-primary); }
.stat-text span, .stat-text a { font-size: 0.78rem; color: var(--text-secondary); }
.stat-text a:hover { color: var(--gold); }
.about-img-frame {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; aspect-ratio: 4/3;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-deep);
}
.about-img-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1rem 1.4rem;
  background: linear-gradient(to top, rgba(10,8,6,0.9), transparent);
  font-family: var(--ff-serif); font-style: italic;
  font-size: 1rem; color: var(--gold);
}

/* ===== MENU ===== */
.menu {
  padding: 7rem 0;
  background: var(--bg-mid);
  position: relative;
}
.menu::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.menu-tabs {
  display: flex; justify-content: center; gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 440px; margin: 0 auto 3rem;
  background: var(--bg-card);
}
.tab-btn {
  flex: 1; padding: 0.85rem 1rem;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted);
  transition: var(--transition);
  border-right: 1px solid var(--border);
}
.tab-btn:last-child { border-right: none; }
.tab-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: #0A0806;
}
.tab-btn:hover:not(.active) { color: var(--gold); background: rgba(201,168,76,0.06); }
.menu-grid {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.menu-grid.active { display: grid; animation: fadeInUp 0.5s cubic-bezier(0.16,1,0.3,1) both; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.menu-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  will-change: transform;
}
.menu-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-deep), var(--shadow-gold);
}
.menu-img-wrap {
  position: relative; aspect-ratio: 1;
  overflow: hidden;
}
.menu-img-wrap img { transition: transform 0.7s cubic-bezier(0.16,1,0.3,1); will-change: transform; }
.menu-card:hover .menu-img-wrap img { transform: scale(1.06); }
.menu-img-hover {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,8,6,0.6) 0%, transparent 50%);
}
.menu-card-body { padding: 1.2rem 1.4rem 1.4rem; }
.dish-name {
  font-family: var(--ff-serif);
  font-size: 1.25rem; font-weight: 600;
  color: var(--text-primary); margin-bottom: 0.35rem;
}
.dish-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 0.9rem; }
.dish-price {
  font-size: 1.1rem; font-weight: 700;
  color: var(--gold); letter-spacing: 0.03em;
}

/* ===== GALLERY ===== */
.gallery {
  padding: 7rem 0;
  background: var(--bg-dark);
  position: relative;
}
.gallery::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}
.gallery-item {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1;
  border: 1px solid var(--border);
  cursor: pointer;
}
.gallery-item.g-large {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.gallery-item.g-tall {
  grid-row: span 2;
  aspect-ratio: unset;
}
.gallery-item img { transition: transform 0.8s cubic-bezier(0.16,1,0.3,1); will-change: transform; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,8,6,0.82) 0%, rgba(10,8,6,0.08) 65%);
  display: flex; align-items: flex-end;
  padding: 1.4rem;
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.16,1,0.3,1);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { transform: translateY(6px); transition: transform 0.45s cubic-bezier(0.16,1,0.3,1); }
.gallery-item:hover .gallery-overlay span { transform: translateY(0); }
.gallery-overlay span {
  font-family: var(--ff-serif); font-style: italic;
  font-size: 1.1rem; color: var(--gold);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 7rem 0;
  background: var(--bg-mid);
  position: relative;
}
.testimonials::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.review-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  will-change: transform;
  position: relative;
  overflow: hidden;
}
.review-card::before {
  content: '\201C';
  position: absolute; top: -0.5rem; left: 1.2rem;
  font-family: var(--ff-serif); font-size: 7rem;
  color: var(--gold); opacity: 0.08; line-height: 1;
  pointer-events: none;
}
.review-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}
.review-stars { color: var(--gold); font-size: 1rem; letter-spacing: 0.1em; margin-bottom: 1rem; }
.review-text {
  font-family: var(--ff-serif);
  font-size: 1.05rem; font-style: italic;
  color: var(--text-secondary); line-height: 1.75;
  margin-bottom: 1.5rem;
}
.review-author { display: flex; align-items: center; gap: 0.9rem; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--amber));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.82rem; color: #0A0806;
  flex-shrink: 0;
}
.review-author strong { display: block; font-size: 0.88rem; color: var(--text-primary); }
.review-author span { font-size: 0.75rem; color: var(--text-muted); }

/* ===== RESERVATION ===== */
.reservation {
  position: relative; padding: 9rem 0;
  overflow: hidden;
}
.reservation-bg { position: absolute; inset: 0; }
.res-bg-img { object-position: center 40%; }
.res-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,8,6,0.93) 0%, rgba(25,15,5,0.88) 50%, rgba(10,8,6,0.95) 100%);
}
.reservation-content {
  position: relative; z-index: 3;
  text-align: center;
}
.res-headline {
  font-family: var(--ff-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 600; line-height: 1.1;
  color: var(--text-primary); margin-bottom: 1rem;
}
.res-headline em { font-style: italic; color: var(--gold); }
.res-sub { font-size: 1.05rem; color: var(--text-secondary); margin-bottom: 2.8rem; }
.res-ctas { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 4.5rem 0 0;
}
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-logo {
  display: flex; align-items: center; gap: 0.1rem;
  margin-bottom: 0.75rem;
}
.footer-tagline {
  font-family: var(--ff-serif); font-style: italic;
  color: var(--text-muted); font-size: 0.95rem;
}
.footer h4 {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.88rem; color: var(--text-secondary);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.contact-list { display: flex; flex-direction: column; gap: 0.8rem; }
.contact-list li, .contact-list a {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.88rem; color: var(--text-secondary);
  transition: color 0.3s;
}
.contact-list a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.2rem 0; text-align: center;
}
.footer-bottom p { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.05em; }

/* ===== REVEAL ANIMATION ===== */
[data-reveal] {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
  will-change: opacity, transform;
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

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

/* ── TABLET  769px – 1024px ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  /* Container */
  .container { padding: 0 1.5rem; }

  /* Navbar */
  .navbar { padding: 1rem 1.5rem; }
  .navbar.scrolled { padding: 0.75rem 1.5rem; }
  .logo-sub { font-size: 0.65rem; letter-spacing: 0.08em; }

  /* Hero */
  .hero-headline { font-size: clamp(2.8rem, 7vw, 5.5rem); }

  /* About */
  .about { padding: 5rem 0; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-swiggy { grid-column: span 2; }
  .about-img-frame { max-width: 560px; }

  /* Menu */
  .menu { padding: 5rem 0; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .menu-tabs { max-width: 100%; }

  /* Gallery */
  .gallery { padding: 5rem 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.g-large { grid-column: span 2; aspect-ratio: 16/9; }
  .gallery-item.g-tall { grid-row: span 1; aspect-ratio: 4/3; }

  /* Testimonials */
  .testimonials { padding: 5rem 0; }
  .review-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }

  /* Reservation */
  .reservation { padding: 6rem 0; }

  /* Footer */
  .footer { padding: 3.5rem 0 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }

  /* Section header */
  .section-header { margin-bottom: 2.5rem; }
  .section-title { font-size: clamp(2rem, 4vw, 3rem); }
}

/* ── MOBILE  ≤ 768px ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Container */
  .container { padding: 0 1.2rem; }

  /* Navbar */
  .navbar { padding: 1rem 1.2rem; }
  .navbar.scrolled { padding: 0.7rem 1.2rem; }
  .logo-lsd { font-size: 1.1rem; }
  .logo-dash { font-size: 0.6rem; }
  .logo-sub { font-size: 0.6rem; letter-spacing: 0.05em; }

  /* Mobile nav overlay */
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 1.8rem;
    align-items: center;
    justify-content: center;
    position: fixed;
    inset: 0;
    background: rgba(10, 8, 6, 0.97);
    backdrop-filter: blur(12px);
    z-index: 99;
    padding: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; letter-spacing: 0.14em; }
  .nav-cta { padding: 0.7rem 2rem !important; }
  .nav-hamburger { display: flex; position: relative; z-index: 101; }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero-content { padding: 0 1.2rem; }
  .hero-eyebrow { margin-bottom: 1rem; font-size: 0.68rem; }
  .hero-headline {
    font-size: clamp(2.4rem, 10vw, 4rem);
    margin-bottom: 1rem;
  }
  .hero-sub { font-size: 0.9rem; margin-bottom: 2rem; }
  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 2rem;
  }
  .hero-ctas .btn { width: 100%; max-width: 300px; justify-content: center; }
  .hero-badge { font-size: 0.72rem; padding: 0.45rem 1rem; }
  .hero-scroll-hint { display: none; }

  /* About */
  .about { padding: 4rem 0; }
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-body { font-size: 0.97rem; }
  .about-tagline { font-size: 1.3rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .stat-swiggy { grid-column: span 2; }
  .stat-card { padding: 1rem; }
  .stat-icon { font-size: 1.3rem; }
  .about-img-frame { aspect-ratio: 16/9; max-width: 100%; }

  /* Menu */
  .menu { padding: 4rem 0; }
  .menu-tabs { max-width: 100%; font-size: 0.7rem; }
  .tab-btn { padding: 0.75rem 0.5rem; font-size: 0.68rem; }
  .menu-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
    gap: 1.2rem;
  }
  .menu-img-wrap { aspect-ratio: 4/3; }

  /* Gallery */
  .gallery { padding: 4rem 0; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }
  .gallery-item { aspect-ratio: 1; }
  .gallery-item.g-large { grid-column: span 2; aspect-ratio: 16/9; }
  .gallery-item.g-tall { grid-row: span 1; aspect-ratio: 1; }
  .gallery-overlay { opacity: 1; background: linear-gradient(to top, rgba(10,8,6,0.7) 0%, transparent 60%); }
  .gallery-overlay span { font-size: 0.88rem; }

  /* Testimonials */
  .testimonials { padding: 4rem 0; }
  .review-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .review-card { padding: 1.5rem; }
  .review-text { font-size: 0.97rem; }

  /* Reservation */
  .reservation { padding: 5rem 0; }
  .res-headline { font-size: clamp(2rem, 8vw, 3.2rem); }
  .res-sub { font-size: 0.92rem; margin-bottom: 2rem; }
  .res-ctas {
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
  }
  .res-ctas .btn { width: 100%; max-width: 300px; justify-content: center; }

  /* Footer */
  .footer { padding: 3rem 0 0; }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  .footer-brand { text-align: center; }
  .footer-logo { justify-content: center; }

  /* Section globals */
  .section-header { margin-bottom: 2rem; }
  .section-title { font-size: clamp(1.8rem, 6.5vw, 2.6rem); }
  .section-sub { font-size: 0.92rem; }

  /* Reveal: reduce travel distance on mobile */
  [data-reveal] { transform: translateY(16px); }
}

/* ── SMALL MOBILE  ≤ 480px ────────────────────────────────────────────── */
@media (max-width: 480px) {
  /* Container */
  .container { padding: 0 1rem; }

  /* Navbar */
  .navbar { padding: 0.9rem 1rem; }
  .logo-lsd { font-size: 1.2rem; }

  /* Hero */
  .hero-headline { font-size: clamp(2rem, 11vw, 3.2rem); }
  .hero-ctas .btn, .res-ctas .btn { max-width: 100%; }

  /* About stats — single col on very small screens */
  .stats-grid { grid-template-columns: 1fr; }
  .stat-swiggy { grid-column: span 1; }

  /* Gallery single column */
  .gallery-grid { grid-template-columns: 1fr; gap: 0.6rem; }
  .gallery-item.g-large { grid-column: span 1; aspect-ratio: 4/3; }

  /* Menu full width */
  .menu-grid { max-width: 100%; }
  .menu-tabs { border-radius: var(--radius); }

  /* Review card tighter */
  .review-card { padding: 1.2rem; }
  .review-text { font-size: 0.92rem; }

  /* Footer */
  .footer-inner { gap: 1.5rem; }

  /* Typography */
  .section-title { font-size: clamp(1.7rem, 8vw, 2.2rem); }
  .about-tagline { font-size: 1.15rem; }
  .res-headline { font-size: clamp(1.8rem, 9vw, 2.6rem); }
}

