/* ============================================================
   SPICE TRAIL – Main Stylesheet
   Design: Dark luxury Indian fine dining
   Palette: Deep charcoal (#1a1508), warm blacks, gold (#d4af37)
   Typography: Playfair Display (headings), Cormorant Garamond (body), Jost (UI)
   ============================================================ */

/* ─── CUSTOM PROPERTIES ─── */
:root {
  --bg-primary:    #161009;
  --bg-secondary:  #1e1508;
  --bg-card:       #211a0a;
  --bg-card-hover: #2a200d;
  --bg-input:      #2a2010;
  --border:        rgba(212,175,55,0.18);
  --border-light:  rgba(212,175,55,0.08);

  --gold:          #d4af37;
  --gold-light:    #e8c84a;
  --gold-dim:      rgba(212,175,55,0.65);
  --gold-bg:       rgba(212,175,55,0.08);

  --text-primary:  #f5ead0;
  --text-secondary:#b8a880;
  --text-muted:    #7a6a48;
  --text-inverse:  #161009;

  --font-display:  'Playfair Display', Georgia, serif;
  --font-serif:    'Cormorant Garamond', Georgia, serif;
  --font-ui:       'Jost', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --shadow-gold:  0 0 40px rgba(212,175,55,0.12);
  --shadow-card:  0 4px 24px rgba(0,0,0,0.5);
  --shadow-deep:  0 8px 48px rgba(0,0,0,0.7);

  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: 0.6s cubic-bezier(0.4,0,0.2,1);

  --header-h: 72px;
  --container: 1200px;
  --container-sm: 960px;
}

/* Light theme override */
[data-theme="light"] {
  --bg-primary:    #faf6ed;
  --bg-secondary:  #f2ead6;
  --bg-card:       #fff8e8;
  --bg-card-hover: #fff3d4;
  --bg-input:      #fff8e8;
  --border:        rgba(180,140,20,0.25);
  --border-light:  rgba(180,140,20,0.12);
  --text-primary:  #1a1206;
  --text-secondary:#5a4820;
  --text-muted:    #9a8050;
  --shadow-card:   0 4px 24px rgba(0,0,0,0.1);
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-ui);
  font-weight: 300;
  line-height: 1.6;
  min-height: 100vh;
  transition: background var(--transition), color var(--transition);
  overflow-x: hidden;
}

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

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

ul, ol { list-style: none; }

button { cursor: pointer; border: none; background: none; font-family: inherit; }

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}

/* ─── UTILITIES ─── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 80px);
}

/* ─── TYPOGRAPHY ─── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.section-title--center { text-align: center; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn:hover::after { opacity: 1; }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.btn--gold {
  background: var(--gold);
  color: var(--text-inverse);
  font-weight: 600;
}
.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212,175,55,0.35);
}

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

.btn--full { width: 100%; }
.btn--sm { padding: 8px 18px; font-size: 0.7rem; }

/* ─── STARS ─── */
.stars { display: flex; gap: 3px; }
.star { color: var(--text-muted); font-size: 0.9rem; }
.star--filled { color: var(--gold); }
.stars--gold .star { color: var(--gold); }
.star--sm { font-size: 0.75rem; }

/* ─── BREADCRUMB ─── */
.breadcrumb ol {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.breadcrumb ol li + li::before { content: '/'; margin-right: 8px; }
.breadcrumb a:hover { color: var(--gold); }

/* ============================================================
   NAVBAR
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(22,16,9,0.85);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border-light);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(22,16,9,0.97);
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}

.navbar {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 32px;
  padding-inline: clamp(20px, 5vw, 80px);
  max-width: var(--container);
  margin-inline: auto;
}

.navbar__brand { flex-shrink: 0; }
.navbar__brand-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  transition: color var(--transition);
}
.navbar__brand:hover .navbar__brand-text { color: var(--gold); }

.navbar__links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.navbar__link {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.navbar__link:hover,
.navbar__link.active { color: var(--text-primary); }
.navbar__link:hover::after,
.navbar__link.active::after { width: 100%; }

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 24px;
}

/* Theme Toggle */
.navbar__theme-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0;
}
.theme-icon { font-size: 0.75rem; opacity: 0.6; }
.theme-toggle__track {
  width: 36px; height: 20px;
  background: var(--border);
  border-radius: 10px;
  position: relative;
  transition: background var(--transition);
}
[data-theme="light"] .theme-toggle__track { background: var(--gold); }
.theme-toggle__thumb {
  position: absolute;
  top: 3px; left: 3px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold);
  transition: transform var(--transition), background var(--transition);
}
[data-theme="light"] .theme-toggle__thumb {
  transform: translateX(16px);
  background: #fff;
}

/* Burger */
.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.navbar__burger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--text-primary);
  transition: var(--transition);
  transform-origin: center;
}
.navbar__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.navbar__burger.open span:nth-child(2) { opacity: 0; }
.navbar__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-h); left: 0; right: 0;
  background: rgba(22,16,9,0.98);
  backdrop-filter: blur(20px);
  padding: 32px clamp(20px,5vw,80px);
  border-bottom: 1px solid var(--border);
  z-index: 999;
  transform: translateY(-20px);
  opacity: 0;
  transition: opacity var(--transition), transform var(--transition);
  pointer-events: none;
}
.mobile-menu.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu ul { display: flex; flex-direction: column; gap: 20px; }
.mobile-menu a {
  font-size: 1.1rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-h);
  background: radial-gradient(ellipse 80% 70% at 30% 60%, rgba(80,50,10,0.5) 0%, transparent 70%),
              radial-gradient(ellipse 60% 50% at 80% 30%, rgba(50,30,5,0.4) 0%, transparent 60%),
              var(--bg-primary);
}

/* Bokeh ambient particles */
.hero__bokeh { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.bokeh {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.25), transparent 70%);
  animation: bokeh-float 8s ease-in-out infinite;
}
.bokeh--1 { width: 200px; height: 200px; top: 15%; left: 5%; animation-delay: 0s; }
.bokeh--2 { width: 120px; height: 120px; top: 60%; left: 20%; animation-delay: 1.5s; }
.bokeh--3 { width: 80px; height: 80px; top: 30%; left: 45%; animation-delay: 3s; }
.bokeh--4 { width: 160px; height: 160px; top: 70%; left: 70%; animation-delay: 2s; }
.bokeh--5 { width: 100px; height: 100px; top: 10%; left: 85%; animation-delay: 4s; }

@keyframes bokeh-float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
  50% { transform: translateY(-30px) scale(1.1); opacity: 1; }
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  padding-block: 80px;
  position: relative;
  z-index: 1;
}

.hero__content { max-width: 560px; }

.hero__heading {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.hero__sub {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 440px;
}

.hero__cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__image {
  width: 100%;
  max-width: 440px;
  height: auto;
  aspect-ratio: 5/6;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-deep), 0 0 60px rgba(212,175,55,0.1);
}

.hero__image-placeholder {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 5/6;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}
.hero__image-placeholder svg { width: 100%; height: 100%; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 100px 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.testimonials__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 20px;
}
.testimonials__header .section-title { margin-bottom: 12px; }

.testimonials__controls {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.carousel-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  background: var(--bg-card);
}
.carousel-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-bg);
}
.carousel-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.testimonials__track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  transition: var(--transition-slow);
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.testimonial-card__quote {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-input);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
}

.testimonial-card__avatar,
.testimonial-card__avatar-placeholder {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-card__role {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* Carousel dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.carousel-dot {
  width: 24px; height: 3px;
  border-radius: 2px;
  background: var(--border);
  transition: var(--transition);
  border: none;
  padding: 0;
  cursor: pointer;
}
.carousel-dot.active {
  background: var(--gold);
  width: 40px;
}
.carousel-dots--sm .carousel-dot { width: 8px; height: 8px; border-radius: 50%; }
.carousel-dots--sm .carousel-dot.active { width: 8px; background: var(--gold); }

/* ============================================================
   SIGNATURE DISHES
   ============================================================ */
.dishes {
  padding: 100px 0;
  background: var(--bg-primary);
}

.dishes__tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 40px 0 48px;
  justify-content: center;
}

.tab-btn {
  padding: 10px 22px;
  border-radius: 50px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
  background: transparent;
}
.tab-btn:hover {
  border-color: var(--gold-dim);
  color: var(--text-secondary);
}
.tab-btn--active,
.tab-btn[aria-selected="true"] {
  background: var(--gold);
  color: var(--text-inverse);
  border-color: var(--gold);
  font-weight: 600;
}
.tab-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.dishes__panel { display: none; }
.dishes__panel--active { display: block; }

.dishes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Dish Card */
.dish-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.dish-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), var(--shadow-gold);
  border-color: var(--border);
}

.dish-card__image-wrap {
  position: relative;
  overflow: hidden;
}

.dish-card__price {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--gold);
  color: var(--text-inverse);
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  z-index: 2;
  letter-spacing: 0.04em;
}

.dish-card__image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.dish-card:hover .dish-card__image { transform: scale(1.05); }

.dish-card__image--placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dish-card__image--placeholder svg { width: 100%; height: 100%; }

.dish-card__body { padding: 20px; display: flex; flex-direction: column; gap: 8px; }

.dish-card__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
}

.dish-card__desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   BOOKING SECTION
   ============================================================ */
.booking-section {
  padding: 100px 0;
  background: var(--bg-secondary);
  position: relative;
}
.booking-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

/* Pickup Card */
.pickup-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pickup-card__title {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--text-secondary);
}

.pickup-card__label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.location-list { display: flex; flex-direction: column; gap: 10px; }

.location-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-input);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}
.location-item:hover,
.location-item--selected {
  border-color: var(--gold-dim);
  background: var(--gold-bg);
}
.location-item:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.location-item__pin { color: var(--gold); flex-shrink: 0; }

.location-item__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.location-item__info strong {
  font-size: 0.88rem;
  color: var(--text-primary);
  font-weight: 500;
}
.location-item__info span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.location-item__time {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: var(--gold-dim);
  flex-shrink: 0;
}

/* Booking Form Card */
.booking-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.booking-form-card__title {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--text-secondary);
}

.booking-form { display: flex; flex-direction: column; gap: 16px; }

.booking-form__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.form-field { display: flex; flex-direction: column; gap: 6px; }

.form-field__label {
  font-size: 0.73rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-field__input {
  background: var(--bg-input);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: var(--text-primary);
  font-size: 0.88rem;
  transition: border-color var(--transition);
  width: 100%;
}
.form-field__input:focus {
  border-color: var(--gold-dim);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.08);
}
.form-field__input::placeholder { color: var(--text-muted); }
/* date/time native picker color fix */
.form-field__input::-webkit-calendar-picker-indicator {
  filter: invert(0.6) sepia(1) hue-rotate(10deg);
}

/* Instant service toggle */
.instant-service-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(212,175,55,0.08);
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

.instant-service-toggle__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Booking Map */
.booking-map {
  background: var(--bg-input);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.booking-map__svg { width: 100%; height: 120px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  padding: 100px 0;
  background: var(--bg-primary);
}

.gallery__sub {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text-muted);
  text-align: center;
  margin-top: 8px;
  margin-bottom: 48px;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 12px;
  padding-inline: clamp(20px, 5vw, 80px);
  max-width: var(--container);
  margin-inline: auto;
}

.gallery__item { overflow: hidden; border-radius: var(--radius-md); }

/* Masonry-style spans */
.gallery__item--1 { grid-row: span 2; }
.gallery__item--6 { grid-row: span 2; }

.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.gallery__item:hover .gallery__img { transform: scale(1.06); }

.gallery__img--placeholder {
  width: 100%; height: 100%;
  min-height: 160px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
}
.gallery__img--placeholder svg { width: 100%; height: 100%; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: calc(var(--header-h) + 64px) 0 64px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(80,50,10,0.4) 0%, transparent 70%),
              var(--bg-primary);
  border-bottom: 1px solid var(--border-light);
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 12px;
}

.page-hero__sub {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ============================================================
   MENU PAGE
   ============================================================ */
.menu-page { padding: 64px 0 100px; }

.menu-page__tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.menu-page__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.menu-item-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.menu-item-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--border);
}

.menu-item-card__image-wrap { position: relative; overflow: hidden; }
.menu-item-card__image {
  width: 100%; aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.menu-item-card:hover .menu-item-card__image { transform: scale(1.05); }
.menu-item-card__image--placeholder { width: 100%; aspect-ratio: 16/10; }

.menu-item-card__body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.menu-item-card__category {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.menu-item-card__name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
}

.menu-item-card__desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.menu-item-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

/* ============================================================
   LOCATIONS PAGE
   ============================================================ */
.locations-page { padding: 64px 0 100px; }

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.location-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.location-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--border);
}

.location-card__map { overflow: hidden; }
.location-card__map svg { width: 100%; }

.location-card__body { padding: 24px; display: flex; flex-direction: column; gap: 10px; }

.location-card__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
}

.location-card__address {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: normal;
}

.location-card__wait {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--gold-dim);
}

/* ============================================================
   STORY PAGE
   ============================================================ */
.story-page { padding: 64px 0 100px; }

.story-page__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}

.story-page__heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  margin-bottom: 28px;
  line-height: 1.2;
}

.story-page__text p {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 20px;
}

.story-page__image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.story-page__image-frame svg { width: 100%; height: auto; }

.story-page__stat-badge {
  position: absolute;
  bottom: -20px; left: -20px;
  background: var(--gold);
  color: var(--text-inverse);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.story-page__visual { position: relative; }
.story-page__stat-number { font-size: 1.4rem; font-weight: 600; line-height: 1; }
.story-page__stat-label { font-size: 0.7rem; letter-spacing: 0.1em; margin-top: 4px; }

.story-page__values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition);
  text-align: center;
}
.value-card:hover { border-color: var(--gold-dim); transform: translateY(-3px); }
.value-card__icon { font-size: 1.5rem; color: var(--gold); margin-bottom: 16px; }
.value-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 10px;
}
.value-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  padding: 56px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.footer__nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__nav a {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  transition: color var(--transition);
}
.footer__nav a:hover { color: var(--gold); }

.footer__social {
  display: flex;
  gap: 20px;
}
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: var(--transition);
}
.footer__social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-bg);
}

.footer__copy {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ============================================================
   MODAL
   ============================================================ */
.modal {
  position: fixed; inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition);
}
.modal.open { pointer-events: all; opacity: 1; }

.modal__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
}

.modal__content {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: scale(0.96);
  transition: transform var(--transition);
}
.modal.open .modal__content { transform: scale(1); }

.modal__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
}

.modal__body { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

/* ============================================================
   ANIMATION SYSTEM
   ============================================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate="fade-left"] { transform: translateX(40px); }
[data-animate].animated {
  opacity: 1;
  transform: translate(0, 0);
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dim); }

/* ============================================================
   FOCUS & ACCESSIBILITY
   ============================================================ */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* Skip to main content */
.skip-link {
  position: absolute;
  top: -100%; left: 16px;
  background: var(--gold);
  color: var(--text-inverse);
  padding: 8px 16px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 9999;
  transition: top var(--transition);
}
.skip-link:focus { top: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 60px; }
  .hero__content { max-width: 100%; text-align: center; }
  .hero__cta-group { justify-content: center; }
  .hero__image-wrap { justify-content: center; }

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

  .booking-grid { grid-template-columns: 1fr; }

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

@media (max-width: 768px) {
  :root { --header-h: 60px; }

  .navbar__links { display: none; }
  .navbar__actions .navbar__cta { display: none; }
  .navbar__burger { display: flex; }
  .navbar__theme-toggle { margin-left: auto; }

  .dishes__grid { grid-template-columns: 1fr; }
  .testimonials__track { grid-template-columns: 1fr; }

  .booking-form__row { grid-template-columns: 1fr 1fr; }

  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--1, .gallery__item--6 { grid-row: span 1; }

  .story-page__values { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }

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

@media (max-width: 480px) {
  .hero__heading { font-size: 2.4rem; }
  .hero__cta-group { flex-direction: column; align-items: center; }
  .booking-form__row { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; }
  .dishes__tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .footer__nav { gap: 16px; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .site-header, .site-footer, .hero__bokeh { display: none; }
  body { background: white; color: black; }
}
