/* ─── CSS Variables & Reset ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: hsl(24, 14%, 6%);
  --fg: hsl(36, 30%, 96%);
  --card: hsl(24, 14%, 9%);
  --card-fg: hsl(36, 30%, 96%);
  --primary: hsl(28, 95%, 55%);
  --primary-fg: hsl(24, 14%, 6%);
  --primary-glow: hsl(38, 100%, 65%);
  --secondary: hsl(24, 14%, 14%);
  --muted: hsl(24, 10%, 16%);
  --muted-fg: hsl(36, 12%, 65%);
  --accent: hsl(142, 50%, 45%);
  --accent-fg: hsl(24, 14%, 6%);
  --border: hsl(24, 14%, 18%);
  --radius: 1rem;
  --grad-spice: linear-gradient(
    135deg,
    hsl(14, 88%, 50%),
    hsl(28, 95%, 55%) 50%,
    hsl(38, 100%, 65%)
  );
  --grad-primary: linear-gradient(
    135deg,
    hsl(28, 95%, 55%),
    hsl(38, 100%, 65%)
  );
  --grad-radial: radial-gradient(
    circle at 50% 0%,
    hsl(28 95% 55% / 0.18),
    transparent 60%
  );
  --shadow-glow: 0 20px 80px -20px hsl(28 95% 55% / 0.55);
  --shadow-soft: 0 30px 60px -30px hsl(0 0% 0% / 0.6);
  --shadow-card: 0 10px 40px -10px hsl(0 0% 0% / 0.8);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--fg);
  font-family: "Inter", sans-serif;
  font-feature-settings: "ss01", "cv11";
  background-image:
    radial-gradient(ellipse at top, hsl(28 95% 55% / 0.08), transparent 50%),
    radial-gradient(
      ellipse at bottom right,
      hsl(14 88% 50% / 0.06),
      transparent 50%
    );
  min-height: 100vh;
}

::selection {
  background: hsl(28 95% 55% / 0.3);
  color: var(--fg);
}

.font-display {
  font-family: "Playfair Display", serif;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── Utilities ─── */
.glass {
  background: hsl(24 14% 9% / 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid hsl(36 30% 96% / 0.06);
}
.text-gradient {
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: var(--grad-spice);
}
.shadow-glow {
  box-shadow: var(--shadow-glow);
}
.shadow-soft {
  box-shadow: var(--shadow-soft);
}
.shadow-card {
  box-shadow: var(--shadow-card);
}

/* ─── Reveal animation ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Animations ─── */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes spin-slow {
  to {
    transform: rotate(360deg);
  }
}
@keyframes spin-slow-rev {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 hsl(142 50% 45% / 0.5);
  }
  50% {
    box-shadow: 0 0 0 18px hsl(142 50% 45% / 0);
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ─── NAVBAR ─── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: padding 0.5s;
  padding: 1.25rem 0;
}
#navbar.scrolled {
  padding: 0.5rem 0;
}
#navbar .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 9999px;
  padding: 0.625rem 1rem;
  transition:
    background 0.5s,
    box-shadow 0.5s;
}
#navbar.scrolled .nav-inner {
  background: hsl(24 14% 9% / 0.6);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
  border: 1px solid hsl(36 30% 96% / 0.06);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  position: relative;
  color: var(--muted-fg);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 1px;
  width: 0;
  background: var(--primary);
  transition: width 0.3s;
}
.nav-links a:hover {
  color: var(--fg);
}
.nav-links a:hover::after {
  width: 100%;
}

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: var(--grad-spice);
  color: var(--primary-fg);
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow-glow);
  transition: transform 0.2s;
}
.btn-call:hover {
  transform: scale(1.05);
}
.btn-call svg {
  width: 1rem;
  height: 1rem;
}

#menu-toggle {
  display: none;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  background: hsl(24 14% 9% / 0.6);
  backdrop-filter: blur(20px);
  color: var(--fg);
}
#mobile-menu {
  display: none;
  margin-top: 0.5rem;
  border-radius: 1.5rem;
  padding: 1.25rem;
  animation: fade-in 0.2s ease;
}
#mobile-menu.open {
  display: block;
}
#mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
#mobile-menu nav a {
  padding: 0.5rem 0;
  border-bottom: 1px solid hsl(24 14% 18% / 0.5);
  text-decoration: none;
  color: var(--fg);
  font-size: 1rem;
}
.mobile-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 1rem;
}
.mobile-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  border-radius: 0.75rem;
  padding: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--fg);
}
.mobile-actions .a-call {
  background: var(--primary);
  color: var(--primary-fg);
}
.mobile-actions .a-wa {
  background: var(--accent);
  color: var(--accent-fg);
}
.mobile-actions .a-map {
  background: hsl(24 14% 9% / 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid hsl(36 30% 96% / 0.06);
}

/* ─── HERO ─── */
#hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}
#hero-bg {
  position: absolute;
  inset: 0;
  will-change: transform;
}
#hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    var(--bg),
    hsl(24 14% 6% / 0.8),
    hsl(24 14% 6% / 0.4)
  );
}
#hero-radial {
  position: absolute;
  inset: 0;
  background: var(--grad-radial);
}
.hero-ring1 {
  position: absolute;
  top: -10rem;
  right: -10rem;
  width: 31rem;
  height: 31rem;
  border-radius: 9999px;
  border: 1px solid hsl(28 95% 55% / 0.1);
  animation: spin-slow 80s linear infinite;
  pointer-events: none;
}
.hero-ring2 {
  position: absolute;
  top: 5rem;
  right: -5rem;
  width: 18.75rem;
  height: 18.75rem;
  border-radius: 9999px;
  border: 1px solid hsl(142 50% 45% / 0.1);
  animation: spin-slow-rev 60s linear infinite;
  pointer-events: none;
}
#hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  padding: 10rem 0 5rem;
  animation: fade-in 0.8s ease;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
}
.hero-badge svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
}
.hero-badge span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--muted-fg);
}

#hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 8vw, 6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 700;
}
#hero-content p {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: var(--muted-fg);
  max-width: 36rem;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.5rem;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 9999px;
  background: var(--grad-spice);
  color: var(--primary-fg);
  padding: 1rem 1.75rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow-glow);
  transition: transform 0.2s;
}
.btn-hero-primary:hover {
  transform: scale(1.03);
}
.btn-hero-primary svg {
  width: 1.25rem;
  height: 1.25rem;
}
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 9999px;
  padding: 1rem 1.75rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--fg);
  background: hsl(24 14% 9% / 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid hsl(36 30% 96% / 0.06);
  transition: background 0.2s;
}
.btn-hero-secondary:hover {
  background: var(--secondary);
}
.btn-hero-secondary svg {
  width: 1.25rem;
  height: 1.25rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3.5rem;
  max-width: 28rem;
}
.hero-stat {
  border-radius: 1rem;
  padding: 1rem;
  background: hsl(24 14% 9% / 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid hsl(36 30% 96% / 0.06);
}
.hero-stat svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.hero-stat .val {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
}
.hero-stat .lbl {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted-fg);
}
.scroll-cue {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: var(--muted-fg);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.scroll-cue-line {
  width: 1px;
  height: 2.5rem;
  background: linear-gradient(to bottom, var(--primary), transparent);
}

/* ─── MARQUEE ─── */
#marquee-section {
  position: relative;
  padding: 2.5rem 0;
  border-top: 1px solid hsl(24 14% 18% / 0.5);
  border-bottom: 1px solid hsl(24 14% 18% / 0.5);
  background: hsl(24 14% 9% / 0.4);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 4rem;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.marquee-item span {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: clamp(1.875rem, 4vw, 3rem);
  color: hsl(36 12% 65% / 0.7);
}
.marquee-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: var(--primary);
  flex-shrink: 0;
}

/* ─── SECTION COMMON ─── */
.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--primary);
  margin-bottom: 1rem;
}
.section-heading {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 3.75rem);
  line-height: 1.1;
}
.section-sub {
  margin-top: 1.25rem;
  color: var(--muted-fg);
}
.section-center {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3.5rem;
}

/* ─── SIGNATURE ─── */
#signature {
  padding: 6rem 0;
}
.signature-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.signature-header a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted-fg);
  text-decoration: none;
  transition: color 0.2s;
}
.signature-header a:hover {
  color: var(--fg);
}
.dishes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.dish-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  background: var(--card);
  box-shadow: var(--shadow-card);
}
.dish-card-img {
  aspect-ratio: 4/5;
  overflow: hidden;
}
.dish-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.dish-card:hover .dish-card-img img {
  transform: scale(1.1);
}
.dish-card-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: hsl(24 14% 9% / 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid hsl(36 30% 96% / 0.06);
  color: var(--fg);
}
.dish-card-info {
  position: absolute;
  inset-x: 0;
  bottom: 0;
  padding: 1.5rem;
  background: linear-gradient(
    to top,
    var(--card),
    hsl(24 14% 9% / 0.95),
    transparent
  );
}
.dish-card-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}
.dish-card-row h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
}
.dish-card-price {
  color: var(--primary);
  font-weight: 600;
  white-space: nowrap;
}
.dish-card-desc {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-fg);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ─── STORY ─── */
#story {
  padding: 6rem 0;
  overflow: hidden;
}
.story-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
.story-img-wrap {
  position: relative;
}
.story-img {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/5;
}
.story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-badge {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  border-radius: 1rem;
  padding: 1.5rem;
  background: hsl(24 14% 9% / 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid hsl(36 30% 96% / 0.06);
  max-width: 13.75rem;
  display: none;
}
.story-badge .num {
  font-family: "Playfair Display", serif;
  font-size: 1.875rem;
}
.story-badge .sub {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted-fg);
  margin-top: 0.25rem;
}
.story-glow {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  width: 6rem;
  height: 6rem;
  border-radius: 9999px;
  background: var(--grad-spice);
  filter: blur(3rem);
  opacity: 0.5;
}
.story-text h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 3.75rem);
  line-height: 1.1;
}
.story-text p {
  margin-top: 1.5rem;
  color: var(--muted-fg);
  font-size: 1.125rem;
  line-height: 1.7;
}
.story-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.story-fact {
  border-radius: 1rem;
  padding: 1.25rem;
  background: hsl(24 14% 9% / 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid hsl(36 30% 96% / 0.06);
}
.story-fact .k {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  color: var(--primary);
}
.story-fact .v {
  font-size: 0.875rem;
  color: var(--muted-fg);
  margin-top: 0.25rem;
}

/* ─── MENU SECTION ─── */
#menu-section {
  padding: 6rem 0;
  background: hsl(24 14% 9% / 0.3);
}
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.menu-tab {
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--muted-fg);
  background: hsl(24 14% 9% / 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid hsl(36 30% 96% / 0.06);
}
.menu-tab:hover {
  color: var(--fg);
  background: var(--secondary);
}
.menu-tab.active {
  background: var(--grad-spice);
  color: var(--primary-fg);
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.filter-tab {
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid hsl(24 14% 18% / 0.5);
  cursor: pointer;
  background: transparent;
  color: var(--muted-fg);
  transition: all 0.2s;
}
.filter-tab:hover {
  color: var(--fg);
}
.filter-tab.active {
  border-color: var(--primary);
  color: var(--primary);
  background: hsl(28 95% 55% / 0.1);
}

.menu-card {
  max-width: 56rem;
  margin: 0 auto;
  border-radius: 1.5rem;
  padding: 1.5rem;
  background: hsl(24 14% 9% / 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid hsl(36 30% 96% / 0.06);
}
.menu-card-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}
.menu-card-header h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}
.menu-card-header .count {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted-fg);
}
.menu-subtitle {
  font-size: 0.875rem;
  color: var(--muted-fg);
  margin-bottom: 2rem;
}
.menu-items {
  display: grid;
  gap: 0;
}
.menu-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid hsl(24 14% 18% / 0.4);
}
.menu-item:hover .item-name {
  color: var(--primary);
}
.tag-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  border-radius: 0.1875rem;
  flex-shrink: 0;
  border-width: 2px;
  border-style: solid;
}
.tag-dot.veg {
  border-color: #10b981;
}
.tag-dot.veg::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: #10b981;
}
.tag-dot.nonveg {
  border-color: #ef4444;
}
.tag-dot.nonveg::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: #ef4444;
}
.item-name {
  font-weight: 500;
  flex: 1;
  transition: color 0.2s;
}
.item-dots {
  flex: 1;
  border-bottom: 1px dashed hsl(24 14% 18% / 0.6);
  transform: translateY(-4px);
}
.item-price {
  font-family: "Playfair Display", serif;
  color: var(--primary);
  white-space: nowrap;
}
.menu-empty {
  text-align: center;
  color: var(--muted-fg);
  padding: 2.5rem 0;
}
.menu-order-btn {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}
.menu-order-btn a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: var(--grad-spice);
  color: var(--primary-fg);
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow-glow);
  transition: transform 0.2s;
}
.menu-order-btn a:hover {
  transform: scale(1.05);
}

/* ─── REVIEWS ─── */
#reviews {
  padding: 6rem 0;
  background: hsl(24 14% 9% / 0.3);
}
.reviews-stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-top: 1.5rem;
}
.reviews-stars svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: var(--primary);
  color: var(--primary);
}
.reviews-grid {
  display: grid;
  gap: 1.25rem;
  max-width: 62rem;
  margin: 0 auto;
}
.review-card {
  position: relative;
  border-radius: 1.5rem;
  padding: 2rem;
  background: hsl(24 14% 9% / 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid hsl(36 30% 96% / 0.06);
  transition: background 0.2s;
}
.review-card:hover {
  background: hsl(24 14% 14% / 0.6);
}
.review-quote svg {
  width: 2rem;
  height: 2rem;
  color: hsl(28 95% 55% / 0.4);
  margin-bottom: 1rem;
}
.review-text {
  font-size: 1.125rem;
  line-height: 1.7;
}
.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
}
.review-name {
  font-weight: 600;
}
.review-verified {
  font-size: 0.75rem;
  color: var(--muted-fg);
}
.review-stars {
  display: flex;
  gap: 2px;
}
.review-stars svg {
  width: 1rem;
  height: 1rem;
  fill: var(--primary);
  color: var(--primary);
}
.google-link {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}
.google-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--fg);
  background: hsl(24 14% 9% / 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid hsl(36 30% 96% / 0.06);
  transition: background 0.2s;
}
.google-link a:hover {
  background: var(--secondary);
}

/* ─── VISIT ─── */
#visit {
  padding: 6rem 0;
}
.visit-grid {
  display: grid;
  gap: 1.25rem;
}
.visit-map {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: auto;
  min-height: 20rem;
}
.visit-map iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(40%);
  transition: filter 0.7s;
  border: none;
}
.visit-map:hover iframe {
  filter: grayscale(0);
}
.visit-cards {
  display: grid;
  gap: 1rem;
}
.visit-card {
  border-radius: 1.5rem;
  padding: 1.75rem;
  background: hsl(24 14% 9% / 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid hsl(36 30% 96% / 0.06);
}
.visit-card-inner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.visit-icon {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  flex-shrink: 0;
}
.visit-icon.primary {
  background: var(--grad-spice);
}
.visit-icon.accent {
  background: var(--accent);
}
.visit-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary-fg);
}
.visit-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted-fg);
}
.visit-value {
  font-weight: 500;
  line-height: 1.4;
  margin-top: 0.25rem;
}
.visit-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.visit-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 1rem;
  padding: 1rem;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.875rem;
  transition:
    transform 0.2s,
    background 0.2s;
}
.visit-action:hover {
  transform: scale(1.02);
}
.va-call {
  background: var(--grad-spice);
  color: var(--primary-fg);
  box-shadow: var(--shadow-glow);
}
.va-wa {
  background: var(--accent);
  color: var(--accent-fg);
}
.va-map,
.va-ig {
  background: hsl(24 14% 9% / 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid hsl(36 30% 96% / 0.06);
  color: var(--fg);
}
.va-map svg,
.va-ig svg {
  width: 1rem;
  height: 1rem;
}
.va-map svg {
  color: var(--primary);
}
.va-ig svg {
  color: var(--primary-glow);
}
.va-call svg,
.va-wa svg {
  width: 1rem;
  height: 1rem;
}

/* ─── FOOTER ─── */
footer {
  position: relative;
  padding: 5rem 0 2.5rem;
  border-top: 1px solid hsl(24 14% 18% / 0.5);
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.footer-logo-icon {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: var(--grad-spice);
  color: var(--primary-fg);
  font-weight: 700;
  box-shadow: var(--shadow-glow);
}
.footer-logo-name {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
}
.footer-logo-sub {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--muted-fg);
}
.footer-desc {
  color: var(--muted-fg);
  font-size: 0.875rem;
  max-width: 24rem;
}
.footer-col-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--muted-fg);
  margin-bottom: 1rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  font-size: 0.875rem;
  text-decoration: none;
  color: var(--fg);
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--primary);
}
.footer-address {
  font-size: 0.875rem;
  line-height: 1.6;
}
.footer-hours {
  font-size: 0.875rem;
  color: var(--muted-fg);
  margin-top: 0.75rem;
}
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid hsl(24 14% 18% / 0.5);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--muted-fg);
}

/* ─── FLOATING CTAs ─── */
#floating-ctas {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
#floating-ctas a {
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: transform 0.2s;
}
#floating-ctas a:hover {
  transform: scale(1.1);
}
#floating-ctas .wa-btn {
  background: var(--accent);
  color: var(--accent-fg);
  box-shadow: var(--shadow-glow);
  animation: pulse-glow 2.5s infinite;
}
#floating-ctas .call-btn {
  background: var(--grad-spice);
  color: var(--primary-fg);
  box-shadow: var(--shadow-glow);
}
#floating-ctas svg {
  width: 1.375rem;
  height: 1.375rem;
}
/* ─────────────────────────────
   RESPONSIVE DESIGN
───────────────────────────── */

/* Default Mobile First */

.nav-links-wrap {
  display: none;
}

.nav-btn-wrap {
  display: none;
}

#menu-toggle {
  display: grid;
}

/* Prevent horizontal scroll */
html,
body {
  overflow-x: hidden;
  width: 100%;
}

img,
iframe,
video {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* =========================
   MOBILE
========================= */

@media screen and (max-width: 767px) {

  /* NAVBAR */

  #navbar {
    padding: 0.7rem 0;
  }

  #navbar .nav-inner {
    width: 100%;
    padding: 0.7rem 1rem;
    border-radius: 18px;
  }

  .nav-logo {
    gap: 0.45rem;
  }

  .nav-logo-icon {
    width: 2rem;
    height: 2rem;
    font-size: 0.9rem;
  }

  .nav-logo-name {
    font-size: 0.95rem;
  }

  .nav-logo-sub {
    font-size: 0.5rem;
    letter-spacing: 0.12em;
  }

  /* MOBILE MENU */

  #mobile-menu {
    width: 100%;
    margin-top: 0.7rem;
    border-radius: 1rem;
    padding: 1rem;
  }

  #mobile-menu nav {
    gap: 0.3rem;
  }

  #mobile-menu nav a {
    font-size: 0.95rem;
    padding: 0.85rem 0;
  }

  .mobile-actions {
    grid-template-columns: 1fr;
  }

  .mobile-actions a {
    width: 100%;
  }

  /* HERO */

  #hero-content {
    padding-top: 7rem;
    padding-bottom: 5rem;
    min-height: auto;
  }

  #hero-content h1 {
    font-size: clamp(2.2rem, 9vw, 4rem);
    line-height: 1.08;
  }

  #hero-content p {
    font-size: 1rem;
    line-height: 1.7;
  }

  /* HERO BUTTONS */

  .hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }

  /* HERO STATS */

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
  }

  .hero-stat {
    padding: 0.75rem 0.5rem;
  }

  .hero-stat .val {
    font-size: 1.05rem;
  }

  .hero-stat .lbl {
    font-size: 0.58rem;
  }

  /* SECTIONS */

  .section-heading {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .section-sub {
    font-size: 0.95rem;
  }

  /* DISH GRID */

  .dishes-grid {
    grid-template-columns: 1fr;
  }

  /* STORY */

  .story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .story-badge {
    display: none;
  }

  .story-facts {
    grid-template-columns: 1fr;
  }

  /* MENU */

  .menu-card {
    padding: 1.2rem;
  }

  .menu-items {
    grid-template-columns: 1fr;
  }

  .menu-item {
    gap: 0.6rem;
  }

  .item-name {
    font-size: 0.92rem;
  }

  /* REVIEWS */

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    padding: 1.4rem;
  }

  .review-text {
    font-size: 1rem;
  }

  /* VISIT SECTION */

  .visit-grid {
    grid-template-columns: 1fr;
  }

  .visit-actions {
    grid-template-columns: 1fr;
  }

  /* FOOTER */

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  /* FLOATING BUTTONS */

  #floating-ctas {
    position: fixed;
    right: 0.8rem;
    bottom: 0.8rem;
    gap: 0.55rem;
    z-index: 99999;
  }

  #floating-ctas a {
    width: 3rem;
    height: 3rem;
  }

  #floating-ctas svg {
    width: 1.2rem;
    height: 1.2rem;
  }

}

/* =========================
   TABLET
========================= */

@media screen and (min-width: 768px) {

  .nav-links-wrap {
    display: flex;
    align-items: center;
    gap: 2rem;
  }

  .nav-btn-wrap {
    display: flex;
    align-items: center;
  }

  #menu-toggle {
    display: none;
  }

  #mobile-menu {
    display: none !important;
  }

  .nav-inner {
    padding: 0.75rem 1.5rem;
  }

  .signature-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .story-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }

  .story-badge {
    display: block;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }

  .menu-card {
    padding: 3rem;
  }

  .menu-items {
    grid-template-columns: 1fr 1fr;
    column-gap: 2rem;
  }

}

/* =========================
   DESKTOP
========================= */

@media screen and (min-width: 1024px) {

  .dishes-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .visit-grid {
    grid-template-columns: 3fr 2fr;
  }

  .visit-map {
    aspect-ratio: auto;
    min-height: 26rem;
  }

}
/* =========================
   PREMIUM LOGO STYLE
========================= */

.site-logo{
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;

  filter:
    drop-shadow(0 0 10px rgba(255,120,0,0.35))
    drop-shadow(0 0 18px rgba(255,80,0,0.18));

  transition: transform 0.3s ease;
}

.site-logo:hover{
  transform: scale(1.06);
}

.nav-logo{
  display:flex;
  align-items:center;
  gap:0.9rem;
  text-decoration:none;
}

.logo-text{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}

.nav-logo-name{
  font-size:1.25rem;
  font-weight:700;
  color:#fff;
}

.nav-logo-sub{
  font-size:0.68rem;
  letter-spacing:0.18em;
  color:#cfcfcf;
  text-transform:uppercase;
  margin-top:4px;
}

/* =========================
   MOBILE
========================= */

@media screen and (max-width:768px){

  .site-logo{
    width: 30px;
    height:30px;
  }

  .nav-logo{
    gap:0.65rem;
  }

  .nav-logo-name{
    font-size:1rem;
  }

  .nav-logo-sub{
    font-size:0.55rem;
    letter-spacing:0.12em;
  }

}