/* ============================================================
   LAS CATRINAS MEXICAN KITCHEN — MAIN STYLESHEET
   Theme: Día de los Muertos · Elegant · Bold
   ============================================================ */

/* TOKENS */
:root {
  --clr-bg:        #0d0500;
  --clr-bg2:       #180b00;
  --clr-surface:   #1f0e00;
  --clr-gold:      #d4a017;
  --clr-gold-lt:   #f0c040;
  --clr-red:       #c0392b;
  --clr-red-dk:    #922b21;
  --clr-orange:    #e67e22;
  --clr-cream:     #fdf6e3;
  --clr-white:     #ffffff;
  --clr-text:      #e8d5b0;
  --clr-text-muted:#a08060;

  --ff-display:    'Cinzel Decorative', serif;
  --ff-heading:    'Playfair Display', serif;
  --ff-body:       'Josefin Sans', sans-serif;

  --radius:        12px;
  --radius-lg:     24px;
  --shadow:        0 8px 40px rgba(0,0,0,0.6);
  --shadow-gold:   0 0 30px rgba(212,160,23,0.2);

  --nav-h:         80px;
  --transition:    0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  font-family: var(--ff-body);
  background: var(--clr-bg);
  color: var(--clr-text);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* PARTICLES CANVAS */
#particles-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none; 
  z-index: 999;
  opacity: 0.45;
}

/* ── FLOATING SKULLS ─────────────────────────────────────── */
.skulls-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 998;
  overflow: hidden;
}
.skull {
  position: absolute;
  font-size: clamp(1rem, 3vw, 2.5rem);
  opacity: 0.05;
  animation: floatSkull linear infinite;
}
.skull.s1 { left: 5%;  animation-duration: 20s; animation-delay: 0s;   bottom: -10%; }
.skull.s2 { left: 20%; animation-duration: 24s; animation-delay: 3s;   bottom: -10%; }
.skull.s3 { left: 40%; animation-duration: 18s; animation-delay: 6s;   bottom: -10%; }
.skull.s4 { left: 55%; animation-duration: 28s; animation-delay: 1s;   bottom: -10%; }
.skull.s5 { left: 70%; animation-duration: 22s; animation-delay: 8s;   bottom: -10%; }
.skull.s6 { left: 82%; animation-duration: 19s; animation-delay: 4s;   bottom: -10%; }
.skull.s7 { left: 93%; animation-duration: 26s; animation-delay: 12s;  bottom: -10%; }

@keyframes floatSkull {
  0%   { transform: translateY(10vh) translateX(0) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.12; }
  50%  { transform: translateY(-40vh) translateX(25px) rotate(180deg); }
  90%  { opacity: 0.12; }
  100% { transform: translateY(-110vh) translateX(-25px) rotate(360deg); opacity: 0; }
}

/* UTILITY */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }

/* SECTION TYPOGRAPHY */
.section-tag {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clr-gold);
  display: block;
  margin-bottom: 0.75rem;
}
.section-tag.light { color: var(--clr-gold-lt); }

.section-title {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--clr-cream);
  margin-bottom: 1rem;
}
.section-title em {
  font-style: italic;
  color: var(--clr-gold);
}
.section-title.light { color: var(--clr-white); }

.title-underline {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-red), var(--clr-gold));
  margin: 0.75rem 0 2.5rem;
  border-radius: 2px;
}
.title-underline.center { margin-left: auto; margin-right: auto; }

.section-ornament {
  display: block;
  text-align: center;
  font-size: 2rem;
  color: var(--clr-gold);
  opacity: 0.2;
  padding: 0.5rem 0;
}

/* BUTTONS */
.btn-order {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: var(--clr-red);
  color: var(--clr-white);
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-order::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--clr-gold);
  transform: translateX(-101%);
  transition: var(--transition);
  z-index: -1;
}
.btn-order:hover { color: var(--clr-bg); border-color: var(--clr-gold); }
.btn-order:hover::before { transform: translateX(0); }

.btn-hero-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--clr-red);
  color: var(--clr-white);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid var(--clr-red);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-hero-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--clr-gold);
  transform: translateX(-101%);
  transition: var(--transition);
  z-index: -1;
}
.btn-hero-primary:hover { color: var(--clr-bg); border-color: var(--clr-gold); }
.btn-hero-primary:hover::before { transform: translateX(0); }

.btn-hero-secondary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: transparent;
  color: var(--clr-cream);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.4);
  transition: var(--transition);
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--clr-gold);
  color: var(--clr-gold);
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s, box-shadow 0.4s;
}
.navbar.scrolled {
  background: rgba(13,5,0,0.97);
  box-shadow: 0 2px 30px rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
}
.nav-container {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.logo-img {
  width: 160px;
  height:160px;
  object-fit: contain;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--clr-gold);
  letter-spacing: 0.05em;
}
.logo-sub {
  font-family: var(--ff-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-text);
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  transition: color 0.3s, background 0.3s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0.9rem; right: 0.9rem;
  height: 1px;
  background: var(--clr-gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-link:hover { color: var(--clr-gold); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--clr-gold); }
.nav-order { margin-left: 0.5rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-cream);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13,5,0,0.55) 0%,
    rgba(13,5,0,0.25) 40%,
    rgba(13,5,0,0.7) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 820px;
  animation: heroFadeIn 1.2s ease both;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-logo-wrap {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.hero-logo {
  width: clamp(300px, 20vw, 180px);
  height: clamp(300px, 20vw, 180px);
  object-fit: contain;
  animation: floatLogo 4s ease-in-out infinite;
}
@keyframes floatLogo {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

.hero-badge {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clr-gold);
  background: rgba(212,160,23,0.12);
  border: 1px solid rgba(212,160,23,0.3);
  display: inline-block;
  padding: 0.4rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
  animation: heroFadeIn 1.2s 0.2s ease both;
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 7vw, 5.5rem);
  line-height: 1.05;
  margin-bottom: 0.75rem;
  animation: heroFadeIn 1.2s 0.35s ease both;
}
.hero-title .line1 {
  display: block;
  color: var(--clr-cream);
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-title .line2 {
  display: block;
  color: var(--clr-gold);
  text-shadow: 0 0 40px rgba(212,160,23,0.4);
}
.hero-sub {
  font-family: var(--ff-heading);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-style: italic;
  color: var(--clr-text);
  margin-bottom: 1.25rem;
  animation: heroFadeIn 1.2s 0.5s ease both;
}
.hero-divider {
  color: var(--clr-gold);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  animation: heroFadeIn 1.2s 0.6s ease both;
  opacity: 0.6;
}
.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  animation: heroFadeIn 1.2s 0.7s ease both;
}
.hero-hours {
  font-family: var(--ff-body);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  animation: heroFadeIn 1.2s 0.85s ease both;
}
.divider-dot { margin: 0 0.5rem; color: var(--clr-gold); }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-indicator {
  width: 26px;
  height: 44px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding: 6px 0;
}
.scroll-indicator span {
  display: block;
  width: 3px;
  height: 8px;
  background: var(--clr-gold);
  border-radius: 2px;
  animation: scrollBob 1.6s ease-in-out infinite;
}
@keyframes scrollBob {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(10px); opacity: 0.3; }
}

.hero-catrina-deco {
  position: absolute;
  right: 3%;
  bottom: 8%;
  width: clamp(80px, 12vw, 160px);
  opacity: 0.25;
  z-index: 2;
  animation: floatDeco 6s ease-in-out infinite;
}
.catrina-svg { width: 100%; }
@keyframes floatDeco {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-15px) rotate(3deg); }
}


.about {
  position: relative;
  z-index: 1;
  padding: 6rem 0;
  background: var(--clr-bg2);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-img-frame::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: calc(var(--radius-lg) + 3px);
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-red), var(--clr-gold));
  z-index: -1;
}
.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  transition: transform 0.6s ease;
}
.about-img:hover { transform: scale(1.03); }
.img-border-deco {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(212,160,23,0.2);
  pointer-events: none;
}
.about-badge-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--clr-red);
  color: var(--clr-white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow);
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.badge-icon { font-size: 1.4rem; }

.about-text {
  color: var(--clr-text);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.about-text strong { color: var(--clr-gold); }
.about-text em { color: var(--clr-gold-lt); font-style: italic; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1.75rem 0 2rem;
}
.about-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--clr-text);
}
.feat-icon { font-size: 1.1rem; }

.promo-banner {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, var(--clr-red-dk) 0%, var(--clr-red) 60%, var(--clr-orange) 100%);
  padding: 4rem 2rem;
  overflow: hidden;
}

.promo-banner::before {
  content: '🌸 ✦ 💀 ✦ 🌸 ✦ 💀 ✦ 🌸 ✦ 💀 ✦ 🌸';
  position: absolute;
  top: 0.5rem;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.15;
  letter-spacing: 0.5em;
  white-space: nowrap;
}

.promo-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* IMAGE */
.promo-img-wrapper {
  flex: 1;
  min-width: 300px;

  background: transparent;
  padding-left: 80px;
  border-radius: 0;
}

.promo-img {
  max-width: 650px;
  width: auto;
  height: auto;
  max-height: 500px;

  object-fit: contain;

  border-radius: 20px;
  display: block;
}

.promo-img:hover {
  transform: scale(1.03);
}

/* TEXT */
.promo-text {
  flex: 1;
  color: white;
  min-width: 280px;
}

.promo-tag {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  display: block;
  margin-bottom: 0.5rem;
}

.promo-text h3 {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

/* BUTTON */
.promo-text .btn-order {
  background: white;
  color: var(--clr-red);
  border-color: white;
}

.promo-text .btn-order:hover {
  background: var(--clr-gold);
  color: var(--clr-bg);
  border-color: var(--clr-gold);
}

/* MODAL */
.promo-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.promo-modal.active {
  display: flex;
}

.modal-img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(0,0,0,0.5);
}

.close-modal {
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 3rem;
  color: white;
  cursor: pointer;
  font-weight: bold;
}

/* MOBILE */
@media (max-width: 768px) {
  .promo-content {
    flex-direction: column;
    text-align: center;
  }

  .promo-img {
    height: 260px;
  }

  .promo-text h3 {
    font-size: 2rem;
  }
}

/* MENU / CAROUSEL */
.menu-section {
  position: relative;
  z-index: 1;
  padding: 6rem 0;
  background: var(--clr-bg);
}
.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}
.carousel-track-wrap {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius);
}
.carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
  will-change: transform;
}
.menu-card {
  flex: 0 0 calc(33.333% - 1rem);
  background: var(--clr-surface);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border: 1px solid rgba(212,160,23,0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.menu-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.5), var(--shadow-gold); }
.menu-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.menu-card:hover .menu-card-img { transform: scale(1.08); }
.menu-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.menu-card:hover .menu-card-overlay { opacity: 1; }
.menu-card-label {
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-gold);
}
.zoom-hint {
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(0,0,0,0.55);
  color: var(--clr-gold);
  border-radius: 50%;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.3s;
  backdrop-filter: blur(4px);
}
.menu-card:hover .zoom-hint { opacity: 1; }

.carousel-btn {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--clr-surface);
  border: 2px solid rgba(212,160,23,0.3);
  color: var(--clr-gold);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  z-index: 2;
}
.carousel-btn:hover {
  background: var(--clr-gold);
  color: var(--clr-bg);
  border-color: var(--clr-gold);
}
.carousel-btn:disabled { opacity: 0.3; cursor: default; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(212,160,23,0.3);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.dot.active { background: var(--clr-gold); transform: scale(1.4); }


.lightbox-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.lightbox-backdrop.open { opacity: 1; pointer-events: all; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2001;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  cursor: pointer; 
}
.lightbox.open { opacity: 1; pointer-events: all; }

.lightbox-img-wrap {
  position: relative;
  max-width: min(90vw, 900px);
  max-height: 85vh;
  overflow: hidden;
  border-radius: var(--radius);
  border: 2px solid rgba(212,160,23,0.3);
  cursor: default;
}
.lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  display: block;
  animation: lbZoomIn 0.4s ease;
}
@keyframes lbZoomIn {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}
.lightbox-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  padding: 1.5rem 1.25rem 1rem;
  font-family: var(--ff-body);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-gold);
}
.lightbox-close {
  position: fixed;
  top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--clr-white);
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.2);
  transition: background 0.3s;
  z-index: 2002;
  cursor: pointer;
}
.lightbox-close:hover { background: var(--clr-red); }
.lightbox-nav {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--clr-white);
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
  backdrop-filter: blur(6px);
  flex-shrink: 0;
  cursor: pointer;
}
.lightbox-nav:hover { background: var(--clr-gold); color: var(--clr-bg); }


.restaurant-gallery {
  position: relative;
  z-index: 1;
  padding: 6rem 0;
  background: var(--clr-bg2);
}
.rest-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.rest-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(212,160,23,0.1);
  cursor: pointer;
}
.rest-item.large { grid-row: span 2; }
.rest-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 240px;
  display: block;
  transition: transform 0.6s ease;
}
.rest-item:hover img { transform: scale(1.06); }
.rest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.75) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.rest-item:hover .rest-overlay { opacity: 1; }
.rest-overlay span {
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-gold);
}


.videos-cta-section {
  position: relative;
  z-index: 1;
  padding: 8rem 2rem;
  overflow: hidden;
}
.video-cta-bg {
  position: absolute;
  inset: 0;
}
.video-cta-bg-video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.video-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,5,0,0.75);
}
.video-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.video-cta-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
  font-style: italic;
}
.btn-videos-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-videos-cta span { font-size: 0.8rem; }

.menutech-gallery-section {
  position: relative;
  z-index: 1;
  padding: 6rem 0;
  background: var(--clr-bg);
}

/* CONTACT */
.contact {
  position: relative;
  z-index: 1;
  padding: 6rem 0;
  background: var(--clr-bg2);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  align-items: stretch;
  margin-top: 1.5rem;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--clr-surface);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(212,160,23,0.1);
  transition: border-color 0.3s;
}
.info-card:hover { border-color: rgba(212,160,23,0.35); }
.info-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 0.1rem; }
.info-card h4 {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 0.35rem;
}
.info-card p {
  font-size: 0.95rem;
  color: var(--clr-text);
  line-height: 1.6;
}
.info-card a { color: var(--clr-text); transition: color 0.3s; }
.info-card a:hover { color: var(--clr-gold); }

.social-links { padding: 1.25rem 0 0; }
.social-links h4 {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 0.75rem;
}
.socials { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
  border: 1px solid transparent;
}
.social-btn.instagram {
  background: linear-gradient(135deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
  color: white;
}
.social-btn.instagram:hover { opacity: 0.85; transform: translateY(-2px); }

.order-widget-wrap { margin-top: 0.5rem; }

.map-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(212,160,23,0.2);
  min-height: 420px;
  box-shadow: var(--shadow);
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  display: block;
}
.map-pin-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(13,5,0,0.85);
  padding: 0.75rem 1rem;
  font-family: var(--ff-body);
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  backdrop-filter: blur(6px);
}

.footer {
  position: relative;
  z-index: 1;
  background: var(--clr-bg);
  border-top: 1px solid rgba(212,160,23,0.15);
}
.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 2rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 340px;
}
.footer-logo {
  width: 56px; height: 56px;
  object-fit: contain;
  flex-shrink: 0;
}
.footer-name {
  font-family: var(--ff-display);
  font-size: 0.9rem;
  color: var(--clr-gold);
  margin-bottom: 0.25rem;
}
.footer-address {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  font-family: var(--ff-body);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--clr-gold); }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--clr-surface);
  border: 1px solid rgba(212,160,23,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-text-muted);
  font-size: 1.1rem;
  transition: var(--transition);
}
.footer-social-btn:hover { background: var(--clr-gold); color: var(--clr-bg); border-color: var(--clr-gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
}
.menutech-credit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--clr-text-muted);
  font-size: 0.75rem;
  transition: color 0.3s;
}
.menutech-credit:hover { color: var(--clr-gold); }
.menutech-logo {
  width: 30px; height: 30px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(212,160,23,0.3);
}

.reveal-left,
.reveal-right,
.reveal-up {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: var(--delay, 0s);
}
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-up { transform: translateY(30px); }
.reveal-left.visible,
.reveal-right.visible,
.reveal-up.visible {
  opacity: 1;
  transform: translate(0);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img { height: 340px; }
  .about-badge-card { right: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .map-wrap { min-height: 320px; }
  .rest-grid { grid-template-columns: 1fr 1fr; }
  .rest-item.large { grid-row: auto; }
  .menu-card { flex: 0 0 calc(50% - 0.75rem); }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(13,5,0,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.25rem;
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    z-index: 999;
    border-bottom: 1px solid rgba(212,160,23,0.2);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; }
  .nav-link { padding: 0.75rem 1rem; font-size: 0.9rem; }
  .nav-order { margin: 0.5rem 0 0; width: 100%; text-align: center; }

  .hero-title { font-size: clamp(2rem, 10vw, 3.5rem); }
  .about { padding: 4rem 0; }
  .menu-card { flex: 0 0 calc(80% - 0.75rem); }
  .promo-content { flex-direction: column; text-align: center; }
  .promo-img { animation: none; }
  .rest-grid { grid-template-columns: 1fr; }
  .rest-item.large { grid-row: auto; }
  .about-badge-card { position: static; margin-top: 1rem; }
  .footer-top { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; text-align: center; }
  .about-features { grid-template-columns: 1fr; }
  .menu-card { flex: 0 0 calc(90% - 0.75rem); }
  .carousel-btn { width: 36px; height: 36px; font-size: 0.85rem; }
  .contact-grid { gap: 2rem; }
}