:root {
  --paper: #f4efe5;
  --paper-deep: #e7ded0;
  --white: #fffdf8;
  --ink: #172129;
  --ink-soft: #47535a;
  --canal: #0f5d73;
  --canal-dark: #083f4f;
  --tomato: #d44832;
  --mustard: #e2b83b;
  --line: #cfc3b2;
  --line-dark: #819098;
  --success: #256c51;
  --font-ui: "Manrope", Arial, sans-serif;
  --font-display: "Newsreader", Georgia, serif;
  --shell: 1180px;
  --content: 740px;
  --radius: 5px;
  --shadow-hard: 8px 8px 0 rgba(23, 33, 41, 0.12);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

a {
  color: var(--canal);
  text-underline-offset: 0.2em;
  text-decoration-thickness: 1px;
}

a:hover {
  color: var(--tomato);
}

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

h1,
h2,
h3,
h4 {
  margin: 0 0 0.6em;
  font-family: var(--font-display);
  font-weight: 650;
  line-height: 1.03;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  font-size: 72px;
}

h2 {
  font-size: 52px;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 23px;
}

p {
  margin: 0 0 1.25em;
}

ul,
ol {
  padding-left: 1.25em;
}

::selection {
  background: var(--mustard);
  color: var(--ink);
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.content-shell {
  width: min(calc(100% - 48px), var(--content));
  margin-inline: auto;
}

.screen-reader-text,
.skip-link:not(:focus) {
  position: absolute !important;
  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;
  z-index: 99999;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  background: var(--ink);
  color: var(--white);
}

.eyebrow,
.footer-label,
.section-index,
.article-kicker {
  margin: 0 0 16px;
  color: inherit;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before,
.section-index::before {
  display: inline-block;
  width: 24px;
  height: 2px;
  margin: 0 10px 3px 0;
  background: currentColor;
  content: "";
}

.cw-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.utility-bar {
  min-height: 34px;
  background: var(--ink);
  color: var(--paper);
  font-size: 11px;
  font-weight: 650;
  text-transform: uppercase;
}

.utility-bar__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid var(--ink);
  background: rgba(244, 239, 229, 0.96);
  backdrop-filter: blur(12px);
}

.admin-bar .site-header {
  top: 32px;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand:hover {
  color: var(--ink);
}

.brand__mark {
  display: grid;
  width: 43px;
  height: 43px;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--tomato);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.brand__mark span {
  display: grid;
  place-items: center;
}

.brand__mark span + span {
  border-left: 1px solid var(--ink);
  background: var(--canal);
}

.brand__name {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.site-nav {
  justify-self: end;
}

.site-nav .menu {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 26px;
  list-style: none;
}

.site-nav a {
  position: relative;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--tomato);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav .current-menu-item > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.15;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-cta {
  padding: 0 18px;
  background: var(--mustard);
  color: var(--ink);
}

.header-cta:hover,
.button:hover {
  color: inherit;
  box-shadow: 4px 4px 0 var(--ink);
  transform: translate(-2px, -2px);
}

.button {
  padding: 14px 20px;
}

.button--ink {
  background: var(--ink);
  color: var(--white);
}

.button--ink:hover {
  color: var(--white);
}

.button--tomato {
  background: var(--tomato);
  color: var(--white);
}

.button--tomato:hover {
  color: var(--white);
}

.button--quiet {
  background: transparent;
  color: var(--ink);
}

.text-button {
  min-height: 44px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle__icon {
  display: grid;
  width: 25px;
  gap: 7px;
}

.menu-toggle__icon span {
  display: block;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-open .menu-toggle__icon span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.menu-open .menu-toggle__icon span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 620px;
  height: calc(100svh - 170px);
  max-height: 780px;
  overflow: hidden;
  border-bottom: 1px solid var(--ink);
  background: #e8ddcd;
}

.hero__media,
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media img {
  object-fit: cover;
  object-position: center;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  align-items: center;
}

.hero__copy {
  width: 56%;
  max-width: 690px;
  padding: 50px 0 56px;
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 24px;
  font-size: 82px;
}

.hero__lede {
  max-width: 590px;
  margin-bottom: 30px;
  color: #25333b;
  font-size: 20px;
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__facts {
  display: flex;
  margin: 34px 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
}

.hero__facts li {
  padding: 7px 16px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero__facts li + li {
  border-left: 1px solid var(--ink);
}

.section {
  padding: 112px 0;
}

.section--tight {
  padding: 78px 0;
}

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

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

.section--mustard {
  background: var(--mustard);
  color: var(--ink);
}

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

.section-heading {
  display: grid;
  margin-bottom: 54px;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  align-items: end;
  gap: 70px;
}

.section-heading h2 {
  margin: 0;
}

.section-heading p:last-child {
  max-width: 610px;
  margin-bottom: 4px;
  font-size: 18px;
}

.readiness-wrap {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  align-items: start;
  gap: 54px;
}

.readiness-aside {
  position: sticky;
  top: 132px;
}

.readiness-aside h2 {
  font-size: 56px;
}

.aside-list {
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  list-style: none;
}

.aside-list li {
  display: flex;
  padding: 15px 0;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  font-size: 14px;
}

.readiness-tool {
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-hard);
}

.tool-head {
  padding: 38px 42px 26px;
  border-bottom: 1px solid var(--ink);
}

.tool-head h2 {
  font-size: 43px;
}

.tool-head p:last-child {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.tool-progress {
  height: 7px;
  background: var(--paper-deep);
}

.tool-progress span {
  display: block;
  width: 14.28%;
  height: 100%;
  background: var(--tomato);
  transition: width 240ms ease;
}

.tool-progress-label {
  margin: 22px 42px 0;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.tool-form {
  padding: 24px 42px 38px;
}

.tool-step {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.tool-step legend {
  width: 100%;
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 650;
  line-height: 1.12;
}

.field-help {
  margin: -12px 0 20px;
  color: var(--ink-soft);
}

.option-grid,
.option-stack,
.check-grid {
  display: grid;
  gap: 10px;
}

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

.option-grid label,
.option-stack label,
.check-grid label {
  position: relative;
  display: flex;
  min-height: 58px;
  align-items: stretch;
  cursor: pointer;
}

.option-grid input,
.option-stack input,
.check-grid input {
  position: absolute;
  opacity: 0;
}

.option-grid span,
.option-stack span,
.check-grid span {
  display: flex;
  width: 100%;
  min-height: 58px;
  padding: 14px 16px 14px 48px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--paper);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.35;
  transition: border-color 160ms ease, background 160ms ease;
}

.option-grid span::before,
.option-stack span::before,
.check-grid span::before {
  position: absolute;
  top: 50%;
  left: 17px;
  width: 18px;
  height: 18px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.check-grid span::before {
  border-radius: 2px;
}

.option-grid input:checked + span,
.option-stack input:checked + span,
.check-grid input:checked + span {
  border-color: var(--ink);
  background: var(--mustard);
}

.option-grid input:checked + span::before,
.option-stack input:checked + span::before,
.check-grid input:checked + span::before {
  border: 5px solid var(--ink);
  background: var(--white);
}

.check-grid input:checked + span::before {
  border-width: 4px;
  background: var(--tomato);
}

.option-grid input:focus-visible + span,
.option-stack input:focus-visible + span,
.check-grid input:focus-visible + span {
  outline: 3px solid var(--mustard);
  outline-offset: 2px;
}

.tool-error {
  min-height: 25px;
  margin: 16px 0 0;
  color: #a12618;
  font-size: 13px;
  font-weight: 700;
}

.tool-actions {
  display: flex;
  margin-top: 18px;
  justify-content: space-between;
  gap: 12px;
}

.tool-actions [data-next],
.tool-actions [data-finish] {
  margin-left: auto;
}

.tool-result {
  padding: 42px;
}

.tool-result h3 {
  font-size: 48px;
}

.result-meter {
  height: 12px;
  margin: 26px 0 30px;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--paper);
}

.result-meter span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--tomato);
  transition: width 500ms ease;
}

.result-list {
  display: grid;
  margin: 0 0 28px;
  padding: 0;
  gap: 9px;
  list-style: none;
}

.result-list li {
  position: relative;
  padding: 12px 14px 12px 42px;
  border-top: 1px solid var(--line);
}

.result-list li::before {
  position: absolute;
  top: 12px;
  left: 8px;
  color: var(--tomato);
  font-weight: 900;
  content: "→";
}

.risk-note,
.notice {
  display: flex;
  padding: 18px;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid var(--ink);
  border-left: 6px solid var(--tomato);
  border-radius: 2px;
  background: var(--paper);
  font-size: 14px;
}

.result-links {
  display: flex;
  margin-top: 28px;
  align-items: center;
  gap: 22px;
}

.timeline-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.7fr);
  align-items: stretch;
  gap: 70px;
}

.timeline-rail {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.timeline-rail li {
  display: grid;
  padding: 22px 0;
  grid-template-columns: 70px 1fr auto;
  align-items: start;
  gap: 18px;
  border-bottom: 1px solid var(--ink);
}

.timeline-rail strong {
  color: var(--tomato);
  font-size: 12px;
  text-transform: uppercase;
}

.timeline-rail h3 {
  margin: 0 0 5px;
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 780;
  line-height: 1.25;
}

.timeline-rail p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.timeline-rail .cw-icon {
  margin-top: 2px;
}

.editorial-image {
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper-deep);
}

.editorial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.type-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255,255,255,0.65);
  border-bottom: 1px solid rgba(255,255,255,0.65);
}

.type-item {
  min-height: 320px;
  padding: 32px 26px;
}

.type-item + .type-item {
  border-left: 1px solid rgba(255,255,255,0.65);
}

.type-item__number {
  display: block;
  margin-bottom: 62px;
  font-family: var(--font-display);
  font-size: 58px;
  line-height: 1;
}

.type-item h3 {
  font-size: 29px;
}

.type-item p {
  margin: 0;
  font-size: 14px;
}

.matrix {
  width: 100%;
  border-collapse: collapse;
  border-top: 2px solid currentColor;
  font-size: 14px;
}

.matrix th,
.matrix td {
  padding: 18px 14px;
  border-bottom: 1px solid currentColor;
  text-align: left;
  vertical-align: top;
}

.matrix th {
  font-size: 11px;
  text-transform: uppercase;
}

.matrix td:first-child {
  width: 25%;
  font-weight: 780;
}

.matrix-check {
  color: var(--success);
  font-weight: 850;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 76px;
}

.split-feature__media {
  min-height: 520px;
}

.split-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cost-list {
  display: grid;
  margin: 32px 0 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.cost-list li {
  display: grid;
  padding: 14px 0;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 650;
}

.cost-list strong {
  color: var(--tomato);
}

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

.article-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border-top: 1px solid var(--ink);
}

.article-card__media {
  display: block;
  aspect-ratio: 4 / 3;
  margin-top: 12px;
  overflow: hidden;
  background: var(--paper-deep);
}

.article-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.article-card:hover .article-card__media img {
  transform: scale(1.025);
}

.article-card__body {
  display: flex;
  padding: 20px 0 6px;
  flex: 1;
  flex-direction: column;
}

.article-card__meta {
  display: flex;
  margin-bottom: 12px;
  justify-content: space-between;
  gap: 14px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.article-card h3 {
  margin-bottom: 12px;
  font-size: 29px;
}

.article-card h3 a {
  color: var(--ink);
  text-decoration: none;
}

.article-card p {
  margin-bottom: 20px;
  color: var(--ink-soft);
  font-size: 14px;
}

.article-card__link {
  display: inline-flex;
  margin-top: auto;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--ink);
}

.faq-list summary {
  position: relative;
  padding: 24px 56px 24px 0;
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 620;
  line-height: 1.18;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 23px;
  right: 8px;
  font-family: var(--font-ui);
  font-size: 24px;
  font-weight: 400;
  content: "+";
}

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

.faq-list details p {
  max-width: 760px;
  padding: 0 0 24px;
  color: var(--ink-soft);
}

.page-hero,
.archive-hero {
  padding: 90px 0 72px;
  border-bottom: 1px solid var(--ink);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(320px, 1.3fr);
  align-items: end;
  gap: 70px;
}

.page-hero h1,
.archive-hero h1 {
  margin: 0;
}

.page-hero__lede {
  max-width: 650px;
  margin: 0 0 8px;
  color: var(--ink-soft);
  font-size: 20px;
}

.breadcrumbs {
  display: flex;
  margin-bottom: 22px;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
}

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

.page-content,
.article-content {
  padding: 84px 0 110px;
}

.prose {
  font-size: 18px;
  line-height: 1.78;
}

.prose > * {
  max-width: var(--content);
  margin-right: auto;
  margin-left: auto;
}

.prose > .alignwide,
.prose > .wide-block,
.prose > .goal-calculator,
.prose > .readiness-tool {
  max-width: 1060px;
}

.prose h2 {
  margin-top: 2em;
  font-size: 45px;
}

.prose h3 {
  margin-top: 1.8em;
  font-size: 31px;
}

.prose p,
.prose ul,
.prose ol {
  margin-bottom: 1.35em;
}

.prose li + li {
  margin-top: 0.45em;
}

.prose blockquote {
  max-width: 900px;
  margin-top: 2.2em;
  margin-bottom: 2.2em;
  padding: 28px 34px;
  border: 0;
  border-left: 8px solid var(--tomato);
  background: var(--mustard);
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.25;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.prose th,
.prose td {
  padding: 14px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.prose th {
  background: var(--ink);
  color: var(--white);
}

.source-box {
  max-width: var(--content);
  margin: 54px auto 0;
  padding: 22px 24px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  color: var(--ink-soft);
  font-size: 13px;
}

.article-header {
  padding: 74px 0 0;
}

.article-header__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: end;
  gap: 68px;
}

.article-header h1 {
  font-size: 68px;
}

.article-deck {
  max-width: 680px;
  color: var(--ink-soft);
  font-size: 20px;
}

.article-meta {
  display: flex;
  margin: 28px 0 0;
  padding: 16px 0;
  flex-wrap: wrap;
  gap: 12px 26px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.article-header__media {
  min-height: 480px;
  overflow: hidden;
  border: 1px solid var(--ink);
}

.article-header__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-posts {
  padding: 82px 0;
  border-top: 1px solid var(--ink);
}

.goal-calculator {
  display: grid;
  margin-top: 48px;
  margin-bottom: 48px;
  grid-template-columns: minmax(0, 1fr) 360px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-hard);
}

.calculator-fields {
  display: grid;
  padding: 32px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.calculator-fields label,
.contact-form > label {
  display: grid;
  position: relative;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
}

.calculator-fields label span {
  position: absolute;
  right: 14px;
  bottom: 13px;
  color: var(--ink-soft);
}

.calculator-fields input,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 42px 11px 13px;
  border: 1px solid var(--line-dark);
  border-radius: 2px;
  background: var(--white);
  color: var(--ink);
}

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.calculator-output {
  display: flex;
  padding: 34px;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--ink);
  background: var(--mustard);
}

.calculator-output strong {
  display: block;
  margin: 6px 0 12px;
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
}

.calculator-output p {
  font-size: 14px;
}

.calculator-output small {
  color: #4e4529;
  font-size: 11px;
}

.contact-form {
  display: grid;
  max-width: 760px;
  gap: 20px;
}

.contact-form .consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-form .consent input {
  width: 20px;
  min-height: 20px;
  flex: 0 0 20px;
}

.contact-form .button {
  justify-self: start;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-notice {
  max-width: 760px;
  margin-bottom: 26px;
  padding: 16px 18px;
  border: 1px solid var(--ink);
}

.form-notice--success {
  background: #d8eadf;
}

.form-notice--error {
  background: #f2d4ce;
}

.pagination,
.nav-links {
  display: flex;
  margin-top: 52px;
  align-items: center;
  gap: 10px;
}

.page-numbers {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--ink);
  color: var(--ink);
  text-decoration: none;
}

.page-numbers.current {
  background: var(--ink);
  color: var(--white);
}

.site-footer {
  padding: 80px 0 24px;
  background: var(--ink);
  color: var(--paper);
}

.footer-grid {
  display: grid;
  padding-bottom: 62px;
  grid-template-columns: minmax(280px, 1.4fr) 0.8fr 0.8fr;
  gap: 70px;
}

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

.brand--footer:hover {
  color: var(--paper);
}

.footer-intro p {
  max-width: 490px;
  margin-top: 26px;
  color: #bfc7c9;
}

.footer-label {
  color: var(--mustard);
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 9px;
}

.footer-links a {
  color: var(--paper);
  font-size: 14px;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--mustard);
}

.footer-bottom {
  display: flex;
  padding-top: 22px;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #4b5559;
  color: #aeb8bb;
  font-size: 11px;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

@media (max-height: 800px) and (min-width: 861px) {
  .hero,
  .hero__inner {
    min-height: 620px;
    height: auto;
    max-height: none;
  }

  .hero__inner {
    align-items: flex-start;
  }

  .hero__copy {
    padding: 34px 0 40px;
  }

  .hero h1 {
    margin-bottom: 18px;
    font-size: 68px;
  }

  .hero__lede {
    margin-bottom: 22px;
    font-size: 18px;
  }

  .hero__facts {
    margin-top: 22px;
  }
}

@media (max-width: 1080px) {
  h1 { font-size: 62px; }
  h2 { font-size: 46px; }
  .hero h1 { font-size: 68px; }
  .site-header__inner { gap: 18px; }
  .site-nav .menu { gap: 15px; }
  .site-nav a { font-size: 12px; }
  .header-cta { padding-inline: 14px; }
  .type-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .type-item:nth-child(3) { border-left: 0; border-top: 1px solid rgba(255,255,255,.65); }
  .type-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,.65); }
  .article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .shell,
  .content-shell { width: min(calc(100% - 32px), var(--shell)); }
  .site-header { backdrop-filter: none; }
  .utility-bar__inner span:last-child { display: none; }
  .site-header__inner { grid-template-columns: auto 1fr auto; min-height: 76px; }
  .menu-toggle { display: grid; justify-self: end; }
  .header-cta { display: none; }
  .site-nav {
    position: fixed;
    top: 110px;
    right: 0;
    bottom: auto;
    left: 0;
    display: none;
    width: auto;
    height: calc(100vh - 110px);
    height: calc(100dvh - 110px);
    padding: 36px 24px;
    align-self: stretch;
    background: var(--paper);
    justify-self: stretch;
    overflow-y: auto;
    z-index: 1;
  }
  .admin-bar .site-nav {
    top: 142px;
    height: calc(100vh - 142px);
    height: calc(100dvh - 142px);
  }
  .menu-open .site-nav { display: block; }
  body.menu-open { overflow: hidden; }
  .site-nav .menu { display: grid; gap: 0; }
  .site-nav li { border-bottom: 1px solid var(--ink); }
  .site-nav a { display: block; padding: 17px 0; font-family: var(--font-display); font-size: 30px; font-weight: 620; }
  .hero { min-height: 560px; height: calc(100svh - 155px); max-height: 670px; }
  .hero__media img { object-position: 61% center; opacity: .68; }
  .hero__copy { width: 76%; padding: 46px 0; }
  .hero h1 { font-size: 60px; }
  .hero__lede { font-size: 18px; }
  .section { padding: 86px 0; }
  .section-heading,
  .readiness-wrap,
  .timeline-layout,
  .split-feature,
  .page-hero__grid,
  .article-header__grid,
  .goal-calculator { grid-template-columns: 1fr; }
  .section-heading { gap: 18px; }
  .readiness-wrap { gap: 34px; }
  .readiness-aside { position: static; }
  .readiness-aside h2 { font-size: 48px; }
  .timeline-layout { gap: 36px; }
  .editorial-image,
  .split-feature__media { min-height: 420px; }
  .split-feature { gap: 40px; }
  .article-header__media { min-height: 420px; }
  .calculator-output { border-top: 1px solid var(--ink); border-left: 0; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; gap: 34px; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  h1 { font-size: 47px; }
  h2 { font-size: 39px; }
  h3 { font-size: 27px; }
  .utility-bar { min-height: 30px; }
  .utility-bar__inner { min-height: 30px; }
  .site-header__inner { min-height: 70px; }
  .site-nav {
    top: 100px;
    height: calc(100vh - 100px);
    height: calc(100dvh - 100px);
  }
  .admin-bar .site-nav {
    top: 146px;
    height: calc(100vh - 146px);
    height: calc(100dvh - 146px);
  }
  .brand__mark { width: 39px; height: 39px; }
  .brand__name { font-size: 12px; }
  .hero { min-height: 520px; height: calc(100svh - 150px); max-height: 620px; }
  .hero__media img { object-position: 66% center; opacity: .48; }
  .hero__copy { width: 100%; padding: 42px 0; }
  .hero h1 { max-width: 510px; font-size: 52px; }
  .hero__lede { max-width: 480px; font-size: 16px; }
  .hero__facts li { padding: 6px 9px; font-size: 9px; }
  .section { padding: 68px 0; }
  .section--tight { padding: 54px 0; }
  .section-heading { margin-bottom: 36px; }
  .tool-head { padding: 28px 22px 22px; }
  .tool-head h2 { font-size: 35px; }
  .tool-progress-label { margin: 18px 22px 0; }
  .tool-form,
  .tool-result { padding: 20px 22px 28px; }
  .tool-step legend { font-size: 29px; }
  .option-grid,
  .check-grid { grid-template-columns: 1fr; }
  .tool-actions { flex-wrap: wrap; }
  .tool-actions .button { width: 100%; }
  .tool-actions [data-prev] { order: 2; }
  .tool-result h3 { font-size: 39px; }
  .result-links { align-items: flex-start; flex-direction: column; }
  .timeline-rail li { grid-template-columns: 52px 1fr; }
  .timeline-rail .cw-icon { display: none; }
  .editorial-image,
  .split-feature__media { min-height: 330px; }
  .type-grid { grid-template-columns: 1fr; }
  .type-item { min-height: 0; padding: 28px 0; }
  .type-item + .type-item,
  .type-item:nth-child(3),
  .type-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,.65); border-left: 0; }
  .type-item__number { margin-bottom: 30px; }
  .matrix-wrap,
  .prose .wp-block-table { overflow-x: auto; }
  .matrix { min-width: 680px; }
  .article-grid { grid-template-columns: 1fr; }
  .article-card h3 { font-size: 28px; }
  .page-hero,
  .archive-hero { padding: 60px 0 48px; }
  .page-hero__grid { gap: 18px; }
  .page-hero__lede { font-size: 17px; }
  .page-content,
  .article-content { padding: 58px 0 76px; }
  .prose { font-size: 17px; }
  .prose h2 { font-size: 37px; }
  .prose h3 { font-size: 27px; }
  .prose blockquote { padding: 24px; font-size: 25px; }
  .article-header { padding-top: 54px; }
  .article-header h1 { font-size: 48px; }
  .article-deck { font-size: 17px; }
  .article-header__grid { gap: 32px; }
  .article-header__media { min-height: 300px; }
  .calculator-fields { grid-template-columns: 1fr; padding: 22px; }
  .calculator-output { padding: 26px 22px; }
  .calculator-output strong { font-size: 48px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

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

@media print {
  .utility-bar,
  .site-header,
  .site-footer,
  .hero__actions,
  .tool-actions { display: none !important; }
  body { background: #fff; color: #000; }
  a { color: #000; }
}
