/* ============================================
   DRAVIDA NYC — Premium Design System
   Typography: Cormorant / Montserrat
   Palette: Earthy warm tones — restaurant-inspired
   ============================================ */

/* --- Custom Properties --- */
:root {
  /* Earthy warm palette — from restaurant photography */
  --color-black: #0E0C0A;
  --color-charcoal: #1A1612;
  --color-dark: #2A2420;
  --color-mid: #4A3F38;
  --color-muted: #7A6E64;
  --color-light: #C8BFB4;
  --color-cream: #F7F3EE;
  --color-warm-cream: #F0E8DF;

  /* Accent palette — earthy spectrum */
  --color-accent: #C27832;         /* burnt orange — primary accent */
  --color-accent-light: #D4944E;   /* warm amber */
  --color-accent-dim: rgba(194, 120, 50, 0.15);
  --color-mustard: #B8962E;        /* dark mustard / ochre */
  --color-olive: #5C6438;          /* olive green */
  --color-teal: #3A5454;           /* dark teal */
  --color-navy: #2C3544;           /* deep navy */
  --color-burgundy: #5A1A2A;      /* deep burgundy */
  --color-burgundy-light: #7A2840; /* burgundy highlight */
  --color-burgundy-dim: rgba(90, 26, 42, 0.15);
  --color-forest: #1A2E1A;        /* dark forest green */
  --color-forest-light: #2A4428;  /* forest highlight */
  --color-forest-dim: rgba(26, 46, 26, 0.12);

  /* Semantic aliases — keeps rest of CSS clean */
  --color-gold: var(--color-accent);
  --color-gold-light: var(--color-accent-light);
  --color-gold-dim: var(--color-accent-dim);

  /* Typography */
  --font-heading: "Cormorant", Georgia, "Times New Roman", serif;
  --font-body: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Spacing — generous for luxury feel */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;
  --space-2xl: 12rem;

  /* Layout */
  --max-width: 1200px;
  --nav-height: 72px;

  /* Animation */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --duration-reveal: 1000ms;
  --duration-fast: 250ms;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  -webkit-text-size-adjust: 100%;
  background-color: var(--color-black);
}

body {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-mid);
  background-color: var(--color-black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: opacity var(--duration-fast) ease;
}

a:hover {
  opacity: 0.75;
}

a:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

::selection {
  background-color: var(--color-gold-dim);
  color: var(--color-black);
}

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-sm);
  background: var(--color-gold);
  color: var(--color-black);
  padding: var(--space-xs) var(--space-sm);
  font-weight: 500;
  z-index: 1000;
}

.skip-link:focus {
  top: 0;
}

/* --- Utilities --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-xl) 0;
  position: relative;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 300;
  color: var(--color-charcoal);
  margin-bottom: var(--space-lg);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity var(--duration-reveal) var(--ease-out-expo),
    transform var(--duration-reveal) var(--ease-out-expo);
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  transform: translateX(-40px) translateY(0);
}

.reveal-left.visible {
  transform: translateX(0) translateY(0);
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 3rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  touch-action: manipulation;
  transition: all var(--duration-fast) ease;
}

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

.btn-hero {
  background: linear-gradient(135deg, var(--color-burgundy) 0%, #6B2236 100%);
  color: var(--color-cream);
  border: 1px solid rgba(194, 120, 50, 0.4);
  padding: 1.1rem 3rem;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  box-shadow: 0 4px 24px rgba(90, 26, 42, 0.4), 0 0 0 1px rgba(194, 120, 50, 0.1);
}

.btn-hero:hover {
  background: linear-gradient(135deg, var(--color-burgundy-light) 0%, var(--color-burgundy) 100%);
  border-color: var(--color-gold);
  color: var(--color-cream);
  box-shadow: 0 6px 32px rgba(90, 26, 42, 0.5), 0 0 0 1px rgba(194, 120, 50, 0.3);
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
}

.btn-outline:hover {
  background-color: var(--color-gold);
  color: var(--color-black);
  opacity: 1;
}

/* ============================================
   NAVIGATION — Translucent floating bar
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background-color: transparent;
  transition: background-color 0.4s ease;
  overflow: visible;
}

.navbar.scrolled {
  background-color: rgba(14, 12, 10, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo:hover {
  opacity: 0.8;
}

.nav-logo-img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: opacity var(--duration-fast) ease;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-cream);
  opacity: 0.7;
  text-decoration: none;
  position: relative;
  transition: opacity var(--duration-fast) ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-gold);
  transition: width 0.3s var(--ease-out-expo);
}

.nav-link:hover {
  opacity: 1;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  opacity: 1;
  color: var(--color-gold);
}

.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  opacity: 1 !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.5rem 1.5rem;
  border-radius: 3rem;
  transition: all var(--duration-fast) ease;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* Mobile Nav Toggle — Animated hamburger/X */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  padding: 0;
  touch-action: manipulation;
  z-index: 120;
  position: relative;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.nav-toggle:hover {
  border-color: var(--color-accent);
}

.nav-toggle.open {
  border-color: rgba(255, 255, 255, 0.25);
  background-color: rgba(255, 255, 255, 0.05);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 1.5px;
  background-color: var(--color-cream);
  border-radius: 1px;
  transition: transform 0.4s var(--ease-out-expo), opacity 0.3s ease, width 0.3s ease;
  transform-origin: center center;
}

.nav-toggle:hover .nav-toggle-bar {
  background-color: var(--color-accent-light);
}

.nav-toggle.open .nav-toggle-bar:nth-child(1) {
  transform: translateY(4.25px) rotate(45deg);
  width: 20px;
}

.nav-toggle.open .nav-toggle-bar:nth-child(2) {
  transform: translateY(-4.25px) rotate(-45deg);
  width: 20px;
}

/* ============================================
   HERO — Cinematic full-bleed
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--color-black);
}

.hero-media {
  position: absolute;
  inset: 0;
}

/* Desktop hero video — visible by default */
.hero-video--desktop {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
}

/* Mobile hero video — hidden on desktop via size, not display:none
   (iOS Safari won't autoplay videos that start with display:none) */
.hero-video--mobile {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 640px) {
  .hero-video--desktop {
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
  }

  .hero-video--mobile {
    width: 100%;
    height: 100%;
    inset: 0;
    overflow: visible;
    opacity: 1;
    pointer-events: auto;
    object-fit: cover;
    object-position: center top;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(14, 12, 10, 0.55);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-cream);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo-mark {
  margin-bottom: var(--space-lg);
  display: flex;
  justify-content: center;
  width: 100%;
}

.logo-sparkle-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sparkle-canvas {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180%;
  height: 180%;
  pointer-events: none;
  z-index: 1;
}

.hero-logo-img {
  position: relative;
  z-index: 0;
  height: clamp(100px, 18vw, 180px);
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.hero-logo-img--color {
  filter: none;
  opacity: 1;
  height: clamp(180px, 32vw, 360px);
}

.hero-location {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  opacity: 0.5;
  margin-bottom: var(--space-lg);
  letter-spacing: 0.05em;
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.hero-scroll-text {
  font-family: var(--font-body);
  font-size: 0.5625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-cream);
  opacity: 0.4;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-cream), transparent);
  opacity: 0.3;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.1; transform: scaleY(0.6); }
  50% { opacity: 0.4; transform: scaleY(1); }
}

/* ============================================
   INTRO / PHILOSOPHY
   ============================================ */
.section-intro {
  background: linear-gradient(
    160deg,
    var(--color-charcoal) 0%,
    #3A1525 35%,
    #2E1020 65%,
    var(--color-charcoal) 100%
  );
  padding: var(--space-2xl) 0;
  text-align: center;
  border-top: 2px solid var(--color-burgundy);
  border-bottom: 2px solid var(--color-burgundy);
}

.intro-quote {
  max-width: 800px;
  margin: 0 auto;
}

.intro-quote p {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--color-cream);
  opacity: 0.9;
}

.intro-attribution {
  margin-top: var(--space-md);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  opacity: 0.7;
}

/* ============================================
   ABOUT
   ============================================ */
.section-about {
  background-color: var(--color-charcoal);
  padding: var(--space-2xl) 0;
}

.section-about .section-label {
  color: var(--color-burgundy-light);
}

.section-about .section-title {
  color: var(--color-cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image-frame {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.about-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.about-image-accent {
  position: absolute;
  top: var(--space-md);
  left: calc(-1 * var(--space-sm));
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-forest-light);
  opacity: 0.35;
  z-index: 0;
}

.about-lead {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-cream);
  margin-bottom: var(--space-md);
}

.about-body p {
  margin-bottom: var(--space-sm);
  color: var(--color-light);
  opacity: 0.75;
}

.about-signature {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 400;
  font-style: italic;
  color: var(--color-gold);
  margin: var(--space-md) 0;
  letter-spacing: 0.02em;
}

/* ============================================
   IMAGE BAND — Horizontal scroll strip
   ============================================ */
.image-band {
  width: 100%;
  overflow: hidden;
  background-color: var(--color-charcoal);
  padding: 4px 0;
}

.image-band-track {
  display: flex;
  gap: 4px;
}

.image-band-track picture {
  flex-shrink: 0;
}

.band-img {
  width: 400px;
  height: 280px;
  object-fit: cover;
  flex-shrink: 0;
}

/* ============================================
   MENU — Editorial centered layout
   ============================================ */
.section-menu {
  background: #F5EDE0;
  color: #2A1A0E;
  padding: var(--space-2xl) 0;
}

.section-menu .section-label {
  color: #8B6914;
}

.section-menu .section-title {
  color: #2A1A0E;
}

.menu-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto var(--space-xl);
}

.menu-intro {
  color: #3D2B1F;
  opacity: 0.7;
  font-size: 0.9375rem;
  line-height: 1.8;
}

/* Menu card — no visible card, content sits on the section gradient */
.menu-card {
  max-width: 960px;
  margin: 0 auto;
  padding: var(--space-lg) var(--space-lg);
  background: none;
  border: none;
  position: relative;
}

.menu-card::before,
.menu-card::after {
  display: none;
}

/* Two-column grid matching the PDF layout */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 var(--space-xl);
  position: relative;
}

/* Vertical divider between columns */
.menu-grid::after {
  content: "";
  position: absolute;
  top: var(--space-md);
  bottom: var(--space-md);
  left: 50%;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(90, 26, 42, 0.12) 15%,
    rgba(90, 26, 42, 0.12) 85%,
    transparent
  );
}

.menu-col {
  min-width: 0;
}

/* Menu sections */
.menu-section {
  padding: 0 0 var(--space-lg);
  position: relative;
}

.menu-section:last-child {
  padding-bottom: 0;
}

.menu-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  font-weight: 500;
  color: #8B1A2B;
  text-align: left;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-md);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(139, 26, 43, 0.15);
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.menu-item {
  padding: 0.75rem 0;
  position: relative;
  border-bottom: 1px solid rgba(90, 26, 42, 0.06);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item-name {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  font-weight: 700;
  color: #2A1A0E;
  letter-spacing: 0.01em;
  line-height: 1.4;
  margin-bottom: 0.25rem;
}

/* Dietary icons — circled line-art matching the PDF */
.menu-diet {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-left: 3px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.55;
}

/* Celiac — wheat stalk with X through it */
.menu-diet--celiac {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235A3A2A' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10.5'/%3E%3Cpath d='M12 18V8'/%3E%3Cpath d='M12 8L9 5'/%3E%3Cpath d='M12 8L15 5'/%3E%3Cpath d='M12 11L9.5 8.5'/%3E%3Cpath d='M12 11L14.5 8.5'/%3E%3Cpath d='M12 14L10 12'/%3E%3Cpath d='M12 14L14 12'/%3E%3Cline x1='5' y1='5' x2='19' y2='19' stroke-width='1.8'/%3E%3C/svg%3E");
}

/* Vegetarian — V with leaf */
.menu-diet--veg {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235A3A2A' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10.5'/%3E%3Cpath d='M8 7l4 10 4-10'/%3E%3Cpath d='M14.5 7c0 0 1.5 1 1.5 3s-2 3-2 3' fill='none'/%3E%3C/svg%3E");
}

/* Seafood — fish silhouette */
.menu-diet--seafood {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235A3A2A' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10.5'/%3E%3Cpath d='M5.5 12c2-3 5-4.5 9-4.5C13 9 12.5 10.5 12.5 12s.5 3 2 4.5c-4 0-7-1.5-9-4.5z'/%3E%3Cpath d='M17.5 8.5c-1 1-1 2.5 0 3.5 1-1 1-2.5 0-3.5z' transform='translate(0 1)'/%3E%3Ccircle cx='8' cy='11.5' r='0.7' fill='%235A3A2A' stroke='none'/%3E%3C/svg%3E");
}

/* Peanut — peanut shell shape */
.menu-diet--peanut {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235A3A2A' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10.5'/%3E%3Cpath d='M12 6c-2.2 0-3.5 1.5-3.5 3.2 0 1.2.6 1.8 1.2 2.3-.6.5-1.2 1.1-1.2 2.3C8.5 15.5 9.8 18 12 18s3.5-2.5 3.5-4.2c0-1.2-.6-1.8-1.2-2.3.6-.5 1.2-1.1 1.2-2.3C15.5 7.5 14.2 6 12 6z'/%3E%3Cpath d='M9 12h6'/%3E%3C/svg%3E");
}

.menu-item-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
  color: #3D2B1F;
  opacity: 0.75;
}

.menu-item-influence {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: #5A3A2A;
  opacity: 0.6;
  margin-top: 0.2rem;
}

.menu-item-story {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: #5A3A2A;
  opacity: 0.65;
  margin-top: 0.25rem;
}

/* Desserts — full width centered, like the PDF */
.menu-section--desserts {
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(139, 26, 43, 0.12);
  margin-top: var(--space-md);
}

.menu-section--desserts .menu-section-title {
  text-align: center;
}

.menu-section--desserts .menu-items {
  max-width: 640px;
  margin: 0 auto;
}

.menu-section--desserts .menu-item {
  text-align: center;
}

/* Dietary legend at bottom — matching PDF footer */
.menu-legend {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  padding-top: var(--space-lg);
  margin-top: var(--space-md);
  border-top: 1px solid rgba(139, 26, 43, 0.1);
}

.menu-legend-item {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: #5A3A2A;
  opacity: 0.6;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.menu-legend-item .menu-diet {
  width: 18px;
  height: 18px;
  opacity: 0.7;
  margin-left: 0;
}

/* Footer area */
.menu-footer {
  text-align: center;
  margin-top: var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.menu-note {
  font-size: 0.8125rem;
  color: #5A3A2A;
  font-style: italic;
  max-width: 500px;
}

.btn-menu-cta {
  background: #8B1A2B;
  color: #F5EDE0;
  border: 1px solid #8B1A2B;
  letter-spacing: 0.15em;
  transition: all var(--duration-fast) ease;
}

.btn-menu-cta:hover {
  background-color: #6B1420;
  border-color: #6B1420;
  color: #F5EDE0;
  opacity: 1;
}

/* ============================================
   GALLERY — Editorial grid with burgundy accents
   ============================================ */
.section-gallery {
  background: linear-gradient(
    175deg,
    var(--color-charcoal) 0%,
    #2A1525 30%,
    #221020 50%,
    #2A1525 70%,
    var(--color-charcoal) 100%
  );
  padding: var(--space-2xl) 0;
}

.gallery-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.gallery-header .section-label {
  color: var(--color-burgundy-light);
}

.gallery-header .section-title {
  color: var(--color-cream);
  margin-bottom: var(--space-sm);
}

.gallery-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.gallery-ornament-line {
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-burgundy-light), transparent);
  opacity: 0.5;
}

.gallery-ornament-diamond {
  width: 7px;
  height: 7px;
  background-color: var(--color-burgundy-light);
  transform: rotate(45deg);
  opacity: 0.6;
  flex-shrink: 0;
}

.gallery-intro {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 300;
  font-style: italic;
  color: var(--color-light);
  opacity: 0.6;
  max-width: 420px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Grid layout: 3-column base */
.gallery-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid rgba(90, 26, 42, 0.15);
  aspect-ratio: 4 / 3;
}

.gallery-item--hero {
  grid-column: span 3;
  aspect-ratio: 21 / 9;
}

.gallery-item--wide {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 240px;
  max-height: 300px;
  transition: transform 1.2s var(--ease-out-expo), filter 0.6s ease;
}

.gallery-item--hero img {
  min-height: 320px;
  max-height: 420px;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Caption — structured with label + title */
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-xl) var(--space-md) var(--space-md);
  background: linear-gradient(to top, rgba(42, 16, 24, 0.9) 0%, rgba(42, 16, 24, 0.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s var(--ease-out-expo);
}

.gallery-caption-label {
  font-family: var(--font-body);
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-burgundy-light);
}

.gallery-caption-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-cream);
  letter-spacing: 0.03em;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   PRIVATE EVENTS — Cinematic
   ============================================ */
.section-events {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--color-black);
}

.events-media {
  position: absolute;
  inset: 0;
}

.events-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.events-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(14, 12, 10, 0.7) 0%,
    rgba(90, 26, 42, 0.6) 40%,
    rgba(122, 40, 64, 0.45) 60%,
    rgba(14, 12, 10, 0.75) 100%
  );
  z-index: 1;
}

.events-content {
  position: relative;
  z-index: 2;
  color: var(--color-cream);
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.events-content .section-title {
  color: var(--color-cream);
}

.events-subtitle {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 300;
  font-style: italic;
  opacity: 0.8;
}

.events-body {
  font-size: 1rem;
  line-height: 1.9;
  opacity: 0.8;
  margin-bottom: var(--space-lg);
}

/* ============================================
   VISIT — Elegant card layout
   ============================================ */
.section-visit {
  background: linear-gradient(
    180deg,
    var(--color-black) 0%,
    #16120F 50%,
    var(--color-black) 100%
  );
  padding: var(--space-2xl) 0;
}

.visit-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.visit-header .section-label {
  color: var(--color-gold);
}

.visit-header .section-title {
  color: var(--color-cream);
}

/* Icon shared style */
.visit-icon {
  color: var(--color-gold);
  flex-shrink: 0;
}

/* Hero address row — centered, prominent */
.visit-hero-row {
  margin-bottom: var(--space-lg);
}

.visit-address-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  max-width: 650px;
  margin: 0 auto;
  padding: var(--space-lg) var(--space-lg);
  background: linear-gradient(
    135deg,
    rgba(42, 68, 40, 0.2) 0%,
    rgba(26, 46, 26, 0.15) 50%,
    rgba(42, 68, 40, 0.1) 100%
  );
  border: 1px solid rgba(42, 68, 40, 0.35);
  border-radius: 2px;
  position: relative;
}

.visit-address-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--color-forest-light), transparent);
}

.visit-address-text {
  flex: 1;
}

.visit-address-line {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--color-cream);
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.visit-address-neighborhood {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-forest-light);
  margin-top: var(--space-xs);
  opacity: 0.8;
}

.visit-directions-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  white-space: nowrap;
  transition: color var(--duration-fast) ease;
}

.visit-directions-link:hover {
  color: var(--color-gold-light);
  opacity: 1;
}

/* Detail cards row — 3 columns */
.visit-details-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.visit-detail-card {
  padding: var(--space-lg) var(--space-md);
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  transition: background-color var(--duration-fast) ease, border-color var(--duration-fast) ease;
}

.visit-detail-card:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.visit-detail-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-cream);
  letter-spacing: 0.02em;
}

.visit-detail-text {
  color: var(--color-light);
  opacity: 0.7;
  font-size: 0.875rem;
}

.visit-detail-highlight {
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  color: var(--color-cream);
  font-size: 1.125rem;
  letter-spacing: 0.02em;
}

.visit-detail-sub {
  font-size: 0.75rem;
  color: var(--color-light);
  opacity: 0.4;
}

.visit-reserve-btn {
  margin-top: var(--space-xs);
  font-size: 0.625rem;
  padding: 0.75rem 2rem;
}

.visit-email-link {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(194, 120, 50, 0.3);
}

.visit-email-link:hover {
  text-decoration-color: var(--color-gold);
  opacity: 1;
}

.visit-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  color: var(--color-light);
  opacity: 0.5;
  transition: color var(--duration-fast) ease, opacity var(--duration-fast) ease;
}

.visit-social-link:hover {
  color: var(--color-gold);
  opacity: 1;
}

/* ============================================
   FAQ — Centered premium card layout
   ============================================ */
.section-faq {
  background: linear-gradient(
    180deg,
    var(--color-warm-cream) 0%,
    #EDE4D8 50%,
    var(--color-warm-cream) 100%
  );
  padding: var(--space-2xl) 0;
  border-top: 3px solid var(--color-burgundy);
}

.faq-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.faq-header .section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: var(--space-sm);
}

.faq-intro {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 300;
  font-style: italic;
  color: var(--color-muted);
  opacity: 0.8;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(90, 26, 42, 0.1);
  padding: var(--space-sm) var(--space-lg);
  position: relative;
}

/* Burgundy side accent */
.faq-list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    var(--color-burgundy),
    var(--color-burgundy-light),
    transparent
  );
}

.faq-item {
  border-bottom: 1px solid rgba(90, 26, 42, 0.08);
}

.faq-item:first-child {
  border-top: none;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.375rem 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9375rem;
  color: var(--color-charcoal);
  letter-spacing: 0.01em;
  list-style: none;
  touch-action: manipulation;
  transition: color var(--duration-fast) ease;
}

.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { content: ""; }

.faq-question:hover {
  color: var(--color-burgundy);
  opacity: 1;
}

.faq-question:focus-visible {
  outline: 2px solid var(--color-burgundy);
  outline-offset: 3px;
}

.faq-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  margin-left: var(--space-md);
  position: relative;
  border-radius: 50%;
  border: 1px solid rgba(90, 26, 42, 0.2);
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.faq-question:hover .faq-icon {
  border-color: var(--color-burgundy);
}

details[open] .faq-icon {
  background-color: var(--color-burgundy);
  border-color: var(--color-burgundy);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background-color: var(--color-burgundy);
  transition: transform 0.4s var(--ease-out-expo), opacity 0.3s ease, background-color 0.3s ease;
}

.faq-icon::before {
  width: 12px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 1.5px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

details[open] .faq-icon::before,
details[open] .faq-icon::after {
  background-color: var(--color-warm-cream);
}

details[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  padding: 0 var(--space-md) 1.5rem 0;
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.9;
  max-width: 600px;
}

.faq-answer a {
  color: var(--color-burgundy);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-answer a:hover {
  color: var(--color-burgundy-light);
}

.btn-gift-card {
  margin-top: var(--space-sm);
  font-size: 0.625rem;
  padding: 0.75rem 2rem;
  border-color: var(--color-burgundy);
  color: var(--color-burgundy);
}

.btn-gift-card:hover {
  background-color: var(--color-burgundy);
  border-color: var(--color-burgundy);
  color: var(--color-cream);
}

/* ============================================
   MOBILE RESERVE BAR
   ============================================ */
.mobile-reserve {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 0.5rem 0.5rem env(safe-area-inset-bottom, 0px);
  background: rgba(14, 12, 10, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(90, 26, 42, 0.3);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-out-expo);
}

.mobile-reserve.visible {
  transform: translateY(0);
}

.mobile-reserve-btn {
  display: block;
  text-align: center;
  padding: 1rem;
  background: linear-gradient(135deg, var(--color-burgundy) 0%, var(--color-burgundy-light) 100%);
  color: var(--color-cream);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  touch-action: manipulation;
  border-radius: 4px;
}

.mobile-reserve-btn:hover {
  opacity: 0.9;
}

.mobile-reserve-btn:focus-visible {
  outline: 2px solid var(--color-cream);
  outline-offset: 2px;
}

/* ============================================
   FOOTER — Indian heritage, warm & memorable
   ============================================ */
.footer {
  background: linear-gradient(
    180deg,
    #0E0C0A 0%,
    #1A1210 30%,
    #1E1418 60%,
    #160E12 100%
  );
  color: var(--color-cream);
  padding: 0 0 var(--space-md);
  position: relative;
}

/* Decorative spice border — repeating pattern at the top */
.footer-border {
  width: 100%;
  overflow: hidden;
  padding: 2px 0;
}

.footer-border-pattern {
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--color-burgundy) 0px,
    var(--color-burgundy) 8px,
    transparent 8px,
    transparent 12px,
    var(--color-forest-light) 12px,
    var(--color-forest-light) 20px,
    transparent 20px,
    transparent 24px,
    var(--color-gold) 24px,
    var(--color-gold) 28px,
    transparent 28px,
    transparent 36px
  );
  opacity: 0.7;
}

/* Soul / closing statement */
.footer-soul {
  text-align: center;
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer-sanskrit {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 300;
  color: var(--color-gold);
  opacity: 0.8;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.footer-translation {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 300;
  font-style: italic;
  color: var(--color-light);
  opacity: 0.5;
  margin-top: var(--space-xs);
  letter-spacing: 0.03em;
}

.footer-soul-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: var(--space-md);
}

.footer-soul-divider span {
  display: block;
  background-color: var(--color-burgundy-light);
}

.footer-soul-divider span:nth-child(1),
.footer-soul-divider span:nth-child(3) {
  width: 40px;
  height: 1px;
  opacity: 0.4;
}

.footer-soul-divider span:nth-child(2) {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0.6;
}

/* Brand / logo centered */
.footer-brand {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.footer-logo-img {
  height: 80px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  margin: 0 auto;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-forest-light);
  opacity: 0.7;
  margin-top: var(--space-sm);
}

/* Info grid — 3 columns */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-lg);
  padding: var(--space-lg) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  align-items: start;
}

.footer-col {
  font-size: 0.8125rem;
  line-height: 2;
  opacity: 0.5;
  font-variant-numeric: tabular-nums;
}

.footer-col:first-child {
  text-align: right;
}

.footer-col:last-child {
  text-align: left;
}

.footer-col-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  opacity: 1;
  padding: 0 var(--space-lg);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 1;
  color: var(--color-burgundy-light);
  margin-bottom: var(--space-xs);
}

.footer-hours {
  color: var(--color-gold);
  opacity: 1;
  font-weight: 400;
}

.btn-footer-reserve {
  background: linear-gradient(135deg, var(--color-burgundy) 0%, var(--color-burgundy-light) 100%);
  color: var(--color-cream);
  border: none;
  padding: 0.875rem 2.5rem;
  font-size: 0.6875rem;
}

.btn-footer-reserve:hover {
  background: linear-gradient(135deg, var(--color-burgundy-light) 0%, var(--color-burgundy) 100%);
  opacity: 1;
  color: var(--color-cream);
}

.footer-resy-note {
  font-size: 0.6875rem;
  color: var(--color-light);
  opacity: 0.4;
}

.footer-col a {
  color: var(--color-cream);
  opacity: 1;
}

.footer-col a:hover {
  color: var(--color-burgundy-light);
  opacity: 1;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-cream);
  font-size: 0.8125rem;
  margin-top: var(--space-xs);
}

.social-link:hover {
  color: var(--color-burgundy-light);
  opacity: 1;
}

/* Closing section — the final impression */
.footer-closing {
  margin-top: var(--space-lg);
  padding: var(--space-xl) var(--space-md) var(--space-lg);
  text-align: center;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(90, 26, 42, 0.12) 40%,
    rgba(90, 26, 42, 0.08) 100%
  );
  border-top: 1px solid rgba(90, 26, 42, 0.2);
  position: relative;
}

.footer-closing-inner {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Floral ornament */
.footer-closing-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.fco-line {
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-burgundy-light), transparent);
  opacity: 0.4;
}

.fco-leaf {
  font-size: 1.25rem;
  color: var(--color-burgundy-light);
  opacity: 0.5;
  line-height: 1;
}

.footer-closing-phrase {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-cream);
  opacity: 0.7;
  margin-bottom: var(--space-md);
}

.footer-closing-em {
  font-style: italic;
  color: var(--color-gold);
  opacity: 1;
}

.footer-closing-chef {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 400;
  font-style: italic;
  color: var(--color-cream);
  opacity: 0.5;
  letter-spacing: 0.03em;
  margin-bottom: var(--space-sm);
}

.footer-closing-place {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-forest-light);
  opacity: 0.45;
  margin-bottom: var(--space-lg);
}

.footer-closing-copyright {
  font-size: 0.625rem;
  color: var(--color-cream);
  opacity: 0.15;
  letter-spacing: 0.05em;
}

/* ============================================
   ARTISTIC PLACEHOLDERS — Gradient compositions
   Replace with real photos when available
   ============================================ */

/* Hero placeholder */
.hero-image.placeholder {
  background: linear-gradient(
    135deg,
    var(--color-black) 0%,
    #2A1F18 25%,
    #3D2B1E 40%,
    var(--color-teal) 60%,
    var(--color-navy) 80%,
    var(--color-black) 100%
  );
  object-fit: unset;
}

/* About image placeholder */
.about-image.placeholder {
  background: linear-gradient(
    160deg,
    var(--color-dark) 0%,
    #4A3228 30%,
    var(--color-accent) 55%,
    var(--color-mustard) 75%,
    var(--color-olive) 100%
  );
  object-fit: unset;
  width: 100%;
  aspect-ratio: 3 / 4;
}

/* Generic art placeholder for gallery & band images */
.art-placeholder {
  position: relative;
  overflow: hidden;
}

.art-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Warm interior feel */
.art-placeholder--warm {
  background: linear-gradient(
    145deg,
    #1A1612 0%,
    #3D2B1E 30%,
    var(--color-accent) 60%,
    #5C3A20 80%,
    #2A2420 100%
  );
}

.art-placeholder--warm::before {
  background: radial-gradient(
    ellipse at 30% 40%,
    rgba(194, 120, 50, 0.3) 0%,
    transparent 60%
  );
}

/* Food / spice tones */
.art-placeholder--spice {
  background: linear-gradient(
    130deg,
    #2A1F18 0%,
    var(--color-mustard) 35%,
    var(--color-accent) 55%,
    #6B3A1F 75%,
    var(--color-dark) 100%
  );
}

.art-placeholder--spice::before {
  background: radial-gradient(
    ellipse at 60% 50%,
    rgba(184, 150, 46, 0.25) 0%,
    transparent 55%
  );
}

/* Cool / teal mood */
.art-placeholder--mood {
  background: linear-gradient(
    155deg,
    var(--color-navy) 0%,
    var(--color-teal) 35%,
    #3A5454 55%,
    var(--color-olive) 75%,
    #1A1612 100%
  );
}

.art-placeholder--mood::before {
  background: radial-gradient(
    ellipse at 45% 55%,
    rgba(58, 84, 84, 0.35) 0%,
    transparent 60%
  );
}

/* Olive / earthy */
.art-placeholder--earth {
  background: linear-gradient(
    140deg,
    #1A1612 0%,
    var(--color-olive) 30%,
    #7A6E40 55%,
    var(--color-mustard) 75%,
    #2A2420 100%
  );
}

.art-placeholder--earth::before {
  background: radial-gradient(
    ellipse at 55% 35%,
    rgba(92, 100, 56, 0.3) 0%,
    transparent 55%
  );
}

/* Deep / dramatic */
.art-placeholder--deep {
  background: linear-gradient(
    160deg,
    var(--color-black) 0%,
    var(--color-navy) 25%,
    #3D2B1E 50%,
    var(--color-accent) 70%,
    var(--color-black) 100%
  );
}

.art-placeholder--deep::before {
  background: radial-gradient(
    ellipse at 40% 60%,
    rgba(194, 120, 50, 0.2) 0%,
    transparent 50%
  );
}

/* Texture overlay for all art placeholders */
.art-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.02) 0%, transparent 40%);
  mix-blend-mode: overlay;
}

/* Events placeholder */
.events-image.placeholder {
  background: linear-gradient(
    135deg,
    var(--color-black) 0%,
    #2A1F18 20%,
    var(--color-teal) 45%,
    var(--color-navy) 65%,
    var(--color-black) 100%
  );
  object-fit: unset;
}

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

/* Tablet */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .about-image {
    aspect-ratio: 16 / 10;
  }

  .about-image-accent {
    display: none;
  }

  .menu-card {
    padding: var(--space-lg) var(--space-md);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item--hero {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
  }

  .gallery-item--wide {
    grid-column: span 1;
    aspect-ratio: 4 / 3;
  }

  .visit-details-row {
    grid-template-columns: 1fr 1fr;
  }

  .visit-detail-card:last-child {
    grid-column: span 2;
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    text-align: center;
  }

  .footer-col:first-child,
  .footer-col:last-child {
    text-align: center;
  }

  .footer-col-center {
    border-left: none;
    border-right: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: var(--space-md) 0;
  }
}

/* Mobile */
@media (max-width: 640px) {
  :root {
    --space-xl: 5rem;
    --space-2xl: 7rem;
  }

  .nav-toggle {
    display: flex;
  }

  /* When menu is open, remove navbar height constraint & backdrop-filter
     so the fixed fullscreen overlay isn't clipped by the 72px bar */
  .navbar.menu-open {
    height: auto;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background-color: transparent !important;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    z-index: 105;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(
      160deg,
      rgba(14, 12, 10, 0.98) 0%,
      rgba(50, 18, 28, 0.96) 40%,
      rgba(26, 40, 26, 0.96) 70%,
      rgba(14, 12, 10, 0.98) 100%
    );
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    gap: var(--space-lg);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s var(--ease-out-expo);
    overscroll-behavior: contain;
  }

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

  .nav-menu .nav-link {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s var(--ease-out-expo), color var(--duration-fast) ease;
  }

  .nav-menu.open .nav-link {
    opacity: 0.8;
    transform: translateY(0);
  }

  /* Staggered entrance for each link */
  .nav-menu.open li:nth-child(1) .nav-link { transition-delay: 0.05s; }
  .nav-menu.open li:nth-child(2) .nav-link { transition-delay: 0.1s; }
  .nav-menu.open li:nth-child(3) .nav-link { transition-delay: 0.15s; }
  .nav-menu.open li:nth-child(4) .nav-link { transition-delay: 0.2s; }
  .nav-menu.open li:nth-child(5) .nav-link { transition-delay: 0.25s; }
  .nav-menu.open li:nth-child(6) .nav-link { transition-delay: 0.3s; }

  .nav-menu .nav-link:hover {
    opacity: 1;
    color: var(--color-burgundy-light);
  }

  .nav-menu .nav-cta {
    margin-top: var(--space-sm);
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: 1px solid var(--color-burgundy-light);
    color: var(--color-burgundy-light);
    padding: 0.75rem 2.5rem;
    border-radius: 3rem;
  }

  .nav-menu .nav-cta:hover {
    background-color: var(--color-burgundy);
    border-color: var(--color-burgundy);
    color: var(--color-cream);
  }

  .hero-title {
    letter-spacing: 0.08em;
  }

  .hero-logo-img--color {
    height: clamp(220px, 60vw, 320px);
  }

  .hero-logo-mark {
    margin-bottom: var(--space-md);
  }

  .btn-hero {
    padding: 1rem 2.5rem;
    font-size: 0.6875rem;
  }

  .menu-card {
    padding: var(--space-md) var(--space-xs);
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .menu-grid::after {
    display: none;
  }

  .menu-item {
    padding: 0.65rem 0;
  }

  .menu-section-title {
    text-align: center;
    margin-bottom: var(--space-sm);
    font-size: 1.4rem;
  }

  .menu-section--desserts .menu-items {
    max-width: 100%;
  }

  .menu-legend {
    flex-wrap: wrap;
    gap: var(--space-md);
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding: 0 var(--space-sm);
  }

  .gallery-item--hero {
    grid-column: span 2;
    max-height: 220px;
  }

  .gallery-item--wide {
    grid-column: span 1;
  }

  .gallery-item img {
    min-height: 0;
    max-height: none;
  }

  .gallery-item--hero img {
    min-height: 0;
    max-height: none;
  }

  .gallery-item {
    border: none;
    border-radius: 4px;
    aspect-ratio: 1 / 1;
  }

  .gallery-item--hero {
    aspect-ratio: 16 / 9;
  }

  .gallery-item--wide {
    aspect-ratio: 1 / 1;
  }

  .gallery-caption {
    opacity: 1;
    transform: translateY(0);
    padding: var(--space-sm) var(--space-xs) var(--space-xs);
    background: linear-gradient(to top, rgba(14, 12, 10, 0.85) 0%, transparent 100%);
  }

  .gallery-caption-label {
    font-size: 0.5rem;
  }

  .gallery-caption-title {
    font-size: 0.875rem;
  }

  .faq-list {
    padding: var(--space-sm) var(--space-md);
  }

  .visit-address-card {
    flex-direction: column;
    text-align: center;
    padding: var(--space-md);
  }

  .visit-address-card::before {
    width: 100%;
    height: 2px;
    top: 0;
    left: 0;
    background: linear-gradient(to right, transparent, var(--color-forest-light), transparent);
  }

  .visit-directions-link {
    margin-top: var(--space-xs);
  }

  .visit-details-row {
    grid-template-columns: 1fr;
  }

  .visit-detail-card:last-child {
    grid-column: span 1;
    max-width: none;
  }

  .footer-soul {
    padding: var(--space-lg) 0 var(--space-md);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col:first-child,
  .footer-col:last-child {
    text-align: center;
  }

  .footer-col-center {
    border-left: none;
    border-right: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: var(--space-md) 0;
  }

  .footer-closing {
    padding: var(--space-lg) var(--space-sm) calc(var(--space-xl) + 80px);
  }

  .footer-closing-inner {
    max-width: none;
  }

  .footer-closing-phrase {
    font-size: 1.125rem;
  }

  .mobile-reserve {
    display: block;
  }

  /* Add bottom padding to body to account for sticky reserve bar */
  body {
    padding-bottom: 60px;
  }

  .band-img {
    width: 280px;
    height: 200px;
  }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-image {
    transform: none;
  }

  .gallery-cell:hover img {
    transform: none;
  }

  .gallery-caption {
    opacity: 1;
    transform: none;
  }

  .hero-scroll-line {
    animation: none;
    opacity: 0.3;
  }
}

/* --- Print --- */
@media print {
  .navbar,
  .hero-overlay,
  .hero-media,
  .hero-scroll-cue,
  .nav-toggle,
  .btn,
  .mobile-reserve,
  .image-band,
  .events-media,
  .events-overlay,
  .footer {
    display: none;
  }

  .hero {
    height: auto;
    min-height: 0;
    background: none;
  }

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
