/* =========================================================
   MEAT MAX — Real Smoked Meat
   Design system & components
   ========================================================= */

:root {
  /* COLOR · OBSIDIAN + EMBER */
  --c-bg:        #0a0908;
  --c-bg-2:      #11100e;
  --c-surface:   #16110f;
  --c-surface-2: #1c1614;
  --c-line:      #2a2220;
  --c-line-2:    #3a2f2b;

  --c-cream:     #f5ede0;
  --c-cream-2:   #ebe1d0;
  --c-fog:       #a8a29e;
  --c-mute:      #6f6864;

  --c-red:       #7a1f2c;
  --c-red-2:     #9a2638;
  --c-red-glow:  #b32b3f;
  --c-ember:     #e85d1a;
  --c-ember-2:   #ff8a3d;
  --c-gold:      #c9a96e;

  /* TYPE */
  --f-display: "Fraunces", "Times New Roman", serif;
  --f-tall:    "Bebas Neue", "Impact", sans-serif;
  --f-body:    "Manrope", system-ui, sans-serif;
  --f-mono:    "JetBrains Mono", ui-monospace, monospace;

  /* SPACE */
  --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px; --sp-4: 16px;
  --sp-5: 24px; --sp-6: 32px; --sp-7: 48px; --sp-8: 64px;
  --sp-9: 96px; --sp-10: 128px; --sp-11: 160px;

  /* RADII */
  --r-sm: 4px; --r-md: 10px; --r-lg: 20px; --r-xl: 32px;

  /* MOTION */
  --e-smooth: cubic-bezier(.22,.61,.36,1);
  --e-out:    cubic-bezier(.16,1,.3,1);
  --e-in:     cubic-bezier(.7,0,.84,0);

  /* CONTAINER */
  --container: 1400px;
}

/* ───────────────────────────────────────────────────────── */
/*  BASE                                                       */
/* ───────────────────────────────────────────────────────── */

html { scroll-behavior: smooth; background: var(--c-bg); }

body {
  background: var(--c-bg);
  color: var(--c-cream);
  font-family: var(--f-body);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.005em;
  background-image:
    radial-gradient(1200px 600px at 20% -10%, rgba(122,31,44,.15), transparent 60%),
    radial-gradient(900px 700px at 110% 30%, rgba(232,93,26,.05), transparent 70%);
}

/* Grain texture overlay on everything */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
  position: relative;
}

/* ───────────────────────────────────────────────────────── */
/*  TYPOGRAPHY                                                 */
/* ───────────────────────────────────────────────────────── */

.display {
  font-family: var(--f-display);
  font-weight: 350;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--c-cream);
}
.display em {
  font-style: italic;
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--c-cream-2);
}
.display--xl { font-size: clamp(2.4rem, 6vw, 5.6rem); }
.display--lg { font-size: clamp(2rem, 4.5vw, 3.8rem); }

.eyebrow {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--c-cream-2);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 400;
}
.eyebrow--center { justify-content: center; }
.eyebrow .dash {
  width: 32px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-red-glow), transparent);
}

.section__lead {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  font-weight: 300;
  color: var(--c-cream-2);
  max-width: 60ch;
  line-height: 1.55;
  margin-top: 22px;
}
.section__head { margin-bottom: clamp(48px, 7vw, 96px); }
.section__head--center { text-align: center; }
.section__head--center .section__lead { margin-inline: auto; }

.section { padding-block: clamp(80px, 12vw, 160px); position: relative; }
.section::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, var(--c-line) 50%, transparent 95%);
}

.micro {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-fog);
}

/* ───────────────────────────────────────────────────────── */
/*  BUTTONS                                                    */
/* ───────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 100px;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: all .35s var(--e-out);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  white-space: nowrap;
  cursor: pointer;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), var(--c-ember) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .35s var(--e-out);
  z-index: -1;
}
.btn:hover::before { opacity: 0.5; }

.btn--primary {
  background: var(--c-red);
  color: var(--c-cream);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.06),
    0 8px 30px rgba(122,31,44,.4);
}
.btn--primary:hover {
  background: var(--c-red-2);
  transform: translateY(-2px);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.12),
    0 14px 40px rgba(122,31,44,.55);
}

.btn--ghost {
  background: transparent;
  color: var(--c-cream);
  border: 1px solid var(--c-line-2);
}
.btn--ghost:hover {
  border-color: var(--c-cream);
  background: rgba(245,237,224,0.04);
}

.btn--outline {
  background: transparent;
  color: var(--c-cream);
  border: 1px solid var(--c-cream-2);
}
.btn--outline:hover {
  background: var(--c-cream);
  color: var(--c-bg);
}

.btn--lg { padding: 18px 30px; font-size: 1rem; }
.btn--small { padding: 10px 18px; font-size: 0.85rem; }

.btn__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--c-ember-2);
  box-shadow: 0 0 8px var(--c-ember-2);
  animation: pulse-ember 1.6s infinite;
}
@keyframes pulse-ember {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

/* ───────────────────────────────────────────────────────── */
/*  CUSTOM CURSOR                                              */
/* ───────────────────────────────────────────────────────── */

.cursor, .cursor-dot {
  position: fixed;
  top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: difference;
  transition: transform .15s var(--e-out), width .25s var(--e-out), height .25s var(--e-out);
}
.cursor {
  width: 32px; height: 32px;
  border: 1px solid var(--c-cream);
  transform: translate(-50%, -50%);
}
.cursor-dot {
  width: 5px; height: 5px;
  background: var(--c-cream);
  transform: translate(-50%, -50%);
}
.cursor.is-hover { width: 64px; height: 64px; }
@media (hover: none), (pointer: coarse) {
  .cursor, .cursor-dot { display: none; }
}

/* ───────────────────────────────────────────────────────── */
/*  LOADER                                                     */
/* ───────────────────────────────────────────────────────── */

.loader {
  position: fixed; inset: 0;
  background: var(--c-bg);
  z-index: 10000;
  display: grid;
  place-items: center;
  transition: opacity .6s var(--e-out), visibility .6s;
}
.loader.is-done { opacity: 0; visibility: hidden; }

.loader__inner { text-align: center; padding: 0 24px; }
.loader__flame {
  width: 80px;
  margin: 0 auto 24px;
  animation: loader-flicker 1.4s infinite;
  filter: drop-shadow(0 0 30px var(--c-red-glow));
}
@keyframes loader-flicker {
  0%, 100% { transform: scale(1) rotate(-1deg); opacity: 1; }
  50% { transform: scale(1.05) rotate(1deg); opacity: 0.85; }
}
.loader__text {
  font-family: var(--f-display);
  font-size: clamp(2rem, 6vw, 4rem);
  letter-spacing: -0.02em;
  color: var(--c-cream);
  display: inline-block;
}
.loader__text span {
  display: inline-block;
  animation: loader-letter .6s var(--e-out) backwards;
}
.loader__text span:nth-child(1) { animation-delay: .05s; }
.loader__text span:nth-child(2) { animation-delay: .1s; }
.loader__text span:nth-child(3) { animation-delay: .15s; }
.loader__text span:nth-child(4) { animation-delay: .2s; }
.loader__text span:nth-child(5) { animation-delay: .25s; }
.loader__text span:nth-child(6) { animation-delay: .3s; }
.loader__text span:nth-child(7) { animation-delay: .35s; }
.loader__text span:nth-child(8) { animation-delay: .4s; }
.loader__dot { width: 16px; }
@keyframes loader-letter {
  0% { transform: translateY(40px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.loader__line {
  width: 220px; max-width: 60vw;
  height: 1px;
  margin: 28px auto 18px;
  background: var(--c-line);
  position: relative;
  overflow: hidden;
}
.loader__line span {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, var(--c-red-glow), var(--c-ember), transparent);
  animation: loader-line 1.6s infinite;
}
@keyframes loader-line {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.loader__sub {
  font-family: var(--f-mono);
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-fog);
}

/* ───────────────────────────────────────────────────────── */
/*  NAV                                                        */
/* ───────────────────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: transform .4s var(--e-out), background .3s var(--e-out), padding .3s var(--e-out);
  padding: 22px 0;
}
.nav.is-scrolled {
  background: rgba(10,9,8,0.78);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  padding: 14px 0;
  border-bottom: 1px solid rgba(58,47,43,0.5);
}
.nav.is-hidden { transform: translateY(-110%); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  color: var(--c-cream);
}
.nav__logo img {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--c-line-2);
  transition: transform .4s var(--e-out);
}
.nav__logo:hover img { transform: rotate(-12deg); }

.nav__menu {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav__menu a {
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--c-cream-2);
  position: relative;
  padding-block: 4px;
  transition: color .2s var(--e-out);
}
.nav__menu a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -2px;
  width: 0; height: 1px;
  background: var(--c-ember);
  transition: width .35s var(--e-out), left .35s var(--e-out);
}
.nav__menu a:hover { color: var(--c-cream); }
.nav__menu a:hover::after { width: 100%; left: 0; }

.nav__cta { display: flex; gap: 10px; }

.nav__burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--c-line-2);
  position: relative;
}
.nav__burger span {
  position: absolute;
  left: 12px; right: 12px;
  height: 1px;
  background: var(--c-cream);
  transition: transform .35s var(--e-out), opacity .25s;
}
.nav__burger span:nth-child(1) { top: 16px; }
.nav__burger span:nth-child(2) { top: 22px; }
.nav__burger span:nth-child(3) { top: 28px; }
.nav__burger.is-open span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  background: var(--c-bg);
  z-index: 99;
  transform: translateY(-100%);
  transition: transform .55s var(--e-out), opacity .3s ease, visibility .3s;
  display: flex; align-items: center; justify-content: center;
  padding: 80px 24px 40px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.drawer.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.drawer__inner {
  display: flex; flex-direction: column;
  gap: 14px;
  width: 100%; max-width: 520px;
  text-align: center;
  align-items: stretch;
}
.drawer__inner a {
  font-family: var(--f-display);
  font-size: clamp(1.05rem, 4vw, 1.35rem);
  letter-spacing: 0;
  color: var(--c-cream);
  padding-block: 10px;
  border-bottom: 1px solid var(--c-line);
  text-align: center;
  transition: color .2s;
}
.drawer__inner a:hover { color: var(--c-ember-2); }
.drawer__cta { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; align-items: stretch; }
.drawer__cta .btn { justify-content: center; text-align: center; }

/* ───────────────────────────────────────────────────────── */
/*  FAB                                                        */
/* ───────────────────────────────────────────────────────── */
.fab {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 30px rgba(37,211,102,.45);
  z-index: 90;
  transition: transform .3s var(--e-out);
  animation: fab-pop 1s var(--e-out) 1.5s backwards;
}
.fab svg { width: 26px; height: 26px; }
.fab:hover { transform: scale(1.1) rotate(-6deg); }
@keyframes fab-pop {
  0% { transform: scale(0) rotate(-180deg); opacity: 0; }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}

/* ═════════════════════════════════════════════════════════ */
/*  HERO                                                       */
/* ═════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  display: flex; flex-direction: column;
  padding-top: 100px; padding-bottom: 60px;
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(0.85) contrast(1.1);
  animation: hero-zoom 16s var(--e-smooth) infinite alternate;
}
@keyframes hero-zoom {
  from { transform: scale(1) translateY(0); }
  to   { transform: scale(1.12) translateY(-4%); }
}
.hero__bg-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 100%, rgba(232,93,26,.18), transparent 50%),
    linear-gradient(180deg, rgba(10,9,8,.5) 0%, rgba(10,9,8,.3) 30%, rgba(10,9,8,.9) 100%);
}
.hero__bg-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.12;
  mix-blend-mode: overlay;
}
.hero__smoke {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 600px at 80% 10%, rgba(245,237,224,.06), transparent 50%),
    radial-gradient(700px 500px at 10% 90%, rgba(232,93,26,.08), transparent 50%);
  filter: blur(20px);
  animation: smoke-drift 18s ease-in-out infinite alternate;
}
@keyframes smoke-drift {
  0% { transform: translate(0,0); opacity: .8; }
  100% { transform: translate(-3%, -2%); opacity: 1; }
}

/* ════════════════════════════════════════════
   SMOKE FX — drifting layered smoke texture
   ════════════════════════════════════════════ */
.smoke-fx {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.smoke-fx__layer {
  position: absolute;
  inset: -20% -10%;
  background-image: url("../images/smoke-texture.png");
  background-repeat: repeat-x;
  background-size: auto 100%;
  background-position: 0 50%;
  opacity: 0;
  mix-blend-mode: screen;
  filter: blur(2px) brightness(1.1) contrast(1.05);
  will-change: transform, opacity;
}
.smoke-fx__layer--1 {
  animation: smoke-flow-1 32s linear infinite, smoke-fade-1 14s ease-in-out infinite alternate;
}
.smoke-fx__layer--2 {
  inset: -30% -10% auto -10%;
  height: 70%;
  filter: blur(6px) brightness(0.95);
  opacity: 0;
  animation: smoke-flow-2 48s linear infinite, smoke-fade-2 18s ease-in-out infinite alternate;
}
.smoke-fx__layer--3 {
  inset: auto -10% -20% -10%;
  height: 55%;
  filter: blur(10px);
  animation: smoke-flow-3 60s linear infinite, smoke-fade-3 22s ease-in-out infinite alternate;
}
@keyframes smoke-flow-1 {
  from { transform: translate3d(-15%, 0, 0) scale(1.05); }
  to   { transform: translate3d(15%, -2%, 0) scale(1.15); }
}
@keyframes smoke-flow-2 {
  from { transform: translate3d(10%, 2%, 0) scale(1.2); }
  to   { transform: translate3d(-12%, -3%, 0) scale(1.35); }
}
@keyframes smoke-flow-3 {
  from { transform: translate3d(-8%, 3%, 0) scale(1.25); }
  to   { transform: translate3d(12%, -1%, 0) scale(1.4); }
}
@keyframes smoke-fade-1 { 0%,100% { opacity: .14; } 50% { opacity: .28; } }
@keyframes smoke-fade-2 { 0%,100% { opacity: .10; } 50% { opacity: .22; } }
@keyframes smoke-fade-3 { 0%,100% { opacity: .08; } 50% { opacity: .18; } }

/* Hero smoke gets a stronger blend */
.hero .smoke-fx { z-index: 0; }
.hero .smoke-fx__layer { mix-blend-mode: screen; }

/* Section variants — subtler, dark-friendly */
.smoke-fx--subtle .smoke-fx__layer { opacity: 0; mix-blend-mode: screen; }
.smoke-fx--subtle .smoke-fx__layer--1 { animation: smoke-flow-1 40s linear infinite, smoke-fade-subtle-1 16s ease-in-out infinite alternate; }
.smoke-fx--subtle .smoke-fx__layer--2 { animation: smoke-flow-2 56s linear infinite, smoke-fade-subtle-2 20s ease-in-out infinite alternate; }
.smoke-fx--subtle .smoke-fx__layer--3 { animation: smoke-flow-3 72s linear infinite, smoke-fade-subtle-3 26s ease-in-out infinite alternate; }
@keyframes smoke-fade-subtle-1 { 0%,100% { opacity: .06; } 50% { opacity: .14; } }
@keyframes smoke-fade-subtle-2 { 0%,100% { opacity: .04; } 50% { opacity: .10; } }
@keyframes smoke-fade-subtle-3 { 0%,100% { opacity: .03; } 50% { opacity: .08; } }

/* Make sure section content sits above the smoke */
.section { position: relative; }
.section > .container,
.section > .signature__carousel,
.section > header { position: relative; z-index: 1; }

/* ════════════════════════════════════════════
   COW WATERMARK — silhouette decorative accent
   ════════════════════════════════════════════ */
.cow-watermark {
  position: absolute;
  pointer-events: none;
  background-image: url("../images/cow-silhouette.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.05;
  z-index: 0;
  filter: invert(1);
}
.cow-watermark--right {
  right: -4%;
  bottom: 4%;
  width: clamp(180px, 28vw, 380px);
  aspect-ratio: 5 / 3.4;
}
.cow-watermark--left {
  left: -3%;
  top: 8%;
  width: clamp(160px, 22vw, 300px);
  aspect-ratio: 5 / 3.4;
  transform: scaleX(-1);
}
.cow-watermark--center {
  left: 50%;
  top: 50%;
  width: clamp(220px, 36vw, 460px);
  aspect-ratio: 5 / 3.4;
  transform: translate(-50%, -50%);
  opacity: 0.035;
}
@media (max-width: 720px) {
  .cow-watermark { opacity: 0.04; }
}

/* Tiny inline cow icon — for use as bullet/separator detail */
.cow-mark {
  display: inline-block;
  width: 1.2em;
  height: 0.85em;
  vertical-align: -0.12em;
  background-image: url("../images/cow-silhouette.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.55;
  margin: 0 0.35em;
}


.hero__topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 0 clamp(20px, 4vw, 56px);
  margin-bottom: auto;
  padding-block: 20px;
  border-bottom: 1px solid rgba(245,237,224,.08);
}
.hero__topbar .micro--center { text-align: center; color: var(--c-cream-2); }
.hero__topbar .micro--right { text-align: right; }

.hero__content {
  max-width: var(--container);
  width: 100%;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
  padding-block: clamp(40px, 8vw, 80px);
  position: relative;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-cream-2);
  margin-bottom: 32px;
  animation: fade-up 1s var(--e-out) backwards;
  animation-delay: 0.1s;
}
.hero__eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-ember);
  box-shadow: 0 0 12px var(--c-ember);
  animation: pulse-ember 1.8s infinite;
}

.hero__title {
  font-family: var(--f-display);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(4rem, 14vw, 13rem);
  line-height: 0.85;
  letter-spacing: -0.045em;
  color: var(--c-cream);
}
.hero__title .line {
  display: block;
  overflow: hidden;
}
.hero__title .word {
  display: inline-block;
}
.hero__title .word.italic {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--c-red-glow);
}

.hero__divider {
  height: 1px;
  width: 120px;
  margin: 36px 0 28px;
  background: linear-gradient(90deg, var(--c-red-glow), var(--c-ember), transparent);
}

.hero__lead {
  max-width: 56ch;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  font-weight: 300;
  line-height: 1.6;
  color: var(--c-cream-2);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 48px);
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(245,237,224,.1);
  max-width: 720px;
}
.stat strong {
  display: block;
  font-family: var(--f-display);
  font-weight: 350;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--c-cream);
}
.stat strong span {
  font-size: 0.5em;
  color: var(--c-fog);
  margin-left: 2px;
}
.stat small {
  display: block;
  margin-top: 10px;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-fog);
  line-height: 1.5;
}

.hero__ember {
  position: absolute;
  top: 50%; right: clamp(20px, 6vw, 80px);
  width: clamp(60px, 7vw, 100px);
  transform: translateY(-50%);
  opacity: 0.5;
  animation: ember-float 4s ease-in-out infinite alternate, ember-flicker 2.4s ease-in-out infinite;
  filter: drop-shadow(0 0 40px var(--c-ember));
  pointer-events: none;
}
@keyframes ember-float {
  0% { transform: translateY(-50%) rotate(-3deg); }
  100% { transform: translateY(-55%) rotate(3deg); }
}
@keyframes ember-flicker {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 0.35; }
}

.hero__scroll {
  position: absolute;
  left: clamp(20px, 4vw, 56px);
  bottom: 36px;
  display: flex; flex-direction: column; align-items: center;
  gap: 10px;
  color: var(--c-cream-2);
}
.hero__scroll span {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(180deg, var(--c-cream-2) 0%, transparent 100%);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: ""; position: absolute;
  left: 0; right: 0;
  height: 30%;
  background: var(--c-ember);
  animation: scroll-line 2.4s var(--e-smooth) infinite;
}
@keyframes scroll-line {
  0% { top: -30%; }
  100% { top: 100%; }
}

/* ═════════════════════════════════════════════════════════ */
/*  MARQUEE                                                    */
/* ═════════════════════════════════════════════════════════ */
.marquee {
  padding: 28px 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  overflow: hidden;
  background: var(--c-bg-2);
}
.marquee__track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
}
.marquee__group {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-shrink: 0;
}
.marquee__group span {
  font-family: var(--f-tall);
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: 0.04em;
  color: var(--c-cream);
}
.marquee__group:nth-child(2) span:nth-child(odd) { color: var(--c-cream); -webkit-text-stroke: 0; }
.marquee__group span:nth-child(even) {
  color: transparent;
  -webkit-text-stroke: 1px var(--c-cream-2);
}
.marquee__group i {
  font-style: normal;
  color: var(--c-ember);
  font-size: 1.5rem;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═════════════════════════════════════════════════════════ */
/*  STORY                                                      */
/* ═════════════════════════════════════════════════════════ */
.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.story__left { padding-top: 20px; }
.story__left .display { margin-top: 24px; }

.story__text {
  margin-top: 36px;
  display: flex; flex-direction: column;
  gap: 18px;
}
.story__text p {
  font-size: 1.06rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--c-cream-2);
  max-width: 56ch;
}

.story__bullets {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 32px;
  padding-top: 36px;
  border-top: 1px solid var(--c-line);
}
.story__bullets div {
  display: flex; flex-direction: column;
  gap: 6px;
}
.story__bullets strong {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 450;
  color: var(--c-cream);
  letter-spacing: -0.01em;
}
.story__bullets span {
  font-size: 0.92rem;
  color: var(--c-fog);
}

.story__right {
  position: relative;
  aspect-ratio: 4/5;
}
.story__img-wrap {
  position: relative;
  width: 100%; height: 100%;
  overflow: hidden;
  border-radius: var(--r-lg);
}
.story__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.1) saturate(1.05);
  transition: transform 1.6s var(--e-smooth);
}
.story__img-wrap:hover img { transform: scale(1.08); }

.story__img-label {
  position: absolute;
  left: 0; bottom: 24px;
  background: var(--c-bg);
  padding: 14px 22px;
  display: flex; align-items: center; gap: 18px;
  border-radius: 0 100px 100px 0;
}
.story__img-label .num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--c-ember);
}
.story__img-label .txt {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-cream-2);
}

.story__img-secondary {
  position: absolute;
  right: -40px; bottom: -60px;
  width: 45%;
  aspect-ratio: 1/1;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 8px solid var(--c-bg);
  z-index: 2;
  box-shadow: 0 30px 60px rgba(0,0,0,.5);
}
.story__img-secondary img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.story__badge {
  position: absolute;
  top: -20px; right: -20px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: var(--c-red);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 4px;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-cream);
  animation: badge-spin 24s linear infinite;
  z-index: 3;
  box-shadow: 0 20px 40px rgba(122,31,44,.4);
}
.story__badge span:nth-child(1) { transform: translateY(-4px); }
.story__badge span:nth-child(2) { font-family: var(--f-display); font-style: italic; font-size: 1.4rem; letter-spacing: -0.01em; }
@keyframes badge-spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ═════════════════════════════════════════════════════════ */
/*  SIGNATURE                                                  */
/* ═════════════════════════════════════════════════════════ */
.signature__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.dish {
  grid-column: span 4;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: transform .5s var(--e-out), border-color .3s, background .3s;
  isolation: isolate;
}
.dish::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% -20%, rgba(232,93,26,.15), transparent 70%);
  opacity: 0;
  transition: opacity .5s var(--e-out);
  pointer-events: none;
  z-index: -1;
}
.dish:hover {
  transform: translateY(-8px);
  border-color: var(--c-line-2);
  background: var(--c-surface-2);
}
.dish:hover::after { opacity: 1; }
.dish:hover .dish__img img { transform: scale(1.08); }

.dish--lg { grid-column: span 6; grid-row: span 2; }
.dish--wide { grid-column: span 8; }

.dish__img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
}
.dish--lg .dish__img { aspect-ratio: 4/4.5; }
.dish__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--e-smooth);
}

.dish__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0 10px;
}
.dish__num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--c-ember);
}
.dish__tag {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 100px;
  border: 1px solid var(--c-line-2);
  color: var(--c-cream-2);
}
.dish__name {
  font-family: var(--f-display);
  font-weight: 450;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--c-cream);
  margin-bottom: 8px;
}
.dish__desc {
  font-size: 0.92rem;
  color: var(--c-fog);
  line-height: 1.55;
}

/* ═════════════════════════════════════════════════════════ */
/*  MENU                                                       */
/* ═════════════════════════════════════════════════════════ */
.menu__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 56px;
}
.menu__tab {
  padding: 12px 22px;
  border-radius: 100px;
  font-family: var(--f-body);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  color: var(--c-cream-2);
  border: 1px solid var(--c-line);
  background: transparent;
  transition: all .35s var(--e-out);
}
.menu__tab:hover { color: var(--c-cream); border-color: var(--c-line-2); }
.menu__tab.is-active {
  background: var(--c-red);
  border-color: var(--c-red);
  color: var(--c-cream);
  box-shadow: 0 10px 24px rgba(122,31,44,.35);
}

.menu__panels { position: relative; }
.menu__panel {
  display: none;
  animation: panel-in .6s var(--e-out);
}
.menu__panel.is-active { display: block; }
@keyframes panel-in {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.menu__cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 80px;
  padding: 56px;
  background: var(--c-surface);
  border-radius: var(--r-xl);
  border: 1px solid var(--c-line);
}
.menu__col h4 {
  font-family: var(--f-display);
  font-weight: 450;
  font-size: 1.4rem;
  color: var(--c-cream);
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--c-line);
  display: flex; align-items: center; gap: 12px;
}
.menu__col h4::before {
  content: "";
  width: 18px; height: 1px;
  background: var(--c-ember);
}

.menu__col ul {
  display: flex; flex-direction: column;
  gap: 18px;
}
.menu__col li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 1rem;
  color: var(--c-cream-2);
}
.menu__col li span { flex-shrink: 0; }
.menu__col li dot {
  flex: 1;
  height: 1px;
  background-image: linear-gradient(to right, var(--c-line-2) 50%, transparent 50%);
  background-size: 6px 1px;
  background-repeat: repeat-x;
  position: relative;
  top: -4px;
}
.menu__col li b {
  font-family: var(--f-display);
  font-weight: 450;
  font-style: italic;
  color: var(--c-ember-2);
  flex-shrink: 0;
  font-size: 1.05rem;
}

.menu__pdf {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 32px;
  margin-top: 32px;
  background: linear-gradient(135deg, var(--c-red), var(--c-red-2));
  border-radius: var(--r-lg);
  color: var(--c-cream);
  font-family: var(--f-body);
  font-weight: 500;
  transition: transform .35s var(--e-out), box-shadow .35s;
}
.menu__pdf:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(122,31,44,.45);
}
.menu__pdf-icon {
  font-family: var(--f-mono);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}
.menu__note {
  margin-top: 18px;
  font-family: var(--f-mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: var(--c-mute);
  text-align: center;
}

/* ═════════════════════════════════════════════════════════ */
/*  PROCESS                                                    */
/* ═════════════════════════════════════════════════════════ */
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 80px;
  position: relative;
  list-style: none;
  counter-reset: step;
}
.step {
  padding: 0 32px 60px;
  position: relative;
  border-left: 1px solid var(--c-line);
}
.step:first-child { border-left: none; padding-left: 0; }

.step__num {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(3.4rem, 8vw, 7rem);
  letter-spacing: -0.05em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--c-red-glow);
  display: block;
  margin-bottom: 16px;
  transition: color .6s var(--e-out), -webkit-text-stroke-color .6s;
}
.step:hover .step__num {
  color: var(--c-ember);
  -webkit-text-stroke-color: transparent;
}

.step h3 {
  font-family: var(--f-display);
  font-weight: 450;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  letter-spacing: -0.01em;
  color: var(--c-cream);
  margin-bottom: 12px;
}
.step p {
  font-size: 0.95rem;
  color: var(--c-fog);
  line-height: 1.6;
  max-width: 28ch;
}
.step__line {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--c-ember);
  transition: width 1s var(--e-out);
}
.step.is-revealed .step__line { width: 60%; }

/* ═════════════════════════════════════════════════════════ */
/*  CAROUSEL                                                   */
/* ═════════════════════════════════════════════════════════ */
.carousel {
  margin-top: 64px;
  position: relative;
}
.carousel__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  gap: 16px;
}
.carousel__title {
  font-family: var(--f-display);
  font-weight: 450;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
  color: var(--c-cream);
}
.carousel__controls {
  display: flex; align-items: center;
  gap: 14px;
}
.carousel__btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--c-line-2);
  color: var(--c-cream);
  font-size: 1.2rem;
  transition: all .25s var(--e-out);
}
.carousel__btn:hover {
  background: var(--c-cream);
  color: var(--c-bg);
  border-color: var(--c-cream);
}
.carousel__count {
  font-family: var(--f-mono);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  color: var(--c-cream-2);
  min-width: 50px;
  text-align: center;
}

.carousel__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__slide {
  flex: 0 0 calc((100% - 48px) / 3);
  scroll-snap-align: start;
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--c-surface);
}
.carousel__slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--e-smooth);
}
.carousel__slide:hover img { transform: scale(1.08); }
.carousel__cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(10,9,8,.92) 100%);
  font-family: var(--f-display);
  font-weight: 450;
  font-size: 1.15rem;
  color: var(--c-cream);
}

/* ═════════════════════════════════════════════════════════ */
/*  REVIEWS                                                    */
/* ═════════════════════════════════════════════════════════ */
.reviews .num-xl {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(4rem, 12vw, 9rem);
  color: var(--c-ember);
  letter-spacing: -0.04em;
}
.reviews .of {
  font-family: var(--f-display);
  font-size: 0.4em;
  color: var(--c-fog);
  vertical-align: super;
}

.reviews__stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 28px;
}
.reviews__stars .star {
  width: 28px; height: 28px;
  fill: var(--c-ember-2);
}
.reviews__stars .star--partial {
  fill: url(#partial-grad);
  background: linear-gradient(90deg, var(--c-ember-2) 80%, var(--c-line) 80%);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2l2.6 7.2H22l-6 4.4 2.3 7.2L12 16.6 5.7 20.8 8 13.6l-6-4.4h7.4z'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2l2.6 7.2H22l-6 4.4 2.3 7.2L12 16.6 5.7 20.8 8 13.6l-6-4.4h7.4z'/></svg>") no-repeat center / contain;
  fill: transparent;
}

.reviews__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 40px;
}
.chip {
  padding: 10px 18px;
  border-radius: 100px;
  border: 1px solid var(--c-line-2);
  font-size: 0.86rem;
  color: var(--c-cream-2);
  transition: all .25s var(--e-out);
  display: inline-flex; align-items: center; gap: 8px;
}
.chip:hover { border-color: var(--c-cream-2); color: var(--c-cream); }
.chip.is-active {
  background: var(--c-cream);
  color: var(--c-bg);
  border-color: var(--c-cream);
}
.chip__count {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  opacity: 0.7;
}

.reviews__featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
  margin-bottom: 48px;
}
.rev {
  padding: 32px;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  display: flex; flex-direction: column;
  gap: 18px;
  position: relative;
  transition: transform .4s var(--e-out), border-color .3s, background .3s;
}
.rev:hover {
  transform: translateY(-4px);
  border-color: var(--c-line-2);
  background: var(--c-surface-2);
}
.rev--featured {
  background: linear-gradient(135deg, rgba(122,31,44,.12), rgba(28,22,20,.6));
  border-color: rgba(154,38,56,.3);
}
.rev__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.rev__stars {
  color: var(--c-ember-2);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}
.rev__loc {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-fog);
}
.rev__quote {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--c-cream-2);
  flex: 1;
}
.rev__quote::before {
  content: "“";
  display: block;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 3rem;
  line-height: 0.5;
  color: var(--c-red-glow);
  margin-bottom: 12px;
}
.rev__by {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--c-line);
}
.rev__by span {
  font-family: var(--f-display);
  font-weight: 500;
  color: var(--c-cream);
}
.rev__by i {
  font-style: italic;
  font-family: var(--f-display);
  font-size: 0.86rem;
  color: var(--c-fog);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.reviews__grid .rev { animation: rev-in .55s var(--e-out) backwards; }
@keyframes rev-in {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.reviews__loadmore {
  display: flex; flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 56px;
  text-align: center;
}
.btn__count {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  opacity: 0.7;
}
.reviews__note {
  font-family: var(--f-mono);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  color: var(--c-mute);
}
.reviews__note a { color: var(--c-ember-2); border-bottom: 1px solid currentColor; }

.reviews__marquee {
  margin-top: 96px;
  display: flex; flex-direction: column;
  gap: 16px;
  overflow: hidden;
  mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.reviews__marquee-track {
  display: flex;
  gap: 16px;
  white-space: nowrap;
  animation: marquee-rev 60s linear infinite;
  width: max-content;
}
.reviews__marquee-track--rev { animation-direction: reverse; animation-duration: 70s; }
.reviews__marquee-track .mini {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid var(--c-line);
  border-radius: 100px;
  background: var(--c-surface);
  font-size: 0.9rem;
  color: var(--c-cream-2);
  flex-shrink: 0;
}
.reviews__marquee-track .mini b {
  font-family: var(--f-display);
  font-weight: 500;
  color: var(--c-cream);
}
.reviews__marquee-track .mini i {
  font-style: normal;
  color: var(--c-ember-2);
}
@keyframes marquee-rev {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═════════════════════════════════════════════════════════ */
/*  ORDER                                                      */
/* ═════════════════════════════════════════════════════════ */
.order__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.order__lead {
  font-size: 1.06rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--c-cream-2);
  margin-top: 24px;
  max-width: 40ch;
}
.order__right {
  display: flex; flex-direction: column;
  gap: 16px;
}
.order-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  transition: all .35s var(--e-out);
  position: relative;
}
.order-card:hover {
  background: var(--c-surface-2);
  border-color: var(--c-line-2);
  transform: translateX(8px);
}
.order-card__logo {
  width: 60px; height: 60px;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid; place-items: center;
  overflow: hidden;
}
.order-card__logo--talabat { background: #ff5a00; }
.order-card__logo--wa { background: rgba(37,211,102,.12); padding: 12px; }
.order-card__logo--call { background: var(--c-bg-2); padding: 18px; border: 1px solid var(--c-line); }
.order-card__logo svg { width: 100%; height: 100%; }
.order-card__logo--talabat svg { width: 60px; height: 60px; }
.order-card__body { flex: 1; }
.order-card__body h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--c-cream);
  letter-spacing: -0.01em;
}
.order-card__body p {
  font-size: 0.9rem;
  color: var(--c-fog);
  margin-top: 4px;
}
.order-card__arrow {
  font-family: var(--f-display);
  font-size: 1.5rem;
  color: var(--c-ember);
  transition: transform .35s var(--e-out);
}
.order-card:hover .order-card__arrow { transform: translateX(6px); }

/* ═════════════════════════════════════════════════════════ */
/*  LOCATIONS                                                  */
/* ═════════════════════════════════════════════════════════ */
.locations__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.loc {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform .5s var(--e-out), border-color .3s;
}
.loc:hover {
  transform: translateY(-6px);
  border-color: var(--c-line-2);
}
.loc__img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.loc__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--e-smooth);
}
.loc:hover .loc__img img { transform: scale(1.06); }
.loc__pin {
  position: absolute;
  top: 18px; left: 18px;
  padding: 6px 14px;
  background: var(--c-red);
  border-radius: 100px;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-cream);
}
.loc__body { padding: 32px; }
.loc__city {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-ember-2);
  margin-bottom: 10px;
}
.loc__name {
  font-family: var(--f-display);
  font-weight: 450;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  letter-spacing: -0.02em;
  color: var(--c-cream);
  margin-bottom: 12px;
}
.loc__addr {
  font-size: 0.95rem;
  color: var(--c-fog);
  line-height: 1.5;
  margin-bottom: 24px;
}
.loc__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding-block: 18px;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  margin-bottom: 24px;
}
.loc__row strong {
  display: block;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-mute);
  margin-bottom: 6px;
  font-weight: 400;
}
.loc__row span, .loc__row a {
  font-family: var(--f-display);
  font-size: 1.1rem;
  color: var(--c-cream);
}
.loc__row a { color: var(--c-ember-2); }
.loc__actions { display: flex; gap: 10px; flex-wrap: wrap; }

.locations__amenities {
  margin-top: 56px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  padding: 32px;
  border: 1px dashed var(--c-line-2);
  border-radius: var(--r-lg);
}
.locations__amenities div {
  display: flex; align-items: center; gap: 12px;
  color: var(--c-cream-2);
  font-family: var(--f-mono);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.locations__amenities svg {
  width: 22px; height: 22px;
  color: var(--c-ember-2);
}

/* ═════════════════════════════════════════════════════════ */
/*  INSTAGRAM                                                  */
/* ═════════════════════════════════════════════════════════ */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 56px;
}
.ig-tile {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--c-surface);
}
.ig-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--e-smooth), filter .35s;
  filter: grayscale(0.3) contrast(1.05);
}
.ig-tile:hover img {
  transform: scale(1.1);
  filter: grayscale(0) contrast(1.1);
}
.ig-tile__overlay {
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(122,31,44,.85), rgba(232,93,26,.7));
  color: var(--c-cream);
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.1rem;
  opacity: 0;
  transition: opacity .35s var(--e-out);
}
.ig-tile:hover .ig-tile__overlay { opacity: 1; }

.ig-follow {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
  flex-wrap: wrap;
}

/* ═════════════════════════════════════════════════════════ */
/*  FRANCHISE                                                  */
/* ═════════════════════════════════════════════════════════ */
.franchise__inner {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  isolation: isolate;
  padding: clamp(60px, 8vw, 120px) clamp(32px, 6vw, 80px);
  min-height: 460px;
  display: flex;
  align-items: center;
}
.franchise__bg { position: absolute; inset: 0; z-index: -1; }
.franchise__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(95deg, rgba(10,9,8,.95) 30%, rgba(10,9,8,.6) 100%);
}
.franchise__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(1.1);
}
.franchise__content { max-width: 620px; }
.franchise__content .display { margin-top: 24px; }
.franchise__content p {
  margin: 28px 0 36px;
  font-size: 1.05rem;
  color: var(--c-cream-2);
  line-height: 1.6;
  max-width: 50ch;
}

/* ═════════════════════════════════════════════════════════ */
/*  FOOTER                                                     */
/* ═════════════════════════════════════════════════════════ */
.footer {
  background: var(--c-bg-2);
  border-top: 1px solid var(--c-line);
  padding-top: 96px;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--c-line);
}
.footer__brand { max-width: 360px; }
.footer__logo {
  width: 56px; height: 56px;
  border-radius: 50%;
  margin-bottom: 18px;
  border: 1px solid var(--c-line-2);
}
.footer__tag {
  font-family: var(--f-display);
  font-size: 1.3rem;
  color: var(--c-cream);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.footer__addr {
  font-size: 0.92rem;
  color: var(--c-fog);
  line-height: 1.6;
}

.footer__col h4 {
  font-family: var(--f-mono);
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-cream-2);
  margin-bottom: 22px;
}
.footer__col ul {
  display: flex; flex-direction: column;
  gap: 12px;
}
.footer__col a, .footer__col li {
  font-size: 0.92rem;
  color: var(--c-fog);
  transition: color .2s;
}
.footer__col a:hover { color: var(--c-cream); }

.footer__bottom {
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--f-mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: var(--c-mute);
}

.footer__watermark {
  position: absolute;
  left: 0; right: 0; bottom: -8vw;
  text-align: center;
  font-family: var(--f-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(8rem, 30vw, 28rem);
  line-height: 0.8;
  letter-spacing: -0.045em;
  color: transparent;
  -webkit-text-stroke: 1px var(--c-line);
  pointer-events: none;
  user-select: none;
}

/* ═════════════════════════════════════════════════════════ */
/*  RESPONSIVE                                                 */
/* ═════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .nav__menu { gap: 18px; }
  .nav__menu a { font-size: 0.86rem; }
  .signature__grid { grid-template-columns: repeat(6, 1fr); }
  .dish { grid-column: span 3; }
  .dish--lg { grid-column: span 6; grid-row: auto; }
  .dish--wide { grid-column: span 6; }
  .reviews__featured { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .carousel__slide { flex-basis: calc((100% - 24px) / 2); }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand { grid-column: span 3; max-width: none; }
}

@media (max-width: 800px) {
  .nav__menu, .nav__cta { display: none; }
  .nav__burger { display: block; }
  .hero__topbar { display: none; }
  .hero__title { font-size: clamp(3.4rem, 16vw, 7rem); }
  .hero__stats { grid-template-columns: 1fr; gap: 24px; }
  .hero__scroll { display: none; }
  .hero__ember { display: none; }
  .story__grid { grid-template-columns: 1fr; }
  .story__right { aspect-ratio: 3/4; margin-top: 20px; }
  .story__img-secondary { right: -10px; bottom: -30px; width: 50%; }
  .story__badge { width: 100px; height: 100px; font-size: 0.6rem; top: -10px; right: -10px; }
  .story__bullets { grid-template-columns: 1fr; }
  .signature__grid { grid-template-columns: 1fr; }
  .dish, .dish--lg, .dish--wide { grid-column: span 1; }
  .menu__cols { grid-template-columns: 1fr; gap: 40px; padding: 32px; }
  .process__steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .step { border-left: none; padding: 0; border-top: 1px solid var(--c-line); padding-top: 24px; }
  .step:nth-child(odd) { padding-right: 16px; }
  .step:nth-child(even) { padding-left: 16px; border-left: 1px solid var(--c-line); }
  .step__num { font-size: 3.4rem; }
  .carousel__slide { flex-basis: calc(100% - 32px); }
  .reviews__grid { grid-template-columns: 1fr; }
  .order__grid { grid-template-columns: 1fr; }
  .locations__grid { grid-template-columns: 1fr; }
  .loc__row { grid-template-columns: 1fr; gap: 14px; }
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
  .menu__tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; }
  .menu__tab { flex-shrink: 0; }
  .franchise__inner { padding: 56px 28px; }
}

@media (max-width: 500px) {
  .nav__logo span { display: none; }
  .reviews__filters { gap: 6px; }
  .chip { padding: 8px 14px; font-size: 0.8rem; }
  .fab { right: 16px; bottom: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ===========================================================
   Additions: review avatar/name/dish · marquee snippet · cursor host · image fade-in
   =========================================================== */

/* Hide native cursor when custom cursor is active */
.has-custom-cursor,
.has-custom-cursor a,
.has-custom-cursor button,
.has-custom-cursor input,
.has-custom-cursor [data-link] { cursor: none; }

/* Review card bits used by JS-mounted cards */
.rev__avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--c-brand-red, #9a2638), var(--c-ember, #e85d1a));
  color: var(--c-cream, #f5ede0);
  font-family: var(--ff-display, "Fraunces", serif);
  font-weight: 700;
  font-size: 0.78rem;
  margin-right: 8px;
  letter-spacing: 0;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(232, 93, 26, 0.25);
}
.rev__by {
  display: flex; align-items: center; gap: 6px;
  flex-wrap: wrap;
}
.rev__name {
  font-weight: 700;
  color: var(--c-cream, #f5ede0);
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}
.rev__dish {
  margin: 10px 0 14px;
  font-family: var(--ff-mono, "JetBrains Mono", monospace);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-cream-2, #ebe1d0);
  opacity: 0.7;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 2px solid var(--c-ember, #e85d1a);
  border-radius: 2px;
}
.rev__dish em {
  color: var(--c-gold, #c9a96e);
  font-style: normal;
  font-weight: 700;
  margin-right: 6px;
}

/* Reviews grid layout (JS-mounted) */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 40px 0 32px;
}
@media (max-width: 1100px) {
  .reviews__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  .reviews__grid { grid-template-columns: 1fr; gap: 16px; }
}
.reviews__loadmore {
  display: flex;
  justify-content: center;
  margin: 24px 0 48px;
}
.btn__count {
  display: inline-block;
  margin-left: 10px;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(232, 93, 26, 0.15);
  color: var(--c-ember, #ff8a3d);
  font-family: var(--ff-mono, monospace);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
}

/* Marquee snippets (JS-populated) */
.rev-snippet {
  display: inline-block;
  padding: 0 28px;
  font-family: var(--ff-display, "Fraunces", serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  color: var(--c-cream, #f5ede0);
  white-space: nowrap;
  letter-spacing: -0.01em;
  opacity: 0.85;
}
.rev-snippet__sep {
  display: inline-block;
  padding: 0 8px;
  color: var(--c-brand-red, #9a2638);
  font-size: clamp(1.2rem, 2.8vw, 2rem);
  vertical-align: middle;
  opacity: 0.7;
}

/* Image fade-in */
img {
  opacity: 0;
  transition: opacity 0.7s ease;
}
img.is-loaded { opacity: 1; }
/* But skip the fade for images already onscreen at first paint after a moment */
@media (prefers-reduced-motion: reduce) {
  img { opacity: 1 !important; transition: none !important; }
}

/* Carousel controls styling pass (ensure they exist) */
.carousel__nav .btn-circ {
  cursor: pointer;
}

/* ======= OVERRIDES (centered hero, room single, reviews carousel) ======= */
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero__eyebrow { justify-content: center; }
.hero__title { text-align: center; }
.hero__divider { margin-left: auto; margin-right: auto; }
.hero__lead { margin-left: auto; margin-right: auto; }
.hero__actions { justify-content: center; }
.hero__stats { margin-left: auto; margin-right: auto; text-align: center; }

/* The Room — single full-width slide */
.carousel__slide--full {
  flex: 0 0 100%;
  aspect-ratio: 16/10;
}
.carousel__track--single { scroll-snap-type: none; }

/* Reviews carousel */
.reviews__carousel { margin-top: 40px; }
.reviews__carousel .carousel__head {
  justify-content: flex-end;
}
.reviews__carousel .carousel__track {
  align-items: stretch;
}
.reviews__carousel .rev.carousel__slide {
  flex: 0 0 clamp(280px, 32%, 420px);
  aspect-ratio: auto;
  background: var(--c-surface);
  scroll-snap-align: start;
}
.reviews__carousel .rev.carousel__slide:hover img { transform: none; }
.reviews__note { margin-top: 18px; text-align: center; color: var(--c-fog); font-size: 0.86rem; }

@media (max-width: 800px) {
  .reviews__carousel .rev.carousel__slide { flex-basis: 86%; }
}

/* Signature dishes as carousel */
.signature__carousel { margin-top: 40px; }
.signature__carousel .carousel__head { justify-content: flex-end; }
.signature__carousel .carousel__track.signature__grid {
  display: flex;
  grid-template-columns: none;
}
.signature__carousel .dish.carousel__slide {
  flex: 0 0 clamp(280px, 32%, 420px);
  aspect-ratio: auto;
  background: transparent;
  scroll-snap-align: start;
}
.signature__carousel .dish.dish--lg.carousel__slide { flex-basis: clamp(320px, 40%, 520px); }
@media (max-width: 800px) {
  .signature__carousel .dish.carousel__slide,
  .signature__carousel .dish.dish--lg.carousel__slide { flex-basis: 86%; }
}
