/* ==========================================================================
   הבית של נעמה — ערכה 1: "מרווה ואבן" (Sage & Stone)  [ברירת המחדל]
   מרווה/זית רך, אבן חמה, דיו זית עמוק. שלווה, בוטני, אוורירי.
   כדי להשתמש: שנו את שם הקובץ ל-style.css (או עדכנו את הקישור ב-HTML).
   ========================================================================== */

:root {
  --bg:        #f6f5ef;
  --bg-soft:   #eeece2;
  --bg-card:   #fbfaf5;
  --ink:       #2e342a;
  --ink-soft:  #5f6555;
  --line:      #ddd9c9;
  --sage:      #8c9a79;
  --olive:     #6b7853;
  --olive-deep:#49543a;
  --gold:      #b69257;
  --wa:        #1fa855;
  --wa-deep:   #17853f;

  --maxw: 1180px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 12px 34px rgba(46, 52, 42, .10);
  --shadow-soft: 0 6px 18px rgba(46, 52, 42, .07);

  --font-head: "Frank Ruhl Libre", Georgia, serif;
  --font-body: "Heebo", system-ui, "Segoe UI", Arial, sans-serif;
}

/* ----------------------------- איפוס בסיסי ----------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.75;
  font-size: 17px;
  font-weight: 400;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 .5em;
  letter-spacing: -.2px;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); }
p  { margin: 0 0 1.1em; }

/* ----------------------------- עזרי פריסה ----------------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }
.section { padding-block: clamp(56px, 9vw, 110px); }
.section--soft { background: var(--bg-soft); }
.center { text-align: center; }
.narrow { max-width: 720px; margin-inline: auto; }
.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 3px;
  font-size: .8rem;
  color: var(--olive);
  margin: 0 0 14px;
  display: inline-block;
}
.lead { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--ink-soft); }
.divider-leaf { color: var(--gold); font-size: 1.3rem; margin: 6px 0 18px; }

.skip-link {
  position: absolute; right: 0; top: -60px;
  background: var(--olive-deep); color: #fff; padding: 10px 18px;
  border-radius: 0 0 10px 10px; z-index: 1000; transition: top .2s;
}
.skip-link:focus { top: 0; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 6px; }

/* ----------------------------- כפתורים ----------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 1.02rem;
  padding: 14px 30px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-wa { background: var(--wa); color: #fff; box-shadow: 0 8px 20px rgba(31,168,85,.28); }
.btn-wa:hover { background: var(--wa-deep); box-shadow: 0 12px 26px rgba(31,168,85,.36); }
.btn-wa svg { width: 21px; height: 21px; fill: #fff; }
.btn-olive { background: var(--olive); color: #fff; }
.btn-olive:hover { background: var(--olive-deep); }
.btn-ghost { background: transparent; color: var(--olive-deep); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--olive); background: var(--bg-card); }
.btn-lg { padding: 17px 38px; font-size: 1.1rem; }

/* ----------------------------- כותרת עליונה ----------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246,245,239,.86);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand .mark {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--olive); color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-head); font-size: 1.35rem; line-height: 1;
  box-shadow: var(--shadow-soft);
}
.brand .brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand .brand-name { font-family: var(--font-head); font-size: 1.3rem; color: var(--ink); }
.brand .brand-sub { font-size: .72rem; color: var(--ink-soft); letter-spacing: 1px; }
.nav { display: flex; align-items: center; gap: 6px; }
.nav a { padding: 9px 14px; border-radius: 999px; font-weight: 500; color: var(--ink-soft); transition: color .15s, background .15s; }
.nav a:hover { color: var(--olive-deep); background: var(--bg-soft); }
.nav a.active { color: var(--olive-deep); font-weight: 600; }
.header-cta { margin-inline-start: 6px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; width: 46px; height: 46px; padding: 10px; border-radius: 12px; }
.nav-toggle span { display: block; height: 2.5px; background: var(--ink); border-radius: 3px; margin: 5px 0; transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7.5px) rotate(-45deg); }
@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: 76px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--bg); border-bottom: 1px solid var(--line);
    padding: 14px 22px 24px; box-shadow: var(--shadow);
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: .22s;
  }
  .nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav a { padding: 13px 10px; font-size: 1.1rem; }
  .header-cta { margin: 10px 0 0; justify-content: center; }
}

/* ----------------------------- גיבור ----------------------------- */
.hero { position: relative; }
.hero-media { position: relative; height: clamp(460px, 78vh, 760px); overflow: hidden; }
.hero-media video, .hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(40,46,36,.30) 0%, rgba(40,46,36,.20) 40%, rgba(40,46,36,.62) 100%);
}
.hero-content { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: center; color: #fff; text-align: center; padding: 24px; }
.hero-content .container { width: 100%; }
.hero h1 { color: #fff; text-shadow: 0 2px 26px rgba(0,0,0,.35); max-width: 16ch; margin-inline: auto; }
.hero .eyebrow { color: #f3ead2; }
.hero p { color: #f4f2ea; font-size: clamp(1.05rem, 2.2vw, 1.3rem); max-width: 44ch; margin-inline: auto; text-shadow: 0 2px 16px rgba(0,0,0,.35); }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }

.section-head { max-width: 680px; margin: 0 auto clamp(34px, 5vw, 56px); text-align: center; }

/* ----------------------------- גלריה ----------------------------- */
.gallery { columns: 3 240px; column-gap: 16px; }
.gallery figure { margin: 0 0 16px; break-inside: avoid; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); position: relative; background: var(--bg-soft); }
.gallery img { width: 100%; height: auto; transition: transform .6s ease; }
.gallery figure:hover img { transform: scale(1.05); }
.gallery figcaption { position: absolute; inset-inline: 0; bottom: 0; padding: 26px 16px 12px; color: #fff; font-size: .92rem; background: linear-gradient(transparent, rgba(34,40,30,.72)); opacity: 0; transition: opacity .25s; }
.gallery figure:hover figcaption, .gallery figure:focus-within figcaption { opacity: 1; }

.plate-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.plate-grid figure { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); aspect-ratio: 1/1; }
.plate-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.plate-grid figure:hover img { transform: scale(1.06); }

/* ----------------------------- כרטיסים ----------------------------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; }
.exp-card { background: var(--bg-card); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; border: 1px solid var(--line); }
.exp-card .card-img { aspect-ratio: 16/11; overflow: hidden; }
.exp-card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.exp-card:hover .card-img img { transform: scale(1.05); }
.exp-card .card-body { padding: 28px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.exp-card .card-tag { font-size: .82rem; letter-spacing: 1.5px; color: var(--olive); font-weight: 600; margin-bottom: 6px; }
.exp-card h3 { margin-bottom: 8px; }
.exp-card .price { font-family: var(--font-head); font-size: 1.5rem; color: var(--olive-deep); margin: 6px 0 14px; }
.exp-card .price small { font-size: .85rem; color: var(--ink-soft); font-family: var(--font-body); }
.exp-card .card-actions { margin-top: auto; padding-top: 18px; }

/* ----------------------------- בלוק חוויה ----------------------------- */
.offer { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.offer.reverse { direction: ltr; }
.offer.reverse > * { direction: rtl; }
.offer-media { position: relative; }
.offer-media .stack { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.offer-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/4; }
.offer-media .stack .tall { grid-row: span 2; aspect-ratio: 3/5; }
.offer-badge { display: inline-block; background: var(--olive); color: #fff; padding: 6px 16px; border-radius: 999px; font-size: .82rem; font-weight: 600; letter-spacing: 1px; margin-bottom: 14px; }
.offer .price-line { font-family: var(--font-head); font-size: 1.7rem; color: var(--olive-deep); margin: 4px 0 6px; }
.offer .price-line small { font-family: var(--font-body); font-size: .9rem; color: var(--ink-soft); font-weight: 400; }

.includes { display: grid; gap: 10px; margin: 18px 0 26px; }
.includes li { position: relative; padding-inline-start: 30px; color: var(--ink-soft); }
.includes li::before { content: ""; position: absolute; inset-inline-start: 0; top: 11px; width: 16px; height: 9px; border-inline-start: 2.5px solid var(--olive); border-bottom: 2.5px solid var(--olive); transform: rotate(-45deg); }

.menu-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.menu-block { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 24px 14px; box-shadow: var(--shadow-soft); }
.menu-block h4 { color: var(--olive-deep); border-bottom: 1px solid var(--line); padding-bottom: 10px; margin-bottom: 14px; }
.menu-block ul li { padding: 5px 0; color: var(--ink-soft); }

.note { background: var(--bg-soft); border-inline-start: 3px solid var(--gold); border-radius: 10px; padding: 16px 20px; color: var(--ink-soft); font-size: .96rem; }

/* ----------------------------- אודות ----------------------------- */
.about-split { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.about-split img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.therapy { background: var(--olive-deep); color: #f3f1e6; border-radius: var(--radius-lg); padding: clamp(34px, 6vw, 66px); position: relative; overflow: hidden; }
.therapy h2, .therapy h3 { color: #fff; }
.therapy .eyebrow { color: var(--gold); }
.therapy p { color: #e3e2d2; }
.therapy .therapy-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; margin-top: 28px; }
.therapy .tcard { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); padding: 22px; }
.therapy .tcard h4 { color: #fff; margin-bottom: 6px; }
.therapy .tcard p { color: #d9d8c8; margin: 0; font-size: .96rem; }

.values { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 22px; }
.value { text-align: center; padding: 8px; }
.value .ic { width: 56px; height: 56px; margin: 0 auto 12px; border-radius: 50%; background: var(--bg-soft); display: grid; place-items: center; color: var(--olive); }
.value .ic svg { width: 28px; height: 28px; stroke: var(--olive); fill: none; stroke-width: 1.7; }

.quote { text-align: center; max-width: 760px; margin-inline: auto; }
.quote blockquote { font-family: var(--font-head); font-size: clamp(1.4rem, 3vw, 2.1rem); line-height: 1.5; color: var(--olive-deep); margin: 0; }
.quote .who { margin-top: 18px; color: var(--ink-soft); font-weight: 600; }

/* ----------------------------- צור קשר ----------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 54px); align-items: start; }
.contact-list { display: grid; gap: 16px; margin: 0 0 26px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; box-shadow: var(--shadow-soft); }
.contact-item .ci-ic { flex: none; width: 46px; height: 46px; border-radius: 12px; background: var(--bg-soft); display: grid; place-items: center; color: var(--olive); }
.contact-item .ci-ic svg { width: 24px; height: 24px; }
.contact-item h4 { margin: 0 0 2px; }
.contact-item a, .contact-item span { color: var(--ink-soft); }
.contact-item a:hover { color: var(--olive-deep); }

.form { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 38px); box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; margin-bottom: 7px; color: var(--ink); font-size: .96rem; }
.field input, .field textarea, .field select { width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink); background: var(--bg); border: 1.5px solid var(--line); border-radius: 12px; padding: 13px 15px; transition: border-color .15s, box-shadow .15s; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--olive); box-shadow: 0 0 0 3px rgba(107,120,83,.16); }
.field textarea { min-height: 120px; resize: vertical; }
.form .hint { font-size: .85rem; color: var(--ink-soft); margin-top: 14px; }
.form-status { margin-top: 14px; font-weight: 600; color: var(--olive-deep); }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 360px; border: 0; display: block; }

/* ----------------------------- רצועת CTA ----------------------------- */
.cta-band { background: var(--olive); color: #fff; text-align: center; border-radius: var(--radius-lg); padding: clamp(36px, 6vw, 64px); box-shadow: var(--shadow); }
.cta-band h2 { color: #fff; }
.cta-band p { color: #eef0e4; max-width: 50ch; margin-inline: auto; }
.cta-band .hero-actions { margin-top: 22px; }

/* ----------------------------- כותרת תחתונה ----------------------------- */
.site-footer { background: var(--olive-deep); color: #e7e6d8; padding-block: 56px 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
.site-footer h4 { color: #fff; margin-bottom: 14px; font-family: var(--font-body); font-weight: 600; font-size: 1rem; letter-spacing: .5px; }
.site-footer a { color: #d8d7c7; }
.site-footer a:hover { color: #fff; }
.site-footer .brand .brand-name, .site-footer .brand .brand-sub { color: #fff; }
.site-footer .mark { background: rgba(255,255,255,.14); }
.footer-links li { margin-bottom: 9px; }
.footer-social { display: flex; gap: 12px; margin-top: 6px; }
.footer-social a { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.10); display: grid; place-items: center; transition: background .2s; }
.footer-social a:hover { background: rgba(255,255,255,.22); }
.footer-social svg { width: 20px; height: 20px; fill: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); margin-top: 36px; padding-top: 20px; text-align: center; font-size: .86rem; color: #c7c6b6; }

/* ----------------------------- וואטסאפ צף ----------------------------- */
.wa-float { position: fixed; bottom: 22px; inset-inline-start: 22px; z-index: 200; width: 60px; height: 60px; border-radius: 50%; background: var(--wa); color: #fff; display: grid; place-items: center; box-shadow: 0 10px 26px rgba(31,168,85,.42); transition: transform .2s, box-shadow .2s; }
.wa-float:hover { transform: scale(1.07); box-shadow: 0 14px 30px rgba(31,168,85,.5); }
.wa-float svg { width: 32px; height: 32px; fill: #fff; }
.wa-float::after { content: "דברו איתי בוואטסאפ"; position: absolute; inset-inline-start: 72px; white-space: nowrap; background: var(--ink); color: #fff; padding: 8px 14px; border-radius: 10px; font-size: .85rem; opacity: 0; pointer-events: none; transition: opacity .2s; box-shadow: var(--shadow-soft); }
.wa-float:hover::after { opacity: 1; }
@media (max-width: 600px) { .wa-float::after { display: none; } }

/* ----------------------------- תגיות ----------------------------- */
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 8px; }
.tag { background: var(--bg-soft); border: 1px solid var(--line); color: var(--ink-soft); padding: 7px 16px; border-radius: 999px; font-size: .9rem; }
.tag--green { background: rgba(107,120,83,.12); color: var(--olive-deep); border-color: rgba(107,120,83,.25); }

img[loading="lazy"] { background: var(--bg-soft); }

/* ----------------------------- רספונסיביות ----------------------------- */
@media (max-width: 860px) {
  .offer, .about-split, .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .offer.reverse { direction: rtl; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand-col { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  body { font-size: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .offer-media .stack { grid-template-columns: 1fr 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
