/* ============================================================
   WonderWings Aruba — Cinematic Redesign
   ============================================================ */
:root {
  /* Cinematic palette — deep charcoal, buffalo orange, cream */
  --bg: #16100a;
  --bg-2: #1f160e;
  --surface: #2a1d12;
  --surface-2: #34241a;
  --line: rgba(255, 220, 180, 0.10);
  --line-strong: rgba(255, 220, 180, 0.22);

  --ink: #fff7ec;
  --ink-soft: #d8c8b0;
  --muted: #9b8b78;

  --buffalo: #ff5a1f;          /* the sauce */
  --buffalo-deep: #d83a0e;
  --buffalo-glow: #ff7a3a;
  --ember: #ffb45a;             /* warm highlight */
  --gold: #ffd27a;
  --cream: #fff3dc;

  --green: #4ade80;
  --whatsapp: #25d366;

  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.45);
  --shadow-md: 0 18px 48px rgba(0, 0, 0, 0.55);
  --shadow-glow: 0 30px 80px rgba(255, 90, 31, 0.25);

  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;

  --font-display: 'Anton', 'Bebas Neue', 'Inter', sans-serif;
  --font-serif: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-width: 0;
  background-image:
    radial-gradient(circle at 15% 0%, rgba(255, 90, 31, 0.08), transparent 50%),
    radial-gradient(circle at 85% 100%, rgba(255, 180, 90, 0.05), transparent 50%);
}
button, a, input, textarea, select { touch-action: manipulation; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: 0.005em;
  margin: 0 0 0.5rem;
  line-height: 0.95;
  font-weight: 400;
  text-transform: uppercase;
}
h1 { font-size: clamp(3rem, 9vw, 7rem); }
h2 { font-size: clamp(2.2rem, 5vw, 4rem); letter-spacing: -0.005em; }
h3 { font-size: 1.5rem; letter-spacing: 0.01em; }
h4 { font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase; font-family: var(--font-body); font-weight: 700; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 1.5rem; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--buffalo);
  margin: 0 0 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before, .eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--buffalo);
  display: inline-block;
}
.eyebrow.left::after, .eyebrow.right::before { display: none; }

.muted { color: var(--muted); }
.small { font-size: 0.85rem; }
.center { text-align: center; }
.accent { color: var(--buffalo); }
.serif-italic { font-family: var(--font-serif); font-style: italic; font-weight: 300; text-transform: none; letter-spacing: -0.02em; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: linear-gradient(to bottom, rgba(14, 10, 7, 0.85), rgba(14, 10, 7, 0));
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(14, 10, 7, 0.88);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: 0.7rem; text-decoration: none; font-weight: 700; color: var(--ink); }
.brand-logo {
  height: 46px; width: 46px; object-fit: contain; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #2a1d12, #0e0a07);
  padding: 3px;
  border: 1px solid var(--line-strong);
  box-shadow: 0 8px 24px rgba(255, 90, 31, 0.3);
}
.brand-mark {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--buffalo), var(--buffalo-deep));
  color: #fff; font-family: var(--font-display); font-size: 1.25rem;
  display: grid; place-items: center; box-shadow: 0 8px 24px rgba(255, 90, 31, 0.4);
}
.brand-text { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 0.04em; }
.brand-text .accent { color: var(--buffalo); }

.primary-nav { display: flex; gap: 2rem; }
.primary-nav a {
  text-decoration: none; font-weight: 600; color: var(--ink-soft);
  padding: 0.4rem 0; position: relative;
  font-size: 0.88rem; letter-spacing: 0.12em; text-transform: uppercase;
  transition: color 0.2s ease;
}
.primary-nav a:hover { color: var(--ink); }
.primary-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--buffalo);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.primary-nav a:hover::after { transform: scaleX(1); }

.cart-button {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--buffalo); color: #fff;
  padding: 0.65rem 1rem; border-radius: 999px;
  font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 24px rgba(255, 90, 31, 0.35);
}
.cart-button:hover { background: var(--buffalo-deep); transform: translateY(-1px); }
.cart-count {
  background: #fff; color: var(--buffalo-deep);
  border-radius: 999px; min-width: 22px; padding: 0 0.4rem;
  font-size: 0.72rem; font-weight: 800; text-align: center; line-height: 1.4;
}

/* ============================================================
   Cinematic Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 9rem 0 6rem;
}
.hero-video,
.hero-image {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -3;
}
.hero-image {
  animation: kenburns 9s ease-in-out infinite alternate;
  transform-origin: center 40%;
  filter: saturate(1.15) contrast(1.08);
}
@keyframes kenburns {
  0% { transform: scale(1.06) translate(0, 0); }
  100% { transform: scale(1.22) translate(-1.5%, -2%); }
}
/* Cinematic color grade + vignette */
.hero::before {
  content: "";
  position: absolute; inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse at 50% 35%, transparent 0%, rgba(14, 10, 7, 0.45) 70%, rgba(14, 10, 7, 0.92) 100%),
    linear-gradient(180deg, rgba(14, 10, 7, 0.55) 0%, rgba(14, 10, 7, 0.2) 30%, rgba(14, 10, 7, 0.55) 70%, rgba(14, 10, 7, 0.95) 100%);
  pointer-events: none;
}
/* Grain overlay */
.hero::after {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.7'/></svg>");
  animation: grain 1.2s steps(4) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0,0); }
  25% { transform: translate(-2%, 1%); }
  50% { transform: translate(1%, -2%); }
  75% { transform: translate(-1%, -1%); }
}
/* Letterbox bars */
.letterbox-top, .letterbox-bot {
  position: absolute; left: 0; right: 0; height: 56px;
  background: #000;
  z-index: 4;
  pointer-events: none;
  animation: letterbox-in 1.4s cubic-bezier(0.7, 0, 0.2, 1) 0.2s both;
}
.letterbox-top { top: 0; transform-origin: top; }
.letterbox-bot { bottom: 0; transform-origin: bottom; }
@keyframes letterbox-in {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ember);
  font-weight: 600;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fade-up 0.8s ease 0.6s forwards;
}
.hero-meta .dot { color: var(--buffalo); margin: 0 0.5rem; }
.hero-meta .timecode { font-variant-numeric: tabular-nums; color: var(--ink-soft); }

.hero-copy { max-width: 920px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--buffalo);
  font-weight: 700;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fade-up 0.8s ease 0.4s forwards;
}
.hero-eyebrow::before {
  content: ""; width: 40px; height: 1px;
  background: var(--buffalo);
}

.hero h1 {
  font-size: clamp(3.5rem, 11vw, 9rem);
  line-height: 0.88;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
  font-weight: 400;
  text-shadow: 0 6px 40px rgba(0, 0, 0, 0.5);
}
.hero h1 .line {
  display: block;
  overflow: hidden;
}
.hero h1 .line span {
  display: inline-block;
  transform: translateY(110%);
  animation: line-up 1.1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.hero h1 .line.l1 span { animation-delay: 0.7s; }
.hero h1 .line.l2 span { animation-delay: 0.9s; }
.hero h1 .line.l3 span { animation-delay: 1.1s; }
@keyframes line-up { to { transform: translateY(0); } }
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero h1 .sauced {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  text-transform: none;
  color: var(--buffalo);
  letter-spacing: -0.03em;
  position: relative;
  padding: 0 0.05em;
}
.hero h1 .sauced::before {
  content: "";
  position: absolute;
  inset: 0.05em -0.05em -0.1em;
  background: radial-gradient(ellipse at center, rgba(255, 90, 31, 0.4), transparent 70%);
  filter: blur(20px);
  z-index: -1;
}

.hero-lede {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.05rem, 1.6vw, 1.4rem);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 2rem 0 2.5rem;
  letter-spacing: -0.005em;
  opacity: 0;
  animation: fade-up 0.9s ease 1.4s forwards;
}
.hero-lede em { color: var(--ember); font-style: italic; }

.hero-cta {
  display: flex; flex-wrap: wrap; gap: 1rem;
  opacity: 0;
  animation: fade-up 0.9s ease 1.6s forwards;
}

.hero-perks {
  display: flex; flex-wrap: wrap; gap: 2rem;
  padding: 0; margin: 3rem 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  opacity: 0;
  animation: fade-up 0.9s ease 1.8s forwards;
}
.hero-perks li {
  display: flex; flex-direction: column; gap: 0.25rem;
}
.hero-perks .num {
  font-family: var(--font-display);
  font-size: 2rem; line-height: 1;
  color: var(--buffalo);
}
.hero-perks .lbl {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.hero-scroll {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  z-index: 5;
  opacity: 0;
  animation: fade-up 0.9s ease 2s forwards;
}
.hero-scroll::after {
  content: "";
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--buffalo), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-weight: 700; padding: 1rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
  font-family: var(--font-body);
}
.btn-primary {
  background: var(--buffalo); color: #fff;
  box-shadow: 0 14px 36px rgba(255, 90, 31, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.btn-primary:hover {
  background: var(--buffalo-deep);
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(255, 90, 31, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.04);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--ink-soft); }
.btn-block { width: 100%; justify-content: center; }
.btn:active { transform: translateY(0) scale(0.98); }
.btn-primary:disabled { background: #5a4a3c; box-shadow: none; cursor: not-allowed; color: var(--muted); }
.btn .arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================================
   Marquee strip
   ============================================================ */
.marquee {
  background: var(--buffalo);
  color: #fff;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 1rem 0;
  position: relative;
  z-index: 3;
}
.marquee-track {
  display: flex; gap: 3rem;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.05em;
  display: inline-flex; align-items: center; gap: 3rem;
}
.marquee-track .star { color: var(--gold); font-size: 1.1rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   Sections
   ============================================================ */
.section { padding: 7rem 0; position: relative; }
.section-alt {
  background: var(--bg-2);
  position: relative;
}
.section-alt::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(255, 90, 31, 0.06), transparent 60%);
  pointer-events: none;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}
.section-head h2 {
  margin-top: 0.5rem;
}
.section-head .serif-italic {
  display: inline-block;
}
.section-head p {
  color: var(--ink-soft);
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 1.15rem;
  line-height: 1.5;
  margin-top: 1rem;
}

/* ============================================================
   Sauce Heat-Meter (NEW functional feature)
   ============================================================ */
.heat-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.heat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.heat-card {
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.heat-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}
.heat-card .name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  margin: 0 0 0.5rem;
  color: var(--ink);
}
.heat-card .desc {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0 0 1rem;
  min-height: 2.4em;
  font-family: var(--font-body);
}
.heat-meter {
  display: flex; gap: 4px;
  margin-top: auto;
}
.heat-pip {
  flex: 1; height: 6px;
  border-radius: 999px;
  background: rgba(255, 220, 180, 0.1);
  transition: background 0.3s ease;
}
.heat-pip.lit { background: linear-gradient(90deg, var(--ember), var(--buffalo)); box-shadow: 0 0 8px rgba(255, 90, 31, 0.5); }
.heat-pip.lit.hot { background: var(--buffalo); box-shadow: 0 0 12px rgba(255, 90, 31, 0.8); }
.heat-pip.lit.nuclear { background: var(--buffalo-deep); box-shadow: 0 0 14px rgba(216, 58, 14, 1); }
.heat-label {
  display: flex; justify-content: space-between;
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.5rem; font-weight: 600;
}
.heat-card .heat-tag {
  position: absolute; top: 1.25rem; right: 1.25rem;
  font-family: var(--font-display);
  font-size: 0.85rem; letter-spacing: 0.08em;
  color: var(--buffalo);
}

/* ============================================================
   Menu
   ============================================================ */
.menu-tabs {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  justify-content: center; margin-bottom: 3rem;
}
.tab {
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: all 0.2s ease;
  font-family: var(--font-body);
}
.tab:hover { color: var(--ink); border-color: var(--line-strong); }
.tab.active {
  background: var(--buffalo); color: #fff; border-color: var(--buffalo);
  box-shadow: 0 8px 24px rgba(255, 90, 31, 0.35);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.menu-card {
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex; flex-direction: column; gap: 0.6rem;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}
.menu-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--buffalo), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.menu-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
}
.menu-card:hover::before { opacity: 1; }
.menu-card .emoji {
  font-size: 2.4rem; line-height: 1;
  filter: drop-shadow(0 4px 12px rgba(255, 90, 31, 0.3));
}
.menu-card h3 {
  margin: 0;
  font-size: 1.5rem;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.menu-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  flex: 1;
  line-height: 1.5;
}
.menu-card .row {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 0.75rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--line);
}
.menu-card .price {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--buffalo);
  letter-spacing: 0.02em;
}
.add-btn {
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  padding: 0.55rem 1.05rem;
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.15s ease, color 0.2s ease;
}
.add-btn:hover { background: var(--buffalo); color: #fff; transform: translateY(-1px); }

.tag {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 90, 31, 0.12);
  color: var(--ember);
  border: 1px solid rgba(255, 90, 31, 0.25);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.tag.spicy { background: rgba(216, 58, 14, 0.15); color: var(--buffalo); border-color: rgba(216, 58, 14, 0.3); }
.tag.veg { background: rgba(74, 222, 128, 0.12); color: var(--green); border-color: rgba(74, 222, 128, 0.3); }
.tag.popular { background: rgba(255, 210, 122, 0.12); color: var(--gold); border-color: rgba(255, 210, 122, 0.3); }
.tag.family { background: rgba(140, 180, 230, 0.12); color: #a8c6ee; border-color: rgba(140, 180, 230, 0.3); }

/* ============================================================
   Reviews
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

/* ============================================================
   Hours / Contact
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
  max-width: 480px;
  margin-top: 1.5rem;
}
.hours-table th, .hours-table td {
  text-align: left;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.hours-table th {
  color: var(--ink);
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.hours-table td { color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.open-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  background: rgba(74, 222, 128, 0.1);
  color: var(--green);
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(74, 222, 128, 0.25);
}
.open-status::before {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
  animation: pulse 2s infinite;
}
.open-status.closed { background: rgba(255, 90, 31, 0.1); color: var(--buffalo); border-color: rgba(255, 90, 31, 0.25); }
.open-status.closed::before { background: var(--buffalo); animation: none; box-shadow: none; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.hours-art { display: grid; place-items: center; }
.clock {
  position: relative; width: 280px; height: 280px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, var(--surface-2), var(--bg)),
    radial-gradient(circle, var(--surface), var(--bg));
  border: 2px solid var(--line-strong);
  box-shadow: var(--shadow-md), 0 0 60px rgba(255, 90, 31, 0.15), inset 0 0 40px rgba(0, 0, 0, 0.5);
}
.clock::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 1px dashed var(--line);
}
.clock .hand {
  position: absolute; left: 50%; bottom: 50%;
  transform-origin: bottom center;
  background: var(--ink);
  border-radius: 4px;
}
.clock .hand.hour { width: 5px; height: 70px; transform: translateX(-50%) rotate(40deg); }
.clock .hand.minute { width: 3px; height: 105px; background: var(--buffalo); transform: translateX(-50%) rotate(110deg); }
.clock .dot {
  position: absolute; left: 50%; top: 50%;
  width: 14px; height: 14px;
  background: var(--buffalo); border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 16px rgba(255, 90, 31, 0.8);
}

.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.5rem; }
.contact-list li { display: flex; flex-direction: column; gap: 0.3rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line); }
.contact-list li:last-child { border-bottom: 0; }
.contact-list strong {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--buffalo); font-weight: 700;
}
.contact-list a, .contact-list span {
  color: var(--ink); text-decoration: none; font-weight: 500;
  font-size: 1.05rem;
}
.contact-list a:hover { color: var(--buffalo); }

.contact-form, .checkout-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: grid; gap: 1rem;
}
.contact-form h3, .checkout-form h3 { margin: 0 0 0.5rem; color: var(--ink); }
label {
  display: grid; gap: 0.4rem;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
input[type="text"], input[type="email"], input[type="tel"], textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
input::placeholder, textarea::placeholder { color: var(--muted); }
input:focus, textarea:focus {
  outline: none;
  border-color: var(--buffalo);
  box-shadow: 0 0 0 3px rgba(255, 90, 31, 0.18);
}

.form-status { margin: 0; font-size: 0.9rem; color: var(--green); font-weight: 600; }

.map-embed { border: 1px solid var(--line); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: #060403;
  color: var(--ink-soft);
  padding: 5rem 0 2rem;
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}
.site-footer .brand { color: var(--ink); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}
.site-footer h4 { color: var(--ink); margin-bottom: 1rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.75rem; }
.site-footer a { text-decoration: none; color: var(--ink-soft); transition: color 0.2s ease; }
.site-footer a:hover { color: var(--buffalo); }
.footer-bottom {
  padding-top: 2rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom .credit { color: var(--muted); font-size: 0.85rem; }

/* ============================================================
   Cart Drawer & Modals (dark theme)
   ============================================================ */
.cart-drawer { position: fixed; inset: 0; z-index: 100; pointer-events: none; }
.cart-drawer[aria-hidden="false"] { pointer-events: auto; }
.cart-overlay {
  position: absolute; inset: 0;
  background: rgba(6, 4, 3, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0; transition: opacity 0.25s ease;
}
.cart-drawer[aria-hidden="false"] .cart-overlay { opacity: 1; }
.cart-panel {
  position: absolute; top: 0; right: 0; height: 100%;
  width: min(440px, 92vw);
  background: var(--bg-2);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.3s ease;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
  border-left: 1px solid var(--line);
}
.cart-drawer[aria-hidden="false"] .cart-panel { transform: translateX(0); }
.cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--line);
}
.cart-head h3 { margin: 0; }
.icon-btn {
  width: 38px; height: 38px; border-radius: 50%;
  font-size: 1.4rem; line-height: 1;
  display: grid; place-items: center;
  background: var(--surface); color: var(--ink);
  border: 1px solid var(--line);
  transition: all 0.2s ease;
}
.icon-btn:hover { background: var(--buffalo); color: #fff; border-color: var(--buffalo); }
.cart-body { flex: 1; overflow-y: auto; padding: 1rem 1.75rem; }
.cart-empty { color: var(--muted); text-align: center; margin: 3rem 0; font-style: italic; font-family: var(--font-serif); font-size: 1.1rem; }
.cart-item {
  display: grid; grid-template-columns: 44px 1fr auto; gap: 0.85rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.cart-item .ci-emoji { font-size: 1.7rem; text-align: center; }
.cart-item h4 {
  font-family: var(--font-body);
  font-size: 0.98rem; text-transform: none; letter-spacing: 0;
  margin: 0 0 0.2rem; color: var(--ink); font-weight: 600;
}
.cart-item .ci-meta { display: flex; align-items: center; gap: 0.6rem; font-size: 0.85rem; color: var(--muted); }
.qty { display: inline-flex; align-items: center; gap: 0.3rem; }
.qty button {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--surface); color: var(--ink);
  font-weight: 700; font-size: 1rem;
  display: grid; place-items: center;
  border: 1px solid var(--line);
}
.qty button:hover { background: var(--buffalo); color: #fff; border-color: var(--buffalo); }
.cart-item .ci-price { font-weight: 700; color: var(--buffalo); text-align: right; font-family: var(--font-display); font-size: 1.2rem; }
.cart-item .remove { font-size: 0.72rem; color: var(--buffalo); font-weight: 600; margin-top: 0.2rem; letter-spacing: 0.1em; text-transform: uppercase; }

.cart-foot {
  border-top: 1px solid var(--line);
  padding: 1.5rem 1.75rem;
  display: grid; gap: 1rem;
  background: var(--bg);
}
.cart-totals { display: grid; gap: 0.4rem; font-size: 0.95rem; color: var(--ink-soft); }
.cart-totals > div { display: flex; justify-content: space-between; }
.cart-totals .grand {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  padding-top: 0.6rem;
  border-top: 1px dashed var(--line);
}
.cart-totals .grand span:last-child { color: var(--buffalo); }

.modal { position: fixed; inset: 0; z-index: 110; display: grid; place-items: center; pointer-events: none; padding: 1rem; }
.modal[aria-hidden="false"] { pointer-events: auto; }
.modal-overlay {
  position: absolute; inset: 0;
  background: rgba(6, 4, 3, 0.78);
  backdrop-filter: blur(4px);
  opacity: 0; transition: opacity 0.2s ease;
}
.modal[aria-hidden="false"] .modal-overlay { opacity: 1; }
.modal-panel {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  width: min(560px, 92vw);
  max-height: 90vh; overflow-y: auto;
  border-radius: var(--radius-lg);
  padding: 2rem;
  transform: translateY(20px); opacity: 0;
  transition: transform 0.25s ease, opacity 0.2s ease;
  box-shadow: var(--shadow-md);
}
.modal[aria-hidden="false"] .modal-panel { transform: translateY(0); opacity: 1; }
.modal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.modal-head h3 { margin: 0; }
.order-type {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  display: flex; gap: 1.5rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--surface);
}
.order-type legend {
  padding: 0 0.4rem;
  font-weight: 700; color: var(--ink);
  font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.14em;
}
.order-type label {
  flex-direction: row; align-items: center; gap: 0.5rem;
  text-transform: none; letter-spacing: 0; font-size: 0.95rem;
}
.checkout-summary {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem; font-size: 0.92rem;
  color: var(--ink-soft);
}
.checkout-summary ul { list-style: none; padding: 0; margin: 0 0 0.6rem; display: grid; gap: 0.3rem; }
.checkout-summary .total {
  font-weight: 700; padding-top: 0.6rem;
  border-top: 1px dashed var(--line);
  display: flex; justify-content: space-between;
  color: var(--ink);
}
.order-success { text-align: center; padding: 1rem 0; }
.order-success h3 { font-size: 2rem; }

.customize-form { display: grid; gap: 1rem; }
.opt-group {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
  margin: 0;
  background: var(--surface);
}
.opt-group legend {
  padding: 0 0.5rem;
  font-weight: 700;
  color: var(--ink);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.opt-choices {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.5rem;
  margin-top: 0.4rem;
}
.opt-choice {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-sm);
  background: var(--bg);
  border: 1px solid var(--line);
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.15s ease;
  font-size: 0.9rem;
  text-transform: none; letter-spacing: 0;
}
.opt-choice:hover { border-color: var(--buffalo); color: var(--ink); }
.opt-choice input { accent-color: var(--buffalo); margin: 0; }
.opt-choice:has(input:checked) {
  background: rgba(255, 90, 31, 0.12);
  border-color: var(--buffalo);
  color: var(--ink);
}
.opt-hint { margin: 0.5rem 0 0; font-size: 0.78rem; color: var(--muted); }
.form-error { margin: 0; color: var(--buffalo); font-weight: 600; font-size: 0.88rem; min-height: 1.2em; }
.ci-opts { display: flex; flex-wrap: wrap; gap: 0.3rem 0.6rem; font-size: 0.78rem; color: var(--muted); margin: 0.1rem 0 0.3rem; }
.ci-opt strong { color: var(--ink-soft); font-weight: 600; }

.toast {
  position: fixed; left: 50%; bottom: 5rem;
  transform: translateX(-50%) translateY(20px);
  background: var(--buffalo); color: #fff;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0; pointer-events: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
  z-index: 200;
  box-shadow: 0 12px 36px rgba(255, 90, 31, 0.5);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* WhatsApp FAB */
.whatsapp-fab {
  position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--whatsapp); color: #fff;
  display: grid; place-items: center;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.5);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.whatsapp-fab::before {
  content: "";
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--whatsapp);
  opacity: 0;
  animation: ring 2.5s ease-out infinite;
}
@keyframes ring {
  0% { opacity: 0.6; transform: scale(0.9); }
  100% { opacity: 0; transform: scale(1.6); }
}
.whatsapp-fab:hover { transform: scale(1.08); box-shadow: 0 20px 48px rgba(37, 211, 102, 0.6); }

/* Hamburger */
.nav-actions { display: flex; align-items: center; gap: 0.6rem; }
.nav-toggle {
  display: none; width: 44px; height: 44px;
  border-radius: 12px; background: var(--surface);
  border: 1px solid var(--line);
  padding: 0; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.15s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Menu card image slot
   ============================================================ */
.menu-card .card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: linear-gradient(135deg, #2a1d12, #181109);
  margin: -0.25rem -0.25rem 0.5rem;
  display: grid; place-items: center;
}
.menu-card .card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.menu-card:hover .card-media img { transform: scale(1.06); }
.menu-card .card-media .emoji-fallback {
  font-size: 3.5rem;
  filter: drop-shadow(0 6px 16px rgba(255, 90, 31, 0.4));
  opacity: 0.85;
}
.menu-card .card-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(14, 10, 7, 0.7) 100%);
  pointer-events: none;
}

/* ============================================================
   Combo Builder
   ============================================================ */
.combo-section { background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%); }
.combo-builder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
}
.combo-step { display: flex; flex-direction: column; gap: 1rem; }
.combo-step-head { display: flex; align-items: baseline; gap: 0.85rem; }
.combo-num {
  font-family: var(--font-display);
  font-size: 2rem; color: var(--buffalo);
  letter-spacing: 0.02em;
}
.combo-step-head h3 { margin: 0; font-size: 1.15rem; letter-spacing: 0.04em; }
.combo-options { display: flex; flex-direction: column; gap: 0.5rem; }
.combo-flavors {
  max-height: 280px; overflow-y: auto;
  scrollbar-width: thin; scrollbar-color: var(--buffalo) transparent;
  padding-right: 4px;
}
.combo-flavors::-webkit-scrollbar { width: 6px; }
.combo-flavors::-webkit-scrollbar-thumb { background: var(--buffalo); border-radius: 3px; }
.combo-opt {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 1rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.15s ease;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.combo-opt:hover { border-color: var(--line-strong); color: var(--ink); }
.combo-opt.active {
  background: rgba(255, 90, 31, 0.12);
  border-color: var(--buffalo);
  color: var(--ink);
}
.combo-opt .price { font-family: var(--font-display); font-size: 1.05rem; color: var(--buffalo); letter-spacing: 0.02em; }
.combo-opt .heat-mini {
  display: inline-flex; gap: 2px; margin-left: 0.5rem;
}
.combo-opt .heat-mini span {
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(255, 220, 180, 0.15);
}
.combo-opt .heat-mini span.lit { background: var(--buffalo); }
.combo-summary {
  grid-column: 1 / -1;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; margin-top: 0.5rem;
  background: var(--bg-2);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  flex-wrap: wrap; gap: 1rem;
}
.combo-total { display: flex; flex-direction: column; gap: 0.2rem; }
.combo-total .lbl {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}
.combo-total .val {
  font-family: var(--font-display);
  font-size: 2rem; color: var(--buffalo);
  letter-spacing: 0.02em;
}

/* ============================================================
   Instagram grid
   ============================================================ */
.ig-section { background: var(--bg-2); }
.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
}
.ig-tile {
  position: relative;
  aspect-ratio: 1; overflow: hidden;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #2a1d12, #181109);
  display: block;
  text-decoration: none;
  border: 1px solid var(--line);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.ig-tile:hover { transform: translateY(-4px); border-color: var(--buffalo); }
.ig-tile .ig-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease, filter 0.3s ease;
  filter: saturate(1.1);
}
.ig-tile:hover .ig-img { transform: scale(1.08); filter: saturate(1.3); }
.ig-tile .ig-placeholder {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-size: 2.5rem;
  filter: drop-shadow(0 6px 16px rgba(255, 90, 31, 0.4));
  opacity: 0.6;
}
.ig-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(14, 10, 7, 0.7));
  opacity: 0; transition: opacity 0.3s ease;
}
.ig-tile:hover::after { opacity: 1; }
.ig-tile .ig-icon {
  position: absolute; right: 0.75rem; bottom: 0.75rem;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  color: #fff; opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.ig-tile:hover .ig-icon { opacity: 1; }

/* ============================================================
   Sticky mobile order bar
   ============================================================ */
.sticky-order {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 95;
  background: rgba(14, 10, 7, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line-strong);
  padding: 0.85rem 1rem max(0.85rem, env(safe-area-inset-bottom));
  display: none;
  gap: 0.6rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.sticky-order.visible { transform: translateY(0); }
.sticky-order .btn { flex: 1; padding: 0.85rem 1rem; font-size: 0.78rem; }
.sticky-order .btn-ghost { flex: 0 0 auto; padding: 0.85rem 1.25rem; }

/* ============================================================
   Reveal on scroll
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 860px) {
  .two-col, .footer-grid { grid-template-columns: 1fr; }
  .footer-grid { gap: 2rem; }
  .hero { padding: 7rem 0 4rem; }
  .hero h1 { font-size: clamp(2.8rem, 14vw, 5rem); }
  .hero-perks { gap: 1.25rem; flex-wrap: wrap; }
  .hero-perks li { flex: 1 1 40%; }
  .hero-cta { width: 100%; }
  .hero-cta .btn { flex: 1; }
  .letterbox-top, .letterbox-bot { height: 32px; }
  .hero-scroll { display: none; }
  .hero-meta { font-size: 0.6rem; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }

  .nav { height: 64px; }
  .brand-text { font-size: 1.15rem; }
  .nav-toggle { display: flex; }
  .cart-button { padding: 0.55rem 0.85rem; }
  .cart-button .cart-label { display: none; }

  .primary-nav {
    position: absolute; top: 64px; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--bg-2); border-bottom: 1px solid var(--line);
    padding: 0.5rem 1.25rem 1rem;
    box-shadow: var(--shadow-md);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .primary-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .primary-nav a { padding: 1rem 0.25rem; border-bottom: 1px solid var(--line); font-size: 0.95rem; }
  .primary-nav a:last-child { border-bottom: 0; }
  .primary-nav a::after { display: none; }

  .section { padding: 4rem 0; }
  .section-head { margin-bottom: 2.5rem; }
  .menu-grid, .reviews-grid, .heat-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }
  .menu-card { padding: 1.25rem; }
  .menu-tabs { gap: 0.4rem; margin-bottom: 1.5rem; flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; padding: 0.25rem; margin-left: -0.25rem; margin-right: -0.25rem; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .menu-tabs::-webkit-scrollbar { display: none; }
  .tab { flex: 0 0 auto; }

  .icon-btn { width: 44px; height: 44px; }
  .qty button { width: 32px; height: 32px; font-size: 1.05rem; }
  .add-btn { padding: 0.6rem 1rem; }

  .opt-choices { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
  .opt-choice { padding: 0.6rem 0.75rem; min-height: 40px; font-size: 0.95rem; }

  .modal-panel { padding: 1.4rem; border-radius: var(--radius); width: min(560px, 96vw); max-height: 92vh; }
  .order-type { flex-wrap: wrap; gap: 0.75rem 1.5rem; }
  .cart-panel { width: 100vw; }
  .cart-head, .cart-body, .cart-foot { padding-left: 1.25rem; padding-right: 1.25rem; }
  .cart-foot { padding-bottom: max(1.25rem, env(safe-area-inset-bottom)); }
  .whatsapp-fab { right: 1rem; bottom: max(1rem, env(safe-area-inset-bottom)); }
  .site-footer { padding-bottom: 5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .combo-builder { grid-template-columns: 1fr; padding: 1.5rem; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .sticky-order { display: flex; }
  .whatsapp-fab { display: none; }
  .site-footer { padding-bottom: 6rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.1rem; }
  h1 { font-size: clamp(2.4rem, 12vw, 3.8rem); }
  h2 { font-size: clamp(1.8rem, 8vw, 2.6rem); }
  .hero { padding: 6rem 0 3.5rem; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .hero-cta .btn { width: 100%; }
  .hero-perks { gap: 1rem; }
  .hero-perks .num { font-size: 1.6rem; }
  .btn { padding: 0.85rem 1.3rem; font-size: 0.78rem; }
  .section { padding: 3.5rem 0; }
  .menu-grid, .reviews-grid, .heat-grid { grid-template-columns: 1fr; }
  .menu-card .emoji { font-size: 2rem; }
  .modal-panel { padding: 1.25rem; }
  .contact-form, .checkout-form { padding: 1.4rem; }
  .clock { width: 220px; height: 220px; }
  .clock .hand.hour { height: 56px; }
  .clock .hand.minute { height: 84px; }
  .whatsapp-fab { width: 56px; height: 56px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .hero-image { animation: none !important; transform: none !important; }
}


/* ============================================================
   Heat Scale (compact horizontal lineup)
   ============================================================ */
.heat-scale {
  position: relative;
  padding: 1rem 0 0;
}
.heat-bar {
  position: relative;
  height: 14px;
  border-radius: 999px;
  margin: 0 0 2rem;
  overflow: hidden;
  border: 1px solid var(--line-strong);
}
.heat-bar-fill {
  position: absolute; inset: 0;
  background: linear-gradient(90deg,
    #f4d9b8 0%,
    #f0b27a 18%,
    #ec8b3f 38%,
    #e25c19 60%,
    #c83a08 82%,
    #7a1f06 100%);
}
.heat-bar-tick {
  position: absolute; top: -4px; bottom: -4px;
  width: 2px;
  background: rgba(0,0,0,0.4);
  transform: translateX(-50%);
}
.heat-axis {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  align-items: start;
}
.heat-col {
  position: relative;
  padding: 1rem 0.85rem;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--line);
  min-height: 100%;
  transition: transform .25s ease, border-color .25s ease;
}
.heat-col:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.heat-col-head {
  display: flex; align-items: baseline; gap: 0.5rem;
  margin-bottom: 0.65rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px dashed var(--line);
}
.heat-col-num {
  font-family: var(--font-display);
  font-size: 1.85rem;
  line-height: 1;
  color: var(--buffalo);
}
.heat-col[data-heat="0"] .heat-col-num { color: #f0b27a; }
.heat-col[data-heat="1"] .heat-col-num { color: #ec8b3f; }
.heat-col[data-heat="2"] .heat-col-num { color: #e25c19; }
.heat-col[data-heat="3"] .heat-col-num { color: var(--buffalo); }
.heat-col[data-heat="4"] .heat-col-num { color: var(--buffalo-deep); }
.heat-col[data-heat="5"] .heat-col-num { color: #ff3b1a; text-shadow: 0 0 12px rgba(255,59,26,.6); }
.heat-col-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.heat-col-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 0.35rem;
}
.heat-col-list li {
  display: flex; align-items: center; gap: 0.45rem;
  font-size: 0.85rem;
  color: var(--ink);
  font-family: var(--font-body);
  cursor: help;
  transition: color .2s ease, transform .2s ease;
}
.heat-col-list li:hover { color: var(--buffalo); transform: translateX(2px); }
.heat-col-list li .dot {
  width: 5px; height: 5px; border-radius: 999px;
  background: var(--buffalo);
  flex: none;
  opacity: 0.65;
}
.heat-foot {
  margin-top: 1.5rem;
  font-style: italic;
  font-family: var(--font-serif);
  letter-spacing: 0;
  text-transform: none;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .heat-axis { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
}
@media (max-width: 560px) {
  .heat-axis { grid-template-columns: repeat(2, 1fr); }
  .heat-col { padding: 0.85rem 0.7rem; }
  .heat-col-num { font-size: 1.5rem; }
  .heat-col-list li { font-size: 0.8rem; }
}

/* Hide the old heat-grid if it's still used somewhere */
.heat-grid { display: none !important; }

/* ============================================================
   Logo Stamp band (subtle brand accent)
   ============================================================ */
.logo-stamp-wrap {
  padding: 4rem 0 3rem;
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.logo-stamp {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  text-align: left;
}
.logo-stamp img {
  width: 92px; height: 92px;
  object-fit: contain;
  filter: drop-shadow(0 0 28px rgba(255, 90, 31, 0.35));
  animation: stampPulse 4s ease-in-out infinite;
}
@keyframes stampPulse {
  0%, 100% { filter: drop-shadow(0 0 22px rgba(255, 90, 31, 0.28)); }
  50%      { filter: drop-shadow(0 0 36px rgba(255, 90, 31, 0.5)); }
}
.logo-stamp-text {
  display: flex; flex-direction: column; gap: 0.25rem;
}
.logo-stamp-text .line-tag {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.logo-stamp-text .line-name {
  font-family: var(--font-display);
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--ink);
}
@media (max-width: 560px) {
  .logo-stamp { gap: 1rem; }
  .logo-stamp img { width: 64px; height: 64px; }
  .logo-stamp-text .line-name { font-size: 1.7rem; }
}

/* ============================================================
   Color polish — warmer surfaces, gentle gradient sections
   ============================================================ */
section.menu-section,
section.combo-section,
section.visit-section {
  background: linear-gradient(180deg, var(--bg) 0%, #1a1209 60%, var(--bg) 100%);
}
section.heat-section {
  background: linear-gradient(180deg, #1a1209 0%, var(--bg-2) 100%);
}
section.ig-section {
  background: linear-gradient(180deg, var(--bg-2) 0%, #1a1209 100%);
}

/* slightly warmer card surfaces */
.menu-card { background: linear-gradient(180deg, #2a1d12 0%, #34241a 100%); }
.menu-card:hover { border-color: rgba(255, 90, 31, 0.35); }

/* ============================================================
   Hero Round Logo (overlaid on banner)
   ============================================================ */
.hero-logo {
  width: clamp(180px, 22vw, 280px);
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 50%;
  margin: 0 0 1.6rem;
  display: block;
  background: radial-gradient(circle at 30% 30%, rgba(40, 26, 16, 0.85), rgba(0, 0, 0, 0.95));
  padding: 6px;
  border: 1px solid rgba(255, 210, 122, 0.45);
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.6),
    0 22px 60px rgba(0, 0, 0, 0.65),
    0 0 80px rgba(255, 90, 31, 0.4);
  opacity: 0;
  animation: fade-up 0.9s ease 0.35s forwards, stampPulse 4s ease-in-out 1.4s infinite;
}
@media (max-width: 480px) {
  .hero-logo { width: 150px; margin-bottom: 1.1rem; }
}

/* Both lines now use the serif italic 'sauced' style */
.hero h1 .line.l3 span.sauced { display: inline-block; }

/* ============================================================
   Logo stamp — round it
   ============================================================ */
.logo-stamp img {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(40, 26, 16, 0.85), rgba(0, 0, 0, 0.95));
  padding: 5px;
  border: 1px solid rgba(255, 210, 122, 0.4);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.6), 0 14px 40px rgba(0,0,0,0.5), 0 0 50px rgba(255,90,31,0.28);
}
.logo-stamp-text .line-name { font-size: 2.8rem; }
@media (max-width: 560px) {
  .logo-stamp img { width: 96px; height: 96px; }
  .logo-stamp-text .line-name { font-size: 2rem; }
}

/* ============================================================
   Cream accent — added to palette for contrast highlights
   ============================================================ */
:root {
  --cream-soft: #f5e6c8;
  --cream-warm: #ffeccd;
}
.eyebrow { color: var(--cream-soft); }
.eyebrow::before, .eyebrow::after { background: var(--cream-soft); opacity: 0.55; }
.section-head h2 .accent.serif-italic,
.section-head h2 .serif-italic.accent { color: var(--cream-warm); }
.hero h1 .sauced { color: var(--cream-warm); }
.hero h1 .sauced::before {
  background: radial-gradient(ellipse at center, rgba(245, 230, 200, 0.35), transparent 70%);
}
.hero-perks .lbl { color: var(--cream-soft); opacity: 0.75; }
.combo-total .val { color: var(--cream-warm); }
.menu-card .price { color: var(--cream-warm); }
.contact-list strong { color: var(--cream-soft); }
.heat-col-label { color: var(--cream-soft); opacity: 0.85; }

/* ============================================================
   Heat Scale — bigger flavor text
   ============================================================ */
.heat-section { padding: 4.5rem 0 4rem; }
.heat-section .section-head { margin-bottom: 2.25rem; }
.heat-scale { padding: 0.5rem 0 0; }
.heat-bar { height: 8px; margin: 0 0 1.25rem; }
.heat-axis { gap: 0.7rem; }
.heat-col {
  padding: 0.85rem 0.85rem 0.95rem;
  border-radius: 12px;
}
.heat-col-head {
  margin-bottom: 0.55rem;
  padding-bottom: 0.45rem;
  gap: 0.5rem;
}
.heat-col-num { font-size: 1.5rem; }
.heat-col-label { font-size: 0.7rem; letter-spacing: 0.16em; }
.heat-col-list { gap: 0.32rem; }
.heat-col-list li {
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 500;
  color: var(--ink);
}
.heat-col-list li .dot { width: 5px; height: 5px; }
.heat-foot { margin-top: 1rem; font-size: 0.95rem; }

@media (max-width: 900px) {
  .heat-axis { grid-template-columns: repeat(3, 1fr); gap: 0.55rem; }
  .heat-col-num { font-size: 1.3rem; }
  .heat-col-list li { font-size: 0.92rem; }
}
@media (max-width: 560px) {
  .heat-axis { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .heat-col { padding: 0.7rem 0.7rem 0.75rem; }
  .heat-col-num { font-size: 1.15rem; }
  .heat-col-list li { font-size: 0.88rem; }
}

/* ============================================================
   Marquee — thinner
   ============================================================ */
.marquee { padding: 0.45rem 0; }
.marquee-track span { font-size: 1rem; gap: 2.25rem; }
.marquee-track .star { font-size: 0.85rem; }
