/* ============================================================
   HANEDAN KEBAP — CINEMATIC EXPERIENCE
   A premium scroll film. Luxury dark / charcoal / soft white,
   antique-gold accent. Playfair Display + Inter.
   ============================================================ */

:root {
  /* palette — luxury dark */
  --ink: #08080a;
  --char: #0e0e11;
  --char-2: #151519;
  --char-3: #1c1c21;
  --bone: #f5f1e8;
  --bone-dim: rgba(245, 241, 232, 0.66);
  --bone-faint: rgba(245, 241, 232, 0.34);

  /* antique gold */
  --gold: #e2bd6e;
  --gold-bright: #f3d899;
  --gold-deep: #b8914a;
  --gold-grad: linear-gradient(120deg, #f3d899 0%, #e2bd6e 38%, #b8914a 100%);

  --ember: #e86a2c;
  --line: rgba(245, 241, 232, 0.1);
  --line-strong: rgba(245, 241, 232, 0.18);

  --glass: rgba(20, 20, 24, 0.5);
  --glass-strong: rgba(14, 14, 17, 0.72);

  --serif: "Playfair Display", "Times New Roman", serif;
  --sans: "Inter", ui-sans-serif, system-ui, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.22, 0.61, 0.36, 1);

  --shadow-deep: 0 50px 120px -50px rgba(0, 0, 0, 0.9);
  --shadow-glow: 0 0 80px -20px rgba(226, 189, 110, 0.35);

  --pad: clamp(20px, 5vw, 80px);
  --maxw: 1320px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Lenis sets this; keep native scroll out of its way */
html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  font-family: var(--sans);
  background: var(--ink);
  color: var(--bone);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* film grain + vignette overlay across the whole page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  background:
    radial-gradient(120% 120% at 50% 50%, transparent 58%, rgba(0, 0, 0, 0.55) 100%);
  mix-blend-mode: multiply;
}
body::after {
  content: "";
  position: fixed;
  inset: -50%;
  z-index: 9001;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  animation: grain 0.6s steps(2) infinite;
}
@keyframes grain {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-8%, 6%); }
}

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

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

::selection {
  background: var(--gold);
  color: var(--ink);
}

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

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--ink);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.preloader__inner {
  text-align: center;
  width: min(420px, 80vw);
}
.preloader__mark {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  transform: translateY(18px);
}
.preloader__sub {
  margin-top: 14px;
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--bone-faint);
  opacity: 0;
}
.preloader__bar {
  margin-top: 34px;
  height: 1px;
  width: 100%;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.preloader__bar span {
  position: absolute;
  inset: 0;
  width: 0%;
  background: var(--gold-grad);
}
.preloader__count {
  margin-top: 16px;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--bone-dim);
  font-variant-numeric: tabular-nums;
}

/* ============================================================
   GLOBAL CHROME — progress bar, cursor light, chapter nav
   ============================================================ */
.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: var(--gold-grad);
  z-index: 8000;
  will-change: transform;
  box-shadow: 0 0 18px rgba(226, 189, 110, 0.6);
}

/* mouse-reactive lighting (hero only) */
.cursor-light {
  position: fixed;
  top: 0;
  left: 0;
  width: 60vmax;
  height: 60vmax;
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
  transform: translate3d(-50%, -50%, 0);
  background: radial-gradient(
    circle,
    rgba(232, 106, 44, 0.16) 0%,
    rgba(226, 189, 110, 0.08) 32%,
    transparent 64%
  );
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.6s var(--ease);
}

/* side chapter index */
.chapters {
  position: fixed;
  right: clamp(16px, 2.4vw, 38px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 7000;
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  transition: opacity 0.6s var(--ease);
}
.chapters.is-visible {
  opacity: 1;
}
.chapters button {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
  color: var(--bone-faint);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--sans);
  transition: color 0.4s var(--ease);
}
.chapters button .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--bone-faint);
  transition: all 0.4s var(--ease);
  flex: none;
}
.chapters button .lbl {
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.4s var(--ease);
  white-space: nowrap;
}
.chapters button:hover .lbl,
.chapters button.is-active .lbl {
  opacity: 1;
  transform: translateX(0);
}
.chapters button:hover,
.chapters button.is-active {
  color: var(--bone);
}
.chapters button.is-active .dot {
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(226, 189, 110, 0.16);
  transform: scale(1.25);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 7500;
  padding: 22px 0;
  transition: padding 0.5s var(--ease), background 0.5s var(--ease),
    backdrop-filter 0.5s var(--ease), border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  padding: 12px 0;
  background: var(--glass-strong);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line);
}
/* While the mobile nav overlay is open: solid background, deliberately NO
   backdrop-filter — backdrop-filter on this fixed ancestor would become the
   containing block for #nav's own position:fixed (a nested child), shrinking
   its inset:0 down to the header's own row instead of the full viewport.
   Declared after .is-scrolled so it wins if both classes end up applied. */
.site-header.nav-open {
  background: var(--ink);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: var(--line);
}
.site-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--serif);
}
.brand__name {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.brand__name em {
  font-style: normal;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand__sub {
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bone-faint);
}
.site-nav {
  display: flex;
  gap: 34px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}
.site-nav a {
  position: relative;
  color: var(--bone-dim);
  transition: color 0.35s var(--ease);
  padding: 4px 0;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 1px;
  width: 0;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}
.site-nav a:hover {
  color: var(--bone);
}
.site-nav a:hover::after {
  width: 100%;
}
.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 7500; /* above .site-nav.is-open (a sibling, fixed overlay at 7400) so the close button stays clickable */
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 13px 24px;
  border-radius: 100px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease),
    color 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  white-space: nowrap;
}
.btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.btn--gold {
  background: var(--gold-grad);
  color: var(--ink);
  box-shadow: 0 18px 50px -22px rgba(226, 189, 110, 0.7);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 60px -22px rgba(226, 189, 110, 0.9);
}
.btn--ghost {
  border-color: var(--line-strong);
  color: var(--bone);
  background: rgba(245, 241, 232, 0.02);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
  transform: translateY(-2px);
}
.btn--ghost svg { width: 16px; height: 16px; }

.header__toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: transparent;
  cursor: pointer;
  position: relative;
}
.header__toggle span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 1.5px;
  background: var(--bone);
  transition: 0.35s var(--ease);
}
.header__toggle span:nth-child(1) { top: 15px; }
.header__toggle span:nth-child(2) { top: 20.5px; }
.header__toggle span:nth-child(3) { top: 26px; }
.header__toggle.is-open span:nth-child(1) { top: 20.5px; transform: rotate(45deg); }
.header__toggle.is-open span:nth-child(2) { opacity: 0; }
.header__toggle.is-open span:nth-child(3) { top: 20.5px; transform: rotate(-45deg); }

/* ============================================================
   SHARED TYPOGRAPHY HELPERS
   ============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.eyebrow .bar {
  width: 34px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.display {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.01em;
}
.display em {
  font-style: italic;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* split-text primitives (set up by JS) */
.word-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding-bottom: 0.14em;
  margin-bottom: -0.14em;
}
.word {
  display: inline-block;
  will-change: transform;
}
.char {
  display: inline-block;
  will-change: transform;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh; /* fallback for browsers without svh */
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero__media video,
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  will-change: transform;
  filter: brightness(0.78) saturate(1.05) contrast(1.02);
}
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    /* left scrim — sits under the headline + lede */
    linear-gradient(90deg, rgba(8, 8, 10, 0.85) 0%, rgba(8, 8, 10, 0.55) 38%, rgba(8, 8, 10, 0.18) 66%, transparent 100%),
    /* continuous vertical wash so the middle is never bare */
    linear-gradient(180deg, rgba(8, 8, 10, 0.6) 0%, rgba(8, 8, 10, 0.28) 30%, rgba(8, 8, 10, 0.5) 72%, var(--ink) 100%),
    radial-gradient(90% 60% at 50% 120%, rgba(232, 106, 44, 0.18), transparent 60%);
}
/* floating blurred gradient orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  z-index: -1;
  pointer-events: none;
  will-change: transform;
}
.orb--1 {
  width: 46vw;
  height: 46vw;
  left: -10vw;
  top: -8vw;
  background: radial-gradient(circle, rgba(226, 189, 110, 0.45), transparent 70%);
}
.orb--2 {
  width: 40vw;
  height: 40vw;
  right: -12vw;
  bottom: 4vw;
  background: radial-gradient(circle, rgba(232, 106, 44, 0.4), transparent 70%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(80px, 12vh, 160px);
  padding-top: 140px;
  width: 100%;
}
.hero__eyebrow {
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(3.2rem, 11vw, 11rem);
  max-width: 14ch;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.55);
}
.hero__lede {
  margin-top: 32px;
  max-width: 52ch;
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  color: rgba(245, 241, 232, 0.92);
  font-weight: 300;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.6);
}
.hero__cta {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__stats {
  margin-top: 56px;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 5vw, 64px);
  list-style: none;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.hero__stats .num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
}
.hero__stats .num small {
  font-size: 0.5em;
  color: var(--bone-faint);
}
.hero__stats .lbl {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-faint);
  margin-top: 6px;
}

.hero__scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--bone-dim);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.hero__scroll .track {
  width: 1px;
  height: 54px;
  background: var(--line-strong);
  position: relative;
  overflow: hidden;
}
.hero__scroll .track::after {
  content: "";
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--gold);
  animation: scrollDrop 2.1s var(--ease) infinite;
}
@keyframes scrollDrop {
  0% { top: -50%; }
  100% { top: 100%; }
}

/* ============================================================
   MANIFESTO — big split text on dark
   ============================================================ */
/* default (no-JS / reduced-motion safe): text wraps normally, no pin */
.manifesto {
  position: relative;
  padding: clamp(90px, 16vh, 180px) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.manifesto__track {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  will-change: transform;
}
.manifesto h2.manifesto__line {
  flex: none;
  max-width: 22ch;
  margin: 0 auto;
  font-size: clamp(2rem, 5.6vw, 5rem);
}
.manifesto .muted {
  color: var(--bone-faint);
}
.manifesto__foot {
  margin-top: 48px;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

/* opted into by JS only once it can actually drive the horizontal slide.
   No pin, no fixed viewport height — the section's own (short) content
   height is its scroll footprint, so it flows straight into the next
   section with no dead gap. */
.manifesto.is-horizontal {
  padding: clamp(64px, 11vh, 130px) 0;
}
.manifesto.is-horizontal .manifesto__line {
  white-space: nowrap;
  max-width: none;
  padding-inline: 6vw;
  font-size: clamp(2.4rem, 7vw, 6rem);
}
.manifesto.is-horizontal .manifesto__foot {
  white-space: nowrap;
}

/* ============================================================
   FILMSTRIP — pinned cinematic video chapters
   ============================================================ */
.filmstrip {
  position: relative;
}
.chapter {
  position: relative;
  height: 100vh; /* fallback for browsers without svh */
  height: 100svh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.chapter__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.chapter__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.2);
  will-change: transform, filter;
}
.chapter__media .poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.chapter__grad {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 8, 10, 0.5) 0%, transparent 30%, transparent 55%, rgba(8, 8, 10, 0.85) 100%),
    linear-gradient(90deg, rgba(8, 8, 10, 0.78) 0%, rgba(8, 8, 10, 0.25) 42%, transparent 70%);
}
.chapter__content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.chapter__index {
  font-family: var(--serif);
  font-size: clamp(5rem, 16vw, 16rem);
  line-height: 0.8;
  font-weight: 600;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 241, 232, 0.18);
  position: absolute;
  top: -0.42em;
  left: var(--pad);
  z-index: -1;
  pointer-events: none;
}
.chapter__kicker {
  margin-bottom: 22px;
}
.chapter h2 {
  font-size: clamp(2.4rem, 7vw, 6.2rem);
  max-width: 16ch;
}
.chapter__sub {
  margin-top: 26px;
  max-width: 44ch;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: var(--bone-dim);
  font-weight: 300;
}
.chapter__tag {
  margin-top: 34px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
  padding: 10px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  background: var(--glass);
  backdrop-filter: blur(10px);
}
.chapter__tag .pip {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}

/* ============================================================
   SIGNATURE DISHES
   ============================================================ */
.section {
  position: relative;
  padding: clamp(90px, 16vh, 200px) 0;
}
.section--char {
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(226, 189, 110, 0.06), transparent 50%),
    var(--char);
}
.section__head {
  max-width: 760px;
  margin-bottom: 64px;
}
.section__head .eyebrow {
  margin-bottom: 24px;
}
.section__head h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}
.section__head p {
  margin-top: 22px;
  color: var(--bone-dim);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 56ch;
}

.signature__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.dish {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--char-2);
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  transition: transform 0.6s var(--ease), border-color 0.6s var(--ease),
    box-shadow 0.6s var(--ease);
}
.dish:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-deep);
}
.dish__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.dish__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.dish:hover .dish__media img {
  transform: scale(1.08);
}
.dish::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 30%, rgba(8, 8, 10, 0.55) 60%, rgba(8, 8, 10, 0.96) 100%);
}
.dish__featured-flag,
.dish__price {
  position: absolute;
  top: 18px;
}
.dish__price {
  right: 18px;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--gold-grad);
  padding: 6px 14px;
  border-radius: 100px;
}
.dish__body {
  padding: 28px;
}
.dish__tag {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.dish__body h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 600;
  margin: 10px 0 12px;
}
.dish__body p {
  color: var(--bone-dim);
  font-size: 0.92rem;
  font-weight: 300;
}
.dish--featured {
  grid-column: span 1;
}
.dish__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--gold-bright);
  transition: gap 0.4s var(--ease);
}
.dish__link:hover { gap: 14px; }

/* ============================================================
   MENU
   ============================================================ */
.menu__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}
.tab {
  appearance: none;
  border: 1px solid var(--line);
  background: rgba(245, 241, 232, 0.02);
  color: var(--bone-dim);
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  padding: 10px 20px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.4s var(--ease);
}
.tab:hover {
  color: var(--bone);
  border-color: var(--line-strong);
}
.tab.is-active {
  background: var(--gold-grad);
  color: var(--ink);
  border-color: transparent;
  font-weight: 600;
}
.menu__list {
  display: grid;
  gap: 56px;
}
.menu__group h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.menu__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 48px;
}
.menu__item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(245, 241, 232, 0.05);
}
.menu__item .name {
  font-size: 1rem;
  font-weight: 500;
}
.menu__item .badge {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 2px 8px;
  border-radius: 100px;
  margin-left: 8px;
  vertical-align: middle;
}
.menu__item .price {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold-bright);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.menu__item .note {
  grid-column: 1 / -1;
  font-size: 0.82rem;
  color: var(--bone-faint);
  font-weight: 300;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews__head {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
}
.reviews__score {
  text-align: right;
}
.reviews__big {
  font-family: var(--serif);
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1;
}
.reviews__big small {
  font-size: 0.34em;
  color: var(--bone-faint);
}
.reviews__src {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--bone-faint);
  margin-top: 8px;
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.review {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
  background: var(--char-2);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
}
.review:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
}
.review__stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 0.9rem;
}
.review p {
  font-size: 0.92rem;
  color: var(--bone-dim);
  font-weight: 300;
  flex: 1;
}
.review__by {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold-grad);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.82rem;
  flex: none;
}
.review__by strong {
  display: block;
  font-size: 0.9rem;
}
.review__by small {
  color: var(--bone-faint);
  font-size: 0.72rem;
}

/* ============================================================
   VISIT
   ============================================================ */
.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.visit__list {
  margin-top: 40px;
  display: grid;
  gap: 4px;
}
.visit__list > div {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.visit__list dt {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.visit__list dd {
  color: var(--bone-dim);
  font-weight: 300;
}
.visit__list dd a:hover { color: var(--gold-bright); }
.visit__cta {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.visit__map {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  height: 100%;
  min-height: 440px;
  position: relative;
}
.visit__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.4) contrast(1.05) brightness(0.85) invert(0.9) hue-rotate(180deg);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--char);
  border-top: 1px solid var(--line);
  padding: 90px 0 40px;
}
.footer__row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer__about {
  margin-top: 22px;
  color: var(--bone-faint);
  font-weight: 300;
  font-size: 0.92rem;
  max-width: 38ch;
}
.footer__col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer__col ul {
  list-style: none;
  display: grid;
  gap: 12px;
}
.footer__col a,
.footer__col li {
  color: var(--bone-dim);
  font-weight: 300;
  font-size: 0.92rem;
  transition: color 0.35s var(--ease);
}
.footer__col a:hover { color: var(--gold-bright); }
.footer__bottom {
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--bone-faint);
  font-size: 0.8rem;
}

/* floating whatsapp */
.fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  z-index: 7600;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  box-shadow: 0 18px 40px -12px rgba(37, 211, 102, 0.6);
  transition: transform 0.4s var(--ease);
}
.fab:hover { transform: scale(1.08) translateY(-2px); }
.fab svg { width: 30px; height: 30px; fill: currentColor; }

/* ============================================================
   REVEAL (fallback when GSAP absent) + reduced motion
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__media video,
  .hero__media img,
  .chapter__media video { transform: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .signature__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .site-nav { display: none; }
  .header__cta .btn--ghost { display: none; }
  .header__toggle { display: block; }

  .site-nav.is-open {
    display: flex;
    position: fixed;
    inset: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    background: rgba(8, 8, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    font-size: 1.5rem;
    font-family: var(--serif);
    z-index: 7400;
  }
  .site-nav.is-open a {
    padding: 12px 22px; /* generous tap target */
  }
  .site-nav.is-open a::after { display: none; }

  .chapters { display: none; }
  .visit__grid { grid-template-columns: 1fr; }
  .visit__list > div { grid-template-columns: 1fr; gap: 6px; }
  .menu__items { grid-template-columns: 1fr; }

  .chapter { align-items: flex-end; }
  .chapter__content { padding-bottom: 13vh; }
  .chapter__index { top: -0.3em; }

  .section__head { margin-bottom: 44px; }
}

@media (max-width: 600px) {
  .signature__grid { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .footer__row { grid-template-columns: 1fr; }

  .section { padding: clamp(64px, 12vh, 110px) 0; }

  /* compact header so brand + CTA + toggle never crowd */
  .site-header { padding: 16px 0; }
  .brand__name { font-size: 1.18rem; }
  .header__cta { gap: 10px; }
  .header__cta .btn--gold { padding: 10px 16px; font-size: 0.74rem; }

  /* hero: tidy 2×2 stats, breathing room */
  .hero__inner { padding-top: 120px; }
  .hero__lede { margin-top: 24px; }
  .hero__cta { margin-top: 32px; }
  .hero__cta .btn { flex: 1 1 auto; justify-content: center; }
  .hero__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 20px;
    margin-top: 40px;
    padding-top: 24px;
  }

  .dish { min-height: 400px; }
  .dish__body { padding: 22px; }
  .review { padding: 22px; }
  .fab { width: 54px; height: 54px; right: 16px; bottom: 16px; }

  .reviews__head { gap: 22px; }
  .reviews__score { text-align: left; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 2.85rem; }
  .hero__stats .num { font-size: 1.5rem; }
}

/* Touch / no-hover devices: drop the cursor light and the animated
   film-grain layer entirely — they cost paint/battery and add nothing
   without a pointer. The static vignette stays for the cinematic look. */
@media (hover: none), (pointer: coarse) {
  .cursor-light { display: none !important; }
  body::after { display: none; }
  .orb { filter: blur(52px); opacity: 0.42; }
}
