/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --color-gold:        #C4A866;
  --color-gold-light:  #E9D5A3;
  --color-white:       #ffffff;
  --color-text-nav:    #EEEEE6;
  --color-text-dark:   #1A1A1A;
  --color-text-muted:  #333333;
  --color-bg-light:    #F8F8F8;

  --font-primary: 'Brother 1816', 'Inter', system-ui, sans-serif;
  --font-hebrew:  'Heebo', 'David Libre', system-ui, sans-serif;

  /* Hero canvas reference: 1440 × 1008 px (Figma frame size).
     --canvas-scale is set by JS: window.innerWidth / 1440          */
  --canvas-scale:         1;
  --vision-orbit-radius:  279.5px; /* ring radius — stars sit ON the ring with gap around them */
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
section[id] { scroll-margin-top: calc(var(--canvas-scale, 1) * 110px); }
body {
  font-family: var(--font-primary);
  color: var(--color-text-dark);
  background: #001356;
  -webkit-font-smoothing: antialiased;
}
img, video, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select { font-family: inherit; }
button { cursor: pointer; }

/* ============================================================
   ACCESSIBILITY UTILITIES
   ============================================================ */

/* Visually hidden — readable by screen readers, invisible on screen */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skip navigation link — visible on keyboard focus only */
.skip-link {
  position: fixed;
  top: -100%;
  inset-inline-start: 0;
  z-index: 9999;
  padding: 12px 24px;
  background: #fff;
  color: #001356;
  font-size: 16px;
  font-weight: 700;
  text-decoration: underline;
  border-radius: 0 0 8px 0;
  transition: top 0.15s ease;
}
.skip-link:focus-visible {
  top: 0;
  outline: 3px solid #C4A866;
  outline-offset: 2px;
}

/* Global focus ring — all interactive elements */
:focus-visible {
  outline: 2px solid #C4A866;
  outline-offset: 3px;
  border-radius: 3px;
}

/* ============================================================
   NAV — fixed overlay, scaled to match Figma proportions
   Figma positions (in 1440px canvas): logo top 67px, links 88px
   We scale the nav the same way as the hero canvas.
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  pointer-events: none; /* let clicks through to hero */
  /* Solid fill behind the nav row so scrolled content is hidden under it */
  background: #001356;
}

/* Gradient fade zone below the nav — content dissolves before reaching the nav */
.site-header::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, #001356 0%, transparent 100%);
  pointer-events: none;
}

.nav {
  pointer-events: auto;
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  /* Scale nav padding to match Figma: 92px left / 107px right at 1440px */
  padding: calc(67px * var(--canvas-scale))
           calc(107px * var(--canvas-scale))
           0
           calc(92px * var(--canvas-scale));
}

/* Brand — now an <a>, reset link decoration */
.nav__brand {
  display: flex;
  align-items: center;
  gap: calc(10px * var(--canvas-scale));
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}
/* Logo mark — exact Figma export: ring arc + 2 gold stars, no text.
   SVG viewBox 0 0 55 65. Scales with --canvas-scale. */
.nav__logo-mark {
  display: block;
  width:   calc(55px * var(--canvas-scale));
  height:  calc(65px * var(--canvas-scale));
  max-width: none;
  max-height: none;
  flex-shrink: 0;
}
.nav__brand-text { display: flex; flex-direction: column; line-height: 1; }
.nav__name {
  font-size: calc(32px * var(--canvas-scale));
  font-weight: 500;
  letter-spacing: calc(1.92px * var(--canvas-scale));
  text-transform: capitalize;
  background: linear-gradient(180deg, #C4A866 26.44%, #E9D5A3 54.33%, #C4A866 85.58%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav__tagline {
  font-size: calc(13.87px * var(--canvas-scale));
  font-weight: 500;
  letter-spacing: calc(0.42px * var(--canvas-scale));
  text-transform: capitalize;
  color: var(--color-text-nav);
  margin-top: calc(11px * var(--canvas-scale));
}

/* Center links — Figma y=88px, nav starts at y=67px → offset 21px */
.nav__links {
  display: flex;
  align-items: center;
  padding-top: calc(21px * var(--canvas-scale));
  padding-left: 10px;
  padding-right: 10px;
  /*flex-shrink: 0;*/
}
.nav__link {
  display: inline-block;
  font-size: calc(16px * var(--canvas-scale));
  font-weight: 500;
  color: var(--color-white);
  letter-spacing: calc(0.96px * var(--canvas-scale));
  text-transform: capitalize;
  transition: color 0.2s;
  white-space: nowrap;
  text-align: center;
  line-height: 1.25;
}
.nav__link:hover,
.nav__link.is-active { color: var(--color-gold); }
.nav__sep {
  color: var(--color-text-nav);
  font-size: calc(14px * var(--canvas-scale));
  padding-inline: calc(8px * var(--canvas-scale));
  -webkit-user-select: none;
  user-select: none;
}

/* Right controls — Figma y=89-90px, offset 22px from nav top */
.nav__right {
  display: flex;
  align-items: center;
  gap: calc(24px * var(--canvas-scale));
  padding-top: calc(22px * var(--canvas-scale));
  flex-shrink: 0;
}
.nav__lang {
  background: none;
  border: none;
  padding: 0;
  color: var(--color-white);
  font-size: calc(14.19px * var(--canvas-scale));
  letter-spacing: calc(0.3px * var(--canvas-scale));
  line-height: 1;
  cursor: pointer;
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
}
.nav__lang-active  { font-weight: 500; }
.nav__lang-inactive { opacity: 0.6; }
.nav__two-stars {
  display: block;
  width: calc(20px * var(--canvas-scale));
  height: auto;
  max-width: none;
  max-height: none;
  flex-shrink: 0;
}
.nav__portal {
  font-size: calc(14px * var(--canvas-scale));
  font-weight: 500;
  letter-spacing: calc(2.1px * var(--canvas-scale));
  text-transform: uppercase;
  background: linear-gradient(180deg, #C4A866 26.44%, #E9D5A3 54.33%, #C4A866 85.58%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: opacity 0.2s;
}
.nav__portal:hover { opacity: 0.75; }

/* ============================================================
   HERO — outer window + inner scaled canvas
   ============================================================ */

/* Outer window: always exactly the viewport height */
.section_vision {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Inner canvas: always 1440 × 1008px, scaled to fit viewport.
   Centered horizontally; scales from the top-center.           */
.vision__canvas {
  position: absolute;
  top: 0;
  left: 50%;
  width:  1440px;
  height: 1008px;
  transform: translateX(-50%) scale(var(--canvas-scale));
  transform-origin: top center;
}

/* Background — fills the full 1440×1008 canvas */
.vision__bg {
  position: absolute;
  inset: 0;
  /* Exact Figma radial gradient:
     matrix(0.0000059013 44.6 -63.714 0.000012422 720 533)
     Center (720, 533) | radii: 637px × 446px               */
  background: radial-gradient(
    ellipse 637px 446px at 720px 533px,
    #183AAD 22.4%,
    #0C2782 61.2%,
    #001356 100%
  );
}

/* Circle scene — exact Figma pixel position */
.vision__scene {
  position: absolute;
  left:   431px;   /* Figma: inset left 29.94% × 1440 */
  top:    252px;   /* Figma: inset top  25.02% × 1008 */
  width:  559px;   /* Figma: (1-31.25%-29.94%) × 1440 */
  height: 559px;   /* Figma: (1-19.54%-25.02%) × 1008 */
}

/* Hero animated element img — exact Figma export (561×561 SVG).
   Ring arc + two gold stars as one unit. GSAP rotates this img.
   No CSS transform — GSAP owns it via transformOrigin 50% 50%.  */
.vision__ring {
  position: absolute;
  inset: 0;
  width:  559px;
  height: 559px;
  max-width: none;
  max-height: none;
  display: block;
  pointer-events: none;
}

/* Orbit arm: zero-size, pivots at circle center (710.5, 531.5) in canvas.
   GSAP sets transformOrigin '0% 0%' so rotation is around this point.   */
.vision__orbit-arm {
  position: absolute;
  top:  531.5px;   /* circle center y in canvas */
  left: 710.5px;   /* circle center x in canvas */
  width:  0;
  height: 0;
}

/* Stars pair: zero-size, offset right by orbit radius from circle center */
.vision__stars-pair {
  position: absolute;
  top:  0;
  left: var(--vision-orbit-radius);   /* 266px */
  width:  0;
  height: 0;
}

/* Hidden SVG gradient defs */
.vision__svg-defs {
  position: absolute;
  width: 0; height: 0;
  overflow: hidden;
}

/* Stars — positioned around cluster center (pair origin = 0,0).
   Figma exact px at 1440px canvas:
     Star 1 center relative to cluster: (+27.5, +27.5)
     Star 2 center relative to cluster: (-27.5, -27.5)
     Both stars: 64 × 56/57 px
   IMPORTANT: max-width/max-height must be none — the parent
   .vision__stars-pair is zero-size (width:0; height:0), so the
   CSS reset's max-width:100% would collapse stars to 0px.   */
.vision__star {
  position: absolute;
  max-width: none;
  max-height: none;
  display: block;
  filter: drop-shadow(0 2px 14px rgba(167,137,67,0.7));
}

/* Star 1 (large): center at (+27.5px, +27.5px) from pair origin
   left = 27.5 - 64/2 = -4.5px  |  top = 27.5 - 56/2 = -0.5px  */
.vision__star--lg {
  width:  64px;
  height: 56px;
  left:  -4.5px;
  top:   -0.5px;
}

/* Star 2 (small): center at (-27.5px, -27.5px) from pair origin
   left = -27.5 - 64/2 = -59.5px  |  top = -27.5 - 57/2 = -56px */
.vision__star--sm {
  width:  64px;
  height: 57px;
  left:  -59.5px;
  top:   -56px;
}

/* Center text: top edge at 488px from canvas top = 488-252 = 236px from scene top */
.vision__center-text {
  position: absolute;
  top:   236px;
  left:  0; right: 0;
  text-align: center;
  pointer-events: none;
  height: 0;
  overflow: visible;
}

/* Phrases — GSAP controls opacity; stacked at top:0 within container */
.vision__phrase {
  position: absolute;
  top:  0;
  left: 0; right: 0;
  font-size: 35px;
  font-weight: 300;
  color: var(--color-white);
  letter-spacing: -0.7px;
  line-height: 1.3;
  text-align: center;
  opacity: 0;
  white-space: nowrap;
}

/* Final reveal block — Figma nodes 65:256 + 65:260.
   Centered on canvas, replaces circle content permanently.  */
.vision__final-block {
  position: absolute;
  top:  50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 0;
  pointer-events: none;
  width: 1100px;
}

/* Headline: 40px, Brother 1816 Book, letter-spacing 2.8px (node 65:256) */
.vision__final-headline {
  font-size: 40px;
  font-weight: 300;
  letter-spacing: 2.8px;
  color: var(--color-white);
  line-height: 1.4;
}
.vision__final-gold { color: #DDC285; }

/* Subtitle: 24.22px, line-height 35px (node 65:260) */
.vision__final-sub {
  font-size: 24.22px;
  font-weight: 300;
  letter-spacing: 0.4844px;
  line-height: 35px;
  color: var(--color-white);
  margin-top: 32px;
}

/* CTA button — appears in final reveal block */
.vision__cta-btn {
  display: inline-block;
  margin-top: 52px;
  padding: 16px 56px;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
  transition: background 0.35s, color 0.35s;
  pointer-events: auto;
}
.vision__cta-btn:hover {
  background: var(--color-gold);
  color: #001356;
}
.vision__cta-btn:active { transform: scale(0.97); }

/* Scroll hint */
.vision__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}
.vision__scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 100%);
  will-change: opacity;
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.2; }
  50%       { opacity: 0.9; }
}

/* ============================================================
   SECTION 2: THE VISION  (#vision)
   Same CSS scale() canvas pattern as the hero.
   All positions in px matching the 1440×1008 Figma frame.
   ============================================================ */
.section-why {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Canvas: always 1440×1008px, scaled to fit viewport */
.section-why__canvas {
  position: absolute;
  top: 0;
  left: 50%;
  cursor: pointer;
  width:  1440px;
  height: 1008px;
  transform: translateX(-50%) scale(var(--canvas-scale));
  transform-origin: top center;

  /* Same radial gradient as hero (Figma imgRectangle11) */
  background: radial-gradient(
    ellipse 637px 446px at 720px 533px,
    #183AAD 22.4%,
    #0C2782 61.2%,
    #001356 100%
  );
}

/* Separator line — Figma 65:440: left:100px, width:1233px */
.section-why__line {
  position: absolute;
  top: 0;
  left:  100px;
  width: 1233px;
  height: 1px;
  background: rgba(255,255,255,0.25);
}

/* ── State 1 wrapper: covers the full canvas, contains icon + text ── */
.why__state1 {
  position: absolute;
  inset: 0;
}

/* ── State 2 wrapper: 4 columns, hidden by default ── */
.why__state2 {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

/* ── Column layout — Figma page origin y=1003 (Rectangle 12).
   Icons: page y=1232–1240 → section y=229–237.
   Titles: all at page y=1305 → section y=302.
   Each col top = its icon's section y; margin-top on title = gap to reach y=302. ── */
.why__col {
  position: absolute;
  width: 235px;
  text-align: center;
  pointer-events: auto;
}
/* top = icon section-y; left = title section-x */
.why__col--1 { left: 209px; top: 231px; }
.why__col--2 { left: 494px; top: 229px; }
.why__col--3 { left: 801px; top: 236px; }
.why__col--4 { left: 1077px; top: 237px; }

/* Icon: centered horizontally within the 235px column */
.why__col-icon {
  display: block;
  max-width: none;
  max-height: none;
  margin: 0 auto;
}

/* Title: 25px, Brother 1816 Medium, uppercase, #F5F5F5 — exact Figma.
   margin-top places title top at section y=302 for each column. */
.why__col-title {
  font-size: 25px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  color: #F5F5F5;
  margin-top: 30px;
}
/* Fine-tune per col: margin = 302 − (col_top + icon_height) */
.why__col--3 .why__col-title { margin-top: 35px; }
.why__col--4 .why__col-title { margin-top: 37px; }

/* Icon — Figma 65:439: carbon:network-1
   Page (697, 1302) → section (697, 294); size 47×47px               */
.why__icon {
  position: absolute;
  left:   697px;
  top:    294px;
  width:  47px;
  height: 47px;
  max-width: none;
  max-height: none;
  display: block;
}

/* Text block — Figma 65:361
   Page (124, 1342) → section top=334; centered at x=723.5, width=1199 */
.why__text {
  position: absolute;
  top:  334px;
  left: 723.5px;
  transform: translateX(-50%);
  width: 1199px;
  text-align: center;
  color: #ffffff;
  font-weight: 300;
}

/* Headline: 40px, line-height 50px, tracking 2.8px */
.why__headline {
  font-size: 40px;
  line-height: 50px;
  letter-spacing: 2.8px;
  margin: 0;
}

/* Empty spacer paragraphs match Figma's zero-width-space lines */
.why__spacer-lg {
  font-size: 40px;
  line-height: 50px;
  margin: 0;
}
.why__spacer-sm {
  font-size: 21px;
  line-height: 50px;
  margin: 0;
}

/* Body: 24.22px, line-height 35px, tracking 0.4844px */
.why__body {
  font-size: 24.22px;
  line-height: 35px;
  letter-spacing: 0.4844px;
  margin: 0;
}

/* ── State 3 wrapper: description paragraphs overlay on state 2 ── */
.why__state3 {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

/* Paragraphs — Figma page y=1436, section origin 1003 → section y=433.
   x positions and widths exact from Figma nodes 65:187–65:189, 65:188. */
.why__para {
  position: absolute;
  top: 480px;
  font-size: 21px;
  font-weight: 300;
  font-style: italic;
  line-height: 26px;
  letter-spacing: 0.3px;
  color: #d9d9d9;
  margin: 0;
}
.why__para--1 { left: 204px; width: 220px; }
.why__para--2 { left: 485px; width: 235px; }
.why__para--3 { left: 797px; width: 235px; }
.why__para--4 { left: 1077px; width: 235px; }

/* ============================================================
   SECTION 4 — COMMITMENT  (#commitment)
   Static: headline + rule + 4 columns.
   Figma page origin y=2996. Section coords = page_y − 2996.
   ============================================================ */
.section-commitment {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: radial-gradient(
    ellipse 637px 446px at 720px 533px,
    #183AAD 22.4%, #0C2782 61.2%, #001356 100%
  );
}

.section-commitment__canvas {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1440px;
  height: 1008px;
  transform: translateX(-50%) scale(var(--canvas-scale));
  transform-origin: top center;
}

/* Headline — Figma: top:313px, left:160px, width:1062px */
.commitment__headline {
  position: absolute;
  top: 313px;
  left: 160px;
  width: 1062px;
  margin: 0;
  font-size: 40px;
  font-weight: 300;
  letter-spacing: 2.8px;
  line-height: normal;
  color: #ffffff;
  text-align: center;
}

.commitment__headline--gold {
  color: #C4A866;
}

/* Horizontal rule — same style as vision line, Figma: top:449px, left:100px, width:1233px */
.commitment__line {
  position: absolute;
  top: 449px;
  left: 100px;
  width: 1233px;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
}

/* Columns — Figma top:504px, x positions: 124 / 433 / 705 / 1043 */
.commitment__col {
  position: absolute;
  top: 504px;
}
.commitment__col--1 { left: 124px;  width: 244px; }
.commitment__col--2 { left: 433px;  width: 247px; }
.commitment__col--3 { left: 705px;  width: 282px; }
.commitment__col--4 { left: 1043px; width: 278px; }

.commitment__col-title {
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  color: #F5F5F5;
  line-height: 1.3;
  margin: 0 0 22px 0;
}

.commitment__col-body {
  font-size: 21px;
  font-weight: 300;
  font-style: italic;
  line-height: 26px;
  color: #D9D9D9;
  margin: 0;
}

/* ============================================================
   SECTION 5 — FOUNDING PARTNERS  (#partners)
   Light background. Two states: collapsed (942px) / expanded (1572px).
   Click/touch toggles. Height set by JS. Advisory wrapper shifts 305px.
   Figma origin page y=4150.
   ============================================================ */
.section-partners {
  position: relative;
  width: 100%;
  height: calc(942px * var(--canvas-scale)); /* JS overrides immediately */
  overflow: hidden;
  background: #F8F8F8;
  cursor: pointer;
}

.section-partners__canvas {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1440px;
  height: 1572px; /* full expanded — section clips it */
  transform: translateX(-50%) scale(var(--canvas-scale));
  transform-origin: top center;
}

/* Title + subtitle */
.partners__title,
.partners__subtitle {
  position: absolute;
  left: 0;
  width: 1440px;
  text-align: center;
  margin: 0;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000A2C;
  line-height: normal;
}
.partners__title    { top: 42px; }
.partners__subtitle { top: 0; }   /* relative to advisory wrapper */

/* Gold separator lines with dot endpoints */
.partners__rule {
  position: absolute;
  height: 1px;
  background: #C4A866;
}
.partners__rule::before,
.partners__rule::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #C4A866;
  transform: translateY(-50%);
}
.partners__rule::before { left: 0; }
.partners__rule::after  { right: 0; }

/* Section-level rule (below title, Figma y=106) */
.partners__rule--section { top: 106px; left: 69px; width: 1297px; }

/* Photo circles — images are pre-masked circles and pre-B&W from Figma export */
.partners__circle {
  position: absolute;
}
.partners__circle img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  max-height: none;
}
.partners__circle--lg { width: 224px; }
.partners__circle--sm { width: 202px; }

/* Founding partner photos (canvas-absolute) */
.partners__circle--pearlstone { top: 144px; left: 236px; }
.partners__circle--shoval     { top: 144px; left: 933px; }

/* Founding partner names */
.partners__nm {
  position: absolute;
  text-align: center;
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #000A2C;
  line-height: normal;
}
.partners__nm--pearlstone { top: 392px; left: 183px; width: 316px; }
.partners__nm--shoval     { top: 390px; left: 901px; width: 289px; }

/* Bio texts — opacity controlled by GSAP */
.partners__bio {
  position: absolute;
  text-align: center;
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: #1A1A1A;
  opacity: 0;
  pointer-events: none;
}
/* Founding bios (canvas-absolute) */
.partners__bio--pearlstone { top: 442px; left: 62px;  width: 573px; }
.partners__bio--shoval     { top: 442px; left: 731px; width: 628px; }

/* Advisory section wrapper — GSAP animates top: 485 ↔ 790 */
.partners__advisory {
  position: absolute;
  top: 485px;
  left: 0;
  width: 1440px;
}

/* Advisory rule (within wrapper, same x/width as section rule) */
.partners__advisory .partners__rule { top: 61px; left: 69px; width: 1297px; }

/* Advisory photo positions (wrapper-relative) */
.partners__circle--katsovich   { top: 103px; left: 93px;   }
.partners__circle--aviram      { top: 103px; left: 449px;  }
.partners__circle--zilberstein { top: 103px; left: 774px;  }
.partners__circle--lapid       { top: 103px; left: 1092px; }

/* Advisory nameplates (name + role stacked) */
.partners__nameplate {
  position: absolute;
  text-align: center;
  margin: 0;
}
.partners__nm-text {
  display: block;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #000A2C;
  line-height: normal;
}
.partners__rl-text {
  display: block;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: #1A1A1A;
}
.partners__nameplate--katsovich   { top: 319px; left: 97px;   width: 192px; }
.partners__nameplate--aviram      { top: 327px; left: 384px;  width: 328px; }
.partners__nameplate--zilberstein { top: 319px; left: 770px;  width: 211px; }
.partners__nameplate--lapid       { top: 319px; left: 1043px; width: 300px; }

/* Advisory bios (wrapper-relative, opacity controlled by GSAP) */
.partners__bio--katsovich   { top: 401px; left: 62px;   width: 264px; }
.partners__bio--aviram      { top: 401px; left: 416px;  width: 264px; }
.partners__bio--zilberstein { top: 401px; left: 743px;  width: 264px; }
.partners__bio--lapid       { top: 401px; left: 1061px; width: 264px; }

/* ── Section click-to-explore hint (Vision, Journey) ── */
.section-hint {
  position: absolute;
  bottom: 52px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  pointer-events: none;
  white-space: nowrap;
  animation: hintOnce 3.2s cubic-bezier(0.22, 1, 0.36, 1) 1 forwards;
}
@keyframes hintOnce {
  0%   { opacity: 0;    transform: translateY(4px);  }
  18%  { opacity: 0.85; transform: translateY(0);    }
  60%  { opacity: 0.85; transform: translateY(0);    }
  80%  { opacity: 0;    transform: translateY(-2px); }
  100% { opacity: 0;    transform: translateY(-2px); }
}

/* Used by the mobile commitment scroll-chevron indicator */
@keyframes hintPulse {
  0%, 100% { opacity: 0.25; transform: rotate(45deg) scale(1);   }
  50%       { opacity: 0.7;  transform: rotate(45deg) scale(1.2); }
}

/* ── Partners expand hint ── */
.partners__hint {
  position: absolute;
  bottom: 28px;
  left: 0;
  width: 1440px;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(0, 10, 44, 0.35);
  pointer-events: none;
  transition: opacity 0.3s;
}

/* ── Gallery label ── */
.gallery__label {
  position: absolute;
  top: 56px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  z-index: 2;
  pointer-events: none;
  margin: 0;
}

/* ============================================================
   GALLERY SECTION (no nav link)
   Photo slider: 3 images crossfade, dot nav bottom-center.
   Same 1440×1008 canvas pattern as hero + vision.
   ============================================================ */
.section-gallery {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #001356;
}

.section-gallery__canvas {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1440px;
  height: 1008px;
  transform: translateX(-50%) scale(var(--canvas-scale));
  transform-origin: top center;
  overflow: hidden;
}

/* Slides: stacked absolutely, all hidden except the active one */
.gallery-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 1440px;
  height: 1008px;
  object-fit: cover;
  max-width: none;
  max-height: none;
  opacity: 0;
  will-change: opacity;
}

/* Dot navigation */
.gallery-dots {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
  z-index: 2;
}

.gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  cursor: pointer;
  padding: 0;
  position: relative;  /* anchor the expanded hit-area pseudo-element */
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
/* Expand invisible tap area to 44×44px — dot stays 10px visually */
.gallery-dot::before {
  content: '';
  position: absolute;
  inset: -17px;  /* 10px dot + 17px each side = 44px */
}

.gallery-dot.is-active {
  background: #C4A866;
  border-color: #C4A866;
  transform: scale(1.25);
}

/* ============================================================
   SECTION 6 — THE JOURNEY  (#journey)
   3 states. Same canvas pattern (dark blue). All positions
   from Figma exact px within the 1440×1121 frame.
   s1 origin y≈5062, s2 origin y≈5060, s3 origin y=5722.
   ============================================================ */
.section-journey {
  position: relative;
  width: 100%;
  height: calc(1121px * var(--canvas-scale));
  overflow: hidden;
  background: radial-gradient(
    ellipse 637px 446px at 720px 533px,
    #183AAD 22.4%, #0C2782 61.2%, #001356 100%
  );
}

.section-journey__canvas {
  position: absolute;
  top: 0; left: 50%;
  width: 1440px; height: 1121px;
  cursor: pointer;
  transform: translateX(-50%) scale(var(--canvas-scale));
  transform-origin: top center;
}
.section-why__canvas:hover,
.section-journey__canvas:hover {
  background: rgba(255, 255, 255, 0.03);
  transition: background 0.15s ease;
}
.section-why__canvas:focus-visible,
.section-journey__canvas:focus-visible {
  outline: 3px solid #C4A866;
  outline-offset: -3px;
  border-radius: 4px;
}

/* ── State wrappers (same pattern as Vision) ── */
.journey__state1,
.journey__state2,
.journey__state3 {
  position: absolute;
  inset: 0;
}
.journey__state2,
.journey__state3 {
  opacity: 0;
  pointer-events: none;
}

/* ── State 1: large photo + headline + body + stats ── */
/* Large circle: Figma top=191, left=464, size=488px */
.journey__photo-lg {
  position: absolute;
  top: 191px; left: 464px;
  width: 488px; height: 488px;
  border-radius: 50%;
  overflow: hidden;
}
.journey__photo-lg img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-width: none; max-height: none;
}

/* Headline: gold, 40px, tracking 2.8px, lh 49px */
.journey__headline {
  position: absolute;
  top: 724px; left: 140px; width: 1169px;
  margin: 0;
  font-size: 40px;
  font-weight: 400;
  line-height: 49px;
  letter-spacing: 2.8px;
  text-align: center;
  color: #DDC285;
}

/* Body text: white, 24.22px, lh 35px */
.journey__body {
  position: absolute;
  top: 798px; left: 181px; width: 1054px;
  text-align: center;
}
.journey__body p {
  font-size: 24.22px;
  font-weight: 300;
  line-height: 35px;
  letter-spacing: 0.48px;
  color: #ffffff;
  margin: 0;
}

/* ── Stats bar (shared style, positioned per state) ── */
.journey__stats {
  position: absolute;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 36px;
  justify-content: center;
  font-size: 27.4px;
  font-weight: 300;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  white-space: nowrap;
  margin: 0;
}
.j-gold  { color: #C4A866; }
.j-white { color: #ffffff; }

/* Stats containers are wide enough to hold all four items on one row.
   The mobile override at ≤767px sets flex-wrap:wrap for two-row layout. */
.journey__stats--s1 { top: 978px; left: 50%; transform: translateX(-50%); width: max-content; }
.journey__stats--s2 { top: 980px; left: 50%; transform: translateX(-50%); width: max-content; }
.journey__stats--s3 { top: 960px; left: 50%; transform: translateX(-50%); width: max-content; }

/* ── Small photo circles (states 2 & 3) ── */
.journey__photo-sm {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
}
.journey__photo-sm img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-width: none; max-height: none;
}

/* State 2 photo positions: top≈321 */
.journey__s2p--1 { top: 323px; left: 194px;  width: 258px; height: 258px; }
.journey__s2p--2 { top: 320px; left: 594px;  width: 263px; height: 263px; }
.journey__s2p--3 { top: 321px; left: 1006px; width: 261px; height: 261px; }

/* State 3 photo positions: same as state 2 — circles stay put */
.journey__s3p--1 { top: 323px; left: 194px;  width: 258px; height: 258px; }
.journey__s3p--2 { top: 320px; left: 594px;  width: 263px; height: 263px; }
.journey__s3p--3 { top: 321px; left: 1006px; width: 261px; height: 261px; }

/* ── Retreat text blocks (state 3) — below the circles ── */
/* Circles bottom at ~582px; 28px gap gives top: 610px */
.journey__retreat {
  position: absolute;
  top: 610px;
}
/* Centered under each circle: c1 center=323, c2=725, c3=1136 */
.journey__retreat--1 { left: 120px; width: 405px; }
.journey__retreat--2 { left: 531px; width: 389px; }
.journey__retreat--3 { left: 933px; width: 408px; }

/* Retreat header: "01 / TITLE" */
.journey__retreat-hd {
  margin: 0 0 4px;
  font-size: 21px;
  line-height: normal;
  color: #ffffff;
}
.j-rn { font-weight: 900; }
.j-rt { font-weight: 500; text-transform: uppercase; }

/* Retreat date */
.journey__retreat-date {
  margin: 0 0 20px;
  font-size: 21px;
  font-weight: 500;
  line-height: normal;
  color: #ffffff;
}

/* Retreat body */
.journey__retreat-body {
  margin: 0;
  font-size: 21px;
  font-weight: 300;
  line-height: 26px;
  color: #D9D9D9;
}

/* ============================================================
   FOOTER — CONTACT FORM  (collapsed ↔ expanded)
   Light background. Chevron toggle. Form hidden until expanded.
   Figma: collapsed h=319, expanded h=1155. Not canvas-based.
   ============================================================ */
.site-footer {
  background: #F8F8F8;
}

/* ── Contact section ── */
.footer__contact {
  padding: 52px 0 48px;
  text-align: center;
}

/* "CONTACT US" — Brother 1816 Book, 31.7px, tracked */
.footer__title {
  margin: 0 0 28px;
  font-size: 31.7px;
  font-weight: 300;
  letter-spacing: 5.4px;
  text-transform: uppercase;
  color: #000;
  text-align: center;
}

/* Gold separator rule with dot endpoints */
.footer__rule {
  position: relative;
  width: 1233px;
  max-width: calc(100% - 140px);
  height: 1px;
  background: #C4A866;
  margin: 0 auto 36px;
}
.footer__rule::before,
.footer__rule::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #C4A866;
  transform: translateY(-50%);
}
.footer__rule::before { left: 0; }
.footer__rule::after  { right: 0; }

/* Subtitle */
.footer__subtitle {
  margin: 0 auto 28px;
  max-width: 1019px;
  font-size: 20px;
  font-weight: 300;
  line-height: 27px;
  color: #333;
  text-align: center;
}

/* Chevron button — ">" rotated via GSAP (90deg=down, -90deg=up) */
.footer__chevron {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 36px;
  color: #C4A866;
  line-height: 1;
  padding: 4px 12px;
  display: inline-block;
}

/* Form wrapper — height animated by GSAP */
.footer__form-wrap {
  overflow: hidden;
  height: 0;
  opacity: 0;
}

/* Form — centered column, 466px wide */
.footer__form {
  width: 466px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}


.footer__field input,
.footer__field textarea {
  width: 100%;
  height: 100%;
  border: 1px solid #BDBDBD;
  border-radius: 11px;
  background: #fff;
  padding: 0 20px;
  font-size: 18px;
  font-weight: 300;
  color: #111029;
  box-sizing: border-box;
  outline: none;
  font-family: 'Brother 1816', sans-serif;
  transition: border-color 0.2s;
}
.footer__field input:focus,
.footer__field textarea:focus {
  border-color: #183AAD;
}
.footer__field input:focus-visible,
.footer__field textarea:focus-visible {
  outline: 2px solid #183AAD;
  outline-offset: 2px;
  border-color: #183AAD;
}
.footer__field input.has-error,
.footer__field textarea.has-error {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.footer__field input::placeholder,
.footer__field textarea::placeholder {
  color: #999FAE;
}
.footer__field textarea {
  padding: 18px 20px;
  resize: none;
  height: 180px;
}

/* Submit button — dark blue radial gradient, Figma style */
.footer__form-actions {
  margin-bottom: 48px;
}
.footer__submit {
  width: 200px;
  height: 62px;
  background: radial-gradient(ellipse at center, #183AAD 0%, #102C8F 50%, #081F70 100%);
  border: none;
  border-radius: 15px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  font-family: 'Brother 1816', sans-serif;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: opacity 0.2s;
}
.footer__submit:hover  { opacity: 0.85; }
.footer__submit:active { transform: scale(0.97); }
.footer__submit:focus-visible {
  outline: 2px solid #C4A866;
  outline-offset: 3px;
}

/* ── Success panel (shown after form submit) ── */
.footer__success {
  display: none; /* GSAP sets display:flex on reveal */
  position: relative;
  max-width: 1022px;
  width: calc(100% - 80px);
  min-height: 480px;
  margin: 40px auto 48px;
  background: radial-gradient(ellipse 70% 70% at 50% 50%,
    #0F3CD6 0%, #0B2EA3 50%, #081F70 100%);
  box-shadow: 2px 18px 30px 12px rgba(0, 0, 0, 0.17);
  align-items: center;
  justify-content: center;
  padding: 80px;
}
.footer__success-close {
  position: absolute;
  top: 40px;
  inset-inline-end: 48px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__success-close:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.5);
  outline-offset: 4px;
  border-radius: 2px;
}
.footer__success-x {
  position: relative;
  width: 28px;
  height: 28px;
  display: block;
}
.footer__success-x::before,
.footer__success-x::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: #ffffff;
  border-radius: 1px;
  transform-origin: center;
}
.footer__success-x::before { transform: translateY(-50%) rotate(45deg); }
.footer__success-x::after  { transform: translateY(-50%) rotate(-45deg); }
.footer__success-msg {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #C4A866;
  text-align: center;
  line-height: 1.7;
}

/* ── Logo bar ── */
.footer__bar { background: #F8F8F8; }

.footer__bar-rule {
  width: 1233px;
  max-width: calc(100% - 140px);
  height: 1px;
  background: #C4A866;
  margin: 0 auto;
  position: relative;
}
.footer__bar-rule::before,
.footer__bar-rule::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #C4A866;
  transform: translateY(-50%);
}
.footer__bar-rule::before { left: 0; }
.footer__bar-rule::after  { right: 0; }

.footer__bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 104px;
}

/* HAMAAGAL brand SVG (326×64 natural → 260px wide = −20%) */
.footer__brand { text-decoration: none; }
.footer__brand-svg {
  width: 260px;
  height: auto;
  max-width: none;
  max-height: none;
  display: block;
}

/* Jewish Agency logo link — wraps the SVG, opens in new tab */
.footer__logo-ja-link { display: inline-flex; text-decoration: none; }

/* Jewish Agency logo SVG (267×78 natural → 260px wide, matches brand) */
.footer__logo-ja {
  width: 260px;
  height: auto;
  max-width: none;
  max-height: none;
  display: block;
}

/* Privacy notice above submit button */
.footer__privacy {
  font-size: 13px;
  color: #666;
  line-height: 1.55;
  max-width: 560px;
  margin-bottom: 20px;
}
.footer__privacy-link {
  color: #183AAD;
  text-decoration: underline;
}

/* Legal / copyright bar below logo row */
.footer__legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px 24px;
  flex-wrap: wrap;
}
.footer__legal-link {
  font-size: 13px;
  color: #666;
  text-decoration: underline;
  transition: color 0.2s;
}
.footer__legal-link:hover { color: #183AAD; }
.footer__legal-sep {
  color: #999;
  font-size: 13px;
  -webkit-user-select: none;
  user-select: none;
}
.footer__copy {
  font-size: 13px;
  color: #999;
}

/* ============================================================
   CONTACT FORM — PERSISTENT VISIBLE LABELS
   Labels sit above each input and remain visible while typing.
   WCAG 3.3.2 compliant — placeholder text is supplementary only.
   ============================================================ */

/* Field wrapper: flex column so label stacks above input */
.footer__field {
  position: relative;
  height: auto;          /* was fixed 72px — now shrink-wraps label + input */
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer__field--textarea { height: auto; }

/* Visible label above each input */
.footer__label {
  font-size: 13px;
  font-weight: 500;
  color: #444;
  letter-spacing: 0.2px;
  text-align: left;
}
[dir="rtl"] .footer__label { text-align: right; }

/* Required asterisk via CSS — no translation needed */
.footer__field input:required + .footer__label::after,
.footer__field textarea:required + .footer__label::after {
  content: ' *';
  color: #c0392b;
}

/* Explicit height on inputs (was 100% of the fixed-height wrapper) */
.footer__field input    { height: 56px; }

/* Error region — visible, styled, zero height when empty */
.footer__form-error {
  font-size: 14px;
  font-weight: 500;
  color: #c0392b;
  text-align: center;
  min-height: 0;
  line-height: 1.5;
}

/* ============================================================
   SCROLL-TRIGGERED ANIMATIONS (non-hero sections)
   ============================================================ */
.anim-fade-up { opacity: 0; transform: translateY(40px); will-change: opacity, transform; }
.anim-stagger > * { opacity: 0; transform: translateY(30px); will-change: opacity, transform; }
@media (prefers-reduced-motion: reduce) {
  .anim-fade-up, .anim-stagger > * { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   RESPONSIVE — below 768px center the canvas instead of scaling from left
   ============================================================ */
@media (max-width: 767px) {
  .nav__links  { display: none; }
  .nav__tagline { display: none; }
  .vision__phrase { white-space: normal; padding-inline: 40px; }
}

/* ============================================================
   PRIVACY NOTICE BAR
   ============================================================ */
.privacy-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: #001356;
  border-top: 1px solid rgba(196, 168, 102, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 20px;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.privacy-notice.is-visible {
  transform: translateY(0);
}

.privacy-notice__text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.3px;
  line-height: 1.5;
  text-align: center;
}

.privacy-notice__link {
  color: #C4A866;
  text-decoration: underline;
  white-space: nowrap;
}

.privacy-notice__link:hover {
  color: #E9D5A3;
}

.privacy-notice__dismiss {
  background: none;
  border: 1px solid rgba(196, 168, 102, 0.5);
  color: rgba(255, 255, 255, 0.7);
  border-radius: 4px;
  font-family: inherit;
  font-size: 11px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 5px 12px;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.privacy-notice__dismiss:hover {
  border-color: #C4A866;
  color: #C4A866;
}

.privacy-notice__dismiss:focus-visible {
  outline: 2px solid #C4A866;
  outline-offset: 2px;
}

.privacy-notice .pn-he { display: none; }

@media (max-width: 767px) {
  .privacy-notice {
    flex-direction: column;
    gap: 10px;
    padding: 14px 20px;
  }
  .privacy-notice__text { font-size: 11px; }
}
