/* ורד נאור · אמנות אפוקסי
   שמנת · ירוק כהה · צהוב פרחוני · נגיעות ורוד */

:root {
  --cream-1: #FFFAF1;
  --cream-2: #F8F1E5;
  --cream-3: #F4EBDA;
  --card: #FFFFFF;

  --green-900: #213B32;
  --green-800: #2B4A3F;
  --green-700: #35594A;

  --text: #2C2C2C;
  --text-soft: #5C5F57;
  --on-dark: #FBF7EE;
  --on-dark-soft: rgba(251, 247, 238, .78);

  --gold: #C9A45C;
  --yellow: #EDB23A;
  --yellow-soft: #F7E3A8;
  --pink: #D9798F;
  --pink-soft: #F6DEE3;
  --pink-ink: #A8435F;

  --line: rgba(33, 59, 50, .13);
  --line-strong: rgba(33, 59, 50, .3);
  --focus: #A8435F;

  /* Rubik: החלופה החינמית הקרובה ל-Discovery FS (גופן בתשלום). אם יירכש רישיון web, מחליפים כאן */
  --font-display: "Rubik", "Assistant", Arial, sans-serif;
  --font-body: "Assistant", "Rubik", Arial, sans-serif;

  --gutter: clamp(20px, 5vw, 48px);
  --wrap: min(1160px, 100% - 2 * var(--gutter));
  --header-h: 70px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  color-scheme: light;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  background: var(--cream-1);
  color: var(--text);
  font-family: var(--font-body);
  font-size: clamp(1.0625rem, 1rem + .2vw, 1.15rem);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
svg { flex: none; }

h1, h2, h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  text-wrap: balance;
}
p { margin: 0 0 1em; text-wrap: pretty; }

.wrap { width: var(--wrap); margin-inline: auto; }

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

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

.skip-link {
  position: absolute;
  top: -120px;
  right: 16px;
  z-index: 100;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--green-900);
  color: var(--on-dark);
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { top: 12px; }

/* ---------- כפתורים ---------- */

.btn {
  --btn-bg: var(--green-900);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  min-height: 52px;
  padding: .8em 1.9em;
  border: 0;
  border-radius: 6px;
  background: var(--btn-bg);
  color: var(--on-dark);
  font: 500 1.08rem/1.2 var(--font-body);
  text-decoration: none;
  cursor: pointer;
  transition: background-color .25s, box-shadow .25s, transform .25s var(--ease);
}
.btn svg { width: 1.25em; height: 1.25em; }
.btn:hover { --btn-bg: var(--green-800); transform: translateY(-1px); }

/* כפתור עם מסגרת פנימית דקה */
.btn-framed {
  box-shadow: inset 0 0 0 3px var(--btn-bg), inset 0 0 0 4px var(--gold);
}
.btn-sun {
  --btn-bg: var(--yellow);
  color: var(--green-900);
  box-shadow: inset 0 0 0 3px var(--btn-bg), inset 0 0 0 4px rgba(33, 59, 50, .45);
}
.btn-sun:hover { --btn-bg: #F4C458; }

.btn-pill { border-radius: 999px; min-height: 42px; padding: .5em 1.3em; font-size: .98rem; font-weight: 500; }
.btn-large { min-height: 60px; padding: .9em 2.3em; font-size: 1.15rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  color: var(--green-700);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 6px;
}
.link-arrow svg { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.link-arrow:hover svg { transform: translateX(-4px); }

/* ---------- פס טיוטה וסימוני השלמה ---------- */

.draft-banner {
  background: #FBEFCB;
  border-bottom: 1.5px dashed #B98A1A;
  color: #4E3A0C;
  font-size: .95rem;
  line-height: 1.5;
}
.draft-banner .wrap { padding-block: 10px; }
.draft-banner summary { cursor: pointer; font-weight: 500; }
.draft-banner summary strong { color: #7A2E44; }
.draft-banner ul { margin: 8px 0 4px; padding-inline-start: 1.2em; }

.todo { display: none; }
.show-todos .todo {
  display: block;
  margin: 0 0 1em;
  padding: 10px 14px;
  border: 1.5px dashed var(--pink-ink);
  border-radius: 10px;
  background: rgba(246, 222, 227, .65);
  color: #6E2239;
  font-size: .95rem;
  line-height: 1.55;
  text-align: start;
}
.show-todos .todo::before { content: "להשלמה לפני פרסום: "; font-weight: 700; }
.show-todos .todo-inline { display: inline-block; margin: 2px 0 0; padding: 4px 10px; font-size: .9rem; }

/* ---------- כותרת עליונה ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  -webkit-backdrop-filter: saturate(1.2) blur(12px);
  backdrop-filter: saturate(1.2) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -26px rgba(33, 59, 50, .5);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--green-900);
}
.brand-logo { width: auto; height: 54px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name { font-weight: 700; font-size: 1.12rem; }
.brand-sub { font-size: .82rem; color: var(--text-soft); }

.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav ul { display: flex; gap: 26px; margin: 0; padding: 0; list-style: none; }
.site-nav a:not(.btn) {
  position: relative;
  padding: 6px 0;
  font-size: 1rem;
  color: var(--text);
  text-decoration: none;
}
.site-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}
.site-nav a:not(.btn):hover::after,
.site-nav a[aria-current="true"]::after { transform: scaleX(1); }

.header-cta { display: none; }
.nav-toggle { display: none; }

/* במחשב: קישורי התפריט ממורכזים ביחס לכל רוחב הכותרת (הלוגו מימין, וואטסאפ משמאל) */
@media (min-width: 920px) {
  .header-inner { position: relative; }
  .site-nav ul { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
}

@media (max-width: 919px) {
  :root { --header-h: 64px; }
  .brand-logo { height: 46px; }
  .brand-text { display: none; }

  .header-cta { display: inline-flex; }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .bars, .bars::before, .bars::after {
    display: block;
    width: 22px;
    height: 1.7px;
    background: var(--green-900);
    transition: transform .3s var(--ease), background-color .2s;
  }
  .bars { position: relative; }
  .bars::before, .bars::after { content: ""; position: absolute; inset-inline: 0; }
  .bars::before { top: -7px; }
  .bars::after { top: 7px; }
  .nav-toggle[aria-expanded="true"] .bars { background: transparent; }
  .nav-toggle[aria-expanded="true"] .bars::before { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .bars::after { transform: translateY(-7px) rotate(-45deg); }

  .site-nav {
    position: absolute;
    top: 100%;
    inset-inline: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 4px var(--gutter) 26px;
    background: var(--cream-1);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 30px -24px rgba(33, 59, 50, .35);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity .25s, transform .25s var(--ease), visibility 0s .25s;
  }
  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
    transition: opacity .25s, transform .25s var(--ease);
  }
  .site-nav ul { flex-direction: column; gap: 0; }
  .site-nav li a:not(.btn) {
    display: block;
    padding: 14px 0;
    font-size: 1.15rem;
    border-bottom: 1px solid var(--line);
  }
  .site-nav a:not(.btn)::after { display: none; }
  .site-nav .nav-wa { display: none; }
}

/* ---------- רכיבים משותפים ---------- */

.section { padding-block: clamp(76px, 10vw, 128px); }
.bg-1 { background: var(--cream-1); }
.bg-2 { background: var(--cream-2); }
.bg-dark { background: var(--green-900); color: var(--on-dark); --focus: var(--yellow); }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  color: var(--green-700);
  font-size: clamp(1rem, .95rem + .3vw, 1.18rem);
  font-weight: 500;
}
.kicker::before,
.kicker::after {
  content: "";
  width: clamp(28px, 6vw, 60px);
  height: 1px;
  background: var(--gold);
}
.bg-dark .kicker { color: var(--yellow); }

.sprig { width: 36px; height: 22px; color: var(--gold); }

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 680px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  text-align: center;
}
.section-head h2,
.about-text h2 {
  margin: 14px 0 12px;
  color: var(--green-900);
  font-weight: 800;
  font-size: clamp(1.95rem, 1.3rem + 2.2vw, 2.8rem);
}
.section-head p { margin: 0; color: var(--text-soft); }
.bg-dark .section-head h2 { color: var(--on-dark); }
.bg-dark .section-head p { color: var(--on-dark-soft); }

.frame {
  padding: clamp(7px, .9vw, 10px);
  background: var(--card);
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(33, 59, 50, .07), 0 24px 46px -30px rgba(33, 59, 50, .5);
}
.frame img { width: 100%; border-radius: 5px; }

/* ---------- פתיחה עם וידאו ---------- */

.hero {
  position: relative;
  overflow: clip;
  padding-bottom: clamp(70px, 9vw, 120px);
  background: var(--cream-3);
}
.hero-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: min(76svh, 860px);
  overflow: hidden;
  background: var(--cream-3);
}
/* הווידאו נגמר 2px מעל תחתית המסגרת: שכבת הווידאו מעוגלת לפיקסלים אחרת מהמעבר לשמנת,
   ובלי זה נשאר קו כהה דק בתחתית */
.hero-video {
  position: absolute;
  inset: 0 0 auto;
  width: 100%;
  height: calc(100% - 2px);
  object-fit: cover;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(to bottom, rgba(244, 235, 218, 0), var(--cream-3));
  pointer-events: none;
}
.video-toggle {
  position: absolute;
  z-index: 2;
  top: 14px;
  inset-inline-end: 14px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 250, 241, .88);
  color: var(--green-900);
  box-shadow: 0 6px 16px -8px rgba(0, 0, 0, .45);
  cursor: pointer;
}
.video-toggle svg { width: 20px; height: 20px; }
.video-toggle .i-play { display: none; }
.video-toggle.is-paused .i-play { display: block; }
.video-toggle.is-paused .i-pause { display: none; }

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: clamp(-120px, -7vw, -28px);
  text-align: center;
}
.hero h1 {
  margin: 16px 0 4px;
  color: var(--green-900);
  font-weight: 700;
  font-size: clamp(2.5rem, 1.4rem + 4.6vw, 4.9rem);
  line-height: 1.1;
}
.h1-accent { color: var(--pink-ink); }
.hero .sprig { margin: 14px 0 18px; }
.lead {
  max-width: 48ch;
  margin: 0 auto 30px;
  color: var(--text-soft);
  font-size: clamp(1.08rem, 1rem + .35vw, 1.26rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 26px;
}
.hero-note { margin: 22px 0 0; color: var(--text-soft); font-size: .95rem; }

.hero-arc {
  position: absolute;
  z-index: 0;
  width: clamp(220px, 34vw, 480px);
  height: auto;
  color: var(--gold);
  opacity: .55;
  pointer-events: none;
}
.hero-arc-a { bottom: 30px; left: -40px; }
.hero-arc-b { bottom: 90px; right: -60px; transform: scaleX(-1); opacity: .35; }

/* אנימציית כניסה עדינה */
@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
.js .hero-content > * { animation: rise .9s var(--ease) both; }
.js .hero-content > :nth-child(2) { animation-delay: .08s; }
.js .hero-content > :nth-child(3) { animation-delay: .14s; }
.js .hero-content > :nth-child(4) { animation-delay: .2s; }
.js .hero-content > :nth-child(5) { animation-delay: .26s; }
.js .hero-content > :nth-child(6) { animation-delay: .32s; }

/* התוכן גלוי תמיד: רק תזוזה עדינה כשהחלק נכנס למסך */
.js .reveal {
  transform: translateY(14px);
  transition: transform .9s var(--ease);
}
.js .reveal.is-in { transform: none; }

/* ---------- מי אני ---------- */

.about-grid { display: grid; gap: clamp(44px, 6vw, 90px); align-items: center; }
@media (min-width: 900px) { .about-grid { grid-template-columns: .82fr 1.18fr; } }

.portrait {
  position: relative;
  isolation: isolate;
  justify-self: center;
  width: min(100%, 410px);
  margin: 0 0 18px;
}
.portrait img { width: 100%; border-radius: 999px 999px 16px 16px; }
.portrait::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 16px 16px -16px -16px;
  border: 1px solid var(--gold);
  border-radius: 999px 999px 16px 16px;
}

.about-text .kicker { margin-inline-start: -2px; }
.about-text .kicker::before { display: none; }
.about-text > p:not(.kicker):not(.todo) { max-width: 58ch; color: var(--text-soft); }
.about-quote {
  max-width: 34ch;
  margin: 26px 0 0;
  padding-inline-start: 18px;
  border-inline-start: 2px solid var(--gold);
  color: var(--green-900);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.15rem, 1.05rem + .4vw, 1.35rem);
  line-height: 1.6;
}

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}
.feature {
  padding: 18px 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--cream-2);
  text-align: center;
}
.feature svg { width: 32px; height: 32px; margin: 0 auto 6px; color: var(--gold); }
.feature strong { display: block; color: var(--green-900); font-weight: 700; font-size: 1.05rem; }
.feature span { display: block; color: var(--text-soft); font-size: .92rem; line-height: 1.55; }

/* ---------- תקריבים ---------- */

.details-grid { display: grid; gap: clamp(24px, 3vw, 36px); }
@media (min-width: 760px) { .details-grid { grid-template-columns: repeat(3, 1fr); align-items: start; } }
.detail { margin: 0; }
.detail figcaption {
  margin-top: 14px;
  color: var(--text-soft);
  font-size: .96rem;
  line-height: 1.6;
  text-align: center;
}

/* ---------- שירותים ---------- */

.cards {
  display: grid;
  gap: clamp(20px, 2.4vw, 28px);
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 640px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .cards { grid-template-columns: repeat(3, 1fr); } }

.card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--card);
  box-shadow: 0 18px 40px -32px rgba(33, 59, 50, .5);
}
.card-media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 5;
  background: var(--cream-2);
}
/* contain: היצירה מוצגת במלואה, בלי חיתוך */
.card-media img { width: 100%; height: 100%; object-fit: contain; }
/* רקע בגוון רקע התמונה, לתמונה ריבועית בתוך מסגרת 4:5 */
.card-media--light { background: #DADAD9; }
/* תמונת הקובייה: קיר אפור למעלה, משטח אבן בהיר למטה */
.card-media--cube { background: linear-gradient(to bottom, #C6C4C4 0%, #C6C4C4 50%, #E5DFDA 50%, #E5DFDA 100%); }
.card-body { padding: 22px 22px 26px; }
.card-no { color: var(--pink-ink); font-size: .9rem; font-weight: 700; }
.card h3 { margin: 4px 0 8px; color: var(--green-900); font-weight: 800; font-size: 1.3rem; }
.card p { margin: 0; color: var(--text-soft); font-size: 1rem; line-height: 1.75; }

.card-cta {
  justify-content: center;
  padding: 34px 28px;
  border-color: transparent;
  background: var(--green-900);
  color: var(--on-dark);
  text-align: center;
  --focus: var(--yellow);
}
.card-cta .sprig { margin: 0 auto 10px; }
.card-cta h3 { color: var(--on-dark); font-size: 1.55rem; }
.card-cta p { margin: 0 auto 22px; max-width: 30ch; color: var(--on-dark-soft); }
.card-cta .btn { align-self: center; }

/* ---------- מחירון ---------- */

.prices-card {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(18px, 4vw, 44px) clamp(18px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card);
  box-shadow: 0 18px 40px -32px rgba(33, 59, 50, .5);
}
.price-list { margin: 0; padding: 0; list-style: none; }
.price-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  column-gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.price-name { color: var(--green-900); font-family: var(--font-display); font-weight: 700; font-size: clamp(1.05rem, 1rem + .4vw, 1.25rem); }
.price-leader { min-width: 16px; border-bottom: 2px dotted rgba(201, 164, 92, .75); transform: translateY(-5px); }
.price-value {
  color: var(--pink-ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.1rem, 1rem + .5vw, 1.3rem);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.price-value .shekel { margin-inline-start: 4px; font-weight: 500; font-size: .85em; }
.price-note { grid-column: 1 / -1; margin-top: 2px; color: var(--text-soft); font-size: .95rem; }
.prices-foot { margin: 16px 0 0; color: var(--text-soft); font-size: .95rem; text-align: center; }
.prices-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 24px;
  margin-top: 22px;
}

/* ---------- איך מזמינים ---------- */

.steps {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: st;
}
@media (min-width: 800px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 26px; } }
.step {
  padding: 28px 24px 26px;
  border: 1px solid rgba(251, 247, 238, .16);
  border-radius: 16px;
  background: rgba(255, 255, 255, .03);
  text-align: center;
}
.step::before {
  counter-increment: st;
  content: counter(st);
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin: 0 auto 14px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 300;
}
.step h3 { margin-bottom: 6px; color: var(--on-dark); font-weight: 700; font-size: 1.2rem; }
.step p { margin: 0; color: var(--on-dark-soft); font-size: 1rem; line-height: 1.7; }
.steps-cta { margin-top: 42px; text-align: center; }

/* ---------- גלריה ---------- */

.gallery {
  margin: 0;
  padding: 0;
  list-style: none;
  columns: 1;
  column-gap: clamp(20px, 2.4vw, 30px);
}
@media (min-width: 540px) { .gallery { columns: 2; } }
@media (min-width: 960px) { .gallery { columns: 3; } }

.g-item { break-inside: avoid; margin: 0 0 clamp(28px, 3vw, 40px); }

.g-open {
  display: block;
  width: 100%;
  padding: clamp(7px, .9vw, 10px);
  border: 0;
  border-radius: 10px;
  background: var(--card);
  box-shadow: 0 1px 2px rgba(33, 59, 50, .07), 0 22px 44px -30px rgba(33, 59, 50, .55);
  cursor: zoom-in;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.g-open img { width: 100%; border-radius: 5px; }
.g-open:hover {
  transform: translateY(-3px);
  box-shadow: 0 1px 2px rgba(33, 59, 50, .07), 0 30px 54px -30px rgba(33, 59, 50, .6);
}

.g-meta { display: flex; align-items: baseline; gap: 10px; margin-top: 14px; }
.g-no { color: var(--pink-ink); font-size: .9rem; font-weight: 700; }
.g-title { color: var(--green-900); font-weight: 700; font-size: 1.15rem; }
.g-ask {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding-inline-start: 24px;
  color: var(--green-700);
  font-weight: 500;
  font-size: .98rem;
  text-decoration: none;
}
.g-ask svg { width: 17px; height: 17px; transition: transform .3s var(--ease); }
.g-ask:hover { text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 5px; }
.g-ask:hover svg { transform: translateX(-4px); }

.gallery-group {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0 0 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--green-900);
  font-size: clamp(1.35rem, 1.15rem + .7vw, 1.7rem);
}
.gallery-group span { color: var(--text-soft); font-family: var(--font-body); font-size: .95rem; font-weight: 500; }
.gallery + .gallery-group { margin-top: clamp(40px, 5vw, 64px); }

.gallery-more { margin: 8px 0 0; text-align: center; }
.gallery-more svg { width: 22px; height: 22px; }

/* ---------- שאלות נפוצות ---------- */

.faq-list { max-width: 820px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  list-style: none;
  cursor: pointer;
  color: var(--green-900);
  font-weight: 700;
  font-size: clamp(1.08rem, 1rem + .35vw, 1.25rem);
  line-height: 1.45;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  flex: none;
  width: 32px;
  height: 32px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background:
    linear-gradient(var(--green-900), var(--green-900)) center / 12px 1.5px no-repeat,
    linear-gradient(var(--green-900), var(--green-900)) center / 1.5px 12px no-repeat;
  transition: transform .3s var(--ease), background-color .3s;
}
.faq-item summary:hover::after { background-color: var(--yellow-soft); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 0 22px; max-width: 62ch; color: var(--text-soft); }
.faq-answer p { margin: 0; }
.faq-more { margin-top: 30px; text-align: center; color: var(--text-soft); }
.faq-more a { color: var(--green-700); font-weight: 500; text-decoration-color: var(--gold); text-underline-offset: 5px; }

/* ---------- יצירת קשר ---------- */

.contact { position: relative; overflow: clip; text-align: center; }
.contact-lead { max-width: 46ch; margin: 0 auto 30px; color: var(--on-dark-soft); font-size: 1.08em; }
.contact-list {
  display: grid;
  gap: 14px;
  max-width: 980px;
  margin: 48px auto 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 640px) { .contact-list { grid-template-columns: repeat(3, 1fr); } }
.contact-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 22px 16px;
  border: 1px solid rgba(251, 247, 238, .16);
  border-radius: 14px;
  background: rgba(255, 255, 255, .03);
}
.contact-list li > svg { width: 26px; height: 26px; margin-bottom: 4px; color: var(--yellow); }
.contact-list .label { font-size: .86rem; color: var(--on-dark-soft); }
.contact-list .value {
  color: var(--on-dark);
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  unicode-bidi: plaintext;
}
.contact-list a.value:hover { text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 5px; }
.contact-list .is-hidden { display: none; }
.contact-list li.is-hidden { display: none; }
.show-todos .contact .todo { background: var(--pink-soft); border-color: var(--pink-soft); }
.contact .hero-arc { bottom: auto; top: 40px; opacity: .25; }

/* ---------- תחתית ---------- */

.site-footer {
  padding: 56px 0 44px;
  background: var(--cream-2);
  color: var(--text-soft);
  text-align: center;
}
.footer-inner { display: grid; justify-items: center; gap: 6px; }
.footer-logo { width: 140px; height: auto; margin-bottom: 14px; }
.footer-small { margin: 0; font-size: .92rem; }
.footer-small a { color: var(--green-700); }
@media (max-width: 919px) {
  .site-footer { padding-bottom: calc(104px + env(safe-area-inset-bottom)); }
}

/* ---------- כפתור וואטסאפ קבוע בנייד ---------- */

.wa-float {
  position: fixed;
  z-index: 60;
  left: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom));
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 56px;
  padding: 0 20px 0 18px;
  border-radius: 999px;
  background: var(--green-900);
  color: var(--on-dark);
  font-weight: 700;
  font-size: 1.02rem;
  text-decoration: none;
  box-shadow: 0 0 0 3px rgba(255, 250, 241, .95), 0 14px 30px -12px rgba(33, 59, 50, .7);
  transition: opacity .3s, transform .3s var(--ease), visibility 0s;
}
.wa-float svg { width: 24px; height: 24px; }
.wa-float.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px);
  transition: opacity .3s, transform .3s var(--ease), visibility 0s .3s;
}
@media (min-width: 920px) { .wa-float { display: none; } }

/* ---------- תמונה מוגדלת ---------- */

.lightbox {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
}
.lightbox::backdrop {
  background: rgba(20, 36, 30, .86);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
html:has(.lightbox[open]) { overflow: hidden; }

.lb-inner { display: grid; place-items: center; height: 100%; padding: clamp(10px, 3vw, 40px); }
.lb-card {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, auto) auto;
  width: 100%;
  max-width: 1140px;
  max-height: 100%;
  overflow: auto;
  border-radius: 14px;
  background: var(--cream-1);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .6);
}
.lightbox[open] .lb-card { animation: rise .45s var(--ease) both; }
.lb-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: clamp(12px, 2vw, 24px);
  background: var(--cream-2);
}
.lb-img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 58vh;
  border-radius: 4px;
  transition: opacity .3s;
}
.lb-img.is-loading { opacity: 0; }
.lb-panel { display: flex; flex-direction: column; gap: 12px; padding: 24px 24px 22px; }
.lb-no { display: flex; justify-content: space-between; margin: 0; color: var(--pink-ink); font-weight: 700; }
.lb-count { color: var(--text-soft); font-weight: 400; font-size: .9rem; }
.lb-title { color: var(--green-900); font-weight: 800; font-size: clamp(1.45rem, 1.2rem + 1vw, 1.9rem); }
.lb-desc { margin: 0; color: var(--text-soft); }
.lb-ask { align-self: flex-start; margin-top: 6px; }
.lb-nav {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.lb-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  color: var(--green-900);
  font: 500 .98rem var(--font-body);
  cursor: pointer;
}
.lb-btn:hover { background: rgba(33, 59, 50, .06); }
.lb-btn svg { width: 18px; height: 18px; }
.lb-close {
  position: absolute;
  z-index: 2;
  top: 12px;
  inset-inline-end: 12px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  color: var(--green-900);
  box-shadow: 0 4px 14px -6px rgba(0, 0, 0, .35);
  cursor: pointer;
}
.lb-close svg { width: 22px; height: 22px; }

@media (min-width: 900px) {
  .lb-card {
    grid-template-columns: minmax(0, 1fr) 330px;
    grid-template-rows: minmax(0, 1fr);
    height: min(86vh, 920px);
    overflow: hidden;
  }
  .lb-img { max-height: 100%; }
  .lb-media { height: 100%; }
  .lb-panel { padding: 72px 30px 28px; border-inline-start: 1px solid var(--line); }
}

/* ---------- תנועה מופחתת ---------- */

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