:root {
  --navy: #102d3a;
  --navy-deep: #08212b;
  --blue: #177ba3;
  --blue-dark: #0d6386;
  --orange: #bd3e1e;
  --orange-dark: #97280f;
  --copper: #a7653a;
  --mist: #eaf3f4;
  --mist-deep: #d7e9eb;
  --paper: #fcfefd;
  --white: #ffffff;
  --ink: #17313a;
  --slate: #526870;
  --line: #c8dadd;
  --error: #a42a17;
  --success: #13704f;
  --shadow: 0 22px 70px rgba(16, 45, 58, 0.16);
  --display: "Avenir Next Condensed", "Arial Narrow", "Avenir Next", "Segoe UI", sans-serif;
  --body: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  --shell: min(1180px, calc(100vw - 48px));
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.dialog-open {
  overflow: hidden;
}

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

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

a {
  color: var(--blue-dark);
  text-underline-offset: 0.2em;
}

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

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

h1,
h2,
h3 {
  color: var(--navy);
  font-family: var(--display);
  font-weight: 750;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.7rem, 7vw, 6.9rem);
}

h2 {
  max-width: 790px;
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 5vw, 5rem);
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

p {
  max-width: 70ch;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 18px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-160%);
}

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

.prototype-strip {
  display: flex;
  justify-content: center;
  gap: 28px;
  min-height: 34px;
  padding: 7px 20px;
  color: var(--white);
  background: var(--navy-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.prototype-strip span + span {
  color: #b8d5dc;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(16, 45, 58, 0.12);
  background: rgba(252, 254, 253, 0.96);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 42px;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  color: var(--navy);
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.brand-copy span {
  margin-top: 4px;
  color: var(--slate);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.header-proof,
.header-contact {
  display: flex;
  align-items: center;
}

.rating-lockup {
  display: flex;
  align-items: center;
  gap: 9px;
}

.rating-number {
  color: var(--orange);
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.rating-lockup > span:last-child,
.header-contact > span {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.rating-lockup strong,
.header-contact strong {
  font-size: 0.83rem;
}

.rating-lockup small,
.header-contact small {
  color: var(--slate);
  font-size: 0.75rem;
}

.header-contact {
  gap: 18px;
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

.button:active {
  transform: translateY(0);
}

.button-small {
  min-height: 42px;
  padding: 9px 15px;
  font-size: 0.86rem;
}

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

.button-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

.button-outline {
  color: var(--navy);
  background: transparent;
  border-color: var(--navy);
}

.button-outline:hover {
  color: var(--white);
  background: var(--navy);
}

.button-quiet {
  color: var(--navy);
  background: transparent;
  border-color: var(--line);
}

.button-quiet:hover {
  border-color: var(--navy);
}

.button-full {
  width: 100%;
}

.button-light {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
}

.button-light:hover {
  background: var(--mist);
  border-color: var(--mist);
}

.button-dark-outline {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
}

.button-dark-outline:hover {
  border-color: var(--white);
}

.hero {
  position: relative;
  overflow: clip;
  padding: 58px 0 82px;
  background: var(--paper);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 540px;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(23, 123, 163, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 123, 163, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero-route {
  position: absolute;
  inset: auto 0 62px;
  height: 30px;
  pointer-events: none;
}

.hero-route span {
  position: absolute;
  width: 44%;
  height: 8px;
  border-radius: 999px;
}

.route-cold {
  left: -7%;
  top: 4px;
  background: var(--blue);
}

.route-hot {
  right: -7%;
  bottom: 2px;
  background: var(--orange);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
  align-items: start;
  gap: 28px 48px;
  width: min(1180px, calc(100vw - 48px));
}

.hero-copy {
  grid-column: 1;
  grid-row: 1;
  padding: 10px 0 0;
}

.hero-copy h1 {
  max-width: 610px;
  margin-bottom: 20px;
  font-size: clamp(3.5rem, 4.8vw, 4.9rem);
}

.service-label,
.section-kicker,
.request-heading > p {
  margin-bottom: 18px;
  color: var(--blue-dark);
  font-size: 0.88rem;
  font-weight: 800;
}

.service-label::before,
.section-kicker::before,
.request-heading > p::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 5px;
  margin: 0 10px 2px 0;
  border-radius: 999px;
  background: var(--blue);
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 24px;
  color: var(--slate);
  font-size: clamp(1.04rem, 1.4vw, 1.22rem);
  line-height: 1.55;
}

.hero-offer {
  max-width: 610px;
  margin-bottom: 24px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-left: 6px solid var(--orange);
  background: rgba(255, 255, 255, 0.82);
}

.hero-offer > p {
  margin-bottom: 10px;
  color: var(--navy);
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
}

.hero-offer ul {
  display: grid;
  gap: 7px;
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
}

.hero-offer li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-offer li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 1px;
  width: 10px;
  height: 3px;
  background: var(--blue);
}

.hero-offer > span {
  display: block;
  color: var(--slate);
  font-size: 0.75rem;
  line-height: 1.4;
}

.hero-offer > span + span {
  margin-top: 4px;
}

.hero-offer .offer-availability {
  color: var(--navy);
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 760px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  border-block: 1px solid var(--line);
}

.hero-benefits li {
  position: relative;
  padding: 16px 18px 16px 24px;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
}

.hero-benefits li + li {
  border-left: 1px solid var(--line);
}

.hero-benefits li::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--copper);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.trust-ledger {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 610px;
  margin-bottom: 0;
}

.trust-ledger div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.trust-ledger strong {
  color: var(--navy);
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1.05;
}

.trust-ledger span {
  color: var(--slate);
  font-size: 0.78rem;
  line-height: 1.4;
}

.hero-photo {
  position: relative;
  overflow: hidden;
  min-height: 0;
  height: 310px;
  margin: 0 0 24px;
  border-radius: 14px;
  background: var(--navy);
  box-shadow: 0 18px 50px rgba(16, 45, 58, 0.18);
}

.hero-photo picture,
.hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-photo img {
  object-fit: cover;
  object-position: center 48%;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(to top, rgba(8, 33, 43, 0.88), transparent);
  pointer-events: none;
}

.hero-photo figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--white);
}

.hero-photo figcaption strong {
  font-family: var(--display);
  font-size: 1.28rem;
  line-height: 1.05;
}

.hero-photo figcaption span {
  color: #d5e8ec;
  font-size: 0.76rem;
  line-height: 1.35;
}

.request-card {
  position: relative;
  top: auto;
  z-index: 2;
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  padding: 28px;
  border: 1px solid rgba(16, 45, 58, 0.12);
  border-top: 8px solid var(--orange);
  border-radius: 18px 18px 12px 12px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.request-heading > p {
  margin-bottom: 10px;
  color: var(--orange-dark);
}

.request-heading > p::before {
  background: var(--orange);
}

.request-heading h2 {
  margin-bottom: 12px;
  font-size: clamp(2.25rem, 3.1vw, 3rem);
}

.request-heading > span {
  display: block;
  color: var(--slate);
  font-size: 0.83rem;
  line-height: 1.4;
}

.step-meter {
  position: relative;
  overflow: hidden;
  height: 7px;
  margin: 26px 0 9px;
  border-radius: 999px;
  background: var(--mist-deep);
}

.step-meter-fill {
  display: block;
  width: 50%;
  height: 100%;
  border-radius: inherit;
  background: var(--orange);
  transition: width 220ms ease;
}

.step-status {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--slate);
  font-size: 0.78rem;
}

.step-status strong {
  color: var(--navy);
}

.form-step {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.form-step legend {
  width: 100%;
  margin-bottom: 16px;
  color: var(--navy);
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 750;
}

.choice-stack {
  display: grid;
  gap: 8px;
}

.choice-tile {
  position: relative;
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 11px;
  align-items: start;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  cursor: pointer;
  transition: border-color 140ms ease, background-color 140ms ease;
}

.choice-tile:hover {
  border-color: var(--blue);
}

.choice-tile:has(input:checked) {
  border-color: var(--blue);
  background: var(--mist);
}

.choice-tile input {
  width: 19px;
  height: 19px;
  margin: 3px 0 0;
  accent-color: var(--blue-dark);
}

.choice-tile span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.choice-tile strong {
  color: var(--navy);
  font-size: 0.88rem;
  line-height: 1.35;
}

.choice-tile small {
  color: var(--slate);
  font-size: 0.74rem;
  line-height: 1.35;
}

.field-group {
  margin-top: 16px;
}

.field-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field-group label {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 750;
}

.field-group label span {
  color: var(--slate);
  font-weight: 500;
}

input[type="text"],
input[type="tel"],
input[type="email"],
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid #a9c0c5;
  border-radius: 6px;
  color: var(--ink);
  background: var(--paper);
}

textarea {
  min-height: 86px;
  resize: vertical;
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: var(--error);
  background: #fff8f6;
}

.field-note {
  display: block;
  margin-top: 5px;
  color: var(--slate);
  font-size: 0.72rem;
  line-height: 1.35;
}

.field-error {
  min-height: 0;
  margin: 5px 0 0;
  color: var(--error);
  font-size: 0.74rem;
  font-weight: 650;
  line-height: 1.35;
}

.field-error:empty {
  display: none;
}

.check-row {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 16px;
  color: var(--ink);
  font-size: 0.78rem;
  line-height: 1.4;
}

.check-row input {
  width: 19px;
  height: 19px;
  margin: 1px 0 0;
  accent-color: var(--blue-dark);
}

.form-actions {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  margin-top: 22px;
}

.privacy-note {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--slate);
  font-size: 0.7rem;
  line-height: 1.4;
}

.request-success {
  padding: 28px 6px 18px;
  color: var(--success);
  text-align: center;
}

.request-success svg {
  width: 58px;
  margin: 0 auto 18px;
}

.request-success h3 {
  font-size: 2.15rem;
}

.request-success p {
  margin: 0 auto 22px;
  color: var(--slate);
  font-size: 0.88rem;
}

.section-heading {
  margin-bottom: 48px;
}

.section-heading h2,
.process-intro h2,
.proof-statement h2,
.area-grid h2,
.final-cta h2 {
  max-width: 830px;
}

.section-kicker {
  margin-bottom: 15px;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 64px;
}

.split-heading p:last-child {
  margin-bottom: 25px;
  color: var(--slate);
}

.need-router {
  padding: 105px 0;
  color: var(--white);
  background: var(--navy);
}

.need-router .section-kicker,
.need-router h2 {
  color: var(--white);
}

.need-router .section-kicker::before {
  background: var(--orange);
}

.need-router .split-heading > p {
  color: #bcd0d5;
}

.route-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.route-option {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  min-height: 290px;
  padding: 38px;
  border: 0;
  color: var(--white);
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.route-option + .route-option {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.route-option::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 180ms ease;
}

.route-option-urgent::after {
  background: rgba(225, 90, 50, 0.13);
}

.route-option-planned::after {
  background: rgba(23, 123, 163, 0.18);
}

.route-option:hover::after,
.route-option:focus-visible::after {
  opacity: 1;
}

.route-option > * {
  position: relative;
  z-index: 1;
}

.route-index {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 800;
}

.route-copy {
  display: flex;
  flex-direction: column;
}

.route-copy strong {
  max-width: 16ch;
  margin-bottom: 18px;
  font-family: var(--display);
  font-size: clamp(2rem, 3.3vw, 3.35rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.route-copy small {
  max-width: 44ch;
  color: #c8dadd;
  font-size: 0.92rem;
  line-height: 1.55;
}

.route-action {
  grid-column: 2;
  align-self: end;
  width: max-content;
  padding-bottom: 3px;
  border-bottom: 2px solid currentColor;
  font-size: 0.82rem;
  font-weight: 750;
}

.service-fit {
  padding: 116px 0;
}

.service-ledger {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}

.service-ledger article {
  position: relative;
  min-height: 280px;
  padding: 34px 34px 34px 0;
}

.service-ledger article + article {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.service-line {
  display: block;
  width: 68px;
  height: 8px;
  margin-bottom: 38px;
  border-radius: 999px;
}

.line-copper { background: var(--copper); }
.line-blue { background: var(--blue); }
.line-orange { background: var(--orange); }

.service-ledger h3 {
  max-width: 14ch;
  font-size: 2rem;
}

.service-ledger p {
  margin-bottom: 0;
  color: var(--slate);
  font-size: 0.93rem;
}

.fit-note {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 30px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.fit-note strong {
  color: var(--navy);
}

.fit-note span {
  color: var(--slate);
  font-size: 0.88rem;
}

.fit-note a {
  font-weight: 750;
}

.process {
  padding: 110px 0;
  background: var(--mist);
}

.process-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 100px;
}

.process-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.process-intro p:last-child {
  color: var(--slate);
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid #b8ced2;
}

.process-list li:first-child {
  border-top: 1px solid #b8ced2;
}

.process-list > li > span {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 2px solid var(--copper);
  border-radius: 50%;
  color: var(--copper);
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 800;
}

.process-list h3 {
  margin-bottom: 6px;
  font-size: 1.7rem;
}

.process-list p {
  margin-bottom: 0;
  color: var(--slate);
}

.proof-section {
  padding: 118px 0;
  background: var(--paper);
}

.proof-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 90px;
  align-items: start;
}

.proof-statement p:last-child {
  color: var(--slate);
  font-size: 1.05rem;
}

.proof-ledger {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  border-top: 1px solid var(--line);
}

.proof-ledger div {
  min-height: 156px;
  padding: 25px 22px 25px 0;
  border-bottom: 1px solid var(--line);
}

.proof-ledger div:nth-child(even) {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.proof-ledger dt {
  margin-bottom: 12px;
  color: var(--orange-dark);
  font-family: var(--display);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.proof-ledger dd {
  margin: 0;
  color: var(--slate);
  font-size: 0.88rem;
}

.service-area {
  padding: 108px 0;
  color: var(--white);
  background: var(--blue-dark);
}

.area-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 100px;
  align-items: center;
}

.service-area h2,
.service-area .section-kicker {
  color: var(--white);
}

.service-area .section-kicker::before {
  background: var(--orange);
}

.area-grid > div:first-child > p:not(.section-kicker) {
  margin-bottom: 28px;
  color: #d5e8ec;
}

.area-board {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.area-board span {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  font-size: 0.86rem;
  font-weight: 700;
}

.area-board small {
  flex-basis: 100%;
  margin-top: 16px;
  color: #c8dde1;
  font-size: 0.75rem;
}

.faq-section {
  padding: 118px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 90px;
  align-items: start;
}

.faq-grid .section-heading {
  position: sticky;
  top: 130px;
  margin-bottom: 0;
}

.faq-list {
  border-top: 1px solid var(--line);
}

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

.faq-list summary {
  position: relative;
  padding: 24px 54px 24px 0;
  color: var(--navy);
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 750;
  line-height: 1.15;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 19px;
  right: 8px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--blue-dark);
  font-family: var(--body);
  font-size: 1.25rem;
  font-weight: 500;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 66ch;
  padding: 0 52px 24px 0;
  color: var(--slate);
}

.final-cta {
  padding: 78px 0;
  color: var(--white);
  background: var(--orange);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.final-cta .section-kicker,
.final-cta h2 {
  color: var(--white);
}

.final-cta .section-kicker::before {
  background: var(--navy);
}

.final-cta h2 {
  margin-bottom: 0;
  font-size: clamp(2.6rem, 4.8vw, 4.7rem);
}

.final-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 240px;
}

.site-footer {
  padding: 70px 0 110px;
  color: #c2d5d9;
  background: var(--navy-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 70px;
  padding-bottom: 46px;
}

.brand-footer {
  color: var(--white);
}

.brand-footer .brand-copy span {
  color: #a9c4ca;
}

.footer-grid p {
  margin: 14px 0 0;
  color: #9db8be;
  font-size: 0.83rem;
}

.footer-grid strong {
  color: var(--white);
  font-size: 0.9rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.76rem;
}

.phone-dialog {
  width: min(540px, calc(100vw - 32px));
  padding: 38px;
  border: 0;
  border-top: 8px solid var(--blue);
  border-radius: 12px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.phone-dialog::backdrop {
  background: rgba(8, 33, 43, 0.74);
  backdrop-filter: blur(3px);
}

.phone-dialog h2 {
  font-size: 2.8rem;
}

.phone-dialog > p:not(.section-kicker) {
  color: var(--slate);
}

.dialog-close {
  position: absolute;
  top: 13px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
  background: transparent;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}

.hours-list {
  margin: 26px 0;
  border-top: 1px solid var(--line);
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.hours-list dt {
  color: var(--navy);
  font-weight: 700;
}

.hours-list dd {
  margin: 0;
  color: var(--slate);
  text-align: right;
}

.mobile-action-bar,
.noscript-note {
  display: none;
}

@media (max-width: 1240px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: 28px 36px;
    width: var(--shell);
  }

  .request-card {
    grid-column: 2;
    grid-row: 1;
  }
}

@media (max-width: 1020px) {
  :root {
    --shell: min(100% - 36px, 850px);
  }

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

  .header-proof {
    display: none;
  }

  .hero {
    padding-top: 62px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .hero-photo,
  .request-card {
    grid-column: auto;
    grid-row: auto;
  }

  .hero-photo {
    min-height: 0;
    height: 360px;
  }

  .request-card {
    position: relative;
    top: auto;
    width: min(680px, 100%);
  }

  .split-heading,
  .proof-grid,
  .area-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

  .route-option + .route-option {
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    border-left: 0;
  }

  .route-option {
    min-height: 245px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .process-intro,
  .faq-grid .section-heading {
    position: static;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .final-actions {
    flex-direction: row;
    width: max-content;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: calc(100% - 28px);
  }

  html {
    scroll-padding-top: 86px;
  }

  body {
    padding-bottom: 72px;
    font-size: 16px;
  }

  h1 {
    font-size: clamp(3.55rem, 16.5vw, 5.35rem);
  }

  h2 {
    font-size: clamp(2.6rem, 12.5vw, 4rem);
  }

  .prototype-strip {
    justify-content: space-between;
    gap: 12px;
    padding-inline: 14px;
    font-size: 0.66rem;
  }

  .site-header {
    top: 0;
  }

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

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-copy strong {
    font-size: 1.1rem;
  }

  .brand-copy span {
    font-size: 0.64rem;
  }

  .header-contact > span {
    display: none;
  }

  .header-contact {
    padding: 0;
    border: 0;
  }

  .header-contact .button {
    min-height: 40px;
    padding-inline: 12px;
    font-size: 0.76rem;
  }

  .hero {
    min-height: 0;
    padding: 32px 0 70px;
  }

  .hero::before {
    height: 380px;
    background-size: 26px 26px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-copy h1 {
    margin-bottom: 16px;
    font-size: clamp(3rem, 13.2vw, 4.4rem);
  }

  .service-label,
  .section-kicker,
  .request-heading > p {
    font-size: 0.8rem;
  }

  .hero-lede {
    margin-bottom: 18px;
    font-size: 1rem;
    line-height: 1.48;
  }

  .hero-offer {
    margin-bottom: 18px;
    padding: 16px;
  }

  .hero-benefits {
    grid-template-columns: 1fr;
  }

  .hero-benefits li + li {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .trust-ledger {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-left: 16px;
    border-left: 5px solid var(--copper);
  }

  .hero-photo {
    min-height: 0;
    height: 300px;
    border-radius: 12px;
  }

  .hero-photo figcaption {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .request-card {
    padding: 26px 20px;
    border-radius: 12px 12px 8px 8px;
  }

  .request-heading h2 {
    font-size: 2.65rem;
  }

  .field-pair {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-actions {
    grid-template-columns: 1fr;
  }

  .need-router,
  .service-fit,
  .process,
  .proof-section,
  .service-area,
  .faq-section {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .route-option {
    grid-template-columns: 44px 1fr;
    gap: 12px;
    min-height: 310px;
    padding: 28px 20px;
  }

  .route-index {
    width: 38px;
    height: 38px;
  }

  .route-copy strong {
    max-width: 15ch;
    font-size: 2.35rem;
  }

  .service-ledger {
    grid-template-columns: 1fr;
  }

  .service-ledger article,
  .service-ledger article + article {
    min-height: 0;
    padding: 28px 0;
    border-left: 0;
  }

  .service-ledger article + article {
    border-top: 1px solid var(--line);
  }

  .service-line {
    margin-bottom: 24px;
  }

  .fit-note {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .process-list li {
    grid-template-columns: 48px 1fr;
    gap: 18px;
  }

  .process-list > li > span {
    width: 42px;
    height: 42px;
  }

  .proof-ledger {
    grid-template-columns: 1fr;
  }

  .proof-ledger div:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }

  .proof-ledger div {
    min-height: 128px;
  }

  .area-board {
    padding: 22px;
  }

  .faq-list summary {
    padding-right: 44px;
    font-size: 1.18rem;
  }

  .faq-list details p {
    padding-right: 10px;
  }

  .final-cta {
    padding: 70px 0;
  }

  .final-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .site-footer {
    padding: 62px 0 38px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 7px;
  }

  .phone-dialog {
    max-height: calc(100dvh - 32px);
    padding: 32px 22px 24px;
    overflow-y: auto;
  }

  .phone-dialog h2 {
    font-size: 2.4rem;
  }

  .mobile-action-bar {
    position: fixed;
    inset: auto 0 0;
    z-index: 40;
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    padding: 9px;
    background: var(--navy-deep);
    box-shadow: 0 -8px 28px rgba(8, 33, 43, 0.2);
    transform: translateY(110%);
    transition: transform 160ms ease;
  }

  .mobile-action-bar.is-visible {
    transform: translateY(0);
  }

  .form-focused .mobile-action-bar {
    transform: translateY(110%);
  }

  .mobile-action-bar button,
  .mobile-action-bar a {
    display: grid;
    place-items: center;
    min-height: 52px;
    border: 0;
    border-radius: 5px;
    font-size: 0.78rem;
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-phone {
    color: var(--white);
    background: transparent;
  }

  .mobile-request {
    color: var(--white);
    background: var(--orange);
  }

  .noscript-note {
    position: fixed;
    inset: auto 0 0;
    z-index: 60;
    display: block;
    padding: 12px;
    color: var(--white);
    background: var(--error);
    font-size: 0.75rem;
    text-align: center;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (forced-colors: active) {
  .service-line,
  .service-label::before,
  .section-kicker::before,
  .request-heading > p::before {
    border: 3px solid currentColor;
  }
}
