:root {
  --navy: #0b2659;
  --navy-2: #071b40;
  --ink: #101827;
  --muted: #586277;
  --paper: #f7f5ef;
  --white: #ffffff;
  --line: #d8dce5;
  --yellow: #f3c13a;
  --yellow-soft: #fff4c7;
  --blue: #65c8de;
  --blue-deep: #1985a0;
  --blue-soft: #dff5fa;
  --success: #207c65;
  --shadow: 0 22px 55px rgba(11, 38, 89, 0.12);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Heebo", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body,
button,
a {
  font-family: "Heebo", Arial, sans-serif;
}

.brand-word {
  display: inline-block;
  direction: ltr;
  font-family: "Baloo 2", "Heebo", Arial, sans-serif;
  font-weight: 500;
  unicode-bidi: isolate;
}

.brand-word-bold {
  font-weight: 700;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
}

.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;
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  right: 12px;
  padding: 10px 16px;
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--navy);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(247, 245, 239, 0.96);
  border-bottom: 1px solid rgba(11, 38, 89, 0.13);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  min-height: 78px;
  gap: 34px;
}

.brand {
  width: 154px;
}

.brand img {
  width: 100%;
  height: 48px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 600;
}

.main-nav a {
  position: relative;
  padding-block: 8px;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--yellow);
  content: "";
  transition: width 240ms var(--ease);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  width: 100%;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  background: var(--navy);
  color: var(--white);
  border: 1px solid var(--navy);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  gap: 12px;
  transition:
    transform 220ms var(--ease),
    background-color 220ms ease;
}

.header-cta:hover {
  background: var(--navy-2);
  transform: translateY(-2px);
}

.hero {
  isolation: isolate;
  position: relative;
  min-height: 700px;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.hero::before {
  position: absolute;
  z-index: 4;
  inset: auto 0 0;
  height: 9px;
  background: var(--yellow);
  content: "";
}

.hero-media,
.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: 0;
  overflow: hidden;
  background: var(--navy);
  pointer-events: none;
}

.hero-video {
  object-fit: cover;
  object-position: center center;
}

.hero-shade {
  background: linear-gradient(
    to left,
    rgba(7, 27, 64, 0.78) 0%,
    rgba(7, 27, 64, 0.6) 44%,
    rgba(7, 27, 64, 0.34) 72%,
    rgba(7, 27, 64, 0.2) 100%
  );
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(300px, 0.68fr);
  align-items: center;
  min-height: 690px;
  gap: 90px;
  padding-block: 86px 100px;
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.hero h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(52px, 7vw, 86px);
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero h1 span {
  display: block;
  color: var(--yellow);
  font-weight: 800;
}

.hero-lead {
  max-width: 660px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.7;
}

.hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.choice {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  min-height: 84px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  color: var(--white);
  gap: 13px;
  transition:
    transform 240ms var(--ease),
    border-color 240ms ease,
    background-color 240ms ease;
}

.choice:hover {
  transform: translateY(-4px);
}

.choice-kfar:hover {
  background: rgba(243, 193, 58, 0.1);
  border-color: var(--yellow);
}

.choice-yisgav:hover {
  background: rgba(101, 200, 222, 0.1);
  border-color: var(--blue);
}

.choice-day {
  display: grid;
  width: 46px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 23px;
  font-weight: 800;
}

.choice-kfar .choice-day {
  color: var(--yellow);
}

.choice-yisgav .choice-day {
  color: var(--blue);
}

.choice strong,
.choice span:nth-child(2) {
  display: block;
}

.choice strong {
  margin-bottom: 1px;
  font-size: 17px;
}

.choice span:nth-child(2) {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.choice-arrow {
  font-size: 22px;
}

.hero-proof {
  position: relative;
  padding: 36px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px 4px 24px 24px;
  box-shadow: 22px 24px 0 rgba(243, 193, 58, 0.18);
}

.hero-proof::before {
  position: absolute;
  top: -12px;
  right: 28px;
  width: 22px;
  height: 22px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow:
    28px 16px 0 -6px var(--blue),
    -17px -12px 0 -8px var(--white);
  content: "";
}

.proof-number {
  display: flex;
  align-items: end;
  gap: 12px;
}

.proof-number strong {
  font-size: 72px;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.8;
}

.proof-number span {
  max-width: 88px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
}

.proof-divider {
  height: 1px;
  margin: 26px 0 22px;
  background: var(--line);
}

.proof-row {
  display: flex;
  align-items: flex-start;
  margin-top: 16px;
  font-weight: 600;
  gap: 10px;
}

.proof-icon {
  color: var(--yellow);
}

.proof-stamp {
  margin: 28px -12px -12px;
  padding: 15px 18px;
  background: var(--yellow);
  color: var(--navy);
  border-radius: 12px;
  text-align: center;
  font-weight: 900;
  transform: rotate(-1.4deg);
}

.hero-art {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}

.spark {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--yellow);
  border-radius: 50%;
}

.spark-1 {
  top: 18%;
  right: 5%;
}

.spark-2 {
  top: 75%;
  right: 43%;
  width: 4px;
  height: 4px;
  background: var(--blue);
}

.spark-3 {
  top: 12%;
  left: 16%;
  width: 4px;
  height: 4px;
}

.spark-4 {
  right: 26%;
  bottom: 9%;
  width: 9px;
  height: 9px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.46);
}

.spark-5 {
  top: 47%;
  left: 4%;
  width: 3px;
  height: 3px;
  background: var(--blue);
}

.about-spark {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  align-items: start;
  gap: 90px;
}

.about-heading h2 {
  max-width: 390px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.about-heading h2 > .about-spark-line {
  display: block;
  color: #f0b701;
  text-align: right;
}

.about-heading::after {
  display: block;
  width: 84px;
  height: 7px;
  margin-top: 28px;
  background: var(--yellow);
  border-radius: 5px;
  content: "";
}

.about-copy {
  max-width: 72ch;
  color: var(--muted);
}

.about-copy p {
  margin: 0;
  font-size: 17px;
  line-height: 1.75;
}

.about-copy p + p {
  margin-top: 22px;
}

.about-copy p:first-child {
  color: var(--navy);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.55;
}

.about-invitation {
  padding: 18px 22px;
  background: var(--yellow-soft);
  color: var(--navy);
  border-radius: 13px;
  font-weight: 700;
}

.about-copy strong {
  color: var(--navy);
  font-weight: 800;
}

.activity-gallery {
  position: relative;
  overflow: hidden;
  background: var(--navy-2);
  color: var(--white);
  isolation: isolate;
}

.gallery-stage {
  position: relative;
  overflow: hidden;
  height: 450px;
}

.gallery-slide {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 33.333333%;
  width: 33.333333%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--navy);
  opacity: 0;
  transform: translate3d(200%, 0, 0);
  transition:
    transform 480ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0s linear;
}

.gallery-slide.is-active {
  z-index: 3;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.gallery-slide.is-prev {
  z-index: 2;
  opacity: 1;
  transform: translate3d(-100%, 0, 0);
}

.gallery-slide.is-next {
  z-index: 2;
  opacity: 1;
  transform: translate3d(100%, 0, 0);
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-slide figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 44px 26px 22px;
  background: linear-gradient(to top, rgba(7, 27, 64, 0.88), transparent);
  color: var(--white);
  font-size: clamp(17px, 1.8vw, 28px);
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  text-shadow: 0 2px 14px rgba(7, 27, 64, 0.45);
}

.section-pad {
  padding-block: 120px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.66fr);
  align-items: end;
  margin-bottom: 46px;
  gap: 80px;
}

.section-heading .section-label,
.questions-title .section-label,
.shared-heading .section-label {
  color: var(--blue-deep);
}

.section-heading h2,
.experience-copy h2,
.questions-title h2,
.shared-heading h2,
.final-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.section-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 18px;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.program-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-top-width: 8px;
  border-radius: 24px;
  box-shadow: 0 5px 0 rgba(11, 38, 89, 0.04);
  transition:
    transform 280ms var(--ease),
    box-shadow 280ms ease;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.program-card.is-highlighted {
  animation: card-pulse 900ms var(--ease);
}

.program-kfar {
  border-top-color: var(--yellow);
}

.program-yisgav {
  border-top-color: var(--blue);
}

.program-top {
  min-height: 288px;
  padding: 32px 36px 26px;
}

.program-kfar .program-top {
  background: var(--yellow-soft);
}

.program-yisgav .program-top {
  background: var(--blue-soft);
}

.program-route {
  display: flex;
  align-items: center;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  gap: 10px;
}

.route-day {
  padding: 2px 8px;
  background: var(--navy);
  color: var(--white);
  border-radius: 5px;
}

.route-line {
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.25;
}

.program-card h3 {
  margin: 36px 0 0;
  color: var(--navy);
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.program-summary {
  max-width: 480px;
  margin: 15px 0 0;
  color: #344054;
  font-size: 17px;
}

.facts {
  margin: 0;
  padding: 18px 36px 0;
}

.facts > div {
  display: grid;
  grid-template-columns: 145px 1fr;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  gap: 22px;
}

.facts dt {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.facts dt span {
  display: inline-block;
  width: 20px;
  color: var(--navy);
}

.facts dd {
  margin: 0;
  color: var(--navy);
  font-weight: 700;
}

.price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 28px 36px 20px;
}

.price-row > div {
  display: flex;
  flex-direction: column;
}

.price-row > div > span {
  color: var(--muted);
  font-size: 13px;
}

.price-row strong {
  color: var(--navy);
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.1;
}

.meetings {
  color: var(--success);
  font-size: 14px;
  font-weight: 800;
}

.payment-plan {
  margin: -8px 36px 22px;
  padding-top: 16px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.55;
}

.card-actions {
  display: grid;
  padding: 0 36px 34px;
  gap: 14px;
}

.primary-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 14px 20px;
  border-radius: 13px;
  color: var(--navy);
  font-weight: 900;
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms ease;
}

.primary-button:hover {
  transform: translateX(-4px);
  box-shadow: 0 10px 24px rgba(11, 38, 89, 0.14);
}

.primary-kfar {
  background: var(--yellow);
}

.primary-yisgav {
  background: var(--blue);
}

.text-link {
  justify-self: start;
  color: var(--navy);
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 700;
}

.price-note {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  margin-top: 22px;
  padding: 18px 22px;
  background: var(--navy);
  color: var(--white);
  border-radius: 14px;
  gap: 16px;
}

.price-note p {
  margin: 0;
}

.price-note a {
  color: var(--yellow);
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 800;
}

.note-spark {
  color: var(--yellow);
  font-size: 22px;
}

.curriculum {
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.curriculum .section-heading h2 {
  color: var(--white);
}

.curriculum .section-heading > p {
  color: rgba(255, 255, 255, 0.72);
}

.curriculum .section-label {
  color: var(--yellow);
}

.curriculum-switcher {
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.tab-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.tab-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  padding: 16px 22px;
  background: transparent;
  color: rgba(255, 255, 255, 0.62);
  border: 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
  gap: 11px;
  transition:
    background-color 220ms ease,
    color 220ms ease;
}

.tab-button + .tab-button {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.tab-button:hover {
  color: var(--white);
}

.tab-button.is-active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.tab-marker {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.marker-kfar {
  background: var(--yellow);
}

.marker-yisgav {
  background: var(--blue);
}

.curriculum-panel {
  min-height: 505px;
  padding: 46px;
}

.curriculum-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
  align-items: end;
  margin-bottom: 32px;
  gap: 60px;
}

.curriculum-title-row > div {
  display: flex;
  align-items: baseline;
  gap: 18px;
}

.program-index {
  color: var(--yellow);
  font-size: 15px;
  font-weight: 800;
}

#panel-yisgav .program-index {
  color: var(--blue);
}

.curriculum-title-row h3 {
  margin: 0;
  font-size: 42px;
  line-height: 1;
}

.curriculum-title-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
}

.course-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  list-style: none;
}

.course-list li {
  display: flex;
  align-items: center;
  min-height: 62px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 600;
  gap: 13px;
}

.course-list li:nth-child(odd) {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.course-list li span {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
}

#panel-yisgav .course-list li span {
  color: var(--blue);
}

.curriculum-download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: fit-content;
  min-height: 52px;
  margin-top: 28px;
  padding: 12px 18px;
  background: var(--white);
  color: var(--navy);
  border-radius: 13px;
  font-weight: 800;
  gap: 28px;
  transition:
    background-color 180ms ease,
    transform 180ms var(--ease);
}

.curriculum-download:hover {
  transform: translateX(-4px);
}

.curriculum-download-kfar:hover {
  background: var(--yellow);
}

.curriculum-download-yisgav:hover {
  background: var(--blue);
}

.curriculum-download svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.experience {
  background: var(--white);
}

.experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 90px;
}

.experience-image {
  position: relative;
}

.experience-image::before {
  position: absolute;
  z-index: -1;
  top: -18px;
  right: -18px;
  width: 42%;
  height: 42%;
  background: var(--yellow);
  content: "";
}

.experience-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: 4px 28px 4px 4px;
}

.image-caption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: flex;
  padding: 12px 15px;
  background: var(--navy);
  color: var(--white);
  border-radius: 10px;
  gap: 20px;
  font-size: 13px;
  font-weight: 800;
}

.image-caption span:not(:last-child)::after {
  margin-right: 20px;
  color: var(--yellow);
  content: "✦";
}

.experience-copy .section-label {
  color: var(--blue-deep);
}

.experience-lead {
  margin: 26px 0 36px;
  color: var(--muted);
  font-size: 19px;
}

.principles {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.principles li {
  display: grid;
  grid-template-columns: 48px 1fr;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  gap: 18px;
}

.principles li > span {
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 900;
}

.principles h3 {
  margin: 0;
  color: var(--navy);
  font-size: 20px;
}

.principles p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.parent-story {
  padding-block: 0 120px;
  background: var(--white);
}

.parent-story-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.56fr) minmax(0, 1.44fr);
  align-items: center;
  gap: 72px;
}

.parent-story-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.parent-story-copy h2::after {
  display: block;
  width: 84px;
  height: 7px;
  margin-top: 28px;
  background: #f0b701;
  border-radius: 5px;
  content: "";
}

.parent-story-copy p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.parent-video {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--navy);
  border-radius: 13px;
  box-shadow: 0 22px 55px rgba(11, 38, 89, 0.14);
}

.parent-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.parent-video-fallback {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.parent-video-fallback img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.parent-video-fallback::after {
  position: absolute;
  inset: 0;
  background: rgba(7, 27, 64, 0.26);
  content: "";
  transition: background 180ms ease;
}

.parent-video-fallback:hover::after {
  background: rgba(7, 27, 64, 0.38);
}

.parent-video-play {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  display: inline-flex;
  align-items: center;
  padding: 13px 20px;
  background: var(--navy);
  color: var(--white);
  border-radius: 10px;
  font-weight: 700;
  gap: 10px;
  transform: translate(-50%, -50%);
}

.parent-video-play svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.parent-video iframe[hidden],
.parent-video-fallback[hidden] {
  display: none;
}

.shared-path {
  background: var(--paper);
}

.shared-heading {
  text-align: center;
}

.shared-heading h2 {
  max-width: 720px;
  margin-inline: auto;
}

.path-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 70px;
  gap: 20px;
}

.path-line::before {
  position: absolute;
  top: 9px;
  right: 10%;
  left: 10%;
  height: 2px;
  background: var(--navy);
  opacity: 0.16;
  content: "";
}

.path-step {
  position: relative;
  text-align: center;
}

.path-dot {
  position: relative;
  z-index: 2;
  display: block;
  width: 20px;
  height: 20px;
  margin: 0 auto 22px;
  background: var(--paper);
  border: 5px solid var(--yellow);
  border-radius: 50%;
}

.path-step:nth-child(even) .path-dot {
  border-color: var(--blue);
}

.path-step strong {
  color: var(--navy);
  font-size: 22px;
}

.path-step p {
  max-width: 220px;
  margin: 6px auto 0;
  color: var(--muted);
  font-size: 14px;
}

.questions {
  background: var(--white);
}

.questions-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 90px;
}

.questions-title {
  align-self: start;
  position: sticky;
  top: 120px;
}

.questions-title > p:not(.section-label) {
  margin: 22px 0 26px;
  color: var(--muted);
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  padding-bottom: 4px;
  color: var(--success);
  border-bottom: 2px solid currentColor;
  font-weight: 800;
  gap: 14px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 0 24px 52px;
  color: var(--navy);
  cursor: pointer;
  font-size: 20px;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  left: 10px;
  width: 18px;
  height: 2px;
  background: var(--navy);
  content: "";
  transition: transform 220ms ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 680px;
  margin: -8px 0 0;
  padding: 0 0 26px 52px;
  color: var(--muted);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: 94px;
  background: var(--navy);
  color: var(--white);
}

.final-cta::after {
  position: absolute;
  bottom: -75px;
  left: -60px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  box-shadow:
    0 0 0 38px rgba(255, 255, 255, 0.04),
    0 0 0 76px rgba(255, 255, 255, 0.025);
  content: "";
}

.final-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.75fr);
  align-items: center;
  gap: 80px;
}

.final-copy .section-label {
  color: var(--yellow);
}

.final-copy h2 {
  color: var(--white);
}

.final-copy > p:last-child {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.final-actions {
  display: grid;
  gap: 12px;
}

.final-option {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  align-items: center;
  min-height: 88px;
  padding: 14px 18px;
  background: var(--white);
  color: var(--navy);
  border-right: 7px solid;
  border-radius: 13px;
  gap: 16px;
  transition: transform 220ms var(--ease);
}

.final-option:hover {
  transform: translateX(-6px);
}

.final-kfar {
  border-color: var(--yellow);
}

.final-yisgav {
  border-color: var(--blue);
}

.final-day {
  display: grid;
  width: 48px;
  aspect-ratio: 1;
  place-items: center;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  font-size: 21px;
  font-weight: 900;
}

.final-option small,
.final-option strong {
  display: block;
}

.final-option small {
  color: var(--muted);
}

.final-option strong {
  font-size: 21px;
}

.site-footer {
  background: var(--navy-2);
  color: rgba(255, 255, 255, 0.7);
}

.footer-inner {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  min-height: 125px;
  gap: 30px;
}

.footer-brand {
  filter: brightness(0) invert(1);
  opacity: 0.88;
}

.footer-inner p {
  margin: 0;
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 22px;
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--white);
}

.mobile-register {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 640ms var(--ease),
    transform 640ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes card-pulse {
  0%,
  100% {
    transform: translateY(0);
  }
  35% {
    transform: translateY(-10px);
    box-shadow: 0 0 0 6px rgba(243, 193, 58, 0.22), var(--shadow);
  }
}

@media (max-width: 1020px) {
  .header-inner {
    grid-template-columns: 145px 1fr auto;
    gap: 20px;
  }

  .main-nav {
    gap: 18px;
  }

  .hero-grid {
    gap: 44px;
  }

  .hero h1 {
    font-size: clamp(48px, 7.4vw, 72px);
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .about-layout {
    gap: 50px;
  }

  .section-heading,
  .experience-grid,
  .questions-grid,
  .final-grid {
    gap: 50px;
  }

  .program-top,
  .facts,
  .price-row,
  .card-actions {
    padding-right: 28px;
    padding-left: 28px;
  }

}

@media (max-width: 820px) {
  body {
    padding-bottom: 68px;
  }

  .shell {
    width: min(100% - 28px, 680px);
  }

  .header-inner {
    grid-template-columns: 145px 1fr;
    min-height: 70px;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .brand {
    width: 145px;
  }

  .hero {
    min-height: auto;
  }

  .hero-video {
    object-position: center center;
  }

  .hero-shade {
    background: linear-gradient(
      180deg,
      rgba(7, 27, 64, 0.52) 0%,
      rgba(7, 27, 64, 0.62) 48%,
      rgba(7, 27, 64, 0.76) 100%
    );
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 68px 86px;
    gap: 52px;
  }

  .hero h1 {
    font-size: clamp(47px, 13vw, 68px);
  }

  .hero-lead {
    margin-top: 24px;
  }

  .hero-proof {
    max-width: 520px;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-heading h2 {
    max-width: none;
  }

  .about-heading h2 > .about-spark-line {
    display: inline;
  }

  .gallery-stage {
    height: 390px;
  }

  .gallery-slide {
    left: 0;
    width: 100%;
    transform: translate3d(100%, 0, 0);
  }

  .section-pad {
    padding-block: 84px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    margin-bottom: 34px;
    gap: 18px;
  }

  .program-grid {
    grid-template-columns: 1fr;
  }

  .program-card:hover {
    transform: none;
  }

  .price-note {
    grid-template-columns: auto 1fr;
  }

  .price-note a {
    grid-column: 2;
    justify-self: start;
  }

  .curriculum-panel {
    padding: 30px 22px;
  }

  .curriculum-title-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .curriculum-download {
    width: 100%;
  }

  .course-list {
    grid-template-columns: 1fr;
  }

  .course-list li:nth-child(odd) {
    border-left: 0;
  }

  .experience-grid,
  .parent-story-grid,
  .questions-grid,
  .final-grid {
    grid-template-columns: 1fr;
  }

  .parent-story {
    padding-bottom: 84px;
  }

  .parent-story-grid {
    gap: 34px;
  }

  .experience-image {
    max-width: 560px;
    margin-inline: auto;
  }

  .questions-title {
    position: static;
  }

  .path-line {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 46px;
  }

  .path-line::before {
    display: none;
  }

  .final-actions {
    max-width: 560px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding-block: 36px;
    gap: 12px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .mobile-register {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background: var(--navy);
    box-shadow: 0 -8px 30px rgba(11, 38, 89, 0.18);
  }

  .mobile-register a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 68px;
    padding: 10px 12px;
    color: var(--navy);
    font-size: 14px;
    font-weight: 900;
    gap: 9px;
  }

  .mobile-register a + a {
    border-right: 1px solid rgba(11, 38, 89, 0.25);
  }

  .mobile-register span {
    display: grid;
    width: 31px;
    aspect-ratio: 1;
    place-items: center;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
  }

  .mobile-kfar {
    background: var(--yellow);
  }

  .mobile-yisgav {
    background: var(--blue);
  }
}

@media (max-width: 520px) {
  body {
    font-size: 16px;
  }

  .hero-grid {
    padding-top: 54px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-actions {
    margin-top: 30px;
  }

  .choice {
    grid-template-columns: 42px 1fr auto;
    min-height: 76px;
  }

  .choice-day {
    width: 40px;
  }

  .hero-proof {
    padding: 28px 24px;
    box-shadow: 12px 16px 0 rgba(243, 193, 58, 0.18);
  }

  .about-heading h2 {
    font-size: 39px;
  }

  .about-copy p:first-child {
    font-size: 19px;
  }

  .about-invitation {
    padding: 16px 18px;
  }

  .gallery-stage {
    height: 340px;
  }

  .gallery-slide figcaption {
    padding: 40px 18px 18px;
    font-size: 17px;
  }

  .proof-number strong {
    font-size: 62px;
  }

  .section-heading h2,
  .experience-copy h2,
  .parent-story-copy h2,
  .questions-title h2,
  .shared-heading h2,
  .final-copy h2 {
    font-size: 39px;
  }

  .program-top {
    min-height: 260px;
  }

  .program-top,
  .facts,
  .price-row,
  .card-actions {
    padding-right: 20px;
    padding-left: 20px;
  }

  .payment-plan {
    margin-right: 20px;
    margin-left: 20px;
  }

  .program-card h3 {
    font-size: 40px;
  }

  .facts > div {
    grid-template-columns: 1fr;
    padding-block: 13px;
    gap: 3px;
  }

  .price-row strong {
    font-size: 38px;
  }

  .price-note {
    align-items: start;
  }

  .tab-button {
    min-height: 68px;
    padding: 12px 10px;
    font-size: 14px;
  }

  .curriculum-title-row h3 {
    font-size: 36px;
  }

  .experience-image::before {
    top: -10px;
    right: -10px;
  }

  .image-caption {
    right: 12px;
    bottom: 12px;
    gap: 10px;
  }

  .image-caption span:not(:last-child)::after {
    margin-right: 10px;
  }

  .path-line {
    grid-template-columns: 1fr;
  }

  .faq-list summary {
    padding-left: 40px;
    font-size: 18px;
  }

  .faq-list details p {
    padding-left: 0;
  }

  .final-cta {
    padding-block: 72px;
  }

  .final-option {
    grid-template-columns: 44px 1fr auto;
    padding-inline: 12px;
  }

  .final-day {
    width: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
