:root {
  --ink: #18211f;
  --muted: #64706b;
  --paper: #f8f5ed;
  --soft: #eef5f2;
  --white: #ffffff;
  --line: #ded8ca;
  --teal: #0b6f6a;
  --teal-dark: #073f3d;
  --blue: #1558a8;
  --gold: #c69238;
  --clay: #b75d45;
  --shadow: 0 22px 70px rgba(20, 30, 27, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.has-modal {
  overflow: hidden;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 64px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(248, 245, 237, 0.96);
  box-shadow: 0 10px 30px rgba(15, 25, 22, 0.09);
  backdrop-filter: blur(14px);
}

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

.brand img {
  width: 122px;
  height: auto;
  display: block;
}

.brand span {
  color: currentColor;
  font-size: 0.76rem;
  font-weight: 800;
  opacity: 0.76;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.nav-cta,
.button.primary {
  color: var(--white);
  background: var(--teal);
}

.nav-cta {
  padding: 10px 16px;
  border-radius: var(--radius);
}

.language-switch {
  display: inline-flex;
  gap: 2px;
  padding: 3px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.language-option {
  min-width: 34px;
  min-height: 28px;
  border: 0;
  border-radius: 999px;
  color: inherit;
  background: transparent;
  font: inherit;
  font-size: 0.74rem;
  font-weight: 900;
  cursor: pointer;
}

.language-option.is-active {
  color: var(--white);
  background: var(--teal);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/current/israel-panorama.jpg");
  background-size: cover;
  background-position: center 48%;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 13, 19, 0.94) 0%, rgba(5, 13, 19, 0.74) 46%, rgba(5, 13, 19, 0.2) 100%),
    linear-gradient(0deg, rgba(5, 13, 19, 0.8) 0%, rgba(5, 13, 19, 0.18) 56%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
  width: 100%;
  padding: 150px clamp(18px, 6vw, 76px) clamp(36px, 7vw, 86px);
  color: var(--white);
}

.hero-copy {
  max-width: 790px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(3rem, 7.6vw, 7.2rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2.05rem, 4.4vw, 4.65rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  font-size: 1.28rem;
  line-height: 1.14;
}

.hero-lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.04rem, 2vw, 1.28rem);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.hero-card {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(16px);
}

.hero-card strong {
  display: block;
  margin-bottom: 18px;
  font-size: 1.1rem;
}

.hero-card dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.hero-card div {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-card dt {
  font-size: 1.85rem;
  font-weight: 950;
}

.hero-card dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-strip article {
  min-height: 138px;
  padding: 30px clamp(20px, 4vw, 48px);
  background: var(--white);
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip span {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.55;
}

.section {
  padding: clamp(64px, 9vw, 122px) clamp(18px, 6vw, 76px);
}

.story,
.founder,
.application,
.safety {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
}

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

.story-copy {
  max-width: 680px;
}

.story-copy p,
.section-heading p,
.founder-card p,
.program-card p,
.application-copy p,
.safety p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.68;
}

.story-media {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 14px;
}

.story-media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.story-media .large {
  grid-row: span 2;
  min-height: 520px;
}

.instagram-section {
  background: #f1f6f4;
}

.instagram-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
  margin-bottom: 34px;
}

.instagram-panel h2 {
  max-width: 850px;
}

.instagram-panel p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.68;
}

.instagram-actions {
  display: grid;
  gap: 14px;
  justify-items: start;
}

.instagram-actions span {
  display: block;
  padding: 18px;
  border: 1px solid #cbdcd7;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--muted);
  line-height: 1.55;
}

.social-gallery,
.video-gallery,
.highlight-gallery,
.israel-grid {
  display: grid;
  gap: 16px;
}

.highlight-gallery {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-bottom: 20px;
}

.highlight-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #d6e3df;
  border-radius: var(--radius);
}

.highlight-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #dce8e5;
}

.highlight-card div {
  display: grid;
  gap: 7px;
  padding: 16px;
}

.highlight-card span {
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.highlight-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.2;
}

.highlight-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.48;
}

.social-gallery {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.video-gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 16px;
}

.video-gallery article,
.social-gallery figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.video-gallery video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 720px;
  object-fit: cover;
  background: #07110f;
}

.video-gallery h3,
.video-gallery p {
  padding: 0 18px;
}

.video-gallery h3 {
  margin-top: 18px;
}

.video-gallery p {
  margin-bottom: 20px;
  color: var(--muted);
  line-height: 1.48;
}

.social-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 0.86 / 1;
  object-fit: cover;
}

.social-gallery figcaption {
  padding: 14px 16px 18px;
  color: var(--muted);
  font-weight: 800;
}

.program,
.institutions,
.faq {
  background: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.45fr) minmax(0, 1.55fr);
  gap: 36px;
  align-items: start;
  margin-bottom: 42px;
}

.program > .section-heading {
  display: block;
  max-width: 1040px;
}

.program > .section-heading p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 24px;
}

.section-heading.wide {
  display: block;
  max-width: 980px;
}

.section-heading.compact {
  display: block;
  max-width: 760px;
}

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

.program-card,
.founder-card,
.lead-form,
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.program-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: clamp(24px, 4vw, 36px);
}

.program-card.main {
  color: var(--white);
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.program-card.main p,
.program-card.main li {
  color: rgba(255, 255, 255, 0.82);
}

.program-card.cost-card {
  background: #f7faf8;
}

.program-card.benefits-card {
  background: #f6f1e5;
}

.program-card span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 20px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.program-card ul {
  display: grid;
  gap: 11px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.program-card li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.program-card li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "+";
  font-weight: 950;
}

.experience-columns {
  display: grid;
  gap: clamp(34px, 6vw, 70px);
  margin-top: clamp(42px, 7vw, 82px);
}

.experience-block {
  display: grid;
  gap: 20px;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.experience-grid article {
  min-height: 100%;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.experience-grid span {
  display: block;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 950;
}

.experience-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.experience-note {
  width: fit-content;
  margin: 0;
  padding: 12px 16px;
  border: 1px solid rgba(47, 128, 127, 0.22);
  border-radius: 999px;
  background: #eef8f5;
  color: var(--teal-dark);
  font-size: 0.92rem;
  font-weight: 950;
}

.founder {
  background: #f0eee6;
  grid-template-columns: minmax(0, 980px);
  justify-content: center;
}

.founder-card {
  position: relative;
  display: grid;
  gap: 18px;
  padding: clamp(28px, 4vw, 48px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.founder-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 4px;
}

.founder-profile img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  object-position: 50% 25%;
  border: 8px solid var(--white);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 14px 32px rgba(13, 45, 39, 0.16);
  outline: 1px solid #d8e4e0;
}

.founder-profile strong,
.founder-profile span {
  display: block;
}

.founder-profile strong {
  font-size: 1.04rem;
}

.founder-profile span {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 800;
}

.founder-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.founder-proof span {
  padding: 10px 14px;
  border: 1px solid #d8e4e0;
  border-radius: 999px;
  background: #f7faf8;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
}

.founder-values {
  display: grid;
  gap: 16px;
}

.founder-values article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 8px 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.founder-values span {
  grid-row: span 2;
  color: var(--clay);
  font-weight: 950;
}

.founder-values p,
.timeline p,
.faq p,
.form-disclaimer {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.institution-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.partner-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: clamp(42px, 7vw, 84px);
}

.partner-overview article {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.partner-overview span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.partner-overview p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.partner-overview a {
  margin-top: auto;
  padding-top: 24px;
  color: var(--teal-dark);
  font-weight: 950;
}

.alut-heading {
  padding-top: clamp(30px, 5vw, 58px);
  border-top: 1px solid var(--line);
}

.institution-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.institution-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(31, 45, 42, 0.12);
}

.institution-card__button {
  display: flex;
  width: 100%;
  height: 100%;
  flex: 1;
  flex-direction: column;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.institution-card__button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: -3px;
}

.institution-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.24 / 1;
  object-fit: cover;
}

.institution-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.institution-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.institution-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.institution-card__more {
  display: block;
  margin-top: 16px;
  color: var(--teal-dark);
  font-size: 0.9rem;
  font-weight: 950;
}

.institution-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
  padding-top: 16px;
}

.institution-meta em {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 7px 9px;
  border: 1px solid #c7d9d5;
  border-radius: 999px;
  color: var(--teal-dark);
  background: var(--white);
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 900;
}

.institution-modal[hidden] {
  display: none;
}

.institution-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 34px);
}

.institution-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 21, 22, 0.74);
  backdrop-filter: blur(7px);
}

.institution-modal__dialog {
  position: relative;
  width: min(1120px, 100%);
  max-height: min(90vh, 920px);
  overflow: auto;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.institution-modal__close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: var(--white);
  background: rgba(9, 21, 22, 0.56);
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
}

.institution-modal__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  align-items: stretch;
  background: var(--paper);
}

.institution-modal__hero img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.institution-modal__hero > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 56px);
}

.institution-modal__hero h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.96;
}

.institution-modal__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.institution-modal__meta em {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--gold);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
}

.institution-modal__content {
  display: grid;
  gap: 34px;
  padding: clamp(26px, 5vw, 54px);
}

.institution-modal__content p:not(.eyebrow) {
  max-width: 880px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.68;
}

.institution-modal__gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.institution-modal__gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 1.18 / 1;
  border-radius: var(--radius);
  object-fit: cover;
  background: var(--paper);
}

.process {
  background: var(--soft);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(90deg, rgba(47, 128, 127, 0), rgba(47, 128, 127, 0.38), rgba(47, 128, 127, 0));
}

.timeline li {
  position: relative;
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(47, 128, 127, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 248, 0.94)),
    var(--white);
  box-shadow: 0 18px 44px rgba(13, 45, 39, 0.08);
}

.timeline li:nth-child(2n) {
  transform: translateY(18px);
}

.timeline li:nth-child(3n) {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(246, 241, 229, 0.95)),
    var(--white);
}

.timeline-step {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(47, 128, 127, 0.22);
}

.timeline strong {
  display: block;
  font-size: 1.18rem;
}

.timeline p {
  font-size: 1rem;
}

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

.israel-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.israel-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
}

.israel-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}

.israel-grid h3,
.israel-grid p {
  padding: 0 18px;
}

.israel-grid h3 {
  margin-top: 18px;
}

.israel-grid p {
  margin-bottom: 20px;
  color: var(--muted);
  line-height: 1.48;
}

.safety {
  color: var(--white);
  background: #263a34;
}

.safety p {
  color: rgba(255, 255, 255, 0.78);
}

.application {
  align-items: start;
  background: var(--paper);
}

.application-copy {
  position: sticky;
  top: 105px;
}

.application-note {
  margin-top: 28px;
  padding: 20px;
  border-left: 4px solid var(--clay);
  background: #fff7ed;
}

.application-note strong,
.application-note span {
  display: block;
}

.application-note span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.55;
}

.requirement-split {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.requirement-split article {
  padding: 18px;
  border: 1px solid #e0d8c8;
  background: rgba(255, 255, 255, 0.62);
}

.requirement-split strong {
  display: block;
  color: var(--ink);
}

.requirement-split p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.52;
}

.lead-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 130px;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 850;
}

.optional-field {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.checkbox-field {
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.5;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--green);
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid #cec7b7;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-button {
  width: 100%;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 1180px;
}

summary {
  cursor: pointer;
  padding: 20px;
  font-weight: 950;
  line-height: 1.28;
}

details p {
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.58;
}

@media (max-width: 1180px) {
  .institution-grid,
  .partner-overview,
  .experience-grid,
  .video-gallery,
  .highlight-gallery,
  .social-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 940px) {
  .site-header {
    align-items: flex-start;
  }

  .brand {
    min-width: 0;
  }

  .brand span {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 13px;
  }

  .language-switch {
    align-self: flex-start;
    margin: 8px 12px 12px;
  }

  .nav-cta {
    color: var(--white);
  }

  .hero {
    min-height: 860px;
  }

  .hero-inner,
  .story,
  .instagram-panel,
  .section-heading,
  .program-layout,
  .founder,
  .safety,
  .application {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-top: 118px;
  }

  .hero-card {
    max-width: 560px;
  }

  .proof-strip,
  .institution-grid,
  .partner-overview,
  .experience-grid,
  .video-gallery,
  .highlight-gallery,
  .social-gallery,
  .israel-grid,
  .faq-list,
  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    display: none;
  }

  .timeline li:nth-child(2n) {
    transform: none;
  }

  .story-media {
    grid-template-columns: 1fr 1fr;
  }

  .story-media .large {
    grid-column: span 2;
    min-height: 360px;
  }

  .application-copy {
    position: static;
  }

  .institution-modal__hero,
  .institution-modal__gallery {
    grid-template-columns: 1fr;
  }

  .institution-modal__hero img {
    min-height: 300px;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand img {
    width: 108px;
  }

  .hero {
    min-height: 820px;
  }

  .hero-inner {
    padding: 110px 16px 34px;
  }

  .institution-modal {
    padding: 10px;
  }

  .institution-modal__hero img {
    min-height: 240px;
  }

  .institution-modal__hero > div,
  .institution-modal__content {
    padding: 24px;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 4.6rem);
    line-height: 0.96;
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 3rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .section {
    padding: 58px 16px;
  }

  .program-card,
  .founder-card,
  .lead-form,
  .timeline li {
    padding: 22px;
  }

  .story-media {
    grid-template-columns: 1fr;
  }

  .story-media .large {
    grid-column: auto;
    min-height: 320px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

}
