/* ═══════════════════════════════════════════════
   THE BOWL TRUTH — design system v2
   Brand: #355525 green · #F38E41 orange · #D8E061 lime · #B43B39 red
   More glass. More life.
   ═══════════════════════════════════════════════ */

:root {
  --green: #355525;
  --green-deep: #24390f;
  --green-ink: #1c2d10;
  --orange: #f38e41;
  --lime: #d8e061;
  --red: #b43b39;
  --cream: #faf8f1;
  --cream-2: #f3f0e4;
  --white: #ffffff;
  --ink: #1e2415;

  --font-display: "Bricolage Grotesque", sans-serif;
  --font-body: "Instrument Sans", sans-serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);

  --pad: clamp(1.25rem, 5vw, 6rem);
  --radius: 28px;

  /* glass tokens */
  --glass-bg: rgba(255, 255, 255, 0.38);
  --glass-bg-strong: rgba(255, 255, 255, 0.55);
  --glass-border: rgba(255, 255, 255, 0.75);
  --glass-blur: blur(26px) saturate(180%);
  --glass-dark-bg: rgba(255, 255, 255, 0.08);
  --glass-dark-border: rgba(255, 255, 255, 0.16);
}

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

html { scroll-behavior: initial; overflow-x: clip; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 640; line-height: 1.02; letter-spacing: -0.02em; }
em { font-style: italic; }

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

/* ── glass scrollbar ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: rgba(53, 85, 37, 0.35);
  border-radius: 100px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover { background: rgba(53, 85, 37, 0.6); }

/* ── ambient orbs (fixed, glow through every glass panel) ── */
.ambient { position: fixed; inset: 0; pointer-events: none; z-index: 0; }
.orb { position: absolute; border-radius: 50%; filter: blur(70px); will-change: transform; }
.orb--lime { width: 42vw; height: 42vw; background: radial-gradient(circle, rgba(216,224,97,0.55), transparent 65%); top: -12vw; right: -10vw; }
.orb--orange { width: 34vw; height: 34vw; background: radial-gradient(circle, rgba(243,142,65,0.4), transparent 65%); top: 40%; left: -12vw; }
.orb--mint { width: 30vw; height: 30vw; background: radial-gradient(circle, rgba(157,184,122,0.45), transparent 65%); bottom: -10vw; right: 12vw; }
.orb--red { width: 22vw; height: 22vw; background: radial-gradient(circle, rgba(180,59,57,0.22), transparent 65%); top: 68%; left: 42vw; }

main, section, footer, .marquee { position: relative; z-index: 1; }

/* ── grain ── */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none; z-index: 2000;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0,0); } 10% { transform: translate(-5%,-10%); }
  30% { transform: translate(3%,-15%); } 50% { transform: translate(12%,9%); }
  70% { transform: translate(9%,4%); } 90% { transform: translate(-1%,7%); }
}

/* ── glass primitives ── */
.glass {
  background: linear-gradient(135deg, var(--glass-bg-strong), var(--glass-bg));
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px rgba(53, 85, 37, 0.10), inset 0 1px 0 rgba(255,255,255,0.7), inset 0 -1px 0 rgba(255,255,255,0.15);
  position: relative;
}
.glass-dark {
  background: linear-gradient(135deg, rgba(255,255,255,0.12), var(--glass-dark-bg));
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border: 1px solid var(--glass-dark-border);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255,255,255,0.18);
}

/* (dark-green preloader removed — the site paints immediately) */

/* ═══════════ CURSOR ═══════════ */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 2500;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--orange);
  pointer-events: none;
  transform: translate(-50%, -50%);
}
.cursor-follower {
  position: fixed; top: 0; left: 0; z-index: 2499;
  width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid rgba(53, 85, 37, 0.5);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out), background 0.35s, border 0.35s;
  display: grid; place-items: center;
}
.cursor-follower span {
  opacity: 0; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--green-ink); transition: opacity 0.25s;
}
.cursor-follower.is-hover { width: 64px; height: 64px; background: rgba(216, 224, 97, 0.28); border-color: transparent; backdrop-filter: blur(6px); }
.cursor-follower.is-view { width: 92px; height: 92px; background: rgba(216, 224, 97, 0.75); border-color: rgba(255,255,255,0.6); backdrop-filter: blur(10px); }
.cursor-follower.is-view span { opacity: 1; }
@media (hover: none) { .cursor, .cursor-follower { display: none; } }

/* ═══════════ NAV ═══════════ */
.nav {
  position: fixed; top: 1rem; left: 50%; transform: translateX(-50%);
  z-index: 1000;
  width: min(1200px, calc(100% - 2rem));
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.6rem 0.9rem 0.6rem 1.1rem;
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(255,255,255,0.5), rgba(250, 248, 241, 0.35));
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 40px rgba(53, 85, 37, 0.12), inset 0 1px 0 rgba(255,255,255,0.8);
  transition: transform 0.5s var(--ease-out), box-shadow 0.3s;
}
/* the nav never hides — it carries login + Order. Past the hero it just
   tightens up its shadow so it reads cleanly over content. */
.nav.is-scrolled { box-shadow: 0 6px 28px rgba(53, 85, 37, 0.18), inset 0 1px 0 rgba(255,255,255,0.8); }
.nav__right { display: flex; align-items: center; gap: 0.6rem; }
.nav__burger {
  display: none; align-items: center; justify-content: center;
  flex-direction: column; gap: 4px;
  width: 42px; height: 42px; border-radius: 50%; flex: 0 0 auto;
  background: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.7);
}
.nav__burger span {
  display: block; width: 17px; height: 2px; border-radius: 2px;
  background: var(--green-ink); transition: transform 0.3s, opacity 0.2s;
}
.nav.is-menu-open .nav__burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav.is-menu-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-menu-open .nav__burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.nav__brand { display: flex; align-items: center; gap: 0.65rem; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--green-ink); }
.nav__brand img { height: 38px; width: auto; }
.nav__right { display: flex; align-items: center; gap: 0.5rem; }
.nav__right .btn--nav,
.nav__right .btn--ghost,
.nav__right .nav-auth .btn {
  height: 42px; padding: 0 1.15rem; font-size: 0.9rem; white-space: nowrap;
}
.nav-user { font-weight: 600; font-size: 0.9rem; color: var(--green-ink); white-space: nowrap; }
.nav__links { display: flex; gap: 2rem; font-weight: 500; font-size: 0.95rem; }
.nav__links a { position: relative; opacity: 0.75; transition: opacity 0.25s; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -4px; height: 2px; width: 100%;
  background: var(--orange); border-radius: 2px;
  transform: scaleX(0); transform-origin: right; transition: transform 0.35s var(--ease-out);
}
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

/* ═══════════ BUTTONS ═══════════ */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.95rem 1.9rem; border-radius: 100px;
  font-weight: 600; font-size: 1rem; font-family: var(--font-body);
  position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, color 0.35s;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.3s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }
.btn::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: var(--green-ink);
  transform: translateY(101%); transition: transform 0.45s var(--ease-expo);
  z-index: 0;
}
.btn:hover::before { transform: translateY(0); }
.btn span, .btn svg { position: relative; z-index: 1; }
.btn--primary {
  background: linear-gradient(135deg, rgba(243,142,65,0.95), rgba(238,125,40,0.85));
  color: #fff;
  border: 1px solid rgba(255,255,255,0.45);
  box-shadow: 0 12px 30px rgba(243, 142, 65, 0.4), inset 0 1px 0 rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
}
.btn--primary:hover { box-shadow: 0 16px 40px rgba(30, 45, 16, 0.35); }
.btn--ghost {
  background: linear-gradient(135deg, rgba(255,255,255,0.55), rgba(255,255,255,0.3));
  border: 1px solid rgba(255,255,255,0.8);
  color: var(--green-ink);
  backdrop-filter: blur(16px) saturate(160%);
  box-shadow: 0 8px 24px rgba(53,85,37,0.1), inset 0 1px 0 rgba(255,255,255,0.7);
}
.btn--ghost:hover { color: var(--lime); }
.btn--nav { background: linear-gradient(135deg, rgba(53,85,37,0.95), rgba(36,57,15,0.9)); color: #fff; padding: 0.7rem 1.4rem; font-size: 0.9rem; border: 1px solid rgba(255,255,255,0.25); }
.btn--nav::before { background: var(--orange); }
.btn--lime {
  background: linear-gradient(135deg, rgba(216,224,97,0.95), rgba(206,215,80,0.85));
  color: var(--green-ink);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.6);
}
.btn--lime:hover { color: var(--lime); }

/* ═══════════ HERO ═══════════ */
.hero {
  min-height: 100svh;
  position: relative;
  display: flex; align-items: center;
  /* tightened to make room for the top-left badge without pushing the
     scroll hint off-screen */
  padding: 6.5rem var(--pad) 4rem;
}
.hero__inner { position: relative; z-index: 5; max-width: 780px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--green); margin-bottom: 2rem;
  padding: 0.55rem 1.1rem; border-radius: 100px;
}
.hero__eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(243,142,65,0.5);} 50% { box-shadow: 0 0 0 8px rgba(243,142,65,0);} }

.hero__title {
  font-size: clamp(3.2rem, 9.5vw, 8.2rem);
  color: var(--green-ink);
  margin-bottom: 2rem;
  font-weight: 660;
}
.hero__line { display: block; overflow: hidden; }
.hero__line > span { display: block; transform: translateY(115%); }
.hero__line--accent em { color: var(--orange); }
.hero__period { color: var(--lime); -webkit-text-stroke: 2px var(--green); }
.hero__sub { font-size: clamp(1.05rem, 1.6vw, 1.3rem); opacity: 0; color: #47502f; margin-bottom: 2.6rem; }
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; opacity: 0; }

/* live "tomorrow's dish · N bowls left" strip — real numbers from the kitchen */
.hero__live {
  margin-top: 1.4rem; display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 0.7rem 1.15rem; border-radius: 100px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(53, 85, 37, 0.14);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  font-size: 0.92rem; color: var(--green-ink);
  box-shadow: 0 8px 26px rgba(53, 85, 37, 0.10);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  max-width: 100%; flex-wrap: wrap;
}
.hero__live:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(53, 85, 37, 0.16); }
.hero__live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  flex: none; animation: pulse 2s infinite;
}
.hero__live-dot.is-low { background: var(--orange); }
.hero__live-txt { font-weight: 500; }
.hero__live-txt strong { font-weight: 700; }
.hero__live-left {
  font-weight: 700; font-size: 0.84rem; padding: 0.2rem 0.65rem; border-radius: 100px;
  background: rgba(216, 224, 97, 0.5); color: var(--green-ink); white-space: nowrap;
}
.hero__live-left.is-low { background: rgba(243, 142, 65, 0.22); color: #a35418; }
.hero__live-arrow { color: var(--orange); font-weight: 700; }
@media (max-width: 560px) {
  .hero__live { font-size: 0.85rem; padding: 0.6rem 0.9rem; gap: 0.5rem; }
  .hero__live-arrow { display: none; }
}

.hero__visual {
  position: absolute; z-index: 4;
  right: clamp(-6rem, 2vw, 6rem); top: 50%;
  width: clamp(340px, 38vw, 620px); aspect-ratio: 1;
  transform: translateY(-50%);
}
.hero__bowl-ring {
  position: absolute; inset: 4%;
  border-radius: 50%;
}
.hero__bowl-wrap {
  position: absolute; inset: 9%;
  border-radius: 50%; overflow: hidden;
  box-shadow: 0 40px 90px rgba(30, 45, 16, 0.35), 0 0 0 1px rgba(255,255,255,0.6);
}
.hero__bowl { width: 100%; height: 100%; object-fit: cover; scale: 1.15; }
.orbit { position: absolute; border-radius: 50%; }
.orbit--outer { inset: 0; border: 1.5px solid rgba(53, 85, 37, 0.25); animation: spin 40s linear infinite; }
.orbit--outer::after {
  content: ""; position: absolute; top: 4%; left: 50%; width: 16px; height: 16px;
  border-radius: 50%; background: var(--orange);
}
.orbit--dashed { inset: -7%; border: 1.5px dashed rgba(53, 85, 37, 0.2); animation: spin 60s linear infinite reverse; }
@keyframes spin { to { transform: rotate(360deg); } }

.spin-badge {
  position: absolute; bottom: 2%; left: -4%;
  width: 130px; height: 130px;
  animation: spin 14s linear infinite;
}
/* hero badge: top-left, in normal flow beside the eyebrow so it can never
   collide with the nav or the headline at any screen size */
.hero__intro { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; }
.hero__intro .hero__eyebrow { margin-bottom: 0; }
.spin-badge--hero {
  position: relative; top: auto; left: auto; bottom: auto; right: auto;
  width: clamp(72px, 6.5vw, 92px); height: clamp(72px, 6.5vw, 92px);
  flex: 0 0 auto;
}
.spin-badge svg { width: 100%; height: 100%; }
.spin-badge text { font-size: 15.5px; letter-spacing: 3.5px; font-weight: 700; fill: var(--green); text-transform: uppercase; font-family: var(--font-body); }
.spin-badge__core {
  position: absolute; inset: 30%;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(216,224,97,0.95), rgba(206,215,80,0.8));
  backdrop-filter: blur(8px);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; color: var(--green-ink);
  box-shadow: inset 0 0 0 2px var(--green), inset 0 2px 4px rgba(255,255,255,0.6);
  animation: spin 14s linear infinite reverse;
}

.float-chip {
  position: absolute; padding: 0.7rem 1.2rem; border-radius: 100px;
  font-size: 0.9rem; color: var(--green-ink);
  white-space: nowrap;
}
.float-chip strong { font-family: var(--font-display); font-size: 1.05rem; color: var(--green); }
.float-chip--1 { top: 6%; right: 2%; }
.float-chip--2 { top: 62%; left: -9%; }
.float-chip--3 { bottom: 12%; right: -4%; }

.hero__scroll-hint {
  position: absolute; bottom: 2.2rem; left: var(--pad); z-index: 5;
  display: flex; align-items: center; gap: 0.9rem;
  font-size: 0.78rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--green);
}
.hero__scroll-line { width: 70px; height: 1.5px; background: rgba(53,85,37,0.25); position: relative; overflow: hidden; }
.hero__scroll-line::after {
  content: ""; position: absolute; inset: 0; background: var(--orange);
  animation: scrollhint 2s var(--ease-out) infinite;
}
@keyframes scrollhint { 0% { transform: translateX(-100%);} 60%,100% { transform: translateX(100%);} }

/* ═══════════ MARQUEE ═══════════ */
.marquee { overflow: hidden; white-space: nowrap; }
.marquee--dark {
  background: linear-gradient(135deg, rgba(28,45,16,0.88), rgba(28,45,16,0.8));
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-top: 1px solid rgba(216,224,97,0.25);
  border-bottom: 1px solid rgba(216,224,97,0.25);
  color: var(--lime); padding: 1.1rem 0;
  transform: rotate(-1.2deg) scale(1.02); margin-top: -1.5rem;
  z-index: 6;
}
.marquee__track { display: inline-flex; align-items: center; gap: 2.5rem; animation: marquee 28s linear infinite; will-change: transform; }
.marquee__track span { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; text-transform: uppercase; letter-spacing: 0.06em; }
.marquee__track i { font-style: normal; color: var(--orange); font-size: 1rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ═══════════ SECTIONS shared ═══════════ */
.section { padding: clamp(6rem, 12vw, 10rem) var(--pad); position: relative; }
.section__head {
  display: flex; align-items: baseline; gap: 1.2rem;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
  position: relative; z-index: 2;
}
.section__head--pad { padding: 0 var(--pad); }
.section__num { font-family: var(--font-display); font-weight: 300; font-size: 1rem; color: var(--orange); }
.section__label { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; opacity: 0.8; white-space: nowrap; }
.section__label--lime { color: var(--lime); opacity: 1; display: block; margin-bottom: 1.2rem; }
.section__line { flex: 1; height: 2px; }
.section__line line { stroke: currentColor; stroke-width: 1.2; opacity: 0.25; stroke-dasharray: 1200; stroke-dashoffset: 1200; }

.section--dark { background: transparent; color: var(--cream); }
.section--dark::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 50% at 85% 10%, rgba(216,224,97,0.14), transparent 60%),
    radial-gradient(50% 40% at 8% 85%, rgba(243,142,65,0.14), transparent 60%),
    linear-gradient(160deg, #2a4218 0%, var(--green-ink) 55%, #16230b 100%);
}
.section--lime { background: transparent; color: var(--green-ink); }
.section--lime::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(50% 60% at 15% 20%, rgba(255,255,255,0.5), transparent 60%),
    radial-gradient(40% 50% at 85% 80%, rgba(243,142,65,0.28), transparent 65%),
    linear-gradient(135deg, #e0e77e, var(--lime) 60%, #c9d24e);
}

.outline { color: transparent; -webkit-text-stroke: 1.5px currentColor; }

/* ═══════════ MANIFESTO ═══════════ */
.manifesto { overflow: hidden; }
.manifesto__text {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 3.4rem);
  font-weight: 560; line-height: 1.25; letter-spacing: -0.01em;
  max-width: 1150px; position: relative; z-index: 2;
}
.manifesto__text .word { color: rgba(30, 36, 21, 0.16); transition: color 0.3s linear; }
.manifesto__text .word.is-lit { color: var(--green-ink); }
.manifesto__text .word.accent.is-lit { color: var(--orange); }
.manifesto__foot { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 3.5rem; position: relative; z-index: 2; }
.manifesto__pill {
  padding: 0.9rem 1.6rem; border-radius: 100px;
  font-weight: 600; color: var(--green);
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
}
.manifesto__circle { position: absolute; right: -8%; top: 8%; width: clamp(260px, 30vw, 480px); opacity: 0.6; z-index: 1; }
.manifesto__circle svg { width: 100%; }
.draw-circle { fill: none; stroke: var(--orange); stroke-width: 1.5; }

/* ═══════════ REELS ═══════════ */
.reels__title { font-size: clamp(2.2rem, 5.5vw, 4.6rem); color: var(--green-ink); margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.reels__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 3vw, 2.5rem);
  max-width: 1150px; margin: 0 auto;
}
.reel {
  border-radius: 34px; padding: 10px;
  position: relative;
  transform: translateY(0);
  transition: transform 0.5s var(--ease-out);
}
.reel:nth-child(2) { margin-top: clamp(1.5rem, 4vw, 3.5rem); }
.reel:hover { transform: translateY(-10px); }
.reel video {
  width: 100%; aspect-ratio: 9/16; object-fit: cover;
  border-radius: 26px; display: block;
  background: var(--green-ink);
}
.reel__controls {
  position: absolute; top: 1.3rem; right: 1.3rem;
  display: flex; flex-direction: column; gap: 0.6rem;
  opacity: 0; transition: opacity 0.3s;
}
.reel:hover .reel__controls { opacity: 1; }
.reel__btn {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff; font-size: 1rem; cursor: pointer;
  display: grid; place-items: center;
  transition: transform 0.3s var(--ease-out);
  font-family: var(--font-body);
}
.reel__btn:hover { transform: scale(1.1); }
@media (hover: none) { .reel__controls { opacity: 1; } }

/* ═══════════ MEALS (horizontal scroll) ═══════════ */
.meals { overflow: hidden; }
.meals::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(243,240,228,0.6), rgba(243,240,228,0.85));
  backdrop-filter: blur(30px);
}
.meals__pin {
  padding: clamp(4.5rem, 10vh, 7rem) 0 clamp(1rem, 3vh, 2rem);
  display: flex; flex-direction: column; justify-content: center;
}
@media (min-width: 861px) {
  .meals__pin { height: 100svh; }
  .meals__pin .section__head { margin-bottom: clamp(1rem, 2.5vh, 2rem); }
}
.meals__title {
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  padding: 0 var(--pad);
  margin-bottom: clamp(0.6rem, 1.5vh, 1rem);
  color: var(--green-ink);
}
.meals__title .outline { -webkit-text-stroke-color: var(--green); }
.meals__price-note {
  padding: 0 var(--pad);
  margin-bottom: clamp(1.2rem, 3.5vh, 2.6rem);
  font-size: 1rem;
  opacity: 0.75;
}
.meals__price-note strong { color: var(--red); font-weight: 700; }
.meals__track { display: flex; gap: clamp(1.2rem, 2.5vw, 2rem); padding: 0 var(--pad); width: max-content; will-change: transform; align-items: stretch; }

.meal-card {
  flex: 0 0 auto;
  height: min(56vh, 520px);
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  position: relative;
  transition: transform 0.5s var(--ease-out);
}
@media (max-width: 860px) { .meal-card { height: auto; aspect-ratio: auto; width: min(78vw, 340px); } }
.meal-card:hover { transform: translateY(-10px); }
.meal-card__img { border-radius: var(--radius); overflow: hidden; height: 100%; box-shadow: 0 20px 50px rgba(30,45,16,0.18); }
@media (max-width: 860px) { .meal-card__img { height: auto; aspect-ratio: 3/3.6; } }
.meal-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-out); }
.meal-card:hover .meal-card__img img { transform: scale(1.07); }
.meal-card__body {
  position: absolute; left: 4%; right: 4%; bottom: 3.5%;
  border-radius: 22px; padding: 1.05rem 1.2rem;
}
.meal-card__top { display: flex; justify-content: space-between; align-items: baseline; gap: 0.8rem; }
.meal-card__body h3 { font-size: 1.15rem; color: var(--green-ink); }
.meal-card__price { font-family: var(--font-display); font-weight: 700; color: var(--red); font-size: 1.05rem; }
.meal-card__body p { font-size: 0.84rem; opacity: 0.78; margin: 0.3rem 0 0.65rem; line-height: 1.42; }
.meal-card__price { font-family: var(--font-display); font-weight: 700; color: var(--orange); font-size: 1rem; margin: 0.4rem 0; }
.meal-card__tags { display: flex; gap: 0.5rem; }
.meal-card__tags span {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 0.3rem 0.75rem; border-radius: 100px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  color: var(--green);
}
.meal-card__tags span:first-child { background: rgba(216, 224, 97, 0.85); color: var(--green-ink); }

.meal-card--cta { display: grid; place-items: center; border-radius: var(--radius); }
.meal-card--cta a { display: grid; place-items: center; gap: 1.5rem; text-align: center; }
.meal-card--cta p { font-weight: 600; opacity: 0.7; }
.spin-badge--static { position: static; width: clamp(130px, 18vh, 170px); height: clamp(130px, 18vh, 170px); }
.spin-badge__arrow {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-size: 2.2rem; color: var(--green); animation: spin 14s linear infinite reverse;
}

/* ═══════════ WHY (dark) ═══════════ */
.why { padding: clamp(6rem, 12vw, 10rem) var(--pad); overflow: hidden; }
.why__glow { position: absolute; inset: 0; pointer-events: none; }
.why__glow-orb { position: absolute; border-radius: 50%; filter: blur(80px); }
.why__glow-orb--lime { width: 38vw; height: 38vw; background: radial-gradient(circle, rgba(216,224,97,0.25), transparent 65%); top: -10%; right: -8%; }
.why__glow-orb--orange { width: 30vw; height: 30vw; background: radial-gradient(circle, rgba(243,142,65,0.22), transparent 65%); bottom: -8%; left: -6%; }
.why__rings { position: absolute; right: -18%; top: -10%; width: 60vw; opacity: 0.35; pointer-events: none; }
.why__rings .draw-circle { stroke: var(--lime); stroke-width: 1; }
.why__floaters { position: absolute; inset: 0; pointer-events: none; }
.why-floater {
  position: absolute; border-radius: 50%; padding: 8px;
  width: clamp(90px, 9vw, 150px); height: clamp(90px, 9vw, 150px);
}
.why-floater img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.why-floater--1 { top: 12%; right: 6%; }
.why-floater--2 { top: 48%; right: 14%; }
.why-floater--3 { bottom: 6%; right: 4%; }
.why__title { font-size: clamp(2.1rem, 5vw, 4.2rem); margin-bottom: clamp(3rem, 6vw, 5rem); max-width: 900px; position: relative; z-index: 2; }
.why__title em { color: var(--lime); }
.why__grid {
  display: grid; gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  position: relative; z-index: 2;
}
.why-card {
  border-radius: var(--radius); padding: 2rem 1.8rem;
  transition: transform 0.5s var(--ease-out), background 0.4s, border-color 0.4s, box-shadow 0.4s;
  transform-style: preserve-3d;
  position: relative; overflow: hidden;
}
.why-card::after {
  content: ""; position: absolute; top: -40%; right: -30%;
  width: 70%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow, rgba(216,224,97,0.3)), transparent 70%);
  opacity: 0; transition: opacity 0.5s;
  pointer-events: none;
}
.why-card[data-accent="lime"] { --accent-glow: rgba(216,224,97,0.35); --accent-color: var(--lime); }
.why-card[data-accent="orange"] { --accent-glow: rgba(243,142,65,0.35); --accent-color: var(--orange); }
.why-card[data-accent="red"] { --accent-glow: rgba(224,122,120,0.3); --accent-color: #e58f8d; }
.why-card:hover { border-color: rgba(255,255,255,0.3); box-shadow: 0 20px 60px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.25); }
.why-card:hover::after { opacity: 1; }
.why-card__icon {
  font-size: 1.9rem; display: inline-grid; place-items: center;
  width: 62px; height: 62px; border-radius: 18px;
  margin-bottom: 1.3rem;
}
.why-card h3 { font-size: 1.35rem; margin-bottom: 0.5rem; color: var(--accent-color, var(--lime)); }
.why-card p { opacity: 0.75; font-size: 0.95rem; }

/* ═══════════ HOW ═══════════ */
.how__steps { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.how__path { position: absolute; top: -30px; left: 0; width: 100%; height: 120px; z-index: 0; }
.draw-path { fill: none; stroke: var(--orange); stroke-width: 1.6; stroke-dasharray: 6 8; }
.how-step {
  position: relative; z-index: 1; text-align: center;
  padding: 2.4rem 1.6rem 2.2rem;
  border-radius: var(--radius);
  transition: transform 0.5s var(--ease-out);
}
.how-step:hover { transform: translateY(-8px); }
.how-step__num {
  width: 74px; height: 74px; margin: 0 auto 1.5rem;
  border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--green);
  background: linear-gradient(135deg, rgba(216,224,97,0.7), rgba(216,224,97,0.35));
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 10px 24px rgba(53,85,37,0.15);
}
.how-step h3 { font-size: 1.4rem; margin-bottom: 0.5rem; color: var(--green-ink); }
.how-step p { opacity: 0.7; font-size: 0.96rem; }

/* ═══════════ STATS ═══════════ */
.stats { padding: clamp(4.5rem, 9vw, 7.5rem) var(--pad); }
.stats__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1.4rem; text-align: center; }
.stat {
  border-radius: var(--radius);
  padding: 2.2rem 1.4rem 1.8rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.5), rgba(255,255,255,0.22));
  border: 1px solid rgba(255,255,255,0.65);
}
.stat__num, .stat__plus { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.6rem, 5.5vw, 4.6rem); letter-spacing: -0.03em; }
.stat__plus { color: var(--green); font-size: clamp(1.4rem, 2.6vw, 2.2rem); }
.stat p { font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem; opacity: 0.75; margin-top: 0.4rem; }

/* ═══════════ REVIEWS ═══════════ */
.reviews { overflow: hidden; }
.reviews__marquee { display: grid; gap: 1.4rem; }
.reviews__row { display: flex; gap: 1.4rem; width: max-content; will-change: transform; }
.review {
  width: clamp(300px, 30vw, 430px);
  border-radius: var(--radius); padding: 1.7rem 1.9rem;
}
.review__stars { color: var(--orange); letter-spacing: 0.18em; margin-bottom: 0.8rem; font-size: 0.95rem; }
.review p { font-family: var(--font-display); font-weight: 520; font-size: 1.1rem; line-height: 1.4; color: var(--green-ink); margin-bottom: 1.1rem; }
.review__who { display: flex; align-items: center; gap: 0.7rem; font-size: 0.85rem; font-weight: 600; color: var(--green); }
.review__avatar {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; color: var(--green-ink);
  background: linear-gradient(135deg, var(--lime), rgba(216,224,97,0.5));
  border: 1px solid rgba(255,255,255,0.8);
}

/* ═══════════ CATERING ═══════════ */
.catering {
  position: relative; min-height: 90vh;
  display: flex; align-items: center;
  padding: clamp(6rem, 10vw, 9rem) var(--pad);
  overflow: hidden;
}
.catering::before { display: none; }
.catering__media { position: absolute; inset: -12% 0; z-index: 0; }
.catering__media img { width: 100%; height: 100%; object-fit: cover; }
.catering__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(28,45,16,0.85) 25%, rgba(28,45,16,0.3) 70%, rgba(28,45,16,0.1)); }
.catering__panel {
  position: relative; z-index: 1;
  max-width: 620px; border-radius: var(--radius);
  padding: clamp(2.2rem, 4vw, 3.5rem);
}
.catering__panel h2 { font-size: clamp(2rem, 4.5vw, 3.6rem); margin-bottom: 1.2rem; }
.catering__panel h2 em { color: var(--lime); }
.catering__panel > p { opacity: 0.85; margin-bottom: 1.6rem; max-width: 46ch; }
.catering__list { list-style: none; display: grid; gap: 0.7rem; margin-bottom: 2.2rem; }
.catering__list li { display: flex; align-items: center; gap: 0.8rem; font-weight: 500; }
.catering__list li::before { content: "✦"; color: var(--orange); font-size: 0.85rem; }

/* ═══════════ FOUNDER ═══════════ */
.founder { padding-top: 0; }
.founder__card {
  max-width: 900px; margin: 0 auto;
  border-radius: 36px;
  padding: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.founder__badge {
  display: inline-block; padding: 0.5rem 1.2rem; border-radius: 100px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--green); margin-bottom: 1.8rem;
}
.founder__quote {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 2.1rem);
  font-weight: 560; line-height: 1.35; color: var(--green-ink);
  margin-bottom: 2rem;
}
.founder__who { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.founder__logo { height: 56px; width: auto; }
.founder__who div { text-align: left; }
.founder__who strong { display: block; font-family: var(--font-display); font-size: 1.05rem; color: var(--green-ink); }
.founder__who span { font-size: 0.85rem; opacity: 0.65; }

/* ═══════════ FAQ ═══════════ */
.faq__list { max-width: 860px; margin: 0 auto; display: grid; gap: 1rem; }
.faq__item { border-radius: 20px; overflow: hidden; transition: background 0.3s; }
.faq__item summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.4rem 1.7rem;
  font-family: var(--font-display); font-weight: 620; font-size: 1.18rem; color: var(--green-ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__plus { position: relative; width: 34px; height: 34px; border-radius: 50%; background: var(--green); flex-shrink: 0; transition: transform 0.4s var(--ease-out), background 0.3s; }
.faq__plus::before, .faq__plus::after {
  content: ""; position: absolute; top: 50%; left: 50%; background: var(--lime);
  transform: translate(-50%, -50%); border-radius: 2px;
}
.faq__plus::before { width: 14px; height: 2px; }
.faq__plus::after { width: 2px; height: 14px; }
.faq__item[open] .faq__plus { transform: rotate(135deg); background: var(--orange); }
.faq__item p { padding: 0 1.7rem 1.5rem; opacity: 0.75; max-width: 62ch; }
.faq__item[open] { background: linear-gradient(135deg, rgba(255,255,255,0.75), rgba(255,255,255,0.5)); }

/* ═══════════ SOCIAL ═══════════ */
.social { padding-top: 0; }
.social__head {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.social__head h2 { font-size: clamp(2rem, 4.5vw, 3.6rem); color: var(--green-ink); }
.social__head .outline { -webkit-text-stroke-color: var(--green); }
.social__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.social__item {
  position: relative; border-radius: 24px; overflow: hidden; aspect-ratio: 1;
  display: block;
}
.social__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out); }
.social__item:hover img { transform: scale(1.08); }
.social__overlay {
  position: absolute; left: 8%; bottom: 8%;
  padding: 0.45rem 0.95rem; border-radius: 100px;
  color: #fff; font-size: 0.85rem; font-weight: 600;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.35s, transform 0.35s var(--ease-out);
}
.social__item:hover .social__overlay { opacity: 1; transform: translateY(0); }

/* ═══════════ FOOTER ═══════════ */
.footer { padding: clamp(6rem, 10vw, 9rem) 0 2rem; overflow: hidden; }
.footer__cta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap;
  padding: 0 var(--pad); margin-bottom: clamp(4rem, 8vw, 7rem);
}
.footer__headline { font-size: clamp(2.6rem, 7vw, 6.4rem); }
.footer__line { display: block; overflow: hidden; }
.footer__line > span { display: block; transform: translateY(110%); }
.footer__headline .footer__line:last-child span { color: var(--lime); }
.footer__orb {
  position: relative; width: clamp(170px, 18vw, 240px); aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(243,142,65,0.95), rgba(238,120,35,0.85));
  border: 1px solid rgba(255,255,255,0.4);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: clamp(1.3rem, 2vw, 1.8rem);
  text-align: center; line-height: 1.15; color: #fff;
  box-shadow: 0 25px 70px rgba(243, 142, 65, 0.45), inset 0 2px 2px rgba(255,255,255,0.5);
  transition: background 0.4s, transform 0.4s var(--ease-out);
}
.footer__orb:hover { background: linear-gradient(135deg, rgba(180,59,57,0.95), rgba(160,45,43,0.9)); }
.footer__orb-ring { position: absolute; inset: -14%; border-radius: 50%; border: 1.5px dashed rgba(216, 224, 97, 0.6); animation: spin 25s linear infinite; }

.marquee--footer { border-top: 1px solid rgba(216,224,97,0.2); border-bottom: 1px solid rgba(216,224,97,0.2); padding: 1.6rem 0; margin-bottom: 4rem; }
.marquee--footer .marquee__track { animation-duration: 40s; }
.marquee--footer span { font-size: clamp(2.2rem, 5vw, 4rem); color: transparent; -webkit-text-stroke: 1px rgba(216,224,97,0.75); font-weight: 700; }
.marquee--footer i { color: var(--orange); font-size: 1.6rem; }

.footer__bottom {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem;
  margin: 0 var(--pad) 3rem;
  padding: clamp(1.8rem, 3.5vw, 3rem);
  border-radius: var(--radius);
}
.footer__logo { height: 74px; width: auto; margin-bottom: 1.1rem; }
.footer__col p { opacity: 0.65; font-size: 0.92rem; }
.footer__col h4 { font-family: var(--font-display); color: var(--lime); margin-bottom: 1rem; font-size: 1.02rem; }
.footer__col a { display: block; opacity: 0.7; padding: 0.28rem 0; font-size: 0.95rem; transition: opacity 0.25s, transform 0.25s; }
.footer__col a:hover { opacity: 1; transform: translateX(5px); color: var(--lime); }
.footer__soon { display: block; opacity: 0.45; padding: 0.28rem 0; font-size: 0.95rem; cursor: default; }
.footer__soon:hover { opacity: 0.45; transform: none; color: inherit; }
.footer__soon em { font-style: normal; opacity: 0.8; }
.footer__col a em { font-size: 0.7rem; color: var(--orange); font-style: normal; margin-left: 0.4rem; text-transform: uppercase; letter-spacing: 0.08em; }
.footer__legal { text-align: center; opacity: 0.4; font-size: 0.82rem; padding: 1.6rem var(--pad) 0; border-top: 1px solid rgba(255,255,255,0.08); }

/* sticky mobile order */
.sticky-order {
  position: fixed; bottom: 1.1rem; left: 50%; transform: translate(-50%, 150%);
  z-index: 1500; padding: 1rem 2.4rem; border-radius: 100px;
  color: var(--lime);
  font-weight: 700; font-size: 1rem;
  transition: transform 0.5s var(--ease-out);
  display: none;
}
.sticky-order.is-visible { transform: translate(-50%, 0); }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1024px) {
  .hero__visual { opacity: 0.95; width: clamp(300px, 44vw, 480px); right: -4rem; }
  .float-chip--2 { left: -6%; }
  .why-floater { display: none; }
}
@media (max-width: 860px) {
  /* phones: brand + Order Now + ☰ on one row; links live in a dropdown */
  .nav { border-radius: 100px; padding: 0.5rem 0.6rem 0.5rem 0.9rem; gap: 0.5rem; }
  .nav__burger { display: inline-flex; }
  .hero { padding-top: 7.5rem; flex-direction: column; justify-content: center; gap: 1rem; }
  .hero__inner { max-width: 100%; }
  /* the bowl gets its own room — no more chips landing on the copy */
  .hero__visual { position: relative; right: auto; top: auto; transform: none; margin: 2rem auto 0; width: min(72vw, 360px); }
  .hero__scroll-hint { display: none; }
  .reels__grid { grid-template-columns: 1fr; max-width: 420px; }
  .reel:nth-child(2) { margin-top: 0; }
  .how__steps { grid-template-columns: 1fr; gap: 1.4rem; }
  .how__path { display: none; }
  .social__grid { grid-template-columns: 1fr 1fr; }
  .footer__bottom { grid-template-columns: 1fr 1fr; }
  .footer__cta { justify-content: center; text-align: center; }
  .sticky-order { display: block; }
  .catering__panel { max-width: 100%; }
  .manifesto__circle { display: none; }
}

/* ═══════════ WEBGL LAYER ═══════════ */
.gl { position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.55; }
.gl canvas { width: 100%; height: 100%; display: block; }

/* ═══════════ LIQUID GLASS REEL BUTTONS ═══════════ */
.reel__btn.liquid {
  position: relative; width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,255,255,0.32), rgba(255,255,255,0.08) 45%, rgba(255,255,255,0.18));
  backdrop-filter: blur(22px) saturate(190%);
  -webkit-backdrop-filter: blur(22px) saturate(190%);
  border: 1px solid rgba(255,255,255,0.45);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35), inset 0 1px 1px rgba(255,255,255,0.65), inset 0 -6px 12px rgba(255,255,255,0.08);
  display: grid; place-items: center; cursor: pointer;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
  overflow: hidden;
}
.reel__btn.liquid::before {
  content: ""; position: absolute; top: 7%; left: 14%; width: 46%; height: 30%;
  border-radius: 50%; background: linear-gradient(180deg, rgba(255,255,255,0.75), transparent);
  filter: blur(2px); pointer-events: none;
}
.reel__btn.liquid::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(60% 60% at 70% 85%, rgba(216,224,97,0.35), transparent 70%);
  opacity: 0; transition: opacity 0.35s; pointer-events: none;
}
.reel__btn.liquid:hover { transform: scale(1.12); box-shadow: 0 14px 40px rgba(0,0,0,0.45), inset 0 1px 1px rgba(255,255,255,0.8); }
.reel__btn.liquid:hover::after { opacity: 1; }
.reel__btn.liquid:active { transform: scale(0.96); }
.reel__btn.liquid svg { position: absolute; width: 22px; height: 22px; fill: #fff; stroke: #fff; stroke-width: 0; filter: drop-shadow(0 1px 2px rgba(0,0,0,0.4)); transition: opacity 0.25s, transform 0.35s var(--ease-out); }
.reel__btn .ico-pause, .reel__btn.is-playing .ico-play { opacity: 0; transform: scale(0.6); }
.reel__btn.is-playing .ico-pause { opacity: 1; transform: scale(1); }
.reel__btn[data-role="mute"] .ico-waves { stroke-width: 1.8; stroke-linecap: round; fill: none; }
.reel__btn[data-role="mute"] .ico-base { width: 22px; }
.reel__btn[data-role="mute"] .w1, .reel__btn[data-role="mute"] .w2 { opacity: 0; transition: opacity 0.25s; }
.reel__btn[data-role="mute"] .slash { stroke: #fff; transition: opacity 0.25s; }
.reel__btn.is-sound .w1, .reel__btn.is-sound .w2 { opacity: 1; }
.reel__btn.is-sound .slash { opacity: 0; }

/* ═══════════════════════════════════════════════════════════
   V3 OVERRIDES — more glass, more life, less lag
   (later rules win over equal-specificity earlier ones)
   ═══════════════════════════════════════════════════════════ */

/* ---- perf: lighter blurs (biggest FPS win over the WebGL canvas) ---- */
:root { --glass-blur: blur(14px) saturate(150%); }
.glass-dark { backdrop-filter: blur(13px) saturate(135%); -webkit-backdrop-filter: blur(13px) saturate(135%); }
.nav { backdrop-filter: blur(16px) saturate(160%); -webkit-backdrop-filter: blur(16px) saturate(160%); }
.meals::before { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(243,240,228,0.8); }
.gl { opacity: 0.5; }

/* ---- italic accent font (replaces the hollow outline) ---- */
.ital {
  font-family: "Instrument Serif", serif;
  font-style: italic; font-weight: 400;
  letter-spacing: 0; -webkit-text-stroke: 0;
  color: var(--orange);
}
.section--dark .ital, .why__title .ital, .catering__panel .ital { color: var(--lime); }

/* ---- decorative shapes (fixed, brand-colored, mouse-parallax) ---- */
.deco { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.deco__s { position: absolute; overflow: visible; opacity: 0.55; will-change: transform; }
.deco__s path, .deco__s circle { fill: none; stroke: currentColor; stroke-width: 3; stroke-linecap: round; }
.deco__dot circle { fill: currentColor; stroke: none; }
.deco__ring  { top: 16%; left: 5%;  width: 92px;  height: 92px;  color: var(--orange); }
.deco__cross { top: 26%; right: 8%; width: 46px;  height: 46px;  color: var(--green); opacity: 0.4; }
.deco__ring2 { top: 66%; left: 10%; width: 60px;  height: 60px;  color: var(--red);   opacity: 0.32; }
.deco__plus  { bottom: 18%; right: 14%; width: 42px; height: 42px; color: var(--lime); }
.deco__dot   { top: 46%; left: 46%; width: 20px;  height: 20px;  color: var(--orange); opacity: 0.4; }
.deco__cross2{ top: 10%; right: 32%; width: 34px;  height: 34px;  color: var(--lime); opacity: 0.5; }
.deco__ring3 { bottom: 10%; left: 38%; width: 74px; height: 74px; color: var(--green); opacity: 0.3; }

/* ---- nav: glass magnetic pill behind hovered link ---- */
.nav__links { position: relative; }
.nav__links a { padding: 0.3rem 0.9rem; position: relative; z-index: 1; }
.nav__pill {
  position: absolute; top: 50%; left: 0; margin-top: -1.1rem;
  height: 2.2rem; width: 60px; border-radius: 100px;
  background: linear-gradient(135deg, rgba(255,255,255,0.6), rgba(255,255,255,0.3));
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 4px 14px rgba(53,85,37,0.12);
  opacity: 0; pointer-events: none; z-index: 0;
}

/* ---- hero orbit chips (JS positions them; they orbit slowly) ---- */
.float-chip { top: 50%; left: 50%; }
.orbit-chip { position: absolute; will-change: transform; }
.orbit-chip--sm { font-size: 0.8rem; padding: 0.55rem 1rem; color: var(--green); font-weight: 600; }

/* ---- manifesto: floaters + serif powerful words ---- */
.manifesto { position: relative; }
.manifesto__floaters { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.mfloat {
  position: absolute; padding: 0.6rem 1.1rem; border-radius: 100px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.04em; color: var(--green);
  will-change: transform;
}
.mfloat--orange { color: var(--orange); }
.mfloat--lime { color: #6f7a1e; }
.mfloat:nth-child(1) { top: 14%; right: 4%; }
.mfloat:nth-child(2) { top: 40%; right: 11%; }
.mfloat:nth-child(3) { bottom: 30%; right: 5%; }
.mfloat:nth-child(4) { bottom: 12%; right: 15%; }
.manifesto__text { position: relative; z-index: 2; max-width: 860px; }
@media (max-width: 1200px) { .manifesto__floaters { display: none; } }
.manifesto__text .word.serif { font-family: "Instrument Serif", serif; font-style: italic; font-weight: 400; }
.manifesto__text .word.serif.is-lit { color: var(--green); }

/* ---- reels: no stagger (kills the white gaps), reveal handled in JS ---- */
.reels { padding-bottom: clamp(4rem, 8vw, 7rem); }
.reels__grid { align-items: start; }
.reel { margin-top: 0 !important; }
.reel video { will-change: transform; }

/* ---- featured meals: gradient scrim so the FOOD stays visible ---- */
.meal-card__img { position: relative; }
.meal-card__img img { object-position: center 42%; }
.meal-card__img::after {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius);
  background: linear-gradient(to top, rgba(18,28,8,0.9) 0%, rgba(18,28,8,0.5) 26%, transparent 48%);
  pointer-events: none;
}
.meal-card__body {
  left: 0; right: 0; bottom: 0;
  padding: 1.4rem 1.3rem 1.25rem;
  border-radius: 0 0 var(--radius) var(--radius);
  background: none; backdrop-filter: none; -webkit-backdrop-filter: none;
  border: 0; box-shadow: none;
}
.meal-card__body h3 { color: #fff; }
.meal-card__price { color: var(--lime); }
.meal-card__body p { color: rgba(255,255,255,0.86); opacity: 1; }
.meal-card__tags span {
  background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.28);
  color: #fff; backdrop-filter: blur(6px);
}
.meal-card__tags span:first-child { background: rgba(216,224,97,0.9); color: var(--green-ink); border-color: transparent; }

/* ---- WHY: more compact, tighter grid ---- */
.why { padding: clamp(4.5rem, 8vw, 6.5rem) var(--pad); }
.why__title { margin-bottom: clamp(2rem, 4vw, 3rem); font-size: clamp(2rem, 4.4vw, 3.6rem); }
.why__grid { gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.why-card { padding: 1.5rem 1.4rem; border-radius: 22px; }
.why-card__icon {
  font-size: 1.5rem; width: 52px; height: 52px; border-radius: 15px; margin-bottom: 1rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14);
}
.why-card h3 { font-size: 1.2rem; }
.why-card p { font-size: 0.9rem; }

/* ---- HOW IT WORKS: icons, pointer sheen, character ---- */
.how__steps { gap: 1.6rem; }
.how-step { overflow: hidden; }
.how-step__icon {
  display: inline-grid; place-items: center; width: 58px; height: 58px; margin: 0 auto 0.5rem;
  font-size: 1.7rem; border-radius: 18px;
  background: linear-gradient(135deg, rgba(243,142,65,0.22), rgba(216,224,97,0.22));
  border: 1px solid rgba(255,255,255,0.7);
}
.how-step[data-sheen]::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 0%), rgba(216,224,97,0.5), transparent 60%);
  opacity: 0; transition: opacity 0.4s;
}
.how-step[data-sheen]:hover::before { opacity: 1; }
.how-step > * { position: relative; z-index: 1; }
.how-step__num { width: 44px; height: 44px; font-size: 0.95rem; margin: 0 auto 1.1rem; }

/* ---- REVIEWS: continuous slow auto-scroll, pause on hover ---- */
.reviews__marquee { overflow: hidden; }
.reviews__row--auto { width: max-content; animation: reviewScroll 55s linear infinite; }
.reviews__marquee:hover .reviews__row--auto { animation-play-state: paused; }
@keyframes reviewScroll { to { transform: translateX(-50%); } }

/* ---- FOUNDER: energy, color, no dead space ---- */
.founder { padding: clamp(3rem, 6vw, 5rem) var(--pad) clamp(4rem, 7vw, 6rem); }
.founder__card { position: relative; overflow: hidden; border-radius: 32px; }
.founder__card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px; pointer-events: none;
  background: linear-gradient(135deg, var(--orange), var(--lime), var(--green));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0.7;
}
.founder__card > * { position: relative; z-index: 1; }
.founder__card .founder__glow {
  position: absolute; width: 60%; aspect-ratio: 1; border-radius: 50%; z-index: 0;
  top: -30%; right: -10%; filter: blur(70px);
  background: radial-gradient(circle, rgba(243,142,65,0.35), transparent 70%);
}
.founder__badge {
  background: linear-gradient(135deg, rgba(216,224,97,0.8), rgba(243,142,65,0.5));
  border: 1px solid rgba(255,255,255,0.7); color: var(--green-ink);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}
.founder__quote .hot { font-style: normal; color: var(--orange); }
.founder__quote .ital { color: var(--green); }

/* ---- FAQ: glass accordion (new button + answer markup) ---- */
.faq__item { border-radius: 20px; overflow: hidden; transition: transform 0.4s var(--ease-out), box-shadow 0.4s, background 0.3s; }
.faq__item:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(53,85,37,0.12); }
.faq__q {
  width: 100%; background: none; border: 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.35rem 1.7rem; text-align: left;
  font-family: var(--font-display); font-weight: 620; font-size: 1.14rem; color: var(--green-ink);
}
.faq__a { height: 0; overflow: hidden; }
.faq__a p { padding: 0 1.7rem 1.5rem; opacity: 0.8; max-width: 62ch; }
.faq__item.is-open { background: linear-gradient(135deg, rgba(255,255,255,0.72), rgba(255,255,255,0.46)); }
.faq__item.is-open .faq__plus { transform: rotate(135deg); background: var(--orange); }

/* ---- MOBILE polish ---- */
@media (max-width: 860px) {
  .deco__cross, .deco__cross2, .deco__ring3, .deco__dot { display: none; }
  .deco__s { opacity: 0.4; }
  /* On phones the orbit chips are placed statically (no ticker), so they sat
     frozen on top of the headline and the Order button. The rings likewise
     never animate. Drop the whole decorative layer and show a clean bowl. */
  .orbit-chip, .orbit, .hero__bowl-ring { display: none; }
  .hero__visual { opacity: 1; }
  .hero__bowl-wrap { position: relative; inset: auto; width: 100%; height: auto; aspect-ratio: 1; }
  .hero__bowl { border-radius: 50%; }
  /* the rotating wordmark reads as noise at phone size — keep the badge, lose the spin */
  .spin-badge--hero { animation: none; width: 66px; height: 66px; }
  .spin-badge--hero text { font-size: 19px; letter-spacing: 2px; }
  .mfloat:nth-child(3), .mfloat:nth-child(4) { display: none; }
  .mfloat { font-size: 0.72rem; padding: 0.5rem 0.9rem; }
  .why__grid { grid-template-columns: 1fr 1fr; }
  .why-card { padding: 1.2rem 1.1rem; }
  .why-card h3 { font-size: 1.05rem; }
  .reviews__row--auto { animation-duration: 42s; }
  .nav__pill { display: none; }
}
@media (max-width: 520px) {
  .why__grid { grid-template-columns: 1fr; }
  /* narrow phones (375–414): the logo carries the brand so Log in + Order Now
     both stay on the bar instead of pushing off the right edge */
  .nav__brand span { display: none; }
  .nav__brand img { height: 32px; }
  .nav__right { gap: 0.4rem; }
  .nav .btn--nav { padding: 0.6rem 1rem; font-size: 0.85rem; }
}

/* ═══════════════════════════════════════════════════════════
   V4 — structure cleanup: seamless bg, light Why bubbles,
   scrollable reviews, tighter founder
   ═══════════════════════════════════════════════════════════ */

/* ---- fix the hard background "cut" under the reels: the meals
   section no longer paints a semi-opaque cream over the fixed
   deco/WebGL, so the backdrop stays continuous through it ---- */
.meals::before { display: none; }

/* ---- WHY: light section, floating glass bubbles ---- */
.why { padding: clamp(4.5rem, 8vw, 6.5rem) var(--pad); overflow: visible; }
.why__title .ital { color: var(--green); }
.why__bubbles {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.2vw, 1.8rem);
  max-width: 1100px; margin: 0 auto;
}
.why-bubble {
  position: relative; border-radius: 30px; padding: 1.9rem 1.7rem; text-align: left;
  animation: bubbleFloat 6s ease-in-out infinite; will-change: transform;
  transition: box-shadow 0.4s;
}
.why-bubble:nth-child(3n+2) { margin-top: clamp(1rem, 2.5vw, 2rem); }
.why-bubble:nth-child(2) { animation-delay: -1.5s; }
.why-bubble:nth-child(3) { animation-delay: -3s; }
.why-bubble:nth-child(4) { animation-delay: -4.4s; }
.why-bubble:nth-child(5) { animation-delay: -2.2s; }
.why-bubble:nth-child(6) { animation-delay: -3.7s; }
.why-bubble:hover { animation-play-state: paused; box-shadow: 0 26px 60px -22px rgba(53,85,37,0.4), inset 0 1px 0 rgba(255,255,255,0.8); }
@keyframes bubbleFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

.why-bubble__icon {
  display: inline-grid; place-items: center; width: 56px; height: 56px; border-radius: 50%;
  margin-bottom: 1.1rem;
  background: var(--bub-bg, rgba(216,224,97,0.32));
  border: 1px solid rgba(255,255,255,0.75);
  color: var(--bub, var(--green));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}
.why-bubble__icon svg { width: 26px; height: 26px; }
.why-bubble h3 { font-size: 1.25rem; color: var(--green-ink); margin-bottom: 0.4rem; }
.why-bubble p { font-size: 0.92rem; opacity: 0.72; color: var(--ink); }
.why-bubble[data-accent="lime"]   { --bub: #6f7a1e; --bub-bg: rgba(216,224,97,0.36); }
.why-bubble[data-accent="orange"] { --bub: var(--orange); --bub-bg: rgba(243,142,65,0.22); }
.why-bubble[data-accent="red"]    { --bub: var(--red); --bub-bg: rgba(180,59,57,0.16); }
.why-bubble[data-accent="green"]  { --bub: var(--green); --bub-bg: rgba(53,85,37,0.14); }

@media (max-width: 860px) {
  .why__bubbles { grid-template-columns: 1fr 1fr; }
  .why-bubble:nth-child(3n+2) { margin-top: 0; }
}
@media (max-width: 520px) { .why__bubbles { grid-template-columns: 1fr; } }

/* ---- REVIEWS: native-scrollable, soft shadows, faded edges ---- */
.reviews { overflow: hidden; }
.reviews__viewport {
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  cursor: grab; user-select: none;
  padding: 1.6rem clamp(1.25rem, 5vw, 6rem) 1.4rem;
  scrollbar-width: none; -ms-overflow-style: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.reviews__viewport::-webkit-scrollbar { display: none; }
.reviews__viewport:active { cursor: grabbing; }
.reviews__track { display: flex; gap: 1.4rem; width: max-content; }
.review {
  flex: 0 0 auto;
  width: clamp(280px, 32vw, 400px);
  border-radius: 26px; padding: 1.8rem 1.9rem;
  scroll-snap-align: center;
  /* soft, blurred, spread-in shadow — no sharp edge against the bg */
  background: linear-gradient(135deg, rgba(255,255,255,0.62), rgba(255,255,255,0.4));
  box-shadow: 0 24px 55px -24px rgba(53,85,37,0.35), inset 0 1px 0 rgba(255,255,255,0.75);
}
.review p { pointer-events: none; }
.reviews__hint {
  text-align: center; margin-top: 1rem;
  font-size: 0.84rem; font-weight: 600; letter-spacing: 0.02em;
  color: var(--green); opacity: 0.55;
}

/* ---- FOUNDER: trim the empty space below the card ---- */
.founder { padding: clamp(2.5rem, 5vw, 4rem) var(--pad) clamp(1.5rem, 3vw, 2.5rem); }

/* ═══════════ v5 — reviews: two auto rows + arrows, no shadow cut ═══════════ */
.reviews__viewport {
  /* generous bottom padding so card shadows fade out INSIDE the scroll area
     instead of being clipped into a hard line; negative margin re-tightens */
  padding: 1.2rem clamp(1.25rem, 5vw, 6rem) 2.8rem;
  margin-bottom: -1.9rem;
}
.reviews__viewport + .reviews__viewport { padding-top: 1rem; }
.reviews__arrows {
  display: flex; gap: 0.8rem; justify-content: center;
  margin-top: 2.4rem;
}
.reviews__arrow {
  width: 52px; height: 52px; border-radius: 50%;
  border: 1.5px solid rgba(53,85,37,0.35);
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  color: var(--green-ink); font-size: 1.15rem; cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.reviews__arrow:hover { background: var(--green); color: #fff; border-color: transparent; }
/* marquee rows drift continuously — snap would fight the animation */
.reviews__viewport { scroll-snap-type: none; }
.review { scroll-snap-align: none; }


/* login/logout lives in the top bar on desktop; the dropdown mirror is hidden */
.nav__links-auth { display: none; }

/* ═══════════ MOBILE MENU (must sit last — later plain rules such as
   `.nav__links { position: relative }` would otherwise beat a media query) */
@media (max-width: 860px) {
  .nav__links {
    position: absolute; top: calc(100% + 0.5rem); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0.15rem;
    padding: 0.5rem; border-radius: 22px;
    background: rgba(252, 251, 244, 0.995);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: 0 18px 50px rgba(53, 85, 37, 0.18);
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
    z-index: 20;
  }
  .nav.is-menu-open .nav__links { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav__links a {
    padding: 0.85rem 1rem; border-radius: 14px; font-size: 0.98rem;
    font-weight: 600; opacity: 0.9; width: 100%;
  }
  .nav__links a:active { background: rgba(216, 224, 97, 0.35); }
  .nav__links a::after { display: none; }
  .nav__pill { display: none; }
  /* Order Now stays; the login control moves into the dropdown to save room */
  .nav__right .nav-auth { display: none; }
  .nav__right .btn--nav { height: 40px; padding: 0 0.95rem; font-size: 0.85rem; }
  .nav-user { display: none; }
  .nav__links-auth {
    display: block; margin-top: 0.25rem; padding: 0.85rem 1rem;
    border-top: 1px solid rgba(53, 85, 37, 0.14);
    border-radius: 0 0 14px 14px; font-weight: 700; color: var(--green);
  }
  .nav__links-auth:active { background: rgba(216, 224, 97, 0.35); }
}
@media (max-width: 400px) {
  .nav__brand span { display: none; }
}
