/* ============================================================
   BBQ HOUSE — Global stylesheet
   Brand:    "Um Mundo no Prato" · Maputo · since 2019
   Palette:  bg #0a0602 · text #ffffff · fire only, no gold accent
   Type:     Bebas Neue (major headings) · DM Sans 300/400 (body)
   ============================================================ */

:root {
  --nav-h: 88px;                 /* reserved space so nothing tucks under nav (sized to the brand logo) */
  --body: rgba(255, 255, 255, 0.8);   /* readable body text (~80% white) */
  --body-soft: rgba(255, 255, 255, 0.7);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  background: #0a0602;
  color: #ffffff;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

/* ---------- Fire canvas (fixed, behind everything) ---------- */
#fire-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

.nav,
main,
.site-footer {
  position: relative;
  z-index: 2;
}

/* ============================================================
   NAVIGATION — fixed, transparent, full width
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px;
  z-index: 50;
  background: transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

/* Once scrolled, the nav gets a solid background so page content can never
   show through beneath the fixed bar (e.g. brand over a menu row). */
.nav.is-scrolled {
  background: #0a0602;
  border-bottom-color: rgba(255, 255, 255, 0.07);
}

.nav__brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 21px;
  letter-spacing: 5px;
  color: #ffffff;
  line-height: 1;
  display: flex;
  align-items: center;
}

/* Real logo (replaces the text wordmark) — the principal brand mark.
   Cropped asset (342×369) so the visible emblem fills its box. */
.nav__logo {
  display: block;
  height: 64px;          /* ≈ 59px wide — prominent but balanced in an 88px nav */
  width: auto;
}

.site-footer__brand-logo {
  display: block;
  height: 54px;          /* clearer official presence without dominating */
  width: auto;
  opacity: 0.92;
}

/* EN / PT language switcher (subtle, text only, no flags). */
.nav__lang {
  display: flex;
  align-items: center;
  gap: 7px;
}

.nav__lang a {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.3s ease;
}

.nav__lang a:hover,
.nav__lang a.is-active {
  color: #ffffff;
}

.nav__lang-sep {
  color: rgba(255, 255, 255, 0.25);
  font-size: 10px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav__links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;        /* reduced from 3px for readability */
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.nav__links a:hover,
.nav__links a.is-active {
  color: #ffffff;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 60;            /* stays above the drawer (z-index 45) */
}

.nav__toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: #ffffff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Lock body scroll while the mobile drawer is open. */
body.nav-open {
  overflow: hidden;
}

/* ============================================================
   HERO — full viewport, content anchored bottom-left.
   Top padding reserves the nav band so content never sits under
   the fixed nav / "BBQ HOUSE" brand.
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;       /* fallback for browsers without svh/dvh */
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--nav-h) + 24px) 40px 48px;
}

.hero__tag {
  font-size: 11px;
  letter-spacing: 3px;       /* reduced from 6px */
  text-transform: uppercase;
  color: var(--body-soft);
  margin-bottom: 22px;
}

.hero__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 12vw, 140px);
  line-height: 0.88;
  letter-spacing: 1px;
  text-shadow: 0 0 120px rgba(255, 80, 0, 0.3);
}

.hero__title .filled {
  color: #ffffff;
  display: block;
}

.hero__title .stroke {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
  display: block;
}

/* Smaller English subline under the brand title. */
.hero__subline {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--body);
  margin-top: 20px;
}

.hero__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-top: 44px;
}

.hero__tagline {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  color: var(--body);
}

.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.hero__scroll {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--body-soft);
}

/* ---------- Solid white button (no gold accent) ---------- */
.btn-solid {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 15px 34px;
  background: #ffffff;
  color: #0a0602;
  border: 0;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.btn-solid:hover {
  background: #ffffff;
  color: #0a0602;
  opacity: 0.88;
  transform: scale(1.02);
}

/* ============================================================
   MARQUEE STRIP — white bar, infinite scroll
   ============================================================ */
.marquee {
  background: #ffffff;
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
  position: relative;
  z-index: 2;
}

/* Track holds two identical groups; animating one group width (-50%)
   loops seamlessly with no ultrawide gap. */
.marquee__track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: marquee-scroll 28s linear infinite;
}

.marquee__group {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 100vw;
}

.marquee__item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 3px;
  color: #0a0602;
  padding: 0 28px;
  border-right: 1px solid rgba(10, 6, 2, 0.18);
  line-height: 1;
}

.marquee__item .star {
  color: #0a0602;
  margin-right: 8px;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   EDITORIAL PLACEHOLDER (stands in for food photography)
   No icons / no emoji — a numbered, captioned dark panel.
   ============================================================ */
.ph-surface {
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.012) 0 12px, transparent 12px 24px),
    linear-gradient(155deg, #1c1208 0%, #0a0602 72%, #160c05 100%);
  background-size: cover;
  background-position: center;
}

/* ============================================================
   MENU TEASER — "FROM THE FIRE"
   ============================================================ */
.teaser {
  background: #0a0602;
  padding: 84px 40px;
  position: relative;
  z-index: 2;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
}

.section-head__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  line-height: 0.92;
  letter-spacing: 1px;
  color: #ffffff;
}

.section-head__link {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--body);
  transition: color 0.3s ease;
  white-space: nowrap;
}

.section-head__link:hover {
  color: #ffffff;
}

/* ---------- Asymmetric teaser grid ---------- */
.teaser-grid {
  display: grid;
  /* Two columns: a tall feature on the left, two stacked tiles on the right. */
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  grid-template-rows: repeat(2, minmax(220px, 1fr));
  gap: 2px;
  background: #1a1008;
}

.teaser-cell {
  position: relative;
  overflow: hidden;
  display: block;
  min-height: 180px;
}

.teaser-cell--feature {
  grid-row: span 2;
  min-height: 380px;
}

/* Numbered editorial placeholder fills the cell until a photo is added
   (swap in background-image on .teaser-cell__bg; data-placeholder maps it). */
.teaser-cell__bg {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.012) 0 12px, transparent 12px 24px),
    linear-gradient(155deg, #1c1208 0%, #0a0602 72%, #160c05 100%);
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.teaser-cell__index {
  position: absolute;
  top: 18px;
  left: 22px;
  z-index: 1;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  line-height: 1;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.28);   /* consistent, readable on every cell */
}

.teaser-cell--feature .teaser-cell__index {
  font-size: 76px;
}

.teaser-cell:hover .teaser-cell__bg {
  transform: scale(1.04);
}

.teaser-cell__info {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 18px 22px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
  z-index: 2;
}

.teaser-cell__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  color: #ffffff;
  line-height: 1;
}

.teaser-cell__price {
  font-size: 12px;
  color: var(--body);
  margin-top: 5px;
}

/* Portrait / narrow teaser photos: an "editorial fill" so the dish never sits in
   flat dark side-bars. A blurred, dimmed copy of the SAME image covers the cell
   (ambient backdrop); the sharp, full dish is contained on top — no stretching,
   no aggressive crop, dark-only, no visible frame. Both layers reuse the cell's
   own background-image via `inherit`. */
.teaser-cell--portrait-fill .teaser-cell__bg::before,
.teaser-cell--portrait-fill .teaser-cell__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-position: center;
  background-repeat: no-repeat;
}
.teaser-cell--portrait-fill .teaser-cell__bg::before {   /* blurred ambient backdrop */
  background-size: cover;
  transform: scale(1.25);
  filter: blur(24px) brightness(0.42);
  z-index: 0;
}
.teaser-cell--portrait-fill .teaser-cell__bg::after {    /* sharp, full dish */
  background-size: contain;
  z-index: 1;
}

/* ============================================================
   GHOST BUTTON — full width
   ============================================================ */
.btn-ghost {
  display: block;
  width: 100%;
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 5px;
  padding: 26px 0;
  margin-top: 40px;
  background: rgba(255, 255, 255, 0.012);
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: var(--body);
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 1);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.03);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #060400;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.site-footer__brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.45);
}

.site-footer__center {
  font-size: 12px;
  color: var(--body-soft);
  letter-spacing: 0.5px;
}

.site-footer__links {
  display: flex;
  gap: 20px;
}

.site-footer__links a {
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--body-soft);
  transition: color 0.3s ease;
}

.site-footer__links a:hover {
  color: #ffffff;
}

/* ============================================================
   SECONDARY PAGE HERO (menu / story / gallery / etc.)
   ============================================================ */
.page-hero {
  min-height: 60vh;
  min-height: 60svh;
  min-height: 60dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--nav-h) + 24px) 40px 56px;
}

.page-hero__tag {
  font-size: 11px;
  letter-spacing: 3px;       /* reduced from 6px */
  text-transform: uppercase;
  color: var(--body-soft);
  margin-bottom: 18px;
}

.page-hero__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 14vw, 180px);
  line-height: 0.85;
  letter-spacing: 1px;
  color: #ffffff;
  text-shadow: 0 0 120px rgba(255, 80, 0, 0.3);
}

.page-hero__lead {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8;
  color: var(--body);
  max-width: 560px;
  margin-top: 22px;
}

/* Generic dark content section */
.section {
  background: #0a0602;
  padding: 72px 40px;
  position: relative;
  z-index: 2;
}

.section--flush {
  padding-top: 0;
}

.section__intro {
  max-width: 660px;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.9;
  color: var(--body);
}

/* ============================================================
   MENU PAGE — editorial text rows (matches the printed menu)
   ============================================================ */
/* One clear, global price label. */
.menu-pricebar {
  padding: 0 40px 28px;
  position: relative;
  z-index: 2;
}

.menu-note {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--body-soft);
}

.menu-section {
  background: #0a0602;
  padding: 56px 40px;
  position: relative;
  z-index: 2;
  scroll-margin-top: calc(var(--nav-h) + 72px);  /* clears nav + sticky tabs */
}

/* Category subtitle, e.g. "Todos servidos no nosso pão brioche…" */
.menu-subtitle {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.6;
  color: var(--body);
  margin: -6px 0 22px;
}

/* Sub-group header inside a category list, e.g. "Beef Burgers". */
.menu-subhead {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--body-soft);
  padding: 28px 0 4px;
}

/* Category = editorial dish list (left) + large sticky food photo (right).
   On mobile this collapses to a single column with the photo on top. */
.menu-cat {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.menu-cat__list {
  min-width: 0;
}

/* The photo slot. Until professional photography is dropped in (set
   background-image via the data-placeholder filename), it shows a temporary
   numbered editorial panel — NOT a permanent placeholder. */
.menu-cat__photo {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
  align-self: start;
  height: min(74vh, 660px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 30px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background-size: cover;
  background-position: center;
}

.menu-cat__index {
  position: absolute;
  top: 24px;
  right: 30px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.14);
}

/* Real photograph in the slot: show the image and drop the temporary number.
   The per-category background-image (below) carries a subtle dark gradient so
   the caption/credit stay legible and the photo ties into the black brand. */
.menu-cat__photo--photographed {
  background-color: #0a0602;
  /* Photo shown in FULL (contain) on brand-black so dishes are never over-zoomed
     or cropped, at any panel ratio. Gradient layer fills the panel (100% 100%)
     for caption legibility; the photo layer is contained and never repeats. */
  background-size: 100% 100%, contain;
  background-repeat: no-repeat;
  background-position: center;
}

.menu-cat__photo--photographed .menu-cat__index {
  display: none;
}

/* Per-category photos (TEMPORARY stand-ins — see images/CREDITS.md). Replace
   the image file (same name) to swap a category photo with no code change. */
.menu-cat__photo[data-placeholder="mains-and-grills"] {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0) 60%), url('../images/menu-mains.jpg');
}
.menu-cat__photo[data-placeholder="burgers"] {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0) 60%), url('../images/menu-burgers.jpg');
}
.menu-cat__photo[data-placeholder="desserts"] {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0) 60%), url('../images/menu-desserts.jpg');
}

.menu-cat__caption {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--body);
}

.menu-section__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 28px;
}

.menu-list {
  display: grid;
  gap: 0;
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  column-gap: 18px;
  row-gap: 8px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-item__name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ffffff;
}

/* Lighter qualifier inside a dish name, e.g. "(BBQ House Style)". */
.menu-item__qualifier {
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--body-soft);
}

/* Dual (half/full) price — always labelled, never an unexplained slash. */
.menu-item__price--dual {
  font-size: 14px;
  letter-spacing: 0.5px;
}

.menu-item__price {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: #ffffff;
  white-space: nowrap;
  text-align: right;
}

/* Combo savings — original à la carte price crossed out in transparent red, combo price and saving below. */
.menu-item__price-group {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  white-space: nowrap;
}

.menu-item__price-old {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
  text-decoration-color: rgba(226, 54, 34, 0.75);
  text-decoration-thickness: 1.5px;
}

.menu-item__save {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(226, 54, 34, 0.9);
}

.menu-item__desc {
  grid-column: 1 / -1;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.7;
  color: var(--body);
  max-width: 70ch;
}

.menu-extras {
  margin-top: 28px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  line-height: 1.7;
  color: var(--body);
}

.menu-extras strong {
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ffffff;
}

/* ---------- Menu toolbar (sticky tabs) — kept for full build ---------- */
.menu-toolbar {
  position: sticky;
  top: var(--nav-h);              /* sits below the fixed nav, no overlap */
  z-index: 40;
  background: rgba(10, 6, 2, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 40px;
}

.menu-tabs {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.menu-tabs::-webkit-scrollbar {
  display: none;
}

.menu-tabs a {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--body-soft);
  padding: 20px 14px;
  white-space: nowrap;
  border-bottom: 1px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.menu-tabs a:hover,
.menu-tabs a.is-active {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #1a1008;
}

.gallery-tile {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.012) 0 12px, transparent 12px 24px),
    linear-gradient(155deg, #1c1208 0%, #0a0602 72%, #160c05 100%);
}

.gallery-tile--wide {
  grid-column: span 2;
  aspect-ratio: auto;
}

.gallery-tile__index {
  position: absolute;
  top: 16px;
  left: 18px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.16);
}

.gallery-tile__label {
  position: absolute;
  left: 18px;
  bottom: 16px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================================
   FIND US PAGE
   ============================================================ */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
  background: #1a1008;
  margin-top: 8px;
}

.info-card {
  background: #0d0805;
  padding: 32px 28px;
}

/* Reservations card is a direct WhatsApp link — keep the look, subtle hover only. */
a.info-card {
  display: block;
  transition: background 0.3s ease;
}

a.info-card:hover {
  background: #120c07;
}

a.info-card:hover .info-card__sub {
  color: #ffffff;
}

.info-card__label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--body-soft);
  margin-bottom: 14px;
}

.info-card__value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 1px;
  line-height: 1.1;
  color: #ffffff;
}

.info-card__sub {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.7;
  color: var(--body);
  margin-top: 8px;
}

.map-placeholder {
  height: 360px;
  margin-top: 8px;
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0 12px, transparent 12px 24px),
    linear-gradient(155deg, #160e06 0%, #0a0602 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--body-soft);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}

.form-field label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--body-soft);
}

.form-field input,
.form-field textarea {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: #ffffff;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 0;
  transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-bottom-color: #ffffff;
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-detail {
  margin-bottom: 28px;
}

.contact-detail__label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--body-soft);
  margin-bottom: 8px;
}

.contact-detail__value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 1px;
  color: #ffffff;
}

/* ============================================================
   STORY PAGE
   ============================================================ */
.story-block {
  max-width: 680px;
  margin-bottom: 56px;
}

.story-block__kicker {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--body-soft);
  margin-bottom: 16px;
}

.story-block__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 18px;
  line-height: 0.95;
}

.story-block__text {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.9;
  color: var(--body);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2px;
  background: #1a1008;
  margin-top: 8px;
}

.stat {
  background: #0a0602;
  padding: 36px 28px;
}

.stat__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  line-height: 1;
  color: #ffffff;
}

.stat__label {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--body);
  margin-top: 10px;
}

/* ============================================================
   HERO VIDEO (homepage) — dormant until <body class="has-hero-video">.
   Muted, looping, playsinline background that replaces most of the
   particle fire on the homepage; fire stays a subtle accent elsewhere.
   See video/README.md for the asset spec + activation.
   ============================================================ */
.hero-video {
  display: none;
}

.has-hero-video .hero-video {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.5) contrast(1.05);   /* darkened footage */
}

/* Strong bottom-weighted gradient = clear, dark space behind the title. */
.has-hero-video .hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top,
    rgba(10, 6, 2, 0.92) 0%,
    rgba(10, 6, 2, 0.78) 42%,
    rgba(10, 6, 2, 0.5) 78%,
    rgba(10, 6, 2, 0.62) 100%);
  pointer-events: none;
}

/* Keep hero text + CTA above the video and overlay (but NOT the video itself —
   it must stay absolutely positioned and behind, or it pushes content down). */
.has-hero-video .hero > *:not(.hero-video) {
  position: relative;
  z-index: 2;
}

/* The video replaces most of the particle effect on the homepage. */
.has-hero-video #fire-canvas {
  opacity: 0.2;
}

/* Reduced motion: show the static poster instead of the moving footage. */
@media (prefers-reduced-motion: reduce) {
  .has-hero-video .hero-video {
    display: none;
  }
  .has-hero-video .hero {
    background-image:
      linear-gradient(to top,
        rgba(10, 6, 2, 0.92) 0%,
        rgba(10, 6, 2, 0.78) 42%,
        rgba(10, 6, 2, 0.55) 78%,
        rgba(10, 6, 2, 0.65) 100%),
      url('../video/hero-poster.jpg');
    background-size: cover;
    background-position: center;
  }
}

/* ============================================================
   CONTACT ACTIONS — direct actions instead of a backend-less form
   ============================================================ */
.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-action {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 22px 26px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.015);
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.contact-action:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-2px);
}

.contact-action__label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 1px;
  color: #ffffff;
}

.contact-action__value {
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--body);
}

.contact-action--primary {
  background: #ffffff;
  border-color: #ffffff;
}

.contact-action--primary .contact-action__label { color: #0a0602; }
.contact-action--primary .contact-action__value { color: rgba(10, 6, 2, 0.7); }
.contact-action--primary:hover { background: #ffffff; opacity: 0.9; transform: translateY(-2px); }

/* ============================================================
   MAP (Find Us) — real embedded Google map + directions link
   ============================================================ */
.map-embed {
  position: relative;
  margin-top: 8px;
  height: 360px;
  background: #0a0602;               /* dark fallback — never a white block */
  border: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
  line-height: 0;
}

/* Premium dark loading/empty state shown until the iframe fades in. */
.map-embed__fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.014) 0 12px, transparent 12px 24px),
    #0a0602;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.3);
}

.map-embed__frame {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  /* Dark-theme the light Google map to match the brand (still the real map). */
  filter: invert(1) hue-rotate(180deg) brightness(0.92) contrast(0.95);
}

.map-embed__frame.is-loaded {
  opacity: 1;
}

.map-directions {
  display: inline-block;
  margin-top: 16px;
}

/* Visible CC attribution on a temporary stock photo (not only CREDITS.md). */
.menu-cat__credit {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  font-size: 10px;
  letter-spacing: 0.3px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(0, 0, 0, 0.42);
  padding: 4px 8px;
  max-width: 80%;
}

.menu-cat__credit:hover { color: #ffffff; }

/* ============================================================
   IMAGE ROLLOUT — temporary licensed photos per slot (see CREDITS.md).
   Each is keyed by data-placeholder so a real photo replaces it with no
   markup change. Salads & Kids stay as numbered placeholders (no dark match).
   ============================================================ */
/* Menu category photos */
.menu-cat__photo[data-placeholder="salads"] {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0) 60%), url('../images/menu-salads.jpg');
}
.menu-cat__photo[data-placeholder="kids"] {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0) 60%), url('../images/menu-kids.jpg');
}
.menu-cat__photo[data-placeholder="sides"] {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0) 60%), url('../images/menu-sides.jpg');
}
.menu-cat__photo[data-placeholder="sandwiches"] {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0) 60%), url('../images/menu-sandwiches.jpg');
}
.menu-cat__photo[data-placeholder="eataly"] {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0) 60%), url('../images/menu-eataly.jpg');
}
.menu-cat__photo[data-placeholder="drinks"] {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0) 60%), url('../images/menu-drinks.jpg');
}
.menu-cat__photo[data-placeholder="combos"] {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0) 60%), url('../images/menu-combos.jpg');
}

/* Homepage teaser photos — hide the temporary number once a photo is present. */
.teaser-cell__index { display: none; }
.teaser-cell__bg[data-placeholder="combos"] { background-image: url('../images/home-combos.jpg'); }
.teaser-cell__bg[data-placeholder="korean-chicken"] { background-image: url('../images/home-korean-chicken.jpg'); }
.teaser-cell__bg[data-placeholder="wings"] { background-image: url('../images/home-wings.jpg'); }

/* Gallery tiles — dark gradient keeps the label legible; hide the number. */
.gallery-tile__index { display: none; }
.gallery-tile[data-placeholder="gallery-01"] { background-image: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0) 55%), url('../images/gallery-01.jpg'); }
.gallery-tile[data-placeholder="gallery-02"] { background-image: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0) 55%), url('../images/gallery-02.jpg'); }
.gallery-tile[data-placeholder="gallery-03"] { background-image: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0) 55%), url('../images/gallery-03.jpg'); }
.gallery-tile[data-placeholder="gallery-04"] { background-image: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0) 55%), url('../images/gallery-04.jpg'); }
.gallery-tile[data-placeholder="gallery-05"] { background-image: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0) 55%), url('../images/gallery-05.jpg'); }
.gallery-tile[data-placeholder="gallery-06"] { background-image: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0) 55%), url('../images/gallery-06.jpg'); }
.gallery-tile[data-placeholder="gallery-07"] { background-image: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0) 55%), url('../images/gallery-07.jpg'); }
.gallery-tile[data-placeholder="gallery-08"] { background-image: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0) 55%), url('../images/gallery-08.jpg'); }
.gallery-tile[data-placeholder="gallery-09"] { background-image: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0) 55%), url('../images/gallery-09.jpg'); }

/* ============================================================
   LOCAL SEO CONTENT — intro copy + feature blocks + delivery + FAQ
   ============================================================ */
.local-seo {
  background: #0a0602;
  padding: 72px 40px;
  position: relative;
  z-index: 2;
}

.local-seo__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: 1px;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 20px;
  max-width: 780px;
}

.local-seo__copy {
  max-width: 700px;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.9;
  color: var(--body);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #1a1008;
  margin-top: 40px;
}

.feature {
  background: #0d0805;
  padding: 30px 28px;
}

.feature__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 10px;
}

.feature__text {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.7;
  color: var(--body);
}

/* Delivery & takeaway band */
.delivery {
  background: #060400;
  padding: 52px 40px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.delivery__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  letter-spacing: 1px;
  line-height: 1;
  color: #ffffff;
}

.delivery__text {
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  color: var(--body);
  max-width: 540px;
  margin-top: 12px;
}

/* FAQ */
.faq {
  background: #0a0602;
  padding: 72px 40px;
  position: relative;
  z-index: 2;
}

.faq__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 26px;
}

.faq__list {
  max-width: 820px;
}

.faq__item {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.faq__q {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.3px;
  color: #ffffff;
  margin-bottom: 8px;
}

.faq__a {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.7;
  color: var(--body);
}

/* ============================================================
   PREMIUM REFINEMENT — keyword strip, warm glows, ghost type,
   section breaks, footer depth, polished CTAs. Subtle only.
   ============================================================ */

/* Keyword strip — replaces the white marquee. Static, understated. */
.kw-strip {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0 2px;
  padding: 17px 40px;
  background: linear-gradient(180deg, #0b0703 0%, #0a0602 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.045);
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
  overflow: hidden;
}

.kw-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 160%, rgba(255, 80, 0, 0.07), transparent 60%);
  pointer-events: none;
}

.kw-strip__item {
  position: relative;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.46);
  padding: 4px 14px;
}

.kw-strip__sep {
  position: relative;
  color: rgba(255, 255, 255, 0.16);
  font-size: 10px;
}

/* Premium section break: hairlines + small centered label. */
.section-break {
  position: relative;
  z-index: 2;
  background: #0a0602;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 36px 40px 12px;
}

.section-break::before,
.section-break::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.07), transparent);
}

.section-break__label {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}

/* Oversized low-opacity ghost word behind a section. */
.ghost-word {
  position: absolute;
  left: 30px;
  bottom: -0.16em;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(120px, 22vw, 300px);
  line-height: 0.8;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.022);
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
}

/* Reusable faint warm glow for dark sections (asymmetric). */
.glow-warm {
  position: relative;
  overflow: hidden;
}

.glow-warm > *:not(.ghost-word) {
  position: relative;
  z-index: 1;
}

.glow-warm::before {
  content: '';
  position: absolute;
  top: -18%;
  right: -8%;
  width: 60%;
  height: 95%;
  background: radial-gradient(ellipse at center, rgba(255, 80, 0, 0.06), transparent 62%);
  pointer-events: none;
  z-index: 0;
}

.glow-warm--left::before {
  left: -8%;
  right: auto;
}

/* Atmospheric image panel (Our Story). */
.story-panel {
  position: relative;
  height: clamp(280px, 46vh, 520px);
  margin-bottom: 8px;
  background:
    linear-gradient(to top, rgba(10, 6, 2, 0.78), rgba(10, 6, 2, 0.15) 60%, rgba(10, 6, 2, 0.4)),
    url('../images/story-atmosphere.jpg');
  background-size: cover;
  background-position: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.story-panel__label {
  position: absolute;
  left: 40px;
  bottom: 26px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.85);
}

/* Footer depth: top border + warm glow + ghost wordmark. */
.site-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 50px 40px;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 135%, rgba(255, 80, 0, 0.08), transparent 58%);
  pointer-events: none;
  z-index: 0;
}

.site-footer::after {
  content: 'BBQ HOUSE';
  position: absolute;
  left: 50%;
  bottom: -0.3em;
  transform: translateX(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(90px, 20vw, 240px);
  line-height: 0.8;
  letter-spacing: 8px;
  color: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

/* Polished contact CTAs — premium arrow affordance. */
.contact-action {
  position: relative;
  padding-right: 56px;
}

.contact-action::after {
  content: '↗';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 17px;
  color: rgba(255, 255, 255, 0.4);
  transition: transform 0.3s ease, color 0.3s ease;
}

.contact-action:hover::after {
  transform: translate(3px, -55%);
  color: #ffffff;
}

.contact-action--primary::after {
  color: rgba(10, 6, 2, 0.45);
}

.contact-action--primary:hover::after {
  color: #0a0602;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 760px) {
  :root {
    --nav-h: 70px;
  }

  .nav {
    padding: 10px 22px;
  }

  .nav__logo {
    height: 50px;          /* ≈ 46px wide — clearly readable, clears the hamburger */
  }

  .nav__lang {
    margin-top: 8px;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    height: 100dvh;
    width: min(74vw, 300px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 26px;
    padding: 40px;
    background: #0a0602;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 45;
  }

  .nav__links.is-open {
    transform: translateX(0);
  }

  .nav__links a {
    font-size: 15px;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.85);
  }

  .hero {
    padding: calc(var(--nav-h) + 20px) 22px 36px;
  }

  .hero__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
  }

  .hero__cta {
    align-items: flex-start;
  }

  .teaser,
  .section,
  .menu-section,
  .menu-pricebar,
  .page-hero,
  .local-seo,
  .delivery,
  .faq,
  .kw-strip,
  .section-break,
  .site-footer {
    padding-left: 22px;
    padding-right: 22px;
  }

  .section-break { gap: 14px; }
  .story-panel__label { left: 22px; }
  .ghost-word { left: 16px; }
  .kw-strip__item { padding: 4px 9px; letter-spacing: 2px; }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .delivery {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Single column; photo becomes a banner on top of the dish list. */
  .menu-cat {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .menu-cat__photo {
    position: static;
    height: 220px;
    order: -1;
  }

  .page-hero {
    padding-bottom: 36px;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .section-head__title {
    font-size: 44px;
  }

  .teaser-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;   /* stack all three tiles in one column */
  }

  .teaser-cell {
    min-height: 210px;
  }

  .teaser-cell--feature {
    grid-column: auto;
    grid-row: auto;
    min-height: 240px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-tile--wide {
    grid-column: span 2;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .menu-toolbar {
    padding: 0 16px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 420px) {
  .teaser-grid {
    grid-template-columns: 1fr;
  }

  .teaser-cell--feature {
    grid-column: auto;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-tile--wide {
    grid-column: auto;
  }

  .menu-item {
    grid-template-columns: 1fr;
  }

  .menu-item__price {
    text-align: left;
  }
}
