/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  /* Brand palette */
  --bg:         #100A04;
  --bg-2:       #1A1008;
  --bg-card:    #221408;
  --bg-card-2:  #2A1A0A;
  --gold:       #C4960A;
  --gold-2:     #E8B40E;
  --gold-dim:   #7A5C05;
  --mint:       #4CAF7D;
  --mint-dim:   #2E7A52;
  --burgundy:   #5C1A1A;
  --burgundy-2: #7A2020;
  --cream:      #F0E6CC;
  --cream-2:    #C8B898;
  --cream-3:    #7A6A52;
  --line:       rgba(196, 150, 10, 0.18);
  --line-light: rgba(240, 230, 204, 0.10);

  /* Schedule section (mustard bg like in the image) */
  --sched-bg:   #C4960A;
  --sched-bg-2: #B08908;

  /* Typography */
  --display:    'Bebas Neue', 'Arial Black', sans-serif;
  --sans:       'Inter', system-ui, sans-serif;
  --condensed:  'Oswald', 'Arial Narrow', sans-serif;

  /* Spacing */
  --gutter:     clamp(1rem, 4vw, 2rem);
  --container:  1200px;

  /* Easings */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* =============================================================
   2. Reset & Base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  background: var(--bg);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; object-fit: cover; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.0; }
em { font-style: italic; }
ul, ol { list-style: none; }
::selection { background: var(--gold); color: var(--bg); }
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--cream); color: var(--bg);
  z-index: 9999; border-radius: 8px; font-weight: 500; font-size: .9rem;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.kicker {
  font-family: var(--condensed);
  font-size: clamp(.75rem, 1.2vw, .875rem);
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.kicker-dark { color: var(--burgundy); }

.section {
  padding-block: clamp(4rem, 10vw, 8rem);
  position: relative;
}

/* Reveal animation targets */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
/* Defensive: never let data-split elements stay hidden */
.reveal[data-split] {
  opacity: 1;
  transform: none;
}

/* =============================================================
   4. Buttons
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  font-family: var(--condensed);
  font-size: clamp(.9rem, 1.5vw, 1rem);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: transform .25s var(--ease-out),
              box-shadow .25s var(--ease-out),
              background .2s, color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: var(--gold);
  color: var(--bg);
  box-shadow: 0 0 0 rgba(196,150,10,0);
}
.btn-gold:hover {
  background: var(--gold-2);
  box-shadow: 0 8px 30px rgba(196,150,10,.4);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(240,230,204,.3);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-lg  { padding: .95rem 2.2rem; font-size: 1rem; }
.btn-xl  { padding: 1.1rem 2.8rem; font-size: 1.1rem; }

.btn-arrow { transition: transform .25s var(--ease-bounce); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* =============================================================
   5. Splash
   ============================================================= */
.splash {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s var(--ease-out), clip-path .6s var(--ease-out);
  /* CSS safety: auto-hide at 4.5s if JS fails */
  animation: splashSafety .01s 4.5s forwards;
}
@keyframes splashSafety {
  to { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); }
}
.splash.is-out {
  opacity: 0;
  pointer-events: none;
  clip-path: inset(0 0 100% 0);
}
.splash-inner {
  text-align: center;
}
.splash-logo-text { display: none; } /* replaced by .splash-logo-img */
.splash-bar {
  width: 0;
  height: 3px;
  background: var(--gold);
  margin: 1rem auto 0;
  border-radius: 2px;
  animation: splashBarGrow 1.6s var(--ease-out) .3s forwards;
}
@keyframes splashBarGrow {
  to { width: 100%; }
}

/* =============================================================
   6. Navigation
   ============================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 800;
  padding-block: 1.1rem;
  transition: background .4s var(--ease-out), padding .4s var(--ease-out),
              box-shadow .4s;
}
.nav.is-solid {
  background: rgba(16, 10, 4, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding-block: .75rem;
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.nav-brand {
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: .08em;
  line-height: 1;
  color: var(--cream);
  transition: color .2s;
}
.nav-brand:hover { color: var(--gold); }
.nav-brand-bistro { color: var(--gold); }

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-family: var(--condensed);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream-2);
  position: relative;
  transition: color .2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width .3s var(--ease-out);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { font-size: .85rem; padding: .55rem 1.25rem; }

@media (min-width: 720px) {
  .nav-links { display: flex; }
}

/* =============================================================
   6b. Logo images
   ============================================================= */
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  transition: opacity .2s;
}
.nav-logo-img:hover { opacity: .85; }

.hero-logo-img {
  width: clamp(180px, 40vw, 340px);
  height: auto;
  display: block;
  margin-inline: auto;
  filter: drop-shadow(0 0 40px rgba(196,150,10,.4));
}

.splash-logo-img {
  width: clamp(140px, 35vw, 240px);
  height: auto;
  display: block;
  margin-inline: auto;
  margin-bottom: 1.25rem;
}

.footer-logo-img {
  height: 52px;
  width: auto;
  display: block;
  margin-bottom: .4rem;
}

/* =============================================================
   7. Hero
   ============================================================= */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg);
}

/* Fire particles layer */
.fire-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: .04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(16,10,4,0.5) 70%, rgba(16,10,4,0.9) 100%),
    linear-gradient(180deg, rgba(16,10,4,0.6) 0%, transparent 25%, transparent 75%, rgba(16,10,4,0.8) 100%);
}

.hero-inner {
  position: relative;
  z-index: 4;
  text-align: center;
  padding-inline: var(--gutter);
  padding-top: 6rem;
  padding-bottom: 4rem;
  max-width: 900px;
  margin-inline: auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--condensed);
  font-size: clamp(.75rem, 1.3vw, .875rem);
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
}
.hero-dot {
  width: 8px; height: 8px;
  background: var(--mint);
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.7); }
}

/* Logo box — replicates the brand identity */
.hero-logo-wrap {
  margin-bottom: 2rem;
  opacity: 0;
  transform: scale(.9);
}
.hero-logo-box {
  display: inline-block;
  position: relative;
  padding: .6rem 1.4rem;
  border: 3px solid var(--gold);
  line-height: 1;
}
.hero-logo-don {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  letter-spacing: .15em;
  color: var(--cream);
}
.hero-logo-bistro {
  display: block;
  font-family: var(--display);
  font-size: clamp(3rem, 9vw, 7rem);
  letter-spacing: .08em;
  color: var(--gold);
  line-height: .85;
  margin-top: -.1em;
}
.hero-logo-border {
  position: absolute;
  inset: -6px;
  border: 1.5px solid rgba(196,150,10,.3);
  pointer-events: none;
}

/* Decorative burger icon */
.hero-logo-creature {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}
.burger-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.bun-top, .bun-bot {
  width: 44px; height: 14px;
  background: var(--gold);
  border-radius: 20px 20px 4px 4px;
}
.bun-bot { border-radius: 4px 4px 20px 20px; }
.patty {
  width: 48px; height: 10px;
  background: var(--burgundy-2);
  border-radius: 2px;
}
.cheese {
  width: 50px; height: 5px;
  background: var(--gold-2);
  opacity: .8;
}

/* Hero headline */
.hero-title {
  font-family: var(--display);
  font-size: clamp(2.8rem, 8vw, 7rem);
  letter-spacing: .04em;
  color: var(--cream);
  line-height: .95;
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(30px);
}
.hero-title em {
  color: var(--gold);
  font-style: italic;
}
.hero-sub {
  font-size: clamp(.9rem, 1.5vw, 1.05rem);
  color: var(--cream-2);
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: var(--cream-3);
  font-family: var(--condensed);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: 0;
  animation: scrollHintReveal 1s var(--ease-out) 2.5s forwards;
}
@keyframes scrollHintReveal { to { opacity: 1; } }
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLinePulse 2s ease-in-out infinite;
}
@keyframes scrollLinePulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(.6); opacity: .4; }
}

/* =============================================================
   8. Fire Particle System
   ============================================================= */
.ember {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: emberRise linear forwards;
}
@keyframes emberRise {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: .9; }
  50%  { transform: translateY(-40vh) translateX(var(--drift)) scale(.7); opacity: .7; }
  100% { transform: translateY(-85vh) translateX(var(--drift2)) scale(.1); opacity: 0; }
}

/* =============================================================
   9. Marquee
   ============================================================= */
.marquee-wrap {
  overflow: hidden;
  background: var(--gold);
  padding-block: .55rem;
  position: relative;
  z-index: 10;
}
.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: var(--display);
  font-size: clamp(.9rem, 2vw, 1.2rem);
  letter-spacing: .15em;
  color: var(--bg);
  padding-inline: 1.2rem;
}
.marquee-track .sep {
  color: var(--burgundy);
  padding-inline: 0;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}

/* =============================================================
   10. Burgers Section
   ============================================================= */
.burgers { background: var(--bg-2); }

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-title {
  font-family: var(--display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: .03em;
  color: var(--cream);
  line-height: .95;
  margin-bottom: .75rem;
}
.section-title em {
  color: var(--gold);
  font-style: italic;
}
.section-title-dark { color: var(--bg); }
.section-desc {
  font-size: 1rem;
  color: var(--cream-2);
  max-width: 480px;
  margin-inline: auto;
}

.burgers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.burger-card {
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .35s var(--ease-out),
              box-shadow .35s var(--ease-out),
              border-color .35s;
  opacity: 0;
  transform: translateY(40px);
}
.burger-card.is-visible {
  opacity: 1;
  transform: none;
}
.burger-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(196,150,10,.18), 0 4px 16px rgba(0,0,0,.5);
  border-color: rgba(196,150,10,.4);
}

.burger-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.burger-card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-out), filter .5s;
  filter: saturate(.9) brightness(.85);
}
.burger-card:hover .burger-card-img-wrap img {
  transform: scale(1.06);
  filter: saturate(1.1) brightness(.95);
}
.burger-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16,10,4,.7) 0%, transparent 60%);
}
.burger-tag {
  position: absolute;
  top: .75rem; right: .75rem;
  font-family: var(--condensed);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  background: var(--gold);
  color: var(--bg);
  border-radius: 4px;
}

.burger-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
}
.burger-name {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: .04em;
  color: var(--cream);
  margin-bottom: .5rem;
}
.burger-desc {
  font-size: .9rem;
  color: var(--cream-2);
  line-height: 1.5;
  margin-bottom: 1rem;
}
.burger-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.burger-price {
  font-family: var(--display);
  font-size: 1.8rem;
  letter-spacing: .06em;
  color: var(--gold);
}
.burger-arrow {
  font-size: 1.2rem;
  color: var(--gold-dim);
  transition: transform .25s var(--ease-bounce), color .25s;
}
.burger-card:hover .burger-arrow {
  transform: translateX(6px);
  color: var(--gold);
}

.burgers-cta {
  text-align: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

@media (min-width: 540px) {
  .burgers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) {
  .burgers-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* =============================================================
   11. Schedule Section
   ============================================================= */
.schedule {
  padding-block: clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}
.schedule-bg {
  position: absolute;
  inset: 0;
  background: var(--sched-bg);
  z-index: 0;
}
.schedule-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(176,137,8,.6) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 90%, rgba(92,26,26,.4) 0%, transparent 50%);
}
.schedule .container { position: relative; z-index: 1; }

.schedule-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.schedule-header .section-title-dark { color: var(--bg); }
.schedule-header .section-title-dark em { color: var(--burgundy); font-style: italic; }

.schedule-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
  justify-content: center;
}

.sched-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  width: clamp(72px, 12vw, 100px);
  height: clamp(72px, 12vw, 100px);
  border-radius: 50%;
  background: var(--burgundy);
  border: 2.5px solid rgba(92,26,26,.5);
  cursor: default;
  transition: transform .3s var(--ease-bounce),
              box-shadow .3s var(--ease-out),
              background .3s;
  opacity: 0;
  transform: scale(.7);
}
.sched-day.is-visible {
  opacity: 1;
  transform: scale(1);
}
.sched-day:hover:not(.closed) {
  background: var(--burgundy-2);
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(92,26,26,.5);
}
.sched-day.closed {
  background: transparent;
  border-color: rgba(92,26,26,.7);
  border-width: 2.5px;
  border-style: solid;
}
.sched-day.closed .sched-letter { color: var(--burgundy); }
.sched-day.closed .sched-hours  { color: var(--burgundy); font-size: .65rem; }

.sched-letter {
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: .08em;
  color: var(--mint);
  line-height: 1;
}
.sched-hours {
  font-family: var(--condensed);
  font-size: clamp(.62rem, 1.2vw, .78rem);
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--mint);
  text-align: center;
  line-height: 1.2;
}

@media (min-width: 720px) {
  .schedule-inner { flex-direction: row; align-items: center; gap: 3rem; }
  .schedule-header { flex: 0 0 280px; }
  .schedule-grid { flex: 1; justify-content: flex-start; }
}

/* =============================================================
   12. About / Story
   ============================================================= */
.about { background: var(--bg); }

.about-grid {
  display: grid;
  gap: 3rem;
}
.about-text p {
  font-size: clamp(.95rem, 1.4vw, 1.05rem);
  color: var(--cream-2);
  margin-bottom: 1rem;
  max-width: 540px;
}
.about-text .btn { margin-top: .75rem; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: border-color .3s, box-shadow .3s;
}
.stat-card:hover {
  border-color: var(--gold-dim);
  box-shadow: 0 4px 20px rgba(196,150,10,.12);
}
.stat-num {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  letter-spacing: .05em;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .4rem;
}
.stat-label {
  font-family: var(--condensed);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream-3);
}

@media (min-width: 960px) {
  .about-grid { grid-template-columns: 1fr 1fr; align-items: center; }
}

/* =============================================================
   13. Location
   ============================================================= */
.location { background: var(--bg-2); }

.location-grid {
  display: grid;
  gap: 3rem;
}
.location-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-block: 1.5rem;
}
.location-details li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .95rem;
  color: var(--cream-2);
}
.location-details a { color: var(--gold); }
.location-details a:hover { text-decoration: underline; }
.loc-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: .1rem; }

.location-social {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--condensed);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--cream-2);
  border: 1.5px solid var(--line);
  border-radius: 6px;
  padding: .5rem 1rem;
  transition: color .2s, border-color .2s, background .2s;
}
.social-btn:hover {
  color: var(--gold);
  border-color: var(--gold-dim);
  background: rgba(196,150,10,.06);
}

.location-map-wrap {
  min-height: 300px;
}
.map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 300px;
  background: var(--bg-card-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}
.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(196,150,10,.08) 0%, transparent 60%);
}
.map-pin {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-pin-dot {
  width: 16px; height: 16px;
  background: var(--gold);
  border-radius: 50%;
  position: relative;
  z-index: 2;
  animation: mapDotPulse 2.5s ease-in-out infinite;
}
@keyframes mapDotPulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.15); }
}
.map-pin-ring {
  position: absolute;
  width: 40px; height: 40px;
  border: 2px solid rgba(196,150,10,.4);
  border-radius: 50%;
  animation: mapRingExpand 2.5s ease-out infinite;
}
@keyframes mapRingExpand {
  0%   { transform: scale(.5); opacity: .8; }
  100% { transform: scale(2); opacity: 0; }
}
.map-label {
  font-family: var(--condensed);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream-2);
  text-align: center;
}
.map-btn { font-size: .8rem; padding: .5rem 1.25rem; }

.map-frame-wrap {
  width: 100%;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-card-2);
}
.map-frame-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: invert(90%) hue-rotate(180deg) saturate(.8) brightness(.85);
}
.map-btn-ext {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1rem;
  font-size: .85rem;
  padding: .55rem 1.25rem;
}

@media (min-width: 960px) {
  .location-grid { grid-template-columns: 1fr 1fr; align-items: start; }
}

/* =============================================================
   14. CTA Final
   ============================================================= */
.cta-final {
  background: var(--bg);
  text-align: center;
  overflow: hidden;
}
.cta-fire {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.cta-final .container { position: relative; z-index: 1; }

.cta-final-inner {
  max-width: 700px;
  margin-inline: auto;
}
.cta-title {
  font-family: var(--display);
  font-size: clamp(3rem, 9vw, 8rem);
  letter-spacing: .03em;
  color: var(--cream);
  line-height: .92;
  margin-bottom: 1.25rem;
}
.cta-title em { color: var(--gold); font-style: italic; }
.cta-sub {
  font-size: 1rem;
  color: var(--cream-2);
  margin-bottom: 2.5rem;
}

/* =============================================================
   15. Footer
   ============================================================= */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding-block: 2.5rem 1.5rem;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.footer-brand .footer-logo {
  font-family: var(--display);
  font-size: 1.6rem;
  letter-spacing: .08em;
  color: var(--cream);
}
.footer-brand .footer-logo strong { color: var(--gold); }
.footer-brand p {
  font-size: .85rem;
  color: var(--cream-3);
  margin-top: .3rem;
}
.footer-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.footer-links a {
  font-family: var(--condensed);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream-3);
  transition: color .2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-social {
  display: flex;
  gap: 1rem;
}
.footer-social a {
  color: var(--cream-3);
  transition: color .2s, transform .2s;
}
.footer-social a:hover { color: var(--gold); transform: translateY(-2px); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  font-size: .78rem;
  color: var(--cream-3);
  letter-spacing: .04em;
}

@media (min-width: 720px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

/* =============================================================
   15b. Combo badge
   ============================================================= */
.combo-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  margin-top: .75rem;
  background: var(--burgundy);
  border: 1.5px solid rgba(122,32,32,.6);
  border-radius: 6px;
  padding: .5rem 1.25rem;
}
.combo-text {
  font-family: var(--condensed);
  font-size: clamp(.75rem, 1.4vw, .9rem);
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--mint);
}
.combo-note {
  font-family: var(--condensed);
  font-size: .72rem;
  letter-spacing: .1em;
  color: var(--cream-2);
}

/* Combo pill on classic cards */
.burger-combo-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .28rem .75rem;
  background: var(--burgundy);
  color: var(--mint);
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: .06em;
  border-radius: 30px;
  margin-top: .5rem;
}

/* Updated classic card top layout */
.burger-card-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: .5rem;
  margin-bottom: .5rem;
}

/* Clásicas — 3 columns on desktop */
.clasicas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 540px) { .clasicas-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 960px) { .clasicas-grid { grid-template-columns: repeat(3,1fr); } }

/* =============================================================
   15c. Especiales section
   ============================================================= */
.especiales { background: var(--bg); }

.especiales-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 540px) { .especiales-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 960px) { .especiales-grid { grid-template-columns: repeat(3,1fr); } }

.esp-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  transition: transform .3s var(--ease-out),
              box-shadow .3s var(--ease-out),
              border-color .3s;
}
.esp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(196,150,10,.14);
  border-color: rgba(196,150,10,.35);
}

.esp-card-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.esp-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-out), filter .5s;
  filter: saturate(.85) brightness(.8);
}
.esp-card:hover .esp-card-img img {
  transform: scale(1.05);
  filter: saturate(1.05) brightness(.9);
}

.esp-card-body {
  padding: 1rem 1.25rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.esp-card-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: .5rem;
  margin-bottom: .4rem;
}
.esp-name {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  letter-spacing: .04em;
  color: var(--cream);
  line-height: 1;
}
.esp-price {
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: .06em;
  color: var(--gold);
  white-space: nowrap;
}
.esp-price--big { font-size: 2rem; }
.esp-desc {
  font-size: .85rem;
  color: var(--cream-2);
  line-height: 1.5;
  flex: 1;
}
.trophies { font-size: .9em; }

/* Champion card — spans full width */
.esp-card--champion {
  grid-column: 1 / -1;
  flex-direction: row;
  background: linear-gradient(135deg, var(--bg-card-2) 0%, #3A1A06 100%);
  border-color: rgba(196,150,10,.45);
  box-shadow: 0 4px 30px rgba(196,150,10,.1);
}
.esp-card--champion .esp-card-img {
  flex: 0 0 clamp(160px, 35%, 320px);
  aspect-ratio: auto;
  min-height: 200px;
}
.esp-card--champion .esp-card-body {
  padding: 1.5rem 1.75rem;
  justify-content: center;
}
.esp-card--champion .esp-name { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
.esp-card--champion .esp-desc { font-size: .95rem; max-width: 520px; }
.champion-label {
  font-family: var(--condensed);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: .75rem;
}
.champion-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(34,20,8,.8));
}
@media (max-width: 719px) {
  .esp-card--champion { flex-direction: column; }
  .esp-card--champion .esp-card-img { flex: none; aspect-ratio: 16/9; min-height: auto; }
  .champion-overlay { background: linear-gradient(to top, rgba(34,20,8,.8) 0%, transparent 50%); }
}

/* =============================================================
   15d. Extras block
   ============================================================= */
.extras-block {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.75rem 2rem;
  max-width: 560px;
}
.extras-title {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: .06em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.extras-list {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.extras-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: .92rem;
  color: var(--cream-2);
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--line);
}
.extras-list li:last-child { border-bottom: none; padding-bottom: 0; }
.extra-price {
  font-family: var(--display);
  font-size: 1.3rem;
  letter-spacing: .06em;
  color: var(--gold);
  white-space: nowrap;
}

/* =============================================================
   16. Back to top
   ============================================================= */
.back-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 700;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(196,150,10,.4);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .3s var(--ease-out),
              transform .3s var(--ease-out),
              background .2s,
              box-shadow .2s;
}
.back-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-top:hover {
  background: var(--gold-2);
  box-shadow: 0 6px 28px rgba(196,150,10,.55);
  transform: translateY(-3px);
}
.back-top:active { transform: translateY(0); }

/* =============================================================
   17. Reduced-motion (ONLY intrusive effects)
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .ember { display: none; }
  .scroll-line { animation: none; }
  .marquee-track { animation-duration: 60s; }
}
