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

:root {
  --fire:       #8B1A00;
  --fire-dark:  #6A1200;
  --charcoal:   #1C1008;
  --charcoal-m: #2D1E10;
  --amber:      #B45309;
  --amber-lt:   #D97706;
  --cream:      #FEF7ED;
  --cream2:     #FDF0DC;
  --dark:       #1C1008;
  --text:       #3D2B1A;
  --muted:      #78716C;
  --border:     #E8D5BC;
  --gold:       #D97706;
  --white:      #ffffff;
}

html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; color: var(--text); background: #fff; overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem; height: 80px;
  background: rgba(0,0,0,0);
  transition: background .4s, box-shadow .4s;
}
nav.scrolled { background: rgba(255,255,255,.97); box-shadow: 0 2px 20px rgba(0,0,0,.14); }
nav.opaque   { background: var(--charcoal); }

.nav-logo img { height: 58px; width: auto; object-fit: contain; }

.nav-links { display: flex; gap: 1.8rem; list-style: none; align-items: center; }
.nav-links a {
  text-decoration: none; color: #fff;
  font-size: .82rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  transition: color .2s;
}
nav.scrolled .nav-links a { color: var(--dark); }
nav.scrolled .nav-links a:hover { color: var(--fire); }
nav.opaque   .nav-links a:hover { color: var(--amber-lt); }

.nav-links a.active { color: var(--amber-lt) !important; }
nav.scrolled .nav-links a.active { color: var(--fire) !important; }

.nav-cta {
  background: var(--fire) !important;
  color: #fff !important; padding: .5rem 1.3rem;
  border-radius: 6px; transition: background .2s !important;
}
.nav-cta:hover { background: var(--fire-dark) !important; }
nav.scrolled .nav-cta { color: #fff !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: .5rem; }
.hamburger span { display: block; width: 26px; height: 2px; background: #fff; transition: background .3s; }
nav.scrolled .hamburger span { background: var(--dark); }

.mobile-menu {
  display: none; position: fixed;
  top: 80px; left: 0; right: 0;
  background: var(--charcoal); z-index: 999;
  flex-direction: column; padding: 1.5rem 2rem;
  box-shadow: 0 8px 20px rgba(0,0,0,.4);
  transform: translateY(-10px); opacity: 0;
  transition: transform .3s, opacity .3s;
}
.mobile-menu.open { display: flex; transform: translateY(0); opacity: 1; }
.mobile-menu a {
  text-decoration: none; color: rgba(255,255,255,.85);
  font-size: 1rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .9rem 0; border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color .2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover, .mobile-menu a.active { color: var(--amber-lt); }

/* ── SECTIONS ── */
section { padding: 5rem 0; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }

.section-label {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--fire); display: block; margin-bottom: .6rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.15; color: var(--dark); margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--fire); }
.divider { width: 60px; height: 3px; background: var(--fire); margin: 1.2rem 0 1.8rem; }
.divider.center { margin-left: auto; margin-right: auto; }

/* ── ANIMATED BBQ BACKGROUND (smoke canvas) ── */
.bbq-bg { position: relative; overflow: hidden; }
.smoke-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}
.bbq-bg > *:not(.smoke-canvas) { position: relative; z-index: 1; }

/* ── HERO ── */
#hero {
  position: relative; width: 100%; height: 100vh;
  min-height: 600px; display: flex;
  flex-direction: column; align-items: center; justify-content: center;
  overflow: hidden;
}
#hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.52) 0%, rgba(0,0,0,.35) 55%, rgba(0,0,0,.72) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 1.5rem;
}
.hero-logo { width: 320px; max-width: 78vw; filter: drop-shadow(0 4px 28px rgba(0,0,0,.6)); }
.hero-tagline {
  font-family: 'Pacifico', cursive;
  color: var(--amber-lt); font-size: clamp(1.1rem, 2.4vw, 1.65rem);
  margin: .8rem 0 2.2rem;
  text-shadow: 0 2px 14px rgba(0,0,0,.8);
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* PressDepth button */
.btn-press {
  position: relative; display: inline-flex;
  padding-bottom: 4px; border-radius: 10px;
  cursor: pointer; text-decoration: none;
  user-select: none; -webkit-tap-highlight-color: transparent;
}
.btn-press-shadow {
  position: absolute; inset-x: 0; bottom: 0;
  height: calc(100% - 4px); border-radius: 10px;
  background: rgba(0,0,0,.3);
}
.btn-press-inner {
  position: relative; display: inline-flex;
  align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 2.2rem; border-radius: 10px;
  font-family: 'Lato', sans-serif; font-size: .9rem;
  font-weight: 900; letter-spacing: .08em; text-transform: uppercase;
  transition: transform .1s cubic-bezier(.34,1.56,.64,1), box-shadow .1s;
}
.btn-press:active .btn-press-inner,
.btn-press.pressed .btn-press-inner { transform: translateY(4px) !important; }

.btn-press-primary .btn-press-inner {
  background: var(--fire); color: #fff;
  box-shadow: inset 0 1.5px 0 rgba(255,255,255,.18);
}
.btn-press-primary .btn-press-shadow { background: var(--fire-dark); }
.btn-press-primary:hover .btn-press-inner { background: #a02000; }

.btn-press-outline .btn-press-inner {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.8);
}
.btn-press-outline .btn-press-shadow { background: rgba(255,255,255,.12); }
.btn-press-outline:hover .btn-press-inner { background: rgba(255,255,255,.1); }

.btn-press-white .btn-press-inner {
  background: #fff; color: var(--fire);
}
.btn-press-white .btn-press-shadow { background: #ddd; }
.btn-press-white:hover .btn-press-inner { background: #f5f5f5; }

.btn-press-amber .btn-press-inner {
  background: var(--amber-lt); color: var(--dark);
}
.btn-press-amber .btn-press-shadow { background: #92400e; }

.btn-red {
  display: inline-block; background: var(--fire); color: #fff;
  text-decoration: none; font-weight: 700; font-size: .85rem;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .9rem 2.4rem; border-radius: 6px;
  border: none; cursor: pointer; transition: background .2s;
}
.btn-red:hover { background: var(--fire-dark); }

/* Hero scroll indicator */
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  color: rgba(255,255,255,.7); font-size: .7rem;
  letter-spacing: .15em; text-transform: uppercase;
  animation: bounce 2.2s ease-in-out infinite;
}
.hero-scroll::after {
  content: ''; display: block; width: 1px; height: 40px;
  background: rgba(255,255,255,.4);
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%     { transform: translateX(-50%) translateY(8px); }
}

/* ── FEATURES STRIP ── */
.features-strip { background: var(--charcoal); padding: 3.5rem 0; }
.features-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2rem; text-align: center;
}
.feat-icon { font-size: 2.4rem; margin-bottom: .8rem; }
.feat-title { color: #fff; font-size: .9rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: .3rem; }
.feat-desc { color: rgba(255,255,255,.48); font-size: .82rem; line-height: 1.55; }

/* ── ABOUT ── */
#about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-main { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; border-radius: 4px; }
.about-img-accent {
  position: absolute; bottom: -2rem; right: -2rem;
  width: 55%; aspect-ratio: 1; object-fit: cover;
  border: 6px solid #fff; border-radius: 4px;
  box-shadow: 0 8px 30px rgba(0,0,0,.18);
}
.about-text p { font-size: 1.02rem; line-height: 1.85; color: #555; margin-bottom: 1.2rem; }
.about-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem; margin-top: 2.5rem; padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--fire); line-height: 1; }
.stat-lbl { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: .3rem; }

/* ── SIGNATURE MEATS ── */
#signatures { background: var(--charcoal); }
#signatures .section-title { color: #fff; }
#signatures .section-label { color: var(--amber-lt); }
.sig-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; margin-top: 3rem; }
.sig-item { text-align: center; }
.sig-img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  display: block; margin-bottom: 1rem;
  border: 3px solid rgba(255,255,255,.1); border-radius: 4px;
  transition: transform .4s, border-color .4s;
}
.sig-item:hover .sig-img { transform: scale(1.03); border-color: var(--amber-lt); }
.sig-name { color: #fff; font-weight: 700; font-size: .95rem; margin-bottom: .3rem; }
.sig-tag { color: var(--amber-lt); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; }

/* ── MENU ── */
#menu { background: #fff; }
.menu-header { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.menu-tabs {
  display: flex; gap: 0; margin-bottom: 3rem;
  border-bottom: 2px solid var(--border); flex-wrap: wrap;
  overflow-x: auto; scrollbar-width: none;
}
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tab {
  padding: .85rem 1.6rem; font-size: .8rem;
  font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  cursor: pointer; border: none; background: none;
  color: var(--muted); border-bottom: 3px solid transparent;
  margin-bottom: -2px; transition: color .2s, border-color .2s;
  white-space: nowrap; flex-shrink: 0;
}
.menu-tab.active { color: var(--fire); border-bottom-color: var(--fire); }
.menu-panel { display: none; }
.menu-panel.active { display: block; }
.menu-category { margin-bottom: 3rem; }
.menu-cat-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--dark); margin-bottom: .4rem; }
.menu-cat-note { font-size: .82rem; color: var(--muted); margin-bottom: 1.5rem; font-style: italic; }
.menu-items { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.menu-item {
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 1.5rem;
  padding: 1.1rem 1rem; border-bottom: 1px solid var(--border);
}
.menu-item:nth-child(odd) { border-right: 1px solid var(--border); }
.menu-item-info { flex: 1; }
.menu-item-name { font-weight: 700; font-size: .95rem; color: var(--dark); margin-bottom: .25rem; }
.menu-item-desc { font-size: .82rem; color: var(--muted); line-height: 1.5; }
.menu-item-price { font-weight: 900; font-size: .95rem; color: var(--fire); white-space: nowrap; }

/* ── REVIEWS ── */
#reviews { background: var(--cream); overflow: hidden; }
.reviews-header { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.reviews-stars { color: var(--gold); font-size: 1.2rem; margin-bottom: .6rem; }
.testimonials-wrap {
  display: flex; gap: 1.5rem; justify-content: center;
  max-height: 680px; overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}
.testimonial-col { display: flex; flex-direction: column; gap: 1.5rem; flex-shrink: 0; width: 300px; }
.testimonial-track { display: flex; flex-direction: column; gap: 1.5rem; }
.testimonial-card {
  background: #fff; padding: 1.6rem; border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}
.testimonial-text { font-size: .9rem; line-height: 1.7; color: var(--text); margin-bottom: 1rem; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-author img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.testimonial-name { font-weight: 700; font-size: .85rem; color: var(--dark); }
.testimonial-role { font-size: .78rem; color: var(--muted); margin-top: 1px; }
.testimonial-stars { color: var(--gold); font-size: .8rem; margin-bottom: .5rem; }

@keyframes scrollUp1 { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
@keyframes scrollUp2 { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
@keyframes scrollUp3 { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
.scroll-col-1 { animation: scrollUp1 18s linear infinite; }
.scroll-col-2 { animation: scrollUp2 22s linear infinite; }
.scroll-col-3 { animation: scrollUp3 20s linear infinite; }
.testimonial-col:hover .testimonial-track { animation-play-state: paused; }

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-auto-rows: 220px; gap: 4px;
}
.gallery-item { overflow: hidden; position: relative; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.35); opacity: 0;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-icon { color: #fff; font-size: 2rem; }

/* ── CTA / RESERVE ── */
#cta { background: var(--fire); padding: 5.5rem 0; text-align: center; }
#cta .section-title { color: #fff; }
#cta .divider { background: rgba(255,255,255,.3); }
#cta p { color: rgba(255,255,255,.85); font-size: 1.05rem; margin-bottom: 2.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ── CONTACT ── */
#contact { background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.contact-info h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--dark); margin-bottom: 1.5rem; }
.contact-row { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-icon { font-size: 1.2rem; margin-top: .15rem; flex-shrink: 0; }
.contact-detail-title { font-weight: 700; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: .25rem; }
.contact-detail-val { font-size: .95rem; color: var(--dark); line-height: 1.6; }
.contact-detail-val a { color: var(--fire); text-decoration: none; }
.hours-grid { display: grid; grid-template-columns: auto 1fr; gap: .2rem 1.5rem; font-size: .9rem; }
.hours-day { font-weight: 700; color: var(--dark); }
.hours-time { color: var(--muted); }

/* ── FORMS ── */
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: .5rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; border: 1px solid var(--border);
  padding: .85rem 1rem; font-family: 'Lato', sans-serif;
  font-size: .95rem; color: var(--dark); background: var(--cream);
  outline: none; transition: border-color .2s; border-radius: 6px;
  appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--fire); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── MAP ── */
.map-container { width: 100%; height: 360px; overflow: hidden; border-radius: 8px; margin-top: 4rem; }
.map-container iframe { width: 100%; height: 100%; border: 0; }

/* ── FOOTER ── */
footer {
  background: #0e0804; padding: 4rem 0 2rem;
  transform: translateY(20px); opacity: 0;
  transition: transform .6s ease, opacity .6s ease;
}
footer.footer-visible { transform: translateY(0); opacity: 1; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo img { height: 64px; width: auto; margin-bottom: 1.2rem; filter: brightness(1.1); }
.footer-about { font-size: .85rem; color: rgba(255,255,255,.42); line-height: 1.75; margin-bottom: 1.5rem; }
.social-links { display: flex; gap: .8rem; }
.social-link {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.5); text-decoration: none; font-size: .9rem;
  border-radius: 50%; transition: background .2s, color .2s;
}
.social-link:hover { background: var(--fire); color: #fff; }
.footer-col h4 { font-size: .75rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.32); margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul li a { text-decoration: none; color: rgba(255,255,255,.52); font-size: .88rem; transition: color .2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.28); }
.footer-credit { font-size: .78rem; color: rgba(255,255,255,.28); }
.footer-credit a { color: var(--amber-lt); text-decoration: none; transition: color .2s; }
.footer-credit a:hover { color: #fff; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--charcoal); padding: 8rem 0 4rem;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero .section-title { color: #fff; }
.page-hero .section-label { color: var(--amber-lt); }
.page-hero p { color: rgba(255,255,255,.62); font-size: 1.05rem; max-width: 560px; margin: .5rem auto 0; }
.page-hero-wave {
  position: absolute; bottom: -1px; left: 0; right: 0;
}

/* ── ORDER PAGE ── */
.order-layout { display: grid; grid-template-columns: 1fr 380px; gap: 3rem; align-items: start; }
.order-panel { background: var(--cream); border-radius: 12px; padding: 2rem; position: sticky; top: 100px; }
.order-panel h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--dark); margin-bottom: 1.5rem; border-bottom: 1px solid var(--border); padding-bottom: 1rem; }
.cart-item { display: flex; justify-content: space-between; align-items: center; padding: .75rem 0; border-bottom: 1px solid var(--border); gap: 1rem; }
.cart-item-name { font-size: .9rem; font-weight: 600; color: var(--dark); }
.cart-item-qty { display: flex; align-items: center; gap: .5rem; }
.qty-btn { background: none; border: 1px solid var(--border); width: 28px; height: 28px; border-radius: 50%; cursor: pointer; font-size: 1rem; color: var(--dark); display: flex; align-items: center; justify-content: center; transition: background .2s; }
.qty-btn:hover { background: var(--fire); color: #fff; border-color: var(--fire); }
.cart-item-price { font-weight: 700; color: var(--fire); white-space: nowrap; }
.cart-total { display: flex; justify-content: space-between; padding: 1rem 0 .5rem; font-weight: 700; font-size: 1.1rem; color: var(--dark); }
.cart-empty { text-align: center; color: var(--muted); font-size: .9rem; padding: 2rem 0; }
.order-item-card {
  border: 1px solid var(--border); border-radius: 10px;
  overflow: hidden; transition: box-shadow .3s;
}
.order-item-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.1); }
.order-item-img { width: 100%; height: 180px; object-fit: cover; display: block; }
.order-item-body { padding: 1rem; }
.order-item-name { font-weight: 700; font-size: .95rem; color: var(--dark); margin-bottom: .25rem; }
.order-item-desc { font-size: .82rem; color: var(--muted); line-height: 1.5; margin-bottom: .75rem; }
.order-item-footer { display: flex; justify-content: space-between; align-items: center; }
.order-item-price { font-weight: 900; color: var(--fire); font-size: 1rem; }
.add-btn {
  background: var(--fire); color: #fff; border: none;
  padding: .5rem 1.1rem; border-radius: 6px; cursor: pointer;
  font-size: .82rem; font-weight: 700; letter-spacing: .06em;
  transition: background .2s;
}
.add-btn:hover { background: var(--fire-dark); }
.order-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

/* ── RESERVATIONS ── */
.reservation-layout { display: grid; grid-template-columns: 1fr 400px; gap: 3rem; align-items: start; }
.reservation-info { background: var(--charcoal); color: #fff; border-radius: 12px; padding: 2rem; position: sticky; top: 100px; }
.reservation-info h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 1.5rem; }
.res-detail { display: flex; gap: 1rem; margin-bottom: 1.2rem; align-items: flex-start; }
.res-detail-icon { font-size: 1.2rem; margin-top: .1rem; flex-shrink: 0; }
.res-detail-text { font-size: .9rem; color: rgba(255,255,255,.72); line-height: 1.6; }
.res-detail-title { font-weight: 700; color: #fff; font-size: .85rem; margin-bottom: .2rem; }
.time-slots { display: grid; grid-template-columns: repeat(3,1fr); gap: .5rem; margin-top: .5rem; }
.time-slot {
  padding: .5rem; border: 1px solid rgba(255,255,255,.18);
  border-radius: 6px; text-align: center; cursor: pointer;
  font-size: .82rem; color: rgba(255,255,255,.78);
  transition: background .2s, border-color .2s;
}
.time-slot:hover, .time-slot.selected {
  background: var(--fire); border-color: var(--fire); color: #fff;
}

/* ── SUCCESS MESSAGES ── */
.success-box {
  background: #fdf5e8; border: 1px solid #f3d7a8;
  border-radius: 12px; padding: 2rem; text-align: center;
  display: none;
}
.success-box.show { display: block; animation: fadeInUp .5s ease; }
.success-icon { font-size: 3rem; margin-bottom: 1rem; }
.success-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--amber); margin-bottom: .5rem; }
.success-text { color: #92400e; font-size: .95rem; }

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

/* ── SCROLL REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.from-left  { transform: translateX(-40px); }
.reveal.from-right { transform: translateX(40px); }
.reveal.visible    { opacity: 1; transform: translate(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,.93);
  z-index: 9999; display: none; align-items: center; justify-content: center;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 4px; }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; color: #fff; font-size: 2rem;
  cursor: pointer; line-height: 1;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .features-grid       { grid-template-columns: repeat(2,1fr); }
  .sig-grid            { grid-template-columns: repeat(2,1fr); }
  .footer-grid         { grid-template-columns: 1fr 1fr; }
  .order-layout        { grid-template-columns: 1fr; }
  .order-panel         { position: static; }
  .reservation-layout  { grid-template-columns: 1fr; }
  .reservation-info    { position: static; }
}
@media (max-width: 768px) {
  .nav-links  { display: none; }
  .hamburger  { display: flex; }
  section     { padding: 3.5rem 0; }
  .experience-cards { grid-template-columns: 1fr !important; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img-accent { right: 0; }
  .about-stats { grid-template-columns: repeat(3,1fr); gap: 1rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .menu-items { grid-template-columns: 1fr; }
  .menu-item:nth-child(odd) { border-right: none; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .order-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .testimonials-wrap .testimonial-col:nth-child(2),
  .testimonials-wrap .testimonial-col:nth-child(3) { display: none; }
  .page-hero { padding: 7rem 0 3rem; }
  .sig-grid   { grid-template-columns: repeat(2,1fr); }
  .form-row   { grid-template-columns: 1fr; }
  .time-slots { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
  nav { padding: 0 1.2rem; }
  .container { padding: 0 1.2rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .gallery-item.wide { grid-column: span 1; }
  .hero-logo { width: 240px; }
}
