:root {
  --hm-ground: #F3F0E8;
  --hm-text: #151716;
  --hm-muted: #6D7775;
  --hm-line: #C8D0C8;
  --hm-accent: #17B26A;
  --hm-paper: #fbfaf4;
  --hm-display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --hm-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --hm-sidebar: 18.5rem;
  --hm-gutter: clamp(1rem, 3vw, 3.4rem);
  --hm-content: 72rem;
}

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

html {
  color: var(--hm-text);
  background: var(--hm-ground);
  font-family: var(--hm-body);
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  min-width: 0;
  margin: 0;
  color: var(--hm-text);
  background:
    radial-gradient(circle at 18% 12%, rgba(21, 23, 22, 0.035) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 79% 34%, rgba(21, 23, 22, 0.025) 0 1px, transparent 1px 100%),
    var(--hm-ground);
  background-size: 19px 19px, 31px 31px, auto;
  line-height: 1.55;
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.22em;
}

p,
li,
td,
th,
a,
span,
div {
  overflow-wrap: anywhere;
}

p {
  max-width: 72ch;
  margin: 0;
}

p + p {
  margin-top: 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 600;
  line-height: 1.02;
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--hm-display);
  letter-spacing: -0.035em;
}

h3 {
  font-size: clamp(1.05rem, 1.2vw, 1.22rem);
  letter-spacing: -0.015em;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.hm-skip {
  position: fixed;
  z-index: 20;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 0.9rem;
  background: var(--hm-text);
  color: var(--hm-ground);
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

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

.hm-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 10;
  display: flex;
  width: var(--hm-sidebar);
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.35rem 1.15rem 1.15rem;
  border-right: 1px solid var(--hm-line);
  background: rgba(243, 240, 232, 0.96);
}

.hm-logo {
  display: grid;
  grid-template-columns: 2.55rem 1fr;
  gap: 0.75rem;
  align-items: center;
  text-decoration: none;
}

.hm-logo__mark {
  position: relative;
  display: block;
  aspect-ratio: 1;
  border: 1px solid var(--hm-text);
  background:
    linear-gradient(145deg, transparent 48%, var(--hm-text) 49% 51%, transparent 52%),
    var(--hm-ground);
}

.hm-logo__mark::after {
  content: "";
  position: absolute;
  right: 0.34rem;
  bottom: 0.34rem;
  width: 0.62rem;
  aspect-ratio: 1;
  border-radius: 999px;
  background: var(--hm-accent);
}

.hm-logo__name {
  display: block;
  font-family: var(--hm-display);
  font-size: 1.6rem;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.hm-logo__place {
  display: block;
  margin-top: 0.25rem;
  color: var(--hm-muted);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hm-status {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--hm-line);
  color: var(--hm-muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.hm-status__dot {
  display: inline-block;
  width: 0.55rem;
  min-width: 0.55rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--hm-accent);
}

.hm-nav {
  display: grid;
  gap: 0.15rem;
  margin-top: 2.6rem;
}

.hm-nav a {
  position: relative;
  display: flex;
  gap: 0.45rem;
  align-items: center;
  width: max-content;
  max-width: 100%;
  padding: 0.38rem 0;
  color: var(--hm-muted);
  font-size: 0.92rem;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.hm-nav a::before {
  content: "";
  width: 0.62rem;
  height: 1px;
  background: currentColor;
  transform-origin: left center;
  transition: width 180ms ease, background-color 180ms ease;
}

.hm-nav a:hover,
.hm-nav a:focus-visible,
.hm-nav a[aria-current="page"] {
  color: var(--hm-text);
  transform: translateX(0.22rem);
}

.hm-nav a[aria-current="page"]::before {
  width: 1.35rem;
  background: var(--hm-accent);
}

.hm-sidebar__foot {
  display: grid;
  gap: 0.7rem;
  padding-top: 1rem;
  border-top: 1px solid var(--hm-line);
  color: var(--hm-muted);
  font-size: 0.84rem;
}

.hm-email {
  width: max-content;
  max-width: 100%;
  color: var(--hm-text);
  font-weight: 500;
  transition: color 180ms ease, transform 180ms ease;
}

.hm-email:hover,
.hm-email:focus-visible {
  color: var(--hm-accent);
  transform: translateX(0.18rem);
}

.hm-main {
  min-width: 0;
  margin-left: var(--hm-sidebar);
  padding: 0 var(--hm-gutter) 4rem;
}

.hm-block {
  width: min(var(--hm-content), 100%);
  min-width: 0;
  margin: 0 auto;
}

.hm-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(17rem, 0.72fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-height: 92vh;
  padding: clamp(3.2rem, 6vw, 5.4rem) 0 clamp(2.6rem, 6vw, 5rem);
}

.hm-hero__copy,
.hm-page-lead,
.hm-contact-lead {
  text-align: left;
}

.hm-hero__copy p,
.hm-page-lead p,
.hm-contact-lead p {
  margin-inline: 0;
}

.hm-page-lead,
.hm-contact-lead {
  padding: clamp(3.6rem, 7vw, 6rem) 0 clamp(2.4rem, 5vw, 4.5rem);
}

.hm-kicker,
.hm-label {
  color: var(--hm-muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.25;
  text-transform: uppercase;
}

.hm-display {
  margin-top: 0.65rem;
  font-size: clamp(2.9rem, 7.4vw, 6.7rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.065em;
}

.hm-wipe-line {
  display: block;
}

.hm-js .hm-wipe-line {
  animation: hmWipe 820ms cubic-bezier(0.22, 1, 0.36, 1) both;
  clip-path: inset(0 100% 0 0);
}

.hm-js .hm-wipe-line:nth-child(2) {
  animation-delay: 120ms;
}

.hm-js .hm-wipe-line:nth-child(3) {
  animation-delay: 220ms;
}

.hm-lead {
  margin-top: clamp(1rem, 1.8vw, 1.35rem);
  color: var(--hm-muted);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.55;
}

.hm-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.85rem 1.15rem;
  align-items: center;
  margin-top: 1.2rem;
}

.hm-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  padding: 0.78rem 1rem 0.82rem;
  border: 1px solid var(--hm-text);
  background: var(--hm-text);
  color: var(--hm-ground);
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.hm-button:hover,
.hm-button:focus-visible {
  border-color: var(--hm-accent);
  color: var(--hm-accent);
  transform: translateX(0.18rem);
}

.hm-link {
  color: var(--hm-muted);
  font-weight: 500;
  transition: color 180ms ease, transform 180ms ease;
}

.hm-link:hover,
.hm-link:focus-visible {
  color: var(--hm-accent);
  transform: translateX(0.18rem);
}

.hm-visual {
  position: relative;
  min-width: 0;
  padding: clamp(0.6rem, 2vw, 1.2rem);
  border: 1px solid var(--hm-line);
  background: rgba(251, 250, 244, 0.52);
  overflow: hidden;
}

.hm-visual::before,
.hm-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hm-visual::before {
  inset: 1.1rem;
  border: 1px solid rgba(200, 208, 200, 0.75);
}

.hm-visual::after {
  left: 8%;
  right: 8%;
  bottom: 1.25rem;
  height: 1px;
  background: var(--hm-line);
}

.hm-slip-svg {
  display: block;
  width: 100%;
  height: auto;
}

.hm-slip path,
.hm-slip circle {
  vector-effect: non-scaling-stroke;
}

.hm-kenburns .hm-slip-svg {
  transform-origin: 52% 44%;
  animation: hmDrift 16s ease-in-out infinite alternate;
}

.hm-section-head {
  display: grid;
  grid-template-columns: minmax(9rem, 0.25fr) minmax(0, 1fr);
  gap: 1.4rem;
  align-items: start;
  margin-bottom: clamp(1.5rem, 3vw, 2.4rem);
  padding-top: clamp(3rem, 7vw, 5.5rem);
  border-top: 1px solid var(--hm-line);
}

.hm-section-head h2,
.hm-note h2,
.hm-cta h2 {
  max-width: 13ch;
  font-size: clamp(2.1rem, 4.2vw, 4.15rem);
  font-weight: 400;
  line-height: 0.92;
}

.hm-card-grid {
  display: grid;
  min-width: 0;
  gap: 1px;
  align-items: start;
  background: var(--hm-line);
  border: 1px solid var(--hm-line);
}

.hm-card-grid--stretch {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.hm-card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  background: transparent;
  border-width: 1px 0 0;
}

.hm-card-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  background: transparent;
  border-width: 1px 0 0;
}

.hm-panel,
.hm-note,
.hm-cta {
  min-width: 0;
  background: var(--hm-ground);
}

.hm-panel {
  display: flex;
  flex-direction: column;
  padding: clamp(1.1rem, 2.4vw, 1.8rem);
}

.hm-card-grid--three .hm-panel,
.hm-card-grid--four .hm-panel {
  border-bottom: 1px solid var(--hm-line);
  background: transparent;
}

.hm-card-grid--three .hm-panel:not(:last-child),
.hm-card-grid--four .hm-panel:not(:last-child) {
  border-right: 1px solid var(--hm-line);
}

.hm-panel h3 {
  margin-top: 0.25rem;
}

.hm-panel p {
  margin-top: 0.9rem;
  color: var(--hm-muted);
  font-size: 0.95rem;
}

.hm-price {
  margin: 0 0 1.1rem;
  color: var(--hm-text) !important;
  font-family: var(--hm-display);
  font-size: clamp(2.35rem, 4.8vw, 4.2rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.hm-price span {
  display: block;
  margin-top: 0.25rem;
  color: var(--hm-muted);
  font-family: var(--hm-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hm-tick-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--hm-line);
}

.hm-tick-list li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--hm-text);
  font-size: 0.92rem;
  transition: color 180ms ease, transform 180ms ease;
}

.hm-tick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 0.55rem;
  height: 1px;
  background: var(--hm-accent);
}

.hm-tick-list li:hover {
  color: var(--hm-accent);
  transform: translateX(0.18rem);
}

.hm-card-link {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  margin-top: auto;
  padding-top: 1.35rem;
  color: var(--hm-text);
  font-weight: 600;
  transition: color 180ms ease, transform 180ms ease;
}

.hm-card-link:hover,
.hm-card-link:focus-visible {
  color: var(--hm-accent);
  transform: translateX(0.2rem);
}

.hm-route-block {
  padding-top: clamp(1rem, 2vw, 2rem);
}

.hm-route {
  position: relative;
  display: grid;
  gap: 1.45rem;
  max-width: 54rem;
  margin-inline: auto;
}

.hm-route__line {
  position: absolute;
  top: 0.5rem;
  bottom: 0.5rem;
  left: 50%;
  width: 3px;
  background: var(--hm-accent);
  transform: translateX(-50%);
}

.hm-route-step {
  position: relative;
  width: min(28rem, 88%);
  padding: 1.2rem 1.25rem;
  border: 1px solid var(--hm-line);
  background: var(--hm-ground);
}

.hm-route-step--offset {
  justify-self: end;
}

.hm-route-step span,
.hm-step-number {
  display: inline-flex;
  margin-bottom: 0.65rem;
  color: var(--hm-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.hm-route-step p {
  margin-top: 0.6rem;
  color: var(--hm-muted);
  font-size: 0.95rem;
}

.hm-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(1.4rem, 4vw, 4rem);
  align-items: start;
  padding-top: clamp(3rem, 7vw, 5.5rem);
}

.hm-note {
  padding: 1.45rem 0 0;
  border-top: 1px solid var(--hm-line);
}

.hm-note--ruled {
  border-top-color: var(--hm-text);
}

.hm-note--owner {
  padding: clamp(1.2rem, 2.5vw, 1.8rem);
  border: 1px solid var(--hm-line);
}

.hm-note h2,
.hm-cta h2 {
  margin-top: 0.75rem;
}

.hm-note p:not(.hm-label),
.hm-cta p:not(.hm-label) {
  margin-top: 1rem;
  color: var(--hm-muted);
}

.hm-hover-list {
  display: grid;
  gap: 0;
  margin-top: 1rem;
  border-top: 1px solid var(--hm-line);
}

.hm-hover-list li {
  position: relative;
  padding: 0.78rem 0 0.78rem 1.25rem;
  border-bottom: 1px solid var(--hm-line);
  color: var(--hm-text);
  transition: color 180ms ease, transform 180ms ease;
}

.hm-hover-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.55rem;
  width: 0.55rem;
  height: 1px;
  background: var(--hm-muted);
  transition: background-color 180ms ease, width 180ms ease;
}

.hm-hover-list li:hover {
  color: var(--hm-accent);
  transform: translateX(0.22rem);
}

.hm-hover-list li:hover::before {
  width: 0.85rem;
  background: var(--hm-accent);
}

.hm-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(3rem, 7vw, 5.5rem);
  background: var(--hm-line);
  border: 1px solid var(--hm-line);
}

.hm-proof.hm-proof--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hm-proof div {
  display: grid;
  gap: 0.65rem;
  align-content: start;
  min-width: 0;
  padding: 1.05rem;
  background: var(--hm-ground);
}

.hm-proof strong {
  font-family: var(--hm-display);
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: -0.035em;
}

.hm-proof span {
  color: var(--hm-muted);
  font-size: 0.9rem;
}

.hm-proof a {
  width: max-content;
  max-width: 100%;
  font-weight: 600;
  transition: color 180ms ease, transform 180ms ease;
}

.hm-proof a:hover,
.hm-proof a:focus-visible {
  color: var(--hm-accent);
  transform: translateX(0.18rem);
}

.hm-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: end;
  margin-top: clamp(3rem, 7vw, 5.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--hm-text);
  color: var(--hm-muted);
}

.hm-footer__email {
  display: inline-block;
  margin: 0.45rem 0 0.8rem;
  color: var(--hm-text);
  font-family: var(--hm-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
  transition: color 180ms ease, transform 180ms ease;
}

.hm-footer__email:hover,
.hm-footer__email:focus-visible {
  color: var(--hm-accent);
  transform: translateX(0.18rem);
}

.hm-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
  justify-content: flex-end;
}

.hm-footer__nav a {
  color: var(--hm-text);
  font-weight: 600;
  transition: color 180ms ease, transform 180ms ease;
}

.hm-footer__nav a:hover,
.hm-footer__nav a:focus-visible {
  color: var(--hm-accent);
  transform: translateX(0.18rem);
}

.hm-ledger-wrap {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--hm-line);
}

.hm-ledger {
  width: 100%;
  min-width: 48rem;
  border-collapse: collapse;
  background: var(--hm-ground);
}

.hm-ledger th,
.hm-ledger td {
  padding: 0.88rem 0.95rem;
  border-bottom: 1px solid var(--hm-line);
  text-align: left;
  vertical-align: top;
}

.hm-ledger th {
  color: var(--hm-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hm-ledger td {
  font-size: 0.94rem;
}

.hm-ledger tr:last-child td {
  border-bottom: 0;
}

.hm-ledger tbody tr {
  transition: color 180ms ease;
}

.hm-ledger tbody tr:hover {
  color: var(--hm-accent);
}

.hm-ledger .hm-ledger-group th {
  border-bottom-color: var(--hm-text);
  background: rgba(200, 208, 200, 0.32);
  color: var(--hm-text);
}

.hm-big-number {
  color: var(--hm-text) !important;
  font-family: var(--hm-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.hm-cta {
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--hm-text);
}

.hm-cta .hm-button {
  margin-top: 1.25rem;
}

.hm-process__grid {
  position: relative;
  display: grid;
  gap: 1.15rem;
  max-width: 62rem;
}

.hm-process__rail {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1.05rem;
  width: 3px;
  background: var(--hm-line);
  overflow: hidden;
}

.hm-process__rail span {
  display: block;
  width: 100%;
  height: var(--rail-fill, 8%);
  background: var(--hm-accent);
  transition: height 160ms linear;
}

.hm-process-step {
  display: grid;
  grid-template-columns: 2.1rem minmax(0, 1fr);
  gap: 1.1rem;
  min-width: 0;
  padding: 1.15rem 0 1.15rem 3.5rem;
  border-bottom: 1px solid var(--hm-line);
}

.hm-process-step h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.hm-process-step p {
  margin-top: 0.55rem;
  color: var(--hm-muted);
}

.hm-process-step.hm-step-active {
  border-bottom-color: var(--hm-accent);
}

.hm-process-step.hm-step-active .hm-step-number,
.hm-process-step.hm-step-active h3 {
  color: var(--hm-accent);
}

.hm-step-number {
  margin-top: 0.25rem;
}

.hm-contact-email {
  display: inline-block;
  max-width: 100%;
  margin-top: 0.85rem;
  color: var(--hm-text);
  font-family: var(--hm-display);
  font-size: clamp(2.2rem, 6vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.065em;
  transition: color 180ms ease, transform 180ms ease;
}

.hm-contact-email:hover,
.hm-contact-email:focus-visible {
  color: var(--hm-accent);
  transform: translateX(0.18rem);
}

.hm-js [data-reveal].hm-will-reveal {
  opacity: 1;
  transform: none;
}

.hm-js [data-reveal] {
  transition: none;
}

.hm-js .hm-panel--priced,
.hm-js .hm-route-step,
.hm-js .hm-process-step {
  transition: opacity 520ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--hm-delay, 0ms);
}

.hm-js .hm-panel--priced.hm-will-reveal,
.hm-js .hm-route-step.hm-will-reveal,
.hm-js .hm-process-step.hm-will-reveal {
  transform: translateY(16px);
}

@keyframes hmWipe {
  to {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes hmDrift {
  0% {
    transform: scale(1.01) translate3d(-0.4%, 0.2%, 0);
  }

  100% {
    transform: scale(1.055) translate3d(0.8%, -0.7%, 0);
  }
}

@media (max-width: 1120px) {
  :root {
    --hm-sidebar: 15.5rem;
  }

  .hm-hero {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
  }

  .hm-visual {
    width: min(32rem, 100%);
    margin-inline: auto;
  }

  .hm-card-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hm-card-grid--four .hm-panel:nth-child(2n) {
    border-right: 0;
  }

  .hm-proof,
  .hm-proof.hm-proof--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .hm-sidebar {
    position: relative;
    width: auto;
    inset: auto;
    padding: 1rem;
    border-right: 0;
    border-bottom: 1px solid var(--hm-line);
  }

  .hm-main {
    margin-left: 0;
    padding-inline: 1rem;
  }

  .hm-brand {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.8rem;
  }

  .hm-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.85rem;
    margin-top: 1.15rem;
  }

  .hm-sidebar__foot {
    margin-top: 1rem;
  }

  .hm-hero,
  .hm-page-lead,
  .hm-contact-lead {
    padding-top: 3.2rem;
  }

  .hm-section-head,
  .hm-split {
    grid-template-columns: 1fr;
  }

  .hm-card-grid--stretch,
  .hm-card-grid--three {
    grid-template-columns: 1fr;
  }

  .hm-card-grid--three .hm-panel:not(:last-child) {
    border-right: 0;
  }

  .hm-footer {
    grid-template-columns: 1fr;
  }

  .hm-footer__nav {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .hm-main {
    padding-inline: 0.85rem;
  }

  .hm-display {
    font-size: clamp(2.7rem, 18vw, 4.4rem);
  }

  .hm-card-grid--four,
  .hm-proof,
  .hm-proof.hm-proof--three {
    grid-template-columns: 1fr;
  }

  .hm-card-grid--four .hm-panel:not(:last-child) {
    border-right: 0;
  }

  .hm-route__line {
    left: 0.8rem;
  }

  .hm-route-step,
  .hm-route-step--offset {
    justify-self: stretch;
    width: 100%;
    padding-left: 2rem;
  }

  .hm-process-step {
    grid-template-columns: 1fr;
    padding-left: 2.5rem;
  }

  .hm-contact-email,
  .hm-footer__email {
    font-size: clamp(1.85rem, 11vw, 3rem);
  }

  .hm-actions {
    justify-content: flex-start;
  }

  .hm-hero__copy,
  .hm-page-lead,
  .hm-contact-lead {
    text-align: left;
  }

  .hm-hero__copy p,
  .hm-page-lead p,
  .hm-contact-lead p {
    margin-inline: 0;
  }
}

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

  .hm-js [data-reveal].hm-will-reveal {
    opacity: 1;
    transform: none;
  }
}