/* =====================================================
   AUTHENTICO — stylesheet
   Editorial warm · Fraunces + Manrope · Ultra-premium
   ===================================================== */

/* ---------- Tokens ---------- */
:root {
  --cream: #F6F1E8;
  --cream-2: #EFE7D8;
  --paper: #FBF7F0;
  --ink: #1C1B17;
  --ink-soft: #2A2822;
  --mute: #6B6659;
  --line: #1C1B17;
  --rule: rgba(28,27,23,.12);

  --brand: #DD4A1C;
  --brand-deep: #B93A13;
  --brand-ink: #B93A13;       /* AA-compliant brand for small text on light (5.08:1) */
  --stats-bg: #BE3C0C;        /* deeper terracotta so white labels pass AA */
  --brand-glow: rgba(221,74,28,.35);
  --sun: #E9B949;
  --leaf: #3E5742;
  --rose: #C9876F;

  --f-display: "Fraunces", "Times New Roman", serif;
  --f-body: "Manrope", ui-sans-serif, system-ui, sans-serif;

  --radius: 18px;
  --radius-lg: 28px;

  /* Multi-layer premium shadows */
  --sh-1: 0 1px 2px rgba(28,27,23,.04), 0 2px 6px rgba(28,27,23,.06);
  --sh-2: 0 2px 4px rgba(28,27,23,.05), 0 8px 20px rgba(28,27,23,.08), 0 20px 48px -12px rgba(28,27,23,.14);
  --sh-3: 0 4px 10px rgba(28,27,23,.06), 0 16px 32px rgba(28,27,23,.12), 0 40px 80px -20px rgba(28,27,23,.2);
  --sh-dish: 0 6px 12px rgba(28,27,23,.08), 0 30px 60px -20px rgba(28,27,23,.25), 0 0 0 1px rgba(28,27,23,.04);
  --sh-glow: 0 20px 48px -12px var(--brand-glow);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-smooth: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-pop: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { box-sizing: border-box; }

::selection { background: var(--brand); color: var(--cream); }

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.js body { cursor: none; }
@media (max-width: 900px), (hover: none) {
  .js body { cursor: auto; }
}

/* Paper grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .5;
  mix-blend-mode: multiply;
  z-index: 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='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.11  0 0 0 0 0.10  0 0 0 0 0.09  0 0 0 0.09 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { width: min(1280px, 92vw); margin: 0 auto; position: relative; z-index: 1; }

.skip {
  position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden;
}
.skip:focus {
  position: fixed; left: 20px; top: 20px; width: auto; height: auto;
  padding: 12px 20px; background: var(--ink); color: var(--cream);
  border-radius: 8px; z-index: 100;
}

/* ===== LOADER ===== */
.loader {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 9999;
  display: none;
  place-items: center;
  transition: opacity .6s ease, visibility .6s;
}
.js .loader {
  display: grid;
  animation: loaderAutohide .6s ease 1.4s forwards; /* safety net if load event is slow */
}
.loader.gone {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@keyframes loaderAutohide { to { opacity: 0; visibility: hidden; } }
.loader-logo {
  animation: pulse 1.4s ease-in-out infinite;
}
.loader-logo img { opacity: .9; }
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: .75; }
  50% { transform: scale(1.08); opacity: 1; }
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--brand);
  z-index: 100;
  transition: width 0.1s linear;
  box-shadow: 0 0 12px var(--brand-glow);
}

/* ===== CUSTOM CURSOR ===== */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9000;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  /* NO mix-blend-mode — it inverts button text and makes it unreadable */
  display: none;
  opacity: 0;
  transition: opacity .3s ease;
}
.js .cursor-dot, .js .cursor-ring { display: block; }
.cursor-ready .cursor-dot, .cursor-ready .cursor-ring { opacity: 1; }

.cursor-dot {
  width: 6px; height: 6px;
  background: var(--ink);
  /* white halo keeps the dot visible on both light and dark sections */
  box-shadow: 0 0 0 1.5px rgba(255,255,255,.55);
  transition: width .25s ease, height .25s ease, background .2s ease,
              box-shadow .2s ease, opacity .3s ease;
}
/* On button/link hover: dot turns white so it reads on any button colour */
.cursor-dot.hover {
  background: #fff;
  box-shadow: 0 0 0 1.5px rgba(28,27,23,.25);
}

.cursor-ring {
  width: 34px; height: 34px;
  border: 1.5px solid rgba(28,27,23,.35);
  background: transparent;
  transition: transform .4s var(--ease-out), width .3s ease, height .3s ease,
              border-color .3s ease, background .3s ease, opacity .3s ease;
}
/* On button/link hover: ring stays compact, switches to a soft white fill
   so it frames the element without covering its text */
.cursor-ring.hover {
  width: 42px; height: 42px;   /* modest growth — doesn't swallow button copy */
  border: 1.5px solid rgba(255,255,255,.7);
  background: rgba(255,255,255,.08);  /* very faint fill — visible, not opaque */
}

@media (max-width: 900px), (hover: none) {
  .cursor-dot, .cursor-ring { display: none !important; }
}

/* ===== TYPOGRAPHY ===== */
.display {
  font-family: var(--f-display);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  letter-spacing: -0.022em;
  line-height: 0.98;
}
.eyebrow {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
  margin: 0;
}
.ital {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
em.ital { font-weight: 400; }
.mute { color: var(--mute); }
.link-u { text-decoration: underline; text-underline-offset: 3px; }

/* ===== BUTTONS ===== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.01em;

  border: 1px solid var(--line);
  background: var(--ink);
  color: var(--cream);

  cursor: none;
  position: relative;
  overflow: hidden;

  transition:
    transform .4s var(--ease-out),
    background .3s ease,
    color .3s ease,
    box-shadow .4s ease;

  will-change: transform;
  z-index: 1;
}

/* Hover overlay */
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--brand);

  transform: translateY(101%);
  transition: transform .5s var(--ease-out);

  z-index: -1;   /* changed from 0 */
}

/* Keep ALL button text above overlay */
.btn,
.btn * {
  position: relative;
  z-index: 2;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-glow);
}

.btn:hover::before {
  transform: translateY(0);
}

.btn:hover {
  border-color: var(--brand);
}

/* Ghost buttons */
.btn.ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn.ghost::before {
  background: var(--ink);
}

.btn.ghost:hover {
  color: var(--cream);
  border-color: var(--ink);
  box-shadow: var(--sh-2);
}

/* Brand buttons */
.btn.brand {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.btn.brand::before {
  background: var(--brand-deep);
}

.btn.brand:hover {
  border-color: var(--brand-deep);
}

@media (max-width:900px),
(hover:none) {
  .btn {
      cursor:pointer;
  }
}

.arrow {
  display:inline-block;
  transition:transform .4s var(--ease-out);
}

.btn:hover .arrow {
  transform:translateX(5px);
}

/* ===== NAV ===== */
.nav {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  background: rgba(246,241,232,.72);
  border-bottom: 1px solid var(--rule);
  transition: padding .3s ease, background .3s ease;
}
.nav.scrolled {
  background: rgba(246,241,232,.9);
  box-shadow: var(--sh-1);
}
.nav-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
  transition: padding .3s ease;
}
.nav.scrolled .nav-row { padding: 12px 0; }

.brand-mark {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  cursor: none;
}
.brand-mark img { object-fit: contain; }
.brand-mark .dot { color: var(--sun); }

.nav-links {
  display: flex; gap: 36px; align-items: center;
  font-size: 14.5px;
  font-weight: 500;
}
.nav-links a {
  position: relative;
  padding: 8px 0;
  cursor: none;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px;
  height: 1px; background: var(--ink); transform: scaleX(0); transform-origin: right;
  transition: transform .35s var(--ease-out);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta { display: flex; gap: 10px; align-items: center; }

/* Hamburger toggle — hidden on desktop */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
.nav-toggle span {
  position: absolute;
  left: 50%; top: 50%;
  width: 18px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform .35s var(--ease-out), background .2s ease;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .35s var(--ease-out);
}
.nav-toggle span::before { transform: translateY(-7px); }
.nav-toggle span::after { transform: translateY(7px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: rotate(-45deg); }

/* Mobile slide-down menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--cream);
  z-index: 39;
  padding: 100px 6vw 40px;
  transform: translateY(-100%);
  transition: transform .5s var(--ease-out);
  border-bottom: 1px solid var(--rule);
  box-shadow: var(--sh-2);
  display: flex; flex-direction: column; gap: 0;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a:not(.btn) {
  font-family: var(--f-display);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.01em;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
}
.mobile-menu .btn {
  margin-top: 24px;
  justify-content: center;
  font-size: 16px;
}

@media (max-width: 900px), (hover: none) {
  .brand-mark, .nav-links a { cursor: pointer; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }   /* all buttons hidden — they live in the mobile menu */
  .nav-toggle { display: block; }
}
@media (min-width: 861px) {
  .mobile-menu { display: none; }
}

/* ===== HERO ===== */
.hero {
  padding: 60px 0 48px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero h1.display {
  font-size: clamp(50px, 7.6vw, 116px);
  margin: 16px 0 24px;
}
.hero h1 .line { display: block; }
.hero h1 .ital.swash {
  color: var(--brand);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  position: relative;
  display: inline-block;
}
.hero h1 .ital.swash::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.08em;
  height: 6px;
  background: var(--sun);
  opacity: .35;
  z-index: -1;
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: left;
  animation: under 1s var(--ease-out) 1.4s forwards;
}
@keyframes under {
  to { transform: scaleX(1); }
}

.hero-lede {
  max-width: 44ch;
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0 0 28px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-meta {
  margin-top: 32px;
  display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: center;
  font-size: 14px;
}
.avatars { display: flex; }
.avatars span {
  width: 40px; height: 40px; border-radius: 50%;
  border: 2px solid var(--cream);
  margin-left: -12px;
  display: block;
  background-size: cover; background-position: center;
  box-shadow: var(--sh-1);
  transition: transform .4s var(--ease-pop);
}
.avatars span:first-child { margin-left: 0; }
.avatars:hover span { transform: translateX(-6px); }
.avatars:hover span:nth-child(1) { transform: translateX(-6px) rotate(-4deg); }
.avatars:hover span:nth-child(4) { transform: translateX(6px) rotate(4deg); }

/* Hero dish cards */
.hero-visual {
  position: relative;
  aspect-ratio: 4/4.6;
  width: 100%;
}
.hero-blob {
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233,185,73,.5), transparent 70%);
  top: 4%; right: -8%;
  z-index: 0;
  filter: blur(30px);
  animation: float 9s ease-in-out infinite;
}
.hero-blob-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(221,74,28,.35), transparent 70%);
  top: auto; bottom: 6%; left: 0;
  animation: float 11s ease-in-out infinite reverse;
  animation-delay: -3s;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -30px); }
}

.dish-card {
  position: absolute;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--sh-dish);
  transition: transform .6s var(--ease-out), box-shadow .6s ease;
  will-change: transform;
}
.dish-card:hover {
  box-shadow: var(--sh-3);
}
.dish-img {
  position: relative;
  height: 72%;
  overflow: hidden;
}
.dish-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.dish-card:hover .dish-img img { transform: scale(1.06); }

.dish-card figcaption {
  padding: 14px 18px;
  font-size: 13px;
  display: flex; flex-direction: column; gap: 2px;
}
.dish-card figcaption strong {
  display: block;
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.dish-card figcaption .sub {
  color: var(--mute);
  font-size: 12.5px;
}
.dish-card .tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(251,247,240,.96);
  backdrop-filter: blur(6px);
  padding: 6px 12px; border-radius: 999px;
  font-family: var(--f-body);
  font-size: 11px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  box-shadow: var(--sh-1);
}

.dish-card.dc1 {
  top: 0; left: 0;
  width: 64%; aspect-ratio: 1/1.22;
  transform: rotate(-5deg);
  z-index: 2;
  animation: dishFloat 6s ease-in-out infinite;
}
.dish-card.dc2 {
  top: 24%; right: 0;
  width: 58%; aspect-ratio: 1/1.2;
  transform: rotate(7deg);
  z-index: 3;
  animation: dishFloat 7.5s ease-in-out infinite;
  animation-delay: -2s;
}
.dish-card.dc3 {
  bottom: 0; left: 14%;
  width: 54%; aspect-ratio: 1/1.05;
  transform: rotate(-8deg);
  z-index: 4;
  animation: dishFloat 8s ease-in-out infinite;
  animation-delay: -4s;
}
@keyframes dishFloat {
  0%, 100% { transform: rotate(var(--r, 0deg)) translateY(0); }
  50% { transform: rotate(var(--r, 0deg)) translateY(-12px); }
}
.dish-card.dc1 { --r: -5deg; }
.dish-card.dc2 { --r: 7deg; }
.dish-card.dc3 { --r: -8deg; }

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { height: 460px; }
}

/* ===== PHONE MOCKUPS ===== */
.phone {
  position: absolute;
  container-type: inline-size;
  will-change: transform;
}
.phone-a {
  top: 0; left: 3%;
  width: 51%;
  z-index: 2;
  --r: -7deg;
  transform: rotate(-7deg);
  animation: dishFloat 8s ease-in-out infinite;
}
.phone-b {
  bottom: 0; right: 3%;
  width: 49%;
  z-index: 4;
  --r: 7deg;
  transform: rotate(7deg);
  animation: dishFloat 9.5s ease-in-out infinite;
  animation-delay: -3.5s;
}

.phone-frame {
  position: relative;
  aspect-ratio: 1 / 2.06;
  background: linear-gradient(155deg, #2a2820 0%, #100f0b 60%);
  border-radius: 13.5cqw;
  padding: 2.4cqw;
  box-shadow: var(--sh-dish);
}
.phone-frame::after {
  content: "";
  position: absolute;
  inset: 2.4cqw;
  border-radius: 11cqw;
  background: linear-gradient(135deg, rgba(255,255,255,.12), transparent 38%);
  pointer-events: none;
  z-index: 8;
}
.phone-island {
  position: absolute;
  top: 3.4cqw; left: 50%;
  transform: translateX(-50%);
  width: 28%; height: 6cqw;
  background: #0a0906;
  border-radius: 5cqw;
  z-index: 9;
}
.phone-screen {
  position: relative;
  width: 100%; height: 100%;
  background: var(--paper);
  border-radius: 11cqw;
  overflow: hidden;
  display: flex; flex-direction: column;
  font-family: var(--f-body);
  color: var(--ink);
  line-height: 1.3;
}

/* status bar */
.app-status {
  display: flex; align-items: center; justify-content: space-between;
  padding: 4.4cqw 6cqw 1cqw;
  font-size: 3.7cqw;
  font-weight: 700;
  flex-shrink: 0;
}
.app-status .ast-ic { width: 11cqw; height: auto; }
.app-status.on-photo {
  position: absolute; top: 0; left: 0; right: 0;
  z-index: 6; color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,.3);
}
.app-status.on-photo .ast-ic { filter: drop-shadow(0 1px 2px rgba(0,0,0,.3)); }

/* discovery body */
.app-body {
  flex: 1;
  padding: 1.5cqw 5.5cqw 0;
  display: flex; flex-direction: column;
  gap: 3.2cqw;
  min-height: 0;
}
.app-head { display: flex; align-items: center; justify-content: space-between; margin-top: 1.5cqw; }
.app-hgreet { display: flex; flex-direction: column; gap: .6cqw; }
.ag-1 { font-size: 3.2cqw; color: var(--mute); font-weight: 500; }
.ag-2 { font-size: 5cqw; font-weight: 800; letter-spacing: -.015em; }
.app-ava {
  width: 9.5cqw; height: 9.5cqw; border-radius: 50%;
  background-size: cover; background-position: center;
  box-shadow: var(--sh-1);
  flex-shrink: 0;
}
.app-search {
  display: flex; align-items: center; gap: 2.4cqw;
  background: #fff; border: 1px solid var(--rule);
  border-radius: 4cqw; padding: 3cqw 4cqw;
  font-size: 3.5cqw; color: var(--mute);
}
.app-search svg { width: 4.4cqw; height: 4.4cqw; flex-shrink: 0; color: var(--brand); }
.app-sec {
  font-size: 3.1cqw; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink-soft); margin-top: .4cqw;
}
.app-card {
  display: flex; gap: 3.4cqw; align-items: center;
  background: #fff; border: 1px solid var(--rule);
  border-radius: 4.5cqw; padding: 2.8cqw;
  box-shadow: 0 2cqw 6cqw -3cqw rgba(28,27,23,.2);
}
.apc-img {
  width: 16cqw; height: 16cqw;
  border-radius: 3cqw;
  background-size: cover; background-position: center;
  flex: 0 0 auto;
}
.apc-info { display: flex; flex-direction: column; gap: .9cqw; min-width: 0; }
.apc-info strong { font-size: 4.1cqw; font-weight: 700; letter-spacing: -.01em; }
.apc-sub { font-size: 3.1cqw; color: var(--mute); }
.apc-meta { font-size: 3.1cqw; color: var(--ink-soft); }
.apc-meta b { color: var(--brand-ink); font-weight: 800; }

/* tab bar */
.app-tabs {
  margin-top: auto;
  display: flex; justify-content: space-around; align-items: center;
  padding: 3cqw 7cqw 5.5cqw;
  border-top: 1px solid var(--rule);
  background: #fff;
  flex-shrink: 0;
}
.app-tabs .tab { width: 5.8cqw; height: 5.8cqw; color: #BBB4A4; }
.app-tabs .tab.on { color: var(--brand); }

/* order tracking */
.app-track { flex: 1; display: flex; flex-direction: column; min-height: 0; }
.trk-photo {
  height: 44%;
  background-size: cover; background-position: center;
  position: relative;
  flex-shrink: 0;
}
.trk-live {
  position: absolute;
  bottom: 9cqw; left: 6cqw;
  display: inline-flex; align-items: center; gap: 1.6cqw;
  background: rgba(221,74,28,.96);
  color: #fff;
  font-size: 3cqw; font-weight: 800;
  letter-spacing: .1em;
  padding: 1.6cqw 3.4cqw;
  border-radius: 3cqw;
  box-shadow: var(--sh-2);
}
.trk-live i {
  width: 2.2cqw; height: 2.2cqw; border-radius: 50%;
  background: #fff;
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
.trk-panel {
  flex: 1;
  background: var(--paper);
  margin-top: -7cqw;
  border-radius: 8cqw 8cqw 0 0;
  position: relative; z-index: 2;
  padding: 6.5cqw 6cqw 7cqw;
  display: flex; flex-direction: column; gap: 2.4cqw;
}
.trk-status {
  font-size: 3cqw; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--brand-ink);
}
.trk-title {
  font-family: var(--f-display);
  font-size: 7cqw; font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1;
}
.trk-chef { font-size: 3.5cqw; color: var(--mute); margin-top: -1.2cqw; }
.trk-steps { display: flex; gap: 2.2cqw; margin: 3cqw 0 1.5cqw; }
.trk-steps .ts {
  flex: 1; height: 1.8cqw;
  border-radius: 2cqw;
  background: rgba(28,27,23,.12);
}
.trk-steps .ts.done { background: var(--brand); }
.trk-steps .ts.now {
  background: linear-gradient(90deg, var(--brand) 60%, rgba(28,27,23,.12) 60%);
  position: relative;
}
.trk-steps .ts.now::after {
  content: "";
  position: absolute;
  left: 60%; top: 50%;
  width: 3.6cqw; height: 3.6cqw;
  border-radius: 50%;
  background: var(--brand);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 1.8cqw rgba(221,74,28,.22);
}
.trk-eta {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 1.5cqw;
}
.te-1 { font-size: 3.2cqw; color: var(--mute); display: block; margin-bottom: .4cqw; }
.te-2 { font-size: 6cqw; font-weight: 800; letter-spacing: -.02em; display: block; }
.te-btn {
  background: var(--ink); color: var(--cream);
  font-size: 3.7cqw; font-weight: 700;
  padding: 3.2cqw 5.4cqw;
  border-radius: 10cqw;
}

@media (max-width: 540px) {
  .hero-visual { height: 400px; }
}

/* ===== MARQUEE ===== */
.marquee {
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.marquee-track {
  display: flex; gap: 48px;
  white-space: nowrap;
  animation: scrollX 45s linear infinite;
  font-family: var(--f-display);
  font-size: 26px;
  font-style: italic;
  font-weight: 300;
  letter-spacing: -0.01em;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-track span { display: inline-flex; align-items: center; gap: 48px; }
.m-dot {
  color: var(--sun);
  font-size: 10px;
  font-style: normal;
  display: inline-block;
  transform: translateY(-3px);
}
@keyframes scrollX {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SECTIONS ===== */
section { padding: 130px 0; position: relative; }
section.tight { padding: 80px 0; }

.sec-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}
.sec-head h2 {
  font-size: clamp(44px, 5.8vw, 84px);
  margin: 14px 0 0;
}
.sec-head p {
  color: var(--ink-soft);
  font-size: 17.5px;
  max-width: 52ch;
  margin: 0;
}
@media (max-width: 900px) {
  .sec-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 56px; }
}

/* ===== HOW IT WORKS ===== */
.how {
  background: var(--paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.step {
  padding: 60px 32px 60px 0;
  border-right: 1px solid var(--rule);
  position: relative;
  transition: background .5s ease;
}
.step:last-child { border-right: none; padding-right: 0; }
.step:first-child { padding-left: 0; }
.step:not(:first-child) { padding-left: 40px; }
.step:hover { background: rgba(221,74,28,.03); }

.step-num {
  font-family: var(--f-display);
  font-size: 80px;
  color: var(--brand);
  line-height: 1;
  font-weight: 300;
  margin-bottom: 28px;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  transition: transform .5s var(--ease-out);
}
.step:hover .step-num { transform: translateY(-6px) rotate(-3deg); }

.step h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 30px;
  margin: 0 0 14px;
  letter-spacing: -0.015em;
}
.step p {
  color: var(--ink-soft);
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
}
@media (max-width: 780px) {
  .how-grid { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--rule); padding: 44px 0 !important; }
  .step:last-child { border-bottom: none; }
}

/* ===== CHEFS GRID ===== */
.chefs-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.chef-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  position: relative;
  cursor: none;
  /* Flex column so the photo grows to fill the full grid row height */
  display: flex;
  flex-direction: column;
  transition: transform .6s var(--ease-out), box-shadow .6s ease;
  box-shadow: var(--sh-1);
}
.chef-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-3);
}
.chef-card .photo {
  /* flex: 1 fills all available card height — no cream gap below the image */
  flex: 1 1 0;
  min-height: 260px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, #C77A3C 0%, #8A3A1B 60%, #4A1A0B 100%);
}
.chef-card .photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out), filter .8s ease;
}
.chef-card:hover .photo img {
  transform: scale(1.08);
}
.chef-card.big { grid-column: span 6; }
.chef-card.small { grid-column: span 3; }

.chef-card .photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,27,23,0) 30%, rgba(28,27,23,.8) 100%);
  pointer-events: none;
}

.chef-card .info {
  position: absolute; bottom: 20px; left: 22px; right: 22px;
  color: var(--cream);
  display: flex; justify-content: space-between; align-items: end;
  z-index: 1;
  gap: 12px;
  transform: translateY(0);
  transition: transform .5s var(--ease-out);
}
.chef-card:hover .info { transform: translateY(-4px); }

.chef-card .info h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 23px;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.chef-card.big .info h3 { font-size: 32px; }
.chef-card .info span {
  font-size: 12px;
  opacity: .9;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 600;
}

.chef-card .pill {
  position: absolute; top: 16px; left: 16px;
  background: rgba(251,247,240,.96);
  backdrop-filter: blur(6px);
  padding: 7px 13px; border-radius: 999px;
  font-size: 11px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  z-index: 2;
  color: var(--ink);
  box-shadow: var(--sh-1);
}
.chef-card .price {
  background: var(--cream);
  color: var(--ink);
  padding: 5px 11px; border-radius: 999px;
  font-size: 12px; font-weight: 700;
  white-space: nowrap;
  box-shadow: var(--sh-1);
}

@media (max-width: 900px), (hover: none) {
  .chef-card { cursor: pointer; }
}
@media (max-width: 900px) {
  .chef-card.big, .chef-card.small { grid-column: span 6; }
}
@media (max-width: 560px) {
  .chef-card.big, .chef-card.small { grid-column: span 12; }
}

/* ===== BECOME A CHEF (DARK) ===== */
.chef-section {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.chef-section::before {
  content: "";
  position: absolute;
  top: -180px; right: -120px;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(221,74,28,.3), transparent 65%);
  pointer-events: none;
  filter: blur(10px);
  animation: float 14s ease-in-out infinite;
}
.chef-section::after {
  content: "";
  position: absolute;
  bottom: -200px; left: -100px;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(233,185,73,.22), transparent 65%);
  pointer-events: none;
  filter: blur(10px);
  animation: float 16s ease-in-out infinite reverse;
  animation-delay: -4s;
}
.chef-section .sec-head h2 { color: var(--cream); }
.chef-section .sec-head p { color: rgba(246,241,232,.72); }
.chef-section .eyebrow { color: var(--sun); }

.benefits {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid rgba(246,241,232,.18);
}
.benefit {
  padding: 52px 32px 52px 0;
  border-right: 1px solid rgba(246,241,232,.14);
  position: relative;
  transition: background .4s ease;
}
.benefit:last-child { border-right: none; padding-right: 0; }
.benefit:first-child { padding-left: 0; }
.benefit:not(:first-child) { padding-left: 32px; }
.benefit:hover { background: rgba(233,185,73,.05); }

.benefit .num {
  font-family: var(--f-display);
  font-size: 58px;
  color: var(--sun);
  font-weight: 300;
  font-style: italic;
  line-height: 1;
  margin-bottom: 22px;
  transition: transform .5s var(--ease-out);
}
.benefit:hover .num {
  transform: translateY(-4px) rotate(-4deg);
}
.benefit h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 24px;
  margin: 0 0 12px;
  letter-spacing: -0.008em;
}
.benefit p {
  color: rgba(246,241,232,.68);
  font-size: 14.5px;
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .benefit { border-bottom: 1px solid rgba(246,241,232,.14); padding: 36px 20px !important; }
  .benefit:nth-child(2n) { border-right: none; }
  .benefit:nth-child(n+3) { border-bottom: none; }
}
@media (max-width: 560px) {
  .benefits { grid-template-columns: 1fr; }
  .benefit {
    border-right: none;
    border-bottom: 1px solid rgba(246,241,232,.14);
    padding: 32px 0 !important;
  }
  .benefit:last-child { border-bottom: none; }
}

.chef-cta-row {
  margin-top: 64px;
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
}
.chef-cta-row .btn { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.chef-cta-row .btn::before { background: var(--sun); }
.chef-cta-row .btn:hover { border-color: var(--sun); color: var(--ink); }
.chef-cta-row .btn.ghost { background: transparent; color: var(--cream); border-color: rgba(246,241,232,.3); }
.chef-cta-row .btn.ghost::before { background: var(--cream); }
.chef-cta-row .btn.ghost:hover { color: var(--ink); border-color: var(--cream); }

/* ===== STATS ===== */
.stats {
  background: var(--stats-bg);
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  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='0.95' numOctaves='2'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.08 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  pointer-events: none;
  mix-blend-mode: overlay;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
  position: relative;
}
.stat .num {
  font-family: var(--f-display);
  font-size: clamp(64px, 7.5vw, 108px);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.035em;
  margin-bottom: 10px;
  display: flex; align-items: baseline; gap: 2px;
}
.stat .lab {
  font-size: 14.5px;
  color: rgba(255,255,255,.95);
  max-width: 24ch;
  line-height: 1.5;
}
.stat + .stat {
  border-left: 1px solid rgba(255,255,255,.22);
  padding-left: 40px;
}
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .stat + .stat { border-left: none; padding-left: 0; }
  .stat:nth-child(3), .stat:nth-child(4) { padding-top: 30px; border-top: 1px solid rgba(255,255,255,.22); }
}

/* ===== TESTIMONIALS ===== */
.quotes-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.quote {
  margin: 0;
  padding: 40px 36px;
  background: var(--paper);
  border-radius: var(--radius);
  display: flex; flex-direction: column;
  min-height: 340px;
  box-shadow: var(--sh-1);
  transition: transform .5s var(--ease-out), box-shadow .5s ease;
  position: relative;
}
.quote:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-2);
}
.quote .qmark {
  font-family: var(--f-display);
  font-size: 90px;
  line-height: 0.5;
  color: var(--brand);
  margin: 6px 0 16px;
  font-style: italic;
  font-weight: 300;
}
.quote blockquote {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.38;
  letter-spacing: -0.008em;
  margin: 0 0 28px;
  flex: 1;
}
.quote figcaption {
  display: flex; align-items: center; gap: 14px;
  margin-top: auto;
}
.quote .ava {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover;
  flex: 0 0 44px;
  box-shadow: var(--sh-1);
  background: linear-gradient(135deg, var(--brand), var(--sun));
}
.quote figcaption strong {
  display: block;
  font-weight: 600;
  font-size: 15px;
  font-family: var(--f-body);
}
.quote figcaption span span {
  font-size: 13px;
  color: var(--mute);
  font-weight: 400;
}
@media (max-width: 900px) {
  .quotes-grid { grid-template-columns: 1fr; }
}

/* ===== FAQ ===== */
.faq-grid {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 90px;
  align-items: start;
}
.faq-grid h2 {
  font-size: clamp(44px, 5.2vw, 72px);
  margin: 14px 0 20px;
}
.faq-list { border-top: 1px solid var(--rule); }
details {
  border-bottom: 1px solid var(--rule);
  padding: 26px 0;
  transition: padding .3s ease;
}
details[open] { padding: 28px 0 30px; }
details > summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--f-display);
  font-size: 23px;
  font-weight: 400;
  letter-spacing: -0.008em;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  transition: color .3s ease;
}
details > summary:hover { color: var(--brand-ink); }
details > summary::-webkit-details-marker { display: none; }
details > summary::after {
  content: "";
  width: 18px; height: 18px;
  background-image:
    linear-gradient(var(--brand), var(--brand)),
    linear-gradient(var(--brand), var(--brand));
  background-size: 100% 2px, 2px 100%;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform .4s var(--ease-out);
  flex-shrink: 0;
}
details[open] > summary::after {
  background-size: 100% 2px, 0 100%;
  transform: rotate(180deg);
}
details p {
  margin: 16px 0 0;
  color: var(--ink-soft);
  max-width: 62ch;
  font-size: 15.5px;
  line-height: 1.65;
  animation: fadeDown .5s var(--ease-out);
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 860px) { .faq-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ===== FINAL CTA ===== */
.final-cta {
  padding: 160px 0;
  text-align: center;
  background: var(--cream-2);
  border-top: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.final-cta::before, .final-cta::after {
  content: "";
  position: absolute;
  width: 360px; height: 360px; border-radius: 50%;
  filter: blur(60px);
  opacity: .55;
  animation: float 12s ease-in-out infinite;
}
.final-cta::before {
  top: 10%; left: 8%;
  background: radial-gradient(circle, rgba(221,74,28,.55), transparent 60%);
}
.final-cta::after {
  bottom: 10%; right: 8%;
  background: radial-gradient(circle, rgba(233,185,73,.6), transparent 60%);
  animation-delay: -6s;
}
.final-cta h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(60px, 8.5vw, 144px);
  letter-spacing: -0.035em;
  line-height: 0.95;
  margin: 0 0 40px;
  position: relative;
  z-index: 2;
}
.final-cta h2 em.ital { color: var(--brand); }
.final-cta .ctas {
  display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  position: relative; z-index: 2;
}

/* ===== FOOTER ===== */
footer {
  background: var(--ink);
  color: rgba(246,241,232,.78);
  padding: 90px 0 30px;
  font-size: 14px;
}
footer .brand-mark { color: var(--cream); font-size: 24px; margin-bottom: 22px; }
.foot-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(246,241,232,.14);
}
.foot-about p { max-width: 38ch; line-height: 1.65; margin: 0; }
.foot-col h3 {
  color: var(--cream);
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.foot-col a { transition: color .3s ease; }
.foot-col a:hover { color: var(--sun); }
.foot-bot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 26px;
  font-size: 12.5px;
  color: rgba(246,241,232,.5);
  flex-wrap: wrap; gap: 12px;
}
.foot-bot a { transition: color .3s ease; }
.foot-bot a:hover { color: var(--cream); }
@media (max-width: 760px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-about { grid-column: span 2; }
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal-mask {
  display: block;
  overflow: hidden;
}
.reveal-mask > span {
  display: inline-block;
  transition: transform .7s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.js .reveal-mask > span { transform: translateY(110%); }
.js .reveal-mask.in > span { transform: translateY(0); }

.reveal-up {
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
  transition-delay: var(--d, 0s);
  will-change: transform, opacity;
}
.js .reveal-up { opacity: 0; transform: translateY(18px); }
.js .reveal-up.in { opacity: 1; transform: none; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .dish-card, .hero-blob, .hero-blob-2 { animation: none !important; }
}
