/* ==========================================================================
   Prantha Junction — Design System
   ========================================================================== */

:root {
  /* Colors */
  --navy-950: #0B1424;
  --navy-900: #0E1728;
  --navy-800: #10182B;
  --navy-700: #16213A;
  --navy-600: #1C2A47;
  --navy-glass: rgba(11, 20, 36, 0.86);
  --navy-footer: #080D18;

  --gold-300: #E4CE9A;
  --gold-400: #D4AF6A;
  --gold-500: #C9A24A;
  --gold-600: #AE8A3C;
  --gold-gradient: linear-gradient(135deg, #E4CE9A 0%, #D4AF6A 45%, #C9A24A 75%, #AE8A3C 100%);
  --gold-gradient-soft: linear-gradient(180deg, rgba(212, 175, 106, 0.18), rgba(212, 175, 106, 0));

  --terracotta: #C1592F;
  --terracotta-light: #D97A50;
  --terracotta-gradient: linear-gradient(135deg, var(--terracotta-light) 0%, var(--terracotta) 100%);

  --cream: #F3ECDD;
  --cream-2: #EAE0C8;
  --cream-dim: #D8CBAA;

  --ink: #0B1424;
  --ink-soft: rgba(11, 20, 36, 0.72);

  --white: #FFFFFF;

  /* Typography */
  --font-heading: 'Schibsted Grotesk', 'Helvetica Neue', Arial, sans-serif;
  --font-sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.375rem;
  --fs-xl: 1.75rem;
  --fs-2xl: 2.25rem;
  --fs-3xl: 3rem;
  --fs-4xl: 4rem;

  /* Spacing scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --space-10: 8rem;

  /* Layout */
  --container-max: 1200px;
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 20px;

  /* Effects */
  --shadow-glow: 0 0 40px rgba(212, 175, 106, 0.25), 0 0 100px rgba(212, 175, 106, 0.08);
  --shadow-card: 0 20px 50px rgba(0, 0, 0, 0.35);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 300ms var(--ease-out);
  --transition-slow: 600ms var(--ease-out);
}

/* ==========================================================================
   Reset
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--navy-900);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; margin: 0; padding: 0; }

button { font-family: inherit; cursor: pointer; }

input, textarea, select { font-family: inherit; font-size: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  margin: 0;
  color: var(--cream);
  letter-spacing: -0.01em;
}

p { margin: 0; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

@media (min-width: 768px) {
  .container { padding: 0 var(--space-6); }
}

/* ==========================================================================
   Utility
   ========================================================================== */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-400);
}

.eyebrow::before,
.eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold-500);
  opacity: 0.7;
}

.section-heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-7);
}

.section-heading h2 {
  font-size: var(--fs-2xl);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: var(--space-3) 0 var(--space-3);
}

.section-heading p {
  color: var(--cream-dim);
  font-size: var(--fs-md);
}

@media (min-width: 768px) {
  .section-heading h2 { font-size: var(--fs-3xl); }
}

.section-heading.light h2 { color: var(--ink); }
.section-heading.light p { color: var(--ink-soft); }
.section-heading.light .eyebrow { color: var(--gold-600); }

.divider-gold {
  width: 80px;
  height: 1px;
  margin: var(--space-5) auto;
  background: var(--gold-gradient);
  opacity: 0.8;
}

/* "Light" sections carry the shared dark-text treatment used by every
   light-background section. Background defaults to plain white — the
   .bg-cream modifier opts a specific section (Signature Dishes) into the
   warmer tint so colour only appears where the rhythm calls for it. */
.section-light {
  background: var(--white);
  color: var(--ink);
  position: relative;
}

.section-light.bg-cream {
  background: var(--cream);
}

.section-light.bg-cream::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(174, 138, 60, 0.06) 0, transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(174, 138, 60, 0.05) 0, transparent 45%);
}

.bg-navy-deep { background: var(--navy-950); }

.section-padded { padding: var(--space-9) 0; }

@media (max-width: 767px) {
  .section-padded { padding: var(--space-8) 0; }
}

/* Jali (lattice) motif divider — used at colour transitions between sections */
.jali-divider {
  height: 44px;
  width: 100%;
  background-repeat: repeat-x;
  background-position: center;
  background-size: 44px 44px;
  opacity: 0.6;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='44' viewBox='0 0 44 44'%3E%3Cg fill='none' stroke='%23AE8A3C' stroke-width='1'%3E%3Cpath d='M22 2 L42 22 L22 42 L2 22 Z'/%3E%3Ccircle cx='22' cy='22' r='3.5'/%3E%3C/g%3E%3C/svg%3E");
}

.jali-divider.bg-cream { background-color: var(--cream); }
.jali-divider.bg-cream2 { background-color: var(--cream-2); }
.jali-divider.bg-white { background-color: var(--white); }
.jali-divider.bg-navy { background-color: var(--navy-900); opacity: 0.4; }

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.95rem 2.25rem;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: var(--fs-sm);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  border-width: 1.5px;
  border-style: solid;
  border-color: transparent;
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn:focus-visible {
  outline: 2px solid var(--terracotta-light);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--terracotta-gradient);
  color: var(--white);
  border-color: var(--terracotta);
  box-shadow: 0 10px 24px rgba(193,89,47,0.3);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255,255,255,0.22), transparent 60%);
  opacity: 0.55;
  pointer-events: none;
}

.btn-primary:hover {
  box-shadow: 0 16px 36px rgba(193,89,47,0.45), 0 0 40px rgba(193,89,47,0.25);
}

.btn-outline {
  background: transparent;
  color: var(--terracotta-light);
  border-color: rgba(193, 89, 47, 0.8);
}

.btn-outline:hover {
  background: var(--terracotta-gradient);
  color: var(--white);
  border-color: var(--terracotta-light);
  box-shadow: 0 16px 36px rgba(193,89,47,0.4);
}

.btn-outline.dark {
  color: var(--terracotta);
  border-color: var(--terracotta);
}

.btn-outline.dark:hover {
  background: var(--terracotta-gradient);
  color: var(--white);
  border-color: var(--terracotta);
  box-shadow: 0 14px 30px rgba(193,89,47,0.3);
}

/* ==========================================================================
   Navbar
   ========================================================================== */

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: var(--space-4) 0;
  background: transparent;
  transition: background var(--transition-fast), padding var(--transition-fast), box-shadow var(--transition-fast), backdrop-filter var(--transition-fast);
}

.navbar.scrolled {
  background: var(--navy-glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: var(--space-3) 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(212, 175, 106, 0.15);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  height: 84px;
  width: auto;
  transition: transform var(--transition-fast), height var(--transition-fast);
}

.brand:hover img { transform: scale(1.05); }

.navbar.scrolled .brand img { height: 60px; }

.nav-links {
  display: none;
  align-items: center;
  gap: var(--space-6);
}

.nav-links a {
  position: relative;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: var(--fs-sm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
  padding: var(--space-2) 0;
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0%;
  height: 1px;
  background: var(--gold-400);
  transition: width var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold-400); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  padding: var(--space-2);
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--gold-400);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-actions .btn-outline { display: none; }

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .hamburger { display: none; }
  .nav-actions .btn-outline { display: inline-flex; }
}

.mobile-panel {
  position: fixed;
  top: 0; right: 0;
  height: 100vh;
  width: min(320px, 82vw);
  background: var(--navy-950);
  border-left: 1px solid rgba(212,175,106,0.2);
  z-index: 1100;
  padding: var(--space-8) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  transform: translateX(100%);
  transition: transform var(--transition-slow);
}

.mobile-panel.open { transform: translateX(0); }

.mobile-panel a {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: var(--fs-lg);
  color: var(--cream);
  padding: var(--space-2) 0;
  border-bottom: 1px solid rgba(212,175,106,0.1);
}

.mobile-panel a:hover { color: var(--gold-400); }

.panel-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--gold-400);
  font-size: var(--fs-xl);
  line-height: 1;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.overlay.open { opacity: 1; pointer-events: auto; }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--cream);
  padding: 140px 0 var(--space-8);
  background:
    radial-gradient(circle at 82% 24%, rgba(212,175,106,0.10), transparent 55%),
    radial-gradient(circle at 10% 85%, rgba(212,175,106,0.06), transparent 45%),
    var(--navy-950);
}

/* Subtle jali (lattice) texture, confined to the top-right corner via a
   mask fade — a deliberate motif echo, not a generic full-bleed grain. */
.hero-texture {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56' viewBox='0 0 56 56'%3E%3Cg fill='none' stroke='%23C9A24A' stroke-width='1'%3E%3Cpath d='M28 2 L54 28 L28 54 L2 28 Z'/%3E%3Ccircle cx='28' cy='28' r='4'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(circle at 92% 4%, black 0%, transparent 26%);
  mask-image: radial-gradient(circle at 92% 4%, black 0%, transparent 26%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: var(--space-8);
  align-items: center;
  width: 100%;
}

@media (min-width: 960px) {
  .hero-inner { grid-template-columns: 1.05fr 0.95fr; gap: var(--space-9); }
}

.hero-copy { text-align: center; }

@media (min-width: 960px) {
  .hero-copy { text-align: left; }
}

.hero-copy .eyebrow {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.8s var(--ease-out) 0.15s forwards;
}

@media (min-width: 960px) {
  .hero-copy .eyebrow::before { display: none; }
}

.hero-copy h1 {
  font-size: var(--fs-2xl);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: var(--space-4) 0;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.9s var(--ease-out) 0.35s forwards;
}

.hero-copy .subhead {
  font-size: var(--fs-md);
  color: var(--cream-dim);
  max-width: 480px;
  margin: 0 0 var(--space-6);
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.9s var(--ease-out) 0.55s forwards;
}

@media (max-width: 959px) {
  .hero-copy .subhead { margin-left: auto; margin-right: auto; }
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.9s var(--ease-out) 0.75s forwards;
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-wrap: nowrap;
    gap: var(--space-2);
  }

  .hero-ctas .btn {
    flex: 1 1 0;
    padding: 0.8rem 0.75rem;
    font-size: 0.7rem;
    letter-spacing: 0.06em;
  }
}

@media (min-width: 960px) {
  .hero-ctas { justify-content: flex-start; }
}

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

@media (min-width: 768px) {
  .hero-copy h1 { font-size: var(--fs-4xl); }
  .hero-copy .subhead { font-size: var(--fs-lg); }
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.92);
  animation: plateIn 1.1s var(--ease-out) 0.3s forwards;
}

@keyframes plateIn {
  to { opacity: 1; transform: scale(1); }
}

.hero-plate-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  margin: 24px 24px 24px 0;
}

.hero-plate-frame::before {
  content: '';
  position: absolute;
  inset: -16%;
  z-index: 0;
  background: radial-gradient(circle, rgba(212,175,106,0.24) 0%, transparent 62%);
  filter: blur(6px);
  pointer-events: none;
}

/* Offset ring sits behind the photo as a detached gold accent frame —
   deliberately not touching the image edge itself. */
.hero-plate-ring {
  position: absolute;
  inset: 26px -26px -26px 26px;
  z-index: 1;
  border: 1px solid rgba(212,175,106,0.5);
  border-radius: 26px;
  pointer-events: none;
}

.hero-plate {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: var(--navy-800);
}

.hero-plate::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(155deg, rgba(255,255,255,0.10) 0%, transparent 30%),
    radial-gradient(circle at 50% 50%, transparent 55%, rgba(11,20,36,0.35) 100%);
  pointer-events: none;
}

.hero-plate img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: platezoom 22s ease-in-out infinite alternate;
}

@keyframes platezoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

@media (max-width: 959px) {
  .hero-plate-frame { margin: 16px auto 16px 16px; }
}

/* Single pointed notch seam between the hero and About Restaurant —
   an SVG polygon (not a CSS clip-path) filled in the exact colour of
   the section that follows it, so there's no gap or mismatch. */
.hero-seam {
  width: 100%;
  height: 90px;
  line-height: 0;
  background: #FFF;
  position: relative;
  z-index: 0;
}

.hero-seam svg {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-seam path {
  fill: var(--navy-950);
}

@media (max-width: 767px) {
  .hero-seam { height: 72px; }
  .hero-seam .notch-desktop { display: none; }
  .hero-seam .notch-mobile { display: block; }
}

@media (min-width: 768px) {
  .hero-seam .notch-mobile { display: none; }
}

/* ==========================================================================
   Reveal (scroll animation)
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.in-view > * { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-stagger > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger > *:nth-child(6) { transition-delay: 0.55s; }
.reveal-stagger > *:nth-child(7) { transition-delay: 0.65s; }
.reveal-stagger > *:nth-child(8) { transition-delay: 0.75s; }

/* ==========================================================================
   Why Choose Us — story teaser with overlapping image collage
   ========================================================================== */

.why-choose-grid {
  display: grid;
  gap: var(--space-8);
  align-items: center;
}

@media (min-width: 960px) {
  .why-choose-grid { grid-template-columns: 1fr 1fr; gap: var(--space-9); }
}

.why-choose-copy .section-heading {
  text-align: left;
  margin: 0 0 var(--space-4);
  max-width: none;
}

.why-choose-copy p {
  color: var(--ink-soft);
  font-size: var(--fs-md);
  line-height: 1.85;
  max-width: 460px;
}

.why-choose-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

@media (max-width: 480px) {
  .why-choose-actions {
    flex-wrap: nowrap;
    gap: var(--space-2);
  }

  .why-choose-actions .btn {
    flex: 1 1 0;
    padding: 0.8rem 0.75rem;
    font-size: 0.7rem;
    letter-spacing: 0.06em;
  }
}

.why-choose-actions .btn svg {
  width: 15px;
  height: 15px;
  transition: transform var(--transition-fast);
}

.why-choose-actions .btn:hover svg { transform: translateX(3px); }

.why-choose-visual {
  position: relative;
  min-height: 380px;
}

.why-choose-img-main {
  position: relative;
  z-index: 1;
  margin-left: auto;
  width: 78%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 140px 24px 140px 24px;
  box-shadow: 0 30px 60px rgba(11,20,36,0.16);
}

.why-choose-img-main img { width: 100%; height: 100%; object-fit: cover; }

.why-choose-img-accent {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: -6%;
  width: 46%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 24px 100px 24px 100px;
  border: 4px solid var(--white);
  box-shadow: 0 20px 44px rgba(11,20,36,0.2);
}

.why-choose-img-accent img { width: 100%; height: 100%; object-fit: cover; }

.why-choose-sparkle {
  position: absolute;
  z-index: 3;
  color: var(--gold-500);
  pointer-events: none;
}

.why-choose-sparkle.s1 { top: 8%; left: 6%; width: 34px; height: 34px; }
.why-choose-sparkle.s2 { top: 20%; left: 20%; width: 20px; height: 20px; opacity: 0.7; }

@media (max-width: 640px) {
  .why-choose-visual { min-height: 300px; }
  .why-choose-img-main { width: 84%; }
}

/* ==========================================================================
   About Restaurant — two-column text + image
   ========================================================================== */

.about-grid {
  display: grid;
  gap: var(--space-8);
  align-items: center;
}

@media (max-width: 959px) {
  .about-copy-col { order: 1; }
  .about-media { order: 2; }
}

@media (min-width: 960px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: var(--space-9); }
  .about-copy-col { order: 1; }
  .about-media { order: 2; }
}

.about-copy {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.about-copy p {
  color: var(--cream-dim);
  font-size: var(--fs-md);
  line-height: 1.85;
}

.section-light .about-copy p { color: var(--ink-soft); }

/* Image gets a rounded frame plus a detached gold corner accent — the
   one recurring "gold as detail" touchpoint outside the eyebrow labels. */
.about-media {
  position: relative;
}

.about-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212,175,106,0.5);
  box-shadow: 0 10px 24px rgba(11,20,36,0.1);
}

.about-media::before,
.about-media::after {
  content: '';
  position: absolute;
  width: 48px;
  height: 48px;
  pointer-events: none;
  border-color: var(--gold-500);
  border-style: solid;
  border-width: 0;
  z-index: 1;
}

.about-media::before {
  top: -10px;
  right: -10px;
  border-top-width: 2px;
  border-right-width: 2px;
  border-radius: 0 var(--radius-md) 0 0;
}

.about-media::after {
  bottom: -10px;
  left: -10px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-radius: 0 0 0 var(--radius-md);
}

/* ==========================================================================
   Heritage stats row — serif numerals replacing generic icon-box stats
   ========================================================================== */

.heritage-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-8) var(--space-9);
  margin-top: var(--space-8);
  text-align: center;
}

.heritage-stats.align-left {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6) var(--space-5);
  text-align: left;
  margin-top: var(--space-7);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(201, 162, 74, 0.25);
  position: relative;
}

.heritage-stats.align-left .stat-item {
  position: relative;
  padding-left: var(--space-5);
}

.heritage-stats.align-left .stat-item:first-child {
  padding-left: 0;
}

.heritage-stats.align-left .stat-item:not(:first-child)::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(201, 162, 74, 0.4), transparent);
}

.heritage-stats.align-left .stat-underline { margin: var(--space-3) 0; }

@media (max-width: 479px) {
  .heritage-stats.align-left { gap: var(--space-3) var(--space-2); }
  .heritage-stats.align-left .stat-item { padding-left: var(--space-3); }
  .heritage-stats.align-left .stat-item:first-child { padding-left: 0; }
  .heritage-stats.align-left .stat-number { font-size: var(--fs-xl); }
  .heritage-stats.align-left .stat-label { font-size: 0.625rem; letter-spacing: 0.06em; }
  .heritage-stats.align-left .stat-underline { width: 28px; }
}

.stat-item { min-width: 0; }

.stat-number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-3xl);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--gold-600);
}

.stat-underline {
  width: 42px;
  height: 2px;
  margin: var(--space-3) auto;
  background: var(--gold-gradient);
}

.stat-label {
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ==========================================================================
   What Goes In — spice strip
   ========================================================================== */

.spices-section { background: var(--white); position: relative; }

.spice-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--space-7);
}

.spice-item {
  flex: 1 1 150px;
  max-width: 190px;
  text-align: center;
  padding: 0 var(--space-5);
  position: relative;
}

.spice-item + .spice-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(174,138,60,0.5), transparent);
}

.spice-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-3);
  border-radius: 50%;
  border: 1px solid var(--gold-600);
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(11,20,36,0.08);
}

.spice-dot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.35);
}

.spice-item h3 {
  font-size: var(--fs-md);
  color: var(--ink);
  margin-bottom: var(--space-2);
}

.spice-item p {
  font-size: var(--fs-sm);
  color: var(--ink-soft);
  line-height: 1.5;
}

@media (max-width: 767px) {
  .spice-item { padding: var(--space-4) var(--space-3); border-top: 1px solid rgba(174,138,60,0.22); }
  .spice-item:first-child { border-top: none; }
  .spice-item + .spice-item::before { display: none; }
}

/* ==========================================================================
   Dish cards / Menu preview
   ========================================================================== */

.dish-carousel {
  position: relative;
}

.dish-carousel-full {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.dish-carousel-full .dish-scroller {
  padding-left: max(var(--space-5), calc((100vw - var(--container-max)) / 2 + var(--space-6)));
  padding-right: max(var(--space-5), calc((100vw - var(--container-max)) / 2 + var(--space-6)));
}

.dish-carousel-full .dish-arrow.prev { left: 16px; }
.dish-carousel-full .dish-arrow.next { right: 16px; }

.dish-scroller {
  display: flex;
  gap: var(--space-5);
  overflow-x: auto;
  padding: var(--space-2) var(--space-1) var(--space-2);
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.dish-scroller::-webkit-scrollbar { display: none; }

.dish-arrow {
  position: absolute;
  top: 36%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-900);
  border: 1px solid var(--gold-500);
  color: var(--gold-400);
  transition: background var(--transition-fast), transform var(--transition-fast), border-color var(--transition-fast);
}

.dish-arrow:hover {
  background: rgba(212, 175, 106, 0.15);
  border-color: var(--gold-300);
  transform: translateY(-50%) scale(1.06);
}

.dish-arrow.prev { left: -18px; }
.dish-arrow.next { right: -18px; }
.dish-arrow svg { width: 18px; height: 18px; }

.section-light .dish-arrow {
  background: var(--white);
  border-color: var(--gold-600);
  color: var(--gold-600);
  box-shadow: 0 6px 16px rgba(11,20,36,0.12);
}
.section-light .dish-arrow:hover { background: rgba(174, 138, 60, 0.1); }

@media (max-width: 640px) {
  .dish-arrow { display: none; }
}

.dish-card {
  flex: 0 0 calc((100% - 3 * var(--space-5)) / 3.5);
  scroll-snap-align: start;
  background: var(--navy-700);
  border: 1px solid rgba(212,175,106,0.14);
  border-radius: var(--radius-md);
  overflow: hidden;
}

@media (max-width: 900px) {
  .dish-card { flex: 0 0 calc((100% - 1.5 * var(--space-5)) / 1.9); }
}

@media (max-width: 640px) {
  .dish-card { flex: 0 0 78%; }
}

.dish-media {
  height: 180px;
  overflow: hidden;
  position: relative;
}

.dish-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dish-body { padding: var(--space-5); }

.dish-body h3 {
  font-size: var(--fs-md);
  margin-bottom: var(--space-2);
}

.dish-body p {
  color: var(--cream-dim);
  font-size: var(--fs-sm);
  min-height: 42px;
}

.dish-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-4);
  padding-top: var(--space-3);
  border-top: 1px solid rgba(212,175,106,0.15);
}

.dish-price {
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--gold-400);
  font-size: var(--fs-md);
}

.menu-cta { text-align: center; margin-top: var(--space-6); }

.section-light .dish-card {
  background: var(--white);
  border-color: rgba(174,138,60,0.18);
}
.section-light .dish-body h3 { color: var(--ink); }
.section-light .dish-body p { color: var(--ink-soft); }
.section-light .dish-footer { border-top-color: rgba(174,138,60,0.18); }
.section-light .dish-price { color: var(--gold-600); }

/* ==========================================================================
   Gallery
   ========================================================================== */

.gallery-grid-full {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 0 var(--space-6);
}

@media (min-width: 1024px) {
  .gallery-grid-full { padding: 0 var(--space-8); }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-radius: var(--radius-md);
  border: 1px solid rgba(212,175,106,0.2);
  cursor: pointer;
  aspect-ratio: 3/4;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--navy-950);
  transition: transform var(--transition-slow), filter var(--transition-slow);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 0 rgba(212,175,106,0.9);
  transition: box-shadow var(--transition-fast), background var(--transition-fast);
  background: linear-gradient(180deg, transparent 60%, rgba(11,20,36,0.75));
}

.gallery-item:hover img { transform: scale(1.08); filter: brightness(1.05); }
.gallery-item:hover::after { box-shadow: inset 0 0 0 2px rgba(212,175,106,0.9), 0 0 30px rgba(212,175,106,0.35); }

.gallery-caption {
  position: absolute;
  left: var(--space-4);
  bottom: var(--space-3);
  z-index: 2;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-sm);
  letter-spacing: 0.01em;
  color: var(--cream);
}

@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6, 10, 18, 0.94);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
  padding: var(--space-6);
}

.lightbox.open { opacity: 1; pointer-events: auto; }

.lightbox-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  max-width: min(90vw, 900px);
}

.lightbox img {
  max-width: 100%;
  max-height: 78vh;
  border: 1px solid rgba(212,175,106,0.4);
  box-shadow: var(--shadow-glow);
  border-radius: var(--radius-sm);
}

.lightbox-caption {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-md);
  color: var(--cream);
  letter-spacing: 0.02em;
}

.lightbox-close {
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
  z-index: 2;
  background: none;
  border: 1px solid var(--gold-500);
  color: var(--gold-400);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: var(--fs-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: none;
  border: 1px solid var(--gold-500);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast), transform var(--transition-fast), border-color var(--transition-fast);
}

.lightbox-arrow svg { width: 20px; height: 20px; }

.lightbox-arrow:hover {
  background: rgba(212,175,106,0.12);
  border-color: var(--gold-300);
  transform: translateY(-50%) scale(1.06);
}

.lightbox-arrow.prev { left: var(--space-5); }
.lightbox-arrow.next { right: var(--space-5); }

@media (max-width: 640px) {
  .lightbox-arrow { width: 40px; height: 40px; }
  .lightbox-arrow.prev { left: var(--space-3); }
  .lightbox-arrow.next { right: var(--space-3); }
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonial-carousel {
  position: relative;
}

.testimonial-carousel-full {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.testimonial-carousel-full .testimonial-scroller {
  padding-left: max(var(--space-5), calc((100vw - var(--container-max)) / 2 + var(--space-6)));
  padding-right: max(var(--space-5), calc((100vw - var(--container-max)) / 2 + var(--space-6)));
}

.testimonial-carousel-full .dish-arrow.prev { left: 16px; }
.testimonial-carousel-full .dish-arrow.next { right: 16px; }

.testimonial-scroller {
  display: flex;
  gap: var(--space-5);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: var(--space-2) var(--space-1);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testimonial-scroller::-webkit-scrollbar { display: none; }

.testimonial-card {
  flex: 0 0 calc((100% - 3 * var(--space-5)) / 3.5);
  scroll-snap-align: start;
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-5);
  text-align: center;
  border: 1px solid var(--gold-400);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 900px) {
  .testimonial-card { flex: 0 0 calc((100% - 1.5 * var(--space-5)) / 1.9); }
}

@media (max-width: 640px) {
  .testimonial-card { flex: 0 0 82%; }
  .testimonial-carousel-full .dish-arrow { display: none; }
}

.testimonial-stars {
  color: var(--gold-600);
  letter-spacing: 0.2em;
  margin-bottom: var(--space-4);
}

.testimonial-card p.quote {
  font-family: var(--font-sans);
  font-size: var(--fs-md);
  line-height: 1.6;
  margin-bottom: var(--space-5);
}

.testimonial-name {
  font-size: var(--fs-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ==========================================================================
   Reservation band
   ========================================================================== */

.reserve-band {
  position: relative;
  overflow: hidden;
}

.reserve-inner {
  display: grid;
  gap: var(--space-6);
}

.reserve-copy h2 {
  font-size: var(--fs-2xl);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-3);
}
.reserve-copy p { color: var(--cream-dim); max-width: 460px; }

.section-light .eyebrow { color: var(--gold-600); }
.section-light .reserve-copy h2 { color: var(--ink); }
.section-light .reserve-copy p { color: var(--ink-soft); }

.reserve-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,175,106,0.25);
  padding: var(--space-7) var(--space-6);
  border-radius: var(--radius-lg);
}

.section-light .reserve-form {
  background: var(--cream);
  border-color: rgba(174,138,60,0.18);
  box-shadow: 0 24px 60px rgba(11,20,36,0.1);
}

.field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.field label {
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--gold-400);
}

.section-light .field label { color: var(--gold-600); }

.field input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,106,0.3);
  border-radius: var(--radius-md);
  padding: 0.9rem 1rem;
  font-size: var(--fs-sm);
  color: var(--cream);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.section-light .field input {
  background: var(--white);
  border-color: rgba(174,138,60,0.25);
  color: var(--ink);
  box-shadow: 0 1px 3px rgba(11,20,36,0.05);
}

.field input:hover { border-color: rgba(212,175,106,0.5); }
.section-light .field input:hover { border-color: rgba(174,138,60,0.45); }

.field input:focus {
  outline: none;
  border-color: var(--gold-400);
  box-shadow: 0 0 0 3px rgba(212,175,106,0.15);
}

.section-light .field input:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(193,89,47,0.15);
}

.field input::-webkit-calendar-picker-indicator {
  filter: invert(0.8) sepia(1) saturate(3) hue-rotate(2deg);
  cursor: pointer;
  padding: 2px;
}

.section-light .field input::-webkit-calendar-picker-indicator { filter: none; opacity: 0.55; }

.reserve-form .btn { margin-top: var(--space-2); width: 100%; }

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

@media (min-width: 640px) {
  .form-row-2 { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .reserve-inner { grid-template-columns: 1fr 1fr; align-items: center; }
}

.form-note {
  font-size: var(--fs-xs);
  color: var(--cream-dim);
  text-align: center;
  margin-top: var(--space-2);
}

.section-light .form-note { color: var(--ink-soft); }

/* ==========================================================================
   FAQ accordion
   ========================================================================== */

.faq-list {
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .faq-list {
    column-count: 2;
    column-gap: var(--space-5);
  }
}

.faq-item {
  break-inside: avoid;
  margin-bottom: var(--space-3);
  background: var(--white);
  border: 1px solid rgba(174,138,60,0.2);
  border-radius: var(--radius-md);
  padding: var(--space-5);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  min-height: 3.5rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-md);
  color: var(--ink);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-icon {
  width: 18px;
  height: 18px;
  flex: none;
  color: var(--gold-600);
  transition: transform var(--transition-fast);
}

.faq-item[open] .faq-icon { transform: rotate(180deg); }

.faq-item p {
  margin-top: var(--space-4);
  color: var(--ink-soft);
  font-size: var(--fs-sm);
  line-height: 1.7;
}

/* ==========================================================================
   Location facts + map (used inside the reservation section)
   ========================================================================== */

/* A clean, quiet frame — no decorative accents competing with the map's
   own labels, roads and controls. */
.reserve-map {
  margin: var(--space-6) 0 var(--space-5);
}

.reserve-map-inner {
  width: 100%;
  aspect-ratio: 16 / 8;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(174,138,60,0.3);
  box-shadow: 0 10px 26px rgba(11,20,36,0.1);
}

.reserve-map-inner iframe { display: block; width: 100%; height: 100%; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--navy-footer);
  border-top: 1px solid rgba(212,175,106,0.25);
  padding: var(--space-8) 0 var(--space-5);
}

.footer-grid {
  display: grid;
  gap: var(--space-7);
  grid-template-columns: 1fr;
}

.footer-brand img { height: 56px; margin-bottom: var(--space-4); }
.footer-brand p { color: var(--cream-dim); font-size: var(--fs-sm); max-width: 280px; }

.footer-col h4 {
  font-size: var(--fs-sm);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: var(--space-4);
}

.footer-col ul li { margin-bottom: var(--space-3); }
.footer-col ul li a,
.footer-col p {
  color: var(--cream-dim);
  font-size: var(--fs-sm);
  transition: color var(--transition-fast);
}
.footer-col ul li a:hover { color: var(--gold-400); }

.social-row { display: flex; gap: var(--space-3); margin-top: var(--space-4); }

.social-icon {
  width: 38px; height: 38px;
  border: 1px solid var(--gold-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  transition: background var(--transition-fast), transform var(--transition-fast);
}
.social-icon:hover { background: rgba(212,175,106,0.12); transform: translateY(-3px); }
.social-icon svg { width: 16px; height: 16px; }

.footer-bottom {
  margin-top: var(--space-8);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(212,175,106,0.12);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: center;
  text-align: center;
  font-size: var(--fs-xs);
  color: var(--cream-dim);
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ==========================================================================
   Menu page
   ========================================================================== */

.menu-hero {
  padding: calc(var(--space-9) + 60px) 0 var(--space-7);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(11,20,36,0.2), var(--navy-900) 90%),
    url('../assets/images/2.webp') center/cover;
  border-bottom: 1px solid rgba(212,175,106,0.2);
}

.menu-hero h1 { font-size: var(--fs-3xl); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
.menu-hero p { color: var(--cream-dim); margin-top: var(--space-3); }

.menu-toolbar {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--navy-glass);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212,175,106,0.18);
  padding: var(--space-4) 0;
}

.menu-toolbar-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.category-tabs {
  display: flex;
  gap: var(--space-6);
  overflow-x: auto;
  scrollbar-width: none;
}

.category-tabs::-webkit-scrollbar { display: none; }

.category-tab {
  background: none;
  border: none;
  color: var(--cream-dim);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: var(--fs-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--space-2) 0;
  position: relative;
  white-space: nowrap;
  transition: color var(--transition-fast);
}

.category-tab::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: var(--terracotta-light);
  transform: scaleX(0);
  transition: transform var(--transition-fast);
}

.category-tab.active { color: var(--terracotta-light); }
.category-tab.active::after { transform: scaleX(1); }

.search-wrap {
  position: relative;
  max-width: 320px;
}

.search-wrap input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,106,0.3);
  border-radius: 999px;
  padding: 0.65rem 1rem 0.65rem 2.4rem;
  color: var(--cream);
}

.search-wrap input:focus {
  outline: none;
  border-color: var(--gold-400);
  box-shadow: 0 0 0 3px rgba(212,175,106,0.15);
}

.search-wrap svg {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  color: var(--gold-500);
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  padding: var(--space-7) 0 var(--space-9);
  transition: opacity 0.3s var(--ease-out);
}

.menu-grid.filtering { opacity: 0; }

@media (min-width: 640px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .menu-grid { grid-template-columns: repeat(3, 1fr); }
}

.menu-item-card {
  display: flex;
  gap: var(--space-4);
  background: var(--navy-700);
  border: 1px solid rgba(212,175,106,0.14);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.menu-item-card:hover {
  border-color: var(--gold-400);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.menu-item-media {
  width: 92px;
  height: 92px;
  flex: none;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.menu-item-media img { width: 100%; height: 100%; object-fit: cover; }

.menu-item-body { flex: 1; min-width: 0; }

.menu-item-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-2);
}

.menu-item-top h3 {
  font-size: var(--fs-md);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.veg-dot {
  width: 12px; height: 12px;
  border: 1.5px solid #4CAF50;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.veg-dot::after { content:''; width:6px; height:6px; border-radius:50%; background:#4CAF50; }

.veg-dot.non-veg { border-color: #C0392B; }
.veg-dot.non-veg::after { background: #C0392B; }

.menu-item-price {
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--gold-400);
  white-space: nowrap;
}

.menu-item-body p.desc {
  color: var(--cream-dim);
  font-size: var(--fs-sm);
  margin-top: var(--space-2);
}

.no-results {
  text-align: center;
  padding: var(--space-8) 0;
  color: var(--cream-dim);
  display: none;
}

.no-results.show { display: block; }

/* ==========================================================================
   Reserve confirmation page
   ========================================================================== */

.confirm-wrap {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-9) var(--space-5);
}

.confirm-wrap h1 { font-size: var(--fs-2xl); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: var(--space-4); }
.confirm-wrap p { color: var(--cream-dim); margin-bottom: var(--space-6); }

/* ==========================================================================
   Motion preference
   ========================================================================== */

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