:root {
  --navy-950: #061327;
  --navy-900: #0b2144;
  --navy-800: #13335f;
  --blue-600: #1b5d95;
  --gold-500: #e8bd61;
  --gold-300: #f5dc9e;
  --ivory: #fbf8f1;
  --paper: #ffffff;
  --ink: #10233e;
  --muted: #5d6978;
  --line: #dbe1e8;
  --shadow: 0 24px 60px rgb(4 22 50 / 12%);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: white;
  background: var(--navy-950);
  border-radius: 6px;
  transform: translateY(-160%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  color: white;
  background: rgb(6 19 39 / 94%);
  border-bottom: 1px solid rgb(255 255 255 / 9%);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--navy-950);
  background: var(--gold-500);
  border-radius: 50% 50% 50% 10%;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  transform: rotate(-4deg);
}

.brand-mark + .brand-copy { transform: translateY(1px); }

.brand-copy { display: grid; line-height: 1.2; }
.brand-copy strong { font-family: var(--serif); font-size: 1.12rem; font-weight: 600; }
.brand-copy small { margin-top: 4px; color: rgb(255 255 255 / 62%); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; }

.site-nav { display: flex; align-items: center; gap: 34px; }
.site-nav a { color: rgb(255 255 255 / 78%); font-size: 0.92rem; font-weight: 650; text-decoration: none; }
.site-nav a:hover, .site-nav a:focus-visible { color: white; }
.site-nav .nav-cta { padding: 10px 19px; color: var(--navy-950); background: var(--gold-500); border-radius: 999px; }
.site-nav .nav-cta:hover, .site-nav .nav-cta:focus-visible { color: var(--navy-950); background: var(--gold-300); }

.menu-button { display: none; }

.hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 70% 30%, rgb(32 102 154 / 40%), transparent 38%),
    linear-gradient(125deg, var(--navy-950) 0%, var(--navy-900) 58%, #123a67 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: linear-gradient(90deg, transparent, var(--gold-500) 28%, var(--gold-500) 72%, transparent);
  opacity: 0.72;
}

.light-field { position: absolute; inset: 0; pointer-events: none; }
.ray { position: absolute; width: 55vw; height: 1px; right: -9vw; top: 46%; background: linear-gradient(90deg, transparent, rgb(244 210 130 / 55%), transparent); transform-origin: right; }
.ray-one { transform: rotate(24deg); }
.ray-two { transform: rotate(-3deg); opacity: 0.45; }
.ray-three { transform: rotate(-29deg); opacity: 0.25; }

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: center;
  padding-block: 92px 106px;
}

.eyebrow, .section-kicker {
  margin: 0 0 18px;
  color: var(--gold-500);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
h1 {
  max-width: 760px;
  margin-bottom: 25px;
  font-family: var(--serif);
  font-size: clamp(3.25rem, 6.7vw, 6.15rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 36px;
  color: rgb(255 255 255 / 76%);
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
  line-height: 1.7;
}

.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 25px; }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover { transform: translateY(-2px); }
.button-gold { color: var(--navy-950); background: var(--gold-500); box-shadow: 0 10px 28px rgb(232 189 97 / 18%); }
.button-gold:hover, .button-gold:focus-visible { background: var(--gold-300); }
.coming-soon { cursor: default; }
.coming-soon:hover { transform: none; background: var(--gold-500); }
.button-ghost { color: white; border-color: rgb(255 255 255 / 38%); }
.button-ghost:hover, .button-ghost:focus-visible { background: rgb(255 255 255 / 9%); border-color: white; }

.text-link { color: white; font-weight: 750; text-decoration: none; }
.text-link span { display: inline-block; margin-left: 5px; transition: transform 160ms ease; }
.text-link:hover span { transform: translateX(4px); }

.hero-card {
  position: relative;
  padding: 42px 36px 37px;
  background: linear-gradient(155deg, rgb(255 255 255 / 13%), rgb(255 255 255 / 5%));
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 2px 32px 2px 32px;
  box-shadow: 0 28px 70px rgb(0 0 0 / 22%);
  backdrop-filter: blur(14px);
}

.hebrew-mark {
  position: absolute;
  top: -40px;
  right: 24px;
  color: rgb(232 189 97 / 22%);
  font-family: var(--serif);
  font-size: 8.8rem;
  line-height: 1;
  letter-spacing: -0.1em;
}

.quote { position: relative; margin-bottom: 26px; font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.25; }
.rule { width: 64px; height: 3px; margin-bottom: 24px; background: var(--gold-500); }
.card-note { margin: 0; color: rgb(255 255 255 / 72%); font-size: 0.96rem; }

.section-pad { padding-block: clamp(82px, 10vw, 132px); }
.mission { background: var(--ivory); }
.mission-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(50px, 9vw, 130px); }
.section-kicker { color: var(--blue-600); }
h2 { margin-bottom: 0; font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 4.65rem); font-weight: 500; line-height: 1.06; letter-spacing: -0.035em; }
.mission-copy { padding-top: 44px; border-top: 1px solid #b9c5d2; }
.mission-copy p { margin-bottom: 20px; color: #465669; font-family: var(--serif); font-size: clamp(1.1rem, 1.8vw, 1.34rem); line-height: 1.75; }

.programs { background: #eef3f7; }
.section-heading { max-width: 700px; margin-bottom: 48px; }
.program-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #c4d0db; border-left: 1px solid #c4d0db; }
.program-card { position: relative; min-height: 390px; padding: 34px 28px 30px; background: rgb(255 255 255 / 62%); border-right: 1px solid #c4d0db; border-bottom: 1px solid #c4d0db; transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease; }
.program-card:hover { z-index: 2; background: white; box-shadow: var(--shadow); transform: translateY(-8px); }
.featured-card { background: var(--navy-900); color: white; }
.featured-card:hover { background: var(--navy-800); }
.card-number { display: block; color: #8b99a7; font-size: 0.76rem; font-weight: 800; letter-spacing: 0.16em; }
.featured-card .card-number { color: var(--gold-500); }
.icon-ring { width: 62px; height: 62px; display: grid; place-items: center; margin: 58px 0 35px; color: var(--blue-600); border: 1px solid #9cabb9; border-radius: 50%; }
.featured-card .icon-ring { color: var(--gold-500); border-color: rgb(232 189 97 / 58%); }
.icon-ring svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }
.program-card h3 { margin-bottom: 14px; font-family: var(--serif); font-size: 1.5rem; font-weight: 600; }
.program-card p { margin: 0; color: #5c6a78; font-size: 0.94rem; }
.featured-card p { color: rgb(255 255 255 / 68%); }

.involved { padding-block: 0; background: #eef3f7; }
.involved-panel { min-height: 370px; display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 50px; align-items: center; padding: clamp(50px, 7vw, 86px); color: white; background: linear-gradient(118deg, #0b2144, #153e68); border-radius: 3px 3px 0 0; }
.involved-panel h2 { max-width: 760px; font-size: clamp(2.5rem, 4.4vw, 4.4rem); }
.light-kicker { color: var(--gold-500); }
.involved-actions { display: grid; gap: 13px; justify-items: stretch; }

.site-footer { padding-block: 44px; color: rgb(255 255 255 / 64%); background: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 1fr auto auto; gap: 32px; align-items: center; }
.footer-brand { color: white; }
.site-footer p { margin: 0; font-size: 0.82rem; }
.legal { padding-left: 32px; border-left: 1px solid rgb(255 255 255 / 16%); }

:focus-visible { outline: 3px solid #77b9e8; outline-offset: 4px; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; padding-top: 76px; }
  .hero-card { max-width: 610px; }
  .mission-grid { grid-template-columns: 1fr; gap: 35px; }
  .mission-copy { padding-top: 30px; }
  .program-grid { grid-template-columns: repeat(2, 1fr); }
  .involved-panel { grid-template-columns: 1fr; }
  .involved-actions { grid-template-columns: repeat(2, minmax(180px, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .legal { grid-column: 2; padding-left: 0; border: 0; }
}

@media (max-width: 720px) {
  .shell { width: min(100% - 28px, 1160px); }
  .nav-wrap { min-height: 72px; }
  .brand-copy small { display: none; }
  .menu-button {
    width: 44px;
    height: 44px;
    display: grid;
    align-content: center;
    gap: 5px;
    padding: 10px;
    color: white;
    background: transparent;
    border: 1px solid rgb(255 255 255 / 20%);
    border-radius: 50%;
  }
  .menu-button span:not(.sr-only) { width: 20px; height: 2px; display: block; margin-inline: auto; background: currentColor; transition: transform 160ms ease, opacity 160ms ease; }
  .menu-button[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 24px;
    background: var(--navy-950);
    border-bottom: 1px solid rgb(255 255 255 / 14%);
  }
  .site-nav.is-open { display: grid; }
  .site-nav a { padding: 14px 4px; border-bottom: 1px solid rgb(255 255 255 / 10%); }
  .site-nav .nav-cta { margin-top: 10px; text-align: center; border-bottom: 0; }
  .hero { min-height: auto; }
  .hero-grid { gap: 78px; padding-block: 72px 100px; }
  h1 { font-size: clamp(3.1rem, 15vw, 5.1rem); }
  .hero-card { padding: 36px 28px 30px; }
  .hebrew-mark { font-size: 7.4rem; }
  .section-pad { padding-block: 78px; }
  .program-grid { grid-template-columns: 1fr; }
  .program-card { min-height: 315px; }
  .icon-ring { margin: 38px 0 26px; }
  .involved-panel { padding: 48px 28px; }
  .involved-actions { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .legal { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
