/* =========================================================
   Yona Shavin — סדנת מאמנים
   Editorial RTL landing
   ========================================================= */

:root {
  /* Palette */
  --bg:           #f5f1e8;
  --bg-section:   #ffffff;
  --bg-warm:      #efe9d8;
  --bg-deep:      #ece4d0;
  --olive-deep:   #3e4632;
  --olive:        #5b6447;
  --olive-soft:   #8a9268;
  --mustard:      #d4a437;
  --mustard-deep: #b78a26;
  --ink:          #1e1c19;
  --ink-soft:     #6b685f;
  --ink-faint:    #a09c8f;
  --line:         #d9d2bf;
  --line-soft:    #e6dfc9;
  --cream-on-dark: #f5f1e8;
  --muted-on-dark: rgba(245, 241, 232, 0.62);
  --line-on-dark:  rgba(245, 241, 232, 0.18);

  /* Type */
  --font-display: "Assistant", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --font-body:    "Assistant", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;

  /* Layout */
  --measure: 1240px;
  --measure-narrow: 880px;
  --gutter: clamp(20px, 4vw, 64px);
  --section-y: clamp(96px, 13vw, 180px);
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --radius-pill: 999px;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.6, 0.2, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);

  /* Shadows */
  --shadow-card: 0 1px 2px rgba(30, 28, 25, 0.04), 0 12px 36px rgba(30, 28, 25, 0.08);
  --shadow-image: 0 30px 80px rgba(62, 70, 50, 0.25);

  /* Tracking */
  --tracking-display: -0.028em;
  --tracking-eyebrow: 0.16em;
}

/* =========================================================
   Reset & base
   ========================================================= */

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--mustard); color: var(--ink); }

/* =========================================================
   Cursor follower (desktop only)
   ========================================================= */

.cursor, .cursor-dot {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.cursor {
  width: 36px;
  height: 36px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  margin: -18px;
  transition: opacity 0.5s var(--ease), width 0.35s var(--ease-out-expo),
              height 0.35s var(--ease-out-expo), background 0.3s var(--ease),
              border-color 0.3s var(--ease), margin 0.35s var(--ease-out-expo);
}
.cursor-dot {
  width: 5px;
  height: 5px;
  background: var(--ink);
  border-radius: 50%;
  margin: -2.5px;
}
body.cursor-ready .cursor,
body.cursor-ready .cursor-dot { opacity: 1; }

body.cursor-hover .cursor {
  width: 70px;
  height: 70px;
  margin: -35px;
  background: var(--mustard);
  border-color: var(--mustard);
  mix-blend-mode: multiply;
}
body.cursor-hover .cursor-dot { opacity: 0; }

/* On dark sections invert cursor */
.apply, .marquee { --cursor-color: var(--cream-on-dark); }
body.cursor-on-dark .cursor { border-color: var(--cream-on-dark); }
body.cursor-on-dark .cursor-dot { background: var(--cream-on-dark); }

@media (hover: none), (pointer: coarse) {
  .cursor, .cursor-dot { display: none; }
}

/* =========================================================
   Layout
   ========================================================= */

.container {
  max-width: var(--measure);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--measure-narrow); }

/* =========================================================
   Eyebrow
   ========================================================= */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--tracking-eyebrow);
  color: var(--olive);
  margin-bottom: 28px;
  text-transform: uppercase;
}
.eyebrow__index {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  color: var(--mustard-deep);
  letter-spacing: 0;
}
.eyebrow__label { display: inline-block; }
.eyebrow--center { justify-content: center; }
.eyebrow--light { color: rgba(245, 241, 232, 0.7); }
.eyebrow--light .eyebrow__index { color: var(--mustard); }

.arrow {
  display: inline-block;
  margin-inline: 4px;
  transition: transform 0.4s var(--ease-out-expo);
}

/* =========================================================
   Buttons
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 34px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.5s var(--ease-out-expo), background 0.4s var(--ease), color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn--mustard {
  background: var(--mustard);
  color: var(--ink);
}
.btn--mustard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateY(101%);
  transition: transform 0.55s var(--ease-out-expo);
  z-index: -1;
}
.btn--mustard:hover {
  color: var(--bg);
}
.btn--mustard:hover::before { transform: translateY(0); }
.btn--lg {
  padding: 20px 42px;
  font-size: 15px;
}

/* =========================================================
   Topbar
   ========================================================= */

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 241, 232, 0.86);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.topbar.is-scrolled {
  border-bottom-color: var(--line-soft);
}
.topbar__inner {
  max-width: var(--measure);
  margin-inline: auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.topbar__brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: var(--tracking-display);
  color: var(--ink);
}
.topbar__contact {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  padding: 8px 4px;
  border-radius: var(--radius-pill);
  transition: color 0.3s var(--ease);
}
.topbar__contact svg { color: var(--olive-deep); transition: color 0.3s var(--ease); }
.topbar__contact:hover { color: var(--olive-deep); }
.topbar__contact:hover svg { color: var(--mustard-deep); }

/* =========================================================
   Hero
   ========================================================= */

.hero {
  padding: clamp(60px, 9vw, 120px) var(--gutter) clamp(80px, 11vw, 160px);
}
.hero__grid {
  max-width: var(--measure);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}
.hero__text { min-width: 0; }

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(64px, 11vw, 168px);
  line-height: 0.92;
  letter-spacing: var(--tracking-display);
  color: var(--ink);
  margin: 0 0 28px;
}
.hero__title .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding-bottom: 0.08em;
}
.hero__title .word + .word { margin-inline-start: 0.24em; }
.hero__title .word__inner {
  display: inline-block;
  transform: translateY(105%);
  transition: transform 1.2s var(--ease-out-expo);
  will-change: transform;
}
.hero__title.is-in .word:nth-child(1) .word__inner { transition-delay: 0.05s; transform: translateY(0); }
.hero__title.is-in .word:nth-child(2) .word__inner { transition-delay: 0.18s; transform: translateY(0); }

.hero__subhead {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 2.3vw, 30px);
  line-height: 1.32;
  letter-spacing: -0.005em;
  color: var(--ink-soft);
  margin: 0 0 28px;
  max-width: 22em;
}

.hero__lede {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(15.5px, 1.2vw, 17.5px);
  line-height: 1.8;
  color: var(--ink-soft);
  margin: 0 0 44px;
  max-width: 32em;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.hero__whatsapp {
  font-size: 13.5px;
  color: var(--ink);
  font-weight: 500;
  position: relative;
  padding-bottom: 3px;
}
.hero__whatsapp::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.55s var(--ease-out-expo), background 0.3s var(--ease);
}
.hero__whatsapp:hover { color: var(--mustard-deep); }
.hero__whatsapp:hover::after {
  transform: scaleX(1);
  background: var(--mustard);
}
.hero__whatsapp:hover .arrow { transform: translateX(-6px); }

/* Hero media */
.hero__media { position: relative; perspective: 1200px; }
.hero__image-wrap {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-image);
  position: relative;
  aspect-ratio: 4 / 5;
  transform-style: preserve-3d;
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform 0.6s var(--ease-out-expo);
}
.hero__image {
  position: absolute;
  inset: -8% -4%;
  background-color: var(--bg-warm);
  background-image: url("public/yona-hero.jpg");
  background-size: cover;
  background-position: center;
  will-change: scale, translate;
  scale: 1.05;
  animation: ken-burns 20s ease-in-out infinite alternate;
}
.hero__vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 50% 100%, rgba(30,28,25,0.42) 0%, rgba(30,28,25,0) 60%),
    linear-gradient(165deg, rgba(30,28,25,0) 55%, rgba(30,28,25,0.18) 100%);
  pointer-events: none;
}
@keyframes ken-burns {
  from { scale: 1.04; }
  to   { scale: 1.12; }
}
.hero__caption {
  position: absolute;
  bottom: 22px;
  inset-inline-start: 26px;
  color: var(--cream-on-dark);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 1;
}

/* =========================================================
   Marquee
   ========================================================= */

.marquee {
  background: var(--olive-deep);
  color: var(--cream-on-dark);
  padding: 30px 0;
  overflow: hidden;
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: marquee-rtl 42s linear infinite;
}
.marquee__item {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 4.4vw, 56px);
  letter-spacing: var(--tracking-display);
  white-space: nowrap;
  flex-shrink: 0;
}
.marquee__dot {
  color: var(--mustard);
  font-size: 14px;
  flex-shrink: 0;
}
@keyframes marquee-rtl {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* =========================================================
   Section head
   ========================================================= */

.section-head { margin-bottom: 72px; }
.section-head__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(38px, 5.6vw, 80px);
  line-height: 1.02;
  letter-spacing: var(--tracking-display);
  color: var(--ink);
  margin: 0 0 18px;
  max-width: 14em;
}
.section-head__sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 36em;
  margin: 0;
}

/* =========================================================
   Benefits
   ========================================================= */

.benefits {
  padding: var(--section-y) 0;
  background: var(--bg-section);
}
.benefits__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-soft);
}
.benefits__list li {
  position: relative;
  padding: 36px 56px 36px 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 22.5px);
  line-height: 1.5;
  letter-spacing: -0.008em;
  color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
  transition: color 0.4s var(--ease), padding 0.5s var(--ease-out-expo);
}
.benefits__list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 50px;
  width: 28px;
  height: 1px;
  background: var(--mustard);
  transition: width 0.55s var(--ease-out-expo), background 0.4s var(--ease);
}
.benefits__list li:hover { padding-inline-start: 14px; color: var(--olive-deep); }
.benefits__list li:hover::before { width: 44px; background: var(--mustard-deep); }

/* =========================================================
   Schedule — editorial rows with ghost numerals
   ========================================================= */

.schedule {
  padding: var(--section-y) 0;
  background: var(--bg);
}
.sessions {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.session {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
  padding: clamp(40px, 5vw, 64px) 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: padding 0.6s var(--ease-out-expo);
}
.session::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, rgba(212,164,55,0.06), rgba(212,164,55,0));
  transition: width 0.7s var(--ease-out-expo);
  pointer-events: none;
}
.session:hover::before { width: 100%; }
.session__num {
  font-family: var(--font-display);
  font-size: clamp(70px, 11vw, 156px);
  font-weight: 700;
  line-height: 0.86;
  color: var(--ink);
  letter-spacing: -0.05em;
  transition: color 0.45s var(--ease), transform 0.55s var(--ease-out-expo);
  display: block;
}
.session:hover .session__num {
  color: var(--mustard-deep);
  transform: translateX(-6px);
}
.session__content { max-width: 38em; }
.session__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.session__date {
  font-size: 12.5px;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: var(--olive-deep);
  text-transform: uppercase;
}
.session__tag {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mustard-deep);
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
}
.session__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.05;
  letter-spacing: var(--tracking-display);
  color: var(--ink);
  margin: 0 0 16px;
}
.session__title-sub {
  font-weight: 300;
  color: var(--ink-soft);
  font-size: 0.7em;
}
.session__body {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.25vw, 17.5px);
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0;
  max-width: 36em;
}

/* =========================================================
   Logistics
   ========================================================= */

.logistics {
  padding: clamp(48px, 7vw, 88px) 0;
  background: var(--bg-section);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.logistics__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.logistics__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 auto;
}
.logistics__label {
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--olive);
}
.logistics__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 44px);
  letter-spacing: var(--tracking-display);
  color: var(--ink);
  line-height: 1;
}
.logistics__unit {
  font-weight: 300;
  color: var(--ink-soft);
  font-size: 0.55em;
  margin-inline-start: 4px;
}
.logistics__divider {
  width: 1px;
  align-self: stretch;
  background: var(--line);
  min-height: 48px;
}
.logistics__location {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.logistics__location:hover {
  color: var(--olive-deep);
  border-bottom-color: var(--olive);
}
.logistics__pin { color: var(--mustard-deep); flex-shrink: 0; }

/* =========================================================
   Audience — flat editorial, no cards
   ========================================================= */

.audience {
  padding: var(--section-y) 0;
  background: var(--bg);
}
.audience__grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.audience__divider {
  background: var(--line);
  width: 1px;
  align-self: stretch;
  min-height: 240px;
}
.audience__col {
  padding: 8px 0;
}
.audience__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.2;
  letter-spacing: var(--tracking-display);
  color: var(--ink);
  margin: 0 0 36px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.audience__sign {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--mustard);
  color: var(--ink);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.audience__sign--soft {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-soft);
}
.audience__title--soft { color: var(--ink-soft); }
.audience__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.audience__list li {
  position: relative;
  padding: 20px 28px 20px 0;
  font-family: var(--font-display);
  font-size: clamp(16px, 1.35vw, 19px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
}
.audience__list li:last-child { border-bottom: none; }
.audience__list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 32px;
  width: 14px;
  height: 1px;
  background: var(--mustard);
}
.audience__list--soft li { color: var(--ink-soft); }
.audience__list--soft li::before { background: var(--line); }

/* =========================================================
   Testimonials — flat with hairlines
   ========================================================= */

.testimonials {
  padding: var(--section-y) 0;
  background: var(--bg-section);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-soft);
}
.t-card {
  position: relative;
  background: transparent;
  padding: 56px 40px 40px;
  margin: 0;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--line-soft);
  border-inline-end: 1px solid var(--line-soft);
  transition: background 0.5s var(--ease);
}
.t-card:last-child { border-inline-end: none; }
.t-card:hover { background: var(--bg); }
.t-card__mark {
  position: absolute;
  top: 18px;
  inset-inline-end: 30px;
  font-family: var(--font-display);
  font-size: 90px;
  line-height: 1;
  color: var(--mustard);
  font-weight: 700;
}
.t-card__quote {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(15.5px, 1.3vw, 17.5px);
  line-height: 1.75;
  color: var(--ink);
  margin: 0 0 32px;
  flex: 1;
  position: relative;
  z-index: 1;
}
.t-card__cite {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.t-card__rule {
  width: 28px;
  height: 1px;
  background: var(--mustard);
  flex-shrink: 0;
}

/* =========================================================
   About
   ========================================================= */

.about {
  padding: var(--section-y) 0;
  background: var(--bg);
}
.about__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.about__text { max-width: 36em; }
.about__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(44px, 6.4vw, 92px);
  line-height: 0.98;
  letter-spacing: var(--tracking-display);
  color: var(--ink);
  margin: 0 0 36px;
}
.about__body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(15.5px, 1.3vw, 18px);
  line-height: 1.8;
  color: var(--ink-soft);
  margin: 0 0 24px;
}
.about__body:last-of-type { margin-bottom: 0; }
.about__body--lead {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 32px;
}
.about__body--close {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  font-size: clamp(17px, 1.4vw, 20px);
  margin-top: 10px;
}

.about__media { position: relative; }
.about__image-wrap {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-image);
  aspect-ratio: 4 / 5;
  position: relative;
}
.about__image {
  position: absolute;
  inset: -6% -3%;
  background-color: var(--bg-warm);
  background-image: url("public/yona-portrait.jpg");
  background-size: cover;
  background-position: center;
  will-change: scale, translate;
  scale: 1.04;
  animation: ken-burns 24s ease-in-out infinite alternate-reverse;
}
.about__vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 50% 100%, rgba(30,28,25,0.30) 0%, rgba(30,28,25,0) 65%);
  pointer-events: none;
}

/* =========================================================
   Apply (dark)
   ========================================================= */

.apply {
  padding: var(--section-y) 0;
  background: var(--olive-deep);
  color: var(--cream-on-dark);
  position: relative;
}
.apply__head {
  text-align: center;
  margin-bottom: 80px;
}
.apply__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1;
  letter-spacing: var(--tracking-display);
  color: var(--cream-on-dark);
  margin: 0 0 18px;
}
.apply__sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.65;
  color: var(--muted-on-dark);
  max-width: 32em;
  margin-inline: auto;
}

.form { display: flex; flex-direction: column; gap: 0; }
.form__honeypot {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 72px);
}
.field {
  position: relative;
  padding: 28px 0 12px;
  border-bottom: 1px solid var(--line-on-dark);
  transition: border-color 0.4s var(--ease-out-expo);
}
.field--full { width: 100%; }
.field__label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
  margin-bottom: 12px;
  font-weight: 500;
  transition: color 0.4s var(--ease-out-expo);
}
.field__input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: var(--cream-on-dark);
  font-family: var(--font-display);
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 400;
  line-height: 1.5;
  padding: 4px 0 12px;
  direction: rtl;
}
.field__input--area {
  resize: vertical;
  min-height: 140px;
  font-family: var(--font-body);
  font-size: clamp(15px, 1.2vw, 17.5px);
  line-height: 1.7;
}
.field:focus-within { border-bottom-color: var(--mustard); }
.field:focus-within .field__label { color: var(--mustard); }
.field--error { border-bottom-color: #d68a6e; }

.form__footer {
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.form__aside {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--muted-on-dark);
  margin: 0;
}
.form__link {
  color: var(--cream-on-dark);
  font-weight: 600;
  border-bottom: 1px solid rgba(245, 241, 232, 0.32);
  padding-bottom: 1px;
  margin-inline-start: 6px;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.form__link:hover { color: var(--mustard); border-bottom-color: var(--mustard); }
.form__aside-sep {
  display: inline-block;
  margin-inline: 4px;
  color: var(--muted-on-dark);
  opacity: 0.55;
}

/* When showing thanks, hide the original section head, center the thanks */
.apply.is-thanks { min-height: 70vh; display: flex; align-items: center; }
.apply.is-thanks .container--narrow { width: 100%; }
.apply.is-thanks .apply__head { display: none; }
.apply.is-thanks .thanks { padding: 0; }

.thanks {
  text-align: center;
  padding: 32px 0;
  max-width: 32em;
  margin-inline: auto;
}
.thanks__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 5.6vw, 72px);
  letter-spacing: var(--tracking-display);
  color: var(--cream-on-dark);
  margin: 0 0 18px;
}
.thanks__body {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--muted-on-dark);
  margin: 0 0 32px;
}
.thanks__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--mustard);
  font-weight: 600;
  font-size: 15px;
  border-bottom: 1px solid rgba(212, 164, 55, 0.45);
  padding-bottom: 2px;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.thanks__link:hover { color: #fff; border-bottom-color: #fff; }

/* =========================================================
   Footer
   ========================================================= */

.footer {
  background: var(--bg);
  padding: 56px 0 36px;
  border-top: 1px solid var(--line-soft);
}
.footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.footer__brand {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: var(--tracking-display);
  color: var(--ink);
}
.footer__icons { display: flex; align-items: center; gap: 14px; }
.footer__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: transparent;
  color: var(--olive-deep);
  border: 1px solid var(--line);
  transition: background 0.4s var(--ease), color 0.4s var(--ease), transform 0.5s var(--ease-out-expo), border-color 0.4s var(--ease);
}
.footer__icon:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
  transform: translateY(-3px);
}
.footer__email {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--ink-soft);
}
.footer__email a {
  position: relative;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--line);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.footer__email a:hover {
  color: var(--olive-deep);
  border-bottom-color: var(--mustard);
}
.footer__copy {
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* =========================================================
   Reveals
   ========================================================= */

.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}
.reveal-up.is-in { opacity: 1; transform: none; }

.stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.95s var(--ease-out-expo), transform 0.95s var(--ease-out-expo);
}
.stagger.is-in > * { opacity: 1; transform: none; }
.stagger.is-in > *:nth-child(1) { transition-delay: 0.05s; }
.stagger.is-in > *:nth-child(2) { transition-delay: 0.13s; }
.stagger.is-in > *:nth-child(3) { transition-delay: 0.21s; }
.stagger.is-in > *:nth-child(4) { transition-delay: 0.29s; }
.stagger.is-in > *:nth-child(5) { transition-delay: 0.37s; }
.stagger.is-in > *:nth-child(6) { transition-delay: 0.45s; }

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__media { order: -1; }
  .hero__image-wrap { aspect-ratio: 5 / 4; max-height: 64vh; }

  .session {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 44px 0;
  }
  .session__num { font-size: clamp(64px, 18vw, 130px); line-height: 0.9; }

  .audience__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .audience__divider {
    width: 100%;
    height: 1px;
    min-height: 0;
    margin: 40px 0;
  }

  .testimonials__grid { grid-template-columns: 1fr; }
  .t-card { border-inline-end: none; }
  .t-card:last-child { border-bottom: none; }

  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__media { order: -1; }
  .about__image-wrap { aspect-ratio: 5 / 4; max-height: 56vh; }
}

@media (max-width: 640px) {
  :root { --section-y: clamp(64px, 12vw, 110px); }

  .topbar__inner { padding-block: 14px; }
  .topbar__brand { font-size: 17px; }
  .topbar__contact span { display: none; }
  .topbar__contact { padding: 8px; }

  /* Tighter hero on small phones */
  .hero__title { font-size: clamp(48px, 14vw, 80px); }
  .hero__subhead { font-size: 19px; line-height: 1.35; }
  .hero__lede { font-size: 15.5px; }
  .hero__actions { gap: 22px; flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .hero__whatsapp { text-align: start; }

  /* Section titles scaled for small screens */
  .section-head__title { font-size: clamp(32px, 7.5vw, 44px); }
  .about__title { font-size: clamp(36px, 9vw, 52px); }
  .apply__title { font-size: clamp(40px, 11vw, 56px); }

  .benefits__list li { padding-block: 24px 24px; padding-inline-end: 24px; font-size: 16.5px; }
  .benefits__list li::before { top: 36px; width: 18px; }

  /* Session ghost numbers — smaller on phones so they don't dominate */
  .session__num { font-size: clamp(56px, 16vw, 96px); }
  .session__title { font-size: clamp(22px, 5.5vw, 28px); }
  .session__body { font-size: 15px; }

  .logistics__bar { gap: 24px; }
  .logistics__divider { display: none; }
  .logistics__item { flex: 1 0 42%; }
  .logistics__value { font-size: clamp(22px, 7vw, 30px); }

  .audience__title { font-size: clamp(20px, 5.5vw, 26px); }
  .audience__list li { font-size: 15.5px; padding-block: 12px; }

  .t-card { padding: 40px 24px 28px; }
  .t-card__mark { font-size: 60px; top: 12px; inset-inline-end: 22px; }
  .t-card__quote { font-size: 15.5px; }

  .form__row { grid-template-columns: 1fr; gap: 0; }
  .field { padding: 18px 0 8px; }
  .field__label { margin-bottom: 6px; font-size: 12px; }
  .field__input {
    font-size: 17px;
    padding: 2px 0 8px;
    min-height: 28px;
  }
  .field__input--area {
    font-size: 15.5px;
    min-height: 80px;
  }
  .form__footer { margin-top: 28px; gap: 18px; }
  .form__aside { font-size: 13.5px; }

  .footer__row { flex-direction: column; align-items: flex-start; }

  .marquee { padding: 18px 0; }
  .marquee__track { gap: 32px; animation-duration: 28s; }
  .marquee__item { font-size: clamp(20px, 6vw, 28px); }

  /* Apply thanks — tighter on mobile */
  .apply { padding-block: clamp(56px, 11vw, 96px); }
  .apply__head { margin-bottom: 36px; }
  .apply__sub { font-size: 15px; }
  .apply.is-thanks { min-height: 60vh; }
  .thanks__title { font-size: clamp(36px, 10vw, 52px); }
  .thanks__body { font-size: 17px; }
}

/* =========================================================
   Reduced motion
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal-up, .stagger > * { opacity: 1; transform: none; }
  .hero__title .word__inner { transform: none; }
  .hero__image, .about__image { animation: none; }
  .marquee__track { animation: none; }
}
