
:root {
  --cream: #f5ede3;
  --gold: #c9935a;
  --gold-light: #e5bb9c;
  --gold-pale: #fdd8ce;
  --dark: #0c0b09;
  --dark2: #161410;
  --dark3: #1e1b16;
  --mid: #2a2520;
  --text: #e8ddd1;
  --text-muted: #8a7d6e;
  --white: #fdfdfd;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --font-elegant: 'Cormorant Garamond', Georgia, serif;
  --ease: cubic-bezier(0.76, 0, 0.24, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
ul { list-style: none; }

/* ======================================
   CUSTOM CURSOR
   ====================================== */
.cursor {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s, opacity 0.3s;
  transform: translate(-50%, -50%);
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,147,90,.5);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.15s var(--ease), opacity 0.3s, width 0.3s var(--ease-bounce), height 0.3s var(--ease-bounce);
  transform: translate(-50%, -50%);
}
body:has(a:hover, button:hover) .cursor { transform: translate(-50%, -50%) scale(2); }
body:has(a:hover, button:hover) .cursor-follower { width: 60px; height: 60px; opacity: .4; }
@media (max-width: 768px) { .cursor, .cursor-follower { display: none; } body { cursor: auto; } }

/* ======================================
   LOADER
   ====================================== */
.loader {
  position: fixed; inset: 0;
  background: var(--dark);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s var(--ease), visibility .6s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-logo {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 4rem);
  background: linear-gradient(90deg, var(--gold-pale), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  animation: loaderPulse 1.5s ease infinite;
}
.loader-bar {
  width: 200px; height: 2px;
  background: rgba(255,255,255,.1);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}
.loader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-pale), var(--gold));
  border-radius: 2px;
  animation: loaderBar 1.5s var(--ease) forwards;
}
@keyframes loaderBar { from { width: 0 } to { width: 100% } }
@keyframes loaderPulse { 0%,100%{opacity:1} 50%{opacity:.5} }

/* ======================================
   HEADER
   ====================================== */
#header {
  position: fixed; top: 0; left: 0; width: 100%;
  padding: 18px 48px;
  display: flex; align-items: center; justify-content: space-between;
  z-index: 1000;
  transition: padding .4s var(--ease), background .4s;
  /* needed so absolute navbar positions relative to header */
  overflow: visible;
}
#header.scrolled {
  padding: 12px 48px;
  background: rgba(12,11,9,.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,147,90,.12);
}
.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--gold-pale), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: transform .3s var(--ease-bounce);
}
.logo:hover { transform: scale(1.05); }
.navbar {
  display: flex; align-items: center; gap: 8px;
}
.nav-link {
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(232,221,209,.7);
  padding: 8px 16px;
  border-radius: 40px;
  transition: color .3s, background .3s;
}
.nav-link:hover {
  color: var(--cream);
  background: rgba(201,147,90,.12);
}
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--cream);
  transition: .3s var(--ease);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile close button inside nav (hidden on desktop) */
.nav-close {
  display: none;
}

@media (max-width: 768px) {
  #header { padding: 14px 20px; overflow: visible; }
  #header.scrolled { padding: 11px 20px; }

  .hamburger {
    display: flex;
    z-index: 1100;
    position: relative;
    width: 42px; height: 42px;
    background: rgba(201,147,90,.13);
    border: 1px solid rgba(201,147,90,.3);
    border-radius: 10px;
    transition: background .3s, border-color .3s;
  }
  .hamburger.active {
    background: rgba(201,147,90,.22);
    border-color: rgba(201,147,90,.5);
  }

  /* ---- DROPDOWN PANEL ---- */
  .navbar {
    position: absolute;
    top: calc(100% + 8px);
    right: 20px;
    left: auto;
    width: 210px;
    background: rgba(20,17,13,.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(201,147,90,.22);
    border-radius: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 8px 12px;
    box-shadow: 0 16px 48px rgba(0,0,0,.7);
    z-index: 1200;

    /* hidden state */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(.96);
    transform-origin: top right;
    transition:
      opacity .25s var(--ease),
      visibility .25s,
      transform .25s var(--ease);
    pointer-events: none;
  }
  .navbar.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  /* Close row inside panel */
  .nav-close {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 8px 10px;
    border-bottom: 1px solid rgba(201,147,90,.13);
    margin-bottom: 4px;
  }
  .nav-close-label {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--text-muted);
  }
  .nav-close-btn {
    width: 26px; height: 26px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 7px;
    color: var(--text);
    font-size: .8rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background .2s, transform .25s var(--ease-bounce);
  }
  .nav-close-btn:hover { background: rgba(255,255,255,.16); transform: rotate(90deg); }

  /* Nav links */
  .nav-link {
    font-size: .88rem;
    padding: 10px 12px;
    border-radius: 9px;
    color: rgba(232,221,209,.75);
    display: flex;
    align-items: center;
    gap: 9px;
    transition: background .2s, color .2s, padding-left .2s;
  }
  .nav-link::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0;
    flex-shrink: 0;
    transition: opacity .2s;
  }
  .nav-link:hover, .nav-link.active {
    background: rgba(201,147,90,.12);
    color: var(--cream);
  }
  .nav-link:hover::before, .nav-link.active::before { opacity: 1; }
}

/* ======================================
   BUTTONS
   ====================================== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .04em;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--gold-pale), var(--gold));
  color: var(--dark);
  border: none; border-radius: 50px;
  cursor: pointer;
  transition: transform .3s var(--ease-bounce), box-shadow .3s;
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 32px rgba(201,147,90,.4);
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .04em;
  padding: 13px 28px;
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(232,221,209,.3);
  border-radius: 50px;
  cursor: pointer;
  transition: background .3s, border-color .3s, transform .3s var(--ease-bounce);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(232,221,209,.6);
  transform: translateY(-2px);
}

/* ======================================
   SECTION LABELS / TITLES
   ====================================== */
.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-label::before {
  content: '—';
  margin-right: 8px;
  opacity: .6;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  background: linear-gradient(90deg, var(--gold-pale), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto;
}

/* ======================================
   REVEAL ANIMATIONS
   ====================================== */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  animation: revealUp .8s var(--ease) forwards;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  animation: revealLeft .8s var(--ease) forwards;
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  animation: revealRight .8s var(--ease) forwards;
}
@keyframes revealUp { to { opacity:1; transform:translateY(0); } }
@keyframes revealLeft { to { opacity:1; transform:translateX(0); } }
@keyframes revealRight { to { opacity:1; transform:translateX(0); } }

/* Scroll-triggered */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.scroll-reveal.in-view { opacity: 1; transform: translateY(0); }
.scroll-reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.scroll-reveal-left.in-view { opacity:1; transform:translateX(0); }
.scroll-reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.scroll-reveal-right.in-view { opacity:1; transform:translateX(0); }

/* ======================================
   HERO
   ====================================== */
.hero {
  position: relative;
  width: 100%; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-img {
  position: absolute; inset: 0;
  object-fit: cover;
  transform: scale(1.08);
  animation: heroZoom 20s var(--ease) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(12,11,9,.93) 0%, rgba(12,11,9,.7) 60%, rgba(12,11,9,.85) 100%);
  z-index: 1;
}
.hero-noise {
  position: absolute; inset: 0;
  opacity: .04;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
}
.hero-content {
  position: relative; z-index: 5;
  text-align: center;
  padding: 120px 24px 100px;
  max-width: 800px;
}
.hero-tag {
  display: inline-block;
  font-size: .8rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(201,147,90,.4);
  padding: 7px 20px; border-radius: 50px;
  margin-bottom: 28px;
  animation: revealUp .8s var(--ease) both;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--white);
  margin-bottom: 24px;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.hero-title-line { display: block; }
.hero-title .italic {
  font-style: italic;
  background: linear-gradient(90deg, var(--gold-pale), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(.9rem, 2vw, 1.1rem);
  color: rgba(232,221,209,.65);
  line-height: 1.8;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--text-muted);
  font-size: .7rem; letter-spacing: .2em;
  animation: fadeInUp 1s var(--ease) 1s both;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:1;height:50px} 50%{opacity:.4;height:30px} }
@keyframes fadeInUp { from{opacity:0;transform:translate(-50%,20px)} to{opacity:1;transform:translate(-50%,0)} }

.hero-stats {
  position: absolute; bottom: 0; right: 0;
  z-index: 5;
  display: flex; align-items: center; gap: 0;
  background: rgba(22,20,16,.85);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(201,147,90,.15);
  border-left: 1px solid rgba(201,147,90,.15);
  border-radius: 16px 0 0 0;
  overflow: hidden;
}
.stat {
  padding: 20px 28px;
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-pct { font-family: var(--font-display); font-size: 1.2rem; color: var(--gold); }
.stat-label {
  display: block;
  font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}
.stat-divider { width: 1px; height: 40px; background: rgba(201,147,90,.2); }



/* ======================================
   MARQUEE
   ====================================== */
.marquee-strip {
  background: linear-gradient(90deg, var(--gold-pale), var(--gold-light), var(--gold));
  overflow: hidden; padding: 14px 0;
}
.marquee-track {
  display: flex; gap: 0;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}
.marquee-track span {
  font-family: var(--font-body);
  font-size: .85rem; font-weight: 600; letter-spacing: .1em;
  color: var(--dark);
  padding-right: 40px;
}
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ======================================
   ABOUT
   ====================================== */
.about-section {
  padding: 100px 48px;
  background: var(--dark2);
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,147,90,.06) 0%, transparent 70%);
  pointer-events: none;
}
.about-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-frame {
  position: relative;
  width: 100%; max-width: 400px;
  aspect-ratio: 3/4;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(201,147,90,.2);
}
.about-img-frame img {
  width: 100%; height: 100%;
  transition: transform .8s var(--ease);
}
.about-img-frame:hover img { transform: scale(1.05); }
.about-img-accent {
  position: absolute; bottom: -20px; right: -20px;
  width: 60%; aspect-ratio: 1;
  border-radius: 16px;
  border: 2px solid rgba(201,147,90,.3);
  z-index: -1;
}
.about-img-badge {
  position: absolute; bottom: 24px; left: -20px;
  background: linear-gradient(135deg, var(--gold-pale), var(--gold));
  color: var(--dark);
  padding: 12px 20px;
  border-radius: 14px;
  display: flex; align-items: center; gap: 10px;
  font-size: .8rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  box-shadow: 0 12px 32px rgba(201,147,90,.3);
}
.about-img-badge i { font-size: 1.1rem; }
.about-text p {
  font-size: 1rem; line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.about-text p strong { color: var(--text); }
.about-pills {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin: 28px 0;
}
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 16px;
  background: rgba(201,147,90,.1);
  border: 1px solid rgba(201,147,90,.25);
  border-radius: 40px;
  font-size: .82rem; font-weight: 500;
  color: var(--gold-light);
  transition: background .3s, transform .3s var(--ease-bounce);
}
.pill:hover { background: rgba(201,147,90,.2); transform: translateY(-2px); }



/* ======================================
   MENU
   ====================================== */
.menu-section {
  padding: 100px 48px;
  background: var(--dark3);
  position: relative;
  overflow: hidden;
}
.menu-section::after {
  content: '';
  position: absolute; bottom: -300px; left: -300px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,147,90,.05) 0%, transparent 70%);
  pointer-events: none;
}
.menu-header {
  text-align: center;
  margin-bottom: 60px;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px; margin: 0 auto;
}
.menu-card {
  background: var(--mid);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(201,147,90,.1);
  transition: transform .4s var(--ease), box-shadow .4s, border-color .4s;
  position: relative;
}
.menu-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
  border-color: rgba(201,147,90,.3);
}
.card-img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.card-img-wrap img { transition: transform .6s var(--ease); }
.menu-card:hover .card-img-wrap img { transform: scale(1.08); }
.card-badge {
  position: absolute; top: 14px; left: 14px;
  background: linear-gradient(135deg, var(--gold-pale), var(--gold));
  color: var(--dark);
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 40px;
  z-index: 2;
}
.card-overlay {
  position: absolute; inset: 0;
  background: rgba(12,11,9,.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .3s;
  z-index: 3;
}
.menu-card:hover .card-overlay { opacity: 1; }
.card-quick-order {
  font-family: var(--font-body);
  font-size: .85rem; font-weight: 600;
  padding: 10px 20px;
  background: var(--gold);
  color: var(--dark); border: none; border-radius: 40px;
  cursor: pointer;
  display: flex; align-items: center; gap: 8px;
  transform: translateY(10px);
  transition: transform .3s var(--ease-bounce), background .3s;
}
.menu-card:hover .card-quick-order { transform: translateY(0); }
.card-quick-order:hover { background: var(--gold-pale); }
.card-body { padding: 20px; }
.card-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 8px;
  gap: 8px;
}
.card-top h3 {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700;
  color: var(--white);
}
.card-stars { color: var(--gold); font-size: .7rem; white-space: nowrap; }
.card-desc {
  font-size: .83rem; color: var(--text-muted);
  line-height: 1.6; margin-bottom: 16px;
}
.card-footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px;
}
.card-price {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700;
  background: linear-gradient(90deg, var(--gold-pale), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.btn-order {
  font-family: var(--font-body);
  font-size: .8rem; font-weight: 600; letter-spacing: .04em;
  padding: 9px 16px;
  background: rgba(201,147,90,.15);
  color: var(--gold-light);
  border: 1px solid rgba(201,147,90,.3);
  border-radius: 40px; cursor: pointer;
  display: flex; align-items: center; gap: 6px;
  transition: background .3s, transform .3s var(--ease-bounce), border-color .3s;
  white-space: nowrap;
}
.btn-order:hover {
  background: rgba(201,147,90,.28);
  border-color: rgba(201,147,90,.6);
  transform: scale(1.05);
}



/* ======================================
   PROMO
   ====================================== */
.promo-section {
  background: var(--dark2);
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
}
.promo-section::before {
  content: 'CRISPY';
  position: absolute; right: -40px; top: 50%; transform: translateY(-50%) rotate(90deg);
  font-family: var(--font-display);
  font-size: 120px; font-weight: 900;
  color: rgba(201,147,90,.04);
  pointer-events: none; white-space: nowrap;
}
.promo-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto; gap: 60px;
  align-items: center;
}
.promo-text .section-title { margin-bottom: 16px; }
.promo-text p { color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; font-size: 1rem; }
.promo-visual { flex-shrink: 0; }
.promo-circle {
  width: 200px; height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-pale), var(--gold));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  box-shadow: 0 0 80px rgba(201,147,90,.3);
  animation: promoPulse 3s ease infinite;
}
@keyframes promoPulse { 0%,100%{box-shadow:0 0 80px rgba(201,147,90,.3)} 50%{box-shadow:0 0 120px rgba(201,147,90,.5)} }
.promo-big { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--dark); }
.promo-price { font-family: var(--font-display); font-size: 2.2rem; font-weight: 900; color: var(--dark); line-height: 1; }
.promo-pcs { font-size: .85rem; font-weight: 600; color: rgba(12,11,9,.65); }

@media (max-width: 1100px) { .menu-grid { grid-template-columns: repeat(2, 1fr); } }

/* ======================================
   CONTACT
   ====================================== */
.contact-section {
  padding: 100px 48px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.contact-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start;
}
.contact-text p {
  color: var(--text-muted);
  line-height: 1.7; font-size: 1rem;
  margin-bottom: 32px;
}
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.info-item {
  display: flex; align-items: center; gap: 14px;
  font-size: .95rem; color: var(--text);
}
.info-item i { color: var(--gold); width: 20px; text-align: center; }
.info-item a { color: var(--text); transition: color .3s; }
.info-item a:hover { color: var(--gold-light); }
.contact-socials {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.social-card {
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 24px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  background: var(--dark2);
  transition: transform .3s var(--ease-bounce), border-color .3s, box-shadow .3s;
}
.social-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.4); }
.social-card i { font-size: 1.5rem; margin-bottom: 10px; }
.social-card span { font-weight: 600; font-size: .95rem; color: var(--white); }
.social-card small { font-size: .78rem; color: var(--text-muted); margin-top: 3px; }
.social-card.wa { border-color: rgba(37,211,102,.25); }
.social-card.wa:hover { border-color: rgba(37,211,102,.5); box-shadow: 0 16px 40px rgba(37,211,102,.1); }
.social-card.wa i { color: #25d366; }
.social-card.ig { border-color: rgba(225,48,108,.25); }
.social-card.ig:hover { border-color: rgba(225,48,108,.5); box-shadow: 0 16px 40px rgba(225,48,108,.1); }
.social-card.ig i { color: #e1306c; }
.social-card.tt { border-color: rgba(255,0,80,.25); }
.social-card.tt:hover { border-color: rgba(255,0,80,.5); box-shadow: 0 16px 40px rgba(255,0,80,.1); }
.social-card.tt i { color: #ff0050; }
.social-card.fb { border-color: rgba(66,103,178,.25); }
.social-card.fb:hover { border-color: rgba(66,103,178,.5); box-shadow: 0 16px 40px rgba(66,103,178,.1); }
.social-card.fb i { color: #4267b2; }



/* ======================================
   FOOTER
   ====================================== */
.footer {
  background: #080705;
  border-top: 1px solid rgba(201,147,90,.1);
  padding: 60px 48px 0;
}
.footer-top {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 700;
  background: linear-gradient(90deg, var(--gold-pale), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: .9rem; color: var(--text-muted);
  line-height: 1.7; max-width: 280px;
  margin-bottom: 24px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  transition: background .3s, border-color .3s, transform .3s var(--ease-bounce);
}
.footer-social a:hover {
  background: rgba(201,147,90,.2);
  border-color: rgba(201,147,90,.5);
  transform: translateY(-3px);
}
.footer-links h4, .footer-contact-info h4 {
  font-family: var(--font-display);
  font-size: .95rem; font-weight: 700;
  color: var(--white); margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201,147,90,.2);
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links ul li a {
  font-size: .87rem; color: var(--text-muted);
  transition: color .3s, padding-left .3s;
}
.footer-links ul li a:hover { color: var(--gold-light); padding-left: 6px; }
.footer-contact-info p {
  font-size: .87rem; color: var(--text-muted);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
}
.footer-contact-info i { color: var(--gold); width: 16px; }
.footer-contact-info a { color: var(--text-muted); transition: color .3s; }
.footer-contact-info a:hover { color: var(--gold-light); }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: .8rem; color: var(--text-muted);
  letter-spacing: .04em;
}
.footer-bottom a { color: var(--gold-light); transition: color .3s; }
.footer-bottom a:hover { color: var(--gold-pale); }



/* ======================================
   POPUP
   ====================================== */
.popup-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.8);
  backdrop-filter: blur(10px);
  z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s;
}
.popup-overlay.active { opacity: 1; visibility: visible; }
.popup-card {
  background: var(--dark2);
  border: 1px solid rgba(201,147,90,.25);
  border-radius: 24px;
  padding: 40px 36px;
  max-width: 400px; width: 100%;
  text-align: center;
  position: relative;
  transform: translateY(30px) scale(.97);
  transition: transform .4s var(--ease-bounce);
  box-shadow: 0 32px 80px rgba(0,0,0,.6);
}
.popup-overlay.active .popup-card { transform: translateY(0) scale(1); }
.popup-close {
  position: absolute; top: 16px; right: 16px;
  width: 34px; height: 34px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  color: var(--text); font-size: .85rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .3s, transform .3s var(--ease-bounce);
}
.popup-close:hover { background: rgba(255,255,255,.15); transform: scale(1.1) rotate(90deg); }
.popup-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--gold-pale), var(--gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--dark);
  margin: 0 auto 20px;
}
.popup-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  color: var(--white); margin-bottom: 12px;
}
.popup-card h3 span { color: var(--gold-light); }
.popup-card p {
  font-size: .9rem; color: var(--text-muted);
  line-height: 1.6; margin-bottom: 24px;
}
.popup-contact {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  margin-bottom: 24px;
}
.popup-wa {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  background: rgba(37,211,102,.15);
  border: 1px solid rgba(37,211,102,.3);
  border-radius: 12px;
  color: #25d366;
  font-weight: 600; font-size: .95rem;
  transition: background .3s, transform .3s var(--ease-bounce);
}
.popup-wa:hover { background: rgba(37,211,102,.25); transform: scale(1.03); }
.popup-contact small { font-size: .8rem; color: var(--text-muted); }
.popup-btn {
  width: 100%;
  justify-content: center;
}

/* ======================================
   SCROLLBAR
   ====================================== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: rgba(201,147,90,.4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(201,147,90,.7); }

/* ======================================
   MOBILE — COMPREHENSIVE FIX
   ====================================== */
@media (max-width: 768px) {

  /* --- HERO --- */
  .hero { min-height: 100svh; flex-direction: column; justify-content: flex-end; }
  .hero-content {
    padding: 80px 20px 32px;
    width: 100%;
    display: flex; flex-direction: column; align-items: center;
  }
  .hero-tag { font-size: .72rem; padding: 6px 16px; margin-bottom: 20px; }
  .hero-title { font-size: clamp(3.2rem, 16vw, 5rem); gap: 2px; }
  .hero-sub {
    font-size: .9rem;
    padding: 0 8px;
    margin-bottom: 28px;
  }
  .hero-sub br { display: none; }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%; max-width: 300px;
    gap: 12px;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    justify-content: center;
    width: 100%;
  }
  .hero-stats {
    position: relative;
    width: 100%;
    border-radius: 0;
    border-left: none; border-top: 1px solid rgba(201,147,90,.15);
    justify-content: space-around;
    flex-shrink: 0;
  }
  .stat { padding: 16px 12px; }
  .stat-num { font-size: 1.4rem; }
  .stat-label { font-size: .65rem; }
  .hero-scroll { display: none; }

  /* --- MARQUEE --- */
  .marquee-strip { padding: 12px 0; }
  .marquee-track span { font-size: .78rem; }

  /* --- ABOUT --- */
  .about-section { padding: 60px 20px; }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-img-wrap {
    display: flex; justify-content: center;
  }
  .about-img-frame {
    max-width: 280px;
    aspect-ratio: 3/4;
    margin: 0 auto;
  }
  .about-img-badge {
    left: 50%; transform: translateX(-50%);
    bottom: -16px;
    white-space: nowrap;
  }
  .about-img-accent { display: none; }
  .about-text {
    text-align: center;
    padding-top: 24px;
  }
  .about-text .section-label { display: block; text-align: center; }
  .about-pills { justify-content: center; }
  .about-text .btn-primary { display: inline-flex; }

  /* --- MENU --- */
  .menu-section { padding: 60px 16px; }
  .menu-header { margin-bottom: 36px; }
  .menu-header .section-sub { font-size: .88rem; padding: 0 8px; }
  .menu-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .card-img-wrap { aspect-ratio: 1; }
  .card-body { padding: 12px 12px 14px; }
  .card-top h3 { font-size: .92rem; }
  .card-stars { font-size: .65rem; }
  .card-desc { display: none; }
  .card-footer { gap: 6px; }
  .card-price { font-size: .95rem; }
  .btn-order {
    font-size: .75rem;
    padding: 7px 11px;
    gap: 4px;
  }
  .btn-order i { font-size: .75rem; }
  /* Hide overlay on mobile — tap doesn't support hover */
  .card-overlay { display: none; }

  /* --- PROMO --- */
  .promo-section { padding: 60px 20px; }
  .promo-section::before { display: none; }
  .promo-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .promo-text {
    display: flex; flex-direction: column; align-items: center;
    order: 2;
  }
  .promo-visual { order: 1; }
  .promo-text p { max-width: 300px; }
  .promo-circle { width: 160px; height: 160px; }
  .promo-price { font-size: 1.8rem; }

  /* --- CONTACT --- */
  .contact-section { padding: 60px 20px; }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-text { text-align: center; }
  .contact-text .section-label { display: block; text-align: center; }
  .contact-text p { margin-left: auto; margin-right: auto; }
  .contact-info { align-items: center; }
  .info-item { font-size: .88rem; }
  .contact-socials {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .social-card { padding: 18px 14px; }
  .social-card i { font-size: 1.3rem; margin-bottom: 8px; }
  .social-card span { font-size: .88rem; }
  .social-card small { font-size: .73rem; }

  /* --- FOOTER --- */
  .footer { padding: 48px 20px 0; }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 36px;
  }
  .footer-brand p { max-width: 100%; }
  .footer-brand { text-align: center; }
  .footer-logo { text-align: center; }
  .footer-social { justify-content: center; }
  .footer-links, .footer-contact-info { text-align: center; }
  .footer-links ul { align-items: center; }
  .footer-contact-info p { justify-content: center; }
  .footer-bottom { padding: 16px 0 20px; }
  .footer-bottom p { font-size: .75rem; line-height: 1.6; }

  /* --- POPUP --- */
  .popup-overlay { padding: 16px; align-items: flex-end; }
  .popup-card {
    padding: 32px 24px 28px;
    border-radius: 24px 24px 20px 20px;
    max-width: 100%;
    transform: translateY(60px) scale(1);
  }
  .popup-overlay.active .popup-card { transform: translateY(0) scale(1); }
  .popup-card h3 { font-size: 1.1rem; }
  .popup-wa { font-size: .88rem; padding: 12px 18px; width: 100%; justify-content: center; }
  .popup-btn { font-size: .88rem; }

  /* --- SECTION TITLE on mobile --- */
  .section-title { font-size: clamp(1.8rem, 8vw, 2.5rem); }

  /* --- BUTTONS full width on small screens --- */
  .btn-primary, .btn-ghost { font-size: .88rem; padding: 13px 22px; }
}

@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }
  /* Bigger tap targets */
  .btn-order, .btn-primary, .btn-ghost, .nav-link, .social-card, .popup-close {
    -webkit-tap-highlight-color: transparent;
  }
  .btn-order { min-height: 36px; }
  /* Make sure nothing overflows horizontally */
  section, footer { max-width: 100vw; overflow-x: hidden; }
}

@media (max-width: 380px) {
  .hero-title { font-size: 3rem; }
  .menu-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .card-body { padding: 10px; }
  .card-top h3 { font-size: .82rem; }
  .btn-order { padding: 6px 8px; font-size: .7rem; }
  .stat { padding: 14px 8px; }
  .stat-num { font-size: 1.2rem; }
  .stat-divider { display: none; }
  .contact-socials { grid-template-columns: 1fr 1fr; }
}
