/* ==========================================================================
   לימא ארומתרפיה — גיליון סגנונות ראשי
   עיצוב קלאסי־נשי, RTL מלא, נגישות בהתאם ל־WCAG 2.0 AA / ת"י 5568
   ========================================================================== */

/* ---------- 1. משתני עיצוב ---------- */
:root {
  /* צבעים */
  --ivory:        #FCF9F5;
  --cream:        #F5EEE4;
  --sand:         #EBDFCF;
  --sand-deep:    #DCCAB2;
  --ink:          #2B2523;
  --ink-soft:     #5B514C;
  --plum:         #3E2F35;
  --plum-light:   #5A4650;
  --olive:        #4E5A44;
  --olive-mid:    #6E7A5E;
  --rose:         #B98F89;
  --rose-soft:    #EBDAD6;
  /* --brass משמש לטקסט ולכן חייב לעמוד ביחס ניגודיות 4.5:1 על רקע השנהב.
     --brass-soft הוא הגוון הדקורטיבי (קווים, מסגרות, קישוטים) — לא לטקסט. */
  --brass:        #8C6B36;
  --brass-soft:   #C2A26A;
  --brass-light:  #C7A97B;
  --white:        #FFFFFF;

  /* סמנטי */
  --bg:           var(--ivory);
  --bg-alt:       var(--cream);
  --surface:      var(--white);
  --text:         var(--ink);
  --text-muted:   var(--ink-soft);
  --accent:       var(--plum);
  --accent-text:  var(--ivory);
  --line:         rgba(176, 141, 87, .32);
  --line-strong:  rgba(62, 47, 53, .18);
  --shadow-sm:    0 2px 10px rgba(62, 47, 53, .06);
  --shadow-md:    0 10px 30px rgba(62, 47, 53, .10);
  --shadow-lg:    0 24px 60px rgba(62, 47, 53, .14);

  /* טיפוגרפיה */
  --font-head: "Frank Ruhl Libre", "David Libre", Georgia, "Times New Roman", serif;
  --font-body: "Assistant", "Heebo", "Segoe UI", Arial, sans-serif;
  --fs-base: 1.0625rem;
  --lh-base: 1.75;
  --ls-extra: 0em;

  /* מידות */
  --wrap: 1180px;
  --wrap-narrow: 780px;
  --radius-s: 6px;
  --radius-m: 14px;
  --radius-l: 26px;
  --pad-section: clamp(3.5rem, 8vw, 7rem);
  --header-h: 82px;

  /* תנועה */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --dur: .55s;
}

/* ---------- 2. איפוס ובסיס ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  font-size: calc(100% * var(--a11y-font-scale, 1));
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  letter-spacing: var(--ls-extra);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-locked { overflow: hidden; }

img, svg, video { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 1.28;
  color: var(--plum);
  margin: 0 0 .6em;
  letter-spacing: -.01em;
}

h1 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.8vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--plum); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--brass); }

ul { padding-inline-start: 1.2em; }

/* פוקוס נראה לכל אלמנט אינטראקטיבי */
:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: 3px;
  border-radius: var(--radius-s);
}

::selection { background: var(--sand-deep); color: var(--plum); }

/* ---------- 3. עזרי נגישות כלליים ---------- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: fixed;
  inset-block-start: -100px;
  inset-inline-start: 1rem;
  z-index: 9999;
  background: var(--plum);
  color: var(--ivory);
  padding: .85rem 1.4rem;
  border-radius: 0 0 var(--radius-m) var(--radius-m);
  font-weight: 600;
  text-decoration: none;
  transition: inset-block-start .25s var(--ease);
}
.skip-link:focus { inset-block-start: 0; color: var(--ivory); }

/* ---------- 4. עזרי פריסה ---------- */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.wrap--narrow { width: min(100% - 2.5rem, var(--wrap-narrow)); }

.section { padding-block: var(--pad-section); position: relative; }
.section--alt { background: var(--bg-alt); }
.section--sand {
  background: linear-gradient(180deg, var(--cream) 0%, var(--sand) 100%);
}

.section-head { text-align: center; margin-bottom: clamp(2.2rem, 5vw, 3.6rem); }
.section-head p { color: var(--text-muted); max-width: 62ch; margin-inline: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: none;
  color: var(--brass);
  margin-bottom: 1rem;
}
.eyebrow::before, .eyebrow::after {
  content: ""; width: 26px; height: 1px; background: var(--brass-soft);
}
.section-head .eyebrow { justify-content: center; }

.lead { font-size: 1.13rem; color: var(--text-muted); }

/* קו קישוט */
.ornament { display: block; margin: 1.5rem auto 0; width: 74px; height: 18px; color: var(--brass-soft); }

/* ---------- 5. כפתורים ---------- */
.btn {
  --btn-bg: var(--plum);
  --btn-fg: var(--ivory);
  --btn-bd: var(--plum);
  display: inline-flex;
  align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 2rem;
  min-height: 48px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bd);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
}
.btn:hover {
  color: var(--btn-fg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn:active { transform: translateY(0); }

.btn--ghost { --btn-bg: transparent; --btn-fg: var(--plum); --btn-bd: var(--line-strong); }
.btn--ghost:hover { --btn-bg: var(--plum); --btn-fg: var(--ivory); --btn-bd: var(--plum); }

.btn--brass { --btn-bg: var(--brass); --btn-fg: #FFFFFF; --btn-bd: var(--brass); }

.btn--wide { width: 100%; }
.btn .ico { width: 20px; height: 20px; flex: none; }

/* ---------- 6. כותרת עליונה ---------- */
.header {
  position: fixed; inset-block-start: 0; inset-inline: 0;
  z-index: 900;
  background: rgba(252, 249, 245, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background-color .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.header.is-stuck {
  background: rgba(252, 249, 245, .96);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: var(--header-h);
}

.logo { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--plum); }
.logo__mark { width: 42px; height: 42px; flex: none; color: var(--brass); }
.logo__text { display: flex; flex-direction: column; line-height: 1.15; }
.logo__name { font-family: var(--font-head); font-size: 1.32rem; font-weight: 600; }
.logo__sub { font-size: .68rem; letter-spacing: .16em; color: var(--text-muted); }

.nav { display: flex; align-items: center; gap: .35rem; }
.nav__link {
  padding: .55rem .8rem;
  border-radius: 999px;
  font-size: .97rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s var(--ease), background-color .2s var(--ease);
}
.nav__link:hover { background: var(--sand); color: var(--plum); }
.nav__link[aria-current="true"] { color: var(--brass); font-weight: 700; }

.header__cta { display: flex; align-items: center; gap: .6rem; }
.header__phone {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 700; text-decoration: none; color: var(--plum);
  padding: .5rem .75rem; border-radius: 999px;
  direction: ltr;
}
.header__phone:hover { background: var(--sand); }
.header__phone .ico { width: 18px; height: 18px; }

.nav-toggle {
  display: none;
  width: 48px; height: 48px;
  align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--line); border-radius: 50%;
  cursor: pointer; color: var(--plum);
}
.nav-toggle .ico { width: 22px; height: 22px; }

@media (max-width: 1040px) {
  .nav {
    position: fixed;
    inset-block-start: var(--header-h); inset-inline: 0;
    flex-direction: column; align-items: stretch;
    gap: 0;
    background: var(--ivory);
    border-block-start: 1px solid var(--line);
    padding: 1rem 1.25rem 2rem;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    transform: translateY(-12px);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
    box-shadow: var(--shadow-md);
  }
  .nav.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
  .nav__link { padding: .95rem .6rem; border-bottom: 1px solid var(--line); border-radius: 0; font-size: 1.06rem; }
  .nav__link:last-child { border-bottom: 0; }
  .nav-toggle { display: inline-flex; }
  .header__phone .txt { display: none; }
  .header__cta .btn { display: none; }
}

/* ---------- 7. גיבור (Hero) ---------- */
.hero {
  position: relative;
  padding-block: calc(var(--header-h) + clamp(2.5rem, 7vw, 5rem)) clamp(3rem, 7vw, 5.5rem);
  background:
    radial-gradient(1100px 620px at 85% -8%, var(--sand) 0%, rgba(235,223,207,0) 62%),
    radial-gradient(760px 520px at 5% 105%, var(--rose-soft) 0%, rgba(235,218,214,0) 60%),
    var(--ivory);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero__title { margin-bottom: .45em; }
.hero__title .accent { color: var(--brass); font-style: italic; }
.hero__text { max-width: 46ch; font-size: 1.14rem; color: var(--text-muted); }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-block: 2rem 2.2rem; }

.hero__meta { display: flex; flex-wrap: wrap; gap: 1.6rem 2.4rem; align-items: center; }
.rating { display: flex; align-items: center; gap: .6rem; }
.rating__stars { display: inline-flex; gap: 2px; color: var(--brass); }
.rating__stars .ico { width: 18px; height: 18px; }
.rating__text { font-size: .95rem; color: var(--text-muted); }
.rating__text b { color: var(--plum); font-size: 1.05rem; }

.hero__figure { position: relative; }
.hero__figure img {
  width: 100%;
  border-radius: 260px 260px var(--radius-l) var(--radius-l);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4 / 5;
}
.hero__figure::after {
  content: "";
  position: absolute;
  inset-block: 22px -22px;
  inset-inline: -22px 22px;
  border: 1px solid var(--brass-soft);
  border-radius: 260px 260px var(--radius-l) var(--radius-l);
  opacity: .45;
  pointer-events: none;
  z-index: -1;
}
.hero__badge {
  position: absolute;
  inset-block-end: 18px; inset-inline-start: -14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: .8rem 1.1rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  max-width: 190px;
}
.hero__badge strong { display: block; font-family: var(--font-head); font-size: 1.5rem; color: var(--plum); }
.hero__badge span { font-size: .82rem; color: var(--text-muted); }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__figure { order: -1; max-width: 420px; margin-inline: auto; }
  .hero__text { max-width: none; }
  .hero__figure::after { display: none; }
}

/* ---------- 8. רצועת אמון ---------- */
.trust {
  background: var(--plum);
  color: var(--ivory);
  padding-block: 1.5rem;
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem 1.5rem;
  text-align: center;
}
.trust__item { display: flex; flex-direction: column; align-items: center; gap: .35rem; }
.trust__item .ico { width: 26px; height: 26px; color: var(--brass-light); }
.trust__item span { font-size: .92rem; line-height: 1.4; }
@media (max-width: 720px) { .trust__grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- 9. אודות ---------- */
.about__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.about__figure { position: relative; }
.about__figure img {
  width: 100%;
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.about__figure figcaption {
  position: absolute;
  inset-block-end: -16px; inset-inline-end: -16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: .7rem 1rem;
  font-size: .88rem;
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
}
.about__figure figcaption b { display: block; color: var(--plum); font-family: var(--font-head); font-size: 1.05rem; }

.signature {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--brass);
  margin-block-start: 1.6rem;
}

.values { list-style: none; padding: 0; margin: 1.8rem 0 0; display: grid; gap: 1rem; }
.values li { display: flex; gap: .85rem; align-items: flex-start; }
.values .ico { width: 22px; height: 22px; color: var(--olive); flex: none; margin-block-start: 4px; }
.values b { color: var(--plum); }

@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__figure { max-width: 400px; margin-inline: auto; }
  .about__figure figcaption { inset-inline-end: 8px; }
}

/* ---------- 10. טיפולים ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.4rem;
}
.service {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 2rem 1.7rem;
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--brass); }
.service__icon {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--olive);
  margin-bottom: 1.2rem;
}
.service__icon .ico { width: 26px; height: 26px; }
.service h3 { margin-bottom: .5rem; }
.service p { color: var(--text-muted); font-size: .98rem; }
.service__meta {
  margin-block-start: auto;
  padding-block-start: 1.1rem;
  border-block-start: 1px dashed var(--line);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-size: .9rem; color: var(--text-muted);
}
.service__meta .price { color: var(--plum); font-weight: 700; }

/* ---------- 11. תיק עבודות ---------- */
.filters {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .55rem;
  margin-bottom: 2.2rem;
}
.filter {
  padding: .6rem 1.25rem;
  min-height: 44px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-body); font-size: .95rem; font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all .25s var(--ease);
}
.filter:hover { border-color: var(--brass); color: var(--plum); }
.filter[aria-pressed="true"] { background: var(--plum); border-color: var(--plum); color: var(--ivory); }

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.1rem;
}
.gallery__item {
  position: relative;
  padding: 0; border: 0; background: none; cursor: pointer;
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), opacity .3s var(--ease);
}
.gallery__item img { width: 100%; aspect-ratio: 4/5; object-fit: cover; transition: transform .7s var(--ease); }
.gallery__item:hover img, .gallery__item:focus-visible img { transform: scale(1.06); }
.gallery__item:hover { box-shadow: var(--shadow-md); }
.gallery__item[hidden] { display: none; }
.gallery__cap {
  position: absolute; inset-inline: 0; inset-block-end: 0;
  padding: 2.4rem 1rem .95rem;
  background: linear-gradient(to top, rgba(43,37,35,.85), rgba(43,37,35,0));
  color: #fff;
  font-size: .95rem; font-weight: 600;
  text-align: start;
  display: flex; align-items: center; justify-content: space-between; gap: .5rem;
}
.gallery__cap .ico { width: 18px; height: 18px; opacity: .85; flex: none; }
.gallery__empty { text-align: center; color: var(--text-muted); padding: 2rem 0; }

/* תיבת אור */
.lightbox {
  position: fixed; inset: 0; z-index: 1200;
  display: none;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(30, 24, 26, .92);
}
.lightbox[open], .lightbox.is-open { display: grid; }
.lightbox__figure { margin: 0; max-width: min(90vw, 720px); text-align: center; }
.lightbox__figure img {
  max-height: 76vh; width: auto; margin-inline: auto;
  border-radius: var(--radius-m); box-shadow: var(--shadow-lg);
}
.lightbox__figure figcaption { color: #F0E9E2; margin-block-start: 1rem; font-size: 1rem; }
.lightbox__btn {
  position: absolute;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  color: #fff; cursor: pointer;
  transition: background-color .2s var(--ease);
}
.lightbox__btn:hover { background: rgba(255,255,255,.26); }
.lightbox__btn .ico { width: 24px; height: 24px; }
.lightbox__close { inset-block-start: 1.1rem; inset-inline-end: 1.1rem; }
.lightbox__prev { inset-inline-end: 1.1rem; inset-block-start: 50%; transform: translateY(-50%); }
.lightbox__next { inset-inline-start: 1.1rem; inset-block-start: 50%; transform: translateY(-50%); }

/* ---------- 12. תהליך ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
  counter-reset: step;
}
.step { text-align: center; position: relative; padding-inline: .8rem; }
.step__num {
  counter-increment: step;
  width: 62px; height: 62px; margin: 0 auto 1.1rem;
  display: grid; place-items: center;
  border: 1px solid var(--brass-soft);
  border-radius: 50%;
  font-family: var(--font-head); font-size: 1.35rem; color: var(--brass);
  background: var(--surface);
}
.step__num::before { content: counter(step, decimal); }
.step p { color: var(--text-muted); font-size: .97rem; }

/* ---------- 13. המלצות ---------- */
.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.4rem;
}
.review {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 2rem 1.8rem;
  display: flex; flex-direction: column; gap: 1rem;
  box-shadow: var(--shadow-sm);
}
.review__quote { color: var(--brass); width: 32px; height: 32px; }
.review blockquote { margin: 0; font-size: 1.02rem; color: var(--text); }
.review__author { margin-block-start: auto; display: flex; align-items: center; gap: .8rem; padding-block-start: .6rem; border-block-start: 1px solid var(--line); }
.review__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--sand); color: var(--plum);
  display: grid; place-items: center;
  font-family: var(--font-head); font-size: 1.15rem; flex: none;
}
.review__name { font-weight: 700; color: var(--plum); line-height: 1.3; }
.review__source { font-size: .82rem; color: var(--text-muted); }
.reviews__cta { text-align: center; margin-block-start: 2.4rem; }

/* ---------- 14. שאלות נפוצות ---------- */
.faq { display: grid; gap: .75rem; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
  transition: border-color .25s var(--ease);
}
.faq details[open] { border-color: var(--brass); box-shadow: var(--shadow-sm); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.4rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-weight: 600; color: var(--plum); font-size: 1.04rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .ico { width: 20px; height: 20px; flex: none; color: var(--brass); transition: transform .3s var(--ease); }
.faq details[open] summary .ico { transform: rotate(45deg); }
.faq .faq__body { padding: 0 1.4rem 1.35rem; color: var(--text-muted); }

/* ---------- 15. טופס קביעת תור ---------- */
.booking__grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
.booking__aside {
  background: var(--plum);
  color: #EFE7E1;
  border-radius: var(--radius-l);
  padding: clamp(1.8rem, 4vw, 2.6rem);
  position: relative;
  overflow: hidden;
}
.booking__aside h3 { color: var(--white); }
.booking__aside p { color: rgba(239,231,225,.85); }
.booking__list { list-style: none; padding: 0; margin: 1.6rem 0 0; display: grid; gap: 1rem; }
.booking__list li { display: flex; gap: .8rem; align-items: flex-start; font-size: .97rem; }
.booking__list .ico { width: 20px; height: 20px; color: var(--brass-light); flex: none; margin-block-start: 3px; }
.booking__list a { color: var(--brass-light); }
.booking__list a:hover { color: var(--white); }

.form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: clamp(1.5rem, 4vw, 2.4rem);
  box-shadow: var(--shadow-sm);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.1rem; }
.field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.1rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: .95rem; color: var(--plum); }
.field .req { color: #A33; margin-inline-start: 2px; }
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--ivory);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-s);
  padding: .8rem .9rem;
  min-height: 48px;
  width: 100%;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { min-height: 116px; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--brass); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(176,141,87,.22);
}
.field .hint { font-size: .82rem; color: var(--text-muted); }
.field .error { font-size: .85rem; color: #A2262B; font-weight: 600; min-height: 0; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #A2262B; background: #FFF6F6; }

.check { display: flex; gap: .7rem; align-items: flex-start; margin-bottom: 1.2rem; font-size: .92rem; color: var(--text-muted); }
.check input { width: 20px; height: 20px; min-height: 0; flex: none; margin-block-start: 3px; accent-color: var(--plum); }

.hp { position: absolute; inset-inline-start: -9999px; opacity: 0; height: 0; }

.form__note { font-size: .85rem; color: var(--text-muted); margin-block-start: 1rem; text-align: center; }

.form-status {
  border-radius: var(--radius-m);
  padding: 1rem 1.2rem;
  margin-block-start: 1.2rem;
  font-weight: 600;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status--ok { background: #EAF3EA; color: #2B5C33; border: 1px solid #B7D5B9; }
.form-status--err { background: #FBEDED; color: #8E2126; border: 1px solid #E2B7B9; }

@media (max-width: 900px) {
  .booking__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
}

/* ---------- 16. יצירת קשר ומפה ---------- */
.contact__grid {
  display: grid; grid-template-columns: 1fr 1.25fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
.contact__list { list-style: none; padding: 0; margin: 0 0 1.8rem; display: grid; gap: 1.4rem; }
.contact__list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact__list .ico { width: 24px; height: 24px; color: var(--brass); flex: none; margin-block-start: 3px; }
.contact__list b { display: block; color: var(--plum); }
.contact__list a { color: var(--text-muted); text-decoration: none; }
.contact__list a:hover { color: var(--brass); text-decoration: underline; }
.contact__list .ltr { direction: ltr; display: inline-block; }

.hours { width: 100%; border-collapse: collapse; margin-block-start: .4rem; font-size: .95rem; }
.hours th, .hours td { text-align: start; padding: .5rem .2rem; border-bottom: 1px dashed var(--line); font-weight: 500; }
.hours th { color: var(--plum); font-weight: 600; }
.hours td { color: var(--text-muted); direction: ltr; text-align: end; }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 0; }

.map-box {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 420px;
  background: linear-gradient(135deg, var(--cream), var(--sand));
  display: grid; place-items: center;
  text-align: center;
  padding: 2rem;
}
.map-box iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }
.map-box.is-loaded { padding: 0; display: block; }
.map-consent { max-width: 46ch; }
.map-consent .ico { width: 40px; height: 40px; color: var(--brass); margin: 0 auto 1rem; }
.map-consent p { font-size: .95rem; color: var(--text-muted); }
.map-links { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-block-start: 1.2rem; }

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

/* ---------- 17. כותרת תחתונה ---------- */
.footer {
  background: var(--plum);
  color: rgba(240,232,226,.86);
  padding-block: clamp(3rem, 6vw, 4.5rem) 1.5rem;
  margin-block-end: 0;
}
.footer a { color: rgba(240,232,226,.86); text-decoration: none; }
.footer a:hover { color: var(--brass-light); text-decoration: underline; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
}
.footer h4 { color: var(--white); font-size: 1.05rem; margin-bottom: 1rem; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; font-size: .95rem; }
.footer .logo { color: var(--white); }
.footer .logo__mark { color: var(--brass-light); }
.footer .logo__sub { color: rgba(240,232,226,.7); }
.footer__about { font-size: .95rem; margin-block-start: 1.1rem; max-width: 40ch; }
.socials { display: flex; gap: .6rem; margin-block-start: 1.2rem; }
.socials a {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid rgba(240,232,226,.28);
  transition: background-color .25s var(--ease), border-color .25s var(--ease);
}
.socials a:hover { background: rgba(240,232,226,.14); border-color: var(--brass-light); }
.socials .ico { width: 20px; height: 20px; }
.footer__bottom {
  margin-block-start: 2.5rem; padding-block-start: 1.4rem;
  border-block-start: 1px solid rgba(240,232,226,.18);
  display: flex; flex-wrap: wrap; gap: .8rem 1.6rem; justify-content: space-between;
  font-size: .87rem;
}
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer__grid { grid-template-columns: 1fr; } }

/* ---------- 18. סרגל פעולות נייד ---------- */
.actionbar {
  position: fixed; inset-inline: 0; inset-block-end: 0; z-index: 880;
  display: none;
  background: rgba(252,249,245,.97);
  backdrop-filter: blur(10px);
  border-block-start: 1px solid var(--line);
  padding: .5rem .6rem calc(.5rem + env(safe-area-inset-bottom));
  box-shadow: 0 -6px 20px rgba(62,47,53,.10);
}
.actionbar__inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; }
.actionbar a {
  display: flex; flex-direction: column; align-items: center; gap: .18rem;
  padding: .5rem .3rem; min-height: 52px;
  border-radius: var(--radius-s);
  font-size: .78rem; font-weight: 600; color: var(--plum); text-decoration: none;
}
.actionbar a .ico { width: 22px; height: 22px; }
.actionbar a:hover { background: var(--sand); }
@media (max-width: 780px) {
  .actionbar { display: block; }
  body { padding-block-end: 74px; }
}

/* ---------- 19. באנר עוגיות ---------- */
.cookie {
  position: fixed;
  inset-block-end: 1rem;
  inset-inline: 1rem;
  z-index: 1000;
  max-width: 520px;
  margin-inline: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-lg);
  padding: 1.4rem 1.5rem;
  display: none;
}
.cookie.is-open { display: block; animation: slideUp .45s var(--ease); }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.cookie h3 { font-size: 1.12rem; margin-bottom: .5rem; display: flex; align-items: center; gap: .55rem; }
.cookie h3 .ico { width: 22px; height: 22px; color: var(--brass); }
.cookie p { font-size: .92rem; color: var(--text-muted); margin-bottom: 1rem; }
.cookie__actions { display: flex; flex-wrap: wrap; gap: .6rem; }
.cookie__actions .btn { flex: 1 1 auto; padding-inline: 1.2rem; font-size: .95rem; }
@media (max-width: 780px) { .cookie { inset-block-end: 82px; } }

/* ---------- 20. וידג'ט נגישות ---------- */
.a11y-btn {
  position: fixed;
  inset-block-end: 1.2rem;
  inset-inline-end: 1.2rem;
  z-index: 1050;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: var(--plum); color: var(--ivory);
  border: 2px solid var(--brass-light);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform .25s var(--ease), background-color .25s var(--ease);
}
.a11y-btn:hover { transform: scale(1.07); background: var(--plum-light); }
.a11y-btn .ico { width: 30px; height: 30px; }
@media (max-width: 780px) { .a11y-btn { inset-block-end: 84px; width: 50px; height: 50px; } .a11y-btn .ico { width: 26px; height: 26px; } }

.a11y-panel {
  position: fixed;
  inset-block: 0 auto;
  inset-inline-end: 0;
  z-index: 1100;
  width: min(360px, 92vw);
  max-height: 100dvh;
  overflow-y: auto;
  background: var(--white);
  border-inline-start: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  padding: 1.4rem 1.3rem 2.5rem;
  /* הפאנל מעוגן ל-inset-inline-end: ב-LTR זהו צד ימין ולכן מוסתר ימינה,
     וב-RTL זהו צד שמאל ולכן מוסתר שמאלה. transform הוא פיזי — לכן שני הכיוונים. */
  transform: translateX(102%);
  visibility: hidden;
  transition: transform .38s var(--ease), visibility .38s;
  height: 100dvh;
}
[dir="rtl"] .a11y-panel { transform: translateX(-102%); }
.a11y-panel.is-open { transform: translateX(0) !important; visibility: visible; }
.a11y-panel__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: .4rem; }
.a11y-panel__head h2 { font-size: 1.25rem; margin: 0; }
.a11y-panel__intro { font-size: .85rem; color: var(--text-muted); margin-bottom: 1.2rem; }
.a11y-close {
  width: 44px; height: 44px; display: grid; place-items: center;
  background: var(--cream); border: 1px solid var(--line); border-radius: 50%;
  color: var(--plum); cursor: pointer; flex: none;
}
.a11y-close .ico { width: 20px; height: 20px; }

.a11y-group { margin-bottom: 1.4rem; }
.a11y-group h3 { font-size: .8rem; letter-spacing: .12em; color: var(--brass); font-family: var(--font-body); font-weight: 700; margin-bottom: .7rem; }
.a11y-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
.a11y-opt {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .35rem;
  padding: .8rem .5rem; min-height: 76px;
  background: var(--ivory);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-s);
  font-family: var(--font-body); font-size: .82rem; font-weight: 600; color: var(--text);
  text-align: center; cursor: pointer; line-height: 1.25;
  transition: all .2s var(--ease);
}
.a11y-opt .ico { width: 22px; height: 22px; color: var(--olive); }
.a11y-opt:hover { border-color: var(--brass); background: var(--cream); }
.a11y-opt[aria-pressed="true"] { background: var(--plum); border-color: var(--plum); color: var(--ivory); }
.a11y-opt[aria-pressed="true"] .ico { color: var(--brass-light); }

.a11y-stepper { display: flex; align-items: center; gap: .5rem; }
.a11y-stepper button {
  width: 48px; height: 48px; flex: none;
  display: grid; place-items: center;
  background: var(--ivory); border: 1px solid var(--line-strong); border-radius: var(--radius-s);
  font-size: 1.3rem; font-weight: 700; color: var(--plum); cursor: pointer;
  font-family: var(--font-body);
}
.a11y-stepper button:hover { border-color: var(--brass); background: var(--cream); }
.a11y-stepper output {
  flex: 1; text-align: center; font-weight: 700; color: var(--plum);
  background: var(--cream); border-radius: var(--radius-s); padding: .75rem; font-size: .95rem;
}
.a11y-panel__foot { display: grid; gap: .6rem; margin-block-start: 1.6rem; }
.a11y-panel__foot .btn { width: 100%; }
.a11y-panel__foot a { font-size: .88rem; text-align: center; }

/* מדריך קריאה */
.reading-guide {
  position: fixed; inset-inline: 0; z-index: 1040;
  height: 20px;
  background: rgba(62,47,53,.85);
  border-block: 2px solid var(--brass-light);
  pointer-events: none; display: none;
}
html.a11y-guide .reading-guide { display: block; }

/* ---------- 21. מצבי נגישות ---------- */
/* ניגודיות כהה */
html.a11y-dark {
  --bg: #12100F; --bg-alt: #1A1715; --surface: #1E1A18;
  --text: #F6F1EA; --text-muted: #D6CCC1;
  --plum: #F6F1EA; --plum-light: #E6DCD2;
  --ivory: #12100F; --cream: #1A1715; --sand: #262120; --sand-deep: #332C29;
  --brass: #E0BE86; --brass-soft: #A98756; --brass-light: #EED3A3; --olive: #A9BC97; --rose: #E0B5AE;
  --line: rgba(224,190,134,.4); --line-strong: rgba(246,241,234,.32);
  --accent: #E0BE86; --accent-text: #12100F;
}
html.a11y-dark body { background: #12100F; }
html.a11y-dark .header { background: rgba(18,16,15,.94); }
html.a11y-dark .trust, html.a11y-dark .footer, html.a11y-dark .booking__aside { background: #1E1A18; color: #F6F1EA; }
html.a11y-dark .booking__aside p, html.a11y-dark .footer { color: #E4DAD0; }
html.a11y-dark .btn { --btn-bg: #E0BE86; --btn-fg: #12100F; --btn-bd: #E0BE86; }
html.a11y-dark .btn--ghost { --btn-bg: transparent; --btn-fg: #F6F1EA; --btn-bd: #F6F1EA; }
html.a11y-dark .filter[aria-pressed="true"],
html.a11y-dark .a11y-opt[aria-pressed="true"] { background: #E0BE86; border-color: #E0BE86; color: #12100F; }
html.a11y-dark .a11y-opt[aria-pressed="true"] .ico { color: #12100F; }
html.a11y-dark .actionbar, html.a11y-dark .cookie, html.a11y-dark .a11y-panel { background: #1E1A18; }
html.a11y-dark .gallery__cap { background: linear-gradient(to top, rgba(0,0,0,.9), rgba(0,0,0,0)); }
html.a11y-dark .hero { background: #12100F; }
html.a11y-dark img:not([src*="favicon"]) { filter: brightness(.86) contrast(1.05); }

/* ניגודיות גבוהה בהירה */
html.a11y-light {
  --bg: #FFFFFF; --bg-alt: #FFFFFF; --surface: #FFFFFF;
  --text: #000000; --text-muted: #1A1A1A;
  --plum: #000000; --plum-light: #1A1A1A;
  --ivory: #FFFFFF; --cream: #FFFFFF; --sand: #F0F0F0; --sand-deep: #E0E0E0;
  --brass: #6A4A0F; --brass-soft: #000000; --brass-light: #6A4A0F; --olive: #12400F; --rose: #7A2430;
  --line: #000000; --line-strong: #000000;
}
html.a11y-light body { background: #fff; }
html.a11y-light .hero, html.a11y-light .section--alt, html.a11y-light .section--sand { background: #fff; }
html.a11y-light .trust, html.a11y-light .footer, html.a11y-light .booking__aside { background: #000; color: #fff; }
html.a11y-light .footer a, html.a11y-light .booking__aside p, html.a11y-light .footer { color: #fff; }
html.a11y-light .btn { --btn-bg: #000; --btn-fg: #fff; --btn-bd: #000; }
html.a11y-light .btn--ghost { --btn-bg: #fff; --btn-fg: #000; --btn-bd: #000; }
html.a11y-light * { text-shadow: none !important; }
html.a11y-light .service, html.a11y-light .review, html.a11y-light .form, html.a11y-light .faq details { border-width: 2px; }

/* מונוכרום */
html.a11y-mono img, html.a11y-mono video, html.a11y-mono .logo__mark, html.a11y-mono .hero__figure,
html.a11y-mono .about__figure, html.a11y-mono .gallery__item { filter: grayscale(1); }
html.a11y-mono {
  --brass: #5C5C5C; --brass-soft: #B0B0B0; --brass-light: #B8B8B8; --olive: #4A4A4A; --rose: #7A7A7A;
  --sand: #E8E8E8; --sand-deep: #D4D4D4; --cream: #F2F2F2; --rose-soft: #EDEDED;
  --plum: #262626; --plum-light: #3D3D3D;
}

/* גופן קריא */
html.a11y-readable, html.a11y-readable body,
html.a11y-readable h1, html.a11y-readable h2, html.a11y-readable h3, html.a11y-readable h4,
html.a11y-readable .btn, html.a11y-readable input, html.a11y-readable select, html.a11y-readable textarea {
  font-family: Arial, "Segoe UI", Tahoma, sans-serif !important;
  font-style: normal !important;
}
html.a11y-readable .signature, html.a11y-readable .hero__title .accent { font-style: normal !important; }

/* ריווח טקסט מוגדל */
html.a11y-spacing { --lh-base: 2.1; --ls-extra: .06em; }
html.a11y-spacing p, html.a11y-spacing li, html.a11y-spacing .lead { word-spacing: .18em; }
html.a11y-spacing h1, html.a11y-spacing h2, html.a11y-spacing h3 { line-height: 1.5; }

/* הדגשת קישורים */
html.a11y-links a { text-decoration: underline !important; text-underline-offset: 3px; font-weight: 600; }
html.a11y-links .btn, html.a11y-links .nav__link { text-decoration: underline !important; }

/* הדגשת כותרות */
html.a11y-heads h1, html.a11y-heads h2, html.a11y-heads h3, html.a11y-heads h4 {
  background: #FFF3C4; color: #1A1A1A !important; padding: .15em .35em; border-inline-start: 5px solid #B08D57;
}

/* סמן גדול */
html.a11y-cursor, html.a11y-cursor * {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cpath d='M8 4 L8 38 L16 30 L21 42 L28 39 L23 27 L34 27 Z' fill='%23000' stroke='%23fff' stroke-width='2.5'/%3E%3C/svg%3E") 6 4, auto !important;
}

/* הדגשת מיקוד */
html.a11y-focus :where(a, button, input, select, textarea, summary, [tabindex]):focus {
  outline: 4px solid #C0392B !important;
  outline-offset: 3px !important;
  background: #FFF7C2 !important;
  color: #1A1A1A !important;
}

/* עצירת אנימציות */
html.a11y-static *, html.a11y-static *::before, html.a11y-static *::after {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}
html.a11y-static .reveal { opacity: 1 !important; transform: none !important; }

/* ---------- 22. אנימציית חשיפה ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .09s; }
.reveal[data-delay="2"] { transition-delay: .18s; }
.reveal[data-delay="3"] { transition-delay: .27s; }
.reveal[data-delay="4"] { transition-delay: .36s; }

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

/* ---------- 23. עמודי תוכן (נגישות / פרטיות) ---------- */
.page-hero {
  padding-block: calc(var(--header-h) + 3.5rem) 3rem;
  background: linear-gradient(180deg, var(--cream), var(--ivory));
  text-align: center;
}
.page-hero p { color: var(--text-muted); max-width: 60ch; margin-inline: auto; }

.prose { font-size: 1.03rem; }
.prose h2 { margin-block-start: 2.6rem; padding-block-end: .5rem; border-block-end: 1px solid var(--line); }
.prose h3 { margin-block-start: 1.8rem; }
.prose ul, .prose ol { margin-block: 0 1.2em; }
.prose li { margin-block-end: .5em; }
.prose table { width: 100%; border-collapse: collapse; margin-block: 1rem 1.6rem; font-size: .95rem; }
.prose th, .prose td { border: 1px solid var(--line); padding: .7rem .8rem; text-align: start; vertical-align: top; }
.prose th { background: var(--cream); color: var(--plum); }
.callout {
  background: var(--cream);
  border-inline-start: 4px solid var(--brass);
  border-radius: var(--radius-s);
  padding: 1.2rem 1.4rem;
  margin-block: 1.6rem;
}
.callout p:last-child { margin-bottom: 0; }
.breadcrumb { font-size: .88rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.breadcrumb a { color: var(--text-muted); }

/* ---------- 24. הדפסה ---------- */
@media print {
  .header, .actionbar, .cookie, .a11y-btn, .a11y-panel, .lightbox, .map-box, .nav-toggle { display: none !important; }
  body { background: #fff; color: #000; padding: 0; }
  .section { padding-block: 1.5rem; break-inside: avoid; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .8em; }
}
