:root {
  --white: #dbdde8;
  --soft: #d7d9e4;
  --ink: #0b0b0b;
  --muted: #55575f;
  --line: rgba(11, 11, 11, 0.14);
  --sans: "Instrument Sans", Arial, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  letter-spacing: 0;
}

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 60;
  transform: translateY(-140%);
  border: 1px solid var(--ink);
  background: var(--white);
  padding: 10px 14px;
  transition: transform 160ms ease;
}

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

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

.site-header {
  position: sticky;
  inset: 0 0 auto;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 70px;
  border-bottom: 1px solid var(--line);
  background: rgba(219, 221, 232, 0.9);
  padding: 16px clamp(18px, 4vw, 52px);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  gap: 4px;
  width: fit-content;
}

.brand span {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}

.brand small {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-toggle {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ink);
  transition: transform 160ms ease, opacity 160ms ease;
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-toggle:focus-visible {
  outline: none;
}

.site-nav {
  position: absolute;
  top: calc(100% + 1px);
  right: clamp(18px, 4vw, 52px);
  display: grid;
  min-width: 240px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  font-size: 13px;
  z-index: 45;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  visibility: hidden;
  backdrop-filter: blur(18px);
}

.site-header.menu-open .site-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.site-nav a {
  border-bottom: 1px solid var(--line);
  padding: 16px 18px;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  background: rgba(11, 11, 11, 0.04);
  color: var(--ink);
  outline: none;
}

.site-nav a:last-child {
  border-bottom: 0;
}

.hero {
  display: grid;
  min-height: calc(100svh - 70px);
  grid-template-columns: minmax(0, 1fr) minmax(360px, 50vw);
}

.hero-copy {
  display: grid;
  align-content: center;
  gap: 24px;
  padding: clamp(74px, 9vw, 132px) clamp(24px, 8vw, 118px) clamp(60px, 8vw, 110px);
  transform: translateY(clamp(-48px, -4svh, -24px));
}

.eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin: 0;
}

.hero h1 {
  max-width: 610px;
  font-size: clamp(50px, 6.8vw, 96px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

.hero-copy p:not(.eyebrow) {
  max-width: 430px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  padding: 0 20px;
  font-size: 14px;
  font-weight: 600;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

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

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

.button.secondary {
  background: transparent;
}

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

.hero-media {
  position: relative;
  margin: 0;
  min-height: calc(100svh - 70px);
  background: var(--soft);
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: calc(100svh - 70px);
  object-fit: cover;
  object-position: center top;
}

.statement,
.contact-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.statement {
  display: grid;
  gap: 16px;
  padding: 90px 0 68px;
}

.statement h2 {
  max-width: 820px;
  font-size: clamp(34px, 5.5vw, 76px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.link-section {
  display: grid;
  width: 100%;
  margin: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.link-section a {
  display: grid;
  min-height: clamp(150px, 15vw, 188px);
  align-content: space-between;
  gap: 22px;
  border-right: 1px solid var(--line);
  padding: clamp(28px, 3.4vw, 44px) clamp(24px, 4.4vw, 64px);
  transition: background 160ms ease, color 160ms ease;
}

.link-section a:last-child {
  border-right: 0;
}

.link-section a:hover,
.link-section a:focus-visible {
  background: var(--ink);
  color: var(--white);
  outline: none;
}

.link-section span {
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.link-section small {
  max-width: 250px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.link-section a:hover small,
.link-section a:focus-visible small {
  color: rgba(255, 255, 255, 0.7);
}

.contact-section {
  display: grid;
  width: min(1020px, calc(100% - 48px));
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.54fr);
  align-items: center;
  gap: clamp(42px, 7vw, 92px);
  padding: clamp(58px, 7vw, 84px) 0 clamp(64px, 8vw, 96px);
}

.contact-lead {
  display: grid;
  align-content: start;
  gap: 16px;
}

.contact-kicker {
  width: fit-content;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
}

.contact-kicker:hover,
.contact-kicker:focus-visible {
  color: var(--ink);
  outline: none;
}

.contact-section h2 {
  max-width: 540px;
  font-size: clamp(34px, 4.3vw, 58px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.contact-links {
  display: grid;
  align-self: center;
  align-content: center;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  line-height: 1.35;
}

.contact-line {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 18px;
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  padding: 11px 14px;
}

.contact-line:last-child {
  border-bottom: 0;
}

.contact-line span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-line strong {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1.6;
  text-transform: uppercase;
}

.contact-line {
  transition: background 160ms ease, color 160ms ease;
}

a.contact-line:hover,
a.contact-line:focus-visible {
  background: var(--ink);
  color: var(--white);
  outline: none;
}

a.contact-line:hover span,
a.contact-line:focus-visible span,
a.contact-line:hover strong,
a.contact-line:focus-visible strong {
  color: var(--white);
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer-inner {
  display: flex;
  width: min(1180px, calc(100% - 48px));
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 18px 0 22px;
  text-align: center;
}

.site-footer span,
.site-footer a {
  color: rgba(85, 87, 95, 0.78);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.7;
  text-transform: uppercase;
}

.site-footer a {
  transition: color 160ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--ink);
  outline: none;
}

.learn-more-page {
  display: grid;
  min-height: calc(100svh - 250px);
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(42px, 7vw, 92px);
}

.learn-more-intro h1 {
  max-width: 680px;
  font-size: clamp(44px, 6vw, 82px);
}

.learn-more-intro p:not(.eyebrow) {
  max-width: 560px;
}

.learn-more-list {
  display: grid;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.learn-more-list a {
  display: grid;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  padding: 22px 18px;
  transition: background 160ms ease, color 160ms ease;
}

.learn-more-list a:last-child {
  border-bottom: 0;
}

.learn-more-list span {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.learn-more-list small {
  max-width: 360px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.learn-more-list a:hover,
.learn-more-list a:focus-visible {
  background: var(--ink);
  color: var(--white);
  outline: none;
}

.learn-more-list a:hover small,
.learn-more-list a:focus-visible small {
  color: rgba(255, 255, 255, 0.7);
}

.intent-page {
  display: grid;
  gap: clamp(42px, 6vw, 74px);
}

.intent-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.58fr);
  align-items: end;
  gap: clamp(36px, 7vw, 92px);
  border-bottom: 1px solid var(--line);
  padding-bottom: clamp(34px, 5vw, 58px);
}

.intent-intro h1 {
  max-width: 780px;
  font-size: clamp(46px, 6vw, 86px);
}

.intent-intro p:not(.eyebrow) {
  max-width: 600px;
}

.intent-brief {
  display: grid;
  gap: 24px;
  align-content: end;
}

.intent-brief p {
  max-width: 520px;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.58;
}

.intent-brief .button {
  width: fit-content;
}

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

.intent-points article {
  display: grid;
  min-height: clamp(240px, 22vw, 310px);
  align-content: space-between;
  gap: 28px;
  border-right: 1px solid var(--line);
  padding: clamp(26px, 3.4vw, 42px);
}

.intent-points article:last-child {
  border-right: 0;
}

.intent-points span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.intent-points h2 {
  max-width: 340px;
  margin-bottom: 18px;
  font-size: clamp(28px, 2.9vw, 42px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.intent-points p {
  max-width: 340px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.intent-close {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.45fr);
  align-items: center;
  gap: clamp(32px, 6vw, 74px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(34px, 5vw, 56px) 0;
}

.intent-close h2 {
  max-width: 620px;
  margin-top: 16px;
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.intent-close p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.intent-actions {
  display: grid;
  gap: 10px;
}

.blog-page {
  display: grid;
  gap: clamp(42px, 6vw, 74px);
}

.blog-intro h1 {
  max-width: 860px;
  font-size: clamp(46px, 6.4vw, 88px);
}

.blog-intro p:not(.eyebrow) {
  max-width: 620px;
}

.blog-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.blog-feature a {
  display: grid;
  grid-template-columns: minmax(260px, 0.52fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  border-bottom: 1px solid var(--line);
  padding: clamp(26px, 4vw, 44px) 0;
}

.blog-feature img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
}

.blog-feature div {
  display: grid;
  gap: 14px;
  padding-right: clamp(0px, 3vw, 36px);
}

.blog-feature span,
.blog-grid span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.blog-feature h2 {
  max-width: 760px;
  font-size: clamp(32px, 4.4vw, 62px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.blog-feature p {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.58;
}

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

.blog-grid a {
  display: grid;
  min-height: 220px;
  align-content: space-between;
  gap: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(24px, 3vw, 34px);
  transition: background 160ms ease, color 160ms ease;
}

.blog-grid a:nth-child(3n) {
  border-right: 0;
}

.blog-grid a:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.blog-grid a.is-extra {
  display: none;
}

.blog-grid.show-all a.is-extra {
  display: grid;
}

.blog-grid strong {
  display: block;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.blog-grid small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.blog-feature a:hover,
.blog-feature a:focus-visible,
.blog-grid a:hover,
.blog-grid a:focus-visible {
  background: var(--ink);
  color: var(--white);
  outline: none;
}

.blog-feature a:hover p,
.blog-feature a:focus-visible p,
.blog-feature a:hover span,
.blog-feature a:focus-visible span,
.blog-grid a:hover span,
.blog-grid a:focus-visible span,
.blog-grid a:hover small,
.blog-grid a:focus-visible small {
  color: rgba(255, 255, 255, 0.72);
}

.blog-more {
  width: 100%;
  min-height: 58px;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease;
}

.blog-more:hover,
.blog-more:focus-visible {
  background: var(--ink);
  color: var(--white);
  outline: none;
}

.privacy-page {
  display: grid;
  width: min(840px, 100%);
  gap: clamp(34px, 5vw, 54px);
  margin: 0 auto;
}

.privacy-copy {
  display: grid;
  gap: 30px;
  border-top: 1px solid var(--line);
  padding-top: clamp(30px, 5vw, 48px);
}

.privacy-copy section {
  display: grid;
  gap: 10px;
}

.privacy-copy h2 {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.privacy-copy p {
  color: var(--ink);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.65;
}

.privacy-copy a {
  border-bottom: 1px solid currentColor;
}

.post-page {
  display: grid;
  gap: 36px;
}

.post-back {
  width: fit-content;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
}

.post-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(42px, 7vw, 92px);
}

.post-copy {
  display: grid;
  gap: 22px;
}

.post-copy h1 {
  max-width: 820px;
  font-size: clamp(42px, 5.8vw, 82px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.post-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}

.post-copy .button {
  width: fit-content;
  margin-top: 10px;
}

.post-media {
  margin: 0;
}

.post-media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.post-body {
  width: min(840px, 100%);
  margin: 26px auto 0;
  border-top: 1px solid var(--line);
  padding-top: clamp(30px, 5vw, 54px);
}

.post-body:empty {
  display: none;
}

.post-body h2 {
  margin: clamp(36px, 5vw, 56px) 0 14px;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.post-body h2:first-child {
  margin-top: 0;
}

.post-body p,
.post-body li {
  color: var(--ink);
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.65;
}

.post-body p {
  margin: 0 0 22px;
}

.post-body ul {
  display: grid;
  gap: 14px;
  margin: 0 0 24px;
  padding-left: 22px;
}

.post-actions {
  width: min(840px, 100%);
  margin: 8px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 86px 0 90px;
}

.page-contained {
  width: min(1180px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

.calculator-page {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  align-items: end;
  gap: clamp(36px, 7vw, 96px);
}

.calculator-hub {
  display: grid;
  gap: clamp(38px, 6vw, 68px);
}

.calculator-hub-intro {
  max-width: 860px;
}

.calculator-hub-intro h1 {
  max-width: 820px;
  font-size: clamp(46px, 6.3vw, 86px);
}

.calculator-hub-intro p:not(.eyebrow) {
  max-width: 620px;
}

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

.calculator-options a {
  display: grid;
  min-height: clamp(230px, 22vw, 300px);
  align-content: space-between;
  gap: 22px;
  border-right: 1px solid var(--line);
  padding: clamp(24px, 3.5vw, 42px);
  transition: background 160ms ease, color 160ms ease;
}

.calculator-options a:last-child {
  border-right: 0;
}

.calculator-options span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.calculator-options strong {
  display: block;
  max-width: 280px;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.calculator-options small {
  max-width: 320px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.calculator-options a:hover,
.calculator-options a:focus-visible {
  background: var(--ink);
  color: var(--white);
  outline: none;
}

.calculator-options a:hover span,
.calculator-options a:focus-visible span,
.calculator-options a:hover small,
.calculator-options a:focus-visible small {
  color: rgba(255, 255, 255, 0.72);
}

.about-hero {
  display: grid;
  min-height: calc(100svh - 70px);
  grid-template-columns: minmax(360px, 50vw) minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
}

.about-hero .page-intro {
  align-content: center;
  padding: clamp(74px, 9vw, 132px) clamp(24px, 8vw, 118px) clamp(60px, 8vw, 110px);
}

.about-hero .page-intro h1 {
  max-width: 560px;
  font-size: clamp(44px, 5.2vw, 78px);
  line-height: 0.98;
}

.about-hero .page-intro p:not(.eyebrow) {
  max-width: 460px;
}

.page-intro {
  display: grid;
  gap: 20px;
}

.page-intro h1 {
  max-width: 640px;
  font-size: clamp(48px, 6.7vw, 92px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.94;
}

.page-intro p:not(.eyebrow) {
  max-width: 480px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.about-media {
  margin: 0;
  background: var(--soft);
  overflow: hidden;
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: calc(100svh - 70px);
  object-fit: cover;
  object-position: center top;
}

.about-copy {
  display: grid;
  width: min(1180px, calc(100% - 48px));
  max-width: 1180px;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(46px, 7vw, 96px);
  align-items: center;
  border-top: 1px solid var(--line);
  margin: 0 auto;
  padding: clamp(64px, 7vw, 96px) 0 clamp(58px, 6vw, 82px);
}

.about-copy-lead {
  display: grid;
  gap: 14px;
}

.about-copy-lead h2 {
  max-width: 430px;
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.about-copy-text {
  display: grid;
  gap: 20px;
}

.about-copy-text p {
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(17px, 1.35vw, 20px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.6;
}

.about-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 0;
}

.about-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 74px;
  padding: 24px 20px;
  border-right: 1px solid var(--line);
  font-weight: 600;
  text-align: center;
  transition: background 160ms ease, color 160ms ease;
}

.about-links a:hover,
.about-links a:focus-visible {
  background: var(--ink);
  color: var(--white);
  outline: none;
}

.about-links a:last-child {
  border-right: 0;
}

.contact-page {
  display: grid;
  min-height: calc(100svh - 250px);
  grid-template-columns: minmax(0, 820px);
  align-content: center;
  justify-content: center;
  text-align: center;
}

.contact-intro {
  justify-items: center;
}

.contact-intro h1 {
  max-width: 820px;
  font-size: clamp(46px, 6vw, 82px);
}

.contact-intro p:not(.eyebrow) {
  max-width: 620px;
}

.direct-contact {
  display: grid;
  width: min(100%, 680px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 18px;
}

.direct-contact a {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  text-align: center;
  padding: 0 20px;
  transition: color 160ms ease, background 160ms ease;
}

.direct-contact a:first-child {
  padding-left: 20px;
}

.direct-contact a:last-child {
  border-right: 0;
}

.direct-contact a:hover,
.direct-contact a:focus-visible {
  color: var(--ink);
}

.direct-contact a:focus-visible {
  outline: none;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.2);
  padding: clamp(20px, 4vw, 34px);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span,
.contact-form small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  padding: 13px;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(11, 11, 11, 0.08);
}

.message-field,
.contact-form button,
.contact-form small {
  grid-column: 1 / -1;
}

.calculator-page {
  align-items: start;
  grid-template-columns: 1fr;
  max-width: 880px;
  margin: 0 auto;
  gap: 34px;
}

.calculator-page .page-intro {
  justify-items: center;
  text-align: center;
}

.calculator-page .page-intro h1 {
  max-width: 760px;
}

.calculator-page .page-intro p:not(.eyebrow) {
  max-width: 620px;
}

.calculator-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.22);
  padding: clamp(20px, 4vw, 34px);
}

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

.calculator-card label {
  display: grid;
  gap: 8px;
}

.calculator-card label span {
  color: var(--muted);
  font-size: 13px;
}

.calculator-card label small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.calculator-card input,
.calculator-card select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  padding: 13px;
  outline: none;
}

.input-with-suffix {
  position: relative;
}

.input-with-suffix input {
  padding-right: 40px;
}

.input-with-suffix b {
  position: absolute;
  right: 14px;
  top: 50%;
  color: var(--muted);
  font-size: 14px;
  transform: translateY(-50%);
}

.calculator-card input:focus,
.calculator-card select:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(11, 11, 11, 0.08);
}

.calculator-result {
  display: grid;
  grid-column: 1 / -1;
  justify-items: center;
  gap: 7px;
  border-bottom: 1px solid var(--line);
  padding: 10px 0 24px;
  text-align: center;
}

.calculator-result span,
.calculator-result small {
  color: var(--muted);
}

.calculator-result strong {
  font-size: clamp(42px, 5.4vw, 74px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
}

.calculator-details {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
  padding-top: 2px;
}

.calculator-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  padding: 16px 0;
}

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

.calculator-details summary::after {
  color: var(--muted);
  content: "+";
  font-size: 20px;
  font-weight: 400;
}

.calculator-details[open] summary::after {
  content: "-";
}

.calculator-details[open] {
  padding-bottom: 8px;
}

.smart-panel {
  display: grid;
  grid-column: 1 / -1;
  gap: 12px;
  justify-items: center;
  border-bottom: 1px solid var(--line);
  padding: 2px 0 14px;
}

.smart-panel > summary {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  list-style: none;
  padding: 0 15px;
  transition: background 160ms ease, color 160ms ease;
}

.smart-panel > summary::-webkit-details-marker {
  display: none;
}

.smart-panel > summary::after {
  content: "+";
  margin-left: 9px;
}

.smart-panel[open] > summary {
  background: var(--ink);
  color: var(--white);
}

.smart-panel[open] > summary::after {
  content: "-";
}

.smart-response {
  display: grid;
  width: 100%;
  justify-items: center;
  padding: 8px 0 6px;
  text-align: center;
}

.smart-response.is-empty {
  display: none;
}

.smart-question span {
  color: var(--muted);
  font-size: 12px;
}

.smart-response p {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 500;
  line-height: 1.45;
  text-wrap: balance;
}

.smart-actions {
  display: grid;
  width: 100%;
  max-width: 680px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  justify-content: stretch;
  padding-top: 0;
}

.smart-actions button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.15;
  padding: 8px 11px;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.smart-actions button:hover,
.smart-actions button:focus-visible {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
  outline: none;
}

.smart-question {
  display: grid;
  width: min(100%, 960px);
  max-width: 960px;
  gap: 8px;
  justify-items: center;
}

.smart-input-row {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr) auto;
  border: 1px solid var(--ink);
}

.smart-input-row input {
  border: 0;
  min-height: 48px;
  padding: 10px 18px;
  text-align: center;
}

.smart-input-row button {
  min-width: 74px;
  border: 0;
  border-left: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
}

.smart-question small {
  max-width: 520px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  text-align: center;
}

.smart-actions button:disabled,
.smart-question input:disabled,
.smart-input-row button:disabled {
  cursor: progress;
  opacity: 0.55;
}

.scenario-drawer {
  width: min(100%, 960px);
  max-width: 960px;
  padding-top: 0;
  text-align: center;
}

.scenario-drawer summary {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid currentColor;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  list-style: none;
  padding: 0 0 2px;
}

.scenario-drawer summary::-webkit-details-marker {
  display: none;
}

.scenario-drawer summary::after {
  content: "+";
  margin-left: 8px;
}

.scenario-drawer[open] summary::after {
  content: "-";
}

.scenario-drawer .smart-actions {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 12px;
}

.payment-breakdown,
.cash-estimate {
  display: grid;
  grid-column: 1 / -1;
  gap: 0;
}

.payment-breakdown {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.payment-breakdown div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}

.payment-breakdown div:last-child {
  border-bottom: 0;
}

.payment-breakdown span,
.cash-estimate span,
.cash-estimate small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.payment-breakdown strong {
  font-size: 15px;
  font-weight: 600;
}

.cash-estimate {
  gap: 7px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
}

.cash-estimate strong {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.calculator-link {
  grid-column: 1 / -1;
  width: 100%;
}

@media (max-width: 860px) {
  .site-header {
    min-height: 68px;
    padding: 14px 16px;
  }

  .brand span {
    font-size: 18px;
  }

  .brand small {
    font-size: 9px;
  }

  .site-nav {
    right: 16px;
    left: 16px;
    min-width: 0;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: -1;
    min-height: min(58svh, 540px);
  }

  .hero-media img {
    min-height: min(58svh, 540px);
    object-position: center 8%;
  }

  .hero-copy {
    gap: 20px;
    padding: 44px 16px 52px;
    transform: none;
  }

  .hero h1 {
    max-width: 350px;
    font-size: clamp(44px, 13vw, 62px);
  }

  .hero-copy p:not(.eyebrow) {
    max-width: 350px;
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .statement,
  .contact-section {
    width: auto;
    margin-right: 16px;
    margin-left: 16px;
  }

  .statement {
    padding: 46px 0;
  }

  .statement h2,
  .contact-section h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .link-section {
    width: auto;
    grid-template-columns: 1fr;
    margin-right: 16px;
    margin-left: 16px;
  }

  .link-section a {
    min-height: 112px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 22px 0;
  }

  .link-section a:last-child {
    border-bottom: 0;
  }

  .contact-section {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 50px 0 70px;
  }

  .contact-links {
    margin-top: 2px;
  }

  .contact-line {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 12px 0;
  }

  .contact-line strong {
    font-size: 10px;
  }

  .site-footer-inner {
    width: auto;
    margin-right: 16px;
    margin-left: 16px;
    justify-content: flex-start;
    text-align: left;
  }

  .site-footer span,
  .site-footer a {
    font-size: 8px;
  }

  .direct-contact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .direct-contact a {
    border-right: 1px solid var(--line);
    border-bottom: 0;
    min-height: 54px;
    padding: 0;
  }

  .direct-contact a:last-child {
    border-right: 0;
  }

  .page-shell {
    width: auto;
    margin-right: 16px;
    margin-left: 16px;
    padding: 50px 0 70px;
  }

  .about-hero,
  .contact-page,
  .calculator-page,
  .learn-more-page,
  .post-layout,
  .blog-feature a {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .learn-more-page {
    min-height: auto;
  }

  .intent-page {
    gap: 34px;
  }

  .intent-hero,
  .intent-close {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .intent-hero {
    padding-bottom: 30px;
  }

  .intent-brief .button {
    width: 100%;
  }

  .intent-points {
    grid-template-columns: 1fr;
  }

  .intent-points article {
    min-height: 178px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 24px 0;
  }

  .intent-points article:last-child {
    border-bottom: 0;
  }

  .intent-close {
    padding: 30px 0;
  }

  .blog-page {
    gap: 34px;
  }

  .blog-feature a {
    padding: 24px 0;
  }

  .blog-feature img {
    aspect-ratio: 1.15;
  }

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

  .blog-grid a,
  .blog-grid a:nth-child(3n),
  .blog-grid a:nth-last-child(-n + 3) {
    min-height: 164px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 22px 0;
  }

  .blog-grid a:last-child {
    border-bottom: 0;
  }

  .calculator-options {
    grid-template-columns: 1fr;
  }

  .calculator-options a {
    min-height: 168px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 24px 0;
  }

  .calculator-options a:last-child {
    border-bottom: 0;
  }

  .post-copy .button {
    width: 100%;
  }

  .post-media img {
    aspect-ratio: 1.15;
  }

  .about-hero {
    min-height: auto;
    gap: 0;
  }

  .about-hero .page-intro h1,
  .contact-intro h1 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .page-intro h1 {
    font-size: clamp(42px, 13vw, 60px);
  }

  .about-media {
    order: -1;
  }

  .about-media img {
    height: min(58svh, 540px);
    min-height: 0;
    object-position: center 8%;
  }

  .about-hero .page-intro {
    padding: 44px 16px 52px;
  }

  .about-copy {
    width: auto;
    max-width: none;
    grid-template-columns: 1fr;
    gap: 26px;
    align-items: start;
    margin-right: 16px;
    margin-left: 16px;
    padding: 38px 0 46px;
  }

  .about-copy-lead h2 {
    max-width: 330px;
    font-size: clamp(30px, 9vw, 42px);
  }

  .about-links,
  .contact-form,
  .calculator-card {
    grid-template-columns: 1fr;
  }

  .calculator-fields {
    grid-template-columns: 1fr;
  }

  .smart-response p {
    max-width: 350px;
    font-size: 15px;
  }

  .smart-input-row {
    grid-template-columns: 1fr;
  }

  .smart-input-row input {
    min-height: 48px;
    padding: 12px 14px;
    text-align: left;
  }

  .smart-input-row button {
    min-height: 44px;
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .scenario-drawer .smart-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .smart-actions button {
    border-radius: 0;
    font-size: 12px;
    min-height: 40px;
  }

  .about-links a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-links a:last-child {
    border-bottom: 0;
  }
}
