:root {
  color-scheme: light;
  --ink: #172424;
  --ink-soft: #445656;
  --muted: #6e7f7c;
  --paper: #fbfaf6;
  --paper-2: #f1f5f0;
  --white: #ffffff;
  --line: #dfe8e4;
  --forest: #0f3b36;
  --forest-2: #16544c;
  --mint: #b9e4d4;
  --sage: #e4efe8;
  --clay: #b95f3e;
  --amber: #e4a64a;
  --shadow: 0 22px 70px rgba(18, 40, 37, 0.12);
  --shadow-soft: 0 14px 40px rgba(18, 40, 37, 0.08);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Trebuchet MS", Aptos, "Segoe UI", system-ui, sans-serif;
  line-height: 1.65;
}

img,
svg {
  display: block;
}

img {
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

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

section[id] {
  scroll-margin-top: 116px;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.topbar {
  background: var(--forest);
  color: #eef7f3;
  font-size: 0.92rem;
}

.topbar__inner,
.header__inner,
.header__actions,
.hero__actions,
.button,
.pill,
.meta-row,
.footer__legal,
.social-row {
  display: flex;
  align-items: center;
}

.topbar__inner {
  min-height: 42px;
  justify-content: space-between;
  gap: 18px;
}

.topbar a {
  opacity: 0.95;
}

.topbar__links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar__links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.topbar__links .icon {
  width: 16px;
  height: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 250, 246, 0.93);
  border-bottom: 1px solid rgba(15, 59, 54, 0.12);
  backdrop-filter: blur(16px);
}

.header__inner {
  min-height: 78px;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand__mark {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(15, 59, 54, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(185, 228, 212, 0.95), rgba(255, 255, 255, 0.75)),
    var(--sage);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(15, 59, 54, 0.11);
}

.brand__mark::before,
.brand__mark::after {
  content: "";
  position: absolute;
  inset: 13px 10px auto 10px;
  height: 4px;
  background: var(--forest);
  border-radius: 999px;
  transform: rotate(-8deg);
}

.brand__mark::after {
  inset: auto 10px 14px 15px;
  width: 22px;
  background: var(--clay);
  transform: rotate(-8deg);
}

.brand strong {
  display: block;
  font-size: 1.02rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex: 1;
}

.desktop-nav > a,
.nav-dropdown > button {
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  font-weight: 800;
  cursor: pointer;
  padding: 8px 0;
}

.desktop-nav > a:hover,
.nav-dropdown > button:hover,
.desktop-nav > a[aria-current="page"] {
  color: var(--forest);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown svg {
  width: 15px;
  height: 15px;
}

.nav-panel {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  width: min(680px, calc(100vw - 34px));
  padding: 16px;
  transform: translate(-50%, 8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: 0.18s ease;
}

.nav-dropdown:hover .nav-panel,
.nav-dropdown:focus-within .nav-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-panel a {
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--ink-soft);
  font-weight: 800;
}

.nav-panel a:hover {
  background: var(--sage);
  color: var(--forest);
}

.header__actions {
  gap: 12px;
  justify-content: flex-end;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--forest);
  cursor: pointer;
}

.menu-toggle svg {
  width: 23px;
  height: 23px;
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.mobile-panel__inner {
  padding: 16px 0 22px;
  display: grid;
  gap: 8px;
}

.mobile-panel a {
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  font-weight: 800;
}

.button {
  min-height: 48px;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--forest);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(15, 59, 54, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--forest-2);
  box-shadow: 0 16px 34px rgba(15, 59, 54, 0.2);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.88);
  color: var(--forest);
  border-color: rgba(15, 59, 54, 0.18);
  box-shadow: none;
}

.button--ghost:hover {
  background: #fff;
}

.button--small {
  min-height: 42px;
  padding-inline: 14px;
  font-size: 0.92rem;
}

.icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  position: relative;
  min-height: calc(100svh - 120px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--forest);
  color: #fff;
}

.hero__bg,
.page-hero__bg {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.hero__shade,
.page-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 29, 27, 0.86), rgba(8, 29, 27, 0.45) 52%, rgba(8, 29, 27, 0.18)),
    linear-gradient(0deg, rgba(8, 29, 27, 0.78), rgba(8, 29, 27, 0.05) 38%);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 30px;
  align-items: end;
  padding: 78px 0 54px;
}

.hero__content {
  max-width: 760px;
  padding-bottom: 26px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--forest-2);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow,
.section--dark .eyebrow {
  color: var(--mint);
}

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

h1,
h2,
h3,
.stat strong {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  hyphens: auto;
}

h1 {
  max-width: 880px;
  margin-bottom: 18px;
  font-size: clamp(42px, 6.2vw, 82px);
  line-height: 0.98;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.03;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.hero__lead {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 1.5vw, 1.24rem);
}

.hero__actions {
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-proof-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  max-width: min(100%, 640px);
  margin-top: 24px;
  padding: 15px 22px;
  border: 9px solid rgba(185, 228, 212, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
}

.hero-proof-badge__mark {
  display: grid;
  width: 70px;
  height: 70px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  color: var(--forest);
  box-shadow: inset 0 0 0 1px var(--line), 0 10px 24px rgba(18, 40, 37, 0.12);
}

.hero-proof-badge__mark .icon {
  width: 34px;
  height: 34px;
}

.hero-proof-badge__content {
  display: grid;
  gap: 3px;
}

.hero-proof-badge__top {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  line-height: 1.05;
}

.hero-proof-badge__top strong {
  color: #202b2b;
  font-size: clamp(1.4rem, 3vw, 2.05rem);
  font-weight: 900;
}

.hero-proof-badge__top em {
  color: #078978;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-style: normal;
  font-weight: 900;
}

.hero-proof-badge__checks {
  display: flex;
  gap: 4px;
  color: var(--amber);
}

.hero-proof-badge__checks .icon {
  width: 22px;
  height: 22px;
  stroke-width: 3;
}

.hero-proof-badge__content > span:last-child {
  color: var(--ink-soft);
  font-weight: 900;
  line-height: 1.25;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-strip div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 22px;
  background: rgba(10, 36, 33, 0.54);
}

.trust-strip .icon {
  width: 26px;
  height: 26px;
  color: var(--mint);
}

.trust-strip strong {
  display: block;
  font-weight: 900;
}

.trust-strip em {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  font-style: normal;
}

.quote-card {
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  background: rgba(251, 250, 246, 0.94);
  color: var(--ink);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.quote-card__head {
  padding: 24px 24px 0;
}

.quote-kicker {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--forest-2);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quote-card__head h2 {
  margin-bottom: 6px;
  font-family: "Trebuchet MS", Aptos, sans-serif;
  font-size: 1.38rem;
}

.quote-card__head p {
  margin-bottom: 0;
  color: var(--muted);
}

.quote-form {
  padding: 22px 24px 24px;
  display: grid;
  gap: 14px;
}

.quote-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.quote-step {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid #dce7e1;
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-weight: 900;
}

.quote-step strong {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  background: var(--sage);
  color: var(--forest);
  font-size: 0.86rem;
}

.quote-step em {
  overflow: hidden;
  font-size: 0.82rem;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.quote-step.is-active,
.quote-step.is-done {
  border-color: rgba(15, 59, 54, 0.26);
  background: var(--sage);
  color: var(--forest);
}

.quote-step.is-active strong,
.quote-step.is-done strong {
  background: var(--forest);
  color: #fff;
}

.form-step {
  margin: 0;
  padding: 0;
  border: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.form-step[hidden] {
  display: none;
}

.form-step legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 900;
}

.form-field {
  display: grid;
  gap: 6px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 900;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cbd8d3;
  border-radius: 6px;
  padding: 11px 12px;
  background: #fff;
  color: var(--ink);
}

.form-field textarea {
  min-height: 98px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 3px solid rgba(185, 228, 212, 0.7);
  border-color: var(--forest-2);
}

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

.form-note,
.form-status {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.form-status {
  min-height: 22px;
  color: var(--forest);
  font-weight: 900;
}

.form-trust {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
  padding: 12px;
  border-radius: 8px;
  background: var(--sage);
  color: var(--forest);
  font-size: 0.86rem;
  font-weight: 900;
}

.form-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.form-trust .icon {
  width: 17px;
  height: 17px;
}

.form-actions {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 10px;
}

.form-actions .button {
  width: 100%;
}

.form-actions [hidden] {
  display: none;
}

.form-actions .button:only-child,
.form-actions .button[data-step-submit]:not([hidden]) {
  grid-column: 1 / -1;
}

.button--secondary {
  background: #fff;
  color: var(--forest);
  border-color: rgba(15, 59, 54, 0.22);
  box-shadow: none;
}

.section {
  padding: 88px 0;
}

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

.section--white {
  background: var(--white);
}

.section--dark {
  background: var(--forest);
  color: #fff;
}

.section__head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section__head p,
.text-block p,
.card p,
.service-card p,
.faq-list p,
.district-intro p,
.guide-card p {
  color: var(--muted);
}

.section--dark .section__head p,
.section--dark .card p {
  color: rgba(255, 255, 255, 0.75);
}

.grid-3,
.grid-4,
.service-grid,
.district-grid,
.guide-grid,
.price-grid,
.footer__grid {
  display: grid;
  gap: 18px;
}

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

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

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

.card,
.service-card,
.guide-card,
.price-card,
.district-link,
.process-step,
.faq-list details,
.legal-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.card,
.guide-card,
.price-card,
.process-step,
.legal-box {
  padding: 24px;
}

.service-card,
.guide-card {
  overflow: hidden;
}

.service-card img,
.guide-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card__body,
.guide-card__body {
  padding: 22px;
}

.card__icon,
.process-step__number {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 8px;
  background: var(--sage);
  color: var(--forest);
}

.card__icon svg {
  width: 22px;
  height: 22px;
}

.trust-deck {
  padding-top: 76px;
  padding-bottom: 76px;
}

.trust-deck__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 34px;
  align-items: center;
}

.trust-deck__copy {
  max-width: 520px;
}

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

.trust-card {
  min-height: 250px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #f7faf7);
  box-shadow: var(--shadow-soft);
}

.trust-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--forest);
  font-weight: 900;
}

.link-arrow svg {
  width: 17px;
  height: 17px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: 46px;
  align-items: center;
}

.split img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.video-section {
  overflow: hidden;
}

.video-section .eyebrow {
  background: rgba(185, 228, 212, 0.12);
  color: #dff7ef;
}

.video-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 18px;
  align-items: stretch;
}

.video-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.video-card--featured {
  grid-row: span 2;
}

.video-shell {
  position: relative;
  display: grid;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #061614;
}

.video-card--featured .video-shell {
  min-height: 420px;
}

.video-shell img,
.video-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.video-load {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  background:
    radial-gradient(circle at center, rgba(15, 59, 54, 0.18), rgba(6, 22, 20, 0.52)),
    linear-gradient(180deg, rgba(6, 22, 20, 0.06), rgba(6, 22, 20, 0.48));
  color: #fff;
  cursor: pointer;
}

.video-load .icon {
  width: 64px;
  height: 64px;
  padding: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--forest);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
}

.video-shell.is-loaded .video-load,
.video-shell.is-loaded img {
  display: none;
}

.video-card__body {
  padding: 20px;
}

.video-card__body h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1.15rem;
}

.video-card__body p {
  color: rgba(255, 255, 255, 0.74);
}

.video-source {
  margin-top: 14px;
  font-size: 0.84rem;
}

.video-source a,
.video-legal a {
  color: #dff7ef;
}

.video-legal {
  max-width: 900px;
  margin-top: 18px;
}

.video-legal p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
}

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

.process-step {
  min-height: 210px;
}

.process-step__number {
  background: var(--forest);
  color: #fff;
  font-weight: 900;
}

.price-card {
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--forest), var(--mint), var(--amber));
}

.price-card strong {
  display: block;
  margin: 12px 0;
  font-size: 1.9rem;
  color: var(--forest);
}

.check-list,
.footer__links,
.page-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list {
  display: grid;
  gap: 10px;
}

.check-list li,
.page-list li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
}

.check-list svg,
.page-list svg {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  color: var(--forest-2);
  flex: 0 0 auto;
}

.district-link {
  display: grid;
  gap: 6px;
  padding: 16px;
  min-height: 110px;
}

.district-link strong {
  color: var(--forest);
}

.district-link span {
  color: var(--muted);
  font-size: 0.92rem;
}

.district-link:hover,
.service-card:hover,
.guide-card:hover {
  transform: translateY(-2px);
  transition: transform 0.18s ease;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 36px;
  align-items: start;
}

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

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

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--forest);
}

.faq-list p {
  margin: 12px 0 0;
}

.page-hero {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--forest);
  color: #fff;
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  padding: 76px 0 54px;
}

.page-hero h1 {
  max-width: 850px;
}

.page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.15rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.breadcrumbs a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: start;
}

.article-flow {
  display: grid;
  gap: 30px;
}

.text-block {
  padding-bottom: 8px;
}

.text-block h2 {
  font-size: clamp(28px, 3.2vw, 44px);
}

.aside-card {
  position: sticky;
  top: 110px;
}

.local-panel {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--forest);
  color: #fff;
}

.local-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.local-panel .button {
  margin-top: 12px;
  background: #fff;
  color: var(--forest);
}

.band-cta {
  padding: 42px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(15, 59, 54, 0.95), rgba(22, 84, 76, 0.9)),
    var(--forest);
  color: #fff;
}

.band-cta p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
}

.legal-box {
  box-shadow: none;
}

.legal-box h2 {
  font-size: 1.6rem;
}

.site-footer {
  padding: 62px 0 30px;
  background: #0b2825;
  color: #eaf4f0;
}

.footer__grid {
  grid-template-columns: 1.25fr 0.85fr 0.85fr 0.95fr;
  align-items: start;
}

.footer__grid h2 {
  margin-bottom: 12px;
  font-family: "Trebuchet MS", Aptos, sans-serif;
  font-size: 1rem;
}

.footer__grid p,
.footer__grid a,
.footer__legal {
  color: rgba(234, 244, 240, 0.78);
}

.footer__links {
  display: grid;
  gap: 7px;
}

.footer__legal {
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  flex-wrap: wrap;
}

.social-row {
  gap: 10px;
}

.social-row a {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.social-row svg {
  width: 18px;
  height: 18px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 80;
  max-width: min(520px, calc(100% - 28px));
  padding: 14px 18px;
  border-radius: 8px;
  background: var(--forest);
  color: #fff;
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -120px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  background: #fff;
  color: var(--forest);
  font-weight: 900;
}

.skip-link:focus {
  top: 16px;
}

@media (max-width: 1060px) {
  .desktop-nav,
  .header__actions .button--small {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-panel.is-open {
    display: block;
  }

  .hero {
    min-height: auto;
  }

  .hero__grid,
  .content-grid,
  .split,
  .video-grid,
  .trust-deck__grid {
    grid-template-columns: 1fr;
  }

  .video-card--featured {
    grid-row: auto;
  }

  .video-card--featured .video-shell {
    min-height: 320px;
  }

  .hero__content {
    padding-bottom: 0;
  }

  .aside-card {
    position: static;
  }

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

@media (max-width: 780px) {
  .topbar__inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 9px 0;
    gap: 4px;
  }

  .hero__grid {
    padding: 58px 0 30px;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(8, 29, 27, 0.9), rgba(8, 29, 27, 0.7)),
      linear-gradient(0deg, rgba(8, 29, 27, 0.8), rgba(8, 29, 27, 0.22));
  }

  .quote-form,
  .form-step,
  .grid-3,
  .grid-4,
  .service-grid,
  .district-grid,
  .guide-grid,
  .price-grid,
  .faq-grid,
  .trust-card-grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

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

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

  .hero-proof-badge {
    width: 100%;
    border-width: 7px;
    border-radius: 28px;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 62px 0;
  }

  .brand small {
    max-width: 180px;
  }

  .video-card--featured .video-shell {
    min-height: 0;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 22px, var(--container));
  }

  h1 {
    font-size: clamp(36px, 11vw, 52px);
  }

  h2 {
    font-size: clamp(28px, 9vw, 40px);
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .quote-card__head,
  .quote-form,
  .card,
  .trust-card,
  .guide-card__body,
  .price-card,
  .local-panel,
  .band-cta {
    padding: 18px;
  }

  .header__inner {
    min-height: 68px;
  }

  .brand__mark {
    width: 40px;
    height: 40px;
  }

  .quote-steps {
    gap: 6px;
  }

  .quote-step {
    min-height: 46px;
    justify-content: center;
    padding: 7px;
  }

  .quote-step em {
    display: none;
  }

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

  .hero-proof-badge {
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
  }

  .hero-proof-badge__mark {
    width: 54px;
    height: 54px;
  }

  .brand strong {
    font-size: 0.9rem;
  }
}
