/* ============================================================
   KARIN STAR — Landing Page
   Palette extracted from the live brand (greens + cream)
   ============================================================ */

:root {
  /* Palette sampled DIRECTLY from the brand logo — only these greens. */
  --forest-900: #184818;   /* logo deepest — text + brand */
  --forest:     #487830;   /* logo mid forest */
  --olive:      #90A830;   /* logo bright olive */
  --olive-600:  #788030;   /* derived darker olive */
  --olive-700:  #607830;   /* deeper olive */
  --lime:       #C0C060;   /* legacy alias — points to logo light */
  --lime-soft:  #D8DC92;   /* lighter highlight derived from logo light */

  /* Accent — fresh healthy leaf green (more saturated than logo light olive,
     which felt yellow-tinted and "not healthy"). Stays in the logo family. */
  --terra:      #8FAE3F;   /* fresh leaf green — healthy, vibrant */
  --terra-600:  #76922F;   /* darker fresh green */
  --terra-700:  #5B7424;   /* deep accent */
  --terra-soft: #B5CD7A;   /* soft light leaf for glows */

  /* Neutrals — page bg only (the logo sits on a transparent / warm-white surface) */
  --cream:      #F6F0E9;
  --cream-deep: #ECE3D6;
  --ink:        #184818;   /* logo deepest as text — strongly branded */
  --ink-soft:   #607830;   /* logo deep-olive for secondary text */
  --white:      #FFFFFF;

  /* Sky blue — picked up from Karin's tank top in the hero (var names kept) */
  --tan:        #9BC9DD;   /* lighter sky blue / תכלת */
  --tan-soft:   #BBD7E2;   /* pastel light blue (close to her tank top) */
  --tan-deep:   #6FA4BF;   /* deeper sky (hover) */

  /* Tokens */
  --bg:         var(--cream);
  --text:       var(--ink);
  --radius:     22px;
  --radius-sm:  14px;
  --radius-lg:  34px;
  --shadow-sm:  0 6px 20px rgba(72,120,48, .08);
  --shadow-md:  0 18px 50px rgba(72,120,48, .14);
  --shadow-lg:  0 30px 80px rgba(24,72,24, .22);
  --ring:       0 0 0 4px rgba(143,174,63, .32);

  --container:  1180px;
  --ease:       cubic-bezier(.16, 1, .3, 1);

  --font: "Assistant", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Assistant", system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 18px;
  font-weight: 500;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.section { position: relative; padding-block: clamp(64px, 9vw, 130px); }

.accent { color: var(--olive-700); }

/* ---------- Grain overlay ---------- */
.grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: .035; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; right: 0; height: 4px; width: 0%;
  background: linear-gradient(90deg, var(--terra), var(--olive-700));
  z-index: 10000; transition: width .1s linear;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  --btn-bg: var(--forest);
  --btn-fg: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5em;
  font-family: var(--font); font-weight: 700; font-size: 1rem;
  padding: .85em 1.7em; border: none; border-radius: 100px;
  background: var(--btn-bg); color: var(--btn-fg);
  cursor: pointer; position: relative; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s;
  -webkit-tap-highlight-color: transparent;
}
.btn::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120px circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,.25), transparent 60%);
  opacity: 0; transition: opacity .3s;
}
.btn:active { transform: translateY(-1px) scale(.99); }
/* Keyboard-only focus ring — never on mouse/touch click (kills sticky focus look) */
.btn:focus { outline: none; }
.btn:focus-visible { outline: 2px solid var(--tan-deep); outline-offset: 2px; }

.btn-lg { font-size: 1.12rem; padding: 1.05em 2.1em; }
.btn-block { width: 100%; }
.btn-pill { padding: .65em 1.4em; font-size: .95rem; }

.btn-primary { --btn-bg: var(--forest); --btn-fg: #fff; box-shadow: var(--shadow-sm); }

.btn-outline {
  --btn-bg: transparent; --btn-fg: var(--forest);
  border: 2px solid rgba(72,120,48,.25);
  box-shadow: none;
}

.btn-ghost {
  --btn-bg: rgba(255,255,255,.6); --btn-fg: var(--forest);
  border: 1.5px solid rgba(72,120,48,.18); backdrop-filter: blur(6px);
}

.btn-wa { --btn-bg: var(--forest-900); --btn-fg:#fff; font-weight: 700; }

/* Hover states gated to real hover-capable pointers (desktop mouse).
   This prevents the iOS/Android sticky-hover bug where tapping an <a>
   leaves the button visually "stuck" in its hover state until the user
   taps elsewhere. On touch devices these rules never fire. */
@media (hover: hover) and (pointer: fine) {
  .btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
  .btn:hover::after { opacity: 1; }
  .btn-primary:hover { background: var(--forest-900); }
  .btn-outline:hover { background: var(--forest); --btn-fg:#fff; border-color: var(--forest); }
  .btn-ghost:hover { background:#fff; }
  .btn-wa:hover { background: var(--forest); }
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; inset-inline: 0; z-index: 900;
  transition: background .35s, box-shadow .35s, padding .35s;
  padding-block: 18px;
}
.site-header.scrolled {
  background: rgba(246,240,233,.82);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 1px 0 rgba(72,120,48,.08);
  padding-block: 10px;
}
.header-inner { display: flex; flex-direction: row-reverse; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 80px; width: auto; display: block; transition: height .35s var(--ease); }
.site-header.scrolled .brand-logo { height: 62px; }
.brand-mark {
  width: 34px; height: 34px; display: grid; place-items: center;
  background: var(--forest); color: var(--terra); border-radius: 11px;
}
.brand-mark svg { width: 20px; height: 20px; }
.header-actions { display: flex; align-items: center; gap: 34px; }
.header-nav { display: flex; gap: 30px; font-weight: 600; font-size: 1.12rem; }
.header-nav a { color: var(--ink); position: relative; padding: 4px 0; transition: color .2s; }
.header-nav a::after {
  content:""; position:absolute; bottom:-2px; inset-inline:0; height:2px;
  background: var(--terra); transform: scaleX(0); transform-origin: right;
  transition: transform .3s var(--ease);
}
.header-nav a:hover { color: var(--terra); }
.header-nav a:hover::after { transform: scaleX(1); }
.header-cta { flex: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; z-index: 2; min-height: 88svh;
  display: flex; align-items: center;
  padding-top: 120px; padding-bottom: 70px;
  overflow: visible;                /* let Karin's cutout overflow into the band below */
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
}
/* Atmospheric breathing layer — soft sage glow that drifts slowly.
   Conveys life and depth without being intrusive (16s cycle, tiny transform). */
.hero::before {
  content: ""; position: absolute; inset: 0;
  z-index: 1; pointer-events: none;
  background:
    radial-gradient(35% 32% at 76% 22%, rgba(143,174,63,.28), transparent 65%),
    radial-gradient(30% 30% at 20% 78%, rgba(144,168,48,.16), transparent 65%);
  /* heroBreathe killed — static atmosphere only, no transform/scroll-jank */
  animation: none;
}
@keyframes heroBreathe {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(-2.5%, 2%, 0) scale(1.05); }
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, rgba(24,72,24,.05) 1px, transparent 0);
  background-size: 30px 30px;
  -webkit-mask-image: radial-gradient(75% 65% at 70% 35%, #000 20%, transparent 78%);
          mask-image: radial-gradient(75% 65% at 70% 35%, #000 20%, transparent 78%);
}

.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: clamp(20px, 3vw, 48px);
  align-items: end;                    /* photo's feet anchor at hero bottom — it extends UP to the title */
}
.hero-content {
  max-width: 580px;
  padding-bottom: clamp(20px, 4vh, 60px); /* slight gap so CTAs aren't flush with the chair */
}
.hero-photo {
  position: relative; align-self: end; z-index: 3;
  display: flex; justify-content: center; align-items: flex-end;
  margin-bottom: 0;                   /* contained: image must NOT cross into the green band */
}
/* Soft sky-blue halo behind her — picks up the tank-top color, adds depth */
.hero-photo::before {
  content: ""; position: absolute;
  inset: 8% 6% 22% 6%;
  background:
    radial-gradient(55% 50% at 50% 38%, rgba(123,176,200,.32), transparent 70%),
    radial-gradient(70% 60% at 50% 70%, rgba(24,72,24,.10), transparent 75%);
  filter: blur(6px);
  z-index: -1; pointer-events: none;
}
.hero-photo img {
  width: 100%; max-width: 380px; height: auto;
  max-height: min(62svh, 540px);
  object-fit: contain;
  display: block;
  /* stronger layered drop-shadow — gives her real "lifted off the page" presence */
  filter:
    drop-shadow(0 4px 8px rgba(78,139,168,.18))
    drop-shadow(0 18px 24px rgba(24,72,24,.20))
    drop-shadow(0 38px 50px rgba(24,72,24,.22));
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 1rem; letter-spacing: .04em; color: var(--terra-600);
  margin-bottom: 24px; text-transform: uppercase;
}
.hero-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--terra); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%,100%{box-shadow:0 0 0 0 rgba(143,174,63,.4);} 50%{box-shadow:0 0 0 7px rgba(143,174,63,0);} }

.hero-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.6rem, 7vw, 5.4rem); line-height: 1.02;
  letter-spacing: -.005em; color: var(--forest-900);
  margin-bottom: 26px;
}
/* swapped per client: "מפסיקות" / "בונות" become the lighter olive,
   "להתחיל מחדש" stays dark, "תהליך שנשאר" takes the button green */
.hero-title .hero-soft { color: var(--terra-600); }
/* the strike text itself stays dark — line is still olive accent */
.hero-title .strike {
  position: relative; display: inline-block;
  color: var(--forest-900); white-space: nowrap;
}
.hero-title .strike::after {
  content: ""; position: absolute;
  inset-inline: -2px; top: 54%; height: 3px;
  background: var(--tan); border-radius: 2px;
  transform-origin: right;
  /* draw in slowly once on load — 4.5s for a calm deliberate strike */
  box-shadow: 0 0 8px rgba(123,176,200,.55);
  animation: strikeDraw 4.5s var(--ease) .55s both;
}
@keyframes strikeDraw {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes strikeGlow {
  0%, 100% { box-shadow: 0 0 6px rgba(123,176,200,.45);  filter: brightness(1); }
  50%      { box-shadow: 0 0 14px rgba(123,176,200,.85); filter: brightness(1.15); }
}
.hero-title .accent {
  color: var(--forest);     /* same green as the primary CTA button */
  background: none;
}

.hero-sub {
  font-size: clamp(1.05rem, 2.4vw, 1.4rem); max-width: 660px;
  color: var(--ink); font-weight: 500; margin-bottom: 36px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-pills li {
  font-weight: 700; font-size: .98rem; color: var(--forest);
  background: rgba(255,255,255,.7); border: 1px solid rgba(123,176,200,.28);
  padding: 8px 16px; border-radius: 100px;
}

.scroll-hint {
  position: absolute; bottom: 26px; inset-inline-start: 50%; transform: translateX(-50%);
  width: 26px; height: 44px; border: 2px solid rgba(123,176,200,.55); border-radius: 16px; z-index: 2;
}
.scroll-hint span {
  position: absolute; top: 8px; inset-inline-start: 50%; transform: translateX(-50%);
  width: 5px; height: 8px; background: var(--tan-deep); border-radius: 4px;
  animation: scrolldot 1.6s infinite;
}
@keyframes scrolldot { 0%{opacity:0; top:8px;} 40%{opacity:1;} 80%{opacity:0; top:24px;} 100%{opacity:0;} }
/* Scroll hint is mobile-affordance only — looks misplaced on desktop, hide it */
@media (min-width: 981px) {
  .scroll-hint { display: none; }
}

/* ============================================================
   VALUE BAND (static chips — no motion)
   ============================================================ */
.valueband {
  position: relative; z-index: 1;
  background:
    radial-gradient(140% 180% at 50% -40%, rgba(143,174,63,.22), transparent 60%),
    linear-gradient(180deg, var(--forest) 0%, var(--forest-900) 100%);
  border-block: 1px solid rgba(0,0,0,.08);
  padding-block: 24px;
}
.valueband-inner {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 12px;
  padding-inline: clamp(20px, 5vw, 60px);
}
/* nav arrows — shown only when the row actually overflows (mobile) */
.vb-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 40px; height: 40px; border-radius: 50%;
  display: none; place-items: center;
  background: rgba(0,0,0,.18); border: 1.5px solid rgba(255,255,255,.5);
  color: #fff; font-size: 1.5rem; font-weight: 700; line-height: 1; cursor: pointer;
  backdrop-filter: blur(4px); -webkit-tap-highlight-color: transparent;
  transition: background .2s, transform .2s;
}
.vb-arrow.vb-start { inset-inline-start: 8px; }   /* RTL: right side (back) */
.vb-arrow.vb-end   { inset-inline-end: 8px; }     /* RTL: left side (more) */
.vb-arrow:active { transform: translateY(-50%) scale(.92); }
.valueband.has-scroll .vb-arrow { display: grid; }
.vb-chip {
  display: inline-flex; align-items: center; gap: 9px; flex: 0 0 auto;
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(.9rem, 2vw, 1.05rem); color: #fff; white-space: nowrap;
  /* warm luminous fill — looks lit-from-within against the forest band */
  background:
    radial-gradient(120% 200% at 50% 120%, rgba(143,174,63,.42), rgba(143,174,63,.10) 60%),
    rgba(255,255,255,.10);
  border: 1px solid rgba(181,205,122,.55);
  padding: 9px 18px; border-radius: 100px;
  scroll-snap-align: center;
  /* permanent olive halo + breathing pulse — always glowing, intensifies in cycle */
  box-shadow:
    0 0 14px rgba(143,174,63,.40),
    0 0 30px rgba(143,174,63,.18),
    inset 0 0 12px rgba(181,205,122,.18);
  /* chipBreathe killed — static glow only (baseline shadow above is the 0% keyframe) */
  animation: none;
  transition: background .25s, border-color .25s;
}
.vb-chip::before {
  content: ""; flex: none; width: 7px; height: 7px; border-radius: 50%;
  background: var(--terra-soft);
  box-shadow: 0 0 8px rgba(181,205,122,.95), 0 0 14px rgba(143,174,63,.7);
}
.vb-chip:hover { background:
    radial-gradient(120% 200% at 50% 120%, rgba(143,174,63,.55), rgba(143,174,63,.18) 60%),
    rgba(255,255,255,.16);
  border-color: var(--terra-soft);
}

/* Only the glow breathes — no positional movement (was causing jumpy/vibrating
   feel when chips were staggered). Calm, lit-from-within glow that pulses softly. */
@keyframes chipBreathe {
  0%, 100% {
    box-shadow:
      0 0 14px rgba(143,174,63,.40),
      0 0 30px rgba(143,174,63,.18),
      inset 0 0 12px rgba(181,205,122,.18);
  }
  50% {
    box-shadow:
      0 0 22px rgba(143,174,63,.70),
      0 0 50px rgba(143,174,63,.35),
      inset 0 0 16px rgba(181,205,122,.30);
  }
}
/* gentle stagger keeps it feeling alive without synced flashing */
.vb-chip:nth-child(1) { animation-delay: 0s; }
.vb-chip:nth-child(2) { animation-delay: -.7s; }
.vb-chip:nth-child(3) { animation-delay: -1.4s; }
.vb-chip:nth-child(4) { animation-delay: -1.8s; }
.vb-chip:nth-child(5) { animation-delay: -2.4s; }
.vb-chip:nth-child(6) { animation-delay: -3.0s; }
.vb-chip:nth-child(7) { animation-delay: -3.6s; }

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.section-head { max-width: 760px; margin-bottom: 54px; }
.section-head.center { margin-inline: auto; text-align: center; }
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: .9rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--terra-600); margin-bottom: 16px;
}
.kicker::before { content: ""; width: 22px; height: 2px; background: var(--tan); border-radius: 2px; }
.section-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2rem, 4.6vw, 3.4rem); line-height: 1.08;
  letter-spacing: -.005em; color: var(--forest-900);
}
.section-lead { margin-top: 16px; font-size: 1.15rem; color: var(--ink-soft); }

/* ============================================================
   PAIN
   ============================================================ */
.pain { background: var(--cream); }
.pain-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}
.pain-card {
  background: var(--white); border-radius: var(--radius);
  padding: 30px 26px;
  border: 1px solid rgba(24,72,24,.18);
  box-shadow: 0 6px 22px rgba(24,72,24,.10), 0 1px 0 rgba(24,72,24,.04);
  position: relative; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
}
.pain-card:hover { border-color: rgba(24,72,24,.28); }
.pain-card::before {
  content:""; position:absolute; inset-inline-start:0; top:0; bottom:0; width:5px;
  background: linear-gradient(var(--tan), var(--tan-deep)); transform: scaleY(0); transform-origin: top;
  transition: transform .4s var(--ease);
}
.pain-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pain-card:hover::before { transform: scaleY(1); }
.pain-num { font-family: var(--font-display); font-weight: 700; font-size: 2.4rem; color: var(--tan-soft); display: block; line-height: 1; margin-bottom: 10px; }
.pain-card p { font-size: 1.12rem; font-weight: 600; color: var(--ink); }
.pain-card em { font-style: normal; color: var(--olive-700); font-weight: 700; }

/* ============================================================
   METHOD
   ============================================================ */
.method { background: linear-gradient(180deg, var(--cream), var(--cream-deep)); }
.method-inner { display: grid; gap: 50px; grid-template-columns: 1.1fr .9fr; align-items: center; }
.big-statement {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.7rem, 3.6vw, 2.9rem); line-height: 1.18; letter-spacing: -.005em;
  color: var(--forest-900);
}
.line-through-soft { position: relative; color: var(--forest); opacity: .55; }
.line-through-soft::after {
  content:""; position:absolute; inset-inline:-2px; top:54%; height:4px;
  background: var(--tan); border-radius:3px;
  transform-origin: right;
  animation: strikeDraw 1.0s var(--ease) .25s both,
             strikeGlow 2.6s ease-in-out 1.4s infinite;
}
.big-statement .accent { color: var(--terra); }
.method-reassure {
  margin-top: 26px; font-size: 1.2rem; font-weight: 600;
  color: var(--forest); padding-inline-start: 20px;
  border-inline-start: 4px solid var(--terra);
}

.learn-card {
  /* deeper, more uniform forest — no harsh gradient sweep */
  background: linear-gradient(165deg, var(--forest-900) 0%, var(--forest) 100%);
  color: var(--cream); border-radius: var(--radius-lg);
  padding: clamp(30px, 4vw, 48px); box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.learn-card::before {
  /* softer, smaller highlight — just enough to add depth without "color sweep" */
  content:""; position:absolute; width: 220px; height: 220px; border-radius:50%;
  background: radial-gradient(circle, rgba(143,174,63,.18), transparent 70%);
  top: -100px; inset-inline-end: -80px;
}
.learn-title {
  font-family: var(--font-display); font-weight: 700; font-size: 1.5rem;
  margin-bottom: 22px; position: relative;
}
.learn-list { display: grid; gap: 14px; position: relative; }
.learn-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 1.08rem; font-weight: 600; line-height: 1.4;
}
.learn-list li::before {
  content:"✓"; flex: none; width: 26px; height: 26px; border-radius: 8px;
  background: var(--terra); color: var(--forest-900); font-weight: 700;
  display: grid; place-items: center; font-size: .95rem; margin-top: 2px;
}
.learn-list strong { color: var(--terra); }

/* ============================================================
   PROOF / TRANSFORMATION SLIDESHOW
   ============================================================ */
.proof { background: var(--cream); }
.proof-frame {
  position: relative;
  max-width: 540px; margin-inline: auto;
}
.proof-slides {
  position: relative; aspect-ratio: 1 / 1;
  border-radius: var(--radius); overflow: hidden;
  background: var(--cream-deep); box-shadow: var(--shadow-md);
}
.proof-slides .tx-open {
  position: absolute; inset: 0;
  width: 100%; height: 100%; margin: 0; padding: 0;
  background: transparent; border: none; cursor: pointer;
  opacity: 0; visibility: hidden;
  transition: opacity 1s ease-in-out;
  -webkit-tap-highlight-color: transparent;
}
.proof-slides .tx-open.active {
  opacity: 1; visibility: visible; z-index: 1;
}
.proof-slides .tx-open img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .8s var(--ease);
}
.proof-slides .tx-open:hover img { transform: scale(1.04); }
.proof-slides .tx-open::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(24,72,24,.25), transparent 45%);
  opacity: 0; transition: opacity .35s;
}
.proof-slides .tx-open:hover::after { opacity: 1; }
.tx-badge {
  position: absolute; bottom: 16px; inset-inline-start: 16px; z-index: 3;
  background: var(--terra); color: #fff; font-weight: 700; font-size: .85rem;
  padding: 7px 16px; border-radius: 100px; box-shadow: var(--shadow-sm);
  pointer-events: none;
}
.tx-zoom {
  position: absolute; top: 16px; inset-inline-end: 16px; z-index: 3;
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.9); color: var(--forest); font-size: 1.15rem; font-weight: 700;
  pointer-events: none;
}
/* dots */
.proof-dots { display: flex; justify-content: center; gap: 10px; margin-top: 20px; }
.proof-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(72,120,48,.22); border: none; padding: 0; cursor: pointer;
  transition: background .25s, transform .25s var(--ease), width .25s;
}
.proof-dot:hover { background: var(--terra-600); }
.proof-dot.active { background: var(--forest); width: 26px; border-radius: 5px; }
/* arrows */
.proof-nav {
  position: absolute; top: calc(50% - 18px); transform: translateY(-50%);
  z-index: 4; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.92); border: 1.5px solid rgba(72,120,48,.12);
  color: var(--forest); font-size: 1.75rem; font-weight: 700; line-height: 1;
  display: grid; place-items: center; cursor: pointer;
  backdrop-filter: blur(4px); box-shadow: var(--shadow-sm);
  -webkit-tap-highlight-color: transparent;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.proof-prev { inset-inline-start: 14px; }     /* RTL: right edge (back) */
.proof-next { inset-inline-end: 14px; }       /* RTL: left edge (next) */
.proof-nav:hover { background: var(--cream); box-shadow: var(--shadow-md); }
.proof-nav:active { transform: translateY(-50%) scale(.93); }

.proof-cta-line { margin-top: 38px; text-align: center; font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--forest-900); }
.proof-cta-line a { color: var(--forest-900); border-bottom: 2.5px solid var(--terra); transition: color .2s, border-color .2s; }
.proof-cta-line a:hover { color: var(--forest); border-color: var(--terra-600); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 11000; display: none;
  align-items: center; justify-content: center;
  background: rgba(20,30,18,.92); backdrop-filter: blur(6px);
  padding: 24px; opacity: 0; transition: opacity .3s;
}
.lightbox.open { display: flex; opacity: 1; }
.lb-img {
  max-width: min(92vw, 900px); max-height: 86vh; width: auto; height: auto;
  border-radius: 14px; box-shadow: 0 30px 90px rgba(0,0,0,.5);
  animation: lbIn .35s var(--ease);
}
@keyframes lbIn { from { transform: scale(.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.lb-close {
  position: absolute; top: 18px; inset-inline-end: 18px; z-index: 2;
  width: 48px; height: 48px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,.14); color: #fff; font-size: 1.4rem;
  display: grid; place-items: center; transition: background .2s;
}
.lb-close:hover { background: rgba(255,255,255,.28); }
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 54px; height: 54px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,.14); color: #fff; font-size: 2rem; line-height: 1;
  display: grid; place-items: center; transition: background .2s;
}
.lb-nav:hover { background: rgba(255,255,255,.3); }
.lb-prev { inset-inline-start: 18px; }
.lb-next { inset-inline-end: 18px; }

/* ============================================================
   PROGRAMS
   ============================================================ */
.programs { background: linear-gradient(180deg, var(--cream-deep), var(--cream)); }
.programs-grid {
  display: grid; gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}
.program-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 34px 30px;
  border: 1px solid rgba(24,72,24,.18);
  box-shadow: 0 6px 22px rgba(24,72,24,.10), 0 1px 0 rgba(24,72,24,.04);
  display: flex; flex-direction: column; gap: 18px;
  position: relative; overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .3s;
}
.program-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(24,72,24,.32); }
.pc-head { display: flex; flex-direction: column; gap: 4px; }
.pc-tag {
  align-self: flex-start; font-weight: 700; font-size: .82rem; letter-spacing: .04em;
  color: #fff; background: var(--tan);
  padding: 5px 12px; border-radius: 100px; text-transform: uppercase;
}
.pc-tag-alt { color: var(--forest); background: rgba(72,120,48,.1); }
.pc-title { font-family: var(--font-display); font-weight: 700; font-size: 2rem; color: var(--forest-900); line-height: 1; }
.pc-meta { font-weight: 700; color: var(--ink-soft); font-size: .98rem; }
.pc-desc { font-size: 1.05rem; color: var(--ink); }
.pc-list { display: grid; gap: 10px; margin-top: auto; }
.pc-list li { display: flex; gap: 10px; align-items: flex-start; font-weight: 600; font-size: 1rem; }
.pc-list li::before {
  content:"✓"; flex:none; color: var(--olive-700); font-weight: 700; font-size: 1.05rem;
}
.pc-foot { font-size: .98rem; color: var(--ink-soft); font-style: italic; border-top: 1px solid rgba(72,120,48,.08); padding-top: 14px; }
.pc-cta { margin-top: 6px; }

/* Featured card — now matches the regular white card look (was deep forest gradient) */
.program-card.featured {
  background: var(--white);
  box-shadow: var(--shadow-lg);
}
.program-card.featured .pc-list li::before { color: var(--olive-700); }
/* in-flow badge at the top of the card (no more clipped corner ribbon) */
.pc-ribbon {
  align-self: flex-start;
  background: var(--forest); color: #fff; font-weight: 700; font-size: .78rem;
  letter-spacing: .02em; padding: 7px 16px; border-radius: 100px;
  box-shadow: 0 4px 14px rgba(72,120,48,.3);
}

/* Wide (summer workshop) card spans full row */
.program-card.wide { grid-column: 1 / -1; }
.pc-wide-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 30px; align-items: center; }
.pc-list-2col { grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.ribbon-summer { background: var(--forest); color: #fff; box-shadow: 0 4px 14px rgba(72,120,48,.25); }

/* Card spanning two grid columns (summer workshop fills the slot beside RESET) */
.program-card.span2 { grid-column: span 2; }

/* Summer walking workshop — spread text + footsteps animation fills the space */
.workshop { gap: 20px; }
.workshop .pc-desc { font-size: 1.12rem; line-height: 1.75; }
.workshop-list { grid-template-columns: 1fr 1fr; gap: 14px 30px; margin-top: 4px; }

/* Workshop tagline — replaces the old footsteps strip (looked cramped on phones).
   A short italic line flanked by short terracotta rules; fills the dead space
   between the checklist and the CTA with something clearly designed and calm. */
.workshop-tagline {
  flex: 1 1 auto; min-height: 60px;
  display: flex; align-items: center; justify-content: center; gap: 14px;
  padding: 8px 4px;
}
.workshop-tagline::before,
.workshop-tagline::after {
  content: ""; flex: 1 1 50px; max-width: 80px;
  height: 2px; background: rgba(123,176,200,.65); border-radius: 2px;
}
.workshop-tagline span {
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  color: var(--terra-600); font-size: clamp(1.02rem, 1.8vw, 1.18rem);
  letter-spacing: .015em; white-space: nowrap;
}

/* ============================================================
   WHATSAPP BAND
   ============================================================ */
.wa-band { padding-block: clamp(40px, 6vw, 70px); }
.wa-inner {
  display: flex; align-items: center; gap: 26px; flex-wrap: wrap;
  background: var(--white); border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 44px); box-shadow: var(--shadow-md);
  border: 1px solid rgba(72,120,48,.07);
}
.wa-icon { flex: none; width: 64px; height: 64px; border-radius: 20px; background: rgba(24,72,24,.10); color: var(--forest-900); display: grid; place-items: center; }
.wa-icon svg { width: 38px; height: 38px; }
.wa-text { flex: 1; min-width: 240px; }
.wa-text h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--forest-900); margin-bottom: 6px; }
.wa-text p { color: var(--ink-soft); }
.wa-band .btn-wa { flex: none; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--cream); }
.about-inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: 50px; align-items: center; }
.about-photo { position: relative; }
/* no frame — Karin (cutout) sits directly on the section, grounded by a soft
   organic shape behind her, not a hard box */
.about-photo-stage {
  position: relative;
  display: flex; align-items: flex-end; justify-content: center;
  min-height: 420px;
}
.about-photo-stage::before {
  content: ""; position: absolute; z-index: 0;
  inset: 4% 4% 2% 4%;
  background:
    radial-gradient(60% 55% at 50% 38%, rgba(123,176,200,.18), transparent 72%),
    radial-gradient(70% 70% at 50% 82%, rgba(24,72,24,.14), transparent 75%);
  border-radius: 50% 50% 46% 46%;
  filter: blur(1px);
}
.about-photo-img {
  position: relative; z-index: 1;
  width: auto; max-width: 100%; max-height: 600px; display: block;
  filter:
    drop-shadow(0 30px 30px rgba(24,72,24,.30))
    drop-shadow(0 8px 14px rgba(24,72,24,.18));
}
.about-badge {
  position: absolute; top: 18px; inset-inline-start: 0;
  background: var(--tan-deep); color: #fff; font-weight: 700; font-size: 1.05rem;
  padding: 11px 22px; border-radius: 100px; box-shadow: var(--shadow-md); z-index: 2;
}
.about-text .section-title { margin-top: 4px; }
.about-role { font-weight: 700; color: var(--olive-700); font-size: 1.2rem; margin-block: 6px 18px; }
.about-text p { margin-bottom: 14px; color: var(--ink); }
.about-nots { display: flex; flex-direction: column; gap: 6px; font-weight: 700; color: var(--forest); }
.about-nots span { padding-inline-start: 18px; position: relative; }
.about-nots span::before { content:"✕"; position:absolute; inset-inline-start:0; color: var(--ink-soft); font-weight: 700; }
.about-pillars { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.about-pillars span {
  font-weight: 700; font-size: .95rem; color: var(--forest);
  background: rgba(144,168,48,.16); padding: 8px 16px; border-radius: 100px;
}

/* ============================================================
   LEAD
   ============================================================ */
.lead {
  color: var(--cream); overflow: hidden;
  background:
    radial-gradient(900px 500px at 85% 0%, rgba(143,174,63,.22), transparent 60%),
    radial-gradient(700px 500px at 5% 100%, rgba(144,168,48,.14), transparent 60%),
    var(--forest-900);
}
.lead-bg { display: none; }
.lead-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.lead-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.1; }
.lead-title .accent { color: var(--terra-soft); }
.lead-sub { margin-top: 18px; font-size: 1.15rem; color: rgba(246,240,233,.85); }
.lead-trust { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; font-weight: 700; font-size: 1.08rem; }
.lead-trust li { color: var(--lime-soft); }

.lead-form {
  background: var(--cream); color: var(--ink); border-radius: var(--radius-lg);
  padding: clamp(26px, 3.5vw, 40px); box-shadow: var(--shadow-lg);
  display: grid; gap: 16px;
}
.field { display: grid; gap: 6px; }
.field label { font-weight: 700; font-size: .95rem; color: var(--forest); }
.field input, .field select, .field textarea {
  font-family: var(--font); font-size: 1.05rem; font-weight: 500; color: var(--ink);
  background: #fff; border: 2px solid rgba(72,120,48,.14); border-radius: var(--radius-sm);
  padding: 13px 16px; width: 100%; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--olive); box-shadow: var(--ring);
}
.field textarea { resize: vertical; }
.form-mini { text-align: center; font-size: .88rem; color: var(--ink-soft); font-weight: 600; }
.field.invalid input, .field.invalid select { border-color: #d9534f; }

/* ============================================================
   CLOSING
   ============================================================ */
.closing { background: var(--cream); text-align: center; }
.closing-inner { max-width: 760px; margin-inline: auto; }
.closing-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.7rem, 3.8vw, 2.8rem); line-height: 1.12; color: var(--forest-900); }
.closing-sub { margin-block: 18px 30px; font-size: 1.2rem; color: var(--ink-soft); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--forest-900); color: var(--cream); padding-block: 50px 110px; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; }
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer-logo { height: 76px; width: auto; display: block; }
.footer-brand p { color: var(--lime-soft); font-weight: 600; font-size: .95rem; padding-inline-start: 4px; }
.footer-contact { display: flex; flex-wrap: wrap; gap: 8px 22px; font-weight: 700; }
.footer-contact a { color: var(--lime-soft); transition: color .2s; }
.footer-contact a:hover { color: var(--terra); }
.footer-legal { width: 100%; font-size: .85rem; color: rgba(246,240,233,.4); padding-top: 8px; border-top: 1px solid rgba(255,255,255,.08); }

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-cta {
  position: fixed; bottom: 14px; inset-inline: 14px; z-index: 800;
  background: var(--forest); color: #fff; text-align: center; font-weight: 700;
  padding: 16px; border-radius: 100px; box-shadow: var(--shadow-lg);
  transform: translateY(150%); transition: transform .4s var(--ease);
  display: none;
}
.sticky-cta.show { transform: translateY(0); }

/* ============================================================
   REVEAL ANIMATIONS (toggled by JS)
   ============================================================ */
[data-reveal] {
  opacity: 1; transform: none;
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}
[data-reveal].in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* Desktop safety net — explicitly enforce tight hero photo caps so
   Karin stays strictly inside the hero section, above the green band,
   even if base rules drift. */
@media (min-width: 981px) {
  .hero          { min-height: 88svh; }
  .hero-inner    { grid-template-columns: 1.15fr .85fr; align-items: end; }
  .hero-photo    { margin-bottom: 0; align-self: end;
                   display: flex; justify-content: center; align-items: flex-end; }
  .hero-photo img {
    width: 100%; max-width: 380px; height: auto;
    max-height: min(62svh, 540px);
    object-fit: contain; display: block;
  }
}

@media (max-width: 980px) {
  .hero-inner   { grid-template-columns: 1fr; gap: 24px; align-items: stretch; }
  .hero-content { max-width: none; text-align: start; padding-bottom: 0; }
  .hero-photo   { margin-bottom: -40px; }
  .hero-photo img { max-width: 380px; max-height: none; aspect-ratio: auto; }
  .method-inner { grid-template-columns: 1fr; }
  .about-inner  { grid-template-columns: 1fr; gap: 36px; }
  .about-photo  { max-width: 420px; margin-inline: auto; width: 100%; }
  .lead-inner   { grid-template-columns: 1fr; gap: 34px; }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .program-card.featured { transform: none; }
  .program-card.featured:hover { transform: translateY(-8px); }
  .pc-wide-inner { grid-template-columns: 1fr; gap: 18px; }
}

@media (max-width: 760px) {
  body { font-size: 17px; }
  .header-nav { display: none; }
  .brand-logo { height: 62px; }
  .site-header.scrolled .brand-logo { height: 52px; }
  .header-cta { margin-inline-start: auto; }
  .sticky-cta { display: block; }
  .programs-grid { grid-template-columns: 1fr; }
  /* span-2 card must NOT create an implicit 2nd column on a 1-col grid
     (that paired cards into rows and stretched the shorter ones, leaving big gaps) */
  .program-card.span2 { grid-column: 1 / -1; }
  .pc-list { margin-top: 14px; }   /* cancel equal-height push when single-column */
  .pc-list-2col { grid-template-columns: 1fr; }
  /* value band becomes a single SWIPEABLE row on phones (no motion, user-controlled).
     Edges fade to hint there's more to scroll. */
  .valueband { padding-block: 16px; }
  .valueband-inner {
    flex-wrap: nowrap; justify-content: flex-start;
    max-width: none; padding-inline: 56px;
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity; scrollbar-width: none;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  }
  .valueband-inner::-webkit-scrollbar { display: none; }
  .wa-inner { flex-direction: column; text-align: center; }
  .wa-text { min-width: 0; }
  .wa-band .btn-wa { width: 100%; }
  .hero { min-height: auto; padding-top: 110px; padding-bottom: 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 18px; }
  .hero-content { max-width: none; padding-bottom: 0; }
  .hero-photo { margin-bottom: 0; }
  .hero-photo img { max-width: 320px; max-height: none; aspect-ratio: auto; }
  /* Calm, jank-free hero background on phones:
     big blurred blobs animating = repaint stutter ("קפוץ"), and they cluster
     on a narrow screen. Make them static, smaller, and declutter. */
  .hero-grid { display: none; }
  .blob { animation: none !important; will-change: auto; filter: blur(55px); opacity: .42; }
  .blob-1 { width: 300px; height: 300px; top: -70px; inset-inline-start: -90px; }
  .blob-2 { width: 320px; height: 320px; bottom: -110px; inset-inline-end: -90px; }
  .blob-3 { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; text-align: start; }
}

@media (max-width: 420px) {
  .pain-card { padding: 24px 20px; }
  .program-card { padding: 28px 22px; }
}

/* ============ FORM SUCCESS / ERROR PANEL ============ */
.form-success {
  text-align: center;
  padding: 36px 28px;
  background: linear-gradient(180deg, rgba(72,120,48,.06), rgba(123,176,200,.08));
  border: 1px solid rgba(72,120,48,.18);
  border-radius: var(--radius-lg, 18px);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.form-success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--forest); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; font-weight: 700; margin-bottom: 4px;
  box-shadow: 0 8px 24px rgba(72,120,48,.25);
}
.form-success h3 { margin: 0; font-size: 1.5rem; color: var(--forest-900); }
.form-success p  { margin: 0; color: var(--ink, #34322E); max-width: 380px; }
.form-success-sub { font-size: .9rem; opacity: .8; margin-top: 8px !important; }
.btn-wa-success { background: #25D366; color: #fff; margin-top: 8px; }
.btn-wa-success:hover { background: #1ebe5a; }
.form-error { background: linear-gradient(180deg, rgba(192,83,59,.06), rgba(123,176,200,.06)); border-color: rgba(192,83,59,.2); }
.form-error h3 { color: var(--terra, #c0533b); }
.form-error .btn { width: 100%; max-width: 280px; }
