@charset "UTF-8";
/* ==========================================================================
   UFIT — Yuval Gelbshtein Personal Training
   Design system + components. Hand-authored, no build step.
   Direction-agnostic: uses CSS logical properties so RTL/LTR both feel native.
   ========================================================================== */

/* ---------------------------------------------------------------- TOKENS -- */
:root {
  /* Brand palette */
  --black:        #0B0B0C;
  --ink:          #141416;
  --ink-2:        #1C1C20;
  --ink-3:        #2A2A30;
  --red:          #C1121F;   /* deep athletic red — action/conversion */
  --red-bright:   #E01E2B;
  --red-deep:     #8A0D16;
  --gold:         #C9A227;   /* premium detail — used sparingly */
  --gold-light:   #E3C35A;
  /* Darker gold for small text on light backgrounds: the bright gold only
     reaches 2.4:1 on white, which fails WCAG AA. This one clears 4.5:1. */
  --gold-ink:     #8A6B10;
  --white:        #FFFFFF;
  --bone:         #F6F4F1;   /* warm light section background */
  --bone-2:       #EDE9E3;
  --grey:         #6E6E76;
  --grey-light:   #9A9AA2;

  /* Semantic */
  --bg:           var(--white);
  --fg:           var(--ink);
  --fg-muted:     var(--grey);
  --accent:       var(--red);
  --accent-fg:    var(--white);
  /* Light sections use the accessible gold; dark sections override below. */
  --detail:       var(--gold-ink);
  --border:       rgba(11,11,12,.12);
  --border-dark:  rgba(255,255,255,.14);
  --focus:        var(--gold);

  /* Type */
  --font-he: "Heebo", -apple-system, "Segoe UI", Arial, sans-serif;
  --font-en: "Barlow", -apple-system, "Segoe UI", Arial, sans-serif;
  --font-display-en: "Barlow Condensed", "Barlow", Impact, sans-serif;
  --font-body: var(--font-en);
  --font-display: var(--font-display-en);

  /* Fluid type scale */
  --fs-xs:   clamp(0.75rem, 0.72rem + 0.15vw, 0.8125rem);
  --fs-sm:   clamp(0.875rem, 0.85rem + 0.15vw, 0.9375rem);
  --fs-base: clamp(1rem, 0.97rem + 0.2vw, 1.0625rem);
  --fs-lg:   clamp(1.125rem, 1.05rem + 0.4vw, 1.3125rem);
  --fs-xl:   clamp(1.375rem, 1.2rem + 0.8vw, 1.75rem);
  --fs-2xl:  clamp(1.75rem, 1.45rem + 1.4vw, 2.5rem);
  --fs-3xl:  clamp(2.125rem, 1.6rem + 2.4vw, 3.5rem);
  --fs-4xl:  clamp(2.5rem, 1.7rem + 4vw, 5rem);
  --fs-hero: clamp(2.75rem, 1.6rem + 5.6vw, 6.5rem);

  /* Spacing */
  --space-1: 4px;  --space-2: 8px;  --space-3: 12px; --space-4: 16px;
  --space-5: 24px; --space-6: 32px; --space-7: 48px; --space-8: 64px;
  --space-9: 96px; --space-10: 128px;
  --section-y: clamp(64px, 9vw, 128px);
  --gutter: clamp(20px, 5vw, 64px);
  --maxw: 1280px;
  --maxw-text: 68ch;

  /* Radius, shadow, motion */
  --r-sm: 6px; --r-md: 12px; --r-lg: 20px; --r-xl: 28px; --r-full: 999px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.10), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 10px 30px rgba(0,0,0,.10), 0 2px 8px rgba(0,0,0,.06);
  --shadow-lg: 0 24px 60px rgba(0,0,0,.16), 0 6px 18px rgba(0,0,0,.08);
  --ease: cubic-bezier(.22,.61,.36,1);
  --dur: 220ms;

  --header-h: 68px;
}

html[lang="he"] { --font-body: var(--font-he); --font-display: var(--font-he); }

/* ------------------------------------------------------------- RESET ----- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video, svg { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }

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

/* Headings */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
html[lang="he"] h1, html[lang="he"] h2,
html[lang="he"] h3, html[lang="he"] h4 {
  letter-spacing: -0.01em;
  line-height: 1.15;
}
html[lang="en"] h1, html[lang="en"] h2 { text-transform: uppercase; }

p { text-wrap: pretty; }

/* --------------------------------------------------------- UTILITIES ----- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: 900px; }
.section { padding-block: var(--section-y); position: relative; }
.section--dark { background: var(--black); color: var(--white); --fg-muted: var(--grey-light); --border: var(--border-dark); --detail: var(--gold); }
.section--ink  { background: var(--ink); color: var(--white); --fg-muted: var(--grey-light); --border: var(--border-dark); --detail: var(--gold); }
.section--bone { background: var(--bone); }
.sr-only {
  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; inset-block-start: -100px; inset-inline-start: var(--space-4);
  background: var(--gold); color: var(--black); padding: var(--space-3) var(--space-5);
  z-index: 200; border-radius: 0 0 var(--r-md) var(--r-md); font-weight: 700;
}
.skip-link:focus { inset-block-start: 0; }

/* Honeypot — hidden by clipping, never by an off-canvas offset (an offset
   would expand the document's scroll width, especially in RTL). */
.hp-field {
  position: absolute !important; inline-size: 1px; block-size: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0; opacity: 0; pointer-events: none;
}

/* Section headers */
.eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-3);
  font-family: var(--font-body);
  font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--detail);
  margin-block-end: var(--space-4);
}
html[lang="he"] .eyebrow { letter-spacing: .08em; }
.eyebrow::before {
  content: ""; inline-size: 28px; block-size: 2px;
  background: var(--detail); flex: none;
}
.section-head { max-width: 760px; margin-block-end: clamp(32px, 5vw, 64px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-title { font-size: var(--fs-3xl); }
.section-lead { font-size: var(--fs-lg); color: var(--fg-muted); margin-block-start: var(--space-4); }

/* ---------------------------------------------------------- BUTTONS ------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--space-3);
  min-block-size: 52px; padding: var(--space-3) var(--space-6);
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-weight: 700; font-size: var(--fs-base); letter-spacing: .01em;
  cursor: pointer; text-align: center;
  transition: transform var(--dur) var(--ease), background-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
  will-change: transform;
}
.btn svg { inline-size: 20px; block-size: 20px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--wa { background: #25D366; color: #06301A; box-shadow: 0 8px 24px rgba(37,211,102,.32); }
.btn--wa:hover { background: #1FBF5B; box-shadow: 0 12px 32px rgba(37,211,102,.42); }

.btn--primary { background: var(--red); color: var(--white); box-shadow: 0 8px 24px rgba(193,18,31,.30); }
.btn--primary:hover { background: var(--red-bright); box-shadow: 0 12px 32px rgba(193,18,31,.40); }

.btn--gold { background: var(--gold); color: var(--black); }
.btn--gold:hover { background: var(--gold-light); }

.btn--ghost { border: 2px solid var(--border); color: inherit; }
.btn--ghost:hover { border-color: currentColor; background: rgba(127,127,127,.08); }

.btn--on-dark { border: 2px solid rgba(255,255,255,.35); color: var(--white); }
.btn--on-dark:hover { border-color: var(--white); background: rgba(255,255,255,.10); }

.btn--lg { min-block-size: 60px; padding-inline: var(--space-7); font-size: var(--fs-lg); }
.btn--sm { min-block-size: 44px; padding-inline: var(--space-5); font-size: var(--fs-sm); }
.btn--block { inline-size: 100%; }

/* Directional icon flip for RTL */
html[dir="rtl"] .icon-dir { transform: scaleX(-1); }

/* ----------------------------------------------------------- HEADER ------ */
.header {
  position: fixed; inset-block-start: 0; inset-inline: 0; z-index: 100;
  block-size: var(--header-h);
  display: flex; align-items: center;
  background: rgba(11,11,12,0);
  transition: background-color 300ms var(--ease), box-shadow 300ms var(--ease),
              backdrop-filter 300ms var(--ease);
}
.header__inner { display: flex; align-items: center; gap: var(--space-5); inline-size: 100%; }
.header.is-stuck,
.header.is-open,
body.has-solid-header .header {
  background: rgba(11,11,12,.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,.08);
}

.logo { display: inline-flex; align-items: center; flex: none; }
.logo img {
  display: block; block-size: 46px; inline-size: auto;
  transition: opacity var(--dur) var(--ease);
}
.logo:hover img { opacity: .85; }
.logo--footer img { block-size: 68px; }
@media (max-width: 560px) { .logo img { block-size: 40px; } }

.nav { display: flex; align-items: center; gap: clamp(0px, .35vw, 6px); margin-inline-start: auto; }
.nav__link {
  padding: var(--space-2) clamp(6px, .7vw, 12px); border-radius: var(--r-sm);
  font-size: var(--fs-sm); font-weight: 600; color: rgba(255,255,255,.86);
  white-space: nowrap; transition: color var(--dur) var(--ease);
  position: relative;
}
.nav__link::after {
  content: ""; position: absolute; inset-block-end: 2px; inset-inline: clamp(6px, .7vw, 12px);
  block-size: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: inline-start;
  transition: transform var(--dur) var(--ease);
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--white); }

.header__actions { display: flex; align-items: center; gap: var(--space-3); flex: none; }

.langswitch { display: flex; align-items: center; gap: 2px; border: 1px solid rgba(255,255,255,.24); border-radius: var(--r-full); padding: 3px; }
.langswitch a {
  padding: 6px 12px; border-radius: var(--r-full); font-size: var(--fs-xs);
  font-weight: 700; color: rgba(255,255,255,.72); line-height: 1;
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.langswitch a:hover { color: var(--white); }
.langswitch a[aria-current="true"] { background: var(--white); color: var(--black); }

.burger {
  display: none; inline-size: 46px; block-size: 46px; border-radius: var(--r-sm);
  align-items: center; justify-content: center; color: var(--white);
}
.burger svg { inline-size: 26px; block-size: 26px; }

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(11,11,12,.98);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  padding: calc(var(--header-h) + var(--space-6)) var(--gutter) var(--space-8);
  display: flex; flex-direction: column; gap: var(--space-2);
  overflow-y: auto;
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity 260ms var(--ease), transform 260ms var(--ease), visibility 260ms;
}
.drawer.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
/* The class sets display:flex, which would otherwise defeat the [hidden]
   attribute and keep the closed drawer in the layout. */
.drawer[hidden] { display: none; }
.drawer__link {
  font-family: var(--font-display); font-size: var(--fs-xl); font-weight: 700;
  color: var(--white); padding: var(--space-3) 0;
  border-block-end: 1px solid rgba(255,255,255,.10);
}
html[lang="en"] .drawer__link { text-transform: uppercase; }
.drawer__actions { margin-block-start: var(--space-6); display: grid; gap: var(--space-3); }

/* ------------------------------------------------------------- HERO ------ */
.hero {
  position: relative; min-block-size: min(100svh, 900px);
  display: flex; align-items: flex-end;
  background: var(--black); color: var(--white);
  padding-block: calc(var(--header-h) + var(--space-7)) clamp(48px, 8vw, 96px);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { inline-size: 100%; block-size: 100%; object-fit: cover; object-position: 50% 22%; }
/* Desktop: the photo is full-bleed but the text block was boxed in the centred
   container, so on wide screens it sat over Yuval's (fairly central) face.
   Letting the hero span full width and pushing the capped text block to the
   open edge keeps it well clear of him — right in LTR, left in RTL. */
@media (min-width: 768px) {
  .hero__inner { max-width: none; padding-inline: clamp(32px, 6vw, 120px); }
  .hero__content { margin-inline-start: auto; max-width: 600px; }
  .hero__title { font-size: clamp(2.4rem, 4.6vw, 4.4rem); }
}
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(11,11,12,.96) 0%, rgba(11,11,12,.72) 38%, rgba(11,11,12,.30) 68%, rgba(11,11,12,.55) 100%),
    linear-gradient(to var(--grad-side, right), rgba(11,11,12,.85) 0%, rgba(11,11,12,.30) 55%, rgba(11,11,12,0) 100%);
}
html[dir="rtl"] .hero__media::after { --grad-side: left; }
.hero__inner { position: relative; z-index: 1; inline-size: 100%; }
.hero__content { max-width: 780px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-3);
  font-size: var(--fs-sm); font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold);
  margin-block-end: var(--space-5);
}
html[lang="he"] .hero__eyebrow { letter-spacing: .05em; text-transform: none; }
.hero__eyebrow::before { content: ""; inline-size: 34px; block-size: 2px; background: var(--gold); }

.hero__title { font-size: var(--fs-hero); line-height: .96; margin-block-end: var(--space-5); }
html[lang="he"] .hero__title { line-height: 1.08; }
.hero__title span { display: block; }
.hero__title span:nth-child(2) { color: var(--white); }
.hero__title span:nth-child(3) { color: var(--red-bright); }
.hero__sub { font-size: var(--fs-lg); color: rgba(255,255,255,.86); max-width: 58ch; margin-block-end: var(--space-6); }
.hero__ctas { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-4) var(--space-6); }
.hero__secondary {
  display: inline-flex; align-items: center; gap: var(--space-2);
  min-block-size: 48px; font-weight: 700; font-size: var(--fs-base);
  color: var(--white); border-block-end: 2px solid rgba(255,255,255,.45);
  transition: border-color var(--dur) var(--ease), gap var(--dur) var(--ease);
}
.hero__secondary:hover { border-block-end-color: var(--gold); gap: var(--space-3); }
.hero__secondary svg { inline-size: 18px; block-size: 18px; }

/* Goal + duration line above a transformation's story beats */
.slide__goalline {
  display: flex; flex-wrap: wrap; gap: var(--space-2);
  font-size: var(--fs-sm); font-weight: 700; color: var(--gold);
}
.section--bone .slide__goalline { color: var(--gold-ink); }
.hero__brandline {
  position: absolute; inset-block-end: clamp(16px, 3vw, 32px); inset-inline-end: var(--gutter);
  z-index: 1; font-family: var(--font-display-en); font-size: var(--fs-sm);
  letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.45);
  writing-mode: vertical-rl; display: none;
}

/* Credibility strip */
.credstrip { background: var(--ink); color: var(--white); border-block-start: 1px solid rgba(255,255,255,.08); }
.credstrip__list {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px; background: rgba(255,255,255,.10);
}
.credstrip__item {
  background: var(--ink); padding: var(--space-5) var(--space-4);
  display: flex; align-items: center; justify-content: center; gap: var(--space-3);
  text-align: center; font-weight: 700; font-size: var(--fs-sm);
  min-block-size: 84px;
}
.credstrip__item svg { inline-size: 22px; block-size: 22px; color: var(--gold); flex: none; }

/* ---------------------------------------------------- APPROACH SECTION -- */
.approach__grid {
  display: grid; gap: clamp(32px, 5vw, 72px);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) { .approach__grid { grid-template-columns: 1.05fr .95fr; } }
.approach__media { position: relative; }
.approach__media img {
  inline-size: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
}
.approach__badge {
  position: absolute; inset-block-end: -18px; inset-inline-start: -18px;
  background: var(--gold); color: var(--black);
  padding: var(--space-4) var(--space-5); border-radius: var(--r-md);
  font-family: var(--font-display); font-weight: 800; line-height: 1.1;
  box-shadow: var(--shadow-md); max-inline-size: 220px;
}
.approach__badge b { display: block; font-size: var(--fs-2xl); }
.approach__badge span { font-size: var(--fs-xs); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
html[lang="he"] .approach__badge span { letter-spacing: 0; text-transform: none; }

.checklist { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: var(--space-3); margin-block: var(--space-6); }
.checklist li {
  display: flex; align-items: center; gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: rgba(255,255,255,.05); border: 1px solid var(--border);
  border-radius: var(--r-sm); font-size: var(--fs-sm); font-weight: 600;
}
.section--bone .checklist li, body:not(.dark) .section:not(.section--dark):not(.section--ink) .checklist li {
  background: var(--white);
}
.checklist svg { inline-size: 18px; block-size: 18px; color: var(--red-bright); flex: none; }
.approach__footer {
  font-family: var(--font-display); font-size: var(--fs-xl); font-weight: 700;
  color: var(--gold); padding-inline-start: var(--space-5);
  border-inline-start: 3px solid var(--gold);
}

/* --------------------------------------------------------- SERVICES ----- */
.cards { display: grid; gap: var(--space-4); grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.card {
  position: relative; padding: var(--space-6) var(--space-5);
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.card::before {
  content: ""; position: absolute; inset-block-start: 0; inset-inline-start: 0;
  inline-size: 100%; block-size: 3px; background: var(--red);
  transform: scaleX(0); transform-origin: inline-start;
  transition: transform 300ms var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card__icon {
  inline-size: 46px; block-size: 46px; border-radius: var(--r-sm);
  background: rgba(193,18,31,.08); color: var(--red);
  display: grid; place-items: center; margin-block-end: var(--space-4);
}
.card__icon svg { inline-size: 24px; block-size: 24px; }
.card__title { font-size: var(--fs-lg); margin-block-end: var(--space-2); }
.card__desc { font-size: var(--fs-sm); color: var(--fg-muted); }

/* ------------------------------------------ OUTCOMES (editorial list) ---
   Replaces the icon-card grid. Typographic rows with hairline rules read as
   an editorial index rather than a generic "cards with icons" template. */
.outcomes { border-block-start: 1px solid var(--border); }
.outcome {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: baseline; gap: var(--space-4) var(--space-5);
  padding: clamp(18px, 2.4vw, 28px) 0;
  border-block-end: 1px solid var(--border);
  position: relative; transition: padding-inline var(--dur) var(--ease);
}
.outcome::before {
  content: ""; position: absolute; inset-block: 0; inset-inline-start: 0;
  inline-size: 3px; background: var(--red);
  transform: scaleY(0); transform-origin: center;
  transition: transform 260ms var(--ease);
}
.outcome:hover::before { transform: scaleY(1); }
.outcome:hover { padding-inline-start: var(--space-4); }
.outcome__num {
  font-family: var(--font-display-en); font-size: var(--fs-sm);
  font-weight: 800; color: var(--detail); letter-spacing: .08em;
  font-variant-numeric: tabular-nums; min-inline-size: 2.5ch;
}
.outcome__title { font-size: var(--fs-xl); line-height: 1.2; }
.outcome__desc {
  grid-column: 2 / -1; font-size: var(--fs-sm); color: var(--fg-muted);
  max-inline-size: 62ch; margin-block-start: var(--space-2);
}
.outcome__icon { color: var(--fg-muted); opacity: .5; transition: all var(--dur) var(--ease); }
.outcome__icon svg { inline-size: 22px; block-size: 22px; }
.outcome:hover .outcome__icon { color: var(--red); opacity: 1; }
@media (min-width: 860px) {
  .outcomes { display: grid; grid-template-columns: 1fr 1fr; column-gap: clamp(32px, 5vw, 72px); }
  .outcomes .outcome:nth-child(-n+2) { border-block-start: 0; }
}
@media (max-width: 859px) { .outcome:first-child { border-block-start: 0; } }

/* --------------------------------------- STORY (transformation beats) ---
   Start -> Approach -> Result, connected by a vertical rule, so a result
   reads as a journey rather than a list of fields. */
.story { display: grid; gap: 0; margin-block-start: var(--space-2); }
.story__beat {
  position: relative; padding-inline-start: var(--space-6);
  padding-block-end: var(--space-4);
}
.story__beat:last-child { padding-block-end: 0; }
.story__beat::before {
  content: ""; position: absolute; inset-inline-start: 4px; inset-block-start: 7px;
  inline-size: 9px; block-size: 9px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,39,.18);
}
.story__beat:not(:last-child)::after {
  content: ""; position: absolute; inset-inline-start: 8px; inset-block: 18px 0;
  inline-size: 1px; background: linear-gradient(to bottom, rgba(201,162,39,.55), rgba(201,162,39,.10));
}
.story__beat:last-child::before { background: var(--red-bright); box-shadow: 0 0 0 3px rgba(224,30,43,.20); }
.story__label {
  font-size: var(--fs-xs); font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold); margin-block-end: 2px;
}
html[lang="he"] .story__label { letter-spacing: .03em; text-transform: none; }
.story__beat:last-child .story__label { color: var(--red-bright); }
.story__text { font-size: var(--fs-sm); color: rgba(255,255,255,.84); }
.section--bone .story__text, .section:not(.section--dark):not(.section--ink) .story__text {
  color: var(--fg-muted);
}
.section--bone .story__label { color: var(--gold-ink); }

/* ------------------------------------------- QUOTES (editorial reviews) --
   Replaces boxed testimonial rectangles: an oversized quote mark, large
   readable type and a byline, separated by hairlines instead of borders. */
.quote {
  flex: 0 0 min(88%, 460px); scroll-snap-align: center;
  display: flex; flex-direction: column; gap: var(--space-4);
  padding-inline: clamp(4px, 1.5vw, 20px);
  position: relative;
}
@media (min-width: 900px) { .quote { flex-basis: min(46%, 480px); } }
.quote__mark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(56px, 7vw, 88px); line-height: .8; color: var(--detail);
  opacity: .38; height: .55em; user-select: none;
}
.quote__text {
  font-size: var(--fs-lg); line-height: 1.55; font-weight: 500; flex: 1;
  text-wrap: pretty;
}
.quote__rule { inline-size: 44px; block-size: 2px; background: var(--detail); opacity: .5; }
.quote__by { display: flex; align-items: center; gap: var(--space-3); }
.quote__name { font-weight: 700; }
.quote__goal { font-size: var(--fs-sm); color: var(--fg-muted); }
.quote__stars { display: flex; gap: 2px; color: var(--detail); }
.quote__stars svg { inline-size: 16px; block-size: 16px; }

/* ------------------------------------------- STEPS (no boxes, connected) -*/
.flow { display: grid; gap: var(--space-6); grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.flowstep { position: relative; padding-block-start: var(--space-5); }
.flowstep::before {
  content: ""; position: absolute; inset-block-start: 0; inset-inline: 0;
  block-size: 2px; background: rgba(255,255,255,.14);
}
.flowstep::after {
  content: ""; position: absolute; inset-block-start: 0; inset-inline-start: 0;
  inline-size: 34px; block-size: 2px; background: var(--gold);
}
.flowstep__num {
  font-family: var(--font-display-en); font-size: var(--fs-sm); font-weight: 800;
  color: var(--gold); letter-spacing: .12em; margin-block-end: var(--space-3);
  font-variant-numeric: tabular-nums;
}
.flowstep__title { font-size: var(--fs-lg); margin-block-end: var(--space-2); }
.flowstep__desc { font-size: var(--fs-sm); color: var(--fg-muted); }

/* --------------------------------------------- INLINE CTA (quiet type) -- */
.cta-inline {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: var(--space-3) var(--space-4); text-align: center;
  margin-block-start: clamp(32px, 4vw, 56px);
  font-size: var(--fs-lg);
}
.cta-inline__link {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-weight: 800; color: var(--red); text-decoration: underline;
  text-underline-offset: 5px; text-decoration-thickness: 2px;
  min-block-size: 44px; padding-inline: 2px;
  transition: color var(--dur) var(--ease), gap var(--dur) var(--ease);
}
.section--dark .cta-inline__link, .section--ink .cta-inline__link { color: var(--gold); }
.cta-inline__link:hover { color: var(--red-bright); gap: var(--space-3); }
.section--dark .cta-inline__link:hover, .section--ink .cta-inline__link:hover { color: var(--gold-light); }
.cta-inline__link svg { inline-size: 18px; block-size: 18px; }

/* --------------------------------------- ABOUT FEATURE (humanise Yuval) - */
.feature { display: grid; gap: clamp(28px, 4vw, 64px); align-items: center; }
@media (min-width: 900px) { .feature { grid-template-columns: 1.1fr .9fr; } }
.feature__media { position: relative; }
.feature__media img {
  inline-size: 100%; aspect-ratio: 5/6; object-fit: cover; object-position: 50% 22%;
  border-radius: var(--r-lg);
}
.feature__sig {
  position: absolute; inset-block-end: var(--space-5); inset-inline-start: var(--space-5);
  font-family: var(--font-display-en); font-size: var(--fs-sm);
  letter-spacing: .24em; text-transform: uppercase; color: rgba(255,255,255,.85);
  text-shadow: 0 2px 12px rgba(0,0,0,.7);
}

/* ------------------------------------------------------ GOAL PICKER ----- */
.picker { display: grid; gap: var(--space-6); }
.picker__chips { display: flex; flex-wrap: wrap; gap: var(--space-3); justify-content: center; }
.chip {
  padding: var(--space-3) var(--space-5); border-radius: var(--r-full);
  border: 2px solid var(--border); font-weight: 700; font-size: var(--fs-sm);
  min-block-size: 48px; display: inline-flex; align-items: center;
  transition: all var(--dur) var(--ease); color: inherit;
}
.chip:hover { border-color: var(--gold); }
.chip[aria-selected="true"] { background: var(--red); border-color: var(--red); color: var(--white); }
.picker__panel {
  border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: clamp(24px, 4vw, 48px); background: rgba(255,255,255,.04);
  text-align: center; display: grid; gap: var(--space-4); justify-items: center;
}
.picker__panel h3 { font-size: var(--fs-2xl); }
.picker__panel p { max-width: 60ch; color: var(--fg-muted); }

/* ------------------------------------------------------- AUDIENCE ------- */
.audience__grid { display: grid; gap: clamp(28px, 4vw, 56px); grid-template-columns: 1fr; align-items: center; }
@media (min-width: 900px) { .audience__grid { grid-template-columns: .9fr 1.1fr; } }
.audience__media img { inline-size: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: var(--r-lg); }
.pills { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.pill {
  padding: var(--space-3) var(--space-5); border-radius: var(--r-full);
  background: rgba(255,255,255,.06); border: 1px solid var(--border);
  font-weight: 600; font-size: var(--fs-sm);
  display: inline-flex; align-items: center; gap: var(--space-2);
}
.pill svg { inline-size: 16px; block-size: 16px; color: var(--gold); flex: none; }

/* ------------------------------------------------- TRANSFORMATIONS ------ */
.slider { position: relative; }
.slider__track {
  display: flex; gap: var(--space-4);
  overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding-block-end: var(--space-4);
  scrollbar-width: none; -ms-overflow-style: none;
}
.slider__track::-webkit-scrollbar { display: none; }
@media (prefers-reduced-motion: reduce) { .slider__track { scroll-behavior: auto; } }
.slide {
  flex: 0 0 min(88%, 380px); scroll-snap-align: center;
  background: var(--ink-2); border: 1px solid var(--border-dark);
  border-radius: var(--r-lg); overflow: hidden;
  display: flex; flex-direction: column;
}
@media (min-width: 768px) { .slide { flex-basis: min(46%, 420px); } }
@media (min-width: 1200px) { .slide { flex-basis: min(32%, 400px); } }
.slide__media { position: relative; background: var(--black); }
.slide__media img { inline-size: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: 50% 30%; }
.slide__tag {
  position: absolute; inset-block-start: var(--space-3); inset-inline-start: var(--space-3);
  background: rgba(11,11,12,.82); color: var(--gold);
  padding: 6px 14px; border-radius: var(--r-full);
  font-size: var(--fs-xs); font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  backdrop-filter: blur(6px);
}
html[lang="he"] .slide__tag { letter-spacing: 0; text-transform: none; }
.slide__body { padding: var(--space-5); display: grid; gap: var(--space-3); flex: 1; }
.slide__name { font-size: var(--fs-lg); color: var(--white); }
.slide__meta { display: grid; gap: var(--space-2); font-size: var(--fs-sm); }
.slide__meta div { display: flex; gap: var(--space-2); align-items: baseline; }
.slide__meta dt { color: var(--gold); font-weight: 700; flex: none; }
.slide__meta dd { color: rgba(255,255,255,.82); margin: 0; }
.slide__quote {
  font-size: var(--fs-sm); color: rgba(255,255,255,.72); font-style: italic;
  padding-inline-start: var(--space-4); border-inline-start: 2px solid var(--red);
  margin-block-start: auto;
}
/* Slides adapt when the results section is placed on light ground */
.section:not(.section--dark):not(.section--ink) .slide {
  background: var(--white); border-color: var(--border);
}
.section:not(.section--dark):not(.section--ink) .slide__name { color: var(--ink); }
.section:not(.section--dark):not(.section--ink) .slide__quote { color: var(--fg-muted); }
.section:not(.section--dark):not(.section--ink) .slide__tag {
  background: rgba(255,255,255,.92); color: var(--gold-ink);
}

.slider__controls { display: flex; align-items: center; justify-content: center; gap: var(--space-4); margin-block-start: var(--space-5); }
.slider__btn {
  inline-size: 52px; block-size: 52px; border-radius: 50%;
  border: 2px solid var(--border); display: grid; place-items: center;
  color: inherit; transition: all var(--dur) var(--ease);
}
.slider__btn:hover { border-color: var(--gold); color: var(--gold); }
.slider__btn svg { inline-size: 22px; block-size: 22px; }
.slider__dots { display: flex; gap: var(--space-2); }
/* The visible dot is small, but the hit area is a full 26x26 so it satisfies
   WCAG 2.5.8 target size on touch. */
.slider__dot {
  inline-size: 26px; block-size: 26px; padding: 0; border-radius: 50%;
  background: none; position: relative; flex: none;
}
.slider__dot::before {
  content: ""; position: absolute; inset-block-start: 50%; inset-inline-start: 50%;
  translate: -50% -50%; inline-size: 10px; block-size: 10px; border-radius: var(--r-full);
  background: rgba(255,255,255,.30); transition: all var(--dur) var(--ease);
}
html[dir="rtl"] .slider__dot::before { translate: 50% -50%; }
.slider__dot[aria-current="true"]::before { background: var(--gold); inline-size: 22px; }
.section:not(.section--dark):not(.section--ink) .slider__dot::before { background: rgba(11,11,12,.22); }
.section:not(.section--dark):not(.section--ink) .slider__dot[aria-current="true"]::before { background: var(--red); }

/* Placeholder marker */
.ph-note {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: .06em;
  color: var(--detail); border: 1px dashed currentColor;
  padding: 3px 10px; border-radius: var(--r-full);
}

/* ---------------------------------------------------------- REVIEWS ----- */
.review {
  flex: 0 0 min(88%, 420px); scroll-snap-align: center;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: var(--space-6);
  display: flex; flex-direction: column; gap: var(--space-4);
}
@media (min-width: 900px) { .review { flex-basis: min(45%, 440px); } }
.review__stars { display: flex; gap: 3px; color: var(--gold); }
.review__stars svg { inline-size: 20px; block-size: 20px; }
.review__text { font-size: var(--fs-base); flex: 1; }
.review__person { display: flex; align-items: center; gap: var(--space-3); }
.review__avatar {
  inline-size: 48px; block-size: 48px; border-radius: 50%; flex: none;
  background: var(--bone-2); display: grid; place-items: center;
  color: var(--grey); font-weight: 800;
}
.review__name { font-weight: 700; }
.review__goal { font-size: var(--fs-sm); color: var(--fg-muted); }

/* ---------------------------------------------------------- PROCESS ----- */
.steps { display: grid; gap: var(--space-4); grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); counter-reset: step; }
.step {
  position: relative; padding: var(--space-6) var(--space-5);
  border: 1px solid var(--border); border-radius: var(--r-md);
  background: rgba(255,255,255,.03);
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.step:hover { border-color: var(--gold); transform: translateY(-3px); }
.step__num {
  font-family: var(--font-display-en); font-size: var(--fs-3xl); font-weight: 800;
  color: transparent; -webkit-text-stroke: 2px var(--gold);
  line-height: 1; margin-block-end: var(--space-3);
}
.step__title { font-size: var(--fs-lg); margin-block-end: var(--space-2); }
.step__desc { font-size: var(--fs-sm); color: var(--fg-muted); }

/* ------------------------------------------------------------ MODES ----- */
.modes { display: grid; gap: var(--space-5); grid-template-columns: 1fr; }
@media (min-width: 860px) { .modes { grid-template-columns: 1fr 1fr; } }
.mode {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg); border: 1px solid var(--border);
  display: flex; flex-direction: column;
}
.mode__media { position: relative; }
.mode__media img { inline-size: 100%; aspect-ratio: 16/10; object-fit: cover; }
.mode__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,11,12,.85), rgba(11,11,12,.15));
}
.mode__label {
  position: absolute; inset-block-end: var(--space-4); inset-inline-start: var(--space-5);
  z-index: 1; font-family: var(--font-display); font-size: var(--fs-xl);
  font-weight: 800; color: var(--white);
}
.mode__body { padding: var(--space-6) var(--space-5); display: grid; gap: var(--space-4); flex: 1; align-content: start; }
.mode__features { display: grid; gap: var(--space-2); }
.mode__features li { display: flex; gap: var(--space-3); align-items: flex-start; font-size: var(--fs-sm); }
.mode__features svg { inline-size: 18px; block-size: 18px; color: var(--red-bright); flex: none; margin-block-start: 3px; }

/* ----------------------------------------------------------- VIDEOS ----- */
.videos { display: grid; gap: var(--space-5); grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.video { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); background: var(--ink-2); }
.video__frame {
  position: relative; aspect-ratio: 16/9; background: var(--black);
  display: grid; place-items: center; cursor: pointer; inline-size: 100%;
}
.video__frame img { position: absolute; inset: 0; inline-size: 100%; block-size: 100%; object-fit: cover; }
.video__frame iframe { position: absolute; inset: 0; inline-size: 100%; block-size: 100%; border: 0; }
.video__play {
  position: relative; z-index: 1;
  inline-size: 72px; block-size: 72px; border-radius: 50%;
  background: rgba(193,18,31,.94); color: var(--white);
  display: grid; place-items: center;
  box-shadow: 0 8px 28px rgba(0,0,0,.4);
  transition: transform var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.video__frame:hover .video__play { transform: scale(1.08); background: var(--red-bright); }
.video__play svg { inline-size: 30px; block-size: 30px; margin-inline-start: 4px; }
html[dir="rtl"] .video__play svg { margin-inline-start: 0; margin-inline-end: 4px; }
.video__body { padding: var(--space-5); color: var(--white); }
.video__title { font-size: var(--fs-lg); margin-block-end: var(--space-2); }
.video__desc { font-size: var(--fs-sm); color: var(--grey-light); }

/* -------------------------------------------------------------- FAQ ----- */
.faq { display: grid; gap: var(--space-3); max-width: 860px; margin-inline: auto; }
.faq__item { border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; background: var(--white); }
.faq__q {
  inline-size: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-4); padding: var(--space-5); text-align: start;
  font-weight: 700; font-size: var(--fs-base); min-block-size: 60px;
  transition: background-color var(--dur) var(--ease);
}
.faq__q:hover { background: rgba(193,18,31,.04); }
.faq__q svg { inline-size: 22px; block-size: 22px; flex: none; color: var(--red); transition: transform var(--dur) var(--ease); }
.faq__q[aria-expanded="true"] svg { transform: rotate(45deg); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 300ms var(--ease); }
.faq__q[aria-expanded="true"] + .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p { padding: 0 var(--space-5) var(--space-5); color: var(--fg-muted); }

/* ------------------------------------------------------------- FORM ----- */
.formwrap { display: grid; gap: clamp(28px, 4vw, 56px); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 960px) { .formwrap { grid-template-columns: 1fr 1.15fr; } }
.form { display: grid; gap: var(--space-4); }
.form__row { display: grid; gap: var(--space-4); grid-template-columns: 1fr; }
@media (min-width: 560px) { .form__row--2 { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: var(--space-2); }
.field label { font-size: var(--fs-sm); font-weight: 700; }
.field label .opt { font-weight: 500; color: var(--fg-muted); }
.field input, .field select, .field textarea {
  inline-size: 100%; min-block-size: 52px;
  padding: var(--space-3) var(--space-4);
  background: var(--white); color: var(--ink);
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.field textarea { min-block-size: 120px; resize: vertical; line-height: 1.6; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--red); box-shadow: 0 0 0 3px rgba(193,18,31,.14); outline: none;
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236E6E76' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-size: 20px;
  background-position: right var(--space-4) center;
  padding-inline-end: var(--space-8);
}
html[dir="rtl"] .field select { background-position: left var(--space-4) center; padding-inline-end: var(--space-4); padding-inline-start: var(--space-8); }
.field .err { font-size: var(--fs-xs); color: var(--red-bright); font-weight: 600; display: none; }
.field.is-invalid .err { display: block; }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: var(--red-bright); }

.consent { display: flex; gap: var(--space-3); align-items: flex-start; font-size: var(--fs-sm); }
.consent input { inline-size: 22px; block-size: 22px; min-block-size: 22px; flex: none; margin-block-start: 2px; accent-color: var(--red); }

.form__aside { display: grid; gap: var(--space-4); align-content: start; }
.contactcard {
  display: flex; align-items: center; gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  border: 1px solid var(--border); border-radius: var(--r-md);
  background: var(--white); transition: all var(--dur) var(--ease);
}
.contactcard:hover { border-color: var(--red); transform: translateX(0); box-shadow: var(--shadow-sm); }
.contactcard__icon {
  inline-size: 44px; block-size: 44px; border-radius: 50%; flex: none;
  display: grid; place-items: center; background: rgba(193,18,31,.08); color: var(--red);
}
.contactcard__icon svg { inline-size: 22px; block-size: 22px; }
.contactcard--wa .contactcard__icon { background: rgba(37,211,102,.12); color: #128C7E; }
.contactcard__label { font-size: var(--fs-xs); color: var(--fg-muted); font-weight: 600; }
.contactcard__value { font-weight: 700; }

.form__success {
  display: none; padding: var(--space-6); text-align: center;
  border: 2px solid var(--gold); border-radius: var(--r-lg);
  background: rgba(201,162,39,.06); gap: var(--space-4);
}
.form__success.is-visible { display: grid; justify-items: center; }
.form__success h3 { font-size: var(--fs-xl); }
.form__success svg { inline-size: 56px; block-size: 56px; color: var(--gold); }

/* --------------------------------------------------------- CTA BANDS ---- */
.ctaband { position: relative; overflow: hidden; background: var(--black); color: var(--white); }
.ctaband--red { background: linear-gradient(135deg, var(--red-deep) 0%, var(--red) 55%, #A20F1A 100%); }
.ctaband__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--space-6); }
.ctaband__text { font-family: var(--font-display); font-size: var(--fs-2xl); font-weight: 800; max-width: 20ch; }
.ctaband--slim { padding-block: clamp(40px, 5vw, 64px); }
.ctaband__actions { display: flex; flex-wrap: wrap; gap: var(--space-4); }

/* ------------------------------------------------------------ FOOTER ---- */
.footer { background: var(--black); color: var(--white); padding-block: var(--space-8) var(--space-6); --border: var(--border-dark); }
.footer__grid { display: grid; gap: var(--space-7); grid-template-columns: 1fr; }
@media (min-width: 700px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1.2fr; } }
.footer__brandline { color: var(--grey-light); font-size: var(--fs-sm); margin-block-start: var(--space-3); max-width: 40ch; }
.footer__title { font-size: var(--fs-sm); font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-block-end: var(--space-4); }
html[lang="he"] .footer__title { letter-spacing: .04em; text-transform: none; }
/* Footer links are full 44px tap targets — they are the fallback navigation
   on phones, where most of this traffic lands. */
.footer__links { display: grid; }
.footer__links a {
  display: flex; align-items: center; min-block-size: 44px;
  color: rgba(255,255,255,.78); font-size: var(--fs-sm);
  transition: color var(--dur) var(--ease);
}
.footer__links a:hover { color: var(--gold); }
.footer__contact { display: grid; gap: var(--space-1); }
.footer__contact a { display: flex; align-items: center; gap: var(--space-3); color: rgba(255,255,255,.86); font-size: var(--fs-sm); min-block-size: 44px; }
.footer__contact svg { inline-size: 18px; block-size: 18px; color: var(--gold); flex: none; }
.socials { display: flex; gap: var(--space-3); margin-block-start: var(--space-5); }
.socials a {
  inline-size: 46px; block-size: 46px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.20); display: grid; place-items: center;
  transition: all var(--dur) var(--ease);
}
.socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.socials svg { inline-size: 22px; block-size: 22px; }
.footer__bottom {
  margin-block-start: var(--space-7); padding-block-start: var(--space-5);
  border-block-start: 1px solid rgba(255,255,255,.10);
  display: flex; flex-wrap: wrap; gap: var(--space-4);
  align-items: center; justify-content: space-between;
  font-size: var(--fs-xs); color: var(--grey-light);
}
.footer__bottom nav { display: flex; flex-wrap: wrap; gap: var(--space-2) var(--space-5); }
.footer__bottom nav a { display: inline-flex; align-items: center; min-block-size: 44px; }
.footer__bottom a:hover { color: var(--gold); }

/* ------------------------------------------------- FLOATING / STICKY ---- */
.wa-float {
  position: fixed; z-index: 90;
  inset-block-end: 24px; inset-inline-end: 24px;
  inline-size: 60px; block-size: 60px; border-radius: 50%;
  background: #25D366; color: #06301A;
  display: grid; place-items: center;
  box-shadow: 0 8px 28px rgba(37,211,102,.44);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.wa-float:hover { transform: scale(1.07); box-shadow: 0 12px 34px rgba(37,211,102,.55); }
.wa-float svg { inline-size: 32px; block-size: 32px; }

.stickybar {
  position: fixed; inset-inline: 0; inset-block-end: 0; z-index: 95;
  display: none; grid-template-columns: 1.4fr 1fr 1fr;
  background: rgba(11,11,12,.97);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-block-start: 1px solid rgba(255,255,255,.12);
  padding-block-end: env(safe-area-inset-bottom, 0);
}
.stickybar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px; min-block-size: 60px; padding: var(--space-2);
  font-size: var(--fs-xs); font-weight: 700; color: var(--white);
  border-inline-end: 1px solid rgba(255,255,255,.10);
}
html[dir="rtl"] .stickybar a { border-inline-end: 0; border-inline-start: 1px solid rgba(255,255,255,.10); }
.stickybar a:last-child { border: 0; }
.stickybar svg { inline-size: 20px; block-size: 20px; }
.stickybar .sb-wa { background: #25D366; color: #06301A; }
.stickybar .sb-start { background: var(--red); }

/* ------------------------------------------------------------ MOTION ---- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 600ms var(--ease), transform 600ms var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 80ms; }
.reveal[data-delay="2"] { transition-delay: 160ms; }
.reveal[data-delay="3"] { transition-delay: 240ms; }
.reveal[data-delay="4"] { transition-delay: 320ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .btn:hover, .card:hover, .step:hover, .wa-float:hover { transform: none; }
}

/* -------------------------------------------------------- RESPONSIVE ---- */
@media (max-width: 1023px) {
  .nav { display: none; }
  .burger { display: flex; }
}
/* The header CTA only appears once there is genuine room beside the nav,
   otherwise a 9-item bilingual nav pushes it past the container edge. */
@media (max-width: 1319px) {
  .header__actions .btn { display: none; }
}
@media (min-width: 1024px) {
  .drawer { display: none; }
  .hero__brandline { display: block; }
}
@media (max-width: 767px) {
  :root { --header-h: 60px; }
  body { padding-block-end: 60px; }      /* room for sticky bar */
  .stickybar { display: grid; }
  .wa-float { display: none; }           /* sticky bar covers it on mobile */
  /* Text over photo on phones. The landscape photo frames Yuval on the
     reading-start side; we pull the crop toward him (object-position) and lay
     the headline + text over the open side, with a strong scrim for contrast. */
  .hero { min-block-size: min(94svh, 760px); padding-block-start: calc(var(--header-h) + 40px); }
  .hero__media img { object-position: 13% 26%; }         /* EN: Yuval is on the left */
  html[dir="rtl"] .hero__media img { object-position: 87% 26%; }  /* HE: Yuval is on the right */
  .hero__media::after {
    background:
      linear-gradient(to top, rgba(11,11,12,.97) 8%, rgba(11,11,12,.70) 34%, rgba(11,11,12,.18) 62%, rgba(11,11,12,.55) 100%),
      linear-gradient(to var(--grad-side, right), rgba(11,11,12,.94) 0%, rgba(11,11,12,.55) 42%, rgba(11,11,12,0) 82%);
  }
  .hero__ctas .btn { inline-size: 100%; }
  .ctaband__inner { flex-direction: column; align-items: flex-start; }
  .ctaband__actions { inline-size: 100%; }
  .ctaband__actions .btn { inline-size: 100%; }
  .approach__badge { inset-inline-start: auto; inset-inline-end: var(--space-4); inset-block-end: var(--space-4); }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 400px) {
  .credstrip__item { min-block-size: 72px; font-size: var(--fs-xs); }
}

/* Print — keep it sane */
@media print {
  .header, .drawer, .stickybar, .wa-float, .ctaband { display: none !important; }
  body { color: #000; background: #fff; }
}

/* Discreet admin entry in the mobile drawer (header button is desktop-only) */
.drawer__login{display:block;text-align:center;margin-block-start:var(--space-5);color:var(--fg-muted);font-size:var(--fs-sm);min-block-size:44px;line-height:44px;text-decoration:underline;text-underline-offset:4px}
.drawer__login:hover{color:var(--gold)}
