@font-face {
  font-family: "Alegreya";
  src: url("/assets/fonts/alegreya-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("/assets/fonts/dm-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
}

:root {
  color-scheme: light only;
  --indigo: #102b4e;
  --indigo-deep: #091c33;
  --sand: #d4ae73;
  --sand-light: #ead7b5;
  --chalk: #f3e8d5;
  --ochre: #a95622;
  --ochre-deep: #773315;
  --ink: #17202d;
  --muted-ink: #594d3e;
  --sand-rule: #8e714d;
  --indigo-rule: #58708b;
  --error: #8f251d;
  --placeholder: #6f6252;
  --content-max: 100rem;
  --page-gutter: clamp(1.25rem, 4vw, 5.5rem);
  --display: "Alegreya", Georgia, serif;
  --body: "DM Sans", sans-serif;
  --type-micro: 0.68rem;
  --type-label: 0.72rem;
  --type-small: 0.8rem;
  --type-caption: 0.92rem;
  --type-body: 1rem;
  --type-body-emphasis: clamp(1rem, 1.25vw, 1.18rem);
  --type-lead: clamp(1.0625rem, 1.5vw, 1.25rem);
  --type-title-sm: 1.25rem;
  --type-title: clamp(1.35rem, 2vw, 1.8rem);
  --type-title-lg: clamp(1.45rem, 2.2vw, 2rem);
  --type-wordmark: clamp(2rem, 3vw, 2.8rem);
  --type-choice: clamp(1.15rem, 1.6vw, 1.4rem);
  --type-summary: clamp(2rem, 4vw, 3.4rem);
  --type-display: clamp(4rem, 6vw, 5.25rem);
  --type-headline: clamp(2.7rem, 5vw, 5.4rem);
  --type-stat: clamp(5rem, 9vw, 6rem);
  --type-success: clamp(2.8rem, 5vw, 4.8rem);
  --type-mobile-display: clamp(3rem, 13.5vw, 3.65rem);
  --type-mobile-headline: clamp(2.55rem, 11vw, 3.25rem);
}

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

html {
  color-scheme: light only;
  scroll-behavior: smooth;
  background: var(--indigo);
  scrollbar-color: var(--ochre) var(--indigo-deep);
}

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

::selection {
  color: var(--indigo-deep);
  background: var(--sand);
}

::-webkit-scrollbar {
  width: 0.8rem;
}

::-webkit-scrollbar-track {
  background: var(--indigo-deep);
}

::-webkit-scrollbar-thumb {
  border: 0.2rem solid var(--indigo-deep);
  background: var(--ochre);
}

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

figure,
h1,
h2,
p,
dl {
  margin-top: 0;
}

a {
  color: inherit;
}

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

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

input,
textarea {
  caret-color: var(--ochre);
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  padding: 0.8rem 1rem;
  color: var(--indigo-deep);
  background: var(--chalk);
  transform: translateY(-180%);
}

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

.site-header {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 3rem);
  width: min(calc(100% - (2 * var(--page-gutter))), var(--content-max));
  min-height: 5rem;
  margin-inline: auto;
  color: var(--sand-light);
  border-bottom: 1px solid var(--indigo-rule);
}

.wordmark {
  justify-self: start;
  color: var(--sand);
  font-family: var(--display);
  font-size: var(--type-wordmark);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  text-decoration: none;
}

.route {
  font-size: var(--type-small);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.header-action {
  min-height: 2.8rem;
  padding: 0.75rem 1.2rem;
  border: 1px solid var(--sand);
  color: var(--sand-light);
  font-size: var(--type-small);
  font-weight: 600;
  text-decoration: none;
}

.header-action:hover {
  color: var(--indigo-deep);
  background: var(--sand);
}

.hero {
  display: grid;
  width: min(calc(100% - (2 * var(--page-gutter))), var(--content-max));
  min-height: min(48rem, calc(100svh - 5rem));
  margin-inline: auto;
  background: var(--sand);
}

.hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 7rem) clamp(1.5rem, 4vw, 4.5rem);
  border-bottom: 1px solid var(--sand-rule);
}

.hero__copy::after {
  content: "";
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid var(--ochre-deep);
  box-shadow: inset 0 0 0 0.45rem var(--sand), inset 0 0 0 0.52rem var(--ochre-deep);
  pointer-events: none;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 12ch;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--indigo);
  font-size: var(--type-display);
  line-height: 0.88;
  text-wrap: balance;
}

h2 {
  margin-bottom: 0;
  font-size: var(--type-headline);
  line-height: 0.94;
  text-wrap: balance;
}

.hero__subtitle {
  max-width: 36rem;
  margin-bottom: 1.8rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--sand-rule);
  color: var(--ink);
  font-size: var(--type-body-emphasis);
  line-height: 1.45;
}

.primary-action {
  display: grid;
  grid-template-columns: 1fr 4.8rem;
  align-items: stretch;
  width: min(100%, 32rem);
  min-height: 4.2rem;
  color: var(--chalk);
  background: var(--indigo);
  text-decoration: none;
}

.primary-action span {
  display: flex;
  align-items: center;
  padding-inline: 1.35rem;
  font-weight: 600;
}

.primary-action svg {
  align-self: center;
  justify-self: center;
  fill: none;
  stroke: var(--sand);
  stroke-width: 1.5;
  transition: transform 180ms ease;
}

.primary-action:hover svg,
.profile-action:hover span,
.whatsapp-link:hover span {
  transform: translateX(0.3rem);
}

.hero__media,
.follow-up__image,
.neighborhood-image {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--indigo-deep);
}

.hero__media {
  min-height: 29rem;
  border: 0.75rem solid var(--indigo);
}

.hero__media img,
.follow-up__image img,
.neighborhood-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__media img {
  object-position: 52% center;
  animation: hero-settle 700ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes hero-settle {
  from {
    opacity: 0.94;
    transform: scale(1.015);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 0.55rem 0.75rem;
  color: var(--chalk);
  background: var(--indigo-deep);
  font-size: var(--type-micro);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.origin {
  color: var(--ink);
  background: var(--sand-light);
}

.origin__statement,
.problem-ledger,
.service__heading,
.service-ledger,
.pricing,
.profile,
.founders,
.faq,
.contact,
.site-footer {
  width: min(calc(100% - (2 * var(--page-gutter))), var(--content-max));
  margin-inline: auto;
}

.origin__statement {
  display: grid;
  gap: 2rem;
  padding-block: clamp(4.5rem, 9vw, 8rem);
}

.origin__statement h2 {
  max-width: 12ch;
  color: var(--indigo);
}

.origin__statement p {
  max-width: 40rem;
  margin-bottom: 0;
  color: var(--muted-ink);
  font-size: var(--type-lead);
}

.problem-ledger {
  padding-bottom: clamp(4.5rem, 9vw, 8rem);
  border-top: 1px solid var(--sand-rule);
}

.problem-row {
  display: grid;
  gap: 0.55rem;
  padding-block: 1.4rem;
  border-bottom: 1px solid var(--sand-rule);
}

.problem-row strong {
  color: var(--ochre-deep);
  font-size: var(--type-small);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.problem-row span {
  max-width: 48rem;
  font-family: var(--display);
  font-size: var(--type-title);
  line-height: 1.2;
}

.service {
  padding-block: clamp(5rem, 9vw, 8rem);
  color: var(--chalk);
  background: var(--indigo);
}

.service__heading {
  display: grid;
  gap: 1.8rem;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.service__heading h2 {
  max-width: 13ch;
  color: var(--sand);
}

.service__heading p {
  max-width: 36rem;
  margin-bottom: 0;
  color: var(--sand-light);
  font-size: var(--type-lead);
}

.service-ledger {
  border-top: 1px solid var(--indigo-rule);
}

.service-row {
  display: grid;
  gap: 0.75rem;
  padding-block: 1.45rem;
  border-bottom: 1px solid var(--indigo-rule);
}

.service-row strong {
  color: var(--sand);
  font-family: var(--display);
  font-size: var(--type-title-lg);
  font-weight: 500;
  line-height: 1.05;
}

.service-row p {
  max-width: 46rem;
  margin-bottom: 0;
  color: var(--chalk);
}

.follow-up {
  display: grid;
  background: var(--chalk);
}

.follow-up__image {
  min-height: 31rem;
}

.follow-up__register {
  padding: clamp(4rem, 8vw, 7rem) var(--page-gutter);
  color: var(--ink);
  background: var(--chalk);
}

.follow-up__register h2 {
  max-width: 11ch;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  color: var(--indigo);
}

.register-sheet,
.cost-ledger {
  margin-bottom: 0;
  border-top: 1px solid currentColor;
}

.register-sheet div,
.cost-ledger div {
  display: grid;
  border-bottom: 1px solid currentColor;
}

.register-sheet dt,
.register-sheet dd,
.cost-ledger dt,
.cost-ledger dd {
  margin: 0;
  padding: 1rem 0.25rem;
}

.register-sheet dt,
.cost-ledger dt {
  font-size: var(--type-label);
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.register-sheet dd {
  color: var(--ochre-deep);
  font-family: var(--display);
  font-size: var(--type-title-sm);
}

.example-note {
  max-width: 38rem;
  margin: 1.2rem 0 0;
  color: var(--muted-ink);
  font-size: var(--type-small);
}

.pricing {
  display: grid;
  gap: clamp(3rem, 7vw, 7rem);
  padding-inline: max(var(--page-gutter), calc((100vw - var(--content-max)) / 2));
  padding-block: clamp(5rem, 10vw, 9rem);
  color: var(--chalk);
  background: var(--ochre);
}

.pricing__figure {
  align-self: start;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--chalk);
  box-shadow: inset 0 0 0 0.45rem var(--ochre), inset 0 0 0 0.5rem var(--chalk);
}

.pricing__figure > span {
  display: block;
  margin-bottom: 1rem;
  font-size: var(--type-small);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing__figure strong {
  display: block;
  font-family: var(--display);
  font-size: var(--type-stat);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.82;
}

.pricing__figure strong span {
  font-size: 0.42em;
}

.pricing__figure p {
  max-width: 18rem;
  margin: 1.4rem 0 0;
  color: var(--chalk);
}

.pricing__details h2 {
  max-width: 12ch;
  margin-bottom: 1.5rem;
}

.pricing__lead {
  max-width: 43rem;
  margin-bottom: 2.5rem;
  color: var(--chalk);
  font-size: var(--type-lead);
}

.cost-ledger {
  color: var(--chalk);
}

.cost-ledger dd {
  color: var(--chalk);
}

.profile {
  display: grid;
  gap: clamp(2.5rem, 7vw, 7rem);
  padding-inline: max(var(--page-gutter), calc((100vw - var(--content-max)) / 2));
  padding-block: clamp(5rem, 10vw, 9rem);
  color: var(--ink);
  background: var(--sand);
}

.profile__intro h2 {
  max-width: 9ch;
  margin-bottom: 1.4rem;
  color: var(--indigo);
}

.profile__intro p {
  max-width: 32rem;
  margin-bottom: 0;
  color: var(--muted-ink);
}

.choice-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 1.4rem;
  margin: 0;
  padding: 1.25rem 0;
  border: 0;
  border-top: 1px solid var(--sand-rule);
}

.choice-line:last-child {
  border-bottom: 1px solid var(--sand-rule);
}

.choice-line legend {
  width: 100%;
  margin-bottom: 0.65rem;
  padding: 0;
  color: var(--muted-ink);
  font-size: var(--type-label);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.choice-line button {
  min-height: 2.8rem;
  padding: 0;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  cursor: pointer;
  font-family: var(--display);
  font-size: var(--type-choice);
}

.choice-line button:hover,
.choice-line button[aria-pressed="true"] {
  color: var(--indigo);
}

.choice-line button[aria-pressed="true"] {
  border-color: var(--indigo);
  font-weight: 600;
}

.profile__summary {
  display: grid;
  align-items: end;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--indigo);
}

.profile__summary p {
  margin-bottom: 0;
  color: var(--indigo);
  font-family: var(--display);
  font-size: var(--type-summary);
  line-height: 1;
}

.profile-action {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 3.6rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--indigo);
  color: var(--indigo);
  font-weight: 600;
  text-decoration: none;
}

.profile-action span,
.whatsapp-link span {
  transition: transform 180ms ease;
}

.neighborhood-image {
  width: min(calc(100% - (2 * var(--page-gutter))), var(--content-max));
  aspect-ratio: 16 / 7;
  margin-inline: auto;
  border: 0.75rem solid var(--indigo);
}

.founders {
  display: grid;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding-inline: max(var(--page-gutter), calc((100vw - var(--content-max)) / 2));
  padding-block: clamp(3.5rem, 6vw, 5.5rem);
  color: var(--ink);
  background: var(--chalk);
}

.founders h2 {
  max-width: 14ch;
  color: var(--indigo);
  font-size: var(--type-summary);
  line-height: 0.96;
}

.founders p {
  align-self: end;
  max-width: 42rem;
  margin: 0;
  color: var(--muted-ink);
  font-size: var(--type-body-emphasis);
}

.faq {
  display: grid;
  gap: clamp(3rem, 7vw, 7rem);
  padding-inline: max(var(--page-gutter), calc((100vw - var(--content-max)) / 2));
  padding-block: clamp(5rem, 10vw, 9rem);
  color: var(--ink);
  background: var(--sand-light);
}

.faq__heading h2 {
  max-width: 11ch;
  color: var(--indigo);
}

.faq__list {
  border-top: 1px solid var(--sand-rule);
}

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

.faq summary {
  position: relative;
  min-height: 4.5rem;
  padding: 1.2rem 3.5rem 1.2rem 0;
  cursor: pointer;
  color: var(--indigo);
  font-family: var(--display);
  font-size: var(--type-title);
  line-height: 1.15;
  list-style: none;
}

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

.faq summary::before,
.faq summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.5rem;
  width: 1.1rem;
  height: 1px;
  background: var(--ochre-deep);
  transition: transform 180ms ease;
}

.faq summary::after {
  transform: rotate(90deg);
}

.faq details[open] summary::after {
  transform: rotate(0deg);
}

.faq details p {
  max-width: 62ch;
  margin-bottom: 0;
  padding: 0 3rem 1.5rem 0;
  color: var(--muted-ink);
}

.contact {
  display: grid;
  gap: clamp(3rem, 7vw, 7rem);
  padding-inline: max(var(--page-gutter), calc((100vw - var(--content-max)) / 2));
  padding-block: clamp(5rem, 10vw, 9rem);
  color: var(--chalk);
  background: var(--indigo);
}

.contact__intro h2 {
  max-width: 10ch;
  margin-bottom: 1.5rem;
  color: var(--sand);
}

.contact__intro p {
  max-width: 32rem;
  margin-bottom: 0;
  color: var(--sand-light);
}

.contact__panel {
  align-self: start;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  color: var(--ink);
  background: var(--chalk);
  border: 1px solid var(--sand);
  box-shadow: inset 0 0 0 0.45rem var(--chalk), inset 0 0 0 0.5rem var(--sand-rule);
}

.form-grid {
  display: grid;
}

form label {
  display: block;
}

form label > span {
  display: block;
  padding-top: 1rem;
  color: var(--muted-ink);
  font-size: var(--type-label);
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

form small {
  color: var(--ochre-deep);
  font-size: inherit;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

input,
textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--sand-rule);
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  appearance: none;
}

input {
  height: 3.5rem;
}

textarea {
  min-height: 8rem;
  padding-block: 0.8rem;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--ochre-deep);
  outline: 0;
}

input:user-invalid,
textarea:user-invalid {
  border-color: var(--error);
}

textarea::placeholder {
  color: var(--placeholder);
}

.message-field {
  margin-top: 0.25rem;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-privacy {
  margin: 1.25rem 0;
  color: var(--muted-ink);
  font-size: var(--type-small);
}

.submit-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 4.3rem;
  padding-inline: 1.35rem;
  border: 1px solid var(--indigo);
  border-radius: 0;
  color: var(--chalk);
  background: var(--indigo);
  cursor: pointer;
  font-weight: 600;
}

.submit-action:hover {
  background: var(--indigo-deep);
}

.submit-action:disabled {
  cursor: wait;
  opacity: 0.64;
}

.form-status {
  min-height: 1.4em;
  margin: 0.75rem 0 0;
  color: var(--muted-ink);
  font-size: var(--type-small);
}

.form-success {
  padding-block: 3rem;
  border-bottom: 1px solid var(--sand-rule);
}

.form-success p {
  max-width: 15ch;
  margin: 0;
  color: var(--indigo);
  font-family: var(--display);
  font-size: var(--type-success);
  line-height: 0.95;
}

.whatsapp-link {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.5rem;
  padding-block: 1rem;
  border-bottom: 1px solid var(--sand-rule);
  color: var(--indigo);
  font-size: var(--type-caption);
  font-weight: 600;
  text-decoration: none;
}

.site-footer {
  display: grid;
  gap: 0.7rem;
  padding-block: 2.2rem 3rem;
  color: var(--sand-light);
  border-top: 1px solid var(--indigo-rule);
  font-size: var(--type-label);
}

.site-footer span:first-child {
  color: var(--sand);
  font-family: var(--display);
  font-size: var(--type-title-lg);
  font-weight: 600;
}

.privacy-settings {
  justify-self: start;
  min-height: 2.75rem;
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
  color: var(--sand-light);
  font-size: var(--type-label);
}

.consent {
  position: fixed;
  z-index: 50;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem var(--page-gutter);
  border-top: 1px solid var(--sand);
  color: var(--chalk);
  background: var(--indigo-deep);
}

.consent[hidden] {
  display: none;
}

.consent p {
  margin: 0;
  font-size: var(--type-small);
}

.consent div {
  display: flex;
  gap: 0.6rem;
}

.consent button {
  min-width: 6.5rem;
  min-height: 2.75rem;
  padding: 0.5rem 0.85rem;
  border: 1px solid var(--sand);
  border-radius: 0;
  color: var(--chalk);
  background: transparent;
  cursor: pointer;
}

main {
  background: var(--indigo);
}

.origin,
.service,
.follow-up,
.pricing,
.profile,
.founders,
.faq,
.contact {
  width: 100%;
}

@media (min-width: 48rem) {
  .origin__statement,
  .service__heading {
    grid-template-columns: minmax(16rem, 0.9fr) minmax(22rem, 1.1fr);
    align-items: end;
  }

  .origin__statement p,
  .service__heading p {
    justify-self: end;
  }

  .problem-row,
  .service-row {
    grid-template-columns: minmax(16rem, 0.9fr) minmax(22rem, 1.1fr);
    align-items: baseline;
  }

  .register-sheet div,
  .cost-ledger div {
    grid-template-columns: minmax(9rem, 0.42fr) 1fr;
  }

  .register-sheet dt,
  .cost-ledger dt {
    border-right: 1px solid currentColor;
  }

  .register-sheet dd,
  .cost-ledger dd {
    padding-left: 1rem;
  }

  .profile__summary {
    grid-template-columns: 1fr auto;
  }

  .form-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 2.5rem;
  }

  .site-footer {
    grid-template-columns: 0.35fr 1fr auto;
    align-items: baseline;
  }
}

@media (min-width: 60rem) {
  .hero {
    grid-template-columns: minmax(30rem, 44%) 1fr;
  }

  .hero__copy {
    border-bottom: 0;
  }

  .follow-up {
    grid-template-columns: 56% 44%;
  }

  .follow-up__image {
    min-height: 48rem;
  }

  .pricing,
  .profile,
  .founders,
  .faq,
  .contact {
    grid-template-columns: minmax(20rem, 0.78fr) minmax(32rem, 1.22fr);
  }

  .founders {
    grid-template-columns: minmax(24rem, 0.9fr) minmax(30rem, 1.1fr);
  }
}

@media (max-width: 59.99rem) {
  .hero__media,
  .follow-up__image,
  .neighborhood-image {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .follow-up__register {
    grid-row: 1;
  }

  .neighborhood-image {
    width: 100%;
  }
}

@media (max-width: 35rem) {
  :root {
    --page-gutter: 1.1rem;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 4.25rem;
  }

  .route {
    display: none;
  }

  .header-action {
    min-height: 2.6rem;
    padding: 0.65rem 0.9rem;
  }

  .hero {
    width: 100%;
    min-height: auto;
  }

  .hero__copy {
    padding: 2.9rem var(--page-gutter) 2.25rem;
  }

  .hero__copy::after {
    display: none;
  }

  h1 {
    max-width: 10.5ch;
    margin-bottom: 1.35rem;
    font-size: var(--type-mobile-display);
    line-height: 0.91;
  }

  h2 {
    font-size: var(--type-mobile-headline);
  }

  .hero__subtitle {
    margin-bottom: 1.4rem;
    padding-top: 0.9rem;
  }

  .primary-action {
    min-height: 3.9rem;
  }

  .hero__media {
    border-width: 0.5rem;
  }

  .origin__statement,
  .problem-ledger,
  .service__heading,
  .service-ledger,
  .site-footer {
    width: calc(100% - (2 * var(--page-gutter)));
  }

  .origin__statement {
    gap: 1.35rem;
    padding-block: 3.75rem 3rem;
  }

  .problem-ledger {
    padding-bottom: 3.75rem;
  }

  .problem-row,
  .service-row {
    padding-block: 1.15rem;
  }

  .service {
    padding-block: 4rem;
  }

  .service__heading {
    gap: 1.25rem;
    margin-bottom: 2.5rem;
  }

  .follow-up__register {
    padding: 3.75rem var(--page-gutter);
  }

  .follow-up__register h2 {
    margin-bottom: 2.25rem;
  }

  .pricing,
  .profile,
  .founders,
  .faq,
  .contact {
    gap: 2.5rem;
    padding: 4rem var(--page-gutter);
  }

  .pricing__figure,
  .contact__panel {
    padding: 1.25rem;
  }

  .pricing__lead {
    margin-bottom: 2rem;
  }

  .founders {
    gap: 2rem;
    padding-block: 3.5rem;
  }

  .founders h2 {
    font-size: var(--type-mobile-headline);
  }

  .profile__intro h2,
  .contact__intro h2 {
    margin-bottom: 1rem;
  }

  .choice-line {
    padding-block: 1rem;
  }

  .register-sheet div,
  .cost-ledger div {
    grid-template-columns: 6.75rem 1fr;
  }

  .register-sheet dt,
  .cost-ledger dt {
    padding-right: 0.65rem;
    border-right: 1px solid currentColor;
  }

  .register-sheet dd,
  .cost-ledger dd {
    padding-left: 0.85rem;
  }

  .pricing__figure {
    max-width: 24rem;
  }

  .profile__summary p {
    font-size: var(--type-summary);
  }

  .faq summary {
    min-height: 4rem;
    padding-block: 1rem;
  }

  .site-footer {
    padding-block: 1.8rem 2.25rem;
  }

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

  .consent div,
  .consent button {
    flex: 1;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

@media (prefers-color-scheme: dark) {
  :root,
  html,
  body {
    color-scheme: light only !important;
  }

  body,
  main,
  .site-header,
  .site-footer {
    background-color: var(--indigo) !important;
  }

  input,
  textarea {
    color: var(--ink) !important;
    background-color: transparent !important;
  }

  .submit-action {
    color: var(--chalk) !important;
    background-color: var(--indigo) !important;
  }
}
