/* El Grill chrome — charcoal + poster brush identity. Layout follows Qissa. */
:root {
  --bg: #0a0a0a;
  --bg-warm: #0e0c09;
  --gold: #c9a24b;
  --gold-live: #e8b923;
  --gold-bright: #f0c93a;
  --green: #1b8a3e;
  --cream: #f6f1e7;
  --flame: #e07a2f;
  --ink: #0a0a0a;
  --cream-soft: rgba(246, 241, 231, 0.72);
  --cream-mute: rgba(246, 241, 231, 0.42);
  --hairline: rgba(246, 241, 231, 0.28);
  --hairline-soft: rgba(246, 241, 231, 0.1);
  --gold-paint: linear-gradient(108deg, #f0c93a 0%, #e8b923 42%, #c9a24b 100%);
  --gold-wash: var(--gold-paint);
  --overlay-wash: radial-gradient(920px 640px at 18% 12%, #16120c 0%, #0a0a0a 58%, #0e0c09 100%);
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-cta: "Manrope", "Arial Narrow", Impact, sans-serif;
  --gutter: clamp(16px, 4.6vw, 88px);
  --maxw: 1600px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-io: cubic-bezier(0.65, 0.05, 0.36, 1);
  --ease-slide: cubic-bezier(0.22, 1, 0.36, 1);
  --header-pad: 22px;
  --header-pad-scrolled: 11px;
  --header-offset: 108px;
  --menu-anchor-offset: 168px;
  --brush-clip: polygon(
    0% 24%, 4% 10%, 14% 16%, 26% 7%, 40% 14%, 56% 6%, 70% 15%, 84% 8%, 96% 18%,
    100% 38%, 98% 58%, 100% 78%, 92% 93%, 76% 86%, 60% 96%, 42% 88%, 26% 97%, 10% 89%, 0% 76%, 1% 50%
  );
  --brush-clip-slim: polygon(
    0% 28%, 6% 12%, 18% 18%, 32% 8%, 48% 16%, 64% 7%, 80% 15%, 94% 10%,
    100% 36%, 98% 64%, 94% 90%, 78% 84%, 58% 96%, 38% 86%, 18% 95%, 4% 84%, 0% 62%
  );
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--cream);
  -webkit-text-size-adjust: 100%;
}

html,
body {
  margin: 0;
  min-height: 100%;
  overflow-x: clip;
}

.page-wrap {
  position: relative;
  z-index: 1;
  overflow-x: clip;
}

html.is-locked,
html.is-locked body {
  overflow-x: clip;
  overflow-y: hidden;
  overscroll-behavior: none;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.55;
  background:
    radial-gradient(1200px 700px at 50% -10%, rgba(224, 122, 47, 0.16), transparent 55%),
    radial-gradient(900px 500px at 90% 20%, rgba(27, 138, 62, 0.08), transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 48%, var(--bg) 100%);
}

html.is-locked .page-wrap,
html.is-locked .embers-canvas {
  touch-action: none;
}

body.is-locked .nav-overlay,
body.is-locked .nav-overlay__scroll {
  touch-action: pan-y;
}

@supports not (overflow-x: clip) {
  html,
  body,
  .page-wrap {
    overflow-x: hidden;
  }
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.embers-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}


/* Buttons — WE DELIVER! brush, not Qissa capsules */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 11px 26px 13px;
  border: 0;
  border-radius: 0;
  font-family: var(--font-cta);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease), color 0.35s var(--ease), filter 0.35s var(--ease);
}

.btn .ico {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.btn:hover {
  transform: translateY(-1px) rotate(-0.4deg);
}

.btn-ghost {
  color: var(--cream);
  background: transparent;
  border: 1.5px solid rgba(246, 241, 231, 0.86);
  padding: 10px 22px;
}

.btn-ghost:hover {
  border-color: var(--gold-live);
  color: var(--gold-bright);
  background: rgba(232, 185, 35, 0.06);
}

.btn-gold {
  position: relative;
  color: #0a0a0a;
  background:
    repeating-linear-gradient(-18deg, rgba(10, 10, 10, 0.07) 0 2px, transparent 2px 7px),
    var(--gold-paint);
  clip-path: var(--brush-clip);
  padding: 13px 30px 15px;
  filter: drop-shadow(0 10px 18px rgba(232, 185, 35, 0.22));
}

.btn-gold:hover {
  filter: drop-shadow(0 12px 22px rgba(240, 201, 58, 0.38));
  background:
    repeating-linear-gradient(-18deg, rgba(10, 10, 10, 0.05) 0 2px, transparent 2px 7px),
    linear-gradient(108deg, #f6d76a 0%, #f0c93a 40%, #e8b923 100%);
}

.ico {
  width: 22px;
  height: 22px;
  display: inline-block;
  color: var(--gold-live);
}

.ico use {
  stroke: currentColor;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: var(--header-pad) var(--gutter);
  transition: background 0.45s var(--ease), border-color 0.45s var(--ease);
}

.site-header.scrolled {
  padding-block: var(--header-pad-scrolled);
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(16px) saturate(1.15);
  border-bottom: 1px solid var(--hairline-soft);
}

html.is-locked .site-header {
  pointer-events: none;
}

.header-left,
.header-right {
  display: flex;
  align-items: center;
  min-width: 0;
}

.header-right {
  justify-content: flex-end;
  gap: 8px;
}

.header-cta.btn-gold {
  padding: 12px 26px 14px;
}

.header-cta.btn-ghost {
  min-height: 42px;
}

.menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.dots {
  width: 28px;
  height: 16px;
  position: relative;
  flex: 0 0 auto;
}

.dots span {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 8px rgba(232, 197, 71, 0.55);
}

.dots span:nth-child(1) { left: 0; top: 5px; background: var(--green); box-shadow: 0 0 8px rgba(27, 138, 62, 0.55); }
.dots span:nth-child(2) { left: 11px; top: 5px; }
.dots span:nth-child(3) { left: 22px; top: 5px; background: var(--flame); }

.brand {
  width: clamp(92px, 16vw, 148px);
  justify-self: center;
}

.brand img,
.brand svg {
  width: 100%;
  height: auto;
}

.site-header.scrolled .brand {
  width: clamp(78px, 13vw, 118px);
}

/* Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  overflow: hidden;
  display: block;
  background: var(--overlay-wash);
  -webkit-clip-path: circle(0% at 48px 42px);
  clip-path: circle(0% at 48px 42px);
  visibility: hidden;
  pointer-events: none;
  transform: translateZ(0);
  transition: clip-path 0.72s var(--ease-io), visibility 0.72s, -webkit-clip-path 0.72s var(--ease-io);
}

.nav-overlay.open {
  -webkit-clip-path: circle(160% at 48px 42px);
  clip-path: circle(160% at 48px 42px);
  visibility: visible;
  pointer-events: auto;
}

.nav-overlay__scroll {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: start;
  min-height: 100%;
  min-height: 100dvh;
  max-height: 100%;
  max-height: 100dvh;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding-bottom: max(28px, env(safe-area-inset-bottom));
}

.nav-overlay__close {
  position: absolute;
  top: max(16px, env(safe-area-inset-top));
  right: var(--gutter);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream);
}

.nav-overlay__close .x {
  width: 18px;
  height: 18px;
  position: relative;
}

.nav-overlay__close .x::before,
.nav-overlay__close .x::after {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 18px;
  height: 1.5px;
  background: var(--gold-bright);
}

.nav-overlay__close .x::before { transform: rotate(45deg); }
.nav-overlay__close .x::after { transform: rotate(-45deg); }

.nav-overlay__main {
  padding: clamp(72px, 10vh, 112px) var(--gutter) 36px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.nav-overlay__logo {
  width: 96px;
  margin-bottom: 18px;
}

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-list a {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.6vw, 3rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--cream);
  width: auto;
  max-width: 100%;
  overflow-wrap: anywhere;
  opacity: 0;
  transform: translateY(18px);
}

.nav-overlay.open .nav-list a {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.55s var(--ease) calc(0.12s + var(--i, 0) * 0.06s),
    transform 0.55s var(--ease) calc(0.12s + var(--i, 0) * 0.06s),
    color 0.3s;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--gold-bright);
}

.nav-list .num {
  display: inline-block;
  margin-right: 14px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  vertical-align: middle;
  color: var(--green);
  transform: translateY(-0.45em);
}

.nav-sub {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 2px 0 10px 3.1rem;
}

.nav-sub a {
  font-family: var(--font-body) !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-soft) !important;
}

.nav-sub a:hover {
  color: var(--gold-bright) !important;
}

.nav-overlay__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.nav-aside {
  padding: clamp(72px, 10vh, 112px) var(--gutter) 36px;
  border-left: 1px solid var(--hairline-soft);
  display: flex;
  flex-direction: column;
  gap: 28px;
  color: var(--cream-soft);
}

.nav-aside__label {
  margin: 0 0 8px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-aside p {
  margin: 0;
}

.nav-aside a {
  display: inline-block;
  margin-top: 6px;
  color: var(--cream);
  border-bottom: 1px solid transparent;
}

.nav-aside a:hover {
  color: var(--gold-bright);
  border-bottom-color: var(--gold);
}

.eyebrow,
.brush {
  display: inline-block;
  font-family: var(--font-cta);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  padding: 0.42em 0.9em 0.48em;
  color: #0a0a0a;
  background:
    repeating-linear-gradient(-16deg, rgba(10, 10, 10, 0.07) 0 2px, transparent 2px 6px),
    var(--gold-paint);
  clip-path: var(--brush-clip-slim);
}

.eyebrow--green,
.brush--green {
  color: #fff;
  background:
    repeating-linear-gradient(-16deg, rgba(10, 10, 10, 0.1) 0 2px, transparent 2px 6px),
    linear-gradient(108deg, #24964a 0%, #1b8a3e 55%, #146c30 100%);
}

.eyebrow--plain {
  background: none;
  clip-path: none;
  padding: 0;
  color: var(--gold-bright);
  letter-spacing: 0.28em;
}

.h-display {
  margin: 12px 0 0;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 9vw, 7rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.h-section {
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.4vw, 4.6rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.gold-text {
  color: var(--gold-bright);
  font-style: italic;
}

.lede {
  margin: 18px 0 0;
  max-width: 38rem;
  color: var(--cream-soft);
  font-size: 1.05rem;
}

.section {
  position: relative;
  padding: clamp(88px, 12vh, 140px) var(--gutter);
}

.section-head {
  max-width: 46rem;
  margin-bottom: clamp(36px, 5vh, 64px);
}

.section-head p {
  margin: 16px 0 0;
  color: var(--cream-soft);
  max-width: 36rem;
}

.center-head {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.center-head p {
  margin-left: auto;
  margin-right: auto;
}

.inner {
  max-width: var(--maxw);
  margin: 0 auto;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
}

.reveal.in {
  opacity: 1;
  transform: none;
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

/* Hero — Qissa composition: still full-bleed, centered brand, no zoom */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--cream);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  transform: scale(1.08);
  transform-origin: center center;
}

.hero__wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.28) 0%, rgba(10, 10, 10, 0.2) 40%, rgba(10, 10, 10, 0.82) 100%),
    radial-gradient(70% 60% at 70% 50%, rgba(224, 122, 47, 0.18), transparent 62%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(88px, 14vh, 140px) var(--gutter) clamp(104px, 16vh, 148px);
  max-width: 46rem;
  width: 100%;
}

.hero__content .h-display {
  margin-top: 8px;
}

.hero__content .lede {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-left: auto;
  margin-right: auto;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.hero__begin {
  position: absolute;
  left: 50%;
  bottom: max(22px, env(safe-area-inset-bottom));
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  min-width: 12.5rem;
  min-height: 5.75rem;
  padding: 16px 28px 10px;
  margin: 0;
  transform: translateX(-50%);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream-soft);
}

.hero__begin::after {
  content: "";
  width: 12px;
  height: 12px;
  border-right: 1.5px solid var(--gold-bright);
  border-bottom: 1.5px solid var(--gold-bright);
  transform: rotate(45deg);
  animation: beginPulse 1.8s var(--ease) infinite;
}

@keyframes beginPulse {
  0%, 100% { opacity: 0.4; transform: translateY(0) rotate(45deg); }
  50% { opacity: 1; transform: translateY(6px) rotate(45deg); }
}

/* Story split */
.story-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 88px);
  align-items: center;
  max-width: var(--maxw);
  margin: 0 auto;
}

.story-split__poster {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--hairline-soft);
  background: #090909;
}

.story-split__poster img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.story-split__copy .h-section {
  max-width: 14ch;
}

.story-split__copy .italic {
  display: block;
  margin-top: 8px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  color: var(--gold-bright);
}

.story-split__copy p + p {
  margin-top: 14px;
}

.story-split__copy p {
  margin: 18px 0 0;
  color: var(--cream-soft);
  max-width: 36rem;
}

/* Marquee */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--hairline-soft);
  background: rgba(18, 12, 8, 0.55);
  padding: 18px 0;
}

.marquee__track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: marquee 42s linear infinite;
}

.marquee__track span {
  padding: 0 28px;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: var(--cream);
}

.marquee__track span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 28px;
  border-radius: 50%;
  background: var(--gold-live);
  vertical-align: middle;
}

.marquee__track span:nth-child(3n)::before { background: var(--green); }
.marquee__track span:nth-child(3n+2)::before { background: var(--gold-bright); }

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

/* Masterpieces slider — full-bleed, 3 visible plates, rotate while sliding */
.section.masterpieces {
  --master-gap: clamp(8px, 1.2vw, 16px);
  --master-size: calc((100vw - 2 * var(--master-gap)) / 2.8);
  padding-inline: 0;
  overflow-x: clip;
  overflow-y: hidden;
}

.masterpieces {
  background:
    radial-gradient(800px 480px at 50% 20%, rgba(232, 185, 35, 0.1), transparent 58%),
    linear-gradient(180deg, #0a0a0a 0%, #0e0c09 100%);
}

.masterpieces .inner {
  padding-inline: var(--gutter);
}

.masterpieces__viewport {
  position: relative;
  width: 100%;
  max-width: none;
  margin-left: 0;
  height: calc(var(--master-size) + 40px);
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.masterpieces__viewport.is-dragging {
  cursor: grabbing;
  touch-action: none;
}

.masterpieces__track {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--master-gap);
  will-change: transform;
  transition: none;
}

.master-slide {
  flex: 0 0 auto;
  width: var(--master-size);
  height: var(--master-size);
  display: grid;
  place-items: center;
  transform-origin: 50% 50%;
  user-select: none;
  transition: none;
}

.master-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 28px 40px rgba(0, 0, 0, 0.55));
  pointer-events: none;
  -webkit-user-drag: none;
}

.master-slide.is-center {
  z-index: 2;
}

.master-slide:not(.is-center) {
  opacity: 0.92;
}

/* Cuisine row */
.cuisine-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.cuisine-card {
  display: grid;
  gap: 12px;
  min-width: 0;
  color: var(--cream);
}

.cuisine-card__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--hairline-soft);
  background: #0d0d0d;
}

.cuisine-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.cuisine-card--banner .cuisine-card__img {
  aspect-ratio: 3 / 4;
}

.cuisine-card__img img.is-wide,
.cuisine-card--banner .cuisine-card__img img {
  object-fit: cover;
  object-position: center;
}

.cuisine-card:hover .cuisine-card__img img {
  transform: scale(1.06);
}

.cuisine-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
}

.cuisine-card p {
  margin: 0;
  color: var(--cream-mute);
  font-size: 0.84rem;
}

/* Full-bleed */
.fullbleed {
  position: relative;
  min-height: clamp(520px, 86vh, 820px);
  display: grid;
  grid-template-rows: 1fr;
  align-items: end;
  overflow: hidden;
  padding: 0;
}

.fullbleed__media {
  position: absolute;
  inset: -12% 0;
  will-change: transform;
}

.fullbleed__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fullbleed__wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.12) 0%, rgba(10, 10, 10, 0.28) 42%, rgba(10, 10, 10, 0.88) 100%),
    linear-gradient(90deg, rgba(10, 10, 10, 0.62), transparent 58%);
}

.fullbleed__copy {
  position: relative;
  z-index: 1;
  padding: clamp(48px, 8vh, 96px) var(--gutter);
  max-width: 40rem;
}

/* Signatures */
.sig-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px 18px;
}

.sig-card {
  display: grid;
  gap: 12px;
  transform-style: preserve-3d;
  perspective: 800px;
}

.sig-card__frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid var(--hairline-soft);
  background: #080808;
  transform-style: preserve-3d;
}

.sig-card__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sig-card .badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  padding: 0.42em 0.85em 0.48em;
  border: 0;
  background:
    repeating-linear-gradient(-16deg, rgba(10, 10, 10, 0.1) 0 2px, transparent 2px 6px),
    linear-gradient(108deg, #24964a 0%, #1b8a3e 55%, #146c30 100%);
  color: #fff;
  font-family: var(--font-cta);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  clip-path: var(--brush-clip-slim);
}

.sig-card .badge--gold {
  color: #0a0a0a;
  background:
    repeating-linear-gradient(-16deg, rgba(10, 10, 10, 0.07) 0 2px, transparent 2px 6px),
    var(--gold-paint);
}

.sig-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
}

.sig-card p {
  margin: 0;
  color: var(--cream-soft);
  font-size: 0.92rem;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  border-block: 1px solid var(--hairline-soft);
  padding-block: 42px;
}

.stat {
  text-align: center;
  padding: 8px;
}

.stat strong,
.stat .stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  font-weight: 400;
  color: var(--gold-bright);
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--cream-soft);
}

/* The Fire tiles */
.fire-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
  gap: 14px;
}

.fire-tile {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid var(--hairline-soft);
  display: grid;
  align-items: end;
}

.fire-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.fire-tile:hover img {
  transform: scale(1.05);
}

.fire-tile span {
  position: relative;
  z-index: 1;
  padding: 22px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  background: linear-gradient(180deg, transparent, rgba(10, 10, 10, 0.82));
  width: 100%;
}

.fire-tile--wide {
  min-height: 420px;
}

/* Reviews */
.reviews {
  position: relative;
  text-align: center;
  overflow: hidden;
}

.reviews__media {
  position: absolute;
  inset: -10% 0;
  z-index: 0;
}

.reviews__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviews__wash {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.78) 0%, rgba(10, 10, 10, 0.72) 50%, rgba(10, 10, 10, 0.88) 100%),
    radial-gradient(60% 50% at 50% 40%, rgba(232, 185, 35, 0.12), transparent 70%);
}

.reviews .inner,
.reviews .section-head,
.reviews .testi-rotator {
  position: relative;
  z-index: 1;
}

.reviews .section-head {
  margin-left: auto;
  margin-right: auto;
}

.testi-rotator {
  position: relative;
  max-width: 46rem;
  margin: 0 auto;
  min-height: 11rem;
}

.testi {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.testi.is-active {
  position: relative;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.testi blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  font-style: italic;
  line-height: 1.25;
}

.testi cite {
  display: block;
  margin-top: 18px;
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Celebrations / two-ways */
.split-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.split-card {
  display: grid;
  gap: 16px;
  align-content: start;
  min-height: 280px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--hairline);
  background:
    linear-gradient(180deg, rgba(201, 162, 75, 0.08), rgba(10, 10, 10, 0.2)),
    var(--bg-warm);
}

.split-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 400;
}

.split-card p {
  margin: 0;
  color: var(--cream-soft);
  max-width: 28rem;
}

.split-card--gold {
  background:
    repeating-linear-gradient(-18deg, rgba(10, 10, 10, 0.06) 0 2px, transparent 2px 8px),
    var(--gold-paint);
  color: #0a0a0a;
  border-color: transparent;
}

.split-card--gold p {
  color: rgba(36, 24, 12, 0.78);
}

.cater-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}

.cater-layout img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--hairline-soft);
}

/* Page interiors */
.page-hero {
  padding: clamp(140px, 22vh, 188px) var(--gutter) 48px;
  max-width: 52rem;
}

.page-hero .h-display {
  font-size: clamp(3rem, 8vw, 6.2rem);
}

.article {
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 var(--gutter) 96px;
}

.article p {
  color: var(--cream-soft);
  font-size: 1.05rem;
}

.article p + p {
  margin-top: 16px;
}

.journal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.journal-card {
  display: grid;
  gap: 14px;
  padding: 8px;
}

.journal-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid var(--hairline-soft);
}

.journal-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
}

.masonry {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.masonry a {
  display: block;
  margin: 0;
  min-width: 0;
  border: 1px solid var(--hairline-soft);
  overflow: hidden;
  background: #0d0d0d;
}

.masonry img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #0d0d0d;
}

.masonry__wide img {
  aspect-ratio: 16 / 9;
}

.masonry__wide {
  grid-column: span 2;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 72px);
}

.contact-list a {
  display: block;
  margin: 0 0 14px;
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 3vw, 1.55rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 12px 14px;
  border: 1px solid var(--hairline);
  background: rgba(246, 241, 231, 0.04);
  color: var(--cream);
  font: inherit;
  font-size: 16px;
  border-radius: 0;
  color-scheme: dark;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form .btn {
  justify-self: start;
  min-width: min(100%, 220px);
  min-height: 48px;
}

/* Menu */
.menu-nav {
  position: sticky;
  top: var(--header-offset);
  z-index: 12;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px var(--gutter);
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(14px);
  border-block: 1px solid var(--hairline-soft);
  box-shadow: 0 -28px 0 rgba(10, 10, 10, 0.92);
}

.menu-nav__btn {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  color: var(--gold-bright);
}

.menu-nav__scroller {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

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

.menu-nav a {
  flex: 0 0 auto;
  padding: 10px 14px;
  border: 1px solid transparent;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-soft);
}

.menu-nav a:hover,
.menu-nav a.is-active {
  color: var(--gold-bright);
  border-color: var(--hairline);
}

#story {
  scroll-margin-top: var(--header-offset);
}

.menu-block {
  scroll-margin-top: calc(var(--header-offset) + 64px);
}

.menu-block {
  padding: clamp(56px, 8vh, 96px) var(--gutter);
  border-bottom: 1px solid var(--hairline-soft);
}

.menu-block h2 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 400;
}

.menu-kicker {
  margin: 0 0 28px;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.dish-list {
  display: grid;
  gap: 22px;
}

.dish {
  display: grid;
  grid-template-columns: minmax(92px, 140px) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.dish img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.dish h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
}

.dish p {
  margin: 0;
  color: var(--cream-soft);
}

.menu-close {
  padding: 72px var(--gutter) 24px;
  text-align: center;
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  padding: 0 0 28px;
  border-top: 0;
  background: #0a0a0a;
}

.brazil-rule {
  height: 6px;
  width: 100%;
  background: linear-gradient(90deg, #1b8a3e 0 38%, #f0c93a 38% 72%, #1b8a3e 72% 100%);
}

.footer-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 72px var(--gutter) 0;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1.1fr;
  gap: 42px 32px;
}

.footer-col h3 {
  margin: 0 0 16px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-col a,
.footer-col p {
  display: block;
  margin: 0 0 10px;
  color: var(--cream-soft);
}

.footer-col a:hover {
  color: var(--cream);
}

.footer-note p {
  margin: 0 0 14px;
  color: var(--cream-soft);
}

.footer-note .btn {
  margin-top: 4px;
}

.footer-bar {
  max-width: var(--maxw);
  margin: 48px auto 0;
  padding: 22px var(--gutter) 0;
  border-top: 1px solid var(--hairline-soft);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--cream-mute);
  font-size: 0.78rem;
}

@media (max-width: 1100px) {
  .cuisine-row,
  .sig-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .fire-tile--wide {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .nav-overlay__scroll {
    grid-template-columns: 1fr;
  }

  .nav-aside {
    border-left: 0;
    border-top: 1px solid var(--hairline-soft);
    padding-top: 8px;
  }

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

  .story-split,
  .cater-layout,
  .contact-grid,
  .journal-grid,
  .split-cta {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
    gap: 28px 12px;
  }

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

  .masonry__wide {
    grid-column: 1 / -1;
  }

  .story-split__poster img,
  .cater-layout img {
    aspect-ratio: 3 / 4;
    max-height: 70vh;
  }
}

@media (max-width: 720px) {
  :root {
    --header-offset: 88px;
    --menu-anchor-offset: 132px;
  }

  .site-header {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    padding-inline: max(12px, env(safe-area-inset-left)) max(12px, env(safe-area-inset-right));
  }

  .menu-trigger .menu-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .header-left,
  .header-right {
    flex: 1 1 0;
    min-width: 0;
  }

  .header-right {
    flex: 1 1 0;
    gap: 6px;
  }

  .btn {
    padding: 8px 10px;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    min-height: 44px;
  }

  .brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 72px;
    flex: 0 0 auto;
  }

  .site-header.scrolled .brand {
    width: 62px;
  }

  .nav-sub {
    padding-left: 2.4rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cuisine-row,
  .sig-grid,
  .fire-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    min-height: 92vh;
  }

  .hero__content {
    padding-bottom: 108px;
  }

  .hero__begin {
    font-size: 0.84rem;
    min-height: 5.25rem;
    padding-inline: 20px;
  }

  .section.masterpieces {
    --master-size: calc((100vw - 2 * var(--master-gap)) / 2.05);
  }

  .dish {
    grid-template-columns: 84px minmax(0, 1fr);
  }

  .contact-form .btn {
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }

  .cuisine-card--banner .cuisine-card__img {
    aspect-ratio: 16 / 10;
  }

  .page-hero .h-display {
    overflow-wrap: anywhere;
  }
}

@media (max-height: 740px) {
  .nav-overlay__logo {
    width: 72px;
    margin-bottom: 8px;
  }

  .nav-overlay__main,
  .nav-aside {
    padding-top: 56px;
    padding-bottom: 20px;
  }

  .nav-list a {
    font-size: clamp(1.2rem, 5vh, 2.1rem);
  }

  .nav-list {
    gap: 0;
  }

  .nav-aside {
    gap: 14px;
  }

  .nav-overlay__cta {
    margin-top: 14px;
  }
}

@media (max-width: 400px) {
  .site-header {
    padding-inline: max(10px, env(safe-area-inset-left)) max(10px, env(safe-area-inset-right));
    gap: 6px;
  }

  .brand {
    width: 58px;
  }

  .header-right .btn {
    padding-inline: 8px;
    letter-spacing: 0.08em;
  }

  .header-cta.btn-gold {
    padding: 10px 14px 11px;
    font-size: 0.62rem;
  }

  .header-cta.btn-ghost {
    padding: 8px 10px;
    font-size: 0.62rem;
  }

  .cuisine-row,
  .sig-grid,
  .stats,
  .fire-grid {
    grid-template-columns: 1fr;
  }

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

  .masonry__wide {
    grid-column: auto;
  }

  .cuisine-card--banner .cuisine-card__img {
    aspect-ratio: 16 / 10;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track,
  .hero__begin::after {
    animation: none !important;
  }

  .embers-canvas {
    display: none;
  }

  .nav-overlay {
    -webkit-clip-path: none;
    clip-path: none;
    opacity: 0;
    transform: none;
    transition: none;
  }

  .nav-overlay.open {
    opacity: 1;
  }

  .nav-list a {
    opacity: 1;
    transform: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero__img {
    transform: scale(1.04);
  }

  .marquee__track {
    width: auto;
    flex-wrap: wrap;
    justify-content: center;
    animation: none;
  }

  .master-slide:not(.is-center) {
    filter: none;
  }
}
