:root {
  --ink: #101713;
  --ink-soft: #18231d;
  --pine: #1f3a2e;
  --pine-deep: #13261e;
  --sage: #82907b;
  --moss: #5c6e5c;
  --bone: #f2eee5;
  --paper: #e7e0d3;
  --stone: #c8beae;
  --ember: #b26942;
  --brass: #c2a46a;
  --white: #fffdf8;
  --danger: #a64232;
  --shadow: 0 22px 70px rgba(8, 14, 11, 0.18);
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1180px;
  --narrow: 780px;
  --radius-sm: 4px;
  --radius: 10px;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

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

html {
  scroll-behavior: smooth;
  color-scheme: light;
  background: var(--bone);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(194, 164, 106, .08), transparent 34rem),
    var(--bone);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-underline-offset: .2em;
}

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

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

:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: 4px;
}

::selection {
  color: var(--white);
  background: var(--pine);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: .75rem 1rem;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform .2s;
}

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

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.container--narrow {
  width: min(calc(100% - 2rem), var(--narrow));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  transition: background .25s, color .25s, box-shadow .25s;
}

.site-header.is-scrolled,
.site-header.site-header--solid {
  position: fixed;
  color: var(--ink);
  background: rgba(242, 238, 229, .94);
  border-color: rgba(16, 23, 19, .12);
  box-shadow: 0 10px 35px rgba(8, 14, 11, .08);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

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

.brand-mark {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  content: "";
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: .58;
}

.brand-mark::before {
  width: 29px;
  height: 20px;
  transform: rotate(-18deg);
}

.brand-mark::after {
  width: 19px;
  height: 29px;
  transform: rotate(22deg);
}

.brand-mark span {
  position: relative;
  z-index: 1;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brass);
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 1.04rem;
  font-weight: 500;
  letter-spacing: .035em;
}

.brand-copy small {
  margin-top: .34rem;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .23em;
  text-transform: uppercase;
  opacity: .72;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.45rem;
}

.site-nav a:not(.button) {
  position: relative;
  padding-block: .35rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px auto;
  content: "";
  background: currentColor;
  transition: transform .2s, opacity .2s;
}

.nav-open .nav-toggle span {
  opacity: 0;
}

.nav-open .nav-toggle::before {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle::after {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: .8rem 1.15rem;
  gap: .7rem;
  color: var(--white);
  background: var(--pine);
  border: 1px solid var(--pine);
  border-radius: var(--radius-sm);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .09em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .22s, background .22s, border-color .22s, transform .22s;
}

.button:hover {
  color: var(--ink);
  background: var(--brass);
  border-color: var(--brass);
  transform: translateY(-2px);
}

.button--light {
  color: var(--ink);
  background: var(--bone);
  border-color: var(--bone);
}

.button--ghost {
  color: inherit;
  background: transparent;
  border-color: currentColor;
}

.button--ghost:hover {
  color: var(--ink);
  background: var(--bone);
  border-color: var(--bone);
}

.button--small {
  min-height: 42px;
  padding: .65rem .9rem;
  font-size: .7rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: var(--pine);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link::after {
  content: "→";
  transition: transform .2s;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.centered-link {
  margin-top: 2rem;
  text-align: center;
}

.eyebrow--center {
  justify-content: center;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(900px, 100svh);
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
  place-items: end stretch;
  overflow: hidden;
}

.hero__image,
.page-hero__image,
.image-panel__image {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__image {
  object-position: 58% center;
}

.hero::before {
  position: absolute;
  z-index: -1;
  content: "";
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 11, 8, .84) 0%, rgba(5, 11, 8, .54) 37%, rgba(5, 11, 8, .08) 72%),
    linear-gradient(0deg, rgba(5, 11, 8, .62) 0%, transparent 40%);
}

.hero__content {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  padding: 12rem 0 7.5rem;
}

.hero__copy {
  max-width: 720px;
}

.eyebrow {
  display: flex;
  align-items: center;
  margin: 0 0 1.25rem;
  gap: .7rem;
  color: var(--ember);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .19em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow,
.dark-section .eyebrow,
.image-panel .eyebrow {
  color: var(--brass);
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  content: "";
  background: currentColor;
}

.hero h1,
.page-hero h1,
.display-title {
  max-width: 940px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.3rem, 7.7vw, 7.4rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .92;
}

.hero__lede {
  max-width: 650px;
  margin: 1.8rem 0 0;
  color: rgba(255, 253, 248, .86);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.62;
}

.hero__actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2rem;
  gap: .75rem;
}

.hero__support {
  max-width: 520px;
  margin: 1.5rem 0 0;
  color: rgba(255, 253, 248, .62);
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
}

.hero__index {
  position: absolute;
  right: max(1rem, calc((100vw - var(--max)) / 2));
  bottom: 2.3rem;
  display: flex;
  align-items: center;
  gap: .9rem;
  color: rgba(255, 255, 255, .7);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero__index::before {
  width: 54px;
  height: 1px;
  content: "";
  background: currentColor;
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 620px;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
  place-items: end stretch;
  overflow: hidden;
}

.page-hero::before {
  position: absolute;
  z-index: -1;
  content: "";
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 11, 8, .88), rgba(5, 11, 8, .55) 52%, rgba(5, 11, 8, .18));
}

.page-hero__image {
  opacity: .72;
}

.page-hero__image--right {
  object-position: 62% center;
}

.page-hero__content {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  padding: 11rem 0 5.5rem;
}

.page-hero h1 {
  max-width: 850px;
  font-size: clamp(3rem, 6vw, 6rem);
}

.page-hero p:last-child {
  max-width: 680px;
  margin: 1.5rem 0 0;
  color: rgba(255, 253, 248, .82);
  font-size: 1.16rem;
}

.section {
  padding: clamp(5rem, 9vw, 8.5rem) 0;
}

.section--tight {
  padding: 4rem 0;
}

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

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

.dark-section {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 10%, rgba(194, 164, 106, .1), transparent 34rem),
    var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.section-heading h2,
.content-title,
.split h2,
.cta-band h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1.03;
}

.section-heading__copy {
  max-width: 640px;
  padding-top: .6rem;
}

.section-heading__copy p:first-child {
  margin-top: 0;
}

.lede {
  font-size: 1.16rem;
  line-height: 1.72;
}

.large-quote {
  width: min(100% - 2rem, 980px);
  margin: 0 auto;
  padding-block: 1rem;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.6vw, 5.5rem);
  letter-spacing: -.05em;
  line-height: 1.03;
  text-align: center;
}

.large-quote em {
  color: var(--ember);
  font-style: normal;
}

.divider {
  width: min(100% - 2rem, var(--max));
  height: 1px;
  margin-inline: auto;
  background: rgba(16, 23, 19, .15);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(2.2rem, 6vw, 6rem);
  align-items: center;
}

.split--reverse .split__media {
  order: 2;
}

.split__media {
  position: relative;
}

.split__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split__media--wide img {
  aspect-ratio: 4 / 3;
}

.image-caption {
  margin: .8rem 0 0;
  color: var(--moss);
  font-size: .74rem;
  line-height: 1.5;
}

.split__copy p {
  max-width: 600px;
}

.split__copy .button,
.split__copy .text-link {
  margin-top: 1rem;
}

.number-grid {
  display: grid;
  margin-top: 4rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(16, 23, 19, .18);
  border-bottom: 1px solid rgba(16, 23, 19, .18);
}

.number-card {
  position: relative;
  min-height: 280px;
  padding: 2.2rem 1.6rem 2rem;
  border-right: 1px solid rgba(16, 23, 19, .18);
}

.number-card:last-child {
  border-right: 0;
}

.number-card__number {
  display: block;
  color: var(--ember);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.number-card h3,
.pillar h3,
.principle h3,
.timeline-step h3 {
  margin: 2.2rem 0 .8rem;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1.15;
}

.number-card p,
.pillar p,
.principle p,
.timeline-step p {
  margin: 0;
  color: #47534c;
  font-size: .93rem;
}

.dark-section .number-card,
.dark-section .number-grid {
  border-color: rgba(255, 255, 255, .16);
}

.dark-section .number-card p {
  color: rgba(255, 255, 255, .66);
}

.pillar-grid {
  display: grid;
  margin-top: 3.5rem;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: rgba(16, 23, 19, .15);
  border: 1px solid rgba(16, 23, 19, .15);
}

.pillar {
  min-height: 245px;
  padding: 1.8rem;
  color: var(--ink);
  background: var(--bone);
}

.dark-section .pillar p {
  color: #47534c;
}

.pillar__icon {
  display: grid;
  width: 38px;
  height: 38px;
  color: var(--pine);
  border: 1px solid var(--moss);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: .85rem;
  place-items: center;
}

.pillar h3 {
  margin-top: 1.7rem;
}

.image-panel {
  position: relative;
  display: grid;
  min-height: 720px;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
  place-items: end stretch;
  overflow: hidden;
}

.image-panel::before {
  position: absolute;
  z-index: -1;
  content: "";
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 11, 8, .9), rgba(5, 11, 8, .5) 50%, rgba(5, 11, 8, .12));
}

.image-panel__content {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  padding: 6rem 0;
}

.image-panel__copy {
  max-width: 610px;
}

.image-panel h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .98;
}

.image-panel p {
  color: rgba(255, 255, 255, .78);
  font-size: 1.08rem;
}

.timeline {
  position: relative;
  display: grid;
  margin-top: 4rem;
  gap: 2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.timeline::before {
  position: absolute;
  top: 19px;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: rgba(16, 23, 19, .18);
}

.timeline-step {
  position: relative;
  padding-top: 3.6rem;
}

.timeline-step::before {
  position: absolute;
  z-index: 1;
  top: 12px;
  left: 0;
  width: 15px;
  height: 15px;
  content: "";
  background: var(--bone);
  border: 3px solid var(--ember);
  border-radius: 50%;
}

.timeline-step h3 {
  margin: 0 0 .65rem;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, .55fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: start;
}

.prose {
  max-width: 760px;
}

.prose > *:first-child {
  margin-top: 0;
}

.prose h2 {
  margin: 3.4rem 0 1.1rem;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1.08;
}

.prose h3 {
  margin: 2.25rem 0 .65rem;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
}

.prose p,
.prose li {
  color: #354039;
  font-size: 1.02rem;
}

.prose blockquote {
  margin: 2.5rem 0;
  padding-left: 1.5rem;
  color: var(--pine);
  border-left: 3px solid var(--ember);
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.4;
}

.aside-card {
  position: sticky;
  top: 110px;
  padding: 1.8rem;
  background: var(--paper);
  border-top: 3px solid var(--ember);
  border-radius: var(--radius-sm);
}

.aside-card h2,
.aside-card h3 {
  margin: 0 0 .8rem;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
}

.aside-card p,
.aside-card li {
  color: #435047;
  font-size: .9rem;
}

.aside-card .button {
  width: 100%;
  margin-top: 1rem;
}

.principles {
  display: grid;
  margin-top: 3rem;
  gap: 1.2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.principle {
  padding: 1.8rem;
  background: rgba(255, 255, 255, .5);
  border-left: 2px solid var(--ember);
}

.principle h3 {
  margin: 0 0 .6rem;
}

.fit-grid {
  display: grid;
  margin-top: 3rem;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fit-card {
  padding: 2rem;
  border: 1px solid rgba(16, 23, 19, .16);
  border-radius: var(--radius);
}

.fit-card h3 {
  margin: 0 0 1rem;
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 400;
}

.fit-card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.fit-card li + li {
  margin-top: .65rem;
}

.callout {
  margin: 2rem 0;
  padding: 1.3rem 1.4rem;
  background: #ded6c8;
  border-left: 3px solid var(--ember);
}

.callout p {
  margin: 0;
  color: var(--ink);
  font-size: .93rem;
}

.concept-label {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: .45rem .65rem;
  color: var(--white);
  background: rgba(16, 23, 19, .76);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.faq-list {
  max-width: 900px;
  margin: 3rem auto 0;
  border-top: 1px solid rgba(16, 23, 19, .18);
}

.faq-item {
  border-bottom: 1px solid rgba(16, 23, 19, .18);
}

.faq-item summary {
  position: relative;
  padding: 1.55rem 3rem 1.55rem 0;
  font-family: var(--serif);
  font-size: 1.35rem;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: .4rem;
  content: "+";
  color: var(--ember);
  font-family: var(--sans);
  font-size: 1.5rem;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item__answer {
  max-width: 760px;
  padding: 0 0 1.7rem;
  color: #3f4b43;
}

.cta-band {
  color: var(--white);
  background: var(--pine-deep);
}

.cta-band__inner {
  display: grid;
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
  grid-template-columns: minmax(0, 1.25fr) minmax(250px, .75fr);
  gap: 3rem;
  align-items: end;
}

.cta-band p {
  max-width: 680px;
  color: rgba(255, 255, 255, .72);
}

.cta-band__action {
  justify-self: end;
}

.site-footer {
  color: rgba(255, 255, 255, .78);
  background: #0a100d;
}

.site-footer__top {
  display: grid;
  padding: 5rem 0 3rem;
  grid-template-columns: minmax(260px, 1.3fr) repeat(2, minmax(150px, .5fr));
  gap: 3rem;
}

.site-footer .brand {
  color: var(--white);
}

.footer-intro p {
  max-width: 480px;
  color: rgba(255, 255, 255, .58);
}

.footer-nav h2 {
  margin: 0 0 1rem;
  color: var(--brass);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.footer-nav a {
  display: block;
  margin-block: .6rem;
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--white);
}

.site-footer__bottom {
  display: flex;
  padding: 1.4rem 0 2rem;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, .42);
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .75rem;
}

.site-footer__bottom p {
  margin: 0;
}

.form-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 330px);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.form-card {
  padding: clamp(1.3rem, 4vw, 3rem);
  background: var(--white);
  border: 1px solid rgba(16, 23, 19, .12);
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(8, 14, 11, .09);
}

.form-intro {
  margin-bottom: 2rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid rgba(16, 23, 19, .13);
}

.form-intro h2 {
  margin: 0 0 .7rem;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.form-progress {
  display: none;
  margin-bottom: 2rem;
}

.form.is-enhanced .form-progress {
  display: block;
}

.form-progress__meta {
  display: flex;
  margin-bottom: .55rem;
  justify-content: space-between;
  color: var(--moss);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.form-progress__track {
  height: 4px;
  background: var(--paper);
  border-radius: 999px;
  overflow: hidden;
}

.form-progress__bar {
  width: 16.666%;
  height: 100%;
  background: var(--ember);
  transition: width .28s var(--ease);
}

.error-summary {
  margin-bottom: 1.5rem;
  padding: 1rem 1.1rem;
  color: #68291f;
  background: #f7dfd8;
  border-left: 4px solid var(--danger);
}

.error-summary:focus {
  outline-offset: 2px;
}

.form-step {
  margin: 0;
  padding: 0;
  border: 0;
}

.form.is-enhanced .form-step[hidden] {
  display: none;
}

.form-step legend {
  width: 100%;
  margin-bottom: 1.4rem;
  padding: 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.15;
}

.form-step > p {
  margin: -.55rem 0 1.5rem;
  color: #4c584f;
}

.form-step > div:not([data-step-controls]),
.form-step > section,
.form-step > fieldset {
  margin-bottom: 1.35rem;
}

.form-step > fieldset {
  display: grid;
  padding: 1rem;
  gap: .65rem;
  background: #fbf8f1;
  border: 1px solid #d1ccc1;
  border-radius: var(--radius-sm);
}

.form-step > fieldset > legend {
  width: auto;
  margin: 0;
  padding: 0 .25rem;
  font-family: var(--sans);
  font-size: .84rem;
  font-weight: 760;
  line-height: 1.45;
}

.form-step > fieldset > p {
  margin: 0 0 .25rem;
  color: var(--moss);
  font-size: .78rem;
}

.form-step > label,
.form-step > fieldset > label {
  display: flex;
  align-items: flex-start;
  padding: .68rem .75rem;
  gap: .65rem;
  background: #fffefa;
  border: 1px solid #d1ccc1;
  border-radius: var(--radius-sm);
  font-size: .86rem;
  line-height: 1.45;
  cursor: pointer;
}

.form-step > label {
  margin-bottom: .75rem;
}

.form-step > label input,
.form-step > fieldset > label input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin: .12rem 0 0;
  accent-color: var(--pine);
}

.form-step > div > label:not(:has(input[type="checkbox"], input[type="radio"])) {
  display: block;
  margin-bottom: .45rem;
  font-size: .83rem;
  font-weight: 760;
}

.form-step input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
.form-step select,
.form-step textarea {
  width: 100%;
  min-height: 50px;
  padding: .78rem .85rem;
  color: var(--ink);
  background: #fffefa;
  border: 1px solid #a9afa8;
  border-radius: var(--radius-sm);
}

.form-step textarea {
  min-height: 130px;
  resize: vertical;
}

.form-step input:focus,
.form-step select:focus,
.form-step textarea:focus {
  border-color: var(--pine);
  box-shadow: 0 0 0 3px rgba(31, 58, 46, .14);
  outline: 0;
}

.form-step [aria-invalid="true"] {
  border-color: var(--danger) !important;
}

.form-step [data-step-controls] {
  display: flex;
  margin-top: 2rem;
  justify-content: space-between;
  gap: .75rem;
}

.form-step [data-step-controls] button,
.form-step noscript button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: .8rem 1.15rem;
  color: var(--white);
  background: var(--pine);
  border: 1px solid var(--pine);
  border-radius: var(--radius-sm);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}

.form-step [data-previous-step] {
  color: var(--ink) !important;
  background: transparent !important;
  border-color: #949c95 !important;
}

.form-step button:disabled {
  cursor: wait;
  opacity: .6;
}

.form-progress progress {
  width: 100%;
  height: 6px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  accent-color: var(--ember);
}

.form-progress progress::-webkit-progress-bar {
  background: var(--paper);
}

.form-progress progress::-webkit-progress-value {
  background: var(--ember);
}

.form-progress progress::-moz-progress-bar {
  background: var(--ember);
}

#application-progress-text {
  margin: 0 0 .55rem;
  color: var(--moss);
  font-size: .73rem;
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
}

[data-application-review] section {
  margin-bottom: 1.5rem;
}

[data-application-review] h3 {
  margin: 0 0 .6rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

[data-application-review] dl {
  margin: 0;
  border-top: 1px solid rgba(16, 23, 19, .13);
}

[data-application-review] dl > * {
  display: inline-block;
  width: 50%;
  margin: 0;
  padding: .6rem 0;
  vertical-align: top;
  border-bottom: 1px solid rgba(16, 23, 19, .13);
  overflow-wrap: anywhere;
}

[data-application-review] dt {
  padding-right: .8rem;
  font-weight: 760;
}

[data-application-review] dd {
  color: #4a564d;
}

.step-intro {
  margin: -.6rem 0 1.5rem;
  color: #4c584f;
}

.field-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
  margin-bottom: 1.15rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field label,
.field-label {
  display: block;
  margin-bottom: .45rem;
  color: var(--ink);
  font-size: .83rem;
  font-weight: 760;
}

.field .optional {
  color: var(--moss);
  font-weight: 500;
}

.field input:not([type="checkbox"]):not([type="radio"]),
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: .78rem .85rem;
  color: var(--ink);
  background: #fffefa;
  border: 1px solid #a9afa8;
  border-radius: var(--radius-sm);
  transition: border-color .2s, box-shadow .2s;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--pine);
  box-shadow: 0 0 0 3px rgba(31, 58, 46, .14);
  outline: 0;
}

.field [aria-invalid="true"] {
  border-color: var(--danger) !important;
}

.field-help,
.field-error {
  display: block;
  margin-top: .38rem;
  color: var(--moss);
  font-size: .75rem;
  line-height: 1.45;
}

.field-error {
  color: var(--danger);
  font-weight: 650;
}

.choice-grid {
  display: grid;
  gap: .65rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.choice {
  position: relative;
  display: flex;
  min-height: 48px;
  align-items: flex-start;
  padding: .75rem .8rem;
  gap: .65rem;
  background: #fbf8f1;
  border: 1px solid #c7c4ba;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.choice:hover {
  border-color: var(--sage);
}

.choice input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin: .1rem 0 0;
  accent-color: var(--pine);
}

.choice span {
  font-size: .85rem;
  line-height: 1.35;
}

.choice--wide {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  margin-top: 2rem;
  justify-content: space-between;
  gap: .75rem;
}

.form:not(.is-enhanced) .step-controls {
  display: none;
}

.review-list {
  display: grid;
  margin: 0 0 2rem;
  gap: 0;
  border-top: 1px solid rgba(16, 23, 19, .13);
}

.review-list div {
  display: grid;
  padding: .85rem 0;
  grid-template-columns: minmax(130px, .35fr) minmax(0, .65fr);
  gap: 1rem;
  border-bottom: 1px solid rgba(16, 23, 19, .13);
}

.review-list dt {
  font-weight: 750;
}

.review-list dd {
  margin: 0;
  color: #465148;
  overflow-wrap: anywhere;
}

.form-note {
  padding: 1rem;
  background: var(--paper);
  border-radius: var(--radius-sm);
  color: #435047;
  font-size: .83rem;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.contact-form {
  max-width: 760px;
}

.status-page {
  display: grid;
  min-height: 100svh;
  color: var(--white);
  background:
    linear-gradient(rgba(8, 14, 11, .74), rgba(8, 14, 11, .84)),
    url("/assets/images/hero.webp") center / cover;
  place-items: center;
}

.status-card {
  width: min(calc(100% - 2rem), 680px);
  padding: clamp(2rem, 6vw, 4rem);
  background: rgba(16, 23, 19, .88);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  backdrop-filter: blur(12px);
}

.status-card .brand {
  margin-bottom: 2.5rem;
  color: var(--white);
}

.status-card h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 7vw, 5rem);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: 1;
}

.status-card p {
  color: rgba(255, 255, 255, .72);
}

.status-card .cta-actions {
  justify-content: center;
}

.legal-meta {
  margin-bottom: 2rem;
  color: var(--moss);
  font-size: .8rem;
}

.notice-banner {
  padding: .75rem 1rem;
  color: #302b20;
  background: #e0d1ae;
  font-size: .78rem;
  text-align: center;
}

.notice-banner a {
  font-weight: 700;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

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

@media (max-width: 1050px) {
  .site-nav {
    gap: 1rem;
  }

  .site-nav a:not(.button) {
    font-size: .7rem;
  }

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

  .number-card:nth-child(2) {
    border-right: 0;
  }

  .number-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(16, 23, 19, .18);
  }
}

@media (max-width: 860px) {
  .site-header__inner {
    min-height: 72px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 40;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    width: min(88vw, 420px);
    padding: 7rem 2rem 2rem;
    flex-direction: column;
    align-items: stretch;
    gap: .35rem;
    color: var(--white);
    background: var(--ink);
    box-shadow: -24px 0 70px rgba(0, 0, 0, .35);
    transform: translateX(105%);
    transition: transform .3s var(--ease);
  }

  .nav-open .site-nav {
    transform: translateX(0);
  }

  .site-nav a:not(.button) {
    padding: .8rem 0;
    font-family: var(--serif);
    font-size: 1.55rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
  }

  .site-nav .button {
    margin-top: 1rem;
  }

  .section-heading,
  .split,
  .content-grid,
  .cta-band__inner,
  .form-shell {
    grid-template-columns: 1fr;
  }

  .split--reverse .split__media {
    order: 0;
  }

  .section-heading__copy {
    padding-top: 0;
  }

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

  .timeline::before {
    top: 0;
    bottom: 0;
    left: 7px;
    width: 1px;
    height: auto;
  }

  .timeline-step {
    padding: 0 0 1.5rem 2.2rem;
  }

  .timeline-step::before {
    top: .3rem;
  }

  .cta-band__action {
    justify-self: start;
  }

  .aside-card {
    position: static;
  }

  .site-footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-intro {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .container,
  .container--narrow,
  .hero__content,
  .page-hero__content,
  .image-panel__content {
    width: min(100% - 1.35rem, var(--max));
  }

  .brand-copy small {
    display: none;
  }

  .brand-mark {
    width: 37px;
    height: 37px;
  }

  .hero {
    min-height: 790px;
  }

  .hero__content {
    padding: 9rem 0 5rem;
  }

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

  .hero::before {
    background:
      linear-gradient(90deg, rgba(5, 11, 8, .8), rgba(5, 11, 8, .25)),
      linear-gradient(0deg, rgba(5, 11, 8, .84), rgba(5, 11, 8, .04) 65%);
  }

  .hero__actions .button,
  .cta-actions .button {
    width: 100%;
  }

  .hero__index {
    display: none;
  }

  .page-hero {
    min-height: 560px;
  }

  .page-hero__content {
    padding: 8.5rem 0 4rem;
  }

  .section {
    padding: 4.5rem 0;
  }

  .number-grid,
  .pillar-grid,
  .principles,
  .fit-grid,
  .field-grid,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .number-card {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(16, 23, 19, .18);
  }

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

  .pillar {
    min-height: 0;
  }

  .image-panel {
    min-height: 650px;
  }

  .image-panel::before {
    background: linear-gradient(0deg, rgba(5, 11, 8, .9), rgba(5, 11, 8, .22) 80%);
  }

  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .footer-intro {
    grid-column: auto;
  }

  .site-footer__bottom {
    flex-direction: column;
  }

  .form-card {
    padding: 1.2rem;
  }

  .form-actions {
    flex-direction: column-reverse;
  }

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

  .review-list div {
    grid-template-columns: 1fr;
    gap: .2rem;
  }

  .form-step [data-step-controls] {
    flex-direction: column-reverse;
  }

  .form-step [data-step-controls] button {
    width: 100%;
  }

  [data-application-review] dl > * {
    display: block;
    width: 100%;
  }

  [data-application-review] dt {
    padding-bottom: .1rem;
    border-bottom: 0;
  }

  [data-application-review] dd {
    padding-top: .1rem;
  }
}

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

@media print {
  .site-header,
  .site-footer,
  .cta-band,
  .form-actions,
  .notice-banner {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .page-hero {
    min-height: 0;
    color: #000;
    background: #fff;
  }

  .page-hero__image {
    display: none;
  }
}
