/* ============================================
   NOOR TANDOORI — Cuisine Pakistanaise, Bruxelles
   ============================================ */

:root {
  --green-dark: #062018;
  --green: #0c3d2b;
  --green-mid: #14523a;
  --green-light: #1f7350;
  --gold: #d4af37;
  --gold-light: #f3d986;
  --gold-deep: #9c7a24;
  --cream: #faf4e6;
  --cream-2: #f2e9d4;
  --maroon: #7a1f2b;
  --ink: #201a10;
  --shadow: 0 20px 45px -20px rgba(6, 32, 24, 0.45);
  --radius: 18px;
  --ff-display: "Amiri", "Playfair Display", serif;
  --ff-head: "Playfair Display", serif;
  --ff-body: "Poppins", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
}

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

.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-body);
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 14px;
}
.eyebrow::before, .eyebrow::after {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold-deep);
}

h1, h2, h3, h4 { font-family: var(--ff-head); font-weight: 700; color: var(--green-dark); }

.section { padding: 100px 0; position: relative; }
.section--tight { padding: 70px 0; }
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 18px;
}
.section-sub {
  max-width: 620px;
  color: #4a4436;
  font-size: 1.02rem;
}
.section-head { text-align: center; margin-bottom: 56px; }
.section-head .section-sub { margin: 0 auto; }

/* ---------- Gold ornament helpers ---------- */
.ornament { position: absolute; pointer-events: none; opacity: 0.9; z-index: 1; }
.ornament svg { width: 100%; height: 100%; }
.spin-slow { animation: spin 40s linear infinite; }
.spin-slow-rev { animation: spin 55s linear infinite reverse; }
.float-y { animation: floatY 6s ease-in-out infinite; }
.float-y-delay { animation: floatY 6s ease-in-out infinite; animation-delay: 1.5s; }
.twinkle { animation: twinkle 3.2s ease-in-out infinite; }

@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
@keyframes twinkle { 0%, 100% { opacity: 0.35; transform: scale(0.9); } 50% { opacity: 1; transform: scale(1.1); } }
@keyframes shimmer { 0% { background-position: -300px 0; } 100% { background-position: 300px 0; } }
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,55,0.45); }
  50% { box-shadow: 0 0 0 10px rgba(212,175,55,0); }
}

/* ---------- Arch divider ---------- */
.arch-divider {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.arch-divider svg { height: 40px; width: auto; }

/* ============ HEADER / NAV ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.35s ease;
  background: linear-gradient(to bottom, rgba(6,32,24,0.75), rgba(6,32,24,0));
}
.site-header.scrolled {
  padding: 10px 0;
  background: rgba(6, 32, 24, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px -12px rgba(0,0,0,0.5);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
}
.brand-mark { width: 42px; height: 42px; color: var(--gold); flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text .name { font-family: var(--ff-display); font-size: 1.35rem; color: var(--gold-light); letter-spacing: 0.5px; }
.brand-text .tag { font-size: 0.62rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--cream-2); opacity: 0.8; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}
.nav-links a {
  color: var(--cream-2);
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  padding: 6px 2px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0%; height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold-light); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-deep));
  color: var(--green-dark);
  box-shadow: 0 10px 25px -8px rgba(212,175,55,0.6);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 32px -10px rgba(212,175,55,0.75); }
.btn-outline {
  border: 1.5px solid var(--gold);
  color: var(--gold-light);
}
.btn-outline:hover { background: rgba(212,175,55,0.12); transform: translateY(-3px); }
.btn-dark {
  background: var(--green-dark);
  color: var(--gold-light);
}
.btn-dark:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.hamburger {
  display: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.5);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  width: 20px; height: 2px;
  background: var(--gold-light);
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(6,20,15,0.97);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: all 0.35s ease;
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu a {
  font-family: var(--ff-head);
  font-size: 1.7rem;
  color: var(--cream);
}
.mobile-menu a:hover { color: var(--gold-light); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--cream);
  overflow: hidden;
  background: var(--green-dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: scale(1.08);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(212,175,55,0.18), transparent 55%),
    linear-gradient(180deg, rgba(6,32,24,0.55) 0%, rgba(6,20,15,0.88) 65%, rgba(6,20,15,0.98) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  text-align: center;
  padding-top: 90px;
}
.hero-content .eyebrow { justify-content: center; color: var(--gold-light); }
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 9vw, 6.4rem);
  color: var(--cream);
  text-shadow: 0 4px 40px rgba(212,175,55,0.35);
  letter-spacing: 1px;
  opacity: 0;
  animation: heroIn 1.1s cubic-bezier(.2,.8,.2,1) 0.15s forwards;
}
.hero-title span { color: var(--gold-light); }
.hero-subtitle {
  max-width: 620px;
  margin: 22px auto 40px;
  font-size: 1.08rem;
  color: var(--cream-2);
  opacity: 0;
  animation: heroIn 1.1s cubic-bezier(.2,.8,.2,1) 0.4s forwards;
}
.hero-actions {
  display: flex; gap: 18px; justify-content: center; flex-wrap: wrap;
  opacity: 0;
  animation: heroIn 1.1s cubic-bezier(.2,.8,.2,1) 0.6s forwards;
}
@keyframes heroIn { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }

.hero-ornaments .ornament { color: var(--gold); }
.hero-scroll {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--gold-light);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.85;
}
.hero-scroll .line { width: 1px; height: 34px; background: linear-gradient(var(--gold), transparent); animation: floatY 2.4s ease-in-out infinite; }

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1.in { transition-delay: 0.12s; }
.reveal-delay-2.in { transition-delay: 0.24s; }
.reveal-delay-3.in { transition-delay: 0.36s; }
.reveal-delay-4.in { transition-delay: 0.48s; }

/* ============ ABOUT ============ */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-media { position: relative; }
.about-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 6px solid var(--cream);
  outline: 1px solid rgba(212,175,55,0.4);
}
.about-frame img { transition: transform 0.6s ease; }
.about-frame:hover img { transform: scale(1.06); }
.about-badge {
  position: absolute;
  bottom: -26px; right: -26px;
  background: var(--green-dark);
  color: var(--gold-light);
  border: 2px solid var(--gold);
  border-radius: 50%;
  width: 118px; height: 118px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-family: var(--ff-head);
  font-size: 0.85rem;
  line-height: 1.2;
  box-shadow: var(--shadow);
  animation: floatY 5s ease-in-out infinite;
}
.about-badge b { display: block; font-size: 1.5rem; color: var(--gold); }

.about-text p { color: #4a4436; margin-bottom: 16px; }
.about-signature {
  margin-top: 26px;
  font-family: var(--ff-display);
  font-size: 1.5rem;
  color: var(--green);
}

/* ============ FEATURES ============ */
.features {
  background: var(--green-dark);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.feature-card {
  text-align: center;
  padding: 38px 22px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,175,55,0.25);
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}
.feature-card:hover {
  transform: translateY(-10px);
  background: rgba(212,175,55,0.08);
  border-color: var(--gold);
}
.feature-icon {
  width: 62px; height: 62px;
  margin: 0 auto 18px;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.4s ease;
}
.feature-card:hover .feature-icon { transform: rotate(12deg) scale(1.08); }
.feature-icon svg { width: 30px; height: 30px; }
.feature-card h4 { color: var(--gold-light); font-size: 1.05rem; margin-bottom: 8px; }
.feature-card p { font-size: 0.88rem; color: var(--cream-2); opacity: 0.85; }

/* ============ SPECIALTIES CAROUSEL ============ */
.specialties { background: var(--cream); }
.spec-scroll {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  padding: 10px 4px 30px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
.spec-scroll::-webkit-scrollbar { height: 8px; }
.spec-scroll::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }
.spec-card {
  flex: 0 0 auto;
  width: 290px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(212,175,55,0.25);
  transition: transform 0.4s ease;
}
.spec-card:hover { transform: translateY(-8px); }
.spec-media { position: relative; height: 210px; overflow: hidden; }
.spec-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.spec-card:hover .spec-media img { transform: scale(1.12); }
.spec-price {
  position: absolute; top: 14px; right: 14px;
  background: var(--gold);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 6px 14px -6px rgba(0,0,0,0.4);
}
.spec-body { padding: 20px 22px 24px; }
.spec-body h4 { font-size: 1.12rem; margin-bottom: 6px; }
.spec-body p { font-size: 0.86rem; color: #6b6455; }
.carousel-controls { display: flex; gap: 14px; justify-content: center; margin-top: 6px; }
.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-deep);
  color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
}
.carousel-btn:hover { background: var(--gold); transform: scale(1.08); }

/* ============ GALLERY TEASER ============ */
.gallery-teaser { background: var(--cream-2); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 130px;
  gap: 14px;
}
.gallery-grid a { grid-column: span 2; grid-row: span 1; }
.gallery-grid a:nth-child(1), .gallery-grid a:nth-child(4) { grid-row: span 2; }
.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.15); }
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(6,32,24,0.55));
  opacity: 0; transition: opacity 0.3s ease;
}
.gallery-item:hover::after { opacity: 1; }

/* ============ LOCATION / CONTACT ============ */
.location { background: var(--green-dark); color: var(--cream); position: relative; overflow: hidden; }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}
.info-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: var(--radius);
  padding: 40px;
}
.info-row { display: flex; gap: 18px; margin-bottom: 26px; }
.info-row:last-child { margin-bottom: 0; }
.info-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.info-icon svg { width: 22px; height: 22px; }
.info-row h4 { color: var(--gold-light); font-size: 1rem; margin-bottom: 4px; }
.info-row p, .info-row a { color: var(--cream-2); font-size: 0.92rem; }
.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.3);
  min-height: 320px;
  filter: grayscale(0.3) sepia(0.15);
}
.map-frame iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--green-dark);
  color: var(--cream-2);
  position: relative;
  padding-top: 70px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(212,175,55,0.2);
}
.footer-brand .brand-text .name { font-size: 1.5rem; }
.footer-brand p { margin-top: 16px; font-size: 0.88rem; color: var(--cream-2); opacity: 0.75; max-width: 300px; }
.footer-col h5 { color: var(--gold-light); font-family: var(--ff-head); font-size: 1rem; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { font-size: 0.9rem; opacity: 0.85; transition: opacity 0.25s ease, color 0.25s ease; }
.footer-col a:hover { opacity: 1; color: var(--gold-light); }
.social-row { display: flex; gap: 12px; margin-top: 18px; }
.social-row a {
  width: 40px; height: 40px;
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
}
.social-row a:hover { background: var(--gold); color: var(--green-dark); transform: translateY(-3px); }
.social-row svg { width: 18px; height: 18px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 26px 0;
  font-size: 0.8rem;
  opacity: 0.7;
  flex-wrap: wrap;
  gap: 10px;
}

/* ============ MENU PAGE ============ */
.menu-hero {
  position: relative;
  padding: 170px 0 90px;
  background: var(--green-dark);
  color: var(--cream);
  text-align: center;
  overflow: hidden;
}
.menu-hero .section-sub { margin: 0 auto; color: var(--cream-2); }

.menu-filters {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(250, 244, 230, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(212,175,55,0.35);
  padding: 18px 0;
}
.filters-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}
.filters-scroll::-webkit-scrollbar { display: none; }
.filter-btn {
  flex: 0 0 auto;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1.5px solid rgba(12,61,43,0.25);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
  transition: all 0.3s ease;
  white-space: nowrap;
}
.filter-btn:hover { border-color: var(--gold); background: rgba(212,175,55,0.12); }
.filter-btn.active {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--gold-light);
  box-shadow: 0 8px 18px -8px rgba(12,61,43,0.5);
}

.menu-category { padding: 70px 0 20px; scroll-margin-top: 100px; }
.category-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 40px;
}
.category-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); white-space: nowrap; }
.category-head .rule { flex: 1; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }
.category-price-note { font-size: 0.82rem; color: var(--gold-deep); font-weight: 600; white-space: nowrap; }

.dish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.dish-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.22);
  box-shadow: 0 14px 30px -18px rgba(12,61,43,0.35);
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.dish-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.dish-media { position: relative; height: 220px; overflow: hidden; }
.dish-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.dish-card:hover .dish-media img { transform: scale(1.14) rotate(0.5deg); }
.dish-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(6,20,15,0.65));
  opacity: 0; transition: opacity 0.35s ease;
}
.dish-card:hover .dish-media::after { opacity: 1; }
.dish-zoom-hint {
  position: absolute; bottom: 12px; right: 12px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(250,244,230,0.9);
  color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0.7);
  transition: all 0.3s ease;
}
.dish-card:hover .dish-zoom-hint { opacity: 1; transform: scale(1); }
.dish-zoom-hint svg { width: 16px; height: 16px; }
.dish-body { padding: 20px 22px 24px; }
.dish-top { display: flex; justify-content: space-between; gap: 10px; align-items: flex-start; margin-bottom: 8px; }
.dish-top h3 { font-size: 1.12rem; line-height: 1.3; }
.dish-price {
  font-family: var(--ff-head);
  font-weight: 700;
  color: var(--gold-deep);
  white-space: nowrap;
  font-size: 1.05rem;
}
.dish-desc { font-size: 0.87rem; color: #6b6455; }
.dish-tags { display: flex; gap: 8px; margin-top: 12px; }
.dish-tag {
  font-size: 0.68rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
  font-weight: 600;
}
.tag-spicy { background: rgba(122,31,43,0.12); color: var(--maroon); }
.tag-veg { background: rgba(31,115,80,0.14); color: var(--green-light); }
.tag-pop { background: rgba(212,175,55,0.18); color: var(--gold-deep); }

.no-results { text-align: center; padding: 60px 0; color: #8a8271; display: none; }
.no-results.show { display: block; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(6,20,15,0.92);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: 30px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-inner {
  background: var(--cream);
  border-radius: 20px;
  overflow: hidden;
  max-width: 880px;
  width: 100%;
  max-height: 88vh;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  box-shadow: 0 40px 90px -20px rgba(0,0,0,0.6);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
  border: 1px solid rgba(212,175,55,0.4);
}
.lightbox.open .lightbox-inner { transform: scale(1) translateY(0); }
.lightbox-media { position: relative; overflow: hidden; background: #000; }
.lightbox-media img { width: 100%; height: 100%; object-fit: cover; }
.lightbox-info { padding: 38px; display: flex; flex-direction: column; }
.lightbox-info .eyebrow { margin-bottom: 12px; }
.lightbox-info h3 { font-size: 1.7rem; margin-bottom: 14px; }
.lightbox-info p { color: #58513f; font-size: 0.96rem; margin-bottom: 20px; }
.lightbox-price {
  margin-top: auto;
  font-family: var(--ff-head);
  font-size: 1.6rem;
  color: var(--gold-deep);
}
.lightbox-close {
  position: absolute; top: 22px; right: 22px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(250,244,230,0.15);
  border: 1px solid rgba(250,244,230,0.4);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
}
.lightbox-close:hover { background: var(--gold); color: var(--green-dark); transform: rotate(90deg); }

/* ---------- CTA banner (menu page bottom) ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--green-dark), var(--green));
  color: var(--cream);
  text-align: center;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { color: var(--cream); font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 16px; }
.cta-banner p { color: var(--cream-2); max-width: 520px; margin: 0 auto 30px; }
.cta-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 46px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .location-grid { grid-template-columns: 1fr; }
  .dish-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 110px; }
  .gallery-grid a:nth-child(5), .gallery-grid a:nth-child(6) { display: none; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-cta .btn-outline { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 640px) {
  .section { padding: 70px 0; }
  .about-badge { width: 96px; height: 96px; font-size: 0.72rem; right: -10px; bottom: -18px; }
  .features-grid { grid-template-columns: 1fr; }
  .dish-grid { grid-template-columns: 1fr; }
  .spec-card { width: 250px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid a:nth-child(3) { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .lightbox-inner { grid-template-columns: 1fr; max-height: 92vh; overflow-y: auto; }
  .lightbox-media { height: 240px; }
  .lightbox-info { padding: 28px; }
  .info-card { padding: 26px; }
  .category-head { flex-wrap: wrap; }
  .category-head .rule { order: 3; width: 100%; }
}
