/* ==========================================================================
   עמית פרחן — דולה מוסמכת | Design tokens + מערכת רכיבים
   פלטת המותג נשאבה ישירות מחומרי השיווק של הלקוחה (זית-סאג' + טופ חם) —
   ולא הומצאה — לפי בקשתה המפורשת לשמור על הצבעים שמייצגים אותה. כרטיסים
   עגולים עם צל רך, כפתורי פיל, אייקוני קו דק, ובועות-דיבור להמלצות —
   בהשראת מוקאפ הייחוס שהלקוחה אהבה. תנועה עדינה בסקרול ובכניסת ההירו,
   בכיבוד prefers-reduced-motion.
   ========================================================================== */

:root {
  /* צבעים — קנבס */
  --color-cream: #FAF6EE;
  --color-cream-panel: #F1E9DC;
  --color-white: #FFFFFF;

  /* צבעים — מבטאים (נשאבו מחומרי המותג של הלקוחה) */
  --color-olive: #6E6640;
  --color-olive-deep: #58502F;
  --color-olive-tint: #E7E1B4;
  --color-taupe: #786A5A;
  --color-taupe-deep: #5F5347;
  --color-taupe-tint: #E7DCCF;
  --color-cream-tint: #F8F2E6;

  /* צבעים — טקסט וגבולות */
  --color-text: #2E2822;
  /* 4.5:1 ומעלה גם על גבי cream-panel (דרישת WCAG AA לטקסט רגיל) */
  --color-text-soft: #6B6257;
  --color-border: #E5DAC8;

  /* טיפוגרפיה — מערכת אחידה בכל האתר (נבחרה עם הלקוחה):
     Bellefair — סריף עברי עדין ואוורירי לכותרות,
     Assistant — סאנס חם וקריא לטקסט רץ */
  --font-heading: 'Bellefair', 'Times New Roman', serif;
  --font-body: 'Assistant', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: var(--font-heading);
  /* פונט ייעודי לכותרת ההירו בלבד — סאנס עגול ורך, שמרגיש חם ומחבק
     ומתאים לאופי של הליווי (בשאר האתר הכותרות נשארות בפונט המקורי) */
  --font-hero: 'Varela Round', 'Assistant', sans-serif;

  /* ריווח (סקאלה של 8px) */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;

  /* רדיוסים וצללים */
  --radius-pill: 999px;
  --radius-card: 28px;
  --shadow-soft: 0 16px 36px rgba(59, 50, 43, 0.14);
  --shadow-card: 0 8px 22px rgba(59, 50, 43, 0.08);

  --container-max: 1180px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--color-cream);
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.6;
  direction: rtl;
  text-align: right;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-3);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 var(--space-2);
  color: var(--color-text);
}

h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.2rem; font-weight: 500; }

p { margin: 0 0 var(--space-2); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-olive-deep);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-1);
}

.heart-doodle {
  color: var(--color-taupe);
  margin-block: var(--space-2);
  animation: bob 4s ease-in-out infinite;
}

/* מוסתר חזותית אך נגיש לקוראי מסך ולמנועי חיפוש (למשל h1 שאין לו מקום חזותי) */
.visually-hidden {
  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: var(--space-2);
  top: -60px;
  background: var(--color-text);
  color: #fff;
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-pill);
  z-index: 1000;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: var(--space-2);
}

/* פוקוס נגיש בכל מקום */
a:focus-visible,
button:focus-visible,
.nav-link:focus-visible {
  outline: 3px solid var(--color-olive-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ==========================================================================
   כפתורים — פיל מלא, צל רך, הרמה עדינה במעבר עכבר
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  min-height: 48px;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); }

.btn-primary {
  background: var(--color-taupe);
  color: #fff;
  box-shadow: var(--shadow-card);
}
.btn-primary:hover { background: var(--color-taupe-deep); }

/* כפתור ההירו — בהיר ושקוף-למחצה אך ברור, לפי בקשת אביב */
.hero-actions .btn-primary {
  background: rgba(250, 246, 238, 0.55);
  color: var(--color-text);
  border-color: rgba(95, 83, 71, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: none;
}
.hero-actions .btn-primary:hover {
  background: rgba(250, 246, 238, 0.85);
}

.btn-secondary {
  background: transparent;
  border-color: var(--color-text);
  color: var(--color-text);
}
.btn-secondary:hover {
  background: var(--color-text);
  color: #fff;
}

.btn-small {
  padding: 10px 20px;
  font-size: 0.9rem;
  min-height: 40px;
}

/* ==========================================================================
   פס הכרזה עליון — הצעת הערך שמורידה את חסם הפנייה
   ========================================================================== */

.announcement-bar {
  background: var(--color-taupe-deep);
  color: var(--color-cream);
  text-align: center;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 9px var(--space-2);
}

/* ==========================================================================
   כפתור וואטסאפ צף — זמין בכל שלב בגלילה
   ========================================================================== */

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  inset-inline-end: 20px;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}
.instagram-float {
  position: fixed;
  bottom: 86px;
  inset-inline-end: 20px;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.instagram-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   הדר / ניווט
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 241, 230, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--color-border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  padding-block: var(--space-2);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--color-text);
}
/* הלוגו המלא של עמית (סימן + כיתוב) בהדר */
.brand-logo {
  height: 74px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.main-nav ul {
  list-style: none;
  display: flex;
  gap: var(--space-3);
  margin: 0;
  padding: 0;
}
.nav-link {
  text-decoration: none;
  color: var(--color-text);
  font-size: 0.98rem;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.nav-link:hover,
.nav-link.is-active {
  color: var(--color-olive-deep);
  border-color: var(--color-olive);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
}
.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  margin: 6px auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ==========================================================================
   הירו — תמונה בצורת "בלוב" אורגנית, כניסה מדורגת
   ========================================================================== */

.hero {
  padding-block: var(--space-6) var(--space-5);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--space-5);
  align-items: center;
}
/* טיפוגרפיית ההירו — השם/תפקיד והטאגליין ממורכזים בפונט אחיד ומיוחד */
.hero-text {
  text-align: center;
}
.hero-text .eyebrow,
.hero-text h1 {
  font-family: var(--font-hero);
}
.hero-text .eyebrow {
  font-weight: 600;
  /* הותאם לרוחב האותיות של פונט ההירו כדי שהטאגליין יישאר בשורה אחת */
  font-size: 2.2rem;
  color: var(--color-olive-deep);
  margin-top: -14px;
}
.hero-text h1 {
  font-weight: 400;
  font-size: clamp(2.4rem, 4.2vw, 3.3rem);
  line-height: 1.25;
}
.hero-text .hero-actions {
  justify-content: center;
}
.hero-text .lead {
  font-family: var(--font-body);
  font-size: 1.12rem;
  color: var(--color-text-soft);
  max-width: 46ch;
}
.hero-actions {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-top: var(--space-3);
}
.hero-media {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/5;
  border-radius: 46% 54% 61% 39% / 44% 40% 60% 56%;
}
.hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* וידאו חי בכל המסכים; בהעדפת צמצום תנועה מוצגת התמונה במקומו
   (important כדי לגבור גם על כללי המובייל שמופיעים בהמשך הקובץ) */
.hero-photo { display: none; }
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none !important; }
  .hero-photo { display: block !important; }
}

/* מבנה ההירו בעמודי השירות — תמונה למעלה, מתחתיה הכפתור הממורכז,
   ורק אז הכותרת והטקסט (לפי בקשת עמית: תמונה ← כפתור ← כותרת) */
.page-hero {
  padding-block: var(--space-5);
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: var(--space-3);
}
.page-hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-2);
  max-width: 640px;
}
.page-hero-text .hero-actions {
  order: -1;
  margin: 0;
}
.page-hero-media {
  order: -2;
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/3;
}
.page-hero-text .lead {
  font-size: 1.1rem;
  color: var(--color-text-soft);
  max-width: 46ch;
}
.page-hero-text .format-note {
  font-size: 0.9rem;
  color: var(--color-text-soft);
}
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-olive-deep);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: var(--space-2);
}
.back-link:hover { text-decoration: underline; }

/* ==========================================================================
   כניסה מדורגת של ההירו (אנימציה חד-פעמית בטעינה)
   ========================================================================== */

.hero-text > * {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeInUp 0.7s ease forwards;
}
.hero-text > *:nth-child(1) { animation-delay: 0.05s; }
.hero-text > *:nth-child(2) { animation-delay: 0.15s; }
.hero-text > *:nth-child(3) { animation-delay: 0.25s; }
.hero-text > *:nth-child(4) { animation-delay: 0.32s; }
.hero-text > *:nth-child(5) { animation-delay: 0.4s; }
.hero-media {
  opacity: 0;
  transform: scale(0.96);
  animation: heroImageIn 0.8s ease 0.2s forwards;
}

.page-hero-text > * {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeInUp 0.7s ease forwards;
}
.page-hero-text > *:nth-child(1) { animation-delay: 0.05s; }
.page-hero-text > *:nth-child(2) { animation-delay: 0.15s; }
.page-hero-text > *:nth-child(3) { animation-delay: 0.25s; }
.page-hero-text > *:nth-child(4) { animation-delay: 0.32s; }
.page-hero-media {
  opacity: 0;
  transform: scale(0.96);
  animation: heroImageIn 0.8s ease 0.2s forwards;
}

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroImageIn {
  to { opacity: 1; transform: scale(1); }
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes heroKenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.09); }
}

/* ==========================================================================
   אנימציית סקרול — עדינה, חד-פעמית, מכבדת prefers-reduced-motion
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  transition-delay: calc(var(--reveal-index, 0) * 0.08s);
}

@media (prefers-reduced-motion: reduce) {
  .hero-text > *,
  .hero-media,
  .hero-media img,
  .page-hero-text > *,
  .page-hero-media,
  .service-card h3,
  .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .heart-doodle {
    animation: none !important;
  }
}

/* ==========================================================================
   סקשן כללי
   ========================================================================== */

.section {
  padding-block: var(--space-6);
}
.section-alt {
  background: var(--color-cream-panel);
}
.section-head {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-5);
}

/* ==========================================================================
   השירותים — כרטיסי תמונה לחיצים, מימין לשמאל, וציטוט מסכם
   ========================================================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-2);
  max-width: 820px;
  margin-inline: auto;
}
.service-card {
  display: block;
  text-decoration: none;
  background: var(--color-white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.service-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
/* כותרת הקטגוריה — פס כיתוב מתחת לתמונה, בפונט הרך של המותג
   (לבקשת הלקוחה), לא מסתיר את התמונה כלל */
.service-card h3 {
  margin: 0;
  padding: 12px 10px 16px;
  text-align: center;
  font-family: var(--font-accent);
  font-weight: 400;
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  color: var(--color-text);
  /* כניסה מדורגת — הכותרות צפות פנימה כשהסקשן נחשף */
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.services-grid.is-visible .service-card:nth-child(1) h3 { transition-delay: 0.15s; }
.services-grid.is-visible .service-card:nth-child(2) h3 { transition-delay: 0.3s; }
.services-grid.is-visible .service-card:nth-child(3) h3 { transition-delay: 0.45s; }
.services-grid.is-visible .service-card:nth-child(4) h3 { transition-delay: 0.6s; }
.services-grid.is-visible .service-card h3 {
  opacity: 1;
  transform: translateY(0);
}

.services-quote {
  max-width: 760px;
  margin: var(--space-5) auto 0;
  text-align: center;
  position: relative;
}
.services-quote p {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}
.services-quote p:first-child {
  font-weight: 600;
  color: var(--color-taupe-deep);
}

/* ==========================================================================
   תהליך העבודה — צעדים ממוספרים עם קו מחבר
   ========================================================================== */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
  position: relative;
}
.process-step {
  text-align: center;
  position: relative;
  padding-top: var(--space-2);
}
.process-image {
  position: relative;
  width: 96px;
  height: 96px;
  margin: 0 auto var(--space-2);
}
.process-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--color-cream);
  box-shadow: var(--shadow-card);
  display: block;
}
.process-number {
  position: absolute;
  bottom: -4px;
  left: -4px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-olive);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 0 0 3px var(--color-cream);
  z-index: 1;
}
.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 48px;
  right: calc(50% + 48px);
  width: calc(100% - 96px);
  height: 2px;
  background: var(--color-border);
}
.process-step h3 {
  margin-bottom: 4px;
}
.process-step p {
  font-size: 0.92rem;
  color: var(--color-text-soft);
  margin-bottom: 0;
}

/* ==========================================================================
   מי אני
   ========================================================================== */

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-5);
  align-items: center;
}
.about-media {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/5;
}
.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-media .heart-doodle {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: var(--color-white);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
  margin: 0;
}
.about-text .lead {
  color: var(--color-text-soft);
}

.credentials-row {
  display: flex;
  gap: 10px;
  margin: var(--space-2) 0;
  flex-wrap: wrap;
}
.credential-badge {
  background: var(--color-olive-tint);
  color: var(--color-olive-deep);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}
.hospitals-line {
  font-size: 0.9rem;
  color: var(--color-text-soft);
}
.hospitals-line strong {
  color: var(--color-text);
}

/* ==========================================================================
   מה כולל
   ========================================================================== */

.includes-list {
  list-style: none;
  margin: var(--space-3) 0;
  padding: 0;
  display: grid;
  gap: var(--space-2);
}
.includes-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: var(--space-2);
  box-shadow: var(--shadow-card);
}
.includes-list .check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-olive);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

/* ==========================================================================
   עמודי שירות — גוף טקסט ארוך
   ========================================================================== */

/* גוף הטקסט בעמודי הקטגוריות — גופן וגודל אחידים לכל התוכן */
.article-body {
  max-width: 720px;
  margin-inline: auto;
  font-size: 1.05rem;
}
.question-list {
  list-style: none;
  margin: var(--space-3) 0;
  padding: var(--space-3);
  background: var(--color-cream-tint);
  border-radius: var(--radius-card);
  display: grid;
  gap: 10px;
}

/* ==========================================================================
   המלצות — קיר ביקורות בגוונים מתחלפים (בהשראת קיר הביקורות של בייביפנס)
   ========================================================================== */

.reviews-stats {
  text-align: center;
  color: var(--color-olive-deep);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: calc(-1 * var(--space-4)) auto var(--space-4);
}
.reviews-wall {
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  user-select: none;
  max-width: 100%;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.reviews-wall::-webkit-scrollbar {
  display: none;
}
.reviews-wall.is-dragging {
  cursor: grabbing;
}
.reviews-track {
  display: flex;
  gap: var(--space-3);
  width: max-content;
}
.testimonial-photo {
  height: 420px;
  width: auto;
  max-width: none;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  flex: 0 0 auto;
  -webkit-user-drag: none;
  cursor: zoom-in;
}
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 16, 12, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  z-index: 200;
}
.lightbox[hidden] {
  display: none;
}
.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}
.lightbox-close {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  background: none;
  border: none;
  color: var(--color-cream);
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  padding: var(--space-1);
}
/* ==========================================================================
   באנר CTA — תמונה + טקסט, כמו סקשן הסיום במוקאפ הייחוס
   ========================================================================== */

.cta-banner {
  background: var(--color-white);
  border-radius: 32px;
  padding: var(--space-5);
  box-shadow: var(--shadow-soft);
  text-align: center;
}
.cta-banner--split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: var(--space-5);
  align-items: center;
  padding: var(--space-4);
  text-align: right;
}
.cta-media {
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-text h2 {
  margin-bottom: 4px;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-top: var(--space-3);
}
.cta-banner--split .cta-actions {
  justify-content: flex-start;
}

/* ==========================================================================
   פוטר
   ========================================================================== */

.site-footer {
  padding-block: var(--space-4);
  border-top: 1px solid var(--color-border);
  text-align: center;
  color: var(--color-text-soft);
  font-size: 0.9rem;
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-cream-panel);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--color-text);
  transition: background-color 0.2s ease, color 0.2s ease;
}
.footer-social a:hover {
  background: var(--color-olive);
  color: #fff;
}
/* קישורי טלפון ומייל — הגדלת שטח המגע בלי לשבור את זרימת הטקסט */
.site-footer p a {
  display: inline-block;
  padding: 12px 8px;
  margin-block: -8px;
}

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

@media (max-width: 900px) {
  .about-grid,
  .cta-banner--split {
    grid-template-columns: 1fr;
  }
  .cta-banner--split {
    text-align: center;
  }
  .cta-banner--split .cta-actions {
    justify-content: center;
  }
  .cta-media { order: -1; }

  /* הירו הבית במובייל — הטקסט בתוך התמונה, על רצועת הווילון הבהירה
     שבצד ימין (לא על הגוף של עמית), והכפתור מעוגן בתחתית התמונה */
  .hero {
    padding: 0;
    overflow: hidden;
  }
  .hero-grid {
    display: block;
    position: relative;
    min-height: 640px;
  }
  .hero-media {
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(-1 * var(--space-3));
    right: calc(-1 * var(--space-3));
    width: auto;
    height: auto;
    border-radius: 0;
    aspect-ratio: auto;
    box-shadow: none;
    z-index: 0;
  }
  .hero-media img {
    object-position: center;
    animation: heroKenBurns 9s ease-out forwards;
  }
  /* שכבת הבהרה בחלק העליון — שומרת על קריאות הטקסט מעל הוידאו הנע */
  .hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(250, 246, 238, 0.92) 0%, rgba(250, 246, 238, 0.72) 46%, rgba(250, 246, 238, 0) 72%);
    pointer-events: none;
  }
  .hero-text {
    position: relative;
    z-index: 1;
    min-height: 640px;
    display: flex;
    flex-direction: column;
    padding: var(--space-3) 0;
  }
  /* השם/תפקיד והטאגליין — ממורכזים על כל רוחב התמונה, מעל עמית */
  .hero-text h1 {
    max-width: none;
    font-size: 1.9rem;
  }
  .hero-text .eyebrow {
    max-width: none;
    font-size: 1.4rem;
    margin-top: -10px;
  }
  .hero-text .heart-doodle {
    display: none;
  }
  .hero-text .hero-actions {
    position: absolute;
    bottom: var(--space-3);
    inset-inline: var(--space-2);
    z-index: 1;
    margin: 0;
    justify-content: center;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-step::after { display: none; }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2);
  }
  .testimonial-photo {
    height: 280px;
  }
  .service-card h3 {
    font-size: 1.05rem;
  }
  .main-nav ul {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .main-nav.is-open ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    inset-inline: 0;
    background: var(--color-cream);
    padding: var(--space-2) var(--space-3) var(--space-3);
    border-bottom: 1px solid var(--color-border);
    gap: var(--space-2);
  }
}

@media (max-width: 560px) {
  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2);
  }
  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn {
    justify-content: center;
  }
}
