/* ============================================================
   Spice Route Restaurant — Pro Tier Website
   Shared stylesheet (styles.css)
   ============================================================ */

/* ---------- Design System ---------- */
:root {
  --cream: #FDF8F0;
  --saffron: #D97706;
  --saffron-dark: #B45309;
  --charcoal: #1A1410;
  --brown: #2A1810;
  --red: #991B1B;
  --green: #16A34A;
  --gold: #D4A574;
  --gray: #78716C;
  --white: #FFFFFF;
  --shadow-card: 0 8px 30px rgba(217, 119, 6, 0.15);
  --shadow-hover: 0 12px 40px rgba(217, 119, 6, 0.25);
  --radius-card: 12px;
  --radius-btn: 8px;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-script: 'Caveat', cursive;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 80px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--brown);
  background: var(--cream);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ---------- Accessibility helpers ---------- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 8px;
  background: var(--saffron);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 6px;
  z-index: 9999;
  font-weight: 600;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 8px; }

:focus-visible {
  outline: 3px solid var(--saffron);
  outline-offset: 2px;
  border-radius: 4px;
}

.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;
}

/* ---------- Page load fade-in ---------- */
body { animation: pageFadeIn 0.5s ease; }
@keyframes pageFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ---------- Layout helpers ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 40px;
  color: var(--brown);
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: var(--gray);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  border-radius: var(--radius-btn);
  transition: all 0.3s var(--ease);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}
.btn:hover { transform: scale(1.03); }
.btn-primary {
  background: var(--saffron);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.35);
}
.btn-primary:hover { background: var(--saffron-dark); box-shadow: 0 8px 24px rgba(217, 119, 6, 0.45); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--saffron); }
.btn-saffron-outline {
  background: transparent;
  color: var(--saffron);
  border: 2px solid var(--saffron);
}
.btn-saffron-outline:hover { background: var(--saffron); color: var(--white); }
.btn-sm { padding: 8px 16px; font-size: 14px; border-radius: 6px; }

/* ---------- Header / Navigation ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), height 0.35s var(--ease);
  background: transparent;
}
.site-header.scrolled {
  background: var(--cream);
  box-shadow: 0 2px 18px rgba(26, 20, 16, 0.08);
  height: 70px;
}
.site-header.scrolled .logo,
.site-header.scrolled .nav-link { color: var(--brown); }
.site-header.scrolled .hamburger span { background: var(--brown); }

.header-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.35s var(--ease);
}
.logo .diamond { color: var(--saffron); font-size: 14px; }

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--white);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s var(--ease);
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--saffron);
  transition: width 0.3s var(--ease);
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--saffron); }
.site-header.scrolled .nav-link.active { color: var(--saffron); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.35s var(--ease);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu .nav-link {
  color: var(--cream);
  font-size: 24px;
  font-family: var(--font-head);
}
.mobile-menu .nav-link.active { color: var(--saffron); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 120px 24px 80px;
}
.hero-sm { min-height: 50vh; padding: 140px 24px 64px; }
.hero-xs  { min-height: 40vh; padding: 140px 24px 56px; }
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(26,20,16,0.7) 0%, rgba(26,20,16,0.4) 50%, rgba(217,119,6,0.3) 100%);
  z-index: 1;
}
.hero-sm::before, .hero-xs::before {
  background: linear-gradient(rgba(26,20,16,0.7) 0%, rgba(26,20,16,0.4) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 72px;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-sm .hero-title, .hero-xs .hero-title { font-size: 56px; }
.hero-tagline {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.6;
  color: var(--cream);
  margin-bottom: 36px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.hero-sm .hero-tagline, .hero-xs .hero-tagline { font-size: 18px; }
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--white);
}
.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-trust .stars { color: var(--gold); letter-spacing: 1px; }
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--saffron);
  font-size: 28px;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(10px); }
}

/* ---------- Promo Banner (marquee) ---------- */
.promo-banner {
  background: var(--saffron);
  color: var(--white);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
}
.promo-marquee {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  padding-left: 100%;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* ---------- Welcome / Intro ---------- */
.welcome {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.welcome-img {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.5s var(--ease);
}
.welcome-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.welcome-img:hover img { transform: scale(1.03); }
.welcome-text .eyebrow { margin-bottom: 12px; }
.welcome-text h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 36px;
  color: var(--brown);
  margin-bottom: 20px;
  line-height: 1.2;
}
.welcome-text p {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--brown);
  line-height: 1.8;
  margin-bottom: 20px;
}
.chef-signature {
  font-family: var(--font-script);
  font-size: 32px;
  color: var(--saffron);
  font-style: italic;
  margin: 16px 0 20px;
  display: block;
}
.text-link {
  color: var(--saffron);
  font-family: var(--font-body);
  font-weight: 500;
  transition: color 0.3s var(--ease);
}
.text-link:hover { text-decoration: underline; }

/* ---------- Featured Dishes ---------- */
.dish-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dish-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.dish-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.dish-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.dish-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.dish-card:hover .dish-card-img img { transform: scale(1.05); }
.dish-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.dish-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  color: var(--brown);
  margin-bottom: 8px;
}
.dish-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.dish-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  gap: 12px;
}
.dish-price {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  color: var(--red);
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--white);
  white-space: nowrap;
}
.badge-spice-mild   { background: #F59E0B; }
.badge-spice-medium { background: #EA580C; }
.badge-spice-spicy  { background: var(--red); }
.badge-spice-sweet  { background: #DB2777; }
.badge-veg          { background: var(--green); }
.badge-nonveg       { background: var(--red); }
.badge-popular      { background: var(--gold); color: var(--charcoal); }

/* Corner badges on cards */
.dish-badges-top {
  position: absolute;
  top: 12px; left: 12px; right: 12px;
  display: flex;
  justify-content: space-between;
  z-index: 2;
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: var(--charcoal);
  color: var(--cream);
  padding: 48px 0;
  position: relative;
}
.stats-bar::before, .stats-bar::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--saffron);
  width: 80%;
  margin: 0 auto;
  max-width: 1100px;
}
.stats-bar::before { margin-bottom: 40px; }
.stats-bar::after  { margin-top: 40px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.stat-value {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 56px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-family: var(--font-body);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--cream);
}

/* ---------- Photo Gallery Preview ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-card);
  cursor: pointer;
  position: relative;
  background: var(--charcoal);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:hover { box-shadow: 0 0 0 2px var(--saffron); }
/* Masonry visual interest */
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  position: relative;
  background: #FFF5EB;
  border-top: 3px solid var(--saffron);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-card);
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 6px; left: 18px;
  font-family: var(--font-head);
  font-size: 60px;
  color: var(--saffron);
  opacity: 0.3;
  line-height: 1;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.testimonial-quote {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 18px;
  color: var(--brown);
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.testimonial-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--saffron);
  margin-bottom: 4px;
}
.testimonial-detail {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 6px;
}
.google-g {
  display: inline-block;
  width: 24px; height: 24px;
  background: var(--white);
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: #4285F4;
  border: 1px solid #E5E7EB;
}

/* ---------- Hours / Location ---------- */
.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.location-card {
  color: var(--cream);
}
.location-icon {
  font-size: 32px;
  margin-bottom: 14px;
  display: block;
}
.location-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 28px;
  color: var(--cream);
  margin-bottom: 16px;
}
.location-card p,
.location-card li {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--cream);
}
.location-card .muted {
  color: var(--gray);
  font-size: 14px;
  font-style: italic;
}

/* ---------- Final CTA ---------- */
.final-cta {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-dark) 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}
.final-cta h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 48px;
  color: var(--white);
  margin-bottom: 16px;
}
.final-cta p {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--cream);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 32px;
}
.final-cta .btn-outline:hover { background: var(--white); color: var(--saffron); }

/* ---------- Page hero (sub pages) — uses .hero .hero-sm ---------- */

/* ---------- About: Story Two-Column ---------- */
.story-two-col {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 64px;
  align-items: start;
}
.story-text h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 36px;
  color: var(--brown);
  margin: 12px 0 20px;
  line-height: 1.2;
}
.story-text p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.85;
  color: var(--brown);
  margin-bottom: 18px;
}
.story-side img {
  width: 100%;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  margin-bottom: 24px;
}
.story-quote-card {
  background: var(--charcoal);
  color: var(--cream);
  padding: 24px;
  border-radius: var(--radius-card);
  font-family: var(--font-head);
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
}
.story-quote-card .attribution {
  margin-top: 12px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 14px;
  color: var(--gold);
}

/* ---------- Timeline ---------- */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 8%; right: 8%;
  height: 2px;
  background: var(--saffron);
  z-index: 0;
}
.timeline-node {
  position: relative;
  text-align: center;
  z-index: 1;
}
.timeline-circle {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  background: var(--saffron);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  border: 4px solid var(--cream);
  box-shadow: 0 4px 12px rgba(217,119,6,0.3);
}
.timeline-icon {
  font-size: 28px;
  margin-bottom: 8px;
}
.timeline-year {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  color: var(--saffron);
  margin-bottom: 4px;
}
.timeline-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--brown);
  margin-bottom: 6px;
}
.timeline-desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
  padding: 0 8px;
}

/* ---------- Chef Note ---------- */
.chef-note {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.chef-photo-wrap {
  display: flex;
  justify-content: center;
}
.chef-photo {
  width: 300px; height: 300px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--saffron);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.chef-note-text {
  position: relative;
  color: var(--cream);
}
.chef-note-text::before {
  content: '\201C';
  position: absolute;
  top: -40px; left: -20px;
  font-family: var(--font-head);
  font-size: 120px;
  color: var(--saffron);
  opacity: 0.4;
  line-height: 1;
}
.chef-note-text p {
  font-family: var(--font-script);
  font-size: 36px;
  line-height: 1.5;
  color: var(--cream);
  position: relative;
  z-index: 1;
}

/* ---------- Menu Page: Filters + Grid ---------- */
.menu-controls {
  position: sticky;
  top: 70px;
  background: var(--cream);
  z-index: 50;
  padding: 20px 0;
  box-shadow: 0 4px 18px rgba(26,20,16,0.06);
  margin-bottom: 48px;
}
.menu-controls-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.filter-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.filter-row .filter-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
  margin-right: 4px;
}
.filter-chip {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--white);
  color: var(--brown);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.filter-chip:hover { border-color: var(--saffron); color: var(--saffron); }
.filter-chip.active {
  background: var(--saffron);
  color: var(--white);
  border-color: var(--saffron);
}
.search-input, .sort-select {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 10px 16px;
  border-radius: var(--radius-btn);
  border: 1.5px solid #E5DDD3;
  background: var(--white);
  color: var(--brown);
  transition: border-color 0.25s var(--ease);
}
.search-input { flex: 1; min-width: 200px; }
.search-input:focus, .sort-select:focus { outline: none; border-color: var(--saffron); }
.sort-select { cursor: pointer; }

.filter-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
.filter-scroll::-webkit-scrollbar { height: 4px; }
.filter-scroll::-webkit-scrollbar-thumb { background: var(--saffron); border-radius: 4px; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.menu-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.menu-card-img {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: #F3EEE6;
}
.menu-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.menu-card:hover .menu-card-img img { transform: scale(1.05); }
.menu-card-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  color: var(--brown);
  padding: 16px 16px 4px;
}
.menu-card-desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gray);
  line-height: 1.55;
  padding: 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.menu-card-footer {
  padding: 12px 16px 16px;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* Skeleton */
.skeleton-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.skeleton-img, .skeleton-line {
  background: linear-gradient(90deg, #F3EEE6 25%, #E8DFD2 37%, #F3EEE6 63%);
  background-size: 400% 100%;
  animation: skeleton 1.5s infinite;
}
.skeleton-img { height: 180px; }
.skeleton-line { height: 14px; margin: 12px 16px; border-radius: 4px; }
.skeleton-line.short { width: 60%; }
@keyframes skeleton {
  0%   { background-position: 100% 50%; }
  100% { background-position: 0 50%; }
}

.menu-state {
  text-align: center;
  padding: 60px 24px;
  font-family: var(--font-body);
}
.menu-state h3 {
  font-family: var(--font-head);
  font-size: 24px;
  color: var(--brown);
  margin-bottom: 12px;
}
.menu-state p {
  color: var(--gray);
  font-size: 16px;
  margin-bottom: 20px;
}

/* ---------- Gallery Page ---------- */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.gallery-masonry {
  columns: 3;
  column-gap: 16px;
}
.gallery-masonry .gallery-item {
  display: inline-block;
  width: 100%;
  margin-bottom: 16px;
  break-inside: avoid;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(26, 20, 16, 0.95);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.lightbox-caption {
  position: absolute;
  bottom: 32px;
  left: 0; right: 0;
  text-align: center;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 14px;
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  color: var(--white);
  font-size: 36px;
  background: none;
  cursor: pointer;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.25s var(--ease);
  z-index: 5;
}
.lightbox-close:hover { color: var(--saffron); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(217, 119, 6, 0.85);
  color: var(--white);
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}
.lightbox-nav:hover { transform: translateY(-50%) scale(1.1); background: var(--saffron); }
.lightbox-prev { left: 32px; }
.lightbox-next { right: 32px; }

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 28px;
  color: var(--brown);
  margin-bottom: 20px;
}
.contact-card h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 24px;
  color: var(--brown);
  margin-bottom: 16px;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 2;
  color: var(--brown);
  margin-bottom: 10px;
}
.contact-list .icon {
  flex-shrink: 0;
  font-size: 18px;
  width: 24px;
  text-align: center;
  margin-top: 6px;
}
.contact-list a:hover { color: var(--saffron); }
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.social-icons a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--saffron);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
  border: 1.5px solid var(--saffron);
}
.social-icons a:hover { transform: scale(1.1); background: var(--saffron); color: var(--white); }
.map-embed, .reservation-embed {
  width: 100%;
  border: 0;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}
.contact-card .btn { margin-top: 12px; }

/* ---------- Floating WhatsApp ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  z-index: 80;
  transition: transform 0.25s var(--ease);
  font-size: 28px;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* ---------- GloriaFood Modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 20, 16, 0.85);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.modal-box {
  background: var(--cream);
  border-radius: var(--radius-card);
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  transform: scale(0.95);
  transition: transform 0.3s var(--ease);
}
.modal-overlay.open .modal-box { transform: scale(1); }
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid #E8DFD2;
}
.modal-header h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  color: var(--brown);
}
.modal-close {
  background: none;
  border: none;
  font-size: 28px;
  color: var(--gray);
  cursor: pointer;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.modal-close:hover { background: var(--cream); color: var(--saffron); }
.modal-body { padding: 0; overflow-y: auto; flex: 1; }
.modal-body iframe { width: 100%; height: 600px; border: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 24px;
}
.footer-brand .logo { color: var(--cream); margin-bottom: 12px; }
.footer-brand p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 320px;
}
.footer-col h5 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--cream);
  margin-bottom: 16px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col a {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray);
  transition: color 0.25s var(--ease);
}
.footer-col a:hover { color: var(--saffron); }
.footer-bottom {
  border-top: 1px solid rgba(253, 248, 240, 0.1);
  padding-top: 20px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gray);
}
.footer-bottom a { color: var(--saffron); }

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Decorative diamond divider ---------- */
.diamond-divider {
  text-align: center;
  margin: 24px 0;
  color: var(--saffron);
  font-size: 14px;
  letter-spacing: 12px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .dish-grid-3, .testimonials-grid, .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .welcome { grid-template-columns: 1fr; gap: 40px; }
  .welcome-img { order: -1; }
  .story-two-col { grid-template-columns: 1fr; gap: 40px; }
  .chef-note { grid-template-columns: 1fr; gap: 32px; }
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .timeline::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .gallery-masonry { columns: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .location-grid { grid-template-columns: 1fr; gap: 40px; max-width: 600px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .hero-title { font-size: 48px; }
  .hero-sm .hero-title, .hero-xs .hero-title { font-size: 40px; }
  .hero-tagline { font-size: 18px; }
  .section { padding: 64px 0; }
  .section-header { margin-bottom: 40px; }
  .section-title { font-size: 32px; }
  .final-cta h2 { font-size: 36px; }
  .final-cta p { font-size: 16px; }
  .stat-value { font-size: 44px; }
  .chef-note-text p { font-size: 28px; }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
  .lightbox-nav { width: 44px; height: 44px; font-size: 22px; }
  .lightbox-close { top: 12px; right: 16px; font-size: 28px; }
}

@media (max-width: 480px) {
  .dish-grid-3, .testimonials-grid, .menu-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 1; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-item.wide, .gallery-item.tall { grid-column: auto; grid-row: auto; }
  .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn, .final-cta .btn { width: 100%; }
  .timeline { grid-template-columns: 1fr; }
  .hero-title { font-size: 38px; }
  .hero-trust { gap: 16px; font-size: 13px; }
  .menu-controls { top: 60px; padding: 14px 0; }
}

/* ---------- Print-friendly (reservations confirmation etc.) ---------- */
@media print {
  .site-header, .whatsapp-float, .promo-banner, .scroll-indicator { display: none !important; }
  body { background: white; color: black; }
}
