:root {
  --ink: #163d34;
  --ink-deep: #0a2923;
  --warm: #f3eee4;
  --paper: #fbf9f4;
  --ochre: #a77a2d;
  --rust: #b76542;
  --line: rgba(22, 61, 52, .22);
  --muted: #62706a;
  --serif: "Newsreader", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --mono: "DM Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { display: block; width: 100%; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 10;
  padding: .8rem 1rem;
  color: white;
  background: var(--ink-deep);
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1440px;
  margin: 0 auto;
  padding: 2rem 4.5rem;
  width: 100%;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: .52rem;
  color: var(--ink);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .045em;
}
.wordmark span { font-size: 1.12rem; font-weight: 800; }
.wordmark i { width: 5px; height: 5px; border-radius: 50%; background: var(--ochre); }
.wordmark small { font-size: .63rem; font-weight: 800; letter-spacing: .075em; }
nav { display: flex; align-items: center; gap: 1.5rem; }
nav > a { font-size: .72rem; font-weight: 800; letter-spacing: .035em; text-decoration: none; }
nav > a:not(.nav-cta) {
  color: var(--paper);
  border-bottom: 1px solid transparent;
}
nav > a:not(.nav-cta):hover { border-color: var(--paper); }
.nav-cta { padding: .8rem 1rem; color: var(--paper); background: var(--ink); transition: background .2s ease; }
.nav-cta:hover { background: #215949; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.07fr) minmax(420px, .93fr);
  min-height: 790px;
  overflow: hidden;
  background: var(--warm);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 715px;
  padding: 11rem 3rem 5.5rem max(4.5rem, calc((100vw - 1300px) / 2));
}
.eyebrow {
  margin: 0 0 1.25rem;
  color: var(--ochre);
  font-family: var(--mono);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .12em;
  line-height: 1.5;
  text-transform: uppercase;
}
.eyebrow span { margin: 0 .3rem; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); }
h1 {
  max-width: 650px;
  margin-bottom: 1.7rem;
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(3.6rem, 5.5vw, 6.25rem);
  font-weight: 800;
  letter-spacing: -.075em;
  line-height: .93;
}
h1 em { color: var(--ochre); font-family: var(--serif); font-weight: 600; letter-spacing: -.065em; }
.hero-lede {
  max-width: 540px;
  margin-bottom: 2.35rem;
  color: #4c5d56;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.65;
}
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1.25rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  min-height: 3.25rem;
  padding: .85rem 1.1rem;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1.3;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-solid { color: var(--paper); background: var(--ink); }
.button-solid:hover { background: #235c4c; }
.text-link { display: inline-flex; gap: .55rem; align-items: center; font-size: .74rem; font-weight: 800; text-decoration: none; }
.text-link:hover { color: var(--ochre); }
.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 790px;
  padding: 8.9rem 4.5rem 4.2rem 0;
}
.hero-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink-deep);
}
.hero-art-frame {
  position: relative;
  width: min(100%, 575px);
  margin-left: -1.4rem;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(1, 20, 16, .28);
}
.hero-art-frame::after {
  content: "Nation-defined\A zone";
  position: absolute;
  right: 1.2rem;
  top: 1.15rem;
  white-space: pre;
  color: rgba(252, 248, 240, .9);
  font-family: var(--mono);
  font-size: .61rem;
  letter-spacing: .095em;
  line-height: 1.7;
  text-align: right;
  text-transform: uppercase;
}
.hero-art-frame img { min-height: 570px; object-fit: cover; object-position: center; }
.art-caption {
  position: absolute;
  bottom: 3.2rem;
  right: 4.5rem;
  width: 210px;
  margin: 0;
  color: rgba(248, 244, 236, .86);
  font-size: .7rem;
  font-weight: 600;
  line-height: 1.55;
}
.art-caption span { display: block; margin-bottom: .5rem; color: #d6a64f; font-family: var(--mono); font-size: .62rem; }

.section-pad { padding: 9rem max(4.5rem, calc((100vw - 1300px) / 2)); }
.statement { background: var(--paper); }
.statement-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); gap: 10%; }
h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(2.55rem, 4.25vw, 4.75rem);
  font-weight: 600;
  letter-spacing: -.065em;
  line-height: .98;
}
h2 em { color: var(--ochre); font-weight: 500; }
.statement-copy { padding-top: .6rem; }
.statement-copy p, .closing-copy p {
  color: #455750;
  font-size: 1rem;
  line-height: 1.75;
}
.statement-copy p + p { padding-top: 1.6rem; border-top: 1px solid var(--line); }

.operating-model { color: var(--paper); background: var(--ink); }
.operating-model h2 { color: var(--paper); }
.operating-model h2 em { color: #d3a656; }
.section-heading { max-width: 750px; }
.eyebrow--light, .operating-model .eyebrow { color: #d3a656; }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 5rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(245, 239, 227, .28);
}
.steps li { position: relative; min-height: 270px; padding: 2rem 1.65rem 1rem 0; border-right: 1px solid rgba(245, 239, 227, .28); }
.steps li + li { padding-left: 1.65rem; }
.steps li:last-child { border-right: 0; }
.step-number, .paths span, .outcomes-grid span { display: block; color: #d3a656; font-family: var(--mono); font-size: .64rem; letter-spacing: .07em; }
.steps h3, .paths h3, .outcomes-grid h3 { margin: 2.5rem 0 .75rem; font-size: 1.1rem; font-weight: 800; letter-spacing: -.035em; line-height: 1.2; }
.steps p { max-width: 235px; margin: 0; color: rgba(248, 244, 236, .72); font-size: .85rem; line-height: 1.65; }

.references { background: #e8e0d2; }
.references-intro { max-width: 810px; }
.reference-cards { display: grid; grid-template-columns: 1fr 1fr .72fr; gap: 1.2rem; margin-top: 4.5rem; }
.reference-card { min-height: 455px; background: var(--paper); }
.reference-card figure { position: relative; height: 255px; margin: 0; overflow: hidden; }
.reference-card img { height: 100%; object-fit: cover; transition: transform .5s ease; }
.reference-card:hover img { transform: scale(1.035); }
.reference-card figcaption { position: absolute; left: 1.1rem; bottom: 1rem; color: white; font-family: var(--mono); font-size: .63rem; font-weight: 500; letter-spacing: .11em; text-transform: uppercase; text-shadow: 0 1px 8px rgba(0,0,0,.45); }
.reference-card > div { padding: 1.4rem; }
.reference-card h3 { margin: 0; color: var(--ink); font-family: var(--serif); font-size: 1.7rem; font-weight: 600; letter-spacing: -.045em; line-height: 1.08; }
.reference-card--lesson { display: flex; flex-direction: column; justify-content: end; padding: 2rem; color: var(--paper); background: var(--rust); }
.reference-card--lesson h3 { color: var(--paper); font-size: 2rem; }
.reference-card--lesson p:last-child { margin: 1rem 0 0; color: rgba(255,255,255,.84); font-size: .9rem; line-height: 1.6; }
.card-kicker { margin: auto 0 1rem; font-family: var(--mono); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; }
.paths { margin-top: 7rem; }
.paths-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 1.5rem; }
.paths-grid article { padding: 1.35rem 1.2rem 1.5rem; border-top: 1px solid var(--ink); }
.paths h3 { margin-top: 2.1rem; }
.paths p { margin: 0; color: #52635c; font-size: .83rem; line-height: 1.65; }
.fine-print { max-width: 760px; margin: 3rem 0 0; color: #69736d; font-size: .7rem; line-height: 1.7; }

.outcomes { background: var(--paper); }
.outcomes-header { max-width: 840px; }
.outcomes-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; margin-top: 5rem; background: var(--line); }
.outcomes-grid article { min-height: 240px; padding: 1.5rem 1.2rem; background: var(--paper); }
.outcomes-grid span { color: var(--ochre); }
.outcomes-grid h3 { margin-top: 2.6rem; }
.outcomes-grid p { margin: 0; color: #52635c; font-size: .83rem; line-height: 1.6; }

.capital { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); color: var(--paper); background: #0b3028; }
.capital-photo { min-height: 770px; overflow: hidden; }
.capital-photo img { height: 100%; object-fit: cover; object-position: center; filter: saturate(.82) contrast(1.03); }
.capital-copy { max-width: 700px; padding: 8rem max(4.5rem, calc((100vw - 1300px) / 2)) 7.5rem 6.5rem; }
.capital h2 { color: var(--paper); }
.capital h2 em { color: #d2a454; }
.capital-copy > p:not(.eyebrow):not(.fine-print) { max-width: 580px; margin: 1.8rem 0 0; color: rgba(249, 246, 239, .8); font-size: .97rem; line-height: 1.75; }
.fine-print--light { color: rgba(249,246,239,.55); }

.closing { background: #d9c6a7; }
.closing-grid { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(330px, .88fr); gap: 10%; }
.closing-copy { padding-top: .5rem; }
.button-outline { margin-top: 1rem; color: var(--ink); border: 1px solid var(--ink); }
.button-outline:hover { color: var(--paper); background: var(--ink); }

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr auto;
  gap: 2rem;
  padding: 2rem max(4.5rem, calc((100vw - 1300px) / 2));
  color: rgba(249,246,239,.7);
  background: var(--ink-deep);
}
.site-footer p { margin: 0; font-size: .64rem; line-height: 1.6; }
.site-footer strong { color: var(--paper); font-size: .73rem; letter-spacing: .06em; }
.site-footer span { margin: 0 .25rem; color: #d3a656; }

@media (max-width: 1100px) {
  .site-header { padding: 1.7rem 2.5rem; }
  .hero-copy { padding-left: 2.5rem; }
  .hero-art { padding-right: 2.5rem; }
  .art-caption { right: 2.5rem; }
  .section-pad { padding-right: 2.5rem; padding-left: 2.5rem; }
  .capital-copy { padding-right: 2.5rem; padding-left: 3.4rem; }
  .site-footer { padding-right: 2.5rem; padding-left: 2.5rem; }
  .reference-card h3 { font-size: 1.45rem; }
}

@media (max-width: 850px) {
  .site-header { position: relative; padding: 1.2rem 1.25rem; background: var(--warm); }
  nav > a:not(.nav-cta) { display: none; }
  nav { gap: 0; }
  .wordmark small { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { padding: 5rem 1.25rem 3.5rem; }
  .hero-art { min-height: 570px; padding: 0 1.25rem 4rem; }
  .hero-art-frame { width: 100%; margin: 0; }
  .hero-art-frame img { min-height: 490px; }
  .art-caption { bottom: 1.4rem; right: 1.25rem; }
  .section-pad { padding: 5.5rem 1.25rem; }
  .statement-grid, .closing-grid { grid-template-columns: 1fr; gap: 2rem; }
  .steps { grid-template-columns: 1fr 1fr; margin-top: 3.5rem; }
  .steps li:nth-child(2) { border-right: 0; }
  .steps li:nth-child(n+3) { border-top: 1px solid rgba(245,239,227,.28); }
  .steps li:nth-child(3) { padding-left: 0; }
  .reference-cards { grid-template-columns: 1fr; margin-top: 3.4rem; }
  .reference-card { min-height: 0; }
  .reference-card--lesson { min-height: 320px; }
  .paths { margin-top: 4.5rem; }
  .paths-grid { grid-template-columns: 1fr 1fr; }
  .outcomes-grid { grid-template-columns: 1fr 1fr; margin-top: 3.4rem; }
  .outcomes-grid article:last-child { grid-column: span 2; }
  .capital { grid-template-columns: 1fr; }
  .capital-photo { min-height: 400px; }
  .capital-copy { padding: 5.5rem 1.25rem; }
  .site-footer { grid-template-columns: 1fr; gap: .9rem; padding: 1.8rem 1.25rem; }
}

@media (max-width: 500px) {
  .wordmark span { font-size: 1rem; }
  .nav-cta { padding: .67rem .75rem; font-size: .64rem; }
  h1 { font-size: clamp(3rem, 16vw, 4rem); }
  h2 { font-size: clamp(2.35rem, 12vw, 3.3rem); }
  .hero-lede { font-size: 1rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .steps, .paths-grid, .outcomes-grid { grid-template-columns: 1fr; }
  .steps li, .steps li + li { min-height: auto; padding: 1.6rem 0; border-right: 0; border-top: 1px solid rgba(245,239,227,.28); }
  .steps li:first-child { border-top: 0; }
  .outcomes-grid article:last-child { grid-column: auto; }
  .capital-photo { min-height: 320px; }
}

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