/* ============================================================
   CAFE ANNA — styles.css
   Premium boutique café · Ramat Gan
   Color system: burgundy · taupe · cream (palette aligned with brand ref)
   #561C24 · #6D2932 · #C7B7A3 · #E8D8C4
   ============================================================ */

/* ----------------------------------------------------------
   1. CUSTOM PROPERTIES
   ---------------------------------------------------------- */
:root {
  /* ─── Core brand palette ─── */
  --clr-burgundy:      #561C24;
  --clr-burgundy-dk:   #3E1418;
  --clr-burgundy-lt:   #6D2932;
  --clr-burgundy-pale: #8B4A52;
  --clr-taupe:         #C7B7A3;
  --clr-taupe-dk:      #A89885;
  --clr-cream:         #E8D8C4;
  --clr-cream-lt:      #F3EBE1;
  --clr-cream-dk:      #D4C8B8;

  /* CTAs / links on light surfaces — burgundy family */
  --clr-leather:       #6D2932;
  --clr-leather-dk:    #561C24;

  /* “Gold” tokens kept for compatibility — mapped to taupe/cream only */
  --clr-gold:          #C7B7A3;
  --clr-gold-dk:       #A89885;
  --clr-gold-lt:       #E8D8C4;

  /* Dark bands (menu, footer) — deep burgundy */
  --clr-walnut:        #241012;
  --clr-walnut-md:     #3A161C;
  --clr-walnut-lt:     #561C24;

  --clr-text-dark:     #241012;
  --clr-text-mid:      #561C24;
  --clr-text-light:    #6D2932;

  /* ─── Typography — Varela Round (Hebrew + Latin, Avraham Cornfeld / Google Fonts) ─── */
  --font-display: 'Varela Round', 'Segoe UI', system-ui, sans-serif;
  --font-body:    'Varela Round', 'Segoe UI', system-ui, sans-serif;
  --font-script:  'Dancing Script', cursive;
  --font-hebrew:  'Varela Round', 'Frank Ruhl Libre', 'David Libre', sans-serif;

  /* ─── 8px spacing grid ─── */
  --sp-1:  0.5rem;
  --sp-2:  1rem;
  --sp-3:  1.5rem;
  --sp-4:  2rem;
  --sp-5:  2.5rem;
  --sp-6:  3rem;
  --sp-8:  4rem;
  --sp-10: 5rem;
  --sp-12: 6rem;
  --sp-16: 8rem;

  /* ─── Layout ─── */
  --container-max: 1280px;
  /* Hero can breathe wider on large screens than body sections */
  --hero-inner-max: 1440px;
  --container-pad: clamp(1.25rem, 5vw, 3rem);
  --header-h:      72px;

  /* ─── Radii ─── */
  --r-sm:   4px;
  --r-md:   10px;
  --r-lg:   18px;
  --r-full: 9999px;

  /* ─── Shadows ─── */
  --sh-sm:   0 2px 8px  rgba(56,20,12,.08);
  --sh-md:   0 4px 20px rgba(56,20,12,.13);
  --sh-lg:   0 8px 36px rgba(56,20,12,.18);
  --sh-xl:   0 16px 56px rgba(56,20,12,.24);
  --sh-gold: 0 0 28px rgba(199, 183, 163, .32);

  /* ─── Motion ─── */
  --ease: cubic-bezier(.4,0,.2,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  --t-fast: .15s;
  --t-base: .30s;
  --t-slow: .50s;
}

/* ----------------------------------------------------------
   2. RESET & BASE
   ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  color: var(--clr-text-dark);
  background-color: var(--clr-cream);
  line-height: 1.65; /* ≥1.5 for readability */
  overflow-x: hidden;
  padding-bottom: 88px; /* corner accessibility FAB + end-of-page clearance */
}

/* Skip link — keyboard / screen reader first stop */
.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  padding: .65rem 1.25rem;
  background: var(--clr-burgundy);
  color: var(--clr-cream-lt);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--r-sm);
  box-shadow: var(--sh-md);
  transition: top var(--t-base) var(--ease);
}

.skip-link:focus {
  top: var(--sp-2);
  outline: 3px solid var(--clr-gold-lt);
  outline-offset: 3px;
}

#main-content:focus {
  outline: none;
}

#main-content:focus-visible {
  outline: 3px solid var(--clr-burgundy);
  outline-offset: 4px;
}

/* Subtle paper grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9998;
  opacity: .45;
}

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

/* ----------------------------------------------------------
   3. TYPOGRAPHY
   ---------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--clr-burgundy);
}

/* ----------------------------------------------------------
   4. UTILITY CLASSES
   ---------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  min-width: 0;
  box-sizing: border-box;
}

#main-content {
  min-width: 0;
  width: 100%;
}

/* Image Placeholder */
.img-placeholder {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--clr-taupe) 0%, var(--clr-cream-dk) 60%, var(--clr-taupe-dk) 100%);
}

.placeholder-label {
  font-family: var(--font-body);
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--clr-leather);
  text-align: center;
  padding: var(--sp-2);
  position: relative;
  z-index: 1;
}

.placeholder-icon {
  position: relative;
  z-index: 1;
  color: var(--clr-leather);
  opacity: .35;
  margin-bottom: var(--sp-1);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .875rem 2.25rem;
  border-radius: var(--r-sm);
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), background-color var(--t-base) var(--ease);
  cursor: pointer;
}

.btn-primary {
  background-color: var(--clr-leather);
  color: var(--clr-cream-lt);
  border: 1px solid var(--clr-leather-dk);
}

.btn-primary:hover {
  background-color: var(--clr-leather-dk);
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
}

.btn-primary:focus-visible { outline: 2px solid var(--clr-gold); outline-offset: 3px; }

/* Gold line */
.gold-line {
  display: block;
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-gold), transparent);
  margin: var(--sp-2) auto;
}

/* Section header */
.section-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  /* Burgundy on cream: ≥4.5:1 — gold reserved for accents only on light BG */
  color: var(--clr-burgundy-lt);
  margin-bottom: var(--sp-1);
}

/* Dark menu band: gold eyebrow OK on walnut */
.menu-section .section-eyebrow {
  color: var(--clr-gold-lt);
}

/* Footer / dark contact header: keep gold */
.contact-footer > .contact-section .section-eyebrow {
  color: var(--clr-gold-lt);
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  position: relative;
  display: inline-block;
}

.section-heading::after {
  content: '';
  display: block;
  width: 2.5rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-gold), transparent);
  margin: var(--sp-2) auto 0;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .10s; }
.reveal.d2 { transition-delay: .20s; }
.reveal.d3 { transition-delay: .30s; }
.reveal.d4 { transition-delay: .40s; }
.reveal.d5 { transition-delay: .50s; }

/* ----------------------------------------------------------
   5. HEADER / NAVIGATION
   ---------------------------------------------------------- */
.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background-color var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}

.site-header.scrolled {
  background-color: rgba(245,237,224,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--sh-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  min-width: 0;
  gap: var(--sp-2);
  flex-wrap: nowrap;
}

.nav-right-cluster {
  display: flex;
  align-items: center;
  gap: clamp(.5rem, 2vw, var(--sp-4));
  margin-inline-start: auto;
  min-width: 0;
  flex-shrink: 1;
}

/* Language toggle — עברית default / EN */
.lang-switch {
  display: inline-flex;
  border: 1px solid var(--clr-cream-dk);
  border-radius: var(--r-sm);
  overflow: hidden;
  background: rgba(245,237,224,.9);
  flex-shrink: 0;
}

.lang-switch__btn {
  min-width: 44px;
  min-height: 44px;
  padding: .38rem .65rem;
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--clr-text-mid);
  border: none;
  background: transparent;
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast);
}

.lang-switch__btn.is-active {
  background: var(--clr-burgundy);
  color: var(--clr-cream-lt);
}

.lang-switch__btn:not(.is-active):hover {
  color: var(--clr-burgundy);
  background: rgba(86,28,36,.07);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  min-width: 0;
  flex-shrink: 1;
}

.nav-logo-svg {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

.nav-logo-name {
  font-family: var(--font-display);
  font-size: clamp(0.88rem, 1.6vw, 1.1rem);
  font-style: italic;
  color: var(--clr-burgundy);
  min-width: 0;
  letter-spacing: .03em;
  line-height: 1.15;
}

.nav-logo-name small {
  display: block;
  font-family: var(--font-body);
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--clr-leather);
  margin-top: 1px;
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 2vw, var(--sp-5));
  min-width: 0;
  flex-wrap: nowrap;
}

.nav-link {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--clr-text-dark);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--t-base) var(--ease);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding-inline: .4rem;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--clr-gold);
  transition: width var(--t-base) var(--ease);
}

.nav-link:hover { color: var(--clr-leather); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  align-items: center;
  min-width: 44px;
  min-height: 44px;
  padding: 8px;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background-color: var(--clr-burgundy);
  transition: transform var(--t-base) var(--ease), opacity var(--t-base) var(--ease);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav backdrop — must not capture clicks when invisible (opacity:0) */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(30,10,5,.45);
  z-index: 999;
  opacity: 0;
  transition: opacity var(--t-base) var(--ease);
  pointer-events: none;
}
.nav-backdrop.visible {
  opacity: 1;
  pointer-events: auto;
}

/* ----------------------------------------------------------
   6. HERO
   ---------------------------------------------------------- */
.hero {
  position: relative;
  min-height: min(100svh, 900px);
  display: flex;
  align-items: center;
  background-color: var(--clr-cream-lt);
  overflow: hidden;
  padding-top: var(--header-h);
}

/* Subtle full-bleed warmth — no left/right split (avoids visible vertical seam on desktop) */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(232, 216, 196, 0.22) 0%,
    rgba(243, 235, 225, 0) 45%,
    rgba(199, 183, 163, 0.1) 100%
  );
  pointer-events: none;
}

/* Bean watermark — uses actual coffee bean photo at low opacity */
.hero-beans {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("ana%20ref%20photos/coffe%20web%20background.jpeg");
  background-size: 320px auto;
  background-repeat: repeat;
  opacity: .09;
  mix-blend-mode: multiply;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  gap: clamp(var(--sp-4), 4vw, var(--sp-10));
  align-items: center;
  width: 100%;
  max-width: var(--hero-inner-max);
  margin-inline: auto;
  padding: var(--sp-10) var(--container-pad);
  min-width: 0;
  box-sizing: border-box;
}

/* Below 1024px the wrapper is ignored for layout (grid children stay brand + content) */
.hero-page {
  display: contents;
}

/* LEFT — brand */
.hero-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}

.hero-logo-ring {
  width: min(380px, 48vw);
  height: min(380px, 48vw);
  position: relative;
  transform: translateY(var(--px-y, 0));
  transition: transform var(--t-slow) var(--ease);
}

/* Circular brand logo image or legacy SVG */
.hero-logo-ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: drop-shadow(0 12px 40px rgba(86,28,36,.22));
  transition: transform var(--t-slow) var(--ease), filter var(--t-slow) var(--ease);
}
.hero-logo-ring:hover img {
  transform: rotate(3deg) scale(1.03);
  filter: drop-shadow(0 16px 48px rgba(86,28,36,.30));
}

.hero-logo-ring svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 12px 40px rgba(86,28,36,.22));
  transition: transform var(--t-slow) var(--ease), filter var(--t-slow) var(--ease);
}
.hero-logo-ring:hover svg {
  transform: rotate(3deg) scale(1.03);
  filter: drop-shadow(0 16px 48px rgba(86,28,36,.30));
}

.hero-hebrew { text-align: center; }

.hero-title-he {
  font-family: var(--font-hebrew);
  font-size: clamp(2.75rem, 5.5vw, 4.25rem);
  font-weight: 700;
  color: var(--clr-burgundy);
  letter-spacing: -.02em;
  line-height: 1.1;
  direction: rtl;
}

.hero-subtitle-he {
  font-family: var(--font-script);
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  color: var(--clr-leather);
  margin-top: .25rem;
  direction: rtl;
}

/* RIGHT — content */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

.hero-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  position: relative;
}

.hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  box-shadow: inset 0 0 0 1px rgba(199,183,163,.25);
  pointer-events: none;
}

.hero-img-wrap--photo {
  display: block;
  padding: 0;
  background: none;
}

.hero-img-wrap--photo .hero-place-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: inherit;
}

.hero-desc {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--clr-text-mid);
  line-height: 1.85;
  font-style: italic;
}

/* Desktop: two full-width “pages” (stacked), each ~one screen — scroll to see the second */
@media (min-width: 1024px) {
  .hero {
    min-height: auto;
    align-items: stretch;
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    max-width: none;
    width: 100%;
    margin-inline: 0;
    padding: 0;
    gap: 0;
  }

  .hero-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: min(88svh, 940px);
    padding: clamp(3.5rem, 6vh, 5.5rem) var(--container-pad);
    box-sizing: border-box;
  }

  .hero-page--brand {
    border-bottom: 1px solid rgba(199, 183, 163, 0.45);
  }

  .hero-page--brand .hero-brand {
    gap: var(--sp-5);
  }

  .hero-page--brand .hero-logo-ring {
    width: min(480px, 38vw);
    height: min(480px, 38vw);
  }

  .hero-page--content .hero-content {
    max-width: min(960px, 100%);
    margin-inline: auto;
    align-items: center;
    text-align: center;
    width: 100%;
    gap: var(--sp-5);
  }

  .hero-page--content .hero-desc {
    max-width: 40em;
    font-size: clamp(1.08rem, 1.25vw, 1.3rem);
    line-height: 1.8;
  }

  .hero-title-he {
    font-size: clamp(3.1rem, 3.6vw, 4.8rem);
  }

  .hero-subtitle-he {
    font-size: clamp(1.5rem, 1.9vw, 2.1rem);
  }

  .hero-page--content .hero-img-wrap {
    aspect-ratio: 16 / 9;
    max-width: min(1000px, 100%);
  }

  .hero-page--content .hero-lever {
    justify-content: center;
    margin-top: var(--sp-3);
  }
}

/* ----------------------------------------------------------
   7. BOTANICAL DIVIDER (between sections)
   ---------------------------------------------------------- */
.botanical-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  padding: var(--sp-2) 0;
  overflow: hidden;
}

.botanical-divider .bd-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-taupe-dk));
  max-width: 320px;
}
.botanical-divider .bd-line.right {
  background: linear-gradient(90deg, var(--clr-taupe-dk), transparent);
}

.botanical-divider .bd-icon svg {
  width: 48px;
  height: 24px;
  color: var(--clr-burgundy);
  opacity: .5;
}

/* ----------------------------------------------------------
   8. FEATURES BAR
   ---------------------------------------------------------- */
.features-bar {
  background-color: var(--clr-cream-lt);
  padding: var(--sp-10) 0;
  position: relative;
}

.features-bar::before,
.features-bar::after {
  content: '';
  position: absolute;
  left: 5%; right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-gold), transparent);
}
.features-bar::before { top: 0; }
.features-bar::after  { bottom: 0; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--sp-2);
  min-width: 0;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-4) var(--sp-2);
  text-align: center;
  position: relative;
  transition: transform var(--t-base) var(--ease);
}
.feature-item:hover { transform: translateY(-5px); }

/* vertical separator */
.feature-item + .feature-item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--clr-cream-dk), transparent);
}

.feature-icon {
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-burgundy);
}

.feature-icon-img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
  transform-origin: 50% 55%;
  animation: feature-icon-sway 3.2s ease-in-out infinite alternate;
}

.feature-item:nth-child(2) .feature-icon-img { animation-delay: .35s; }
.feature-item:nth-child(3) .feature-icon-img { animation-delay: .7s; }
.feature-item:nth-child(4) .feature-icon-img { animation-delay: 1.05s; }

.feature-item:hover .feature-icon-img {
  animation-duration: 2s;
}

@keyframes feature-icon-sway {
  from { transform: rotate(-7deg); }
  to   { transform: rotate(7deg); }
}

.feature-label {
  font-family: var(--font-hebrew);
  font-size: .95rem;
  font-weight: 500;
  color: var(--clr-text-dark);
  direction: rtl;
  line-height: 1.4;
}

/* ----------------------------------------------------------
   9. MENU SECTION
   ---------------------------------------------------------- */
.menu-section {
  position: relative;
  padding: var(--sp-12) 0;
  overflow: hidden;
  scroll-margin-top: calc(var(--header-h) + 12px);
}

/* Walnut wood texture — layered CSS gradients */
.menu-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(87deg,  transparent 0, transparent 18px, rgba(0,0,0,.018) 18px, rgba(0,0,0,.018) 19px),
    repeating-linear-gradient(93deg,  transparent 0, transparent 36px, rgba(232,216,196,.018) 36px, rgba(232,216,196,.018) 37px),
    repeating-linear-gradient(179deg, transparent 0, transparent 70px, rgba(0,0,0,.008) 70px, rgba(0,0,0,.008) 72px),
    linear-gradient(165deg, var(--clr-walnut) 0%, var(--clr-walnut-md) 28%, var(--clr-burgundy) 55%, var(--clr-walnut-md) 80%, var(--clr-walnut) 100%);
  pointer-events: none;
}

/* Gold bean watermark over wood */
.menu-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cellipse cx='25' cy='25' rx='9' ry='13' fill='none' stroke='%23C7B7A3' stroke-width='.5' opacity='.07' transform='rotate(-30 25 25)'/%3E%3Cline x1='17' y1='18' x2='33' y2='32' stroke='%23C7B7A3' stroke-width='.3' opacity='.05' transform='rotate(-30 25 25)'/%3E%3Cellipse cx='75' cy='65' rx='8' ry='12' fill='none' stroke='%23C7B7A3' stroke-width='.5' opacity='.06' transform='rotate(20 75 65)'/%3E%3Cellipse cx='55' cy='15' rx='7' ry='10' fill='none' stroke='%23C7B7A3' stroke-width='.4' opacity='.05' transform='rotate(55 55 15)'/%3E%3Cellipse cx='15' cy='75' rx='6' ry='9' fill='none' stroke='%23C7B7A3' stroke-width='.4' opacity='.04' transform='rotate(-15 15 75)'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* Content above pseudo-elements */
.menu-section .container { position: relative; z-index: 2; }

.menu-section .section-heading { color: var(--clr-cream-lt); }
.menu-section .section-heading::after { background: var(--clr-gold); }

.menu-header { text-align: center; margin-bottom: var(--sp-8); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
}

/* Menu card */
.menu-card {
  position: relative;
  background: rgba(245,237,224,.06);
  border: 1px solid rgba(199,183,163,.18);
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
}

.menu-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 14px 44px rgba(0,0,0,.35), var(--sh-gold);
  border-color: rgba(199,183,163,.5);
}

.menu-card:focus {
  outline: none;
}

.menu-card:focus-visible {
  outline: 3px solid var(--clr-gold-lt);
  outline-offset: 3px;
  z-index: 2;
}

.menu-card-img {
  aspect-ratio: 1;
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* Menu tile placeholders — warm beige + bean (matches brand ref) */
.menu-section .menu-card-img.menu-card-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--sp-3) var(--sp-2);
  background: linear-gradient(118deg, #EBE2D4 0%, #E0D2C2 52%, #D4C7B6 100%) !important;
  border-bottom: 1px solid rgba(199,183,163,.12);
}

.menu-section .menu-card-img.menu-card-ph .menu-ph-bean {
  color: #6B5340;
  opacity: .88;
  margin-bottom: 10px;
  line-height: 0;
}

.menu-section .menu-card-img.menu-card-ph .placeholder-label {
  font-size: .62rem;
  letter-spacing: .04em;
  color: #5C4635;
  text-transform: none;
  font-weight: 500;
  line-height: 1.35;
  max-width: 11em;
}

.menu-card-img .placeholder-label {
  font-size: .58rem;
  color: rgba(107,68,40,.8);
}

.menu-card-body {
  padding: var(--sp-2) var(--sp-2) var(--sp-1);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--sp-1);
}

.menu-card-name-en {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 500;
  color: var(--clr-cream-lt);
}

.menu-card-name-he {
  display: block;
  font-family: var(--font-hebrew);
  font-size: .75rem;
  font-weight: 300;
  color: var(--clr-taupe);
  direction: rtl;
  margin-top: 2px;
}

.menu-card-titles {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-start;
}

html[data-lang="he"] .menu-card-titles {
  align-items: flex-end;
  text-align: end;
}

html[data-lang="he"] .menu-card-name-he {
  order: 1;
  font-size: .95rem;
  font-weight: 500;
  color: var(--clr-cream-lt);
  margin-top: 0;
}

html[data-lang="he"] .menu-card-name-en {
  order: 2;
  font-size: .72rem;
  font-weight: 400;
  color: var(--clr-taupe);
}

html[data-lang="en"] .menu-card-name-en {
  order: 1;
  font-size: .95rem;
}

html[data-lang="en"] .menu-card-name-he {
  order: 2;
  font-size: .72rem;
  margin-top: 0;
  color: var(--clr-taupe);
}

.menu-card-price {
  font-family: var(--font-display);
  font-size: .9rem;
  color: var(--clr-gold);
  font-weight: 500;
  white-space: nowrap;
}

.menu-card-footer {
  padding: 0 var(--sp-2) var(--sp-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-card-tag {
  font-family: var(--font-body);
  font-size: .6rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--clr-gold);
  border: 1px solid rgba(199,183,163,.3);
  border-radius: var(--r-full);
  padding: 2px 8px;
}

.menu-card-open {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(199,183,163,.12);
  border: 1px solid rgba(199,183,163,.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-gold);
  opacity: 0;
  transition: opacity var(--t-base);
}
.menu-card:hover .menu-card-open { opacity: 1; }

/* Gold shimmer on hover */
.menu-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(199,183,163,.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t-base);
  pointer-events: none;
}
.menu-card:hover::after { opacity: 1; }

/* ----------------------------------------------------------
   10. OUR STORY
   ---------------------------------------------------------- */
.story-section {
  position: relative;
  padding: var(--sp-12) 0;
  background-color: var(--clr-cream-lt);
  overflow: hidden;
}

/* Faint radial glow (simulates Anna illustration bg) */
.story-section::before {
  content: '';
  position: absolute;
  right: 8%; top: 50%;
  transform: translateY(-50%);
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(86,28,36,.05) 0%, transparent 70%);
  pointer-events: none;
}

.story-inner {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(var(--sp-4), 4vw, var(--sp-10));
  align-items: center;
  min-width: 0;
}

.story-img-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-xl);
}

/* Inset gold frame */
.story-img-wrap::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(199,183,163,.3);
  border-radius: calc(var(--r-lg) - 6px);
  pointer-events: none;
}

.story-img-wrap .img-placeholder {
  height: 100%;
  width: 100%;
}

.story-img-wrap .story-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.story-content { padding: var(--sp-2) 0; }

.story-title {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  color: var(--clr-burgundy);
  margin-bottom: var(--sp-4);
  line-height: 1.18;
}
.story-title em { font-style: italic; color: var(--clr-leather); }

.story-body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--clr-text-mid);
  line-height: 1.9;
}
.story-body p + p { margin-top: var(--sp-3); }

.story-signature {
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--clr-burgundy);
  margin-top: var(--sp-4);
}

/* Student offers (same grid rhythm as story) */
.students-section {
  position: relative;
  padding: var(--sp-12) 0;
  background-color: var(--clr-cream);
  scroll-margin-top: calc(var(--header-h) + 12px);
  overflow: hidden;
}

.students-inner {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(var(--sp-4), 4vw, var(--sp-10));
  align-items: center;
  min-width: 0;
}

.students-content {
  padding: var(--sp-2) 0;
}

.students-title {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  color: var(--clr-burgundy);
  line-height: 1.18;
  margin: 0 0 var(--sp-2) 0;
}

.students-lead {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--clr-text-mid);
  line-height: 1.85;
  margin: 0;
  max-width: 36em;
}

/* ----------------------------------------------------------
   11. TESTIMONIALS
   ---------------------------------------------------------- */
.testimonials-section {
  padding: var(--sp-12) 0;
  background-color: var(--clr-cream);
  position: relative;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-taupe-dk), transparent);
}

.testimonials-heading {
  text-align: center;
  margin-bottom: var(--sp-8);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--sp-4);
  min-width: 0;
}

.testimonial-card {
  background: var(--clr-cream-lt);
  border: 1px solid var(--clr-cream-dk);
  border-radius: var(--r-md);
  padding: var(--sp-5) var(--sp-4);
  box-shadow: var(--sh-sm);
  direction: rtl;
  text-align: right;
  position: relative;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }

.testimonial-quote {
  position: absolute;
  top: var(--sp-3); right: var(--sp-4);
  font-family: var(--font-display);
  font-size: 4.5rem;
  color: var(--clr-burgundy);
  opacity: .08;
  line-height: 1;
  font-style: italic;
  pointer-events: none;
  user-select: none;
}

.testimonial-stars {
  /* Darker than pure gold for contrast on cream cards */
  color: var(--clr-burgundy);
  font-size: .75rem;
  letter-spacing: 3px;
  margin-bottom: var(--sp-2);
}

.testimonial-text {
  font-family: var(--font-hebrew);
  font-size: 1rem;
  color: var(--clr-text-mid);
  line-height: 1.75;
  margin-bottom: var(--sp-3);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.testimonial-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--clr-taupe);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-hebrew);
  font-size: .9rem;
  color: var(--clr-burgundy);
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-info { display: flex; flex-direction: column; }

.testimonial-name {
  font-family: var(--font-hebrew);
  font-size: .85rem;
  font-weight: 700;
  color: var(--clr-leather);
}

.testimonial-sub {
  font-family: var(--font-body);
  font-size: .7rem;
  color: var(--clr-text-light);
  letter-spacing: .08em;
}

/* ----------------------------------------------------------
   12. CONTACT & FOOTER
   ---------------------------------------------------------- */
.contact-footer {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(155deg,
      var(--clr-walnut) 0%,
      var(--clr-walnut-md) 45%,
      var(--clr-burgundy-dk) 100%);
}

/* Wood grain on footer */
.contact-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(87deg, transparent 0, transparent 20px, rgba(255,255,255,.007) 20px, rgba(255,255,255,.007) 21px),
    repeating-linear-gradient(93deg, transparent 0, transparent 40px, rgba(255,200,150,.006) 40px, rgba(255,200,150,.006) 41px);
  pointer-events: none;
}

/* Gold top line */
.footer-gold-bar {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-gold), transparent);
}

.contact-section {
  padding: var(--sp-12) 0 var(--sp-8);
  position: relative;
  z-index: 2;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--sp-8);
  min-width: 0;
}

.contact-block-eyebrow {
  font-family: var(--font-body);
  font-size: .7rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--sp-3);
  display: block;
}

.contact-text {
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--clr-taupe);
  line-height: 1.9;
}
.contact-text a { color: var(--clr-taupe); transition: color var(--t-base); }
.contact-text a:hover { color: var(--clr-gold); }

.contact-text-he {
  font-family: var(--font-hebrew);
  direction: rtl;
  text-align: right;
  font-size: .95rem;
  color: var(--clr-taupe);
  line-height: 1.9;
  overflow-wrap: anywhere;
  max-width: 100%;
}

/* Hours table */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td {
  padding: 4px 0;
  font-size: .85rem;
  color: var(--clr-taupe);
}
.hours-table td:first-child {
  color: rgba(199,183,163,.6);
  font-size: .78rem;
  letter-spacing: .06em;
  width: 45%;
}
.hours-table td:last-child {
  color: var(--clr-cream-lt);
  text-align: right;
}

/* Instagram */
a.insta-handle {
  font-family: var(--font-body);
  font-size: .8rem;
  color: var(--clr-gold);
  letter-spacing: .08em;
  margin-bottom: var(--sp-1);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  border-radius: var(--r-sm);
  transition: color var(--t-fast), text-decoration var(--t-fast);
}

a.insta-handle:hover {
  color: var(--clr-gold-lt);
  text-decoration: underline;
  text-underline-offset: 3px;
}

a.insta-handle:focus {
  outline: none;
}

a.insta-handle:focus-visible {
  outline: 3px solid var(--clr-gold-lt);
  outline-offset: 3px;
}

.insta-note {
  font-size: .72rem;
  line-height: 1.5;
  color: rgba(199,183,163,.65);
  margin-bottom: var(--sp-2);
  max-width: 22rem;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

@media (max-width: 480px) {
  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.insta-cell__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 1;
}

.insta-cell {
  aspect-ratio: 1;
  background: rgba(245,237,224,.05);
  border: 1px solid rgba(199,183,163,.12);
  border-radius: 4px;
  display: block;
  cursor: pointer;
  transition: border-color var(--t-base), box-shadow var(--t-base), transform var(--t-fast);
  overflow: hidden;
  position: relative;
  text-decoration: none;
}

.insta-cell:hover {
  border-color: rgba(199,183,163,.45);
  box-shadow: 0 4px 14px rgba(0,0,0,.2);
  transform: scale(1.02);
}

.insta-cell:focus {
  outline: none;
}

.insta-cell:focus-visible {
  outline: 3px solid var(--clr-gold-lt);
  outline-offset: 2px;
  z-index: 1;
}

/* Instagram tiles — same minimalist placeholder as menu (no photos yet) */
.insta-cell--ph {
  padding: 0;
  background: rgba(245,237,224,.06);
}

.insta-cell--ph .insta-ph-inner {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  padding: 6px;
  background: linear-gradient(125deg, rgba(232,222,208,.22) 0%, rgba(210,198,180,.14) 100%);
}

.insta-ph-bean {
  color: rgba(199,183,163,.55);
  line-height: 0;
}

.insta-ph-label {
  font-family: var(--font-body);
  font-size: .48rem;
  letter-spacing: .05em;
  color: rgba(199,183,163,.55);
  line-height: 1.3;
  max-width: 12em;
}

html[data-lang="he"] .insta-ph-label {
  letter-spacing: .02em;
}

.insta-cta-wrap {
  margin-top: var(--sp-2);
}

.insta-cta-link {
  font-size: .78rem;
  font-weight: 600;
  color: var(--clr-gold-lt);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.insta-cta-link:hover {
  color: var(--clr-cream-lt);
}

/* Footer bottom bar */
.footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(199,183,163,.1);
  padding: var(--sp-3) 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-2);
}

.footer-copy {
  font-family: var(--font-body);
  font-size: .72rem;
  color: rgba(199,183,163,.4);
  letter-spacing: .08em;
}

.footer-logo-mini {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: .5;
}

.footer-logo-mini svg { width: 32px; height: 32px; }

.footer-logo-mini img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  opacity: 0.7;
}

.footer-logo-mini span {
  font-family: var(--font-display);
  font-size: .8rem;
  font-style: italic;
  color: var(--clr-taupe);
}

/* ----------------------------------------------------------
   13. MODAL
   ---------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20,8,4,.82);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-4);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base) var(--ease);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal-box {
  position: relative;
  width: min(480px, 92vw);
  aspect-ratio: 1;
  background: var(--clr-cream-lt);
  border-radius: 50%;
  border: 2px solid var(--clr-gold);
  box-shadow:
    0 0 0 1px var(--clr-gold-dk),
    0 0 0 8px rgba(199,183,163,.08),
    var(--sh-xl);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(.75);
  transition: transform var(--t-slow) var(--ease-spring);
}
.modal-overlay.open .modal-box { transform: scale(1); }

.modal-close-btn {
  position: absolute;
  top: 14%; right: 14%;
  width: 44px; height: 44px;
  background: var(--clr-burgundy);
  color: var(--clr-cream-lt);
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
  transition: background-color var(--t-fast), transform var(--t-fast);
  border: none;
}
.modal-close-btn:hover { background: var(--clr-burgundy-lt); transform: scale(1.1); }

.modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18%;
  text-align: center;
  direction: rtl;
  gap: var(--sp-1);
  width: 100%;
  height: 100%;
}

.modal-dish-icon {
  color: var(--clr-burgundy);
  opacity: .18;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  z-index: 0;
}
.modal-dish-icon svg { width: 180px; height: 180px; }

.modal-inner-content { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: var(--sp-1); }

.modal-title-he {
  font-family: var(--font-hebrew);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--clr-burgundy);
  line-height: 1.2;
}

.modal-desc-he {
  font-family: var(--font-hebrew);
  font-size: .85rem;
  color: var(--clr-text-mid);
  line-height: 1.7;
  max-width: 200px;
  margin: 4px 0;
}

.modal-price-he {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--clr-leather);
}

.modal-cta {
  background: var(--clr-leather);
  color: var(--clr-cream-lt);
  border: 1px solid var(--clr-leather-dk);
  border-radius: var(--r-sm);
  padding: .55rem 1.4rem;
  font-family: var(--font-hebrew);
  font-size: .85rem;
  cursor: pointer;
  transition: background-color var(--t-fast), transform var(--t-fast);
  margin-top: 4px;
}
.modal-cta:hover { background: var(--clr-leather-dk); transform: scale(1.04); }

/* ----------------------------------------------------------
   14. MOBILE STICKY CTA
   ---------------------------------------------------------- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 920;
  background: var(--clr-leather);
  color: var(--clr-cream-lt);
  text-align: center;
  min-height: 48px;
  padding: .85rem var(--sp-4);
  font-family: var(--font-display);
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  box-shadow: 0 -4px 20px rgba(56,20,12,.22);
  text-decoration: none;
  transition: background-color var(--t-base);
  pointer-events: auto;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(255,255,255,.12);
}
.sticky-cta:hover { background: var(--clr-leather-dk); }

html[data-lang="he"] .sticky-cta {
  text-transform: none;
  letter-spacing: .06em;
}

/* WhatsApp — fixed bottom-right (a11y FAB is bottom-left) */
.wa-float {
  position: fixed;
  z-index: 925;
  right: max(12px, env(safe-area-inset-right, 0px));
  left: auto;
  bottom: max(12px, env(safe-area-inset-bottom, 0px));
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.22);
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.15);
  transition: transform var(--t-fast) var(--ease), background-color var(--t-fast) var(--ease),
    box-shadow var(--t-base) var(--ease);
}
.wa-float:hover {
  transform: scale(1.05);
  background: #20bd5a;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.26);
}
.wa-float:focus-visible {
  outline: 3px solid var(--clr-burgundy);
  outline-offset: 3px;
}
.wa-float__icon {
  display: flex;
  line-height: 0;
}

/* ----------------------------------------------------------
   15. RESPONSIVE
   ---------------------------------------------------------- */
@media (max-width: 1100px) {
  .contact-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: var(--sp-4); }
  .story-inner,
  .students-inner { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: var(--sp-6); }
  .menu-section { padding: var(--sp-10) 0; }
  .menu-header { margin-bottom: var(--sp-6); }
}

/* Inline nav still visible: avoid horizontal crowding on laptop widths */
@media (max-width: 1024px) and (min-width: 769px) {
  .nav-link {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    padding-inline: 0.28rem;
  }
}

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .features-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-item + .feature-item::before { display: none; }
  .feature-item:nth-child(odd) { border-inline-end: 1px solid var(--clr-cream-dk); }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
    padding: var(--sp-8) var(--container-pad);
    text-align: center;
  }
  .hero { min-height: auto; padding-bottom: var(--sp-8); }
  .hero::before { display: none; }
  .hero-brand { order: -1; }
  .hero-content { align-items: center; }
  .hero-logo-ring { width: min(260px, 60vw); height: min(260px, 60vw); }
  .hero-title-he { font-size: clamp(2rem, 5vw, 3rem); }

  .section-heading { font-size: clamp(1.6rem, 4vw, 2.4rem); }
}

@media (max-width: 768px) {
  /* Hamburger nav */
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    inset-inline-end: -100%;
    width: 76vw; max-width: 300px;
    height: 100dvh;
    background: var(--clr-cream-lt);
    flex-direction: column;
    justify-content: center;
    gap: var(--sp-5);
    padding: var(--sp-8) var(--sp-5);
    box-shadow: var(--sh-xl);
    transition: inset-inline-end var(--t-base) var(--ease);
    z-index: 1050;
  }
  .nav-links.open { inset-inline-end: 0; }
  .nav-backdrop { display: block; }
  .nav-link { font-size: .95rem; }

  .menu-section { padding: var(--sp-8) 0; }
  .menu-header { margin-bottom: var(--sp-4); }

  .menu-accordion__summary {
    font-size: clamp(1rem, 4vw, 1.12rem);
    padding: var(--sp-2) clamp(var(--sp-2), 4vw, var(--sp-4));
  }

  .menu-accordion__name {
    padding-inline-end: 2px;
  }

  .gallery-strip {
    padding: var(--sp-3) 0;
  }

  .faq-section {
    padding: var(--sp-8) 0;
  }

  .faq-q {
    font-size: clamp(0.92rem, 3.5vw, 1rem);
    padding: var(--sp-2) var(--sp-2);
  }

  .hero-lever {
    justify-content: center;
    text-align: center;
  }

  .hero-lever__label {
    max-width: 100%;
  }

  .hero-logo-ring { width: min(220px, 52vw); height: min(220px, 52vw); }
  .hero-title-he { font-size: clamp(1.75rem, 5.5vw, 2.4rem); }

  /* Story */
  .story-section { padding: var(--sp-10) 0; }
  .story-inner { grid-template-columns: 1fr; }
  .story-img-wrap { aspect-ratio: 16/9; max-height: 280px; }
  .story-content { padding: 0; }
  .story-signature { font-size: 1.4rem; }

  .students-section { padding: var(--sp-10) 0; }
  .students-inner { grid-template-columns: 1fr; }
  .students-image-wrap { aspect-ratio: 16/9; max-height: 280px; }

  /* Testimonials */
  .testimonials-section { padding: var(--sp-10) 0; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: var(--sp-4) var(--sp-3); }

  /* Contact */
  .contact-section { padding: var(--sp-10) 0 var(--sp-6); }
  .contact-grid { grid-template-columns: 1fr; gap: var(--sp-6); }

  /* Footer */
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: var(--sp-1); }

  /* Modal */
  .modal-box {
    aspect-ratio: unset;
    border-radius: var(--r-lg);
    width: min(380px, 92vw);
    height: auto;
    min-height: 340px;
  }
  .modal-content { aspect-ratio: unset; padding: var(--sp-8) var(--sp-4); }
  .modal-close-btn { top: var(--sp-2); right: var(--sp-2); }

  /* Sticky CTA */
  .sticky-cta { display: block; }
  body { padding-bottom: calc(52px + env(safe-area-inset-bottom, 0px)); }

  .wa-float {
    bottom: calc(60px + env(safe-area-inset-bottom, 0px));
  }
}

/* Narrow phones */
@media (max-width: 520px) {
  .container {
    padding-inline: clamp(0.85rem, 4.5vw, 1.25rem);
  }

  .hero-desc { font-size: 0.92rem; }
  .hero-lever__label { font-size: 0.75rem; }

  .menu-accordion__summary {
    font-size: 1rem;
    padding: var(--sp-2) var(--sp-2);
  }

  .menu-accordion__row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .menu-accordion__price {
    align-self: flex-end;
    text-align: end;
  }

  html[dir="ltr"] .menu-accordion__price {
    align-self: flex-start;
    text-align: start;
  }

  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--sp-1);
  }

  .feature-item {
    padding: var(--sp-2) var(--sp-1);
  }

  .feature-icon {
    width: 56px;
    height: 56px;
  }

  .feature-label {
    font-size: 0.78rem;
  }

  .testimonials-heading { margin-bottom: var(--sp-4); }
  .faq-header { margin-bottom: var(--sp-4); }

  .gallery-strip__img {
    width: clamp(140px, 42vw, 200px);
  }

  .btn { padding: .75rem 1.5rem; font-size: .78rem; }
}

/* ----------------------------------------------------------
   16. KEYFRAMES
   ---------------------------------------------------------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ----------------------------------------------------------
   17. SCROLLBAR & ACCESSIBILITY
   ---------------------------------------------------------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--clr-cream-dk); }
::-webkit-scrollbar-thumb { background: var(--clr-burgundy); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--clr-burgundy-lt); }

:focus-visible {
  outline: 3px solid var(--clr-burgundy);
  outline-offset: 3px;
}

:focus:not(:focus-visible) {
  outline: none;
}

button:focus-visible,
.lang-switch__btn:focus-visible {
  outline-color: var(--clr-gold-dk);
  z-index: 1;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  .feature-icon-img {
    animation: none !important;
    transform: none !important;
  }
}

/* ----------------------------------------------------------
   16. USER ACCESSIBILITY TOOLBAR (FAB — bottom-left)
   ---------------------------------------------------------- */
.a11y-toolbar {
  position: fixed;
  left: max(12px, env(safe-area-inset-left, 0px));
  bottom: max(12px, env(safe-area-inset-bottom, 0px));
  right: auto;
  top: auto;
  z-index: 930;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: 10px;
  max-width: min(calc(100vw - 24px), 400px);
  pointer-events: none;
}

.a11y-toolbar > * {
  pointer-events: auto;
  position: relative;
  z-index: 1;
}

.a11y-toolbar__panel {
  width: min(calc(100vw - 24px), 380px);
  max-height: min(52vh, 360px);
  overflow-y: auto;
  overflow-x: hidden;
  background: var(--clr-walnut);
  color: var(--clr-cream-lt);
  border: 2px solid var(--clr-gold-dk);
  border-radius: var(--r-lg);
  box-shadow: 0 12px 40px rgba(0,0,0,.45);
  -webkit-overflow-scrolling: touch;
}

.a11y-toolbar__inner {
  padding: var(--sp-3) var(--sp-3) var(--sp-4);
}

.a11y-toolbar__intro {
  font-size: .9rem;
  line-height: 1.5;
  margin-bottom: var(--sp-3);
  color: var(--clr-taupe);
}

.a11y-toolbar__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-2);
}

.a11y-toolbar__row--actions {
  margin-bottom: 0;
  margin-top: var(--sp-2);
  padding-top: var(--sp-2);
  border-top: 1px solid rgba(199,183,163,.25);
}

.a11y-toolbar__label {
  flex: 1 1 100%;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--clr-gold-lt);
}

html[data-lang="he"] .a11y-toolbar__label {
  text-transform: none;
  letter-spacing: .02em;
}

.a11y-toolbar__btns {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-1);
  align-items: center;
}

.a11y-toolbar__btn {
  min-width: 44px;
  min-height: 44px;
  padding: 0 .75rem;
  border-radius: var(--r-md);
  border: 2px solid rgba(232,216,196,.35);
  background: rgba(245,237,224,.08);
  color: var(--clr-cream-lt);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background var(--t-fast), border-color var(--t-fast);
}

.a11y-toolbar__btn--text {
  font-size: .875rem;
  font-weight: 600;
  padding-inline: var(--sp-2);
}

.a11y-toolbar__btn:hover {
  background: rgba(245,237,224,.14);
  border-color: var(--clr-gold);
}

.a11y-toolbar__btn:focus {
  outline: none;
}

.a11y-toolbar__btn:focus-visible {
  outline: 3px solid var(--clr-gold-lt);
  outline-offset: 2px;
}

.a11y-toolbar__btn[aria-pressed="true"] {
  background: var(--clr-burgundy-lt);
  border-color: var(--clr-gold-lt);
}

.a11y-toolbar__toggle-row {
  width: 100%;
  min-height: 48px;
  padding: .65rem var(--sp-3);
  text-align: start;
  border-radius: var(--r-md);
  border: 2px solid rgba(232,216,196,.3);
  background: rgba(0,0,0,.2);
  color: var(--clr-cream-lt);
  font: inherit;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--t-fast), border-color var(--t-fast);
}

.a11y-toolbar__toggle-row:hover {
  border-color: var(--clr-gold);
  background: rgba(0,0,0,.28);
}

.a11y-toolbar__toggle-row:focus {
  outline: none;
}

.a11y-toolbar__toggle-row:focus-visible {
  outline: 3px solid var(--clr-gold-lt);
  outline-offset: 2px;
}

.a11y-toolbar__toggle-row[aria-pressed="true"] {
  background: var(--clr-burgundy);
  border-color: var(--clr-gold-lt);
}

.a11y-toolbar__reset {
  width: 100%;
  min-height: 48px;
  padding: .65rem var(--sp-3);
  border-radius: var(--r-md);
  border: 2px dashed rgba(232,216,196,.4);
  background: transparent;
  color: var(--clr-taupe);
  font: inherit;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
}

.a11y-toolbar__reset:hover {
  color: var(--clr-cream-lt);
  border-color: var(--clr-taupe);
}

.a11y-toolbar__reset:focus-visible {
  outline: 3px solid var(--clr-gold-lt);
  outline-offset: 2px;
}

.a11y-toolbar__fab {
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--clr-gold);
  border-radius: 50%;
  background: linear-gradient(145deg, var(--clr-walnut-md) 0%, var(--clr-walnut) 100%);
  color: var(--clr-cream-lt);
  box-shadow: var(--sh-lg);
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(232,216,196,.25);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base), border-color var(--t-fast);
}

.a11y-toolbar__fab:hover {
  transform: scale(1.05);
  box-shadow: var(--sh-xl);
  border-color: var(--clr-gold-lt);
}

.a11y-toolbar__fab:focus {
  outline: none;
}

.a11y-toolbar__fab:focus-visible {
  outline: 3px solid var(--clr-gold-lt);
  outline-offset: 3px;
}

.a11y-toolbar__fab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  line-height: 0;
}

/* PNG (transparent BG): recolor silhouette to brand gold on walnut */
.a11y-toolbar__fab-img {
  width: 34px;
  height: 34px;
  max-width: 82%;
  max-height: 82%;
  object-fit: contain;
  object-position: center;
  display: block;
  pointer-events: none;
  filter:
    brightness(0) saturate(100%)
    invert(91%) sepia(22%) saturate(500%) hue-rotate(350deg)
    brightness(1.08) contrast(0.92)
    drop-shadow(0 1px 3px rgba(0, 0, 0, 0.4));
}

.a11y-toolbar.is-open .a11y-toolbar__fab {
  border-color: var(--clr-gold-lt);
  box-shadow: 0 0 0 2px rgba(232,216,196,.35), var(--sh-lg);
}

/* Mobile: FAB sits above full-width sticky menu CTA */
@media (max-width: 768px) {
  .a11y-toolbar {
    bottom: calc(52px + 10px + env(safe-area-inset-bottom, 0px));
  }
}

/* Text scale — base stays ≥16px; steps increase readability */
html[data-a11y-font="1"] { font-size: 17.6px; }
html[data-a11y-font="2"] { font-size: 20px; }
html[data-a11y-font="3"] { font-size: 22.5px; }

html[data-a11y-line="wide"] body {
  line-height: 1.85;
}

html[data-a11y-line="wide"] .modal-desc-he,
html[data-a11y-line="wide"] .story-section p,
html[data-a11y-line="wide"] .testimonial-card blockquote {
  line-height: 1.9;
}

/* User-chosen reduced motion (matches prefers-reduced-motion behavior) */
html[data-a11y-motion="reduce"] *,
html[data-a11y-motion="reduce"] *::before,
html[data-a11y-motion="reduce"] *::after {
  animation-duration: .01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: .01ms !important;
}

html[data-a11y-motion="reduce"] {
  scroll-behavior: auto;
}

html[data-a11y-motion="reduce"] .feature-icon-img {
  animation: none !important;
  transform: none !important;
}

/* High contrast — stronger foreground/background separation */
html[data-a11y-contrast="high"] {
  --clr-text-dark: #0a0a0a;
  --clr-text-mid: #141414;
  --clr-text-light: #222;
}

html[data-a11y-contrast="high"] body {
  background: #fff !important;
  color: #000 !important;
}

html[data-a11y-contrast="high"] .site-header {
  background: #fff !important;
  border-bottom: 3px solid #000;
  box-shadow: none;
}

html[data-a11y-contrast="high"] .nav-link {
  color: #000 !important;
}

html[data-a11y-contrast="high"] .nav-link.active {
  color: #000 !important;
  text-decoration: underline;
  text-underline-offset: 4px;
}

html[data-a11y-contrast="high"] .hero {
  background-color: #fff !important;
}

html[data-a11y-contrast="high"] .hero .hero-d1,
html[data-a11y-contrast="high"] .hero .hero-d2,
html[data-a11y-contrast="high"] .section-eyebrow,
html[data-a11y-contrast="high"] .section-heading {
  color: #000 !important;
}

html[data-a11y-contrast="high"] .features-bar {
  background: #f0f0f0 !important;
  border-color: #000 !important;
}

html[data-a11y-contrast="high"] .menu-section {
  background: #000 !important;
  color: #fff !important;
}

html[data-a11y-contrast="high"] .menu-section .section-eyebrow,
html[data-a11y-contrast="high"] .menu-section .section-heading,
html[data-a11y-contrast="high"] .menu-card-name-he,
html[data-a11y-contrast="high"] .menu-card-name-en,
html[data-a11y-contrast="high"] .menu-card-price,
html[data-a11y-contrast="high"] .menu-card-tag {
  color: #fff !important;
}

html[data-a11y-contrast="high"] .menu-card {
  border-color: #fff !important;
  background: #1a1a1a !important;
}

html[data-a11y-contrast="high"] .menu-section .menu-card-img.menu-card-ph {
  background: #eaeaea !important;
  border-bottom: 2px solid #000 !important;
}

html[data-a11y-contrast="high"] .menu-section .menu-card-img.menu-card-ph .menu-ph-bean {
  color: #000 !important;
  opacity: 1 !important;
}

html[data-a11y-contrast="high"] .menu-section .menu-card-img.menu-card-ph .placeholder-label {
  color: #000 !important;
}

html[data-a11y-contrast="high"] .insta-cell--ph .insta-ph-inner {
  background: #0d0d0d !important;
  border: 1px solid #fff !important;
}

html[data-a11y-contrast="high"] .insta-ph-bean {
  color: #ff0 !important;
}

html[data-a11y-contrast="high"] .insta-ph-label {
  color: #fff !important;
}

html[data-a11y-contrast="high"] .story-section,
html[data-a11y-contrast="high"] .testimonials-section {
  background: #fff !important;
  color: #000 !important;
}

html[data-a11y-contrast="high"] .testimonial-card {
  border: 2px solid #000 !important;
  background: #fafafa !important;
}

html[data-a11y-contrast="high"] .contact-section {
  background: #000 !important;
  color: #fff !important;
}

html[data-a11y-contrast="high"] .contact-section .section-heading,
html[data-a11y-contrast="high"] .contact-section a {
  color: #fff !important;
}

html[data-a11y-contrast="high"] .site-footer {
  background: #1a1a1a !important;
  color: #fff !important;
}

html[data-a11y-contrast="high"] .footer-bottom {
  border-top-color: #fff !important;
}

html[data-a11y-contrast="high"] .sticky-cta {
  background: #000 !important;
  color: #ff0 !important;
  border-top: 3px solid #ff0;
}

html[data-a11y-contrast="high"] .wa-float {
  background: #000 !important;
  color: #0f0 !important;
  border: 3px solid #0f0;
  box-shadow: none;
}

html[data-a11y-contrast="high"] .modal-overlay {
  background: rgba(0,0,0,.92) !important;
}

html[data-a11y-contrast="high"] .modal-box {
  background: #fff !important;
  color: #000 !important;
  border: 3px solid #000 !important;
}

html[data-a11y-contrast="high"] .modal-title-he,
html[data-a11y-contrast="high"] .modal-desc-he,
html[data-a11y-contrast="high"] .modal-price-he {
  color: #000 !important;
}

html[data-a11y-contrast="high"] .a11y-toolbar__panel {
  background: #000 !important;
  border-top-color: #ff0 !important;
}

html[data-a11y-contrast="high"] .a11y-toolbar__fab {
  background: #000 !important;
  color: #ff0 !important;
  border-color: #ff0 !important;
}

html[data-a11y-contrast="high"] .a11y-toolbar__fab-img {
  filter: brightness(0) invert(1) drop-shadow(0 0 1px #000);
}

/* ----------------------------------------------------------
   BEAN RAIN + LEVER
   ---------------------------------------------------------- */
.bean-rain-canvas {
  position: fixed;
  inset: 0;
  z-index: 950;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.92;
}

.hero-lever {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-2);
  direction: rtl;
}

.hero-lever__label {
  font-size: 0.82rem;
  color: var(--clr-text-mid);
  max-width: 12rem;
  line-height: 1.4;
}

.lever-toggle {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.lever-toggle__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.lever-toggle__track {
  position: relative;
  width: 56px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(180deg, #d4c4b0 0%, #b8a08c 100%);
  box-shadow: inset 0 2px 4px rgba(0,0,0,.2), 0 2px 0 rgba(255,255,255,.25);
  border: 1px solid rgba(86,28,36,.2);
  transition: background var(--t-base) var(--ease);
}

.lever-toggle__knob {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(145deg, #f5ede0, #c7b7a3);
  box-shadow: 0 2px 6px rgba(0,0,0,.2);
  transition: transform var(--t-slow) var(--ease-spring);
}

.lever-toggle__slot {
  position: absolute;
  top: 50%;
  right: 10px;
  left: 10px;
  height: 3px;
  border-radius: 2px;
  background: rgba(86,28,36,.2);
  transform: translateY(-50%);
  pointer-events: none;
}

html[dir="ltr"] .lever-toggle__knob,
.lever-toggle__input:focus-visible + .lever-toggle__track .lever-toggle__knob {
  outline: 2px solid var(--clr-burgundy);
  outline-offset: 2px;
}

.lever-toggle__input:checked + .lever-toggle__track {
  background: linear-gradient(180deg, #6d2932 0%, #561c24 100%);
}

.lever-toggle__input:checked + .lever-toggle__track .lever-toggle__knob {
  transform: translateX(-24px);
}

html[dir="ltr"] .lever-toggle__input:checked + .lever-toggle__track .lever-toggle__knob {
  transform: translateX(24px);
}

@media (prefers-reduced-motion: reduce), html[data-a11y-motion="reduce"] {
  .lever-toggle__track,
  .lever-toggle__knob {
    transition: none;
  }
}

/* ----------------------------------------------------------
   MENU ACCORDION (replaces card grid)
   ---------------------------------------------------------- */
.menu-accordion {
  max-width: min(800px, 100%);
  width: 100%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  padding-inline: 0;
  box-sizing: border-box;
}

.menu-accordion__block {
  background: rgba(245,237,224,.1);
  border: 1px solid rgba(199,183,163,.2);
  border-radius: var(--r-md);
  overflow: hidden;
}

.menu-accordion__summary {
  list-style: none;
  cursor: pointer;
  padding: var(--sp-3) var(--sp-4);
  font-family: var(--font-hebrew);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--clr-cream-lt);
  position: relative;
  direction: rtl;
  text-align: right;
}

.menu-accordion__summary::-webkit-details-marker { display: none; }

.menu-accordion__summary::after {
  content: '◂';
  position: absolute;
  left: var(--sp-3);
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.75rem;
  opacity: 0.7;
  transition: transform var(--t-base) var(--ease);
}

.menu-accordion__block[open] .menu-accordion__summary::after {
  transform: translateY(-50%) rotate(-90deg);
}

html[dir="ltr"] .menu-accordion__summary {
  text-align: left;
  direction: ltr;
}

html[dir="ltr"] .menu-accordion__summary::after {
  right: var(--sp-3);
  left: auto;
  content: '▸';
}

.menu-accordion__list {
  padding: 0 clamp(var(--sp-2), 3vw, var(--sp-4)) var(--sp-3);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}

.menu-accordion__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-2);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(199,183,163,.1);
  direction: rtl;
  min-width: 0;
}

.menu-accordion__row:last-child {
  border-bottom: none;
}

.menu-accordion__name {
  font-size: clamp(0.78rem, 2.1vw, 0.88rem);
  color: rgba(243,235,225,.95);
  line-height: 1.45;
  flex: 1 1 auto;
  min-width: 0;
  text-align: right;
  overflow-wrap: anywhere;
  word-wrap: break-word;
  hyphens: manual;
}

.menu-accordion__price {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--clr-gold);
  white-space: nowrap;
  flex: 0 0 auto;
  align-self: flex-start;
}

.menu-accordion__price--dual {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  direction: ltr;
  gap: 0.28em;
}

.menu-accordion__price--dual .menu-price__sep {
  display: inline-block;
  font-weight: 500;
  opacity: 0.9;
  padding: 0 0.02em;
}

.menu-accordion__price--dual .menu-price__cur {
  font-weight: 600;
}

html[dir="ltr"] .menu-accordion__row {
  direction: ltr;
}

html[dir="ltr"] .menu-accordion__name {
  text-align: left;
}

/* ----------------------------------------------------------
   GALLERY STRIP
   ---------------------------------------------------------- */
.gallery-strip {
  /* Same gap between images and between sets so the loop has no “stuck” seam */
  --gallery-img-gap: clamp(0.35rem, 1.2vw, var(--sp-2));
  background: var(--clr-cream-lt);
  padding: var(--sp-4) 0;
  overflow: hidden;
  border-block: 1px solid rgba(199,183,163,.2);
  /* Force LTR so overflow:hidden clips from the left — body is dir=rtl which
     would otherwise anchor the track to the right and hide all images */
  direction: ltr;
}

.gallery-strip__track {
  /* --gallery-shift-pct set in script: one set + inter-set gap as % of track (≈25% when gap matches) */
  --gallery-shift-pct: 25%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: var(--gallery-img-gap);
  width: max-content;
  direction: ltr;
  will-change: transform;
  animation: gallery-marquee 40s linear infinite;
}

@keyframes gallery-marquee {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(calc(0% - var(--gallery-shift-pct, 25%)), 0, 0); }
}

@media (prefers-reduced-motion: reduce), html[data-a11y-motion="reduce"] {
  .gallery-strip__track {
    animation: none;
  }
  .gallery-strip {
    overflow-x: auto;
  }
}

.gallery-strip__set,
.gallery-strip__row {
  display: flex;
  gap: var(--gallery-img-gap);
  flex-shrink: 0;
}

.gallery-strip__img {
  width: clamp(160px, 32vw, 280px);
  height: auto;
  aspect-ratio: 16 / 10;
  max-height: 200px;
  object-fit: cover;
  border-radius: var(--r-md);
  box-shadow: var(--sh-sm);
  flex-shrink: 0;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ----------------------------------------------------------
   FAQ
   ---------------------------------------------------------- */
.faq-section {
  background: var(--clr-cream);
  padding: var(--sp-12) 0;
  scroll-margin-top: calc(var(--header-h) + 12px);
}

.faq-header {
  text-align: center;
  margin-bottom: var(--sp-6);
}

.faq-list {
  max-width: min(720px, 100%);
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  min-width: 0;
  padding-inline: 0;
  box-sizing: border-box;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(199,183,163,.4);
  border-radius: var(--r-md);
  padding: 0;
  box-shadow: var(--sh-sm);
}

.faq-q {
  list-style: none;
  padding: var(--sp-2) var(--sp-3);
  font-weight: 600;
  color: var(--clr-burgundy);
  cursor: pointer;
  direction: rtl;
  text-align: right;
  position: relative;
}

.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '◂';
  position: absolute;
  left: var(--sp-2);
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.5;
  font-size: 0.75rem;
}
.faq-item[open] .faq-q::after {
  transform: translateY(-50%) rotate(-90deg);
}

.faq-a {
  padding: 0 var(--sp-3) var(--sp-2);
  font-size: clamp(0.86rem, 2.2vw, 0.92rem);
  line-height: 1.6;
  color: var(--clr-text-mid);
  border-top: 1px solid rgba(199,183,163,.2);
  margin: 0;
  padding-top: var(--sp-2);
  direction: rtl;
  overflow-wrap: anywhere;
  max-width: 100%;
}

html[dir="ltr"] .faq-a,
html[dir="ltr"] .faq-q {
  direction: ltr;
  text-align: left;
}

html[dir="ltr"] .faq-q::after {
  right: var(--sp-2);
  left: auto;
  content: '▸';
}
