/* ===========================================================
   Zenbowl — Design tokens
   =========================================================== */

@font-face {
  font-family: 'Aktiv Grotesk';
  src: url('https://zenbowl-eight.vercel.app/assets/fonts/AktivGrotesk-Regular.woff?v=20260902-3') format('woff');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Aktiv Grotesk';
  src: url('https://zenbowl-eight.vercel.app/assets/fonts/AktivGrotesk-Medium.woff?v=20260902-3') format('woff');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Aktiv Grotesk';
  src: url('https://zenbowl-eight.vercel.app/assets/fonts/AktivGrotesk-SemiBold.woff?v=20260902-3') format('woff');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Aktiv Grotesk';
  src: url('https://zenbowl-eight.vercel.app/assets/fonts/AktivGrotesk-Bold.woff?v=20260902-3') format('woff');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Paquito';
  src: url('https://zenbowl-eight.vercel.app/assets/fonts/Paquito-Regular.woff2?v=20260902-3') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Paquito';
  src: url('https://zenbowl-eight.vercel.app/assets/fonts/Paquito-Medium.woff2?v=20260902-3') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Paquito';
  src: url('https://zenbowl-eight.vercel.app/assets/fonts/Paquito-Bold.woff2?v=20260902-3') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Azo Sans';
  src: url('https://zenbowl-eight.vercel.app/assets/fonts/AzoSans-Regular.woff2?v=20260902-3') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Azo Sans Md';
  src: url('https://zenbowl-eight.vercel.app/assets/fonts/AzoSans-Medium.woff2?v=20260902-3') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}

:root {
  /* brand colors */
  --cream:        #fdf6f0;
  --cream-soft:   #f7ecdf;
  --pale-yellow:  #fcf1bb;
  --pale-blue:    #d4eff8;
  --pale-blue-deep: #6cc3dd;
  --wine:         #750909;
  --wine-deep:    #4c0505;
  --ink:          #241211;

  /* type families */
  --font-heading: 'Paquito', 'Aktiv Grotesk', sans-serif;
  --font-body:    'Aktiv Grotesk', 'Helvetica Neue', Arial, sans-serif;
  --font-accent:  'Azo Sans Md', 'Azo Sans', 'Aktiv Grotesk', 'Helvetica Neue', Arial, sans-serif;

  /* one uniform running-text size, used everywhere body copy appears */
  --fs-body:    clamp(0.95rem, 0.86rem + 0.2vw, 1.0625rem);
  --fs-caption: clamp(0.78rem, 0.74rem + 0.12vw, 0.85rem);
  --lh-body: 1.65;

  /* layout */
  --header-h: 92px;
  --edge: clamp(20px, 4vw, 56px);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

@media (max-width: 640px) {
  :root { --header-h: 72px; }
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html { scroll-padding-top: var(--header-h); }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }

.skip-link {
  position: fixed;
  top: 10px;
  inset-inline-start: 10px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--wine);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

:where(a, button, [tabindex]):focus-visible {
  outline: 3px solid var(--pale-blue-deep);
  outline-offset: 4px;
}

.section-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding-inline: var(--edge);
}
.section-inner--wide { max-width: 1440px; }

.section-kicker {
  margin: 0 0 10px;
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wine);
}

/* ===========================================================
   Buttons — one shared look, everywhere
   =========================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95em 1.9em;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-body);
  letter-spacing: 0.01em;
  background: var(--wine);
  color: var(--cream);
  border: 1.5px solid var(--wine);
  cursor: pointer;
  transition: background-color .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .25s var(--ease);
  white-space: nowrap;
}
.btn:hover {
  background: var(--cream);
  color: var(--wine);
  border-color: var(--wine);
}
.btn:active { transform: scale(.97); }

/* ===========================================================
   Header
   =========================================================== */

.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  background: transparent;
  pointer-events: none; /* let clicks pass through the empty bar; children opt back in below */
}
.site-header * { pointer-events: auto; }

/* Soft, semi-transparent beige backdrop behind the header so its logo/nav/CTA
   stay legible over any content scrolling beneath it (video, photos, dark
   sections) — always on, not just after a scroll threshold. */
.site-header::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: calc(var(--header-h) * 1.85);
  background: linear-gradient(to bottom, rgba(253, 246, 240, 0.92) 0%, rgba(253, 246, 240, 0.62) 55%, rgba(253, 246, 240, 0) 100%);
  pointer-events: none;
  z-index: -1;
}

.header-inner {
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: var(--edge);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.main-nav {
  display: flex;
  gap: clamp(14px, 1.8vw, 30px);
  justify-self: start;
}

.nav-link {
  position: relative;
  font-size: calc(var(--fs-body) * 0.667);
  font-weight: 500;
  padding-block: 6px;
  color: var(--ink);
}
.nav-link::after {
  content: '';
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 1.5px;
  background: var(--wine);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.nav-link:hover::after { transform: scaleX(1); }

.logo { justify-self: center; display: block; transition: opacity .3s var(--ease); }
.logo:hover { opacity: 0.75; }
.logo-mark { height: calc(clamp(26px, 2.6vw, 36px) * 0.667); width: auto; }

.header-cta {
  justify-self: end;
  font-size: calc(var(--fs-body) * 0.667); /* .btn's padding is in em, so it scales down with this automatically */
}

@media (max-width: 720px) {
  .main-nav { display: none; }
  .header-inner { grid-template-columns: auto 1fr auto; }
  .logo { justify-self: start; }
  .logo-mark { height: 24px; }
}

/* ===========================================================
   Hero
   =========================================================== */

.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  background: var(--ink);
}

.hero--pinned {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10;
  will-change: opacity;
}

.hero-spacer { height: 0; }

.hero-media { position: absolute; inset: 0; will-change: transform; }
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
}

.hero-content {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: space-between;
  padding: clamp(48px, 10vh, 96px) var(--edge) clamp(48px, 9vh, 96px);
  text-align: center;
}

.hero-headline {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--cream);
  text-transform: uppercase;
  line-height: 0.94;
  letter-spacing: 0.005em;
  font-size: clamp(2.6rem, 7vw, 6rem);
  text-shadow: 0 6px 40px rgba(20, 8, 7, 0.3);
  white-space: nowrap;
}

/* Desktop only: center the headline dead-center over the video (both axes),
   independent of the CTA's own bottom-anchored flex position below it. */
@media (min-width: 721px) {
  .hero-headline {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.hero-headline .line { display: inline; overflow: hidden; }
.hero-headline .line:not(:last-child) { margin-inline-end: 0.32em; }
.hero-headline .word { display: inline-block; transform: translateY(115%); opacity: 0; }

.hero-cta {
  margin-top: auto;
  opacity: 0;
  transform: translateY(14px);
}

.hero-scroll-cue {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  width: 22px; height: 34px;
  border: 1.5px solid rgba(253, 246, 240, 0.75);
  border-radius: 999px;
  z-index: 2; opacity: 0;
}
.hero-scroll-cue span {
  position: absolute; top: 6px; left: 50%; width: 4px; height: 4px; margin-left: -2px;
  background: var(--cream); border-radius: 50%;
  animation: cueDrop 2.2s ease-in-out infinite;
}
@keyframes cueDrop {
  0% { transform: translateY(0); opacity: 1; }
  70%, 100% { transform: translateY(14px); opacity: 0; }
}

body.is-ready .hero-headline .word { animation: riseWord 1.05s var(--ease) forwards; }
body.is-ready .hero-headline .line:nth-child(1) .word { animation-delay: .15s; }
body.is-ready .hero-headline .line:nth-child(2) .word:nth-child(1) { animation-delay: .30s; }
body.is-ready .hero-headline .line:nth-child(2) .word:nth-child(2) { animation-delay: .42s; }
body.is-ready .hero-cta { animation: fadeUp .8s var(--ease) .8s forwards; }
body.is-ready .hero-scroll-cue { animation: fadeTag .8s var(--ease) 1.5s forwards; }

@keyframes riseWord { to { transform: translateY(0); opacity: 1; } }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeTag { to { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-headline .word, .hero-cta, .hero-scroll-cue { animation: none !important; opacity: 1 !important; transform: none !important; }
  .hero-media { transform: none !important; }
}

/* Mobile: the video shows at its own aspect ratio, full device width, no cropping —
   the hero is never pinned/faded on these widths, so the next section starts right
   after the video with no reserved gap. */
@media (max-width: 720px) {
  .hero {
    height: auto;
    min-height: 0;
    aspect-ratio: 1280 / 722;
  }

  /* headline is already single-line by default now — just shrink it to
     roughly half its desktop size on small screens */
  .hero-headline {
    font-size: clamp(1.1rem, 5.4vw, 1.5rem);
  }

  /* CTA pill matches the header's "מצא אותנו" button exactly on mobile —
     same font-size multiplier as .header-cta, since .btn padding is in em
     and scales with it automatically. */
  .hero-cta { font-size: calc(var(--fs-body) * 0.667); }
}

/* ===========================================================
   Reveal-on-scroll (shared, subtle)
   =========================================================== */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible .reveal-item:nth-child(1) { transition-delay: .03s; }
.reveal-stagger.is-visible .reveal-item:nth-child(2) { transition-delay: .11s; }
.reveal-stagger.is-visible .reveal-item:nth-child(3) { transition-delay: .19s; }
.reveal-stagger.is-visible .reveal-item:nth-child(4) { transition-delay: .27s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-item { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ===========================================================
   Bestsellers — curved drag carousel
   =========================================================== */

.bestsellers {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 10vh, 120px) 0 clamp(40px, 6vh, 72px);
}

.bestsellers-bg {
  margin: 0;
  position: absolute;
  top: clamp(48px, 9vh, 100px);
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--pale-blue-deep);
  font-size: clamp(2.6rem, 11vw, 9.5rem);
  line-height: 1;
  letter-spacing: 0.005em;
  white-space: nowrap;
  z-index: 0;
  user-select: none;
  pointer-events: none;
}

.carousel {
  position: relative;
  z-index: 1;
  width: 100%;
  height: clamp(300px, 34vw, 420px);
  margin-top: clamp(24px, 5vh, 56px);
  overflow: hidden;
}

.carousel-hint {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.6em 1.1em;
  background: var(--cream);
  border: 1px solid rgba(117, 9, 9, 0.18);
  border-radius: 999px;
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wine);
  pointer-events: none;
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.carousel-hint-arrow { display: inline-block; animation: hintNudge 1.6s ease-in-out infinite; }
.carousel-hint-arrow:last-child { animation-direction: alternate-reverse; }
@keyframes hintNudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(3px); }
}
.carousel-hint.is-hidden { opacity: 0; transform: translate(-50%, -50%) scale(0.9); }

.carousel-stage {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}
.carousel-stage.is-dragging { cursor: grabbing; }

.carousel-item {
  position: absolute;
  top: clamp(18px, 3vw, 34px);
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(10px, 1.6vw, 18px);
  will-change: transform;
  pointer-events: none;
}

.carousel-item-img {
  height: clamp(150px, 19vw, 270px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.carousel-item-img img {
  height: 100%;
  width: auto;
  max-width: none;
  filter: drop-shadow(0 22px 26px rgba(36, 18, 17, 0.28));
  /* iOS Safari can rasterize a filter:drop-shadow element inside a
     JS-transformed ancestor with a stale/gray backing layer on first
     paint (fixes itself once a scroll forces a repaint). Explicitly
     promoting the image into its own compositing layer up front avoids
     the bad initial raster. */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Mobile Safari may still show the transparent PNG canvas as a pale panel
   when drop-shadow is combined with the transformed carousel items. */
@media (max-width: 720px) {
  .carousel-item-img img {
    -webkit-filter: none;
    filter: none;
  }
}

.carousel-item-name {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--wine);
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-hint-arrow { animation: none; }
}

/* ===========================================================
   Interactive menu builder
   =========================================================== */

.menu-builder {
  position: relative;
  padding: clamp(72px, 12vh, 140px) 0 clamp(80px, 13vh, 150px);
  background: var(--cream-soft);
}

.menu-heading {
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(3.2rem, 9vw, 6.4rem);
  line-height: 0.95;
  color: var(--wine);
}

.menu-intro {
  margin: 0;
  max-width: 46ch;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--ink);
  opacity: 0.82;
}

.menu-layout {
  margin-top: clamp(40px, 6vh, 64px);
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.menu-steps {
  display: flex;
  flex-direction: column;
  gap: clamp(44px, 7vh, 76px);
  min-width: 0;
}

.menu-step-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: clamp(18px, 2.6vh, 28px);
}

.menu-step-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  color: var(--ink);
  line-height: 1;
}

.menu-step-title {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  color: var(--ink);
}

/* ---- chips (selection pills — visually distinct from .btn CTAs) ---- */

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  padding: 0.65em 1.3em;
  border-radius: 999px;
  border: 1.5px solid rgba(117, 9, 9, 0.28);
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: calc(var(--fs-body) * 0.9);
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .2s var(--ease);
}
.chip:hover { border-color: var(--wine); }
.chip:active { transform: scale(.96); }
.chip.is-selected {
  background: var(--wine);
  border-color: var(--wine);
  color: var(--cream);
}

.menu-substep + .menu-substep { margin-top: 22px; }
.menu-substep-label {
  margin: 0 0 10px;
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wine);
  opacity: 0.85;
}

/* ---- bowl family filter ---- */

.family-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.family-chip {
  padding: 0.5em 1.15em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  background: var(--cream-soft);
  color: var(--ink);
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background-color .25s var(--ease), color .25s var(--ease);
}
.family-chip:hover { background: var(--pale-yellow); }
.family-chip.is-active { background: var(--wine); color: var(--cream); }

/* ---- bowl cards (typography-led, no photography) ---- */

.bowl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 16px;
}

.bowl-card {
  text-align: start;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 22px 20px;
  background: var(--cream);
  border: 1.5px solid var(--wine);
  border-radius: 22px;
  transition: background-color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.bowl-card:hover { box-shadow: 0 14px 30px -20px rgba(36, 18, 17, 0.4); }
.bowl-card.is-hidden { display: none; }
.bowl-card.is-selected {
  background: rgba(117, 9, 9, 0.06);
  border-width: 2.5px;
  box-shadow: 0 14px 30px -18px rgba(36, 18, 17, 0.45);
}

.bowl-tag {
  align-self: flex-start;
  font-family: var(--font-accent);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--pale-yellow);
  border-radius: 999px;
  padding: 0.28em 0.85em;
}
.bowl-tag--fish   { background: var(--wine); color: var(--cream); }
.bowl-tag--meat   { background: var(--wine-deep); color: var(--cream); }
.bowl-tag--chicken{ background: var(--pale-yellow); color: var(--ink); }
.bowl-tag--vegan  { background: var(--pale-blue-deep); color: var(--ink); }

.bowl-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  color: var(--wine);
}
.bowl-ingredients {
  font-size: var(--fs-caption);
  line-height: 1.55;
  color: var(--ink);
  opacity: 0.8;
}
.bowl-nutrition {
  margin-top: auto;
  padding-top: 6px;
  font-family: var(--font-accent);
  font-size: var(--fs-caption);
  color: var(--wine);
  opacity: 0.85;
}

/* ---- live summary card ---- */

.menu-summary {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  background: var(--cream);
  border: 1.5px solid var(--wine);
  border-radius: 28px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.menu-summary-kicker {
  margin: 0;
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wine);
  opacity: 0.85;
}
.menu-summary-heading {
  margin: 0 0 14px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  color: var(--ink);
}

.menu-summary-list { margin: 0 0 22px; display: flex; flex-direction: column; gap: 11px; }
.menu-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 11px;
  border-bottom: 1px solid rgba(117, 9, 9, 0.14);
}
.menu-summary-row:last-child { border-bottom: none; padding-bottom: 0; }
.menu-summary-row dt {
  flex: 0 0 auto;
  font-family: var(--font-accent);
  font-size: var(--fs-caption);
  font-weight: 500;
  color: var(--ink);
  opacity: 0.65;
}
.menu-summary-row dd {
  margin: 0;
  text-align: end;
  font-size: var(--fs-caption);
  font-weight: 600;
  color: var(--wine);
  max-width: 60%;
}

.menu-summary-cta { width: 100%; }

@media (max-width: 980px) {
  .menu-layout { grid-template-columns: 1fr; }
  .menu-summary { position: static; margin-top: 6px; }
}

@media (max-width: 560px) {
  .bowl-grid { grid-template-columns: 1fr; }

  /* the 4 base options wrap unevenly (3 + 1 alone) as free-flowing chips
     at this width since "אטריות זכוכית" is much wider than the others —
     force an even 2x2 grid instead so the last two always share a row. */
  .chip-row[data-group="base"] {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .chip-row[data-group="base"] .chip { text-align: center; }
}

/* ===========================================================
   Lifestyle (healthy living / Instagram reel)
   =========================================================== */

.lifestyle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(64px, 10vh, 120px) var(--edge);
  background: var(--cream);
}

/* video first in DOM → right side in this RTL layout, per explicit request */
.lifestyle-media { display: flex; flex-direction: column; align-items: center; }
.lifestyle-iframe {
  width: 100%;
  max-width: 400px;
  height: clamp(420px, 62vw, 680px);
  border: 0;
  border-radius: 18px;
  display: block;
}
.lifestyle-credit {
  margin: 12px 0 0;
  font-size: var(--fs-caption);
  opacity: 0.55;
}

/* Styled to match .menu-heading ("MENU") exactly, per explicit request —
   same family/weight/color; size scaled down for this section's narrower
   half-width column instead of reusing the full-bleed MENU-section clamp. */
.lifestyle-kicker {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  line-height: 0.95;
  color: var(--wine);
  text-transform: uppercase;
}

.lifestyle-heading {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  line-height: 1.18;
  color: var(--wine);
}
.lifestyle-heading .line { display: block; }
.lifestyle-text {
  margin: 0;
  max-width: 42ch;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}
.lifestyle-text .line { display: block; }
.lifestyle-text .line:not(:last-child) { margin-bottom: 0.4em; }

@media (max-width: 860px) {
  .lifestyle { grid-template-columns: 1fr; text-align: center; }
  /* this section specifically: text first, video below it on mobile —
     the opposite stacking order from About/Hours, per explicit request */
  .lifestyle-copy { order: -1; }
  .lifestyle-media { margin-top: 28px; }

  /* Mobile only: the Instagram embed has its own internal scroll, which
     was trapping the page's touch-scroll gesture whenever a finger landed
     on the video. touch-action:pan-y tells the browser to hand vertical
     drags starting here straight to page scrolling instead of waiting on
     the (cross-origin, un-styleable) iframe's own scroll handling. */
  .lifestyle-iframe { touch-action: pan-y; }
}

/* ===========================================================
   About
   =========================================================== */

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--cream-soft);
}
.about-media { overflow: hidden; min-height: 420px; }
.about-media img { width: 100%; height: 100%; object-fit: cover; }

.about-copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(48px, 8vw, 100px) var(--edge);
}
.about-heading {
  margin: 0 0 22px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.1rem, 3.4vw, 3.2rem);
  color: var(--wine);
}
.about-text {
  margin: 0 0 1.1em;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  max-width: 46ch;
}
.about-text:last-of-type { margin-bottom: 0; }

.about-signature {
  margin: 1.3em 0 0;
  font-size: var(--fs-body);
  line-height: 1.5;
  max-width: 46ch;
  font-weight: 700;
  color: var(--wine);
}

@media (max-width: 860px) {
  .about { grid-template-columns: 1fr; }
  .about-media { min-height: 340px; order: -1; }
  .about-copy { padding-block: 48px; }
  .about-text, .about-signature { max-width: none; }
}

/* ===========================================================
   Hours & map
   =========================================================== */

.hours {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--cream-soft);
}
.hours-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 8vw, 100px) var(--edge);
}
.hours-heading {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.1rem, 3.4vw, 3.2rem);
  color: var(--wine);
}
.hours-address {
  margin: 0 0 10px;
  font-size: var(--fs-body);
  font-weight: 600;
  color: var(--ink);
  opacity: 0.85;
}
.hours-time {
  margin: 0 0 26px;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 700;
  color: var(--ink);
}
.hours-cta { align-self: flex-start; }

.hours-map { overflow: hidden; min-height: 420px; }
.hours-map iframe { width: 100%; height: 100%; border: 0; display: block; }

@media (max-width: 860px) {
  .hours { grid-template-columns: 1fr; }
  .hours-map { min-height: 320px; order: -1; }
  .hours-copy { padding-block: 48px; }
  .hours-cta { align-self: stretch; text-align: center; }
}

/* ===========================================================
   Reviews / social proof
   =========================================================== */

.reviews { padding: clamp(72px, 12vh, 140px) 0; }
.reviews-heading {
  margin: 0 0 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  color: var(--wine);
}

.reviews-track-wrap {
  position: relative;
  margin-top: clamp(32px, 5vh, 56px);
  padding-inline: var(--edge);
}

.reviews-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  max-width: 1440px;
  margin: 0 auto;
}

.review-card {
  flex: 1 1 240px;
  max-width: 340px;
  background: var(--cream);
  border: 1.5px solid var(--wine);
  border-radius: 28px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Desktop: all 5 reviews sit in one row — a fixed 5-column grid fits them
   exactly instead of letting flex-wrap drop the 5th card to its own line. */
@media (min-width: 900px) {
  .reviews-track {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
  }
  .review-card { max-width: none; padding: 24px 18px; }
}
.review-author { margin: 0; font-family: var(--font-body); font-weight: 700; color: var(--wine); font-size: var(--fs-body); }
.review-stars { margin: 0; color: var(--wine); letter-spacing: 2px; font-size: 0.9rem; }
.review-text { margin: 4px 0 0; font-size: var(--fs-body); line-height: var(--lh-body); flex: 1; }

/* ===========================================================
   Footer
   =========================================================== */

.site-footer {
  background: var(--wine);
  color: var(--cream);
  padding: clamp(56px, 9vh, 96px) var(--edge);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(32px, 6vw, 80px);
  flex-wrap: wrap;
}

.footer-brand {
  filter: brightness(0) invert(1);
  opacity: 0.96;
  flex: 1 1 260px;
}
.footer-logo { width: clamp(200px, 24vw, 340px); height: auto; }

.footer-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex: 1 1 260px;
}
.footer-info-line {
  margin: 0;
  font-size: var(--fs-body);
  color: var(--cream);
  opacity: 0.94;
}

.footer-socials { display: flex; gap: 12px; margin-top: 10px; }
.social-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid rgba(253, 246, 240, 0.55);
  border-radius: 50%;
  color: var(--cream);
  transition: background-color .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}
.social-icon img { width: 18px; height: 18px; filter: brightness(0) invert(1); }
.social-icon:hover { background: var(--cream); border-color: var(--cream); }
.social-icon:hover img { filter: none; }

.footer-utility-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 16px;
}
.footer-utility-links button {
  padding: 0;
  color: var(--cream);
  font-size: var(--fs-caption);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 640px) {
  .footer-inner { flex-direction: column; align-items: flex-start; text-align: right; }
}

/* ===========================================================
   Cookie consent
   =========================================================== */

.cookie-banner {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 70;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 30px clamp(20px, 4vw, 56px) 26px;
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -14px 40px -18px rgba(36, 18, 17, 0.4);
  transform: translateY(100%);
  transition: transform .5s var(--ease);
}
.cookie-banner.is-visible { transform: translateY(0); }

.cookie-banner-kicker {
  margin: 0;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: var(--fs-caption);
  letter-spacing: 0.02em;
  color: var(--ink);
  opacity: 0.55;
}

.cookie-banner-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-banner-heading {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.35rem, 1vw + 1.1rem, 1.9rem);
  line-height: 1.15;
  color: var(--wine);
}

/* Accept is the solid primary .btn; decline is the same pill outlined
   instead of filled; "manage preferences" is a plain underlined link —
   three distinct visual weights, matching the reference layout. */
.cookie-banner-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  flex-shrink: 0;
}

.cookie-banner-outline {
  background: transparent;
  color: var(--wine);
}
.cookie-banner-outline:hover {
  background: var(--wine);
  color: var(--cream);
}

.cookie-banner-manage {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-body);
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color .25s var(--ease);
}
.cookie-banner-manage:hover { color: var(--wine); }

.cookie-banner-text {
  margin: 0;
  max-width: 62ch;
  font-size: var(--fs-caption);
  line-height: 1.5;
  color: var(--ink);
  opacity: 0.85;
}

.cookie-preferences-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(36, 18, 17, .68);
  backdrop-filter: blur(8px);
}
.cookie-preferences-modal.is-open { display: grid; }
.cookie-preferences-card {
  position: relative;
  width: min(560px, 100%);
  max-height: min(720px, calc(100svh - 40px));
  overflow: auto;
  padding: clamp(24px, 5vw, 42px);
  border-radius: 26px;
  background: var(--cream);
  box-shadow: 0 24px 80px rgba(36, 18, 17, .3);
}
.cookie-preferences-card h2 { margin: 0 0 8px; color: var(--wine); }
.cookie-preferences-card > p { margin: 0 0 20px; }
.cookie-preferences-close {
  position: absolute;
  top: 14px;
  inset-inline-end: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--wine);
}
.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid rgba(117, 9, 9, .18);
}
.cookie-option strong,
.cookie-option span { display: block; }
.cookie-option span { margin-top: 3px; font-size: var(--fs-caption); opacity: .72; }
.cookie-option input { width: 24px; height: 24px; accent-color: var(--wine); flex: 0 0 auto; }
.cookie-always-on { color: var(--wine); font-weight: 700; white-space: nowrap; }
.cookie-preferences-save { width: 100%; margin-top: 18px; }

@media (prefers-reduced-motion: reduce) {
  .cookie-banner { transition: none; }
}

@media (max-width: 720px) {
  .cookie-banner { padding: 22px 20px 20px; border-radius: 22px 22px 0 0; gap: 12px; }
  .cookie-banner-row { flex-direction: column; align-items: flex-start; gap: 14px; }
  .cookie-banner-actions { width: 100%; }
  .cookie-banner-actions .btn { flex: 1 1 auto; }
}

/* ===========================================================
   Accessibility widget
   =========================================================== */

/* --cookie-banner-offset is kept in sync by js/main.js with the cookie
   banner's own visible height, so this button never sits underneath it
   while both are on screen — see the cookie-consent JS block. */
:root { --cookie-banner-offset: 0px; }

.a11y-toggle {
  position: fixed;
  bottom: calc(22px + var(--cookie-banner-offset));
  inset-inline-start: 22px;
  z-index: 65;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wine);
  color: var(--cream);
  border-radius: 50%;
  box-shadow: 0 10px 26px -12px rgba(36, 18, 17, 0.5);
  transition: transform .25s var(--ease), bottom .3s var(--ease);
}
.a11y-toggle:hover { transform: scale(1.06); }
.a11y-toggle svg { width: 26px; height: 26px; }

.a11y-panel {
  position: fixed;
  bottom: calc(84px + var(--cookie-banner-offset));
  inset-inline-start: 22px;
  z-index: 66;
  width: min(300px, calc(100vw - 44px));
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  background: var(--cream);
  border: 1.5px solid var(--wine);
  border-radius: 20px;
  padding: 20px 20px 18px;
  box-shadow: 0 26px 60px -24px rgba(36, 18, 17, 0.5);
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  visibility: hidden;
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility 0s linear .3s, bottom .3s var(--ease);
}
.a11y-panel.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility 0s linear 0s, bottom .3s var(--ease);
}

.a11y-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.a11y-panel-title {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--wine);
}
.a11y-panel-close {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(117, 9, 9, 0.25);
  border-radius: 50%;
  color: var(--wine);
  font-size: 0.85rem;
  transition: background-color .25s var(--ease), color .25s var(--ease);
}
.a11y-panel-close:hover { background: var(--wine); color: var(--cream); }

.a11y-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-family: var(--font-body);
  font-size: var(--fs-caption);
  color: var(--ink);
}
.a11y-btns { display: flex; gap: 6px; }
.a11y-btn {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(117, 9, 9, 0.3);
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.76rem;
  color: var(--wine);
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.a11y-btn:hover { background: var(--wine); color: var(--cream); }

.a11y-toggle-row {
  padding: 0.65em 1em;
  border-radius: 12px;
  border: 1.5px solid rgba(117, 9, 9, 0.28);
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-caption);
  font-weight: 500;
  text-align: start;
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.a11y-toggle-row:hover { border-color: var(--wine); }
.a11y-toggle-row[aria-pressed="true"] {
  background: var(--wine);
  border-color: var(--wine);
  color: var(--cream);
}

.a11y-reset {
  align-self: flex-start;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--wine);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.a11y-statement {
  margin: 2px 0 0;
  font-size: 0.7rem;
  line-height: 1.55;
  color: var(--ink);
  opacity: 0.75;
}

@media (max-width: 480px) {
  .a11y-toggle { bottom: calc(16px + var(--cookie-banner-offset)); inset-inline-start: 16px; width: 46px; height: 46px; }
  .a11y-panel { bottom: calc(74px + var(--cookie-banner-offset)); inset-inline-start: 16px; }
}

/* underline-links toggle */
html.a11y-underline-links a { text-decoration: underline; text-underline-offset: 3px; }

/* "stop animations" toggle — near-instant duration neutralizes any CSS
   transition/keyframe without enumerating every animated selector
   individually (js/main.js additionally pauses the hero video and
   disables the scroll-linked hero pin/fade while this is on). */
html.a11y-motion-off *,
html.a11y-motion-off *::before,
html.a11y-motion-off *::after {
  animation-duration: 0.001ms !important;
  animation-delay: 0s !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.001ms !important;
  transition-delay: 0s !important;
  scroll-behavior: auto !important;
}

/* high-contrast toggle — forces strong black-on-white everywhere, with
   explicit light-on-dark overrides for the sections that are already
   dark (hero video, wine footer) so nothing goes invisible. Not a
   substitute for a full accessibility audit — see chat note. */
html.a11y-contrast body { background: #fff; }
html.a11y-contrast .bestsellers,
html.a11y-contrast .menu-builder,
html.a11y-contrast .about,
html.a11y-contrast .reviews { background: #fff; }
/* NOTE: deliberately does not force opacity:1 here — the pinned hero's
   scroll-driven fade relies on its own inline opacity style, and an
   !important opacity rule in this stylesheet would permanently override
   it and strand the hero on screen. Explicit black/white text color
   already gives strong contrast even where an element also has a
   lower base opacity. */
html.a11y-contrast * { color: #000 !important; text-shadow: none !important; }
html.a11y-contrast a { text-decoration: underline; }
html.a11y-contrast .chip,
html.a11y-contrast .family-chip,
html.a11y-contrast .bowl-card,
html.a11y-contrast .review-card,
html.a11y-contrast .menu-summary,
html.a11y-contrast .a11y-panel,
html.a11y-contrast .cookie-banner { background: #fff !important; border-color: #000 !important; }
html.a11y-contrast .btn,
html.a11y-contrast .chip.is-selected,
html.a11y-contrast .family-chip.is-active,
html.a11y-contrast .bowl-card.is-selected,
html.a11y-contrast .a11y-toggle-row[aria-pressed="true"],
html.a11y-contrast .bowl-tag--fish,
html.a11y-contrast .bowl-tag--meat { background: #000 !important; color: #fff !important; border-color: #000 !important; }
html.a11y-contrast .hero-content,
html.a11y-contrast .hero-content * { color: #fff !important; }
html.a11y-contrast .hero { background: #000; }
html.a11y-contrast .site-footer,
html.a11y-contrast .site-footer * { color: #fff !important; }
html.a11y-contrast .site-footer { background: #000 !important; }
html.a11y-contrast .social-icon { border-color: #fff !important; }
html.a11y-contrast .a11y-toggle { background: #000 !important; color: #fff !important; }
