:root {
  --paper: #fbfaf6;
  --ink: #1a1917;
  --body-copy: #3d3a34;
  --muted: #5a564e;
  --rust: #8a5a2b;
  --panel: #f2efe7;
  --dark-text: #f4f2ec;
  --dark-muted: #b8b2a7;
  --dark-accent: #d9a05b;
  --line-mid: #c4bfb4;
  --line-panel: #d6d0c4;
  --line-light: #e2ddd1;
  --footer-muted: #6d675e;
  --sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

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

html {
  background: var(--paper);
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  min-width: 0;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

main,
section,
div,
nav,
address,
ul,
ol,
li,
figure,
blockquote,
dl,
dt,
dd {
  min-width: 0;
}

h1,
h2,
h3,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
  text-underline-offset: 0.2em;
}

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

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

main:focus {
  outline: 3px solid var(--rust);
  outline-offset: -3px;
}

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

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

.shell {
  width: min(calc(100% - 4rem), 77.5rem);
  margin-inline: auto;
}

.truth-inner {
  width: min(calc(100% - 4rem), 73.5rem);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  transform: translateY(-200%);
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 0.8125rem;
}

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

.site-header {
  z-index: 20;
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
}

.header-inner {
  display: grid;
  gap: 0.75rem;
  padding-block: 0.875rem;
  font-family: var(--mono);
  font-size: 0.8125rem;
}

.brand {
  width: fit-content;
  max-width: 100%;
  font-weight: 600;
  letter-spacing: -0.01em;
  overflow-wrap: anywhere;
}

.primary-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.375rem;
  list-style: none;
}

.primary-nav a {
  color: var(--muted);
}

.primary-nav a:hover {
  color: var(--ink);
}

.header-cta {
  width: fit-content;
  max-width: 100%;
  padding: 0.5rem 0.875rem;
  border: 1px solid var(--ink);
  text-align: center;
  overflow-wrap: anywhere;
}

.header-cta:hover {
  background: var(--ink);
  color: var(--paper);
}

section[id] {
  scroll-margin-block-start: 1rem;
}

.hero {
  padding-block: 6.5rem 5.5rem;
  border-bottom: 1px solid var(--ink);
}

.hero-kicker,
.section-label,
.step-number {
  font-family: var(--mono);
}

.hero-kicker {
  margin-bottom: 1.875rem;
  color: var(--rust);
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-costs {
  display: grid;
  width: fit-content;
  grid-template-columns: repeat(3, 9rem);
  list-style: none;
}

.hero-costs li {
  display: grid;
  min-width: 0;
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 0.35rem;
  padding-inline: 1rem;
  border-left: 1px solid var(--line-mid);
  text-align: center;
}

.hero-costs li:first-child {
  border-left: 0;
}

.cost-label {
  line-height: 1.25;
}

.cost-price {
  color: var(--ink);
  font-size: 1rem;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
}

.hero h1 {
  max-width: 58.75rem;
  margin-bottom: 2rem;
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.hero-actions p {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.8125rem;
  line-height: 1.55;
}

.button {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  padding: 1.125rem 1.625rem;
  font-family: var(--mono);
  font-size: 0.9375rem;
  line-height: 1.35;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
}

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

.button-dark:hover {
  background: var(--rust);
  color: var(--paper);
}

.button-outline {
  border: 1px solid var(--ink);
}

.button-outline:hover {
  background: var(--panel);
  color: var(--ink);
}

.content-section {
  padding-block: 4.5rem;
  border-bottom: 1px solid var(--ink);
}

.labelled-section {
  display: grid;
  gap: 2rem 3.5rem;
}

.section-label {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-transform: uppercase;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14.375rem), 1fr));
  gap: 2.5rem;
  list-style: none;
}

.step-number {
  display: block;
  margin-bottom: 0.875rem;
  color: var(--rust);
  font-size: 0.8125rem;
}

.steps h3 {
  margin-bottom: 0.625rem;
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.steps p,
.faq-grid p {
  color: var(--body-copy);
  font-size: 1rem;
  line-height: 1.6;
  text-wrap: pretty;
}

.review {
  padding-block: 5.5rem;
}

.review figure {
  max-width: 51.25rem;
}

.review blockquote {
  font-size: clamp(1.625rem, 3.2vw, 2.375rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.25;
  text-wrap: pretty;
}

.review figcaption {
  margin-top: 1.75rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.8125rem;
}

.review cite {
  font-style: normal;
}

.review-source {
  border-bottom: 1px solid var(--line-mid);
  overflow-wrap: anywhere;
}

.review-source:hover {
  border-bottom-color: var(--rust);
}

.paired-sections {
  display: grid;
  border-bottom: 1px solid var(--ink);
}

.price-section,
.money-section {
  padding-block: 4rem;
}

.price-section .section-label,
.money-section .section-label {
  margin-bottom: 1.625rem;
}

.price-list {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-family: var(--mono);
  font-size: 0.9375rem;
}

.service-column {
  width: 62%;
}

.price-column {
  width: 38%;
}

.price-row th,
.price-row td {
  padding-block: 0.875rem;
  border-bottom: 1px dotted var(--line-mid);
  vertical-align: top;
  overflow-wrap: anywhere;
}

.price-row th {
  padding-right: 1rem;
  font-weight: 400;
  text-align: left;
}

.price-row td {
  font-weight: 600;
  text-align: right;
}

.price-row:last-child th,
.price-row:last-child td {
  border-bottom: 1px solid var(--ink);
}

.price-row td small {
  display: block;
  margin-top: 0.1rem;
  color: var(--muted);
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.4;
}

.price-promise {
  color: var(--rust);
}

.money-section {
  padding-inline: 2.5rem;
  background: var(--panel);
}

.money-lead {
  font-size: clamp(1.375rem, 2.4vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  text-wrap: pretty;
}

.money-accent {
  margin-top: 0.5rem;
  margin-bottom: 2rem;
  color: var(--rust);
}

.money-list {
  counter-reset: money-steps;
  border-top: 1px solid var(--line-panel);
  list-style: none;
}

.money-list li {
  position: relative;
  min-height: 3.75rem;
  padding: 1rem 0 1rem 2.5rem;
  border-bottom: 1px solid var(--line-panel);
  font-size: 1rem;
  line-height: 1.55;
  counter-increment: money-steps;
}

.money-list li:last-child {
  border-bottom: 0;
}

.money-list li::before {
  position: absolute;
  top: 1.15rem;
  left: 0;
  color: var(--rust);
  content: "0" counter(money-steps);
  font-family: var(--mono);
  font-size: 0.8125rem;
}

.pride-statement {
  padding-block: 4.5rem;
  border-bottom: 1px solid var(--ink);
  font-size: 1.3125rem;
  line-height: 1.5;
  text-wrap: pretty;
}

.honesty-section {
  padding-block: 4.5rem;
  background: var(--ink);
  color: var(--dark-text);
}

.section-label-dark {
  margin-bottom: 1.875rem;
  color: var(--dark-muted);
}

.honesty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18.75rem), 1fr));
  gap: 2rem 3.5rem;
  list-style: none;
}

.honesty-grid li {
  font-size: 1.0625rem;
  line-height: 1.6;
}

.honesty-grid h3,
.honesty-grid p {
  display: inline;
  font: inherit;
}

.honesty-grid h3 {
  color: var(--dark-accent);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15.625rem), 1fr));
  column-gap: 3.5rem;
}

.faq-item {
  padding-block: 1.375rem;
  border-bottom: 1px solid var(--line-light);
}

.faq-grid dt,
.faq-grid dd {
  margin: 0;
}

.faq-grid h3 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.35;
}

.contact-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding-block: 5.5rem;
}

.contact-section > div:first-child {
  flex: 1 1 28rem;
}

.contact-section h2 {
  margin-bottom: 0.875rem;
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-wrap: balance;
}

.contact-section p {
  max-width: 32.5rem;
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.6;
  text-wrap: pretty;
}

.contact-actions {
  display: flex;
  width: min(100%, 19rem);
  flex: 0 1 19rem;
  flex-direction: column;
  gap: 0.75rem;
  font-style: normal;
}

.contact-actions .button {
  width: 100%;
  padding: 1.25rem 1rem;
}

.email-link {
  font-size: 0.875rem;
  overflow-wrap: anywhere;
}

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

.error-page {
  display: grid;
  min-height: 100vh;
  align-items: center;
}

.error-inner {
  padding-block: 4rem;
}

.error-inner h1 {
  max-width: 50rem;
  margin-bottom: 1.25rem;
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  text-wrap: balance;
}

.error-inner > p:not(.hero-kicker) {
  max-width: 36rem;
  margin-bottom: 2rem;
  color: var(--body-copy);
  font-size: 1.125rem;
  line-height: 1.6;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding-block: 1.25rem;
  color: var(--footer-muted);
  font-family: var(--mono);
  font-size: 0.75rem;
}

.footer-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  list-style: none;
}

@media (min-width: 50rem) {
  .paired-sections {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-section {
    padding-right: 3rem;
  }
}

@media (min-width: 64rem) {
  .site-header {
    position: sticky;
    top: 0;
  }

  .header-inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.75rem;
  }

  .primary-nav ul {
    gap-inline: 1.375rem;
  }

  section[id] {
    scroll-margin-block-start: 5rem;
  }

  .labelled-section {
    grid-template-columns: 12.5rem minmax(0, 1fr);
  }
}

@media (max-width: 49.999rem) {
  .price-section {
    border-bottom: 1px solid var(--ink);
  }

  .money-section {
    padding-inline: 1.5rem;
  }
}

@media (max-width: 30rem) {
  .shell,
  .truth-inner {
    width: calc(100% - 2rem);
  }

  .header-inner {
    gap: 0.875rem;
  }

  .primary-nav {
    display: none;
  }

  .footer-links li:last-child {
    display: none;
  }

  .header-cta {
    width: 100%;
  }

  .hero {
    padding-block: 4.25rem 4rem;
  }

  .hero-kicker {
    line-height: 1.7;
  }

  .hero-costs {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-costs li {
    gap: 0.3rem;
    padding-inline: 0.45rem;
  }

  .cost-label {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    line-height: 1.3;
  }

  .cost-price {
    font-size: 0.9375rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .content-section,
  .honesty-section,
  .pride-statement {
    padding-block: 3.5rem;
  }

  .review {
    padding-block: 4rem;
  }

  .price-section,
  .money-section {
    padding-block: 3.5rem;
  }

  .money-section {
    padding-inline: 1rem;
  }

  .service-column {
    width: 58%;
  }

  .price-column {
    width: 42%;
  }

  .price-row th {
    padding-right: 0.75rem;
  }

  .contact-section {
    align-items: stretch;
    gap: 2rem;
    padding-block: 4rem;
  }

  .contact-section > div:first-child {
    flex-basis: 100%;
  }

  .contact-actions {
    flex-basis: 100%;
  }

  .footer-inner,
  .footer-links ul {
    flex-direction: column;
  }
}

@media (max-width: 23rem) {
  .hero-costs {
    grid-template-columns: 1fr;
  }

  .hero-costs li {
    grid-template-rows: auto;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem;
    padding-block: 0.4rem;
    border-left: 0;
    border-bottom: 1px dotted var(--line-mid);
    text-align: left;
  }

  .hero-costs li:last-child {
    border-bottom: 0;
  }

  .cost-price {
    text-align: right;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
