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

:root {
  --cream:      #f5f0e8;
  --beige:      #ede5d5;
  --sand:       #d9c9b0;
  --gold:       #b8924a;
  --dark-gold:  #8a6a2e;
  --brown:      #5c3d1e;
  --dark-brown: #2e1a0e;
  --text:       #3a2810;
  --muted:      #7a6040;
  --white:      #fdfaf5;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 48px;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: padding 0.4s, background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
}

nav.scrolled {
  padding: 12px 48px;
  background: rgba(245,240,232,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(184,146,74,0.18);
}
.nav-toggle {
  display: none;
  border: 1px solid rgba(217,201,176,0.45);
  background: transparent;
  color: rgba(253,250,245,0.9);
  border-radius: 8px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  transition: border-color 0.4s, color 0.4s;
}
nav.scrolled .nav-toggle {
  border-color: rgba(184,146,74,0.3);
  color: var(--text);
}

.nav-logo {
  text-decoration: none;
  display: flex; align-items: center;
}
.nav-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s;
}
.nav-logo-img:hover { opacity: 0.75; }

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-family: 'Lato', sans-serif; font-weight: 300;
  font-size: 0.82rem; letter-spacing: 0.08em;
  color: rgba(253,250,245,0.88); text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--sand); }

nav.scrolled .nav-links a { color: var(--text); }
nav.scrolled .nav-links a:hover { color: var(--gold); }

.nav-hours {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 0.88rem; color: rgba(217,201,176,0.75);
  transition: color 0.4s;
}
nav.scrolled .nav-hours { color: var(--muted); }

/* ── NAV ADMIN LINK ── */
.nav-admin-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: rgba(253,250,245,0.35);
  border: 1px solid transparent;
  text-decoration: none;
  transition: color 0.3s, border-color 0.3s, background 0.3s;
  flex-shrink: 0;
}
.nav-admin-link:hover {
  color: var(--gold);
  border-color: rgba(184,146,74,0.4);
  background: rgba(184,146,74,0.08);
}
nav.scrolled .nav-admin-link {
  color: rgba(58,40,16,0.3);
}
nav.scrolled .nav-admin-link:hover {
  color: var(--gold);
  border-color: rgba(184,146,74,0.4);
  background: rgba(184,146,74,0.08);
}

/* ── HERO ── */
.hero {
  position: relative; height: 100vh; min-height: 640px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background-color: #2e1a0e;
  background:
    linear-gradient(to bottom, rgba(20,10,3,0.4) 0%, rgba(20,10,3,0.08) 45%, rgba(20,10,3,0.6) 100%),
    url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?w=1800&q=85') center/cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }

.hero-content { position: relative; z-index: 2; padding: 0 20px; }

.hero-logo-img {
  width: min(200px, 42vw);
  margin: 0 auto 24px;
  opacity: 0; animation: fadeUp 1s 0.3s ease forwards;
}
.hero-logo-img img {
  width: 100%; height: auto; object-fit: contain;
  filter: drop-shadow(0 2px 20px rgba(0,0,0,0.35));
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.8vw, 1.7rem);
  color: var(--sand); margin: 10px 0 16px;
  opacity: 0; animation: fadeUp 1s 0.55s ease forwards;
}
.hero-tagline em { font-style: italic; }

.hero-arabic {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: rgba(217,201,176,0.8); letter-spacing: 0.04em;
  margin-bottom: 8px;
  opacity: 0; animation: fadeUp 1s 0.85s ease forwards;
}

.hero-sub {
  font-family: 'Lato', sans-serif; font-weight: 300;
  font-size: 0.82rem; letter-spacing: 0.1em;
  color: rgba(253,250,245,0.65); margin-bottom: 36px;
  opacity: 0; animation: fadeUp 1s 0.95s ease forwards;
}
.hero-sub em { font-style: italic; font-family: 'Cormorant Garamond', serif; font-size: 1rem; }

.hero-btns { opacity: 0; animation: fadeUp 1s 1.1s ease forwards; }
.hero-btns {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.btn-primary {
  font-family: 'Cinzel', serif; font-size: 0.72rem;
  letter-spacing: 0.2em; padding: 14px 40px;
  border: 1px solid rgba(184,146,74,0.8);
  background: rgba(184,146,74,0.15);
  color: var(--sand); border-radius: 50px;
  text-decoration: none; backdrop-filter: blur(6px);
  transition: all 0.35s;
}
.btn-primary:hover {
  background: var(--gold); color: var(--white);
  border-color: var(--gold);
}
.btn-secondary {
  font-family: 'Cinzel', serif; font-size: 0.72rem;
  letter-spacing: 0.2em; padding: 14px 30px;
  border: 1px solid rgba(217,201,176,0.45);
  color: var(--beige);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(0,0,0,0.2);
}

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%); z-index: 2;
  opacity: 0; animation: fadeUp 1s 1.5s ease forwards;
}
.hero-scroll span {
  display: block; width: 1px; height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(217,201,176,0.6));
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50% { transform: scaleY(0.5); opacity: 1; }
}

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

/* ── SECTION SHARED ── */
.section-label {
  display: flex; align-items: center; gap: 16px;
  justify-content: center; margin-bottom: 10px;
}
.section-label::before, .section-label::after {
  content: ''; flex: 1; max-width: 70px;
  height: 1px; background: var(--sand);
}
.section-label span {
  font-family: 'Cinzel', serif; font-size: 0.72rem;
  letter-spacing: 0.38em; color: var(--muted); text-transform: uppercase;
}

/* ── MENU SECTION ── */
.menu-section { background: var(--beige); padding: 80px 0 80px; }

.menu-header { text-align: center; padding: 0 48px 40px; }
.menu-sub {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.05rem; color: var(--muted); margin-top: 6px;
}
.menu-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.menu-controls input,
.menu-controls select {
  border: 1px solid rgba(184,146,74,0.35);
  background: var(--white);
  color: var(--text);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 0.8rem;
  min-width: 180px;
}

/* Tabs — scrollable strip */
.menu-tabs-wrapper {
  overflow-x: auto; padding: 0 48px 32px;
  scrollbar-width: none;
}
.menu-tabs-wrapper::-webkit-scrollbar { display: none; }

.menu-tabs {
  display: flex; gap: 6px;
  width: max-content; margin: 0 auto;
}

.tab {
  font-family: 'Lato', sans-serif; font-size: 0.7rem;
  font-weight: 400; letter-spacing: 0.12em;
  white-space: nowrap; padding: 9px 22px;
  border: 1px solid var(--sand); border-radius: 50px;
  background: transparent; color: var(--muted);
  cursor: pointer; transition: all 0.25s;
}
.tab:hover:not(.active) { border-color: var(--gold); color: var(--gold); }
.tab.active { background: var(--gold); border-color: var(--gold); color: var(--white); }

/* ── TAB DIVIDERS ── */
.tab-divider {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 10px;
  flex-shrink: 0;
  position: relative;
  align-self: stretch;
}

.tab-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 12px;
  background: var(--sand);
  border-radius: 1px;
  transition: height 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.35s ease,
              box-shadow 0.35s ease,
              opacity 0.35s ease;
  opacity: 0.5;
}

/* Glow when a neighbouring tab is hovered */
.tab:hover ~ .tab-divider::before,
.tab-divider:has(+ .tab:hover)::before,
.tab.active ~ .tab-divider::before,
.tab-divider:has(+ .tab.active)::before {
  height: 20px;
  background: var(--gold);
  box-shadow: 0 0 6px rgba(184,146,74,0.6), 0 0 12px rgba(184,146,74,0.3);
  opacity: 1;
}

/* Menu grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px; padding: 0 48px;
  max-width: 1160px; margin: 0 auto;
  min-height: 200px;
}

.menu-card {
  background: var(--white);
  border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(184,146,74,0.12);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: cardIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* ── FLY IN — staggered from below with slight rotation ── */
@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.94) rotate(-1deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
  }
}

/* ── FLY OUT — cards scatter upward ── */
@keyframes cardOut {
  from {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
  }
  to {
    opacity: 0;
    transform: translateY(-32px) scale(0.92) rotate(1deg);
  }
}

.menu-card.flying-out {
  animation: cardOut 0.28s cubic-bezier(0.55, 0, 1, 0.45) both;
  pointer-events: none;
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(92,61,30,0.13);
}

.card-body { padding: 16px 18px 18px; }

.card-cat {
  font-family: 'Lato', sans-serif; font-weight: 300;
  font-size: 0.6rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 5px;
}

.card-name {
  font-family: 'Cinzel', serif; font-size: 0.78rem;
  font-weight: 400; letter-spacing: 0.1em;
  color: var(--dark-brown); margin-bottom: 7px;
  line-height: 1.35;
}

.card-desc {
  font-size: 0.73rem; color: var(--muted);
  line-height: 1.55; margin-bottom: 12px;
  min-height: 34px;
}

.card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 600; color: var(--gold);
}

/* Featured section styles moved to featured-spotlight.css */
@keyframes logoFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.92; }
  50% { transform: translateY(-5px) scale(1.03); opacity: 1; }
}
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes spinReverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

.mobile-menu {
  position: fixed;
  inset: 64px 16px auto 16px;
  background: rgba(245,240,232,0.97);
  border: 1px solid rgba(184,146,74,0.2);
  border-radius: 12px;
  z-index: 99;
  padding: 12px;
  display: none;
}
.mobile-menu a {
  display: block;
  padding: 10px 8px;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(184,146,74,0.15);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu.open { display: block; }

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(184,146,74,0.45);
  background: rgba(46,26,14,0.9);
  color: var(--beige);
  cursor: pointer;
  display: none;
  z-index: 101;
}
.back-top.show { display: block; }

/* ── ABOUT ── */
.about-section { background: var(--cream); padding: 90px 48px; }

.about-inner {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 70px; align-items: center;
}

.about-brand { text-align: center; }
.about-logo-mark { margin-bottom: 20px; }
.about-logo-img {
  width: 140px; height: auto; object-fit: contain;
}

.about-arabic-block {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; color: var(--muted);
  line-height: 1.9; direction: rtl; margin-bottom: 16px;
}

.about-est {
  font-family: 'Lato', sans-serif; font-weight: 300;
  font-size: 0.72rem; letter-spacing: 0.22em;
  color: var(--sand); text-transform: uppercase;
}

.about-content .eyebrow {
  font-family: 'Lato', sans-serif; font-weight: 300;
  font-size: 0.68rem; letter-spacing: 0.3em;
  color: var(--gold); text-transform: uppercase; margin-bottom: 14px;
}

.about-content h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 400;
  letter-spacing: 0.04em; color: var(--dark-brown);
  line-height: 1.2; margin-bottom: 22px;
}

.about-content p {
  font-size: 0.9rem; line-height: 1.85;
  color: var(--muted); margin-bottom: 16px;
}

.about-stats {
  display: flex; gap: 32px; margin-top: 30px;
  padding-top: 28px; border-top: 1px solid var(--sand);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: 'Cinzel', serif; font-size: 1.5rem;
  color: var(--dark-brown); letter-spacing: 0.05em;
}
.stat-label {
  font-family: 'Lato', sans-serif; font-weight: 300;
  font-size: 0.68rem; letter-spacing: 0.15em;
  color: var(--muted); text-transform: uppercase;
}

/* ── CONTACT ── */
.contact-section { background: var(--dark-brown); padding: 80px 48px; }

.contact-inner {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.8fr;
  gap: 60px; align-items: center;
}

.contact-brand { text-align: center; }
.contact-logo-img {
  width: 150px; height: auto; object-fit: contain;
  margin-bottom: 16px; display: block; margin-left: auto; margin-right: auto;
}
.contact-brand p {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 0.95rem; color: rgba(217,201,176,0.6);
}

.contact-links { display: flex; flex-direction: column; gap: 12px; }

.contact-link {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 20px;
  border: 1px solid rgba(217,201,176,0.15);
  border-radius: 10px; text-decoration: none;
  color: var(--sand);
  transition: all 0.3s;
}
.contact-link:hover {
  border-color: var(--gold);
  background: rgba(184,146,74,0.1);
}
.contact-link div { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.cl-platform {
  font-family: 'Cinzel', serif; font-size: 0.65rem;
  letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase;
}
.cl-handle {
  font-family: 'Lato', sans-serif; font-weight: 300;
  font-size: 0.82rem; color: rgba(217,201,176,0.75);
}
.cl-arrow {
  font-size: 1rem; color: rgba(217,201,176,0.4);
  transition: color 0.3s, transform 0.3s;
}
.contact-link:hover .cl-arrow {
  color: var(--gold); transform: translate(2px,-2px);
}

/* ── FOOTER ── */
footer {
  background: var(--dark-brown);
  border-top: 1px solid rgba(217,201,176,0.08);
  padding: 20px 48px;
  text-align: center;
}
footer p {
  font-family: 'Lato', sans-serif; font-weight: 300;
  font-size: 0.72rem; letter-spacing: 0.1em;
  color: rgba(217,201,176,0.35);
}

/* ══════════════════════════════════════════
   ATHAR — PAGE FLIP TRANSITION SYSTEM
══════════════════════════════════════════ */

.flip-stage {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
}

.flip-page {
  position: absolute;
  inset: 0;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  /* JS controls clip-path and transition inline */
}

.flip-front {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dark-brown) 0%, #1a0c05 55%, #0e0603 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Diagonal sheen on the sweeping edge */
.flip-front::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 80px;
  background: linear-gradient(to right, transparent, rgba(184,146,74,0.08), transparent);
  pointer-events: none;
}

.flip-logo {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: scale(0.88);
  /* transition controlled inline by JS */
}
.flip-logo img {
  width: 110px;
  height: auto;
  filter: drop-shadow(0 0 24px rgba(184,146,74,0.5));
}

/* ── SCROLL REVEAL CLASSES ── */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale,
.reveal-fade {
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  transition-duration: 0.9s;
}

.reveal-up    { opacity: 0; transform: translateY(50px); }
.reveal-left  { opacity: 0; transform: translateX(-55px); }
.reveal-right { opacity: 0; transform: translateX(55px); }
.reveal-scale { opacity: 0; transform: scale(0.92); }
.reveal-fade  { opacity: 0; }

.reveal-up.in-view,
.reveal-left.in-view,
.reveal-right.in-view,
.reveal-scale.in-view,
.reveal-fade.in-view {
  opacity: 1;
  transform: none;
}

/* Stagger delays */
.delay-1 { transition-delay: 0.10s; }
.delay-2 { transition-delay: 0.20s; }
.delay-3 { transition-delay: 0.30s; }
.delay-4 { transition-delay: 0.40s; }
.delay-5 { transition-delay: 0.50s; }

/* ── CURSOR GLOW ── */
.cursor-glow-ambient {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,146,74,0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease;
  opacity: 0;
}
.cursor-glow-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease, width 0.3s ease, height 0.3s ease;
}
.cursor-glow-ring {
  position: fixed;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(184,146,74,0.4);
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease, width 0.4s ease, height 0.4s ease;
}
body:hover .cursor-glow-ambient,
body:hover .cursor-glow-dot,
body:hover .cursor-glow-ring { opacity: 1; }

.cursor-hovering .cursor-glow-dot  { width: 10px; height: 10px; }
.cursor-hovering .cursor-glow-ring { width: 42px; height: 42px; }
.cursor-hovering .cursor-glow-ambient {
  background: radial-gradient(circle, rgba(184,146,74,0.09) 0%, transparent 70%);
}

/* ── ENHANCED HOVER EFFECTS ── */

/* Gold underline sweep on nav links */
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}
.nav-links a:hover::after { width: 100%; }

/* Menu card — enhanced lift */
.menu-card {
  will-change: transform;
}
.menu-card:hover {
  transform: translateY(-7px) scale(1.01);
  box-shadow: 0 20px 50px rgba(92,61,30,0.18), 0 0 0 1px rgba(184,146,74,0.15);
}

/* Contact link — smooth gold fill */
.contact-link {
  position: relative;
  overflow: hidden;
}
.contact-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(184,146,74,0.07);
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}
.contact-link:hover::before { transform: translateX(0); }

/* Tab hover pulse */
.tab {
  position: relative;
  overflow: hidden;
}
.tab::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: -1;
  border-radius: 50px;
}
.tab:hover:not(.active)::after { transform: scaleX(0.15); }

/* About stats counter animation */
.stat-num {
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}
.stat:hover .stat-num {
  transform: scale(1.1);
  color: var(--gold);
}

/* Gold divider line */
.gold-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sand), transparent);
  width: 0;
  margin: 32px auto;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.gold-divider.in-view { width: 80%; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: rgba(184,146,74,0.35); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* Text selection */
::selection { background: rgba(184,146,74,0.2); color: var(--dark-brown); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 14px 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-hours { font-size: 0.78rem; }
  .menu-section, .about-section, .contact-section { padding-left: 0; padding-right: 0; }
  .featured-section { padding: 60px 20px; }
  .featured-grid { grid-template-columns: 1fr; }
  .menu-header, .menu-tabs-wrapper { padding-left: 20px; padding-right: 20px; }
  .menu-grid { padding: 0 20px; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .about-section { padding: 60px 24px; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-section { padding: 60px 24px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
}
