:root {
  --forest-950: #0f241c;
  --forest-900: #163328;
  --forest-800: #214434;
  --forest-700: #2f5543;
  --ivory-50: #f7f1e7;
  --ivory-100: #efe7da;
  --ivory-200: #e1d7c9;
  --ink-900: #18261f;
  --ink-700: #3b4b42;
  --ink-500: #647169;
  --mist-300: rgba(255, 255, 255, 0.14);
  --line: rgba(24, 38, 31, 0.1);
  --line-strong: rgba(24, 38, 31, 0.18);
  --brass-500: #c8a060;
  --brass-600: #a78047;
  --clay-500: #b66d4c;
  --shadow-soft: 0 24px 80px rgba(15, 36, 28, 0.12);
  --radius: 8px;
  --shell: min(1180px, calc(100vw - 40px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Public Sans", sans-serif;
  color: var(--ink-900);
  background:
    radial-gradient(circle at top left, rgba(200, 160, 96, 0.2), transparent 30%),
    linear-gradient(180deg, #f2ebde 0%, #f7f1e7 22%, #fbf8f2 100%);
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--brass-500);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow--dark {
  color: var(--brass-600);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(15, 36, 28, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header.is-scrolled {
  background: rgba(15, 36, 28, 0.88);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}

.site-header__inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #f7f2ea;
}

.brand__mark {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.brand__text {
  max-width: 140px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.35;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.site-nav a {
  color: rgba(247, 242, 234, 0.86);
  font-size: 0.9rem;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #ffffff;
}

.menu-toggle {
  display: none;
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #f7f2ea;
  padding: 0.72rem 0.95rem;
  border-radius: var(--radius);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 600;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--filled {
  background: var(--brass-500);
  color: var(--forest-950);
}

.button--filled:hover,
.button--filled:focus-visible {
  background: #d2ab69;
}

.button--ghost {
  color: #f7f2ea;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.05);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.button--ghost-dark {
  color: var(--forest-900);
  border-color: rgba(24, 38, 31, 0.18);
  background: transparent;
}

.button--ghost-dark:hover,
.button--ghost-dark:focus-visible {
  background: rgba(24, 38, 31, 0.04);
}

.hero {
  position: relative;
  min-height: min(920px, 96vh);
  overflow: clip;
  background: var(--forest-950);
}

.hero__image,
.hero__scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center;
}

.hero__scrim {
  background:
    linear-gradient(90deg, rgba(15, 36, 28, 0.92) 0%, rgba(15, 36, 28, 0.76) 37%, rgba(15, 36, 28, 0.3) 72%, rgba(15, 36, 28, 0.18) 100%),
    radial-gradient(circle at 20% 30%, rgba(200, 160, 96, 0.18), transparent 34%);
}

.hero__bars {
  position: absolute;
  right: -2rem;
  bottom: 3rem;
  width: min(34vw, 420px);
  aspect-ratio: 1 / 0.58;
  background:
    linear-gradient(180deg, transparent 0%, rgba(200, 160, 96, 0.18) 100%),
    repeating-linear-gradient(
      90deg,
      transparent 0 8px,
      rgba(200, 160, 96, 0.65) 8px 10px
    );
  clip-path: polygon(0 100%, 0 76%, 8% 72%, 16% 69%, 24% 66%, 32% 62%, 40% 54%, 48% 58%, 56% 50%, 64% 42%, 72% 45%, 80% 32%, 88% 36%, 100% 18%, 100% 100%);
  opacity: 0.84;
}

.hero__content {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: flex;
  align-items: center;
  padding: 7rem 0 9rem;
}

.hero__copy {
  max-width: 620px;
  color: #f7f2ea;
}

.hero h1,
.section h2,
.program-card h3,
.evidence-point h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.4rem, 8vw, 6rem);
  line-height: 0.94;
  max-width: 11ch;
  text-wrap: balance;
}

.hero__lede {
  margin: 1.4rem 0 0;
  max-width: 54ch;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(247, 242, 234, 0.86);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 2rem;
}

.hero__source {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-top: 2.5rem;
  color: rgba(247, 242, 234, 0.72);
  font-size: 0.85rem;
}

.facts {
  position: relative;
  z-index: 2;
  margin-top: -4.5rem;
  padding-bottom: 2rem;
}

.facts__panel {
  display: grid;
  grid-template-columns: 1.15fr repeat(4, 1fr);
  gap: 0;
  background: rgba(249, 245, 237, 0.96);
  border: 1px solid rgba(24, 38, 31, 0.1);
  box-shadow: var(--shadow-soft);
}

.facts__intro,
.stat {
  padding: 2rem 1.6rem;
  border-left: 1px solid var(--line);
}

.facts__intro {
  border-left: none;
}

.facts__intro p:last-child,
.stat__label,
.split__secondary p,
.section__lead,
.lever p,
.programs__intro p,
.program-card p,
.evidence__copy p,
.evidence-point p,
.brief p {
  color: var(--ink-700);
  line-height: 1.72;
}

.stat__value {
  margin: 0 0 0.85rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 4vw, 4.35rem);
  line-height: 0.92;
  color: var(--forest-900);
}

.stat__label {
  margin: 0;
  font-size: 0.95rem;
}

.section {
  padding: 7rem 0;
}

.section--paper {
  background:
    linear-gradient(180deg, rgba(239, 231, 218, 0.88), rgba(247, 241, 231, 0.96));
}

.section--light {
  background: #fbf8f2;
}

.section--ivory {
  background:
    linear-gradient(180deg, rgba(240, 231, 217, 0.42), rgba(247, 241, 231, 0.76));
}

.section--forest {
  background:
    radial-gradient(circle at 18% 18%, rgba(200, 160, 96, 0.13), transparent 24%),
    linear-gradient(180deg, var(--forest-900), var(--forest-950));
  color: #f7f2ea;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: start;
}

.split__primary h2,
.section__header h2,
.programs__intro h2,
.evidence__copy h2,
.brief h2 {
  margin: 0 0 1.4rem;
  font-size: clamp(2.7rem, 5vw, 4.5rem);
  line-height: 0.98;
  max-width: 12ch;
}

.section__lead {
  font-size: 1.1rem;
  max-width: 54ch;
}

.split__secondary {
  padding-top: 1.2rem;
}

.split__secondary p {
  margin: 0 0 1.1rem;
}

blockquote {
  margin: 2rem 0 0;
  padding: 1.4rem 0 0;
  border-top: 1px solid var(--line-strong);
}

blockquote p {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1.02;
  color: var(--forest-900);
}

blockquote cite {
  display: inline-block;
  margin-top: 0.9rem;
  color: var(--ink-500);
  font-style: normal;
}

.section__header {
  margin-bottom: 3.2rem;
}

.section__header-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 40px;
  align-items: end;
}

.section__header-row p {
  margin: 0;
  color: var(--ink-700);
  line-height: 1.72;
}

.lever-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line-strong);
}

.lever {
  padding: 2rem 1.35rem 0 0;
  border-right: 1px solid var(--line);
}

.lever:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 1.35rem;
}

.lever:nth-child(2) {
  padding-left: 1.35rem;
  padding-right: 1.35rem;
}

.lever__index {
  margin: 0 0 1.25rem;
  color: var(--brass-600);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.lever h3 {
  margin: 0 0 1rem;
  font-size: 2rem;
  line-height: 1;
}

.lever p {
  margin: 0;
}

.programs {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(0, 1.14fr);
  gap: 50px;
  align-items: start;
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2rem;
}

.audience-list span {
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  color: var(--forest-900);
  font-size: 0.86rem;
}

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

.program-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: clip;
  box-shadow: 0 18px 34px rgba(15, 36, 28, 0.08);
}

.program-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.program-card:nth-child(2) img {
  object-position: 68% center;
}

.program-card__body {
  padding: 1.35rem 1.25rem 1.5rem;
}

.program-card__kicker {
  margin: 0 0 0.75rem;
  color: var(--brass-600);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.program-card h3 {
  margin: 0 0 0.9rem;
  font-size: 1.85rem;
  line-height: 0.98;
}

.program-card p:last-child {
  margin: 0;
}

.evidence {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 42px;
  align-items: start;
}

.evidence__copy p,
.evidence-point p {
  color: rgba(247, 242, 234, 0.8);
}

.evidence__copy .eyebrow {
  color: var(--brass-500);
}

.evidence__copy h2 {
  max-width: 10ch;
}

.evidence__points {
  display: grid;
  gap: 18px;
}

.evidence-point {
  padding: 1.5rem;
  border: 1px solid var(--mist-300);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.evidence-point h3 {
  margin: 0 0 0.75rem;
  font-size: 2rem;
  line-height: 1;
}

.evidence-point p {
  margin: 0;
}

.brief {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
}

.brief em {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15em;
  font-style: normal;
}

.brief__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

body.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

body.motion-ready [data-reveal].is-visible,
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .site-header__inner {
    grid-template-columns: auto 1fr auto;
    gap: 18px;
  }

  .site-nav {
    gap: 18px;
  }

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

  .facts__intro {
    grid-column: 1 / -1;
    border-bottom: 1px solid var(--line);
  }

  .split,
  .section__header-row,
  .programs,
  .evidence,
  .brief {
    grid-template-columns: 1fr;
  }

  .program-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brief__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  .site-header__inner {
    grid-template-columns: auto auto;
    min-height: 72px;
  }

  .site-header__cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 0.8rem;
    background: rgba(15, 36, 28, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  }

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

  .site-nav a {
    padding: 0.9rem 0.75rem;
  }

  .hero {
    min-height: 820px;
  }

  .hero__scrim {
    background:
      linear-gradient(180deg, rgba(15, 36, 28, 0.32) 0%, rgba(15, 36, 28, 0.68) 22%, rgba(15, 36, 28, 0.92) 70%, rgba(15, 36, 28, 0.98) 100%),
      linear-gradient(90deg, rgba(15, 36, 28, 0.72) 0%, rgba(15, 36, 28, 0.3) 100%);
  }

  .hero__content {
    align-items: end;
    padding: 6rem 0 7rem;
  }

  .hero__bars {
    right: -3rem;
    bottom: 15rem;
    width: 52vw;
  }

  .facts {
    margin-top: -2rem;
  }

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

  .facts__intro,
  .stat {
    border-left: none;
    border-top: 1px solid var(--line);
  }

  .facts__intro {
    border-top: none;
  }

  .lever-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .lever,
  .lever:nth-child(2),
  .lever:last-child {
    padding: 0;
    border-right: none;
  }

  .lever {
    border-top: 1px solid var(--line);
    padding-top: 1.3rem;
  }

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

@media (max-width: 560px) {
  :root {
    --shell: min(100vw - 28px, 1180px);
  }

  .brand {
    gap: 10px;
  }

  .brand__text {
    max-width: 110px;
    font-size: 0.6rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 17vw, 4.4rem);
  }

  .split__primary h2,
  .section__header h2,
  .programs__intro h2,
  .evidence__copy h2,
  .brief h2 {
    font-size: clamp(2.4rem, 12vw, 3.45rem);
  }

  .hero__actions,
  .brief__actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 5rem 0;
  }
}

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

  body.motion-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
