/* ---------- Fonts ---------- */
@font-face {
  font-family: 'Familjen Grotesk';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/familjen-grotesk-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Karla';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/karla-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Karla';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/karla-700.woff2') format('woff2');
}

/* ---------- Reset & Base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #131210;
  --bg-elevated: #1c1a17;
  --bg-elevated-2: #242019;
  --line: rgba(246,243,236,0.10);
  --line-strong: rgba(246,243,236,0.20);
  --ink: #f6f3ec;
  --muted: #a39a8d;
  --accent: #e8a33d;
  --accent-ink: #171208;
  --accent-soft: rgba(232,163,61,0.13);
  --zomato: #cb202d;
  --swiggy: #fc8019;
  --green: #57b65c;
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.35);
  --shadow-lg: 0 24px 60px rgba(0,0,0,0.5);
  --font-display: 'Familjen Grotesk', 'Century Gothic', sans-serif;
  --font-body: 'Karla', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-family: var(--font-body);
}

html { scroll-behavior: smooth; }

body {
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

.grid-texture {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    repeating-linear-gradient(to right, rgba(246,243,236,0.05) 0px, rgba(246,243,236,0.05) 1px, transparent 1px, transparent 64px),
    repeating-linear-gradient(to bottom, rgba(246,243,236,0.05) 0px, rgba(246,243,236,0.05) 1px, transparent 1px, transparent 64px);
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, black 40%, transparent 85%);
}

.navbar, .hero, .info-bar, .menu-toolbar, .menu-section, .about, .gallery,
.reviews, .location, .cta, .footer, .cart-drawer, .cart-overlay, .toast {
  position: relative;
  z-index: 1;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.hidden { display: none !important; }

a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

h1, h2, h3, .logo-text, .hero-card h3, .stat strong,
.rating-big h3, .menu-category-title, .cart-header h3, .ticket h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.1px;
}

/* ---------- Icons ---------- */
.icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-dot { fill: currentColor; stroke: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.92rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn .icon { width: 18px; height: 18px; }
.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(232,163,61,0.28); }
.btn-swiggy {
  background: transparent;
  color: var(--swiggy);
  border-color: var(--swiggy);
}
.btn-swiggy:hover { background: var(--swiggy); color: #1a0e04; transform: translateY(-2px); }
.btn-zomato {
  background: transparent;
  color: #ff5c68;
  border-color: #ff5c68;
}
.btn-zomato:hover { background: var(--zomato); color: #fff; border-color: var(--zomato); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink);
}
.btn-outline:hover { border-color: var(--ink); background: rgba(246,243,236,0.06); transform: translateY(-2px); }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }
.full-width { width: 100%; }
.btn-group { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-group.center { justify-content: center; }
.btn-group.stack { flex-direction: column; }

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(19,18,16,0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease;
}
.navbar.scrolled { border-color: var(--line); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo { display: flex; align-items: center; gap: 10px; font-size: 1.35rem; }
.logo-mark {
  width: 36px; height: 36px;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 0.92rem;
  flex-shrink: 0;
}
.logo-text { letter-spacing: 0.2px; color: var(--ink); }
.logo-text em { color: var(--accent); font-style: normal; }

.nav-links { display: flex; gap: 30px; }
.nav-link {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--muted);
  position: relative;
  padding: 6px 0;
  transition: color 0.15s ease;
}
.nav-link:hover, .nav-link.active { color: var(--ink); }
.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -4px; left: 0;
  width: 100%; height: 2px;
  background: var(--accent);
}

.nav-actions { display: flex; align-items: center; gap: 14px; }
.icon-btn {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.15s ease;
  color: var(--ink);
}
.icon-btn:hover { border-color: var(--accent); color: var(--accent); }
.icon-btn .icon { width: 20px; height: 20px; }
.cart-badge {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { width: 22px; height: 2px; background: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  padding: 90px 0 110px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; opacity: 0.7; z-index: 0; }
.hero-bg .icon {
  position: absolute;
  width: 60px; height: 60px;
  stroke-width: 1.3;
  color: var(--accent);
  opacity: 0.1;
}
.hero-bg .e1 { top: 8%; left: 3%; }
.hero-bg .e2 { top: 70%; left: 8%; width: 44px; height: 44px; }
.hero-bg .e3 { top: 12%; right: 6%; }
.hero-bg .e4 { bottom: 8%; right: 16%; width: 50px; height: 50px; }

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.76rem;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  border: 1px solid rgba(232,163,61,0.25);
}
.pill .icon { width: 14px; height: 14px; }

.hero-typing {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 14px;
  min-height: 1.4em;
}
.type-cursor {
  display: inline-block;
  margin-left: 2px;
  color: var(--accent);
  animation: type-blink 0.9s steps(1) infinite;
}
@keyframes type-blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 5.2vw, 4.2rem);
  line-height: 1.02;
  margin-bottom: 22px;
  text-wrap: balance;
  color: var(--ink);
}
.accent { color: var(--accent); }

.hero-sub { color: var(--muted); font-size: 1.06rem; max-width: 490px; margin-bottom: 34px; }

.hero-stats { display: flex; gap: 34px; margin-bottom: 36px; flex-wrap: wrap; }
.stat strong { display: block; font-size: 1.6rem; line-height: 1; color: var(--ink); }
.stat small { color: var(--muted); font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.star { color: var(--accent); }

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-actions.center { justify-content: center; }

/* ---------- Ticket (hero visual) ---------- */
.ticket {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-lg);
}
.ticket-eyebrow {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.lottie-spark {
  display: inline-block;
  width: 22px;
  height: 22px;
}
.ticket-icon {
  width: 64px; height: 64px;
  color: var(--accent);
  margin-bottom: 14px;
}
.ticket-icon .icon { width: 100%; height: 100%; stroke-width: 1.4; }
.ticket h3 { font-size: 1.4rem; margin-bottom: 8px; color: var(--ink); }
.ticket p { color: var(--muted); font-size: 0.88rem; margin-bottom: 22px; }
.ticket-divider {
  height: 1px;
  background: repeating-linear-gradient(to right, var(--line-strong) 0 6px, transparent 6px 12px);
  margin-bottom: 16px;
}
.ticket-row { display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--muted); margin-bottom: 8px; font-variant-numeric: tabular-nums; }
.ticket-row.total { color: var(--ink); font-family: var(--font-display); font-size: 1.3rem; margin-top: 12px; }
.ticket-barcode {
  height: 28px;
  margin-top: 20px;
  background: repeating-linear-gradient(to right, var(--line-strong) 0 2px, transparent 2px 5px, var(--line) 5px 6px, transparent 6px 9px);
  opacity: 0.8;
}

/* ---------- Info bar ---------- */
.info-bar { background: var(--bg-elevated); padding: 26px 0; border-bottom: 1px solid var(--line); border-top: 1px solid var(--line); }
.info-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.info-item { display: flex; align-items: flex-start; gap: 14px; }
.info-item .icon { color: var(--accent); margin-top: 2px; }
.info-item strong { display: block; font-size: 0.84rem; margin-bottom: 3px; font-family: var(--font-body); font-weight: 700; color: var(--ink); }
.info-item small { color: var(--muted); font-size: 0.78rem; line-height: 1.45; display: block; }
.info-item a { color: var(--ink); }
.info-item a:hover { color: var(--accent); }

/* ---------- Section heading ---------- */
/* text-align:center here is what centers the eyebrow/h2/p below, since they're
   inline-level content; no per-element centering needed. */
.section-heading { text-align: center; max-width: 560px; margin: 0 auto 46px; }
.eyebrow-line {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--accent); font-weight: 700; font-size: 0.76rem;
  letter-spacing: 1.3px; text-transform: uppercase; margin-bottom: 12px;
}
.section-heading h2 { font-size: clamp(1.9rem, 3.4vw, 2.5rem); margin-bottom: 12px; text-wrap: balance; color: var(--ink); }
.section-heading p { color: var(--muted); }
.section-heading a { color: var(--accent); font-weight: 700; }

/* ---------- Menu toolbar ---------- */
.menu-toolbar { padding: 100px 24px 0; }
.toolbar-controls {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  width: 100%;
  max-width: 420px;
  color: var(--muted);
}
.search-box input {
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--ink);
}
.search-box input::placeholder { color: var(--muted); }
.veg-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--green);
  border: 1px solid rgba(87,182,92,0.35);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
}
.veg-dot { width: 9px; height: 9px; background: var(--green); border-radius: 2px; display: inline-block; }

.category-pills {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  border: 1px solid var(--line);
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.83rem;
  cursor: pointer;
  transition: all 0.15s ease;
  color: var(--muted);
  font-family: var(--font-body);
}
.pill-btn .icon { width: 16px; height: 16px; }
.pill-btn:hover { border-color: var(--accent); color: var(--ink); }
.pill-btn.active { background: var(--accent-soft); border-color: var(--accent); color: var(--accent); }

/* ---------- Menu ---------- */
.menu-section { padding: 50px 24px 100px; }
.menu-category { margin-bottom: 54px; scroll-margin-top: 90px; }
.menu-category-title {
  font-size: 1.4rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 14px;
  color: var(--ink);
}
.menu-category-title .icon { width: 24px; height: 24px; color: var(--accent); stroke-width: 1.8; }
.menu-category-title span.count { color: var(--muted); font-weight: 500; font-size: 0.82rem; font-family: var(--font-body); margin-left: auto; }

.menu-grid {
  display: flex;
  flex-direction: column;
}

.menu-item {
  padding: 22px 4px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  border-bottom: 1px solid var(--line);
  transition: background 0.15s ease;
}
.menu-item:hover { background: rgba(232,163,61,0.035); }
.menu-item:last-child { border-bottom: none; }

.menu-item-body { flex: 1; min-width: 0; }
.menu-item-top { display: flex; align-items: baseline; gap: 9px; margin-bottom: 6px; }
.veg-icon { width: 14px; height: 14px; border: 1.5px solid var(--green); border-radius: 3px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.veg-icon i { width: 7px; height: 7px; background: var(--green); border-radius: 50%; }
.menu-item-name { font-weight: 700; font-size: 1.04rem; color: var(--ink); }
.menu-item-desc { color: var(--muted); font-size: 0.86rem; line-height: 1.5; max-width: 46ch; }
.menu-item-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  flex-shrink: 0;
  min-width: 56px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.qty-control {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-elevated-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 4px;
  flex-shrink: 0;
}
.qty-control button {
  width: 24px; height: 24px;
  border-radius: 3px;
  border: none;
  background: var(--bg-elevated);
  font-weight: 800;
  cursor: pointer;
  color: var(--accent);
}
.qty-control span { font-weight: 700; min-width: 14px; text-align: center; font-size: 0.85rem; color: var(--ink); }

.add-btn {
  border: 1px solid var(--line-strong);
  color: var(--ink);
  background: transparent;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.15s ease;
  flex-shrink: 0;
  font-family: var(--font-body);
}
.add-btn:hover { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }

.menu-item-side { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; flex-shrink: 0; }

.no-results { text-align: center; color: var(--muted); padding: 40px 0; }

/* ---------- About ---------- */
.about { padding: 104px 0; background: var(--bg-elevated); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.about-emoji-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.about-emoji-grid span {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  aspect-ratio: 1;
  display: block;
  color: var(--accent);
  perspective: 800px;
  /* border-color/glow are transitioned here; the icon's own scale/rotate is
     handled separately via GSAP in initAboutGridHover() for a springier feel */
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.about-emoji-grid span:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 0 24px rgba(232, 163, 61, 0.35);
}
.about-emoji-grid span .icon { width: 40%; height: 40%; stroke-width: 1.5; }

/* Vertical (X-axis) 3D flip: hovering a dish icon rotates it to reveal a
   short fact on the back face. transform-style/backface-visibility do the
   3D work; Tailwind supplies the transition utility. */
.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.4, 0.1, 0.2, 1);
}
.about-emoji-grid span:hover .flip-inner { transform: rotateX(180deg); }
.flip-face {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
}
.flip-front { color: var(--accent); }
.flip-back {
  transform: rotateX(180deg);
  padding: 10%;
  text-align: center;
}
.flip-back p { font-size: 1.05rem; font-weight: 700; color: var(--ink); line-height: 1.4; }

.eyebrow { color: var(--accent); font-weight: 700; font-size: 0.78rem; letter-spacing: 1.3px; text-transform: uppercase; }
.about-copy h2 { font-size: clamp(1.9rem, 3.4vw, 2.4rem); margin: 12px 0 16px; line-height: 1.15; text-wrap: balance; color: var(--ink); }
.about-copy p { color: var(--muted); margin-bottom: 22px; }
.about-list { display: flex; flex-direction: column; gap: 4px; }
.about-list li { padding: 6px 0; font-weight: 700; font-size: 0.94rem; display: flex; align-items: center; gap: 10px; color: var(--ink); }
.about-list .icon { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }

/* ---------- Gallery ---------- */
.gallery { padding: 104px 0; }

/* 3D rotating carousel -- Three.js (CSS3DRenderer) arranges the 6 tiles in a
   ring in real 3D space and spins the whole ring on drag or on its own; see
   initGalleryCarousel() in animations-3d.js. The container just needs a
   fixed size for the renderer/camera to size against. */
.gallery-carousel-wrap { max-width: 1040px; margin: 0 auto; }
.gallery-carousel {
  position: relative;
  height: 440px;
  touch-action: pan-y;
  cursor: grab;
}
.gallery-carousel:active { cursor: grabbing; }
.gallery-tile {
  width: 270px;
  height: 320px;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 18px;
  color: var(--accent);
  transition: border-color 0.2s ease;
}
.gallery-tile:hover { border-color: var(--accent); }
.gallery-tile .icon { width: 76px; height: 76px; stroke-width: 1.3; }
.gallery-tile p { font-weight: 700; font-size: 1.35rem; color: var(--ink); font-family: var(--font-body); }

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}
.carousel-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: var(--bg-elevated);
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}
.carousel-hint { color: var(--muted); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }

/* ---------- Reviews ---------- */
.reviews { padding: 104px 0; background: var(--bg-elevated); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.rating-summary {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  max-width: 700px;
  margin: 0 auto 34px;
  flex-wrap: wrap;
}
.rating-big { text-align: center; }
.rating-big h3 { font-size: 3.2rem; line-height: 1; color: var(--ink); }
.stars { color: var(--accent); font-size: 1.3rem; letter-spacing: 2px; }
.rating-big small { color: var(--muted); }
.rating-bars { flex: 1; min-width: 220px; }
.bar-row { display: grid; grid-template-columns: 80px 1fr; align-items: center; gap: 12px; margin-bottom: 8px; font-size: 0.82rem; font-weight: 700; color: var(--muted); }
.bar { background: var(--bg-elevated-2); border-radius: 999px; height: 6px; overflow: hidden; }
.bar i { display: block; height: 100%; background: var(--accent); border-radius: 999px; }

.tag-cloud { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.tag {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.83rem;
  color: var(--muted);
}

/* ---------- Location ---------- */
.location { padding: 104px 0; }
.location-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 30px; }
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 360px;
  background: var(--bg-elevated);
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; filter: grayscale(0.15) invert(0.92) hue-rotate(180deg) contrast(0.9); }
.location-details { display: flex; flex-direction: column; gap: 12px; }
.detail-card { background: var(--bg-elevated); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; display: flex; gap: 14px; align-items: flex-start; }
.detail-card .icon { color: var(--accent); margin-top: 2px; }
.detail-card h4 { font-size: 0.88rem; margin-bottom: 6px; font-family: var(--font-body); font-weight: 700; color: var(--ink); }
.detail-card p { color: var(--muted); font-size: 0.87rem; }
.detail-card a { color: var(--accent); font-weight: 700; }

/* ---------- CTA ---------- */
.cta { padding: 96px 0; background: var(--bg-elevated); text-align: center; border-top: 1px solid var(--line); }
.cta h2 { font-size: clamp(1.9rem, 3.4vw, 2.4rem); margin-bottom: 10px; text-wrap: balance; color: var(--ink); }
.cta p { color: var(--muted); margin-bottom: 30px; }

/* ---------- Footer ---------- */
.footer { background: var(--bg); padding: 70px 0 0; border-top: 1px solid var(--line); }
.footer-inner { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 40px; }
.footer-col p { font-size: 0.85rem; color: var(--muted); margin-top: 12px; line-height: 1.6; }
.footer-col h4 { color: var(--ink); margin-bottom: 16px; font-size: 0.82rem; font-family: var(--font-body); text-transform: uppercase; letter-spacing: 1px; }
.footer-col a { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 0.88rem; margin-bottom: 10px; transition: color 0.15s ease; }
.footer-col a:hover { color: var(--accent); }
.footer-col a .icon { width: 15px; height: 15px; }
.footer .logo-text { color: var(--ink); }
.footer-bottom { border-top: 1px solid var(--line); padding: 22px 24px; text-align: center; font-size: 0.76rem; color: #6b6258; }

/* ---------- Cart Drawer ---------- */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  opacity: 0; pointer-events: none; transition: opacity 0.25s ease; z-index: 199;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed; top: 0; right: -420px; width: 400px; max-width: 92vw; height: 100%;
  background: var(--bg-elevated); border-left: 1px solid var(--line); z-index: 200;
  display: flex; flex-direction: column;
  transition: right 0.3s ease;
}
.cart-drawer.open { right: 0; }
.cart-header { display: flex; justify-content: space-between; align-items: center; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.cart-header h3 { font-size: 1.25rem; color: var(--ink); }
.cart-items { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-empty { color: var(--muted); text-align: center; margin-top: 60px; }
.cart-line { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line); gap: 10px; }
.cart-line-name { font-weight: 700; font-size: 0.9rem; color: var(--ink); }
.cart-line-price { color: var(--muted); font-size: 0.8rem; }
.cart-line-qty { display: flex; align-items: center; gap: 8px; }
.cart-line-qty button { width: 24px; height: 24px; border-radius: 3px; border: 1px solid var(--line); background: var(--bg-elevated-2); color: var(--ink); cursor: pointer; font-weight: 700; }
.cart-footer { padding: 20px 24px; border-top: 1px solid var(--line); }
.cart-total-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; }
.cart-total-row span { font-weight: 700; font-size: 0.9rem; color: var(--muted); }
.cart-total-row strong { font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); }
.cart-note { text-align: center; font-size: 0.75rem; color: var(--muted); margin-top: 10px; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--accent); color: var(--accent-ink); padding: 12px 24px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 0.85rem; opacity: 0; pointer-events: none;
  transition: all 0.25s ease; z-index: 300;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Responsive ---------- */
/* Two order buttons (Zomato + Swiggy) plus the full nav-link list don't fit
   next to the logo below ~1024px, even though the hamburger menu doesn't take
   over until 720px -- so the buttons are hidden a bit earlier than that to
   avoid the navbar overflowing horizontally on tablet-width screens. They're
   still available in the hero, CTA section, footer, and cart drawer. */
@media (max-width: 1024px) {
  .nav-actions .btn-sm { display: none; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .ticket { max-width: 340px; margin: 0 auto; order: -1; }
  .info-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr 1fr; }
  .gallery-carousel { height: 340px; }
  .gallery-tile { width: 220px; height: 270px; }
  .gallery-tile .icon { width: 62px; height: 62px; }
  .gallery-tile p { font-size: 1.1rem; }
}

@media (max-width: 480px) {
  .gallery-carousel { height: 280px; }
  .gallery-tile { width: 180px; height: 230px; }
  .gallery-tile .icon { width: 52px; height: 52px; }
  .gallery-tile p { font-size: 1rem; }
}

@media (max-width: 720px) {
  .nav-links { position: fixed; top: 72px; left: 0; right: 0; background: var(--bg-elevated); border-bottom: 1px solid var(--line); flex-direction: column; padding: 20px 24px; gap: 4px; transform: translateY(-130%); transition: transform 0.25s ease; }
  .nav-links.open { transform: translateY(0); }
  .nav-link { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .hamburger { display: flex; }
  .hero { padding: 40px 0 60px; }
  .footer-inner { grid-template-columns: 1fr; }
  .menu-item { flex-wrap: wrap; }
  .menu-item-side { flex-direction: row; align-items: center; width: 100%; justify-content: space-between; }
}
