:root {
  --red: #e22001;
  --red-dark: #b91800;
  --red-press: #9c1700;
  --maroon: #340404;
  --maroon-deep: #1e0202;
  --bone: #f8eae1;
  --blush: #fde7e3;
  --paper: #fdf3ef;
  --white: #fff;
  --ink: #3d2320;
  --muted: #6b4a45;
  --brass: #8e7c49;
  --line: rgba(52, 4, 4, 0.14);
  --line-on-dark: rgba(248, 234, 225, 0.3);
  --font-display: "Heebo", "Assistant", system-ui, sans-serif;
  --font-body: "Assistant", "Heebo", system-ui, sans-serif;
  --font-serif-en: "Playfair Display", Georgia, serif;
  --font-accent-he: "Heebo", "Assistant", system-ui, sans-serif;
  --max-width: 1240px;
  --header-height: 84px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --shadow: 0 24px 70px rgba(52, 4, 4, 0.18);
}

html[lang="he"] {
  --font-display: "Heebo", system-ui, sans-serif;
  --font-body: "Heebo", system-ui, sans-serif;
  --font-accent-he: "Heebo", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

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

h1,
h2,
h3,
p,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  color: var(--maroon);
  letter-spacing: -0.035em;
}

h1,
h2 {
  font-weight: 900;
  line-height: 0.95;
}

h2 {
  font-size: clamp(3.25rem, 6.5vw, 6.9rem);
}

h3 {
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
  font-weight: 800;
  line-height: 1.06;
}

em {
  font-family: var(--font-serif-en);
  font-weight: 600;
}

html[lang="he"] em {
  font-family: var(--font-accent-he);
  font-style: normal;
  font-weight: 700;
}

::selection {
  background: var(--red);
  color: var(--bone);
}

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

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

.skip-link {
  position: fixed;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  z-index: 200;
  padding: 10px 16px;
  background: var(--maroon);
  color: var(--bone);
  transform: translateY(-150%);
  transition: transform 140ms var(--ease);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  color: var(--bone);
  border-bottom: 1px solid transparent;
  transition: background-color 220ms var(--ease), border-color 220ms var(--ease), color 220ms var(--ease);
}

.site-header.is-scrolled,
.site-header.menu-open {
  color: var(--maroon);
  background: rgba(253, 243, 239, 0.9);
  border-color: var(--line);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.header-inner {
  width: min(calc(100% - 48px), var(--max-width));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 38px;
}

.brand {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  width: 148px;
  filter: brightness(0) invert(1);
  transition: filter 220ms var(--ease);
}

.site-header.is-scrolled .brand,
.site-header.menu-open .brand {
  filter: none;
}

.header-panel {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-inline-start: auto;
}

.site-nav a {
  position: relative;
  padding-block: 10px;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  inset-block-end: 5px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 140ms var(--ease);
}

html[dir="rtl"] .site-nav a::after {
  transform-origin: right;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 7px;
}

.language-switch > span {
  width: 1px;
  height: 14px;
  background: currentColor;
  opacity: 0.35;
}

.language-option {
  border: 0;
  padding: 5px 2px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
  opacity: 0.55;
}

.language-option.is-active {
  opacity: 1;
  border-bottom: 2px solid currentColor;
}

.menu-toggle {
  display: none;
  margin-inline-start: auto;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 220ms var(--ease);
}

.site-header.menu-open .menu-toggle > span:nth-of-type(2) {
  transform: translateY(4px) rotate(45deg);
}

.site-header.menu-open .menu-toggle > span:nth-of-type(3) {
  transform: translateY(-4px) rotate(-45deg);
}

.button {
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background-color 140ms var(--ease), color 140ms var(--ease), border-color 140ms var(--ease), transform 90ms var(--ease);
}

.button svg,
.text-link svg,
.audience-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: square;
  stroke-linejoin: miter;
  transition: transform 140ms var(--ease);
}

html[dir="rtl"] .button svg,
html[dir="rtl"] .text-link svg,
html[dir="rtl"] .audience-link svg {
  transform: scaleX(-1);
}

.button:hover svg,
.text-link:hover svg,
.audience-link:hover svg {
  transform: translateX(4px);
}

html[dir="rtl"] .button:hover svg,
html[dir="rtl"] .text-link:hover svg,
html[dir="rtl"] .audience-link:hover svg {
  transform: scaleX(-1) translateX(4px);
}

.button:active {
  transform: translateY(1px);
}

.button-small {
  min-height: 42px;
  padding-inline: 16px;
  font-size: 0.9rem;
}

.button-primary {
  background: var(--red);
  color: var(--bone);
}

.button-primary:hover {
  background: var(--red-dark);
}

.button-inverse {
  background: var(--bone);
  color: var(--maroon);
}

.button-inverse:hover {
  background: var(--white);
}

.button-on-red {
  color: var(--bone);
  border-color: rgba(248, 234, 225, 0.55);
  background: transparent;
}

.button-on-red:hover {
  background: var(--maroon);
  border-color: var(--maroon);
}

.button-full {
  width: 100%;
}

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: 56% 44%;
  background: var(--red);
}

html[dir="rtl"] .hero {
  grid-template-columns: 56% 44%;
}

.hero-copy {
  min-width: 0;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 58px) clamp(28px, 6vw, 96px) 76px;
}

.hero-copy-inner {
  width: min(100%, 690px);
  margin-inline-start: auto;
}

html[dir="rtl"] .hero-copy {
  grid-column: 1;
  grid-row: 1;
}

.hero h1 {
  margin: 26px 0 28px;
  color: var(--bone);
  font-size: clamp(5rem, 9.2vw, 9.7rem);
  letter-spacing: -0.055em;
  line-height: 0.8;
}

.hero h1 em {
  color: var(--bone);
  font-size: 0.88em;
}

.hero-lead {
  max-width: 37ch;
  margin-bottom: 32px;
  color: rgba(248, 234, 225, 0.92);
  font-size: clamp(1.15rem, 1.7vw, 1.35rem);
  font-weight: 600;
  line-height: 1.48;
}

.hero-actions,
.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-note {
  margin: 24px 0 0;
  color: rgba(248, 234, 225, 0.68);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

html[lang="he"] .hero-note {
  letter-spacing: 0.02em;
}

.hero-media {
  position: relative;
  min-width: 0;
  min-height: 760px;
  overflow: hidden;
  background: var(--maroon);
}

@media (min-width: 861px) {
  .hero-media picture img {
    object-fit: cover;
    object-position: center;
  }
}

html[dir="rtl"] .hero-media {
  grid-column: 2;
  grid-row: 1;
}

.hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}

.photo-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(30, 2, 2, 0.55), transparent 25%),
    linear-gradient(to top, rgba(52, 4, 4, 0.44), transparent 42%);
  pointer-events: none;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

html[lang="he"] .eyebrow {
  letter-spacing: 0.05em;
}

.eyebrow-on-red,
.eyebrow-on-dark {
  color: var(--bone);
}

.rule {
  width: 58px;
  height: 4px;
  margin-bottom: 22px;
  background: var(--red);
}

.rule-bone {
  background: var(--bone);
}

.audience-bar {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--paper);
}

.audience-link {
  min-height: 128px;
  padding: 28px 30px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  border-inline-end: 1px solid var(--line);
  transition: background-color 140ms var(--ease), color 140ms var(--ease);
}

.audience-link:last-child {
  border-inline-end: 0;
}

.audience-link:hover {
  background: var(--blush);
  color: var(--red);
}

.audience-number,
.card-number {
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.audience-link strong,
.audience-link small {
  display: block;
}

.audience-link strong {
  color: var(--maroon);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
}

.audience-link small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.85rem;
}

.section {
  padding: clamp(88px, 10vw, 150px) 32px;
}

.section-grid,
.section-heading,
.model-grid,
.mentor-grid,
.accountability-grid,
.join-heading,
.join-grid {
  width: min(100%, var(--max-width));
  margin-inline: auto;
}

.section-grid {
  display: grid;
  grid-template-columns: 2fr 10fr;
  gap: 44px;
}

.section-kicker {
  padding-top: 13px;
}

.why {
  background: var(--blush);
}

.why-content h2 {
  max-width: 11ch;
  margin-bottom: 54px;
}

.why-content h2 em {
  color: var(--red);
}

.two-column-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 7vw, 96px);
  max-width: 950px;
}

.lead-copy {
  color: var(--maroon);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 700;
  line-height: 1.36;
}

.two-column-copy p:not(.lead-copy),
.founder-copy > p,
.mentor-copy > p,
.model-card p,
.join-card > p {
  color: var(--muted);
}

.statement-band {
  position: relative;
  min-height: 680px;
  padding: 110px 32px 190px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--red);
  color: var(--bone);
}

.statement-track {
  position: absolute;
  inset-inline: 0;
  inset-block-end: -0.15em;
  color: rgba(248, 234, 225, 0.09);
  font-family: var(--font-display);
  font-size: clamp(9rem, 22vw, 22rem);
  font-weight: 900;
  line-height: 0.72;
  letter-spacing: -0.075em;
  text-align: center;
  white-space: nowrap;
}

.statement-content {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max-width));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 2fr 10fr;
  gap: 44px;
  align-items: start;
  text-align: start;
}

.statement-label {
  padding-top: 18px;
}

.statement-label .rule {
  margin-bottom: 18px;
}

.statement-content p {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.statement-content h2 {
  margin: 0;
  max-width: 9ch;
  color: var(--bone);
  font-size: clamp(5rem, 9.4vw, 10rem);
  line-height: 0.84;
}

html[lang="he"] .statement-content h2 {
  max-width: 12ch;
  font-size: clamp(3.5rem, 5.5vw, 5.7rem);
  line-height: 0.9;
}

.model {
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: 2fr 6fr 4fr;
  gap: 34px;
  align-items: end;
  margin-bottom: 62px;
}

.section-heading h2 {
  max-width: 9ch;
  margin: 0;
  font-size: clamp(3.3rem, 5.4vw, 5.8rem);
}

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

.model-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
}

.model-card {
  min-height: 370px;
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  border-inline-end: 1px solid var(--line);
  transition: background-color 220ms var(--ease), color 220ms var(--ease);
}

.model-card:last-child {
  border-inline-end: 0;
}

.model-card:hover {
  background: var(--maroon);
  color: var(--bone);
}

.model-card h3 {
  margin: auto 0 16px;
}

.model-card:hover h3,
.model-card:hover p,
.model-card:hover .card-number {
  color: var(--bone);
}

.model-card p {
  margin: 0;
  font-size: 0.98rem;
}

.model-support {
  max-width: 76ch;
  margin: 30px 0 0 auto;
  color: var(--muted);
  font-size: 0.95rem;
}

html[dir="rtl"] .model-support {
  margin-inline: auto 0;
}

.founder {
  min-height: 760px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--maroon);
}

.founder-portrait {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(248, 234, 225, 0.14), transparent 52%),
    var(--red);
}

.founder-portrait::before {
  content: "";
  position: absolute;
  inset: clamp(28px, 4vw, 58px);
  border: 1px solid rgba(248, 234, 225, 0.32);
  pointer-events: none;
}

.founder-portrait img {
  position: absolute;
  inset-inline: 0;
  inset-block-end: 0;
  z-index: 1;
  width: 100%;
  height: 94%;
  object-fit: contain;
  object-position: center bottom;
}

.founder-copy {
  width: min(100%, 660px);
  padding: 100px clamp(32px, 7vw, 100px);
  align-self: center;
}

.founder-copy blockquote {
  margin-bottom: 38px;
  color: var(--bone);
  font-family: var(--font-serif-en);
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  font-weight: 600;
  line-height: 1.08;
}

html[lang="he"] .founder-copy blockquote {
  font-family: var(--font-accent-he);
  font-weight: 700;
}

.founder-copy > p {
  max-width: 52ch;
  color: rgba(248, 234, 225, 0.74);
}

.founder-achievements {
  margin: 34px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-on-dark);
  list-style: none;
}

.founder-achievements li {
  padding: 14px 16px 14px 0;
  border-bottom: 1px solid var(--line-on-dark);
  color: rgba(248, 234, 225, 0.88);
  font-size: 0.78rem;
  font-weight: 700;
}

.founder-achievements li:nth-child(odd) {
  border-inline-end: 1px solid var(--line-on-dark);
}

.founder-achievements li:nth-child(even) {
  padding-inline-start: 16px;
}

.founder-signature {
  margin-top: 34px;
  color: var(--bone) !important;
  font-weight: 700;
}

.mentor {
  background: var(--blush);
}

.mentor-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

html[dir="rtl"] .mentor-grid {
  grid-template-columns: 7fr 5fr;
}

html[dir="rtl"] .mentor-media {
  grid-column: 1;
  grid-row: 1;
}

html[dir="rtl"] .mentor-copy {
  grid-column: 2;
  grid-row: 1;
}

.mentor-media {
  position: relative;
  min-height: 660px;
  overflow: hidden;
}

.mentor-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(248, 234, 225, 0.3);
  pointer-events: none;
}

.mentor-media img {
  width: 100%;
  height: 100%;
  min-height: 660px;
  object-fit: cover;
}

.image-index {
  position: absolute;
  inset-inline-start: 18px;
  inset-block-end: 16px;
  padding: 7px 10px;
  background: var(--red);
  color: var(--bone);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.mentor-copy h2 {
  margin-bottom: 30px;
  font-size: clamp(3.3rem, 5.4vw, 5.9rem);
}

.mentor-copy h2 em {
  color: var(--red);
}

.check-list {
  margin: 30px 0 38px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 16px 0 16px 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

html[dir="rtl"] .check-list li {
  padding: 16px 28px 16px 0;
}

.check-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: 26px;
  width: 12px;
  height: 4px;
  background: var(--red);
}

.accountability {
  background: var(--red);
  color: var(--bone);
}

.accountability-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(60px, 9vw, 130px);
}

.accountability-title h2 {
  margin: 0;
  color: var(--bone);
  font-size: clamp(3.5rem, 6vw, 6.6rem);
}

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

.measure-item {
  padding: 26px 0;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--line-on-dark);
}

.measure-item > span {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  opacity: 0.65;
}

.measure-item strong {
  display: block;
  margin-bottom: 5px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
}

.measure-item p {
  max-width: 50ch;
  margin: 0;
  color: rgba(248, 234, 225, 0.76);
}

.impact-note {
  margin: 24px 0 0;
  color: rgba(248, 234, 225, 0.72);
  font-size: 0.86rem;
}

.join {
  background: var(--paper);
}

.join-heading {
  margin-bottom: 52px;
}

.join-heading h2 {
  max-width: 9ch;
  margin: 0;
}

.join-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.join-card {
  min-height: 490px;
  padding: 36px;
  display: flex;
  flex-direction: column;
}

.join-card .card-number {
  color: inherit;
  opacity: 0.65;
}

.card-audience {
  margin: 80px 0 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

html[lang="he"] .card-audience {
  letter-spacing: 0.04em;
}

.join-card h3 {
  max-width: 9ch;
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.2vw, 3.4rem);
}

.join-card > p:not(.card-audience) {
  max-width: 33ch;
  margin-bottom: 32px;
}

.join-card-red {
  background: var(--red);
  color: var(--bone);
}

.join-card-red h3,
.join-card-red > p,
.join-card-red .text-link {
  color: var(--bone) !important;
}

.join-card-cream {
  background: var(--blush);
}

.join-card-maroon {
  background: var(--maroon);
  color: var(--bone);
}

.join-card-maroon h3,
.join-card-maroon > p,
.join-card-maroon .text-link {
  color: var(--bone) !important;
}

.text-link {
  width: fit-content;
  margin-top: auto;
  padding: 10px 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 0;
  border-bottom: 2px solid currentColor;
  background: transparent;
  color: var(--red);
  font-weight: 700;
  cursor: pointer;
}

.closing {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 56% 44%;
  align-items: center;
  background: var(--blush);
  color: var(--ink);
}

.closing-copy {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  margin-inline: auto;
  padding: clamp(90px, 9vw, 140px) clamp(32px, 7vw, 100px);
}

.closing h2 {
  max-width: 9ch;
  margin-bottom: 28px;
  color: var(--maroon);
  font-size: clamp(4.2rem, 8.8vw, 9.6rem);
}

.closing h2 em {
  color: var(--red);
}

.closing p {
  max-width: 42ch;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 1.2rem;
  font-weight: 600;
}

.closing .button-inverse {
  border-color: var(--red);
  background: var(--red);
  color: var(--bone);
}

.closing .button-inverse:hover {
  border-color: var(--maroon);
  background: var(--maroon);
}

.closing .button-on-red {
  border-color: rgba(52, 4, 4, 0.35);
  color: var(--maroon);
}

.closing .button-on-red:hover {
  border-color: var(--maroon);
  background: var(--maroon);
  color: var(--bone);
}

.closing-visual {
  position: relative;
  align-self: stretch;
  min-height: 680px;
  overflow: hidden;
}

.closing-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(52, 4, 4, 0.28), transparent 50%);
  pointer-events: none;
}

.closing-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.site-footer {
  padding: 78px 32px 32px;
  background: var(--maroon);
  color: var(--bone);
}

.footer-main,
.footer-bottom {
  width: min(100%, var(--max-width));
  margin-inline: auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 70px;
}

.footer-brand img {
  width: 190px;
  margin-bottom: 20px;
}

.footer-brand p {
  max-width: 32ch;
  color: rgba(248, 234, 225, 0.68);
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-column strong {
  margin-bottom: 10px;
  color: var(--red);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-column button,
.footer-column a {
  border: 0;
  padding: 2px 0;
  background: transparent;
  color: rgba(248, 234, 225, 0.74);
  cursor: pointer;
  text-align: start;
}

.footer-column button:hover,
.footer-column a:hover {
  color: var(--bone);
}

.footer-bottom {
  margin-top: 62px;
  padding-top: 22px;
  display: flex;
  gap: 24px;
  border-top: 1px solid rgba(248, 234, 225, 0.16);
  color: rgba(248, 234, 225, 0.48);
  font-size: 0.75rem;
}

.footer-bottom span:nth-child(2) {
  margin-inline-start: auto;
}

.interest-dialog {
  width: min(calc(100% - 32px), 620px);
  max-height: min(860px, calc(100vh - 32px));
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.interest-dialog::backdrop {
  background: rgba(30, 2, 2, 0.7);
}

.interest-dialog[open] {
  animation: dialog-in 220ms var(--ease) both;
}

@keyframes dialog-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.dialog-close {
  position: absolute;
  inset-inline-end: 18px;
  inset-block-start: 18px;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  cursor: pointer;
}

.dialog-close svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.dialog-content,
.dialog-success {
  padding: 72px clamp(26px, 6vw, 58px) 52px;
}

.dialog-content h2,
.dialog-success h2 {
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 8vw, 4.8rem);
}

.dialog-content > p,
.dialog-success > p {
  color: var(--muted);
}

#interest-form {
  margin-top: 32px;
  display: grid;
  gap: 18px;
}

#interest-form label {
  display: grid;
  gap: 7px;
  color: var(--maroon);
  font-size: 0.83rem;
  font-weight: 700;
}

#interest-form input,
#interest-form textarea {
  width: 100%;
  border: 1px solid rgba(52, 4, 4, 0.24);
  border-radius: 4px;
  padding: 12px 14px;
  background: var(--white);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 400;
  resize: vertical;
}

#interest-form input:focus,
#interest-form textarea:focus {
  border-color: var(--red);
  outline: 2px solid rgba(226, 32, 1, 0.16);
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

#interest-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-status {
  margin: 0;
  color: var(--red) !important;
  font-size: 0.88rem;
  font-weight: 700;
}

.mock-toast {
  position: fixed;
  inset-inline-start: 50%;
  inset-block-end: 24px;
  z-index: 210;
  padding: 12px 18px;
  background: var(--maroon);
  color: var(--bone);
  font-size: 0.86rem;
  font-weight: 700;
  transform: translate(-50%, 140%);
  opacity: 0;
  transition: transform 220ms var(--ease), opacity 220ms var(--ease);
}

html[dir="rtl"] .mock-toast {
  transform: translate(50%, 140%);
}

.mock-toast.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}

html[dir="rtl"] .mock-toast.is-visible {
  transform: translate(50%, 0);
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 18px;
  }

  .site-nav a {
    font-size: 0.84rem;
  }

  .hero {
    grid-template-columns: 57% 43%;
  }

  .hero-copy {
    padding-inline: 38px;
  }

  .section-heading {
    grid-template-columns: 2fr 7fr;
  }

  .section-heading > p {
    grid-column: 2;
  }

  .model-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .model-card:nth-child(2) {
    border-inline-end: 0;
  }

  .model-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .footer-main {
    gap: 40px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 72px;
  }

  .header-inner {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .brand {
    width: 132px;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: block;
  }

  .header-panel {
    position: fixed;
    inset: var(--header-height) 0 auto;
    padding: 24px 22px 28px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 24px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 38px rgba(52, 4, 4, 0.12);
  }

  .site-header.menu-open .header-panel {
    display: flex;
  }

  .site-nav {
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .site-nav a::after {
    display: none;
  }

  .header-actions {
    justify-content: space-between;
  }

  .hero,
  html[dir="rtl"] .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  html[dir="rtl"] .hero-copy {
    grid-column: 1;
    grid-row: 1;
    min-height: 680px;
    padding: calc(var(--header-height) + 54px) 28px 68px;
  }

  .hero-copy-inner {
    margin: 0;
  }

  .hero h1 {
    font-size: clamp(5.2rem, 20vw, 8rem);
  }

  .hero-media,
  html[dir="rtl"] .hero-media {
    grid-column: 1;
    grid-row: 2;
    min-height: 520px;
  }

  .audience-bar {
    grid-template-columns: 1fr;
  }

  .audience-link {
    min-height: 108px;
    border-inline-end: 0;
    border-bottom: 1px solid var(--line);
  }

  .section-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .two-column-copy,
  .section-heading,
  .mentor-grid,
  html[dir="rtl"] .mentor-grid,
  .accountability-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .statement-band {
    min-height: 620px;
    padding: 96px 28px 180px;
    align-items: flex-start;
  }

  .statement-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .statement-label {
    padding-top: 0;
  }

  .statement-track {
    inset-block-end: 20px;
    font-size: clamp(7rem, 27vw, 13rem);
    line-height: 0.8;
  }

  .section-heading > p {
    grid-column: auto;
  }

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

  .model-card,
  .model-card:nth-child(2) {
    min-height: 300px;
    border-inline-end: 0;
    border-bottom: 1px solid var(--line);
  }

  .model-card:last-child {
    border-bottom: 0;
  }

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

  .founder-portrait {
    min-height: 520px;
  }

  .founder-copy {
    padding: 88px 32px;
  }

  .founder-achievements {
    grid-template-columns: 1fr;
  }

  .founder-achievements li,
  .founder-achievements li:nth-child(odd),
  .founder-achievements li:nth-child(even) {
    padding-inline: 0;
    border-inline-end: 0;
  }

  html[dir="rtl"] .mentor-media {
    grid-column: auto;
    grid-row: auto;
  }

  html[dir="rtl"] .mentor-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .mentor-media,
  .mentor-media img {
    min-height: 520px;
  }

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

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

  .closing-copy {
    width: 100%;
  }

  .closing-visual {
    min-height: 520px;
  }

  .join-card {
    min-height: 410px;
  }

  .footer-main {
    gap: 38px;
  }

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

  .footer-bottom span:nth-child(2) {
    margin-inline-start: auto;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 74px 20px;
  }

  .hero-copy {
    min-height: 640px;
    padding-inline: 20px;
  }

  .hero h1 {
    font-size: clamp(4.5rem, 22vw, 6.4rem);
  }

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

  .hero-media,
  html[dir="rtl"] .hero-media {
    min-height: 420px;
  }

  .hero-media img {
    object-position: center;
  }

  .audience-link {
    padding-inline: 20px;
  }

  .statement-band {
    min-height: 560px;
    padding: 78px 20px 150px;
  }

  .statement-content h2 {
    font-size: clamp(4rem, 19vw, 6rem);
  }

  html[lang="he"] .statement-content h2 {
    max-width: 12ch;
    font-size: clamp(3.2rem, 13vw, 4.6rem);
  }

  .statement-track {
    inset-block-end: 18px;
    font-size: 28vw;
  }

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

  .model-card,
  .model-card:nth-child(2) {
    min-height: 300px;
    border-inline-end: 0;
    border-bottom: 1px solid var(--line);
  }

  .model-card:last-child {
    border-bottom: 0;
  }

  .founder-portrait {
    min-height: 440px;
  }

  .mentor-media,
  .mentor-media img {
    min-height: 420px;
  }

  .accountability-grid {
    gap: 48px;
  }

  .join-card {
    min-height: 390px;
    padding: 30px 24px;
  }

  .closing {
    min-height: 0;
  }

  .closing h2 {
    font-size: clamp(4rem, 19vw, 6rem);
  }

  .closing-copy {
    padding: 82px 20px;
  }

  .closing-visual {
    min-height: 420px;
  }

  .site-footer {
    padding-inline: 20px;
  }
}

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

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

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