/* ===========================================================
   גבי אוכל עממי - קונספט "שולחן שישי"
   =========================================================== */

/* פונטים מאוחסנים מקומית (Assistant + Rubik, variable) - ללא תלות צד שלישי */
@font-face { font-family: 'Assistant'; font-style: normal; font-weight: 400 700; font-display: optional; src: url('assets/fonts/assistant-hebrew.woff2') format('woff2'); unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; }
@font-face { font-family: 'Assistant'; font-style: normal; font-weight: 400 700; font-display: optional; src: url('assets/fonts/assistant-latin.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'Rubik'; font-style: normal; font-weight: 500 900; font-display: optional; src: url('assets/fonts/rubik-hebrew.woff2') format('woff2'); unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; }
@font-face { font-family: 'Rubik'; font-style: normal; font-weight: 500 900; font-display: optional; src: url('assets/fonts/rubik-latin.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }

:root {
  /* צבעי מותג */
  --brown-900: #2E1608;
  --brown-800: #45230F;
  --brown-700: #5A3018;
  --coffee:    #6B4226;
  --cream-50:  #FBF4E6;
  --cream-100: #F6E8CC;
  --cream-200: #EFDDBC;
  --paper:     #FFFDF8;
  --wheat:     #F0CE7E;
  --green-600: #5E9C46;
  --green-700: #3C6B2C;
  --tomato:    #C5391F;
  --wa:        #0F833C;
  --wa-dark:   #0B6E31;

  --ink:       #2E1608;
  --ink-soft:  #6B4226;
  --line:      rgba(70,35,15,.12);

  /* מרווחים */
  --s1: 4px;  --s2: 8px;  --s3: 12px; --s4: 16px;
  --s5: 24px; --s6: 32px; --s7: 48px; --s8: 64px;
  --s9: 96px; --s10: 128px;

  --maxw: 1200px;
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 14px rgba(70,35,15,.08);
  --shadow:    0 14px 38px rgba(70,35,15,.12);
  --shadow-lg: 0 26px 60px rgba(46,22,8,.22);

  --font-head: 'Rubik', 'Segoe UI', system-ui, Arial, sans-serif;
  --font-body: 'Assistant', 'Segoe UI', system-ui, Arial, sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- בסיס ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

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

body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream-50);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--brown-900);
  font-weight: 800;
}

h2 { font-size: clamp(1.9rem, 1.2rem + 2.6vw, 2.5rem); }
h3 { font-size: clamp(1.35rem, 1.1rem + 1vw, 1.75rem); }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--s5); }

.eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  color: var(--green-700);
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  margin-bottom: var(--s3);
}
.eyebrow::before { content: ""; width: 26px; height: 3px; border-radius: 2px; background: var(--green-600); }

.section { padding-block: clamp(56px, 7vw, 96px); position: relative; }
.section-head { max-width: 720px; margin-bottom: var(--s7); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--ink-soft); font-size: 1.1rem; margin-top: var(--s3); }

.bg-cream { background: var(--cream-100); }
.bg-paper { background: var(--paper); }

/* דחיית רינדור של סקשנים מתחת לקיפול - מפחית עבודת layout/decode ראשונית.
   contain-intrinsic-size: auto זוכר את הגובה האמיתי ומונע קפיצות (CLS). */
/* רק סקשנים בהירים (טקסט כהה על רקע בהיר) - בסקשנים כהים content-visibility
   גרם ל-axe לקרוא רקע שגוי ולדווח על ניגודיות כביכול נמוכה. */
#process, #story, #founders, #faq {
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

/* ---------- כפתורים ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s2);
  padding: 14px 26px; border-radius: 999px;
  font-family: var(--font-head); font-weight: 700; font-size: 1.05rem;
  min-height: 52px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease);
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn svg { width: 22px; height: 22px; flex: none; }

.btn-wa { background: var(--wa); color: #fff; box-shadow: 0 10px 24px rgba(37,211,102,.35); }
.btn-wa:hover { background: var(--wa-dark); transform: translateY(-3px); box-shadow: 0 16px 30px rgba(37,211,102,.42); }

.btn-primary { background: var(--brown-800); color: var(--cream-50); }
.btn-primary:hover { background: var(--brown-900); transform: translateY(-3px); box-shadow: var(--shadow); }

.btn-store { background: var(--tomato); color: #fff; box-shadow: 0 10px 24px rgba(197,57,31,.30); }
.btn-store:hover { background: #A82D16; transform: translateY(-3px); box-shadow: 0 16px 30px rgba(197,57,31,.42); }

.btn-ghost { background: transparent; color: var(--brown-900); box-shadow: inset 0 0 0 2px var(--line); }
.btn-ghost:hover { box-shadow: inset 0 0 0 2px var(--brown-800); transform: translateY(-2px); }

.btn-lg { padding: 18px 34px; font-size: 1.15rem; min-height: 60px; }

/* ---------- הדר ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251,244,230,.92);
  border-bottom: 1px solid transparent;
  transition: padding .3s var(--ease), background-color .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.header.scrolled { padding-block: 0; background: rgba(251,244,230,.96); border-color: var(--line); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--s4); padding-block: var(--s3); transition: padding .3s var(--ease); }
.header.scrolled .header-inner { padding-block: 8px; }
.brand { display: flex; align-items: center; gap: var(--s3); }
.brand img { width: 56px; height: 56px; object-fit: contain; transition: width .3s var(--ease), height .3s var(--ease); }
.header.scrolled .brand img { width: 46px; height: 46px; }
.brand-name { font-family: var(--font-head); font-weight: 800; font-size: 1.25rem; color: var(--brown-900); line-height: 1; }
.brand-name span { display: block; font-size: .72rem; font-weight: 600; color: var(--green-700); letter-spacing: 0; margin-top: 3px; }

.nav { display: flex; align-items: center; gap: var(--s5); }
.nav-links { display: flex; align-items: center; gap: var(--s5); }
.nav-links a { font-family: var(--font-head); font-weight: 500; font-size: 1rem; color: var(--brown-800); position: relative; padding: 6px 0; }
.nav-links a::after { content: ""; position: absolute; bottom: 0; right: 0; width: 0; height: 2px; background: var(--green-600); transition: width .25s var(--ease); }
.nav-links a:hover::after, .nav-links a:focus-visible::after { width: 100%; }
.header .btn { padding: 10px 18px; min-height: 44px; font-size: .98rem; }

.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; align-items: center; justify-content: center; color: var(--brown-900); }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content: ""; display: block; width: 24px; height: 2.5px; background: currentColor; border-radius: 2px; position: relative; transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span::after { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero { position: relative; isolation: isolate; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(46,22,8,.30) 0%, rgba(46,22,8,.10) 35%, rgba(46,22,8,.55) 100%),
    linear-gradient(270deg, rgba(46,22,8,.78) 0%, rgba(46,22,8,.35) 45%, rgba(46,22,8,.05) 78%);
}
.hero-inner { min-height: min(88vh, 760px); display: flex; align-items: center; padding-block: clamp(48px, 9vh, 110px); }
.hero-card { max-width: 620px; color: var(--cream-50); }
.hero .eyebrow { color: var(--wheat); }
.hero .eyebrow::before { background: var(--wheat); }
.hero h1 {
  color: #fff;
  font-size: clamp(2.25rem, 1.4rem + 4.4vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  text-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.hero h1 .accent { color: var(--wheat); }
.hero-lead { font-size: clamp(1.05rem, 1rem + .6vw, 1.35rem); margin-top: var(--s4); color: rgba(255,255,255,.94); max-width: 33ch; text-shadow: 0 1px 10px rgba(0,0,0,.3); }
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--s3); margin-top: var(--s6); }
.hero-chips { display: flex; flex-wrap: wrap; gap: var(--s4) var(--s5); margin-top: var(--s6); }
.hero-chips li { display: flex; align-items: center; gap: var(--s2); font-weight: 600; font-size: .98rem; color: #fff; }
.hero-chips svg { width: 22px; height: 22px; color: var(--wheat); flex: none; }

.scroll-cue { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.8); display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: .8rem; z-index: 1; }
.scroll-cue svg { width: 20px; height: 20px; animation: bob 1.8s var(--ease) 4; }
@keyframes bob { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(6px);} }

/* ---------- רצועת אמון ---------- */
.trust { background: var(--brown-800); color: var(--cream-50); }
.trust .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s5); padding-block: var(--s7); }
.trust-item { display: flex; gap: var(--s3); align-items: flex-start; }
.trust-item .ic { flex: none; width: 50px; height: 50px; border-radius: 14px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: var(--wheat); }
.trust-item .ic svg { width: 28px; height: 28px; }
.trust-item h3 { color: #fff; font-size: 1.12rem; margin-bottom: 2px; }
.trust-item p { color: rgba(255,255,255,.78); font-size: .95rem; line-height: 1.45; }

/* ---------- תפריט / מנות ---------- */
.menu-group { margin-bottom: var(--s8); }
.menu-group:last-child { margin-bottom: 0; }
.menu-group-head { display: flex; align-items: baseline; gap: var(--s4); margin-bottom: var(--s5); flex-wrap: wrap; }
.menu-group-head h3 { color: var(--brown-900); }
.menu-group-head .tag { font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--green-700); background: rgba(94,156,70,.12); padding: 4px 12px; border-radius: 999px; }
.menu-group-head .rule { flex: 1; height: 2px; min-width: 40px; background: repeating-linear-gradient(90deg, var(--line) 0 6px, transparent 6px 12px); border-radius: 2px; }

.dish-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s5); }
.dish {
  position: relative; display: block; background: var(--paper); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.dish:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.dish-img { aspect-ratio: 16/10; overflow: hidden; background: var(--cream-100); }
.dish-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.dish:hover .dish-img img { transform: scale(1.07); }
.dish-body { padding: var(--s4); display: flex; align-items: center; justify-content: space-between; gap: var(--s2); }
.dish-body h4 { font-family: var(--font-head); font-weight: 700; font-size: 1.08rem; color: var(--brown-900); }

.menu-cta { text-align: center; margin-top: var(--s8); }
.menu-cta p { font-size: 1.15rem; color: var(--ink-soft); margin-bottom: var(--s4); }
.cta-row { display: flex; flex-wrap: wrap; gap: var(--s3); justify-content: center; }

/* ---------- תהליך ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s6); }
.step { position: relative; }
.step-media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-sm); margin-bottom: var(--s4); }
.step-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.step:hover .step-media img { transform: scale(1.05); }
.step-num { font-family: var(--font-head); font-weight: 900; font-size: 1rem; color: var(--green-700); display: inline-flex; align-items: center; gap: var(--s2); margin-bottom: var(--s2); }
.step-num b { width: 32px; height: 32px; border-radius: 50%; background: var(--green-700); color: #fff; display: grid; place-items: center; font-size: 1rem; }
.step h3 { font-size: 1.35rem; margin-bottom: var(--s2); }
.step p { color: var(--ink-soft); }

/* ---------- רומני אותנטי ---------- */
.romanian { background: var(--brown-900); color: var(--cream-50); overflow: hidden; position: relative; }
.romanian::before { content: ""; position: absolute; inset-block: 0; inset-inline-start: 0; width: 10px; background: linear-gradient(180deg, #002B7F 0 33.3%, #FCD116 33.3% 66.6%, #CE1126 66.6% 100%); }
.romanian .container { display: grid; grid-template-columns: 1.1fr .9fr; gap: var(--s8); align-items: center; }
.romanian .eyebrow { color: var(--wheat); }
.romanian .eyebrow::before { background: var(--wheat); }
.romanian h2 { color: #fff; }
.romanian p { color: rgba(255,255,255,.85); font-size: 1.12rem; margin-top: var(--s4); }
.romanian .chef { margin-top: var(--s5); display: flex; align-items: center; gap: var(--s3); font-weight: 600; color: #fff; }
.romanian .chef .badge { width: 46px; height: 46px; border-radius: 50%; background: var(--green-700); display: grid; place-items: center; color: #fff; flex: none; }
.romanian .chef .badge svg { width: 24px; height: 24px; }
.romanian-cta { margin-top: var(--s6); }
.romanian-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4); }
.romanian-imgs figure { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 1; }
.romanian-imgs figure:first-child { grid-row: span 2; aspect-ratio: 3/4.4; }
.romanian-imgs img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- סיפור משפחתי ---------- */
.story .container { display: grid; grid-template-columns: .95fr 1.05fr; gap: var(--s8); align-items: center; }
.story-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; }
.story-media img { width: 100%; height: 100%; object-fit: cover; }
.story-media .tag {
  position: absolute; inset-block-end: var(--s4); inset-inline-start: var(--s4);
  background: rgba(46,22,8,.82); color: var(--cream-50); padding: 10px 18px; border-radius: 999px;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
}
.story h2 { margin-bottom: var(--s4); }
.story p { color: var(--ink-soft); font-size: 1.1rem; margin-bottom: var(--s4); }
.story p strong { color: var(--brown-800); }
.story .sign { font-family: var(--font-head); font-weight: 700; color: var(--green-700); }

/* ---------- המלצות ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s5); }
.testi {
  background: var(--paper); border-radius: var(--radius); padding: var(--s6); box-shadow: var(--shadow-sm);
  position: relative; border: 1px solid var(--line);
}
.testi .quote { font-size: 3rem; font-family: var(--font-head); color: var(--cream-200); line-height: .6; height: 28px; }
.testi p { font-size: 1.08rem; color: var(--ink); margin-block: var(--s3) var(--s4); }
.testi .who { display: flex; align-items: center; gap: var(--s3); }
.testi .who .av { width: 42px; height: 42px; border-radius: 50%; background: var(--green-700); color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; }
.testi .who b { font-family: var(--font-head); color: var(--brown-900); }
.testi .who span { display: block; font-size: .85rem; color: var(--ink-soft); }
.testi-note { text-align: center; margin-top: var(--s5); color: var(--ink-soft); font-size: .92rem; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 820px; margin-inline: auto; }
.faq { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: var(--s5) var(--s2);
  display: flex; align-items: center; justify-content: space-between; gap: var(--s4);
  font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: var(--brown-900);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--cream-100); display: grid; place-items: center; color: var(--brown-800); transition: transform .3s var(--ease), background-color .3s; position: relative; }
.faq summary .pm::before, .faq summary .pm::after { content: ""; position: absolute; width: 13px; height: 2.5px; background: currentColor; border-radius: 2px; transition: transform .3s var(--ease); }
.faq summary .pm::after { transform: rotate(90deg); }
.faq[open] summary .pm { background: var(--green-700); color: #fff; }
.faq[open] summary .pm::after { transform: rotate(0); }
.faq-body { overflow: hidden; }
.faq-body p { padding: 0 var(--s2) var(--s5); color: var(--ink-soft); font-size: 1.05rem; }
.faq[open] .faq-body { animation: faqIn .35s var(--ease); }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- יצירת קשר ---------- */
.contact { background: var(--brown-900); color: var(--cream-50); }
.contact .container { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s8); align-items: center; }
.contact .eyebrow { color: var(--wheat); }
.contact .eyebrow::before { background: var(--wheat); }
.contact h2 { color: #fff; margin-bottom: var(--s4); }
.contact .lead { color: rgba(255,255,255,.85); font-size: 1.15rem; margin-bottom: var(--s6); }
.contact-cta { display: flex; flex-wrap: wrap; gap: var(--s3); }
.info-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: var(--s6); }
.info-row { display: flex; align-items: flex-start; gap: var(--s3); padding-block: var(--s3); border-bottom: 1px solid rgba(255,255,255,.1); }
.info-row:last-child { border-bottom: none; }
.info-row .ic { flex: none; width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: var(--wheat); }
.info-row .ic svg { width: 22px; height: 22px; }
.info-row .t { font-size: .85rem; color: rgba(255,255,255,.6); }
.info-row .v { font-family: var(--font-head); font-weight: 600; font-size: 1.08rem; color: #fff; }
.info-row a.v:hover { color: var(--wheat); }
.info-actions { display: flex; gap: var(--s3); margin-top: var(--s5); flex-wrap: wrap; }
.info-actions a { flex: 1; min-width: 130px; }

/* ---------- פוטר ---------- */
.footer { background: #20100A; color: rgba(255,255,255,.7); padding-block: var(--s8) var(--s6); }
.footer .container { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: var(--s7); }
.footer .brand-name { color: #fff; }
.footer-about { max-width: 38ch; margin-top: var(--s4); font-size: .95rem; line-height: 1.6; }
.footer-kosher { display: inline-flex; align-items: center; gap: var(--s2); margin-top: var(--s4); background: rgba(255,255,255,.06); padding: 8px 14px; border-radius: 999px; font-size: .9rem; color: var(--wheat); }
.footer h3 { color: #fff; font-size: 1.05rem; margin-bottom: var(--s4); font-weight: 700; }
.footer-links li { margin-bottom: var(--s3); }
.footer-links a:hover { color: var(--wheat); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: var(--s7); padding-top: var(--s5); display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--s3); font-size: .85rem; }
.footer-bottom a { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- כפתור צף ---------- */
.wa-float {
  position: fixed; inset-block-end: 22px; inset-inline-start: 22px; z-index: 80;
  display: inline-flex; align-items: center; gap: var(--s2);
  background: var(--wa); color: #fff; padding: 14px 20px 14px 16px; border-radius: 999px;
  font-family: var(--font-head); font-weight: 700; font-size: 1.02rem;
  box-shadow: 0 12px 30px rgba(37,211,102,.45);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s;
}
.wa-float svg { width: 28px; height: 28px; flex: none; }
.wa-float:hover { background: var(--wa-dark); transform: translateY(-3px) scale(1.03); }
.wa-float.pulse { animation: waPulse 2.2s var(--ease) 1.2s 2; }
@keyframes waPulse { 0%,100%{ box-shadow: 0 12px 30px rgba(37,211,102,.45);} 50%{ box-shadow: 0 12px 30px rgba(37,211,102,.45), 0 0 0 14px rgba(37,211,102,0);} }

/* ---------- אנימציות חשיפה (מוסתר רק כש-JS פעיל) ---------- */
.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

.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; }

.skip-link { position: absolute; right: -999px; top: 8px; background: var(--brown-900); color: #fff; padding: 10px 16px; border-radius: 8px; z-index: 200; }
.skip-link:focus { right: 8px; }

:focus-visible { outline: 3px solid var(--green-600); outline-offset: 3px; border-radius: 6px; }

/* ===========================================================
   רספונסיביות
   =========================================================== */

/* טאבלט */
@media (max-width: 1024px) {
  .dish-grid { grid-template-columns: repeat(3, 1fr); }
  .romanian .container { grid-template-columns: 1fr; gap: var(--s7); }
  .romanian-imgs { grid-template-columns: 1fr 1fr; }
  .romanian-imgs figure:first-child { grid-row: auto; aspect-ratio: 1; }
}

@media (max-width: 900px) {
  .nav-links, .header .nav > .btn { display: none; }
  .nav-toggle { display: flex; }
  .nav { position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px); background: var(--cream-50);
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0;
    padding: 84px var(--s5) var(--s5); transform: translateX(100%); transition: transform .35s var(--ease);
    box-shadow: var(--shadow-lg); z-index: 70; }
  .nav-open .nav { transform: translateX(0); }
  .nav-links { display: flex; flex-direction: column; align-items: stretch; gap: 0; }
  .nav-links a { padding: var(--s4) var(--s2); border-bottom: 1px solid var(--line); font-size: 1.15rem; }
  .header .nav > .btn { display: inline-flex; margin-top: var(--s4); }
  .nav-toggle { z-index: 75; }
  .nav-scrim { position: fixed; inset: 0; background: rgba(46,22,8,.45); opacity: 0; visibility: hidden; transition: opacity .3s; z-index: 65; }
  .nav-open .nav-scrim { opacity: 1; visibility: visible; }
  .story .container, .contact .container { grid-template-columns: 1fr; gap: var(--s7); }
  .steps { grid-template-columns: 1fr; gap: var(--s7); max-width: 460px; margin-inline: auto; }
  .trust .container { grid-template-columns: repeat(2, 1fr); gap: var(--s6) var(--s5); }
  .testi-grid { grid-template-columns: 1fr; max-width: 540px; margin-inline: auto; }
  .footer .container { grid-template-columns: 1fr 1fr; }
  .footer-about-col { grid-column: 1 / -1; }
}

/* נייד */
@media (max-width: 600px) {
  .dish-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s3); }
  .dish-body { padding: var(--s3); flex-direction: column; align-items: flex-start; gap: 2px; }
  .dish-body h4 { font-size: .98rem; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .hero-chips { gap: var(--s3); }
  .hero-chips li { font-size: .9rem; }
  .romanian-imgs { grid-template-columns: 1fr 1fr; }
  .trust .container { grid-template-columns: 1fr; gap: var(--s5); }
  .contact-cta .btn, .info-actions a .btn, .cta-row .btn { width: 100%; }
  .cta-row { width: 100%; }
  .footer .container { grid-template-columns: 1fr; gap: var(--s6); }
  .wa-float { padding: 13px; inset-block-end: 16px; inset-inline-start: 16px; }
  .wa-float .label { display: none; }
  .section-head { margin-bottom: var(--s6); }
}

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

/* תנועה מופחתת */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ===========================================================
   נגישות + קוקיז (שלב 3)
   =========================================================== */

/* --- כפתור נגישות צף (פינה ימנית-תחתונה, מנוגד לכפתור הוואטסאפ שמשמאל) --- */
.a11y-fab {
  position: fixed; inset-block-end: 22px; inset-inline-end: 22px; z-index: 90;
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--brown-800); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 26px rgba(46,22,8,.4);
  transition: transform .25s var(--ease), background-color .25s;
}
.a11y-fab:hover { background: var(--brown-900); transform: translateY(-3px) scale(1.05); }
.a11y-fab svg { width: 30px; height: 30px; }

.a11y-panel {
  position: fixed; inset-block-end: 88px; inset-inline-end: 22px; z-index: 95;
  width: 320px; max-width: calc(100vw - 32px); max-height: calc(100vh - 130px); overflow-y: auto;
  background: #fff; color: #2E1608; border-radius: 18px; box-shadow: 0 26px 60px rgba(46,22,8,.34);
  padding: 18px; display: none; border: 1px solid rgba(70,35,15,.15);
}
.a11y-panel.open { display: block; }
.a11y-panel h2 { font-family: var(--font-head); font-size: 1.15rem; color: var(--brown-900); margin-bottom: 4px; }
.a11y-panel .sub { font-size: .85rem; color: #5A3018; margin-bottom: 14px; }
.a11y-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.a11y-opt {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  padding: 12px 6px; border-radius: 12px; background: #F6E8CC; color: #2E1608;
  font-family: var(--font-body); font-weight: 600; font-size: .85rem; text-align: center;
  min-height: 64px; border: 2px solid transparent; transition: background-color .2s, border-color .2s, color .2s;
}
.a11y-opt svg { width: 22px; height: 22px; }
.a11y-opt:hover { background: #EFDDBC; }
.a11y-opt[aria-pressed="true"] { background: var(--green-700); color: #fff; border-color: var(--green-700); }
.a11y-reset { grid-column: 1 / -1; background: var(--brown-800); color: #fff; }
.a11y-reset:hover { background: var(--brown-900); }
.a11y-panel .a11y-statement { display: block; text-align: center; margin-top: 12px; font-size: .85rem; color: var(--green-700); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* כשהבאנר קוקיז גלוי - מרימים את הכפתורים הצפים מעל הבאנר (גובה דינמי) */
body.cc-visible .wa-float { inset-block-end: calc(var(--cc-h, 90px) + 38px); }
body.cc-visible .a11y-fab { inset-block-end: calc(var(--cc-h, 90px) + 38px); }
body.cc-visible .a11y-panel { inset-block-end: calc(var(--cc-h, 90px) + 104px); }

/* --- מצבי נגישות --- */
/* ניגודיות גבוהה - דריסת משתני הצבע */
html.a11y-contrast {
  --cream-50: #ffffff; --cream-100: #ffffff; --cream-200: #e8e8e8; --paper: #ffffff;
  --ink: #000000; --ink-soft: #1a1a1a; --brown-900: #000000; --brown-800: #0d0d0d; --brown-700: #1a1a1a; --coffee: #1a1a1a;
  --green-700: #0a5d22; --green-600: #0a5d22; --wheat: #ffd24d; --line: rgba(0,0,0,.55);
}
html.a11y-contrast body { background: #fff; }
html.a11y-contrast .hero::after { background: linear-gradient(270deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.6) 50%, rgba(0,0,0,.35) 100%); }
html.a11y-contrast .dish, html.a11y-contrast .info-card, html.a11y-contrast .testi { border: 2px solid #000; }
html.a11y-contrast .btn-ghost { box-shadow: inset 0 0 0 2px #000; }

/* גווני אפור */
html.a11y-grayscale { filter: grayscale(100%); }

/* הדגשת קישורים */
html.a11y-links a { text-decoration: underline !important; text-underline-offset: 3px; }
html.a11y-links a:not(.btn):not(.brand):not(.dish):not(.wa-float):not(.a11y-statement) { outline: 2px dashed currentColor; outline-offset: 2px; }

/* פונט קריא */
html.a11y-readable, html.a11y-readable * { font-family: Arial, "Helvetica Neue", sans-serif !important; letter-spacing: 0 !important; }
html.a11y-readable p, html.a11y-readable li, html.a11y-readable .hero-lead, html.a11y-readable .faq-body p { line-height: 1.9 !important; }

/* עצירת אנימציות (גם דרך מתג הנגישות) */
html.a11y-noanim *, html.a11y-noanim *::before, html.a11y-noanim *::after {
  animation: none !important; transition: none !important; scroll-behavior: auto !important;
}

/* --- באנר קוקיז --- */
.cookie-banner {
  position: fixed; inset-block-end: 16px; inset-inline: 16px; z-index: 88;
  max-width: 560px; margin-inline: auto;
  background: var(--brown-900); color: var(--cream-50);
  border-radius: 16px; box-shadow: 0 20px 50px rgba(0,0,0,.35);
  padding: 18px 20px; display: none;
  border: 1px solid rgba(255,255,255,.14);
}
.cookie-banner.show { display: block; }
.cookie-banner p { font-size: .95rem; line-height: 1.55; color: rgba(255,255,255,.9); }
.cookie-banner a { color: var(--wheat); text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }
.cookie-actions { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; align-items: center; }
.cookie-actions .btn { min-height: 46px; padding: 10px 24px; font-size: 1rem; }
.cookie-accept { background: var(--wa); color: #fff; }
.cookie-accept:hover { background: var(--wa-dark); }

/* --- הערת וואטסאפ/פרטיות בפוטר --- */
.wa-privacy-note { font-size: .82rem; color: rgba(255,255,255,.55); margin-top: var(--s4); line-height: 1.55; }
.wa-privacy-note a { color: var(--wheat); text-decoration: underline; text-underline-offset: 2px; }

/* --- עמודי תוכן (פרטיות/נגישות) --- */
.legal { max-width: 820px; margin-inline: auto; padding-block: clamp(48px, 7vw, 88px); }
.legal h1 { font-size: clamp(2rem, 1.4rem + 2.4vw, 3rem); margin-bottom: var(--s4); }
.legal h2 { font-size: clamp(1.4rem, 1.1rem + 1.2vw, 1.9rem); margin-top: var(--s7); margin-bottom: var(--s3); color: var(--brown-800); }
.legal p, .legal li { font-size: 1.05rem; color: var(--ink-soft); margin-bottom: var(--s3); }
.legal ul { padding-inline-start: var(--s5); list-style: disc; }
.legal li { margin-bottom: var(--s2); }
.legal .updated { color: var(--ink-soft); font-size: .9rem; margin-bottom: var(--s6); }
.legal .back-home { display: inline-flex; align-items: center; gap: 6px; margin-top: var(--s7); font-weight: 700; color: var(--green-700); text-decoration: underline; text-underline-offset: 3px; }
.legal .note-box { background: var(--cream-100); border-inline-start: 4px solid var(--green-600); border-radius: 10px; padding: var(--s4) var(--s5); margin-block: var(--s5); }
.legal .note-box p { margin: 0; }

@media (max-width: 600px) {
  .a11y-fab { inset-block-end: 16px; inset-inline-end: 16px; width: 50px; height: 50px; }
  .a11y-panel { inset-block-end: 76px; }
  .cookie-actions .btn { width: 100%; }
}

/* ===========================================================
   שלב 4 - ציטוט מייסדים + גיוון מוטיון
   =========================================================== */

/* --- ציטוט מייסדים --- */
.founders-inner { display: grid; grid-template-columns: .82fr 1.18fr; gap: var(--s8); align-items: center; }
.founders-media { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; }
.founders-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.founders-media:hover img { transform: scale(1.05); }
.founders-quote { position: relative; margin: 0; }
.founders-quote .qmark { position: absolute; inset-block-start: -46px; inset-inline-start: -6px; font-family: var(--font-head); font-size: 7rem; line-height: 1; color: var(--green-600); opacity: .35; pointer-events: none; }
.founders-quote h2 { position: relative; font-size: clamp(1.5rem, 1.05rem + 1.7vw, 2.2rem); line-height: 1.32; font-weight: 700; color: var(--brown-900); letter-spacing: -0.01em; }
.founders-sign { display: flex; align-items: center; gap: 14px; margin-top: var(--s6); }
.founders-mark { width: 54px; height: 54px; border-radius: 50%; background: var(--brown-800); color: var(--wheat); display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; flex: none; }
.founders-sign > span { font-family: var(--font-head); font-weight: 700; color: var(--brown-900); font-size: 1.1rem; }
.founders-sign small { display: block; font-family: var(--font-body); font-weight: 500; color: var(--ink-soft); font-size: .9rem; margin-top: 2px; }
.founders-cta { margin-top: var(--s5); color: var(--ink-soft); font-size: 1.02rem; }
.founders-cta a { color: var(--green-700); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.founders-cta a:hover { color: var(--brown-900); }

/* --- וריאנטים של חשיפה בגלילה (גיוון מוטיון) --- */
.js .rv-l, .js .rv-r, .js .rv-scale, .js .rv-clip {
  opacity: 0; transition: opacity .7s var(--ease), transform .85s var(--ease), clip-path .9s var(--ease);
}
.js .rv-l { transform: translateX(38px); }
.js .rv-r { transform: translateX(-38px); }
.js .rv-scale { transform: scale(.93); }
.js .rv-clip { clip-path: inset(0 0 100% 0); }
.js .rv-l.in, .js .rv-r.in, .js .rv-scale.in { opacity: 1; transform: none; }
.js .rv-clip.in { opacity: 1; clip-path: inset(0 0 0 0); }
.rv-scale[data-delay="1"] { transition-delay: .12s; }
.rv-scale[data-delay="2"] { transition-delay: .24s; }

/* פופ לעיגול המספר בשלבי התהליך */
.js .step.rv-scale .step-num b { transform: scale(0); transition: transform .5s var(--ease) .2s; }
.js .step.rv-scale.in .step-num b { transform: scale(1); }

/* --- חשיפה מדורגת לכרטיסי המנות (ברמת הגריד, חסכוני) --- */
.js .dish-grid .dish { opacity: 0; transform: translateY(18px) scale(.98); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.js .dish-grid.in .dish { opacity: 1; transform: none; }
.js .dish-grid.in .dish:nth-child(2) { transition-delay: .05s; }
.js .dish-grid.in .dish:nth-child(3) { transition-delay: .1s; }
.js .dish-grid.in .dish:nth-child(4) { transition-delay: .15s; }
.js .dish-grid.in .dish:nth-child(5) { transition-delay: .08s; }
.js .dish-grid.in .dish:nth-child(6) { transition-delay: .13s; }
.js .dish-grid.in .dish:nth-child(7) { transition-delay: .18s; }
.js .dish-grid.in .dish:nth-child(n+8) { transition-delay: .2s; }

/* --- זום עדין בטעינת ההירו (חד פעמי) --- */
.hero-media img { animation: heroZoom 1.5s var(--ease) both; }
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }

/* --- גיוון hover על תמונות --- */
.romanian-imgs img { transition: transform .6s var(--ease); }
.romanian-imgs figure:hover img { transform: scale(1.06); }
.story-media img { transition: transform .7s var(--ease); }
.story-media:hover img { transform: scale(1.05); }

@media (max-width: 900px) {
  .founders-inner { grid-template-columns: 1fr; gap: var(--s6); }
  .founders-quote .qmark { font-size: 5rem; inset-block-start: -30px; }
  .founders-media { aspect-ratio: 16/10; }
}

/* תנועה מופחתת - גם לווריאנטים החדשים */
@media (prefers-reduced-motion: reduce) {
  .rv-l, .rv-r, .rv-scale, .rv-clip { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  .dish-grid .dish { opacity: 1 !important; transform: none !important; }
  .hero-media img { animation: none !important; }
}

/* אלמנט עם פרלקסה: ה-transform מונע ע"י JS לכל פריים, לכן בלי transition על transform */
.js [data-parallax].rv-clip { transition: opacity .7s var(--ease), clip-path .9s var(--ease); will-change: transform; }
@media (prefers-reduced-motion: reduce) { [data-parallax] { transform: none !important; } }
