:root {
  --ink: #171717;
  --muted: #5b5f66;
  --line: #d9dde3;
  --paper: #ffffff;
  --warm: #f6f1e8;
  --warm-2: #ebe2d3;
  --navy: #101a2c;
  --navy-2: #16243b;
  --red: #b32127;
  --red-dark: #89191e;
  --rust: #c76a2c;
  --gold: #b8894e;
  --shadow: 0 18px 45px rgba(16, 26, 44, 0.12);
  --max: 1180px;
  --header-height: 198px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--warm);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
p {
  margin: 0;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: var(--header-height);
  background: rgba(16, 26, 44, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.nav-row {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--paper);
  min-width: 0;
}

.brand-logo {
  width: 380px;
  height: 188px;
  object-fit: contain;
  object-position: center;
  padding: 5px;
  background: var(--paper);
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy span {
  font-weight: 900;
}

.brand-copy small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  font-weight: 700;
}

.primary-nav a {
  transition: color 160ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--paper);
}

.menu-toggle {
  display: none;
  width: 46px;
  min-width: 46px;
  padding: 0;
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.menu-toggle-bar {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle {
  flex-direction: column;
  gap: 4px;
}

.site-header.is-open .menu-toggle-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-open .menu-toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-toggle-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-call,
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.nav-call {
  background: var(--paper);
  color: var(--navy);
  white-space: nowrap;
}

.mobile-nav {
  display: none;
}

.button:hover,
.button:focus-visible,
.nav-call:hover,
.nav-call:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--red);
  color: var(--paper);
  box-shadow: 0 14px 26px rgba(179, 33, 39, 0.28);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--red-dark);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary.light {
  border-color: var(--line);
  color: var(--navy);
  background: var(--paper);
}

.hero {
  position: relative;
  min-height: 780px;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 82% 18%, rgba(199, 106, 44, 0.24), transparent 28%),
    linear-gradient(135deg, #07101e 0%, #0d1829 52%, #1b2739 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 74% 28%, rgba(255, 255, 255, 0.12), transparent 26%),
    url("../images/GeminiRVRoad.png") center center / cover no-repeat;
  opacity: 0.8;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 16, 30, 0.88) 0%, rgba(7, 16, 30, 0.72) 34%, rgba(7, 16, 30, 0.24) 68%, rgba(7, 16, 30, 0.58) 100%),
    linear-gradient(0deg, rgba(7, 16, 30, 0.84) 0%, rgba(7, 16, 30, 0.14) 52%, rgba(7, 16, 30, 0.62) 100%);
}

.hero-layout {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr;
  gap: 42px;
  align-items: end;
  padding: 124px 0 96px;
  color: var(--paper);
}

.hero-copy {
  max-width: 790px;
}

.eyebrow,
.section-kicker,
.panel-kicker {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 18px;
}

h1 {
  max-width: 930px;
  font-size: clamp(2.65rem, 5vw, 5rem);
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  line-height: 1.05;
}

.text-rust {
  color: var(--rust);
}

.hero-lead {
  max-width: 710px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.14rem;
}

.hero-actions,
.contact-direct {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  font-weight: 800;
}

.best-step-section {
  padding: 34px 0 0;
  background: var(--warm);
}

.best-step-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.75fr);
  gap: 24px;
  align-items: end;
  padding: 30px;
  border: 1px solid rgba(16, 26, 44, 0.12);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.best-step-copy h2 {
  margin-top: 10px;
  color: var(--navy);
  font-size: clamp(1.85rem, 3.2vw, 2.8rem);
  line-height: 1.08;
  font-weight: 950;
}

.best-step-copy p:not(.panel-kicker) {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.02rem;
}

.quick-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0 0;
}

.quick-facts div {
  padding: 14px;
  border-radius: 8px;
  background: rgba(16, 26, 44, 0.05);
  border: 1px solid rgba(16, 26, 44, 0.08);
}

.quick-facts dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.quick-facts dd {
  margin: 4px 0 0;
  color: var(--navy);
  font-weight: 900;
}

.trust-strip {
  margin-top: -40px;
  position: relative;
  z-index: 3;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 210px)) minmax(240px, 1fr);
  gap: 12px;
  align-items: stretch;
}

.trust-item,
.trust-statement {
  min-height: 126px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border: 1px solid rgba(16, 26, 44, 0.1);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
  font-weight: 900;
}

.trust-item img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  border-radius: 8px;
}

.trust-item span {
  font-size: 1rem;
  line-height: 1.15;
}

.trust-statement {
  justify-content: center;
  color: var(--navy);
  font-size: 1.05rem;
}

.section {
  padding: 96px 0;
}

.intro-section {
  padding-top: 112px;
}

.expect-section {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.75fr);
  gap: 48px;
  align-items: start;
}

.intro-copy {
  display: grid;
  gap: 18px;
}

.expect-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.expect-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(16, 26, 44, 0.12);
  border-radius: 8px;
  background: #fbfaf7;
  box-shadow: 0 12px 26px rgba(16, 26, 44, 0.08);
}

.expect-card h3 {
  color: var(--navy);
  font-size: 1.12rem;
  line-height: 1.2;
}

.expect-card p {
  margin-top: 12px;
  color: var(--muted);
}

.intro-grid h2,
.section-copy h2,
.section-heading h2,
.dark-layout h2,
.contact-copy h2 {
  margin-top: 10px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: 0;
  text-wrap: balance;
}

.intro-copy p,
.section-copy > p,
.section-heading > p,
.contact-copy > p {
  color: var(--muted);
  font-size: 1.05rem;
}

.area-section,
.pricing-section,
.process-section,
.faq-section {
  background: var(--paper);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: 48px;
  align-items: center;
}

.section-copy,
.section-heading {
  max-width: 710px;
}

.section-copy > p,
.section-heading > p {
  margin-top: 18px;
}

.text-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--red);
  font-weight: 900;
  border-bottom: 2px solid rgba(179, 33, 39, 0.24);
}

.price-board {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #fbfaf7);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.price-feature {
  padding: 30px;
  background:
    linear-gradient(90deg, rgba(16, 26, 44, 0.88), rgba(16, 26, 44, 0.62)),
    url("../images/pricing-detail.jpg") center / cover no-repeat;
  color: var(--paper);
}

.price-feature span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.price-feature strong {
  display: block;
  margin-top: 10px;
  font-size: 2.2rem;
  line-height: 1;
}

.price-feature p {
  max-width: 560px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.price-list {
  display: grid;
}

.price-list div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 20px 30px;
  border-top: 1px solid var(--line);
}

.price-list span {
  color: var(--muted);
  font-weight: 800;
}

.price-list strong {
  color: var(--navy);
  font-size: 1.2rem;
}

.price-note {
  padding: 22px 30px 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.price-note strong {
  color: var(--navy);
}

.area-layout,
.note-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: 42px;
  align-items: start;
}

.area-copy h2,
.owner-note h2,
.scope-note h2 {
  margin-top: 10px;
  color: var(--navy);
  font-size: clamp(1.85rem, 3.4vw, 3rem);
  line-height: 1.04;
  font-weight: 950;
  letter-spacing: 0;
  text-wrap: balance;
}

.area-copy p,
.owner-note p:not(.section-kicker),
.scope-note p:not(.section-kicker) {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.05rem;
}

.area-card,
.owner-note,
.scope-note {
  padding: 30px;
  border: 1px solid rgba(16, 26, 44, 0.12);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.area-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.82)),
    url("../images/pricing-detail.jpg") center / cover no-repeat;
}

.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.city-list span {
  padding: 9px 12px;
  border: 1px solid rgba(16, 26, 44, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 900;
}

.area-note {
  margin-top: 18px;
  color: var(--muted);
  font-weight: 700;
}

.google-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--red);
  font-weight: 950;
  border-bottom: 2px solid rgba(179, 33, 39, 0.22);
}

.inline-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.inline-link-list a {
  padding: 9px 12px;
  border: 1px solid rgba(16, 26, 44, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 900;
}

.note-section {
  background: var(--warm);
}

.owner-note {
  background: var(--navy);
  color: var(--paper);
}

.owner-note h2 {
  color: var(--paper);
}

.owner-note p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.78);
}

.scope-note {
  background: #fbfaf7;
}

.scope-note .detail-list {
  margin-top: 18px;
}

.services-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0)),
    var(--warm);
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.service-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(16, 26, 44, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 26px rgba(16, 26, 44, 0.08);
}

.service-card.featured {
  background:
    linear-gradient(180deg, rgba(16, 26, 44, 0.88), rgba(16, 26, 44, 0.74)),
    url("../images/services-action.jpg") center / cover no-repeat;
  color: var(--paper);
}

.service-card span,
.process-grid span {
  color: var(--red);
  font-weight: 950;
}

.service-card.featured span {
  color: var(--gold);
}

.service-card h3 {
  margin-top: 28px;
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1.18;
}

.service-card.featured h3 {
  color: var(--paper);
}

.service-card p {
  margin-top: 12px;
  color: var(--muted);
}

.service-card.featured p {
  color: rgba(255, 255, 255, 0.82);
}

.service-link {
  margin-top: auto;
  padding-top: 20px;
  color: var(--red);
  font-weight: 900;
}

.service-card.featured .service-link {
  color: var(--paper);
}

.dark-section {
  background: var(--navy);
  color: var(--paper);
}

.dark-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 48px;
  align-items: start;
}

.dark-layout h2 {
  color: var(--paper);
}

.dark-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.07rem;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.check-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.process-grid article {
  min-height: 250px;
  padding: 22px;
  border: 1px solid rgba(16, 26, 44, 0.12);
  border-radius: 8px;
  background: #fbfaf7;
}

.process-grid h3 {
  margin-top: 28px;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 1.1rem;
  line-height: 1.2;
}

.process-grid p {
  color: var(--muted);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(360px, 1fr);
  gap: 48px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--navy);
  font-weight: 900;
}

details p {
  padding: 0 22px 22px;
  color: var(--muted);
}

.contact-section {
  background:
    linear-gradient(180deg, rgba(16, 26, 44, 0.04), rgba(16, 26, 44, 0)),
    var(--warm-2);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(380px, 1fr);
  gap: 42px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  padding: 36px;
  border: 1px solid rgba(16, 26, 44, 0.12);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.contact-email {
  margin-top: 18px;
  color: var(--muted);
  font-weight: 700;
}

.contact-email strong {
  color: var(--navy);
}

.service-area {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.request-form {
  padding: 28px;
  border: 1px solid rgba(16, 26, 44, 0.12);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.contact-card {
  display: grid;
  gap: 18px;
}

.contact-card h3 {
  color: var(--navy);
  font-size: 1.45rem;
  line-height: 1.15;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-weight: 700;
}

.contact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  transform: translateY(-50%);
}

.contact-card-note {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-weight: 800;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-row {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
}

label {
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf7;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(179, 33, 39, 0.54);
  background: var(--paper);
  box-shadow: 0 0 0 4px rgba(179, 33, 39, 0.1);
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.site-footer {
  padding: 28px 0;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.72);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.94rem;
}

.footer-row a {
  margin-left: 10px;
  color: var(--paper);
  font-weight: 900;
}

.page-hero {
  padding: 76px 0 56px;
  color: var(--paper);
  background:
    radial-gradient(circle at 84% 18%, rgba(199, 106, 44, 0.24), transparent 28%),
    linear-gradient(135deg, #07101e 0%, var(--navy) 58%, #1b2739 100%);
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--paper);
}

.page-hero .section-kicker {
  display: block;
  margin-top: 22px;
}

.page-hero h1 {
  margin-top: 14px;
  max-width: 900px;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 1.02;
  font-weight: 950;
}

.page-lead {
  max-width: 740px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.12rem;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.page-content {
  background: var(--paper);
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.42fr);
  gap: 42px;
  align-items: start;
}

.page-main,
.page-aside {
  display: grid;
  gap: 18px;
}

.page-panel,
.page-aside-card {
  padding: 30px;
  border: 1px solid rgba(16, 26, 44, 0.12);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.page-panel h2,
.page-aside-card h2 {
  margin-top: 10px;
  color: var(--navy);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.08;
  font-weight: 950;
}

.page-panel p:not(.section-kicker),
.page-aside-card p:not(.section-kicker) {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.05rem;
}

.detail-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-weight: 700;
}

.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  transform: translateY(-50%);
}

.detail-list.compact {
  margin-top: 16px;
}

.page-aside {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.cta-panel {
  background:
    linear-gradient(180deg, rgba(16, 26, 44, 0.95), rgba(16, 26, 44, 0.84)),
    url("../images/services-action.jpg") center / cover no-repeat;
}

.cta-panel h2,
.cta-panel p:not(.section-kicker) {
  color: var(--paper);
}

.cta-panel .button {
  margin-top: 22px;
}

.page-links {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.page-links a {
  padding: 12px 14px;
  border: 1px solid rgba(16, 26, 44, 0.12);
  border-radius: 8px;
  background: #fbfaf7;
  color: var(--navy);
  font-weight: 800;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(179, 33, 39, 0.3);
  outline-offset: 3px;
}

@media (max-width: 1120px) {
  .nav-row {
    justify-content: flex-start;
  }

  .primary-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    order: 3;
  }

  .nav-call {
    margin-left: auto;
    order: 2;
  }

  .mobile-nav {
    display: grid;
    gap: 10px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 16px;
    border-top: 1px solid transparent;
    background: rgba(16, 26, 44, 0.98);
    transition: max-height 220ms ease, opacity 160ms ease, padding 160ms ease, border-color 160ms ease;
  }

  .site-header.is-open .mobile-nav {
    max-height: 460px;
    opacity: 1;
    padding: 0 16px 16px;
    border-top-color: rgba(255, 255, 255, 0.12);
  }

  .mobile-nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 800;
  }

  .mobile-nav .mobile-nav-call {
    background: var(--paper);
    color: var(--navy);
  }

  .hero-layout,
  .intro-grid,
  .split,
  .area-layout,
  .note-layout,
  .dark-layout,
  .faq-layout,
  .contact-layout,
  .page-grid {
    grid-template-columns: 1fr;
  }

  .service-card-grid,
  .process-grid,
  .expect-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-copy {
    position: static;
  }

  .best-step-card {
    grid-template-columns: 1fr;
  }

  .page-aside {
    position: static;
  }

  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-statement {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 102px;
  }

  .container {
    width: min(var(--max), calc(100% - 24px));
  }

  .nav-row {
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 190px;
    height: 94px;
    padding: 4px;
  }

  .brand-copy {
    display: none;
  }

  .nav-call {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .menu-toggle {
    width: 40px;
    min-width: 40px;
    min-height: 40px;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    background-position: center center;
    background-size: cover;
    opacity: 0.58;
    transform: scale(1.06);
  }

  .hero-layout {
    padding: 156px 0 46px;
    gap: 26px;
  }

  .best-step-section {
    padding-top: 22px;
  }

  h1 {
    font-size: clamp(2.25rem, 10vw, 3.35rem);
  }

  .hero h1 {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions,
  .contact-direct,
  .page-actions {
    display: grid;
  }

  .hero-actions .button,
  .contact-direct .button,
  .page-actions .button,
  .form-submit {
    width: 100%;
  }

  .best-step-card,
  .area-card,
  .owner-note,
  .scope-note,
  .contact-copy,
  .request-form,
  .page-panel,
  .page-aside-card {
    padding: 22px;
  }

  .site-header.is-open .mobile-nav {
    padding: 0 12px 12px;
  }

  .quick-facts,
  .trust-grid,
  .area-layout,
  .note-layout,
  .expect-grid,
  .service-card-grid,
  .process-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    margin-top: 0;
  }

  .section,
  .intro-section,
  .page-hero {
    padding: 70px 0;
  }

  .page-hero h1 {
    font-size: clamp(2.2rem, 9vw, 3.6rem);
  }

  .page-lead {
    font-size: 1rem;
  }

  .price-list div {
    grid-template-columns: 1fr;
  }

  .service-card,
  .process-grid article {
    min-height: auto;
  }

  .footer-row {
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .nav-call {
    display: none;
  }

  .menu-toggle {
    margin-left: auto;
  }

  .brand-logo {
    width: 190px;
    height: 94px;
  }

  .hero-points {
    display: grid;
  }
}
