@font-face {
  font-family: "Glacial Indifference";
  src: url("../fonts/glacial-indifference/GlacialIndifference-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #17211f;
  --muted: #5f6b67;
  --line: #dfe7e2;
  --paper: #ffffff;
  --soft: #f4f7f4;
  --teal: #008c95;
  --teal-dark: #065f68;
  --mint: #d9f5f4;
  --coral: #d96846;
  --gold: #c49035;
  --shadow: 0 24px 70px rgba(23, 33, 31, 0.12);
  --radius: 8px;
  --container: 1160px;
  --header-offset: 76px;
  --header-current-height: 76px;
  --header-bg-alpha: 0;
  --header-border-alpha: 0;
  --header-shadow-alpha: 0;
  --header-blur: 0px;
  --header-saturate: 100%;
  --default-logo-opacity: 0;
  --hero-logo-opacity: 1;
  --brand-suffix-color: #fff;
  --nav-link-color: #fff;
  --nav-link-active-color: #fff;
  --menu-line-color: #fff;
  --nav-cta-bg: rgba(255, 255, 255, 0.14);
  --nav-cta-border: rgba(255, 255, 255, 0.44);
  --nav-cta-hover-bg: rgba(255, 255, 255, 0.24);
  --nav-cta-hover-border: rgba(255, 255, 255, 0.62);
  --nav-cta-shadow-color: rgba(0, 140, 149, 0.12);
  --nav-call-bg: rgba(255, 255, 255, 0.12);
  --nav-call-border: rgba(255, 255, 255, 0.34);
  --nav-call-color: #fff;
  --nav-call-hover-bg: rgba(255, 255, 255, 0.2);
  --nav-call-hover-border: rgba(255, 255, 255, 0.58);
  --nav-call-hover-color: #fff;
  --hero-viewport-height: 100dvh;
  --mobile-hero-gap: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.narrow {
  width: min(100% - 40px, 850px);
}

.section {
  padding: 88px 0;
}

.section-muted {
  background: var(--soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px max(20px, calc((100vw - var(--container)) / 2));
  background: rgba(255, 255, 255, var(--header-bg-alpha, 0.78));
  border-bottom: 1px solid rgba(255, 255, 255, var(--header-border-alpha, 0.46));
  box-shadow: 0 12px 34px rgba(23, 33, 31, var(--header-shadow-alpha, 0.06));
  backdrop-filter: blur(var(--header-blur, 22px)) saturate(var(--header-saturate, 150%));
  -webkit-backdrop-filter: blur(var(--header-blur, 22px)) saturate(var(--header-saturate, 150%));
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
}

.landing-page .site-header {
  position: fixed;
  right: 0;
  left: 0;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 21;
  display: none;
  border: 0;
  background: rgba(8, 15, 14, 0.34);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 0s linear 220ms;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  align-items: center;
}

.brand-logo {
  grid-area: 1 / 1;
  width: auto;
  height: 48px;
  transition: opacity 180ms ease;
}

.brand-logo-default {
  opacity: var(--default-logo-opacity, 1);
}

.brand-logo-hero {
  opacity: var(--hero-logo-opacity, 0);
}

.brand-suffix {
  color: var(--brand-suffix-color, var(--teal));
  font-family: "Glacial Indifference", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1;
  transform: translateY(1px);
  transition: color 180ms ease;
}

.primary-nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--nav-link-color, var(--muted));
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.primary-nav a {
  position: relative;
  z-index: 1;
  padding: 8px 0;
  text-decoration: none;
  transition: color 180ms ease;
}

.primary-nav a:hover,
.primary-nav a.is-active {
  color: var(--nav-link-active-color, var(--teal));
}

.nav-indicator {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
  width: var(--nav-indicator-width, 0);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), #38d4df);
  opacity: var(--nav-indicator-opacity, 0);
  transform: translateX(var(--nav-indicator-x, 0));
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), width 420ms cubic-bezier(0.22, 1, 0.36, 1), opacity 180ms ease;
  box-shadow: 0 7px 18px rgba(0, 140, 149, 0.28);
  pointer-events: none;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 40px;
  padding: 10px 18px !important;
  border-radius: var(--radius);
  background: var(--nav-cta-bg, var(--teal));
  border: 1px solid var(--nav-cta-border, transparent);
  color: var(--paper) !important;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
  box-shadow: 0 0 0 rgba(0, 140, 149, 0);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  background: var(--nav-cta-hover-bg, var(--teal-dark));
  border-color: var(--nav-cta-hover-border, transparent);
  color: var(--paper) !important;
  box-shadow: 0 12px 26px var(--nav-cta-shadow-color, rgba(0, 140, 149, 0.22));
}

.nav-call {
  background: var(--nav-call-bg, var(--mint));
  border-color: var(--nav-call-border, rgba(0, 140, 149, 0.58));
  color: var(--nav-call-color, var(--teal-dark)) !important;
  box-shadow: none;
}

.nav-call:hover {
  background: var(--nav-call-hover-bg, var(--teal-dark));
  border-color: var(--nav-call-hover-border, var(--teal-dark));
  color: var(--nav-call-hover-color, var(--paper)) !important;
  box-shadow: none;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.menu-toggle svg {
  display: block;
  width: 38px;
  height: 38px;
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line {
  fill: none;
  stroke: var(--menu-line-color, var(--teal));
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3px;
  transition: stroke 220ms ease, stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line-top-bottom {
  stroke-dasharray: 12 63;
}

body.nav-open .menu-toggle svg {
  transform: rotate(-45deg);
}

body.nav-open .menu-toggle .line {
  stroke: var(--teal-dark);
}

body.nav-open .site-header {
  background: #fff;
  border-bottom-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.nav-open .brand-logo-default {
  opacity: 1;
}

body.nav-open .brand-logo-hero {
  opacity: 0;
}

body.nav-open .brand-suffix {
  color: var(--teal);
}

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

body.nav-open .menu-toggle .line-top-bottom {
  stroke-dasharray: 20 300;
  stroke-dashoffset: -32.42;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: var(--hero-viewport-height);
  padding: calc(76px + clamp(14px, 3vw, 34px)) 0 clamp(18px, 4vw, 46px);
  background: #16211f;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(14, 24, 22, 0.82) 0%, rgba(14, 24, 22, 0.58) 40%, rgba(14, 24, 22, 0.18) 78%),
    linear-gradient(180deg, rgba(14, 24, 22, 0.2) 0%, rgba(14, 24, 22, 0.62) 100%);
  content: "";
  pointer-events: none;
}

.hero-grid,
.split,
.pricing-layout,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 56px;
  align-items: center;
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: calc(var(--hero-viewport-height) - 76px - clamp(14px, 3vw, 34px) - clamp(18px, 4vw, 46px));
}

.hero-copy {
  padding: clamp(18px, 2.4vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  max-width: 610px;
}

.hero-copy-inner {
  display: grid;
  gap: 14px;
}

.hero-copy h1,
.hero-copy .lead,
.hero-copy p {
  color: var(--paper);
}

.hero-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.hero-copy .eyebrow {
  color: #9eeaf0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 6vw, 4.8rem);
}

.hero h1 {
  margin-bottom: clamp(12px, 1.8vw, 18px);
  font-size: clamp(2rem, 4.25vw, 3.85rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.6vw, 3.25rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

p {
  color: var(--muted);
}

.lead {
  color: var(--ink);
  font-size: 1.25rem;
}

.hero .lead {
  margin-bottom: 10px;
  font-size: clamp(1rem, 1.28vw, 1.12rem);
}

.hero-copy p:not(.eyebrow):not(.lead):not(.microcopy) {
  margin-bottom: 0;
  font-size: clamp(0.94rem, 1.08vw, 1rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(0, 140, 149, 0.28);
  outline-offset: 3px;
}

.button-primary {
  background: var(--teal);
  color: var(--paper);
  box-shadow: 0 14px 30px rgba(0, 140, 149, 0.22);
}

.button-primary:hover {
  background: var(--teal-dark);
}

.button-secondary {
  border-color: var(--line);
  background: var(--paper);
  color: var(--ink);
}

.microcopy {
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-row span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.13);
  color: var(--paper);
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-side-notes {
  position: relative;
  min-height: min(420px, 48vh);
}

.floating-card {
  position: absolute;
  width: min(260px, 72%);
  padding: 14px;
  border: 1px solid rgba(223, 231, 226, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
}

.floating-card strong,
.floating-card span {
  display: block;
}

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

.floating-card-top {
  top: 16%;
  right: 10%;
  left: auto;
}

.floating-card-bottom {
  right: 0;
  bottom: 18%;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.split {
  grid-template-columns: minmax(0, 0.96fr) minmax(300px, 0.76fr);
}

.split.reverse {
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1fr);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.2em;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--teal-dark);
  content: "✓";
  font-size: 0.78rem;
  font-weight: 900;
}

.problem-list {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.feature-grid,
.category-grid,
.steps {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.price-card,
.mini-report,
.steps article,
.contact-form,
.business-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.feature-card {
  padding: 22px;
}

.craft-section {
  background:
    linear-gradient(120deg, rgba(217, 245, 244, 0.62), rgba(255, 255, 255, 0) 52%),
    var(--paper);
}

.craft-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.craft-label {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.card-icon {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 900;
}

.price-band {
  background: #16211f;
  color: var(--paper);
}

.price-band p {
  color: rgba(255, 255, 255, 0.78);
}

.pricing-layout {
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.72fr);
}

.price-card {
  padding: 28px;
}

.price-card.featured {
  border-color: rgba(217, 242, 232, 0.38);
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.price-card.accent {
  border-top: 4px solid var(--gold);
}

.price-card.local-service {
  border-top: 4px solid var(--teal);
}

.price-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.price-card-head span {
  color: var(--teal);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-card-head strong {
  max-width: 190px;
  font-size: 1.75rem;
  line-height: 1.05;
  text-align: right;
}

.note {
  margin: 20px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.service-pair {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.service-pair .section-heading {
  grid-column: 1 / -1;
}

.callout {
  padding: 34px;
  border-radius: var(--radius);
  background: var(--ink);
}

.callout h2,
.callout p {
  color: var(--paper);
}

.callout p {
  color: rgba(255, 255, 255, 0.76);
}

.mini-report {
  position: relative;
  padding: 30px;
  box-shadow: var(--shadow);
}

.mini-report ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.report-dot {
  display: block;
  width: 54px;
  height: 8px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--coral), var(--gold));
}

.category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-grid span {
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  font-weight: 800;
}

.steps {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.steps article {
  padding: 20px;
}

.steps span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--paper);
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  overflow: hidden;
  transition:
    height 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.faq-list details[open] {
  border-color: rgba(0, 140, 149, 0.22);
  box-shadow: 0 16px 36px rgba(21, 63, 68, 0.08);
}

.faq-list summary {
  position: relative;
  padding: 18px 48px 18px 18px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  right: 18px;
  top: 50%;
  color: var(--teal);
  content: "+";
  font-size: 1.4rem;
  line-height: 1;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 260ms ease, color 260ms ease;
}

.faq-list details[open] summary::after {
  content: "−";
  transform: translateY(-50%) rotate(180deg);
}

.faq-list details p {
  margin: 0;
  padding: 0 18px 20px;
}

.contact-section {
  background:
    linear-gradient(120deg, rgba(217, 242, 232, 0.78), rgba(255, 255, 255, 0) 45%),
    var(--paper);
}

.contact-grid {
  align-items: start;
}

.business-card {
  display: grid;
  gap: 6px;
  margin-top: 26px;
  padding: 22px;
  font-style: normal;
}

.business-card a {
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  box-shadow: var(--shadow);
}

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

.form-row {
  display: grid;
  gap: 7px;
}

label {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfd9d3;
  border-radius: var(--radius);
  background: #fbfdfc;
  color: var(--ink);
}

input,
select {
  min-height: 46px;
  padding: 10px 12px;
}

textarea {
  resize: vertical;
  padding: 12px;
}

.privacy-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-weight: 600;
}

.privacy-check input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.privacy-links {
  display: flex;
  gap: 16px;
  margin: 0;
  font-size: 0.9rem;
}

.privacy-links a,
.site-footer a {
  color: var(--teal-dark);
  font-weight: 800;
}

.form-submit {
  width: 100%;
}

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

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.footer-brand {
  max-width: 360px;
}

.footer-brand strong {
  display: block;
  margin-bottom: 6px;
  color: var(--paper);
  font-family: "Glacial Indifference", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.05rem;
}

.footer-links {
  display: flex;
  gap: 14px;
}

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

.legal-hero {
  padding: 86px 0 58px;
  background: var(--soft);
}

.legal-hero h1 {
  margin-bottom: 16px;
}

.legal-updated {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.legal-section {
  padding-top: 58px;
}

.legal-content {
  color: var(--muted);
}

.legal-content h2 {
  margin: 42px 0 12px;
  color: var(--ink);
  font-size: 1.45rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  font-size: 1rem;
}

.legal-content ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.legal-content a {
  color: var(--teal-dark);
  font-weight: 800;
}

.mobile-sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 20;
  display: none;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: var(--radius);
  background: var(--teal);
  color: var(--paper);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 18px 38px rgba(0, 140, 149, 0.32);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

body.show-mobile-cta .mobile-sticky-cta {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .primary-nav {
    gap: 12px;
    font-size: 0.84rem;
  }

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

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

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

}

@media (max-width: 820px) {
  :root {
    --header-offset: 68px;
    --mobile-hero-gap: 18px;
  }

  .site-header {
    min-height: 68px;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    z-index: 22;
    inset: var(--header-current-height) 0 auto 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 20px 24px;
    background: #fff;
    border-bottom: 0;
    box-shadow: none;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 220ms ease, visibility 0s linear 220ms;
  }

  .nav-overlay {
    display: block;
  }

  body.nav-open .site-header {
    z-index: 23;
  }

  body.nav-open .primary-nav {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transition: opacity 220ms ease, visibility 0s;
  }

  body.nav-open .nav-overlay {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transition: opacity 220ms ease, visibility 0s;
  }

  .primary-nav a {
    padding: 12px 0;
  }

  .primary-nav a.is-active {
    color: var(--teal-dark);
  }

  .nav-indicator {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hero-grid,
  .split,
  .split.reverse,
  .pricing-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 66px 0;
  }

  .hero {
    min-height: var(--hero-viewport-height);
    padding: calc(var(--header-current-height) + var(--mobile-hero-gap)) 0 var(--mobile-hero-gap);
  }

  .hero-grid {
    min-height: calc(var(--hero-viewport-height) - var(--header-current-height) - var(--mobile-hero-gap) - var(--mobile-hero-gap));
    align-items: stretch;
  }

  .hero-copy {
    max-width: none;
    min-height: 100%;
    padding: 18px;
    display: block;
  }

  .hero-copy-inner {
    display: grid;
    grid-template-rows: 4% 24% 13% 18% 17% 7% 17%;
    gap: 0;
    height: 100%;
    width: 100%;
  }

  .hero-block {
    display: flex;
    min-height: 0;
    align-items: center;
    overflow: hidden;
  }

  .hero-kicker,
  .hero-title,
  .hero-lead,
  .hero-description,
  .hero-micro {
    justify-content: flex-start;
  }

  .hero-action-block,
  .hero-trust {
    align-items: stretch;
  }

  .hero-copy .eyebrow,
  .hero-copy h1,
  .hero-copy .lead,
  .hero-copy p,
  .hero-actions,
  .trust-row {
    margin: 0;
  }

  .hero-copy .eyebrow {
    font-size: clamp(0.8rem, min(3vw, 2.35dvh), 1rem);
    line-height: 1.16;
  }

  .hero-copy .lead,
  .hero-copy p:not(.eyebrow):not(.lead):not(.microcopy) {
    line-height: 1.4;
  }

  .hero-visual {
    opacity: 0.95;
  }

  .hero-visual img {
    object-fit: cover;
  }

  .hero-side-notes {
    display: none;
  }

  .service-pair,
  .steps {
    grid-template-columns: 1fr;
  }

  .price-card-head {
    display: block;
  }

  .price-card-head strong {
    display: block;
    max-width: none;
    margin-top: 8px;
    text-align: left;
  }

  .mobile-sticky-cta {
    display: flex;
    left: 16px;
  }

}

@media (max-width: 560px) {
  .container,
  .narrow {
    width: min(100% - 28px, var(--container));
  }

  h1 {
    font-size: 2.35rem;
  }

  .hero h1 {
    font-size: clamp(1.82rem, min(9.4vw, 5.85dvh), 2.58rem);
    line-height: 1.01;
  }

  .hero {
    --mobile-hero-gap: 14px;
    min-height: var(--hero-viewport-height);
    padding-top: calc(var(--header-current-height) + var(--mobile-hero-gap));
    padding-bottom: var(--mobile-hero-gap);
  }

  .hero-grid {
    min-height: calc(var(--hero-viewport-height) - var(--header-current-height) - var(--mobile-hero-gap) - var(--mobile-hero-gap));
  }

  .hero-copy {
    padding: 16px;
  }

  .hero-copy-inner {
    grid-template-rows: 4% 24% 13% 18% 17% 7% 17%;
  }

  .hero .lead {
    font-size: clamp(1.18rem, min(4.45vw, 3.82dvh), 1.54rem);
    line-height: 1.14;
  }

  .hero-copy p:not(.eyebrow):not(.lead):not(.microcopy) {
    font-size: clamp(1.12rem, min(4.08vw, 3.48dvh), 1.42rem);
    line-height: 1.15;
  }

  .hero-actions,
  .contact-actions {
    margin-top: 0;
  }

  .microcopy {
    font-size: clamp(0.76rem, min(2.35vw, 2dvh), 0.86rem);
    line-height: 1.35;
  }

  .trust-row span {
    padding: 6px 8px;
    font-size: 0.88rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .lead {
    font-size: 1.08rem;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .hero-actions {
    width: 100%;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    height: 100%;
  }

  .button {
    width: 100%;
  }

  .hero-actions .button {
    min-height: 0;
    padding: 6px 14px;
    font-size: clamp(0.96rem, min(3.65vw, 2.75dvh), 1.12rem);
  }

  .trust-row {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
  }

  .trust-row span {
    display: flex;
    min-height: 0;
    align-items: center;
    justify-content: center;
    padding: 5px 7px;
    text-align: center;
    font-size: clamp(0.78rem, min(2.85vw, 2.15dvh), 0.9rem);
    line-height: 1.1;
  }

  .feature-grid,
  .category-grid,
  .form-two {
    grid-template-columns: 1fr;
  }

  .price-card,
  .contact-form,
  .callout {
    padding: 22px;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-height: 760px) and (min-width: 821px) {
  .hero {
    padding: calc(76px + 12px) 0 20px;
  }

  .hero-grid {
    min-height: calc(var(--hero-viewport-height) - 76px - 32px);
  }

  .hero h1 {
    font-size: clamp(1.9rem, 3.8vw, 3.35rem);
  }

  .hero-copy {
    padding: 20px;
  }

  .hero-actions {
    margin-top: 14px;
  }

  .microcopy {
    margin-bottom: 10px;
  }
}

@media (max-width: 820px) {
  .hero-compact .hero {
    --mobile-hero-gap: 10px;
  }

  .hero-compact .hero-copy {
    padding: 14px;
  }

  .hero-compact .hero-copy-inner {
    grid-template-rows: 4% 23% 13% 18% 17% 7% 18%;
  }

  .hero-compact .hero h1 {
    font-size: clamp(1.58rem, min(8.3vw, 5.3dvh), 2.16rem);
    line-height: 1.01;
  }

  .hero-compact .hero .lead,
  .hero-compact .hero-copy p:not(.eyebrow):not(.lead):not(.microcopy) {
    font-size: clamp(1.05rem, min(3.85vw, 3.18dvh), 1.25rem);
    line-height: 1.14;
  }

  .hero-compact .microcopy {
    font-size: clamp(0.7rem, min(2.2vw, 1.8dvh), 0.8rem);
  }

  .hero-compact .trust-row {
    gap: 6px;
  }

  .hero-compact .trust-row span {
    padding: 4px 6px;
  }

  .hero-tight .hero-copy {
    padding: 12px;
  }

  .hero-tight .hero-copy-inner {
    grid-template-rows: 4% 22% 13% 18% 17% 7% 19%;
  }

  .hero-tight .hero h1 {
    font-size: clamp(1.42rem, min(7.45vw, 5.05dvh), 1.94rem);
    line-height: 1.01;
  }

  .hero-tight .hero .lead,
  .hero-tight .hero-copy p:not(.eyebrow):not(.lead):not(.microcopy) {
    font-size: clamp(0.95rem, min(3.38vw, 2.82dvh), 1.12rem);
    line-height: 1.14;
  }

  .hero-tight .microcopy {
    font-size: clamp(0.66rem, min(2vw, 1.7dvh), 0.76rem);
  }

  .hero-se .hero {
    --mobile-hero-gap: 8px;
  }

  .hero-se .hero .container {
    width: min(100% - 20px, var(--container));
  }

  .hero-se .hero-copy {
    padding: 10px;
  }

  .hero-se .hero-copy-inner {
    grid-template-rows: 4% 22% 13% 18% 17% 7% 19%;
  }

  .hero-se .hero-copy .eyebrow {
    font-size: 0.72rem;
    line-height: 1.14;
  }

  .hero-se .hero h1 {
    font-size: clamp(1.34rem, min(7.2vw, 4.95dvh), 1.78rem);
    line-height: 1.01;
  }

  .hero-se .hero .lead,
  .hero-se .hero-copy p:not(.eyebrow):not(.lead):not(.microcopy) {
    font-size: clamp(0.86rem, min(3.05vw, 2.58dvh), 1.02rem);
    line-height: 1.13;
  }

  .hero-se .microcopy {
    font-size: clamp(0.62rem, min(1.9vw, 1.6dvh), 0.7rem);
    line-height: 1.35;
  }

  .hero-se .trust-row {
    gap: 5px;
  }

  .hero-se .trust-row span {
    padding: 5px 6px;
    font-size: clamp(0.66rem, min(2.15vw, 1.82dvh), 0.76rem);
  }
}

@media (max-height: 700px) and (max-width: 820px) {
  .hero {
    --mobile-hero-gap: 10px;
    min-height: var(--hero-viewport-height);
    padding: calc(var(--header-current-height) + var(--mobile-hero-gap)) 0 var(--mobile-hero-gap);
  }

  .hero-grid {
    min-height: calc(var(--hero-viewport-height) - var(--header-current-height) - var(--mobile-hero-gap) - var(--mobile-hero-gap));
  }

  .hero h1 {
    font-size: clamp(1.5rem, min(7.9vw, 4.65dvh), 2rem);
    line-height: 1.01;
  }

  .hero-copy {
    padding: 14px;
  }

  .hero-copy-inner {
    grid-template-rows: 4% 22% 13% 18% 17% 7% 19%;
  }

  .hero .lead,
  .hero-copy p:not(.eyebrow):not(.lead):not(.microcopy) {
    font-size: clamp(0.92rem, min(3.22vw, 2.72dvh), 1.1rem);
    line-height: 1.13;
  }

  .hero-actions {
    gap: 6px;
  }

  .hero-actions .button {
    padding: 5px 12px;
  }
}

@media (min-width: 561px) and (max-width: 820px) {
  .hero-copy-inner,
  .hero-compact .hero-copy-inner,
  .hero-tight .hero-copy-inner,
  .hero-se .hero-copy-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(22px, 3.4dvh, 34px);
  }

  .hero-block {
    flex: 0 0 auto;
    overflow: visible;
  }

  .hero h1,
  .hero-compact .hero h1,
  .hero-tight .hero h1,
  .hero-se .hero h1 {
    font-size: clamp(2.45rem, min(7.2vw, 5.2dvh), 3.15rem);
    line-height: 1.02;
  }

  .hero .lead,
  .hero-compact .hero .lead,
  .hero-tight .hero .lead,
  .hero-se .hero .lead {
    font-size: clamp(1.28rem, min(3.65vw, 3.1dvh), 1.58rem);
    line-height: 1.14;
  }

  .hero-copy p:not(.eyebrow):not(.lead):not(.microcopy),
  .hero-compact .hero-copy p:not(.eyebrow):not(.lead):not(.microcopy),
  .hero-tight .hero-copy p:not(.eyebrow):not(.lead):not(.microcopy),
  .hero-se .hero-copy p:not(.eyebrow):not(.lead):not(.microcopy) {
    font-size: clamp(1.18rem, min(3.25vw, 2.82dvh), 1.42rem);
    line-height: 1.15;
  }

  .hero-action-block,
  .hero-trust {
    align-items: center;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: auto;
    gap: 12px;
  }

  .hero-actions .button {
    width: auto;
    min-height: 54px;
    padding: 14px 20px;
    font-size: clamp(1rem, min(2.4vw, 2.15dvh), 1.14rem);
  }

  .trust-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
  }

  .trust-row span {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    font-size: clamp(0.78rem, min(1.7vw, 1.55dvh), 0.9rem);
  }
}

@media (max-width: 560px) {
  .hero-actions {
    gap: 16px;
  }

  .trust-row,
  .hero-compact .trust-row,
  .hero-tight .trust-row,
  .hero-se .trust-row {
    gap: 14px;
  }
}
