/* ============================================================
   LUCKY CAT — Main Stylesheet
   ============================================================ */

/* 1. RESET & CUSTOM PROPERTIES
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-bg:         #ffffff;
  --color-surface:    #f7f4ef;
  --color-surface-2:  #ede9e2;
  --color-gold:       #9a6d18;
  --color-gold-light: #c9a84c;
  --color-gold-dim:   #c9a84c;
  --color-cream:      #1a1208;
  --color-red:        #c0392b;
  --color-red-light:  #e74c3c;
  --color-text:       #2a2010;
  --color-muted:      #7a6e58;
  --color-border:     #ddd8ce;

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;

  --nav-height: 130px;
  --container:  1200px;
  --radius:     4px;
  --transition: 0.3s ease;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.07);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 16px 64px rgba(0,0,0,0.14);
}

html {
  scroll-behavior: smooth;
}

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

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

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

ul {
  list-style: none;
}

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

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

/* 2. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-cream);
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p {
  color: var(--color-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.gold { color: var(--color-gold); font-size: inherit; font-weight: inherit; line-height: inherit; }
.cream { color: var(--color-cream); }
.muted { color: var(--color-muted); }

/* 3. LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 60px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .label {
  display: block;
  margin-bottom: 12px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  max-width: 560px;
  margin: 0 auto;
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

.gold-rule {
  width: 60px;
  height: 2px;
  background: var(--color-gold);
  margin: 20px auto;
}

.gold-rule-left {
  margin: 20px 0;
}

/* 4. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-gold);
  color: #0d0d0d;
}

.btn-primary:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}

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

.btn-outline:hover {
  background: var(--color-gold);
  color: #0d0d0d;
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1.5px solid var(--color-border);
  color: var(--color-muted);
}

.btn-ghost:hover {
  border-color: var(--color-cream);
  background: rgba(0,0,0,0.05);
}

/* Ghost button on dark hero background */
.hero .btn-ghost {
  border: 2px solid rgba(255,255,255,0.85);
  color: #fff;
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hero .btn-ghost:hover {
  background: rgba(255,255,255,0.18);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

/* 5. NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--color-border);
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 0 var(--color-border), 0 4px 20px rgba(0,0,0,0.07);
}

.navbar .container {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0;
}

/* Left zone: nav links on desktop, hamburger on mobile */
.nav-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* Center: logo */
.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .2s;
}
.nav-logo:hover { opacity: .8; }
.nav-logo img { height: clamp(56px, 10vw, 120px); aspect-ratio: 1055/990; object-fit: contain; }

/* Right zone: lang + reserve */
.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

/* Nav links — visible on desktop, in left zone */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  white-space: nowrap;
}

.nav-reserve {
  padding: 9px 20px;
  font-size: 0.78rem;
  white-space: nowrap;
}

/* Hamburger — only on mobile */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--color-cream);
  transition: all var(--transition);
  border-radius: 2px;
}

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

/* Mobile nav overlay */
.mobile-nav {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(255,255,255,0.99);
  backdrop-filter: blur(12px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--color-cream);
  transition: color var(--transition);
  letter-spacing: 0.02em;
}

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

/* Lang toggle inside mobile nav */
.mobile-nav .mobile-lang {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.mobile-nav .mobile-lang button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--color-muted);
  padding: 4px 8px;
  transition: color .2s;
}
.mobile-nav .mobile-lang button.active { color: var(--color-gold); }
.mobile-nav .mobile-lang span { color: var(--color-border); font-size: .75rem; }

/* 6. PAGE HERO (sub-pages)
   ============================================================ */
.page-hero {
  padding: calc(var(--nav-height) + 80px) 0 80px;
  text-align: center;
  background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-bg) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero .label {
  display: block;
  margin-bottom: 12px;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
}

/* 7. HOME HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: clamp(560px, 85vh, 760px);
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1617196034183-421b4040ed20?w=1600&q=80');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,13,13,0.85) 0%,
    rgba(13,13,13,0.5) 60%,
    rgba(13,13,13,0.3) 100%
  );
}

.hero.loaded .hero-bg {
  transform: scale(1);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-eyebrow .label {
  font-size: 0.8rem;
  color: var(--color-gold-light);
}

.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--color-gold);
}

.hero h1 {
  margin-bottom: 20px;
  color: #fff;
}

.hero h1 em {
  font-style: italic;
  color: var(--color-gold);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(245,240,232,0.7);
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(245,240,232,0.55);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scrollBounce 2s infinite;
}

.hero-scroll .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* 8. FEATURES STRIP
   ============================================================ */
.features {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 0;
}

.features .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  divide-x: 1px solid var(--color-border);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 40px 32px;
  border-right: 1px solid var(--color-border);
  transition: background var(--transition);
}

.feature-item:last-child {
  border-right: none;
}

.feature-item:hover {
  background: var(--color-surface-2);
}

.feature-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--color-cream);
}

.feature-text p {
  font-size: 0.85rem;
  margin: 0;
}

/* 9. SIGNATURE DISHES
   ============================================================ */
.dishes-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--color-gold-dim) var(--color-surface);
  scroll-snap-type: x mandatory;
}

.dishes-scroll::-webkit-scrollbar {
  height: 3px;
}

.dishes-scroll::-webkit-scrollbar-track {
  background: var(--color-surface);
}

.dishes-scroll::-webkit-scrollbar-thumb {
  background: var(--color-gold-dim);
  border-radius: 2px;
}

.dish-card {
  flex: 0 0 280px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  scroll-snap-align: start;
  transition: transform var(--transition), box-shadow var(--transition);
}

.dish-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.dish-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.dish-img-placeholder {
  width: 100%;
  height: 200px;
  background: var(--color-surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.dish-info {
  padding: 20px;
}

.dish-info .label {
  font-size: 0.7rem;
  margin-bottom: 8px;
  display: block;
}

.dish-info h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.dish-info p {
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.dish-price {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--color-gold);
  font-weight: 600;
}

/* ── Food Showcase ────────────────────────────────────────── */
.food-showcase {
  background: #1a1a1a;
  padding: 0 0 48px;
}

.food-showcase-header {
  text-align: center;
  padding: 40px 24px 28px;
}

.showcase-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c9a84c;
  display: block;
}

/* Bento grid: 3 cols × 3 rows */
.food-showcase-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-rows: 280px 220px 200px;
  gap: 4px;
}

/* Hero item: left column, spans rows 1 & 2 */
.sc-item--hero {
  grid-row: 1 / 3;
}

/* Wide footer item: spans all 3 columns in row 3 */
.sc-item--wide {
  grid-column: 1 / 4;
  grid-row: 3;
}

/* Generic showcase item */
.sc-item {
  position: relative;
  overflow: hidden;
  background: #111;
  cursor: pointer;
}

.sc-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(.25,.46,.45,.94), filter 0.4s;
  filter: brightness(0.88) saturate(1.05);
  display: block;
}

.sc-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.65) saturate(1.15);
}

/* Overlay label */
.sc-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px 18px;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 3px;
  transform: translateY(8px);
  opacity: 0.85;
  transition: transform 0.3s, opacity 0.3s;
}

.sc-item:hover .sc-overlay {
  transform: translateY(0);
  opacity: 1;
}

.sc-cat {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c9a84c;
  line-height: 1;
}

.sc-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: #fff;
  line-height: 1.2;
}

/* Gold top-border accent on hover */
.sc-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #c9a84c;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(.25,.46,.45,.94);
  z-index: 2;
}

.sc-item:hover::before {
  transform: scaleX(1);
}

/* CTA button below grid */
.food-showcase-cta {
  text-align: center;
  padding: 32px 24px 0;
}

.showcase-btn {
  border-color: rgba(201,168,76,.5) !important;
  color: #c9a84c !important;
  font-size: 0.85rem !important;
}

.showcase-btn:hover {
  background: rgba(201,168,76,.08) !important;
  border-color: #c9a84c !important;
}

/* Mobile: stack to 2 cols then 1 */
@media (max-width: 900px) {
  .food-showcase-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 180px 180px 160px;
  }
  .sc-item--hero { grid-row: 1; grid-column: 1 / 3; }
  .sc-item--wide { grid-column: 1 / 3; grid-row: 4; }
}

@media (max-width: 520px) {
  .food-showcase-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 150px 150px 140px;
  }
  .sc-item--hero { height: 180px; }
  .sc-name { font-size: 0.95rem; }
  .sc-cat { font-size: 0.6rem; }
}

/* ── Homepage Locations ───────────────────────────────────── */
.locations-section { background: var(--color-surface); }

.locations-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.loc-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}

.loc-card:hover {
  border-color: var(--color-gold);
  box-shadow: 0 8px 28px rgba(154,109,24,.1);
  transform: translateY(-4px);
}

.loc-card-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--color-gold);
  opacity: .35;
  line-height: 1;
  margin-bottom: -4px;
}

.loc-card-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-cream);
  margin: 0;
}

.loc-card-row {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.loc-card-row svg { flex-shrink: 0; color: var(--color-gold); }

.loc-card-row a {
  color: var(--color-muted);
  text-decoration: none;
  transition: color .2s;
}

.loc-card-row a:hover { color: var(--color-gold); }

.loc-card-map {
  display: inline-block;
  margin-top: auto;
  padding-top: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--color-gold);
  text-decoration: none;
  border-top: 1px solid var(--color-border);
  transition: opacity .2s;
}

.loc-card-map:hover { opacity: .7; }

.loc-hours {
  text-align: center;
  margin-top: 32px;
  font-size: 0.85rem;
  color: var(--color-muted);
  letter-spacing: .04em;
}

@media (max-width: 768px) {
  .locations-cards { grid-template-columns: 1fr; gap: 16px; }
  .loc-card { padding: 24px 20px; }
}

/* 10. ABOUT TEASER
    ============================================================ */
.about-teaser {
  background: var(--color-surface);
}

.about-teaser .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap img,
.about-img-wrap .img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 4px;
}

.about-img-wrap .img-placeholder {
  background: var(--color-surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.about-img-wrap::before {
  content: '';
  position: absolute;
  inset: -16px;
  border: 1px solid var(--color-gold-dim);
  border-radius: 6px;
  z-index: -1;
}

.about-text .label {
  display: block;
  margin-bottom: 12px;
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 16px;
}

.about-text p:last-of-type {
  margin-bottom: 32px;
}

.stats-row {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--color-border);
}

.stat h3 {
  font-size: 2.5rem;
  color: var(--color-gold);
  line-height: 1;
}

.stat p {
  font-size: 0.8rem;
  margin-top: 4px;
}

/* 11. TESTIMONIALS
    ============================================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 36px;
  position: relative;
  transition: border-color var(--transition);
}

.testimonial-card:hover {
  border-color: var(--color-gold-dim);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  left: 28px;
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 1;
  color: var(--color-gold);
  opacity: 0.4;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 24px;
  padding-top: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 1px solid var(--color-border);
}

.author-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--color-cream);
}

.author-info span {
  font-size: 0.8rem;
  color: var(--color-muted);
}

.stars {
  color: var(--color-gold);
  font-size: 0.85rem;
  margin-bottom: 12px;
}

/* 12. RESERVATION CTA BANNER
    ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-surface-2) 100%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(201,168,76,0.08) 0%, transparent 70%);
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner .label {
  display: block;
  margin-bottom: 12px;
}

.cta-banner h2 {
  margin-bottom: 16px;
}

.cta-banner p {
  max-width: 480px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
}

/* 13. FOOTER — Split Layout
    ============================================================ */
.lc-footer {
  background: #f5f1e8;
  border-top: 1px solid #ddd4be;
  font-family: var(--font-sans);
}

.lc-footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 60px 24px 40px;
  display: grid;
  grid-template-columns: 1fr 1px 1.8fr;
  gap: 0 56px;
  align-items: start;
}

/* ── Left: Brand ── */
.lc-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.lc-footer-logo {
  display: inline-block;
  transition: opacity .2s;
}
.lc-footer-logo:hover { opacity: .8; }
.lc-footer-logo img {
  height: 72px;
  width: auto;
  aspect-ratio: 1055/990;
  object-fit: contain;
  display: block;
}

.lc-footer-social {
  display: flex;
  gap: 10px;
}

.lc-social-icon {
  width: 40px;
  height: 40px;
  border: 1.5px solid #d0c8b4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9a8e78;
  text-decoration: none;
  transition: border-color .25s, color .25s, background .25s, transform .25s;
}
.lc-social-icon:hover {
  border-color: #8B6914;
  color: #8B6914;
  background: rgba(139,105,20,.07);
  transform: translateY(-2px);
}
.lc-social-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: filter .25s, opacity .25s;
}
.lc-social-icon:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.lc-footer-website {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 500;
  color: #8B6914;
  text-decoration: none;
  letter-spacing: .02em;
  transition: opacity .2s;
}
.lc-footer-website:hover { opacity: .7; text-decoration: underline; }

.lc-footer-copy {
  font-size: clamp(.8rem, 2.3vw, .85rem);
  color: #a09580;
  line-height: 1.7;
}

/* ── Vertical divider ── */
.lc-footer-vdivider {
  width: 1px;
  background: #ddd4be;
  align-self: stretch;
  min-height: 220px;
}

/* ── Right: Locations + Hours ── */
.lc-footer-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lc-locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.lc-location {
  background: #ffffff;
  border: 1px solid #ddd4be;
  border-radius: 10px;
  padding: 18px 16px;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.lc-location:hover {
  border-color: #8B6914;
  box-shadow: 0 6px 24px rgba(139,105,20,.1);
  transform: translateY(-3px);
}

.lc-location-name {
  font-family: var(--font-serif);
  font-size: .88rem;
  font-weight: 600;
  color: #2a1f0a;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ede9df;
  line-height: 1.3;
}

.lc-location-row {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin-bottom: 7px;
}
.lc-location-row:last-child { margin-bottom: 0; }

.lc-loc-icon {
  flex-shrink: 0;
  color: #8B6914;
  margin-top: 1px;
}

.lc-location-row span,
.lc-location-row a {
  font-size: .76rem;
  color: #7a6e58;
  line-height: 1.45;
  text-decoration: none;
}
.lc-location-row a {
  color: #8B6914;
  font-weight: 500;
  transition: opacity .2s;
}
.lc-location-row a:hover { opacity: .75; }

/* Hours bar */
.lc-hours-bar {
  display: flex;
  align-items: stretch;
  background: #ffffff;
  border: 1px solid #ddd4be;
  border-radius: 10px;
  overflow: hidden;
}

.lc-hours-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 14px 18px;
}
.lc-hours-item + .lc-hours-item {
  border-left: 1px solid #ede9df;
}

.lc-hours-icon { flex-shrink: 0; }

.lc-hours-item span {
  font-size: .78rem;
  color: #7a6e58;
  line-height: 1.4;
}
.lc-hours-item.closed span { color: #b04030; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .lc-footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 24px 36px;
  }
  .lc-footer-vdivider {
    min-height: 0;
    height: 1px;
    width: 100%;
    align-self: auto;
  }
}

@media (max-width: 640px) {
  .lc-locations-grid { grid-template-columns: 1fr 1fr; }
  .lc-hours-bar {
    flex-direction: column;
  }
  .lc-hours-item + .lc-hours-item {
    border-left: none;
    border-top: 1px solid #ede9df;
  }
}

@media (max-width: 420px) {
  .lc-locations-grid { grid-template-columns: 1fr; }
}

/* 14. MENU PAGE
    ============================================================ */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.tab-btn {
  min-height: 44px;
  padding: 12px 28px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  border: 1.5px solid var(--color-border);
  border-radius: 40px;
  background: transparent;
  transition: all var(--transition);
}

.tab-btn:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.tab-btn.active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: #0d0d0d;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: panelSlideIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes panelSlideIn {
  from { opacity: 0; transform: translateY(18px) scale(0.99); }
  to   { opacity: 1; transform: translateY(0)   scale(1);    }
}

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

.menu-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

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

.menu-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.menu-card-img-ph {
  width: 100%;
  height: 200px;
  background: var(--color-surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.menu-card-body {
  padding: 20px;
}

.menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
  gap: 8px;
}

.menu-card-header h4 {
  font-size: 1.05rem;
}

.menu-price {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--color-gold);
  font-weight: 600;
  white-space: nowrap;
}

.menu-card-body p {
  font-size: 0.85rem;
  margin: 0;
}

.badge-special {
  display: inline-block;
  background: var(--color-red);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  margin-bottom: 6px;
}

/* 15. ABOUT PAGE
    ============================================================ */
.story-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 4px;
}

.story-img-ph {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.chef-section {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.chef-section .container {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: center;
}

.chef-portrait {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--color-gold-dim);
}

.chef-portrait-ph {
  width: 100%;
  aspect-ratio: 1;
  background: var(--color-surface-2);
  border: 3px solid var(--color-gold-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.chef-info .label {
  display: block;
  margin-bottom: 8px;
}

.chef-info h3 {
  font-size: 2rem;
  margin-bottom: 6px;
}

.chef-title {
  color: var(--color-gold);
  font-size: 0.9rem;
  margin-bottom: 20px;
  font-style: italic;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 40px;
  max-width: 760px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
}

.timeline-item {
  position: relative;
  margin-bottom: 48px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--color-gold);
  background: var(--color-bg);
}

.timeline-year {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: 4px;
}

.timeline-item h4 {
  margin-bottom: 8px;
}

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

.value-card {
  text-align: center;
  padding: 40px 32px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  transition: border-color var(--transition), transform var(--transition);
}

.value-card:hover {
  border-color: var(--color-gold-dim);
  transform: translateY(-4px);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.value-card h4 {
  margin-bottom: 12px;
}

/* 16. GALLERY PAGE
    ============================================================ */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  border: 1.5px solid var(--color-border);
  border-radius: 40px;
  background: transparent;
  transition: all var(--transition);
}

.filter-btn:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.filter-btn.active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: #0d0d0d;
}

.gallery-grid {
  columns: 3;
  column-gap: 16px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  opacity: 0;
  transform: translateY(18px);
  animation: galleryFadeIn 0.55s ease forwards;
}

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

.gallery-item:nth-child(1)  { animation-delay: 0.05s; }
.gallery-item:nth-child(2)  { animation-delay: 0.12s; }
.gallery-item:nth-child(3)  { animation-delay: 0.19s; }
.gallery-item:nth-child(4)  { animation-delay: 0.26s; }
.gallery-item:nth-child(5)  { animation-delay: 0.33s; }
.gallery-item:nth-child(6)  { animation-delay: 0.40s; }
.gallery-item:nth-child(7)  { animation-delay: 0.47s; }
.gallery-item:nth-child(8)  { animation-delay: 0.54s; }
.gallery-item:nth-child(9)  { animation-delay: 0.60s; }
.gallery-item:nth-child(10) { animation-delay: 0.66s; }
.gallery-item:nth-child(11) { animation-delay: 0.72s; }
.gallery-item:nth-child(12) { animation-delay: 0.78s; }
.gallery-item:nth-child(n+13) { animation-delay: 0.82s; }

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(201,168,76,0.2);
  opacity: 0;
  transition: opacity var(--transition);
}

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

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item.hidden {
  display: none;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

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

.lightbox-inner {
  position: relative;
  max-width: 900px;
  max-height: 85vh;
  width: 90vw;
}

.lightbox-img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.lightbox-caption {
  text-align: center;
  color: var(--color-muted);
  font-size: 0.85rem;
  margin-top: 12px;
}

/* 17. CONTACT PAGE
    ============================================================ */
.contact-section .container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-detail h4 {
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.contact-detail p {
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

.hours-table {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 1px solid var(--color-border);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row span:first-child {
  font-size: 0.9rem;
  color: var(--color-text);
}

.hours-row span:last-child {
  font-size: 0.85rem;
  color: var(--color-gold);
}

.hours-row.today span:first-child {
  color: var(--color-gold);
  font-weight: 600;
}

/* Contact form */
.contact-form-wrap {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 40px;
}

.contact-form-wrap h3 {
  margin-bottom: 8px;
}

.contact-form-wrap > p {
  margin-bottom: 32px;
  font-size: 0.9rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Date field: half-width only */
.form-row--date {
  grid-template-columns: 1fr;
  max-width: 50%;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--color-text);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group select option {
  background: var(--color-surface);
}

/* ── Location Picker ─────────────────────────────────────── */
.loc-picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.loc-option {
  cursor: pointer;
}

.loc-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.loc-option-inner {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 14px;
  background: var(--color-surface-2);
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  transition: border-color .15s, background .15s;
  cursor: pointer;
  min-height: 56px;
  justify-content: center;
}

.loc-option:hover .loc-option-inner {
  border-color: var(--color-gold);
}

.loc-option input:checked + .loc-option-inner {
  border-color: var(--color-gold);
  background: rgba(154,109,24,.06);
}

.loc-option-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-cream);
  line-height: 1;
}

.loc-option-addr {
  font-size: 0.72rem;
  color: var(--color-muted);
  line-height: 1.3;
}

@media (max-width: 480px) {
  .loc-picker { grid-template-columns: 1fr; gap: 6px; }
  .loc-option-inner { flex-direction: row; align-items: center; gap: 8px; min-height: 48px; }
}

/* ── Time Picker ─────────────────────────────────────────── */
.time-picker {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}

.time-slot {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 9px 4px;
  font-size: 0.82rem;
  font-family: inherit;
  color: var(--color-text);
  cursor: pointer;
  transition: border-color .15s, background .15s, color .15s, transform .15s;
  text-align: center;
  line-height: 1;
}

.time-slot:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-1px);
}

.time-slot.selected {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: #fff;
  font-weight: 700;
  transform: translateY(-1px);
}

/* ── Guest Stepper ───────────────────────────────────────── */
.guest-stepper {
  display: flex;
  align-items: center;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  height: 52px;
  transition: border-color .15s;
}

.guest-stepper:focus-within {
  border-color: var(--color-gold);
}

.stepper-btn {
  background: transparent;
  border: none;
  width: 56px;
  height: 100%;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--color-gold);
  cursor: pointer;
  transition: background .15s;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stepper-btn:hover {
  background: rgba(139, 105, 20, .1);
}

.stepper-btn:disabled {
  color: var(--color-muted);
  cursor: default;
}

.stepper-btn:disabled:hover {
  background: transparent;
}

.stepper-display {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  user-select: none;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
}

.stepper-num {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
}

.stepper-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--color-muted);
}

.guests-note {
  font-size: 0.75rem;
  color: var(--color-muted);
  margin-top: 7px;
  display: none;
  font-style: italic;
}

.guests-note.visible {
  display: block;
}

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Map placeholder */
.map-section {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}

.map-placeholder {
  width: 100%;
  height: 400px;
  background: var(--color-surface-2);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.map-pin {
  font-size: 3rem;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.map-address {
  text-align: center;
  position: relative;
  z-index: 1;
}

.map-address h4 {
  margin-bottom: 4px;
}

.map-address p {
  font-size: 0.9rem;
  margin: 0;
}

/* 18. RESERVATION MODAL
    ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

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

.modal {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform var(--transition);
}

.modal-overlay.open .modal {
  transform: translateY(0);
}

.modal-header {
  padding: 28px 32px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.modal-header h3 {
  font-size: 1.6rem;
}

.modal-close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  color: var(--color-muted);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}

.modal-close:hover {
  border-color: var(--color-red);
  color: var(--color-red);
}

.modal-body {
  padding: 8px 32px 32px;
}

.modal-body > p {
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.modal-body .form-submit {
  margin-top: 8px;
}

/* 19. SCROLL REVEAL
    ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* 20. MOBILE RESPONSIVE
    ============================================================ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

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

  .chef-section .container {
    grid-template-columns: 260px 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  :root { --nav-height: 80px; }

  .section { padding: 72px 0; }

  /* Logo size handled by clamp() in base styles */

  .nav-links,
  .nav-reserve {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Social icons: 44px touch targets */
  .lc-social-icon { width: 44px; height: 44px; }

  /* Footer locations: 2 col on tablet, padding 20px */
  .lc-locations-grid { grid-template-columns: 1fr 1fr; }
  .lc-location { padding: 20px; }

  /* Buttons: min 48px */
  .btn { min-height: 48px; }

  /* Form inputs: 16px prevents iOS auto-zoom */
  .form-group input,
  .form-group textarea,
  .form-group select { font-size: 16px; min-height: 48px; }

  /* Time picker: 4 col stays fine on tablet, keep it */
  .time-slot { padding: 10px 4px; font-size: 0.8rem; }

  /* Guest stepper: taller touch target */
  .guest-stepper { height: 56px; }
  .stepper-btn { width: 60px; font-size: 1.6rem; }

  /* Spacing between elements: 24px */
  .lc-footer-brand { gap: 24px; }
  .lc-footer-right { gap: 24px; }

  /* Hide location blocks + divider on mobile */
  .lc-locations-grid,
  .lc-footer-vdivider { display: none; }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .features .container {
    grid-template-columns: 1fr;
  }

  .feature-item {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }

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

  .about-teaser .container,
  .story-section .container,
  .chef-section .container,
  .contact-section .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .chef-section .container {
    text-align: center;
  }

  .chef-portrait-ph {
    width: 220px;
    margin: 0 auto;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .gallery-grid {
    columns: 2;
  }

  .stats-row {
    gap: 24px;
    flex-wrap: wrap;
  }

  .contact-form-wrap {
    padding: 28px 20px;
  }

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

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .menu-tabs {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 0 8px;
    margin-bottom: 32px;
  }
  .menu-tabs .tab-btn {
    flex: 0 0 auto;
    padding: 10px 14px;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
  }

  .modal-header,
  .modal-body {
    padding-left: 24px;
    padding-right: 24px;
  }

  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }

  /* Hide "Scroll" indicator on mobile — confusing on touch */
  .hero-scroll { display: none; }
}

/* ── iPhone SE and small phones (375px) ── */
@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }

  /* Date row: full width on mobile */
  .form-row--date { max-width: 100%; }

  /* Base font floor — no zoom needed */
  body { font-size: 16px; }
  p, li, span, label, input, textarea, select { font-size: 16px; }

  .gallery-grid { columns: 1; }
  .menu-grid { grid-template-columns: 1fr; }
  .timeline { padding-left: 28px; }

  /* ── Navbar: logo cap on tiny screens ── */
  :root { --nav-height: 72px; }
  .navbar .container { padding: 0 16px; }

  /* ── Buttons: min 48px tall, full width on mobile ── */
  .btn {
    min-height: 48px;
    padding: 14px 24px;
    font-size: 0.85rem;
  }
  .btn-primary, .btn-outline { width: 100%; text-align: center; justify-content: center; }

  /* ── Social icons: 44×44px tap targets ── */
  .lc-social-icon {
    width: 44px;
    height: 44px;
  }

  /* ── Footer: single column, comfortable spacing ── */
  .lc-footer-inner {
    padding: 40px 20px 28px;
    gap: 28px;
  }
  .lc-footer-brand { gap: 20px; }
  .lc-footer-social { gap: 12px; }

  /* ── Location cards: full width, generous padding ── */
  .lc-locations-grid { grid-template-columns: 1fr; gap: 12px; }
  .lc-location { padding: 20px 18px; }
  .lc-location-name { font-size: 1rem; }
  .lc-location-row span,
  .lc-location-row a { font-size: 0.9rem; }

  /* ── Hours bar: stack vertically ── */
  .lc-hours-bar { flex-direction: column; }
  .lc-hours-item { padding: 14px 18px; }
  .lc-hours-item + .lc-hours-item { border-left: none; border-top: 1px solid #ede9df; }
  .lc-hours-item span { font-size: 0.9rem; }

  /* ── Section padding tighter ── */
  .section { padding: 56px 0; }
  .container { padding: 0 20px; }

  /* ── Menu tabs: smaller padding, fit on 2 rows ── */
  .tab-btn {
    padding: 10px 12px;
    font-size: 0.68rem;
    min-height: 44px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .m-item { padding: 14px 0; }

  /* ── Values grid: single column, spacing ── */
  .values-grid { gap: 16px; }
  .value-card { padding: 28px 20px; }

  /* ── Contact form ── */
  .contact-form-wrap { padding: 24px 16px; }
  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 16px; /* prevents iOS zoom on focus */
    padding: 14px 16px;
    min-height: 48px;
  }

  /* ── Time picker: 4 col → 4 col still works, just smaller ── */
  .time-picker { gap: 5px; }
  .time-slot { padding: 8px 2px; font-size: 0.75rem; border-radius: 6px; }

  /* ── Guest stepper: comfortable tap targets ── */
  .guest-stepper { height: 60px; }
  .stepper-btn { width: 64px; min-height: 60px; font-size: 1.8rem; }
  .stepper-num { font-size: 1.4rem; }
  .stepper-label { font-size: 0.65rem; }

  /* ── Modal ── */
  .modal-header, .modal-body { padding-left: 20px; padding-right: 20px; }
  .modal-close { width: 44px; height: 44px; }

  /* ── Page hero ── */
  .page-hero { padding: calc(var(--nav-height) + 48px) 0 48px; }
  .page-hero h1 { font-size: 2rem; }

  /* ── Mobile nav overlay links ── */
  .mobile-nav a { font-size: 1.8rem; }
  .mobile-nav gap: { gap: 28px; }
}


/* ════════════════════════════════════════════════════════
   MENU INTERACTIVE ANIMATIONS
════════════════════════════════════════════════════════ */

/* ── Tab button: ripple container ─── */
.tab-btn {
  position: relative;
  overflow: hidden;
}

/* Ripple element injected by JS */
.tab-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.35);
  transform: scale(0);
  animation: tabRippleAnim 0.55s linear forwards;
  pointer-events: none;
}
@keyframes tabRippleAnim {
  to { transform: scale(4); opacity: 0; }
}

/* ── Active tab: shimmer sweep ─── */
.tab-btn.active::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,255,255,0.28) 50%,
    transparent 100%);
  animation: tabShimmer 2.8s ease 0.4s infinite;
  pointer-events: none;
}
@keyframes tabShimmer {
  0%        { left: -100%; }
  55%, 100% { left: 160%;  }
}

/* ── Staggered item entrance ─── */
@keyframes itemSlideIn {
  from { opacity: 0; transform: translateX(-14px); }
  to   { opacity: 1; transform: translateX(0);     }
}
@keyframes sectionFadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0);    }
}

.tab-panel.tab-animating .m-section-header {
  opacity: 0;
  animation: sectionFadeUp 0.45s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: calc(var(--section-i, 0) * 0.1s + 0.05s);
}

.tab-panel.tab-animating .m-item {
  opacity: 0;
  animation: itemSlideIn 0.4s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: calc(var(--item-i, 0) * 0.03s + 0.1s);
}

.tab-panel.tab-animating .bento-includes {
  opacity: 0;
  animation: sectionFadeUp 0.45s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: 0.08s;
}

/* ── Menu item hover interactions ─── */
.m-item {
  position: relative;
  border-radius: 6px;
  transition: background 0.22s ease, padding-left 0.22s ease;
}

/* Gold accent bar on left */
.m-item::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 50%;
  width: 3px;
  height: 0;
  background: var(--color-gold);
  border-radius: 3px;
  transform: translateY(-50%);
  transition: height 0.22s ease, opacity 0.22s ease;
  opacity: 0;
}
.m-item:hover::before {
  height: 55%;
  opacity: 1;
}
.m-item:hover {
  background: rgba(201, 168, 76, 0.045);
  padding-left: 8px;
}

/* Price glow on item hover */

/* Badge pulse on hover */
.m-item:hover .m-badge {
  animation: badgeBounce 0.35s ease;
}
@keyframes badgeBounce {
  0%, 100% { transform: scale(1);    }
  45%       { transform: scale(1.15) rotate(-3deg); }
  70%       { transform: scale(0.97) rotate(1deg);  }
}

/* Section header animated underline */
.m-section-header {
  position: relative;
}
.m-section-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold) 0%, transparent 100%);
  transition: width 0.65s cubic-bezier(0.22,1,0.36,1);
  border-radius: 2px;
}
.tab-panel.tab-animating .m-section-header::after {
  width: 100%;
  transition-delay: calc(var(--section-i, 0) * 0.1s + 0.35s);
}

/* Extras card hover */
.m-extras {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.m-extras:hover {
  border-color: rgba(201, 168, 76, 0.35);
  box-shadow: 0 0 24px rgba(201, 168, 76, 0.07);
}

.m-extra-item {
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.m-extra-item:hover {
  color: var(--color-cream);
  padding-left: 6px;
}

/* ── Item number subtle pulse on hover ─── */
.m-item:hover .m-item-num {
  color: var(--color-gold);
  transition: color 0.2s ease;
}

/* ── Click feedback on menu item (active/press) ─── */
.m-item:active {
  background: rgba(201, 168, 76, 0.08);
  transform: scale(0.995);
  transition: transform 0.1s ease, background 0.1s ease;
}
