/* ═══════════════════════════════════════════════════════════════
   Beach Grill's Andhra Annam — Premium Restaurant Website
   Design: Cinematic Dark Luxury × Andhra Spice
   Fonts: Cormorant Garamond (display) + DM Sans (body) + Bebas Neue (label)
═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=DM+Sans:wght@300;400;500;600&family=Bebas+Neue&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --bg-deep:    #080604;
  --bg-dark:    #110d08;
  --bg-card:    #1c1510;
  --bg-card2:   #231a12;
  --gold:       #c8922a;
  --gold-lt:    #e8b84b;
  --gold-dim:   #7a5518;
  --spice:      #b5380e;
  --spice-lt:   #e04a15;
  --cream:      #f2e8d8;
  --cream-dim:  #c4b49e;
  --text:       #e0d2be;
  --text-muted: #7a6a58;
  --border:     rgba(200,146,42,.18);
  --border-lt:  rgba(200,146,42,.35);
  --glow-gold:  0 0 30px rgba(200,146,42,.3);
  --glow-spice: 0 0 30px rgba(181,56,14,.3);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-label:   'Bebas Neue', sans-serif;
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text);
  overflow-x: hidden;
  cursor: default;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; object-fit: cover; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 2px; }

/* ── Utility ───────────────────────────────────────────────── */
.label {
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
}
.display {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.05;
}
.gradient-text {
  background: linear-gradient(135deg, var(--gold-lt), var(--gold), var(--spice));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gold-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 20px 0;
}
.gold-line.center { margin-left: auto; margin-right: auto; }
.section-pad { padding: 120px 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

/* ── Scroll Animations ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-50px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(50px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* ── Custom Cursor ─────────────────────────────────────────── */
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transition: transform 0.15s var(--ease), background 0.2s;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(200,146,42,.5);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transition: transform 0.35s var(--ease), width 0.3s, height 0.3s, border-color 0.3s;
  transform: translate(-50%, -50%);
}
body.cursor-hover .cursor-dot  { transform: translate(-50%,-50%) scale(2.5); background: var(--spice-lt); }
body.cursor-hover .cursor-ring { width: 60px; height: 60px; border-color: rgba(181,56,14,.5); }

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 40px;
  display: flex; align-items: center; justify-content: space-between;
  transition: padding 0.4s var(--ease), background 0.4s, backdrop-filter 0.4s;
}
.nav.scrolled {
  padding: 14px 40px;
  background: rgba(8,6,4,.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
}
.nav-logo-emblem {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--spice));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  box-shadow: var(--glow-gold);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.nav-logo-emblem:hover { transform: rotate(15deg) scale(1.1); box-shadow: 0 0 40px rgba(200,146,42,.5); }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-main {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.5px;
}
.nav-logo-sub {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
}
.nav-links {
  display: flex; align-items: center; gap: 36px;
}
.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cream-dim);
  position: relative;
  transition: color 0.25s;
}
.nav-links a::after {
  content: '';
  position: absolute; left: 0; bottom: -4px; right: 100%; height: 1px;
  background: var(--gold);
  transition: right 0.3s var(--ease);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { right: 0; }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-phone {
  font-size: 12px; letter-spacing: 1px;
  color: var(--gold); font-weight: 600;
}
.btn-book {
  padding: 10px 22px;
  background: transparent;
  border: 1px solid var(--gold);
  border-radius: 2px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-book::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
  z-index: -1;
}
.btn-book:hover { color: var(--bg-deep); box-shadow: var(--glow-gold); }
.btn-book:hover::before { transform: scaleX(1); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; }
.nav-toggle span {
  width: 24px; height: 1.5px; background: var(--cream); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 140px 60px 100px 80px;
  position: relative; z-index: 2;
  background: linear-gradient(105deg, var(--bg-deep) 60%, transparent);
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 28px;
  animation: fadeSlideUp 1s var(--ease) 0.2s both;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--spice);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--spice);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; box-shadow: 0 0 12px var(--spice); }
  50%      { opacity: .5; box-shadow: 0 0 24px var(--spice); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 300;
  line-height: 1.0;
  color: var(--cream);
  animation: fadeSlideUp 1s var(--ease) 0.4s both;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-lt);
  display: block;
}
.hero-subtitle {
  margin-top: 28px;
  font-size: 16px;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 400px;
  line-height: 1.7;
  animation: fadeSlideUp 1s var(--ease) 0.6s both;
}
.hero-ctas {
  display: flex; gap: 16px; margin-top: 44px;
  animation: fadeSlideUp 1s var(--ease) 0.8s both;
}
.btn-primary {
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--spice), var(--gold));
  border-radius: 2px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,.12);
  opacity: 0; transition: opacity 0.3s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(181,56,14,.4); }
.btn-primary:hover::after { opacity: 1; }
.btn-outline {
  padding: 16px 36px;
  border: 1px solid rgba(200,146,42,.4);
  border-radius: 2px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  transition: all 0.35s var(--ease);
}
.btn-outline:hover {
  background: rgba(200,146,42,.08);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--glow-gold);
}
.hero-stats {
  display: flex; gap: 40px; margin-top: 60px;
  animation: fadeSlideUp 1s var(--ease) 1s both;
}
/* .hero-stat removed (empty) */
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-lbl { font-size: 11px; color: var(--text-muted); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 4px; }
.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-img-wrap {
  width: 100%; height: 100%;
  position: relative;
}
.hero-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
  transition: transform 8s ease;
  filter: brightness(0.75) saturate(1.2);
}
.hero-right::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--bg-deep) 0%, transparent 30%, transparent 70%, var(--bg-deep) 100%),
              linear-gradient(to bottom, transparent 70%, var(--bg-deep));
  z-index: 1;
}
/* Fallback gradient when no image */
.hero-img-fallback {
  width: 100%; height: 100%; min-height: 100vh;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(181,56,14,.35) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(200,146,42,.2) 0%, transparent 50%),
    linear-gradient(135deg, #1a0c05, #2a1208, #1a0a04);
  display: flex; align-items: center; justify-content: center;
}
.hero-img-fallback-icon { font-size: 120px; opacity: .15; }
.hero-badge {
  position: absolute; bottom: 60px; right: 60px; z-index: 3;
  width: 120px; height: 120px;
  background: rgba(8,6,4,.7);
  border: 1px solid var(--border-lt);
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  backdrop-filter: blur(10px);
  animation: spin 20s linear infinite;
}
.hero-badge-inner {
  font-size: 11px;
  letter-spacing: 0.5px;
  line-height: 1.4;
  color: var(--cream);
}
.hero-badge-num { font-family: var(--font-display); font-size: 32px; font-weight: 600; color: var(--gold); display: block; }
.hero-scroll {
  position: absolute; bottom: 40px; left: 80px; z-index: 3;
  display: flex; align-items: center; gap: 14px;
  animation: fadeSlideUp 1s var(--ease) 1.2s both;
}
.hero-scroll-line {
  width: 40px; height: 1px; background: var(--gold-dim);
  position: relative; overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: var(--gold);
  animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine { 0%{left:-100%} 100%{left:200%} }
.hero-scroll-txt { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); }

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

/* ── Particles ─────────────────────────────────────────────── */
.particles {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0;
}
.particle {
  position: absolute; bottom: -10px;
  width: 2px; height: 2px;
  border-radius: 50%;
  background: var(--gold);
  animation: rise var(--dur, 8s) var(--delay, 0s) infinite ease-in;
  opacity: 0;
}
@keyframes rise {
  0%   { bottom: -10px; opacity: 0; transform: translateX(0) scale(1); }
  10%  { opacity: .8; }
  90%  { opacity: .4; }
  100% { bottom: 100%; opacity: 0; transform: translateX(var(--drift, 30px)) scale(0.5); }
}

/* ═══════════════════════════════════════════════════════════
   MARQUEE STRIP
═══════════════════════════════════════════════════════════ */
.marquee-strip {
  background: linear-gradient(90deg, var(--spice) 0%, var(--gold-dim) 50%, var(--spice) 100%);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex; gap: 60px;
  animation: marquee 25s linear infinite;
  white-space: nowrap; width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: 3px;
  color: rgba(255,255,255,.85);
}
.marquee-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.5); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═══════════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════════ */
.about { background: var(--bg-dark); position: relative; overflow: hidden; }
.about::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,146,42,.06) 0%, transparent 70%);
  pointer-events: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-block {
  position: relative;
}
.about-img-main {
  border-radius: 4px;
  overflow: hidden;
  height: 520px;
  position: relative;
}
.about-img-main img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
  filter: brightness(0.85) saturate(1.1);
}
.about-img-main:hover img { transform: scale(1.04); }
/* Fallback */
.about-img-main .img-fallback {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #2a1a0a, #1a0d05);
  display: flex; align-items: center; justify-content: center;
  font-size: 80px; opacity: .2;
}
.about-img-accent {
  position: absolute; bottom: -30px; right: -30px;
  width: 200px; height: 200px;
  border-radius: 4px;
  overflow: hidden;
  border: 4px solid var(--bg-dark);
  box-shadow: var(--glow-gold);
}
.about-img-accent img { height: 100%; object-fit: cover; filter: brightness(0.9) saturate(1.3); }
.about-img-accent .img-fallback {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #3a1a08, #2a0e04);
  display: flex; align-items: center; justify-content: center;
  font-size: 40px;
}
.about-year-badge {
  position: absolute; top: -20px; left: -20px;
  width: 100px; height: 100px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--bg-deep);
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 1px;
  text-align: center;
  box-shadow: var(--glow-gold);
  z-index: 2;
}
.about-year-badge strong { font-size: 28px; font-family: var(--font-display); display: block; }
/* .about-content removed (empty) */
.about-story {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  color: var(--cream-dim);
  line-height: 1.7;
  margin-bottom: 24px;
}
.about-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 36px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
.about-feat {
  display: flex; align-items: flex-start; gap: 14px;
}
.about-feat-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(200,146,42,.08);
  border: 1px solid var(--border);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  transition: all 0.3s;
}
.about-feat:hover .about-feat-icon {
  background: rgba(200,146,42,.15);
  border-color: var(--gold);
  transform: scale(1.1);
}
.about-feat-title { font-size: 13px; font-weight: 600; color: var(--cream); margin-bottom: 3px; }
.about-feat-body  { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════
   WHY VISIT US
═══════════════════════════════════════════════════════════ */
.why { background: var(--bg-deep); position: relative; }
.why::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(181,56,14,.08) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 50%, rgba(200,146,42,.06) 0%, transparent 50%);
  pointer-events: none;
}
.why-header { text-align: center; margin-bottom: 70px; }
.why-title { font-family: var(--font-display); font-size: clamp(38px,5vw,64px); font-weight: 300; color: var(--cream); }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}
.why-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--spice), var(--gold), var(--spice));
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}
.why-card:hover { transform: translateY(-8px); border-color: var(--border-lt); box-shadow: 0 20px 60px rgba(0,0,0,.4), var(--glow-gold); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon { font-size: 40px; margin-bottom: 20px; display: block; }
.why-card-title { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--cream); margin-bottom: 12px; }
.why-card-body { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.why-cta { text-align: center; margin-top: 60px; }
.why-cta p { color: var(--text-muted); margin-bottom: 24px; font-size: 15px; }

/* ═══════════════════════════════════════════════════════════
   SIGNATURE DISHES
═══════════════════════════════════════════════════════════ */
.signature { background: var(--bg-card); position: relative; overflow: hidden; }
.signature::after {
  content: 'SIGNATURE';
  position: absolute; right: -40px; top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: var(--font-label);
  font-size: 80px;
  letter-spacing: 20px;
  color: rgba(200,146,42,.04);
  pointer-events: none;
  white-space: nowrap;
}
.signature-header { margin-bottom: 70px; }
.signature-title { font-family: var(--font-display); font-size: clamp(40px,5vw,68px); font-weight: 300; color: var(--cream); max-width: 600px; }
.signature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.sig-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg-dark);
  cursor: pointer;
}
.sig-card img, .sig-card .img-fallback {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease), filter 0.7s;
  filter: brightness(0.65) saturate(1.1);
}
.sig-card:hover img, .sig-card:hover .img-fallback { transform: scale(1.08); filter: brightness(0.8) saturate(1.3); }
.sig-card .img-fallback {
  display: flex; align-items: center; justify-content: center;
  font-size: 80px;
}
/* fallback gradients */
.sig-card:nth-child(1) .img-fallback { background: linear-gradient(135deg, #2a0d05, #4a1a08, #2a0d05); }
.sig-card:nth-child(2) .img-fallback { background: linear-gradient(135deg, #0a1a0a, #1a3010, #0a1a0a); }
.sig-card:nth-child(3) .img-fallback { background: linear-gradient(135deg, #1a0d20, #2a1a38, #1a0d20); }
.sig-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.9) 0%, transparent 60%);
  z-index: 1;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px;
}
.sig-tag { font-family: var(--font-label); font-size: 11px; letter-spacing: 3px; color: var(--gold); margin-bottom: 8px; }
.sig-name { font-family: var(--font-display); font-size: 28px; font-weight: 400; color: #fff; margin-bottom: 6px; }
.sig-desc { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.5; max-width: 240px; margin-bottom: 16px; transform: translateY(20px); opacity: 0; transition: all 0.4s var(--ease); }
.sig-price { font-family: var(--font-display); font-size: 24px; font-weight: 600; color: var(--gold-lt); }
.sig-card:hover .sig-desc { transform: translateY(0); opacity: 1; }

/* ═══════════════════════════════════════════════════════════
   FULL MENU
═══════════════════════════════════════════════════════════ */
.menu-section { background: var(--bg-dark); }
.menu-header { text-align: center; margin-bottom: 50px; }
.menu-title { font-family: var(--font-display); font-size: clamp(36px,5vw,60px); font-weight: 300; color: var(--cream); }
.menu-tabs {
  display: flex; justify-content: center; gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 50px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
}
.menu-tab {
  padding: 12px 24px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  transition: all 0.25s;
  border-radius: 0;
}
.menu-tab.active, .menu-tab:hover { color: var(--gold); border-bottom-color: var(--gold); }
.menu-panel { display: none; }
.menu-panel.active { display: block; }
.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.menu-item {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  transition: background 0.25s;
  cursor: default;
}
.menu-item:hover { background: var(--bg-card2); }
.menu-item-veg-dot {
  width: 10px; height: 10px; flex-shrink: 0;
  border-radius: 2px;
  border: 1.5px solid;
}
.menu-item-veg-dot.veg   { border-color: #22c55e; background: rgba(34,197,94,.15); }
.menu-item-veg-dot.nonveg{ border-color: #ef4444; background: rgba(239,68,68,.15); }
.menu-item-info { flex: 1; }
.menu-item-name { font-size: 14px; font-weight: 500; color: var(--cream); margin-bottom: 2px; }
.menu-item-desc { font-size: 11px; color: var(--text-muted); }
.menu-item-price { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--gold); white-space: nowrap; }
.menu-note { text-align: center; margin-top: 40px; color: var(--text-muted); font-size: 13px; font-style: italic; }

/* ═══════════════════════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════════════════════ */
.gallery { background: var(--bg-deep); }
.gallery-header { text-align: center; margin-bottom: 50px; }
.gallery-title { font-family: var(--font-display); font-size: clamp(36px,5vw,60px); font-weight: 300; color: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 6px;
}
.gallery-item {
  overflow: hidden;
  position: relative;
  background: var(--bg-card);
}
.gallery-item:nth-child(1) { grid-column: 1/6; grid-row: 1/2; }
.gallery-item:nth-child(2) { grid-column: 6/9; grid-row: 1/3; }
.gallery-item:nth-child(3) { grid-column: 9/13; grid-row: 1/2; }
.gallery-item:nth-child(4) { grid-column: 1/4; grid-row: 2/3; }
.gallery-item:nth-child(5) { grid-column: 4/6; grid-row: 2/3; }
.gallery-item:nth-child(6) { grid-column: 9/13; grid-row: 2/3; }
.gallery-item img, .gallery-item .img-fallback {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease), filter 0.5s;
  filter: brightness(0.75) saturate(1.1);
}
.gallery-item:hover img, .gallery-item:hover .img-fallback { transform: scale(1.08); filter: brightness(0.9) saturate(1.3); }
.gallery-item .img-fallback { display: flex; align-items: center; justify-content: center; font-size: 60px; }
.gallery-item:nth-child(1) .img-fallback { background: linear-gradient(135deg, #2a1008, #1a0804); }
.gallery-item:nth-child(2) .img-fallback { background: linear-gradient(135deg, #0a1a08, #08100a); }
.gallery-item:nth-child(3) .img-fallback { background: linear-gradient(135deg, #1a0a2a, #100818); }
.gallery-item:nth-child(4) .img-fallback { background: linear-gradient(135deg, #2a1808, #1a0f04); }
.gallery-item:nth-child(5) .img-fallback { background: linear-gradient(135deg, #1a0808, #100604); }
.gallery-item:nth-child(6) .img-fallback { background: linear-gradient(135deg, #081818, #050f10); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.3);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.4s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-icon { font-size: 30px; color: #fff; }

/* ═══════════════════════════════════════════════════════════
   EVENTS & SPECIALS
═══════════════════════════════════════════════════════════ */
.events { background: var(--bg-card); position: relative; overflow: hidden; }
.events::before {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0; width: 50%;
  background: linear-gradient(to left, rgba(181,56,14,.06), transparent);
}
.events-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
/* .events-content removed (empty) */
.events-cards { display: flex; flex-direction: column; gap: 20px; }
.event-card {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-left: 3px solid var(--spice);
  border-radius: 0 4px 4px 0;
  padding: 24px 28px;
  display: flex; gap: 20px; align-items: center;
  transition: all 0.3s var(--ease);
}
.event-card:hover { border-left-color: var(--gold); transform: translateX(8px); box-shadow: var(--glow-gold); }
.event-icon { font-size: 32px; flex-shrink: 0; }
.event-title { font-size: 16px; font-weight: 600; color: var(--cream); margin-bottom: 4px; }
.event-desc  { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.event-time  { font-family: var(--font-label); font-size: 11px; letter-spacing: 2px; color: var(--gold); margin-top: 6px; }

/* ═══════════════════════════════════════════════════════════
   RESERVATION
═══════════════════════════════════════════════════════════ */
.reservation {
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
}
.reservation::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(200,146,42,.08) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(181,56,14,.06) 0%, transparent 60%);
  pointer-events: none;
}
.reservation-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.res-title { font-family: var(--font-display); font-size: clamp(40px,5vw,68px); font-weight: 300; color: var(--cream); margin-bottom: 16px; }
.res-subtitle { color: var(--text-muted); font-size: 16px; line-height: 1.7; margin-bottom: 50px; }
.res-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; text-align: left; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-label { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.food-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
  background: rgba(200,146,42,.03);
  padding: 15px;
  border-radius: 4px;
  border: 1px solid var(--border);
}
.food-option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s;
}
.food-option:hover { color: var(--cream); }
.food-option input {
  accent-color: var(--gold);
  cursor: pointer;
}
.form-input, .form-select, .form-textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 14px 18px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color 0.25s, box-shadow 0.25s;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,146,42,.08);
}
.form-input::placeholder { color: var(--text-muted); }
.form-select { cursor: pointer; }
.form-select option { background: var(--bg-card2); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-submit { grid-column: 1/-1; text-align: center; margin-top: 10px; }
.btn-submit {
  padding: 16px 60px;
  background: linear-gradient(135deg, var(--spice), var(--gold));
  border-radius: 3px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-submit:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(181,56,14,.4); }
.form-success {
  display: none;
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.3);
  border-radius: 4px;
  padding: 20px;
  text-align: center;
  color: #86efac;
  font-size: 15px;
  margin-top: 20px;
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════ */
.testimonials { background: var(--bg-card); }
.test-header { text-align: center; margin-bottom: 50px; }
.test-title { font-family: var(--font-display); font-size: clamp(34px,4vw,54px); font-weight: 300; color: var(--cream); }
.test-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.test-card {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px;
  position: relative;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.test-card:hover { transform: translateY(-6px); border-color: var(--border-lt); }
.test-quote { font-size: 48px; color: var(--gold-dim); font-family: var(--font-display); line-height: 0.5; margin-bottom: 16px; }
.test-text { font-size: 14px; color: var(--text-muted); line-height: 1.8; font-style: italic; margin-bottom: 24px; }
.test-stars { color: var(--gold); font-size: 14px; margin-bottom: 16px; }
.test-author { display: flex; align-items: center; gap: 12px; }
.test-av { width: 40px; height: 40px; border-radius: 50%; background: var(--gold-dim); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; color: var(--bg-deep); }
.test-name { font-weight: 600; font-size: 13px; color: var(--cream); }
.test-from { font-size: 11px; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════ */
.contact { background: var(--bg-dark); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
/* .contact-info removed (empty) */
.contact-title { font-family: var(--font-display); font-size: clamp(36px,4vw,54px); font-weight: 300; color: var(--cream); margin-bottom: 40px; }
.contact-items { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; gap: 20px; align-items: flex-start; }
.contact-item-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(200,146,42,.08);
  border: 1px solid var(--border);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  transition: all 0.3s;
}
.contact-item:hover .contact-item-icon { background: rgba(200,146,42,.15); border-color: var(--gold); }
.contact-item-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-item-val { font-size: 15px; color: var(--cream); line-height: 1.6; }
.contact-item-val a { color: var(--cream); transition: color 0.2s; }
.contact-item-val a:hover { color: var(--gold); }
.contact-map {
  border-radius: 4px;
  overflow: hidden;
  height: 400px;
  border: 1px solid var(--border);
  position: relative;
}
.contact-map iframe { width: 100%; height: 100%; border: none; filter: grayscale(60%) invert(10%); }
.contact-map-fallback {
  width: 100%; height: 100%;
  background: var(--bg-card);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px;
  color: var(--text-muted);
}
.contact-map-fallback-icon { font-size: 48px; }
.contact-map-fallback a {
  color: var(--gold);
  font-size: 13px;
  padding: 10px 20px;
  border: 1px solid var(--border-lt);
  border-radius: 3px;
  transition: background 0.2s;
}
.contact-map-fallback a:hover { background: rgba(200,146,42,.08); }
.contact-social { display: flex; gap: 12px; margin-top: 32px; }
.social-btn {
  width: 44px; height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: all 0.3s;
  text-decoration: none;
}
.social-btn:hover { background: rgba(200,146,42,.12); border-color: var(--gold); transform: translateY(-3px); }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
  background: #040302;
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
/* .footer-brand removed (empty) */
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-logo-em {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--gold-dim), var(--spice));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.footer-logo-name { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--cream); }
.footer-tagline { font-size: 14px; color: var(--text-muted); line-height: 1.8; max-width: 280px; margin-bottom: 20px; }
.footer-mktg {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  color: var(--gold);
  line-height: 1.5;
}
.footer-col-title {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 2.5px;
  color: var(--cream);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-hours { display: flex; flex-direction: column; gap: 8px; }
.footer-hour { display: flex; justify-content: space-between; font-size: 12px; color: var(--text-muted); }
.footer-hour span:last-child { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12px; color: var(--text-muted); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 12px; color: var(--text-muted); transition: color 0.2s; }
.footer-legal a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   BACK-TO-TOP
═══════════════════════════════════════════════════════════ */
.btt {
  position: fixed; bottom: 30px; right: 30px;
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--bg-deep);
  z-index: 90;
  transform: translateY(80px);
  transition: transform 0.4s var(--ease), box-shadow 0.3s;
  box-shadow: var(--glow-gold);
}
.btt.visible { transform: translateY(0); }
.btt:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(200,146,42,.5); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
/* Mobile Menu (Hidden by default on desktop) */
.nav-mobile-menu {
  display: none !important;
}

@media (max-width: 1100px) {
  .why-grid       { grid-template-columns: repeat(2,1fr); }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .gallery-grid {
    grid-template-columns: repeat(6,1fr);
    grid-template-rows: repeat(3, 200px);
  }
  .gallery-item:nth-child(1) { grid-column:1/4; grid-row:1/2; }
  .gallery-item:nth-child(2) { grid-column:4/7; grid-row:1/3; }
  .gallery-item:nth-child(3) { grid-column:1/4; grid-row:2/3; }
  .gallery-item:nth-child(4) { grid-column:1/3; grid-row:3/4; }
  .gallery-item:nth-child(5) { grid-column:3/5; grid-row:3/4; }
  .gallery-item:nth-child(6) { grid-column:5/7; grid-row:3/4; }
}

@media (max-width: 900px) {
  .section-pad { padding: 80px 0; }
  .container { padding: 0 24px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 120px 24px 60px; }
  .hero-right { height: 50vw; min-height: 260px; }
  .hero-badge { bottom: 20px; right: 20px; width: 90px; height: 90px; }
  .hero-badge-num { font-size: 24px; }
  .hero-badge-inner { font-size: 9px; }
  .hero-scroll { display: none; }
  .about-grid, .events-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-img-accent { display: none; }
  .about-year-badge { width: 80px; height: 80px; top: -10px; left: -10px; }
  .about-year-badge strong { font-size: 22px; }
  .signature-grid { grid-template-columns: 1fr; }
  .sig-card { aspect-ratio: 16/9; }
  .test-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-toggle { display: flex; }

  .nav-mobile-menu {
    position: fixed; inset: 0;
    background: rgba(8,6,4,.97);
    backdrop-filter: blur(20px);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 36px; z-index: 200;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
  }
  .nav-mobile-menu.open { transform: translateX(0); }
  .nav-mobile-menu a { font-family: var(--font-display); font-size: 36px; font-weight: 300; color: var(--cream); transition: color 0.2s; }
  .nav-mobile-menu a:hover { color: var(--gold); }
  .nav-mobile-close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: var(--cream); font-size: 24px; cursor: pointer; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .res-form { grid-template-columns: 1fr; }
  .form-field.full { grid-column: 1; }
  .hero-stats { gap: 24px; }
  .hero-stat-num { font-size: 28px; }
  .cursor-dot, .cursor-ring { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-map { height: 280px; }
}

