:root {
  --ink: #17212b;
  --muted: #5b6670;
  --line: #d7dfe5;
  --surface: #f5f8fa;
  --white: #ffffff;
  --green: #24786b;
  --green-dark: #102a46;
  --blue: #1b5c74;
  --yellow: #f2c14e;
  --green-soft: #e7f3f0;
  --blue-soft: #eaf3f7;
  --yellow-soft: #fff5d9;
  --shadow-sm: 0 2px 8px rgba(16, 42, 70, 0.08);
  --shadow-md: 0 10px 24px rgba(16, 42, 70, 0.12);
  --shadow-lg: 0 18px 38px rgba(16, 42, 70, 0.14);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

:focus-visible {
  outline: 3px solid #0b4f47;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--green-dark);
  border-radius: 6px;
  text-decoration: none;
  transform: translateY(-160%);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.receipt-reference {
  display: inline-grid;
  gap: 4px;
  min-width: min(100%, 340px);
  margin-top: 22px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--green);
  border-radius: 6px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.receipt-reference span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
}

.receipt-reference strong {
  overflow-wrap: anywhere;
  color: var(--green-dark);
  font-size: 1.18rem;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 30px auto 0;
}

.policy-grid article {
  padding: 24px;
  border-top: 4px solid var(--green);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.policy-grid span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.identity-facts {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: 1180px;
  margin: 30px auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.identity-facts > div {
  display: grid;
  align-content: start;
  gap: 6px;
  min-width: 0;
  padding: 20px;
  border-right: 1px solid var(--line);
}

.identity-facts > div:last-child { border-right: 0; }
.identity-facts span { color: var(--muted); font-size: 0.78rem; font-weight: 800; text-transform: uppercase; }
.identity-facts strong, .identity-facts a { overflow-wrap: anywhere; }

@media (max-width: 900px) {
  .policy-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .identity-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .identity-facts > div { border-bottom: 1px solid var(--line); }
}

@media (max-width: 620px) {
  .policy-grid { grid-template-columns: 1fr; }
  .identity-facts { grid-template-columns: 1fr; }
  .identity-facts > div { border-right: 0; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 32px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(16, 42, 70, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 210px;
  color: var(--green-dark);
  text-decoration: none;
}

.brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
}

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

.brand-title {
  font-size: 19px;
  font-weight: 800;
}

.brand-subtitle {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  font-size: 14px;
}

.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
  color: var(--muted);
  padding: 10px 0;
}

.nav a:hover {
  color: var(--green-dark);
}

.nav a[aria-current="page"] {
  color: var(--green-dark);
  box-shadow: inset 0 -2px 0 var(--green);
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--green-dark);
  content: "";
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle-icon::before {
  transform: translateY(-6px);
}

.nav-toggle-icon::after {
  transform: translateY(4px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before {
  transform: translateY(0) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after {
  transform: translateY(-2px) rotate(-45deg);
}

.nav .nav-call {
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green-dark);
  font-weight: 700;
  transition: background-color 160ms ease, transform 160ms ease;
}

.nav .nav-call:hover {
  color: var(--white);
  background: var(--blue);
  transform: translateY(-1px);
}

.hero {
  height: calc(100vh - 125px);
  min-height: 560px;
  max-height: 700px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: stretch;
  border-bottom: 1px solid var(--line);
}

.hero-media {
  min-height: 0;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  display: block;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px 56px;
  background: var(--surface);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

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

h1 {
  font-size: 54px;
  line-height: 1.02;
  margin-bottom: 22px;
  max-width: 760px;
}

h2 {
  font-size: 34px;
  line-height: 1.14;
  margin-bottom: 16px;
}

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

.lead {
  font-size: 19px;
  color: var(--muted);
  max-width: 660px;
  margin-bottom: 28px;
}

.hero-actions,
.quote-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  padding: 13px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.button::after,
.section-link::after,
.text-link::after {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.button[href^="tel:"]::after {
  display: none;
}

.button.primary {
  color: var(--white);
  background: var(--green-dark);
  box-shadow: 0 8px 18px rgba(16, 42, 70, 0.18);
}

.button.primary:hover {
  background: var(--green);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.button.secondary {
  color: var(--green-dark);
  background: var(--white);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.button.secondary:hover {
  border-color: var(--green);
  color: var(--green);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.button:hover::after,
.section-link:hover::after,
.text-link:hover::after {
  transform: translateX(3px) rotate(45deg);
}

.button:active {
  box-shadow: var(--shadow-sm);
  transform: translateY(0);
}

.quote-band .button.primary {
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.quote-band .button.primary:hover {
  color: var(--green-dark);
  background: var(--white);
}

.service-band,
.process-band,
.split-band,
.quote-band {
  padding: 76px 32px;
}

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

.section-heading > p:not(.eyebrow) {
  max-width: 700px;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.section-link,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

.surface-band {
  background: var(--surface);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  max-width: 1244px;
  margin: 0 auto;
  padding: 16px 32px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.breadcrumbs a {
  color: var(--blue);
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs > * + *::before {
  margin-right: 8px;
  color: #96a4ae;
  content: "/";
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.detail-grid article {
  position: relative;
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--green);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.detail-grid article:nth-child(4n + 2) {
  border-top-color: var(--blue);
}

.detail-grid article:nth-child(4n + 3) {
  border-top-color: var(--yellow);
}

.detail-grid article:nth-child(4n) {
  border-top-color: var(--green-dark);
}

.detail-grid article:hover {
  border-right-color: #bccbd4;
  border-bottom-color: #bccbd4;
  border-left-color: #bccbd4;
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.detail-grid article p {
  color: var(--muted);
}

.scope-matrix {
  max-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.scope-matrix-head {
  display: grid;
  grid-template-columns: minmax(150px, 0.55fr) minmax(0, 1.25fr) minmax(0, 1fr);
  color: var(--white);
  background: var(--green-dark);
}

.scope-matrix-head span {
  padding: 15px 24px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.scope-matrix-head span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.scope-row {
  display: grid;
  grid-template-columns: minmax(150px, 0.55fr) minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 0;
  border-bottom: 1px solid var(--line);
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.scope-row:nth-child(odd) {
  background: #fbfcfd;
}

.scope-row:last-child {
  border-bottom: 0;
}

.scope-row:hover {
  background: var(--green-soft);
  box-shadow: inset 4px 0 0 var(--green);
}

.scope-row > * {
  padding: 22px 24px;
}

.scope-row > * + * {
  border-left: 1px solid var(--line);
}

.scope-row h3,
.scope-row p {
  margin-bottom: 0;
}

.scope-row p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.scope-row h3 {
  color: var(--green-dark);
  font-size: 18px;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

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

.workflow-step {
  min-height: 210px;
  padding: 22px;
  border-top: 4px solid var(--green);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.workflow-step:nth-child(3n + 2) {
  border-top-color: var(--blue);
}

.workflow-step:nth-child(3n) {
  border-top-color: var(--yellow);
}

.workflow-step:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.workflow-step strong {
  display: block;
  margin-bottom: 14px;
  color: var(--green-dark);
  font-size: 14px;
}

.workflow-step p {
  margin-bottom: 0;
  color: var(--muted);
}

.plain-steps {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  counter-reset: plain-step;
}

.plain-steps li {
  position: relative;
  padding: 14px 0 14px 44px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  counter-increment: plain-step;
}

.plain-steps li::before {
  position: absolute;
  top: 13px;
  left: 0;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-size: 12px;
  font-weight: 800;
  content: counter(plain-step);
}

.care-band {
  padding: 72px 32px;
  color: var(--white);
  background: var(--green-dark);
}

.care-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 42px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.care-panel .eyebrow {
  color: var(--yellow);
}

.care-panel p,
.care-panel li {
  color: #e3edf3;
}

.care-panel ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.care-panel li {
  position: relative;
  padding: 11px 0 11px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.care-panel li::before {
  position: absolute;
  top: 16px;
  left: 4px;
  width: 7px;
  height: 11px;
  border: solid var(--yellow);
  border-width: 0 2px 2px 0;
  content: "";
  transform: rotate(45deg);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 460px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.service-card:hover {
  border-color: #b9c8d2;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.service-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.service-card p {
  flex: 1;
  color: var(--muted);
}

.service-card a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: auto;
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

.process-band {
  background: var(--surface);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.step {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.step:hover {
  border-color: #b7c7d1;
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 6px;
  color: var(--ink);
  background: var(--yellow);
  font-weight: 800;
}

.step p,
.split-band p,
.scope-list li,
.quote-panel p {
  color: var(--muted);
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}

.scope-list {
  border-left: 4px solid var(--green);
  padding-left: 28px;
}

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

.scope-list li {
  position: relative;
  padding: 11px 0 11px 28px;
  border-bottom: 1px solid var(--line);
}

.scope-list li::before {
  position: absolute;
  top: 17px;
  left: 4px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--green);
  content: "";
  transform: rotate(45deg);
}

.quote-band {
  background: var(--green-dark);
}

.quote-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto;
  color: var(--white);
}

.quote-panel .eyebrow {
  color: var(--yellow);
}

.quote-panel p {
  max-width: 680px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 32px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.site-footer p {
  margin: 0;
  font-size: 14px;
}

.site-footer strong {
  color: var(--green-dark);
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  font-weight: 700;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--green-dark);
  text-decoration: none;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding-left: 16px;
  border-left: 1px solid var(--line);
}

.footer-social a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.social-connect-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.social-connect {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 56px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.social-connect h2 {
  margin-top: 0;
}

.social-connect p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.social-link-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.social-link-list a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 76px;
  padding: 14px 0;
  color: var(--green-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

.social-link-list a::after {
  content: ">";
  grid-column: 2;
  grid-row: 1 / span 2;
  font-size: 22px;
  font-weight: 900;
}

.social-link-list span {
  color: var(--muted);
  font-size: 14px;
}

.social-link-list a:hover strong,
.social-link-list a:focus-visible strong {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.mobile-actions {
  display: none;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.proof-band div {
  padding: 20px 24px;
  text-align: center;
}

.proof-band div + div {
  border-left: 1px solid var(--line);
}

.proof-band strong {
  display: block;
  color: var(--green-dark);
  font-size: 15px;
}

.proof-band span {
  color: var(--muted);
  font-size: 13px;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 42px;
  align-items: center;
  padding: 72px 32px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.page-hero > div {
  max-width: 760px;
}

.page-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #c3d0d8;
  box-shadow: var(--shadow-lg);
}

.page-hero.compact-hero {
  padding-top: 54px;
  padding-bottom: 54px;
}

.content-band,
.form-band {
  padding: 64px 32px;
}

.narrow-band {
  padding-top: 32px;
  padding-bottom: 32px;
}

.faq-band {
  padding: 64px 32px;
  background: var(--surface);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
}

.content-grid article,
.quote-form,
.form-note {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.content-grid article {
  padding: 24px;
  border-top: 4px solid var(--green);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.content-grid article:nth-child(even) {
  border-top-color: var(--blue);
}

.content-grid article:hover {
  border-right-color: #bccbd4;
  border-bottom-color: #bccbd4;
  border-left-color: #bccbd4;
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.content-grid article h2 {
  color: var(--green-dark);
  font-size: 25px;
}

.check-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  color: var(--muted);
}

.check-list li {
  position: relative;
  padding: 11px 12px 11px 42px;
  border-bottom: 1px solid var(--line);
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.check-list li::before {
  position: absolute;
  top: 10px;
  left: 4px;
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 50%;
  background: var(--green-soft);
  content: "";
}

.check-list li::after {
  position: absolute;
  top: 15px;
  left: 13px;
  width: 5px;
  height: 9px;
  border: solid var(--green);
  border-width: 0 2px 2px 0;
  content: "";
  transform: rotate(45deg);
}

.check-list li + li {
  margin-top: 0;
}

.check-list li:hover,
.scope-list li:hover {
  color: var(--ink);
  background: var(--green-soft);
  transform: translateX(2px);
}

.scope-list li {
  transition: color 160ms ease, transform 160ms ease;
}

.scope-explorer {
  max-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.scope-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 10px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.scope-tab {
  min-height: 54px;
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.scope-tab:hover {
  color: var(--green-dark);
  background: var(--blue-soft);
}

.scope-tab[aria-selected="true"] {
  color: var(--white);
  border-color: var(--green-dark);
  background: var(--green-dark);
  box-shadow: 0 8px 18px rgba(16, 42, 70, 0.18);
}

.scope-panel {
  padding: 38px;
}

.js .scope-panel:not(.is-active) {
  display: none;
}

.explorer-panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 34px;
}

.explorer-panel-grid > div + div {
  padding: 20px 24px;
  border-left: 4px solid var(--blue);
  background: var(--blue-soft);
}

.explorer-panel-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.js .reveal-item {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.js .reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.page-split {
  padding-top: 40px;
}

.form-hero {
  padding: 72px 32px 36px;
  max-width: 980px;
}

.intake-hero {
  max-width: 1240px;
  margin: 0 auto;
  padding-bottom: 48px;
}

.intake-hero h1 {
  max-width: 920px;
}

.intake-route-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 900px;
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intake-route-strip span {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  color: var(--muted);
  font-weight: 700;
}

.intake-route-strip span + span {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.intake-route-strip strong {
  color: var(--green);
  font-size: 13px;
}

.form-band {
  padding-top: 20px;
  background: var(--surface);
}

.intake-band {
  padding-bottom: 84px;
}

.intake-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 340px);
  gap: 24px;
  align-items: start;
  max-width: 1240px;
  margin: 0 auto;
}

.quote-form {
  max-width: 980px;
  padding: 32px;
}

.intake-form {
  max-width: none;
  padding: 0;
  overflow: hidden;
  scroll-margin-top: 104px;
}

.intake-progress {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.intake-progress span {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 66px;
  padding: 14px 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.intake-progress span + span {
  border-left: 1px solid var(--line);
}

.intake-progress span::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: transparent;
  content: "";
}

.intake-progress strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--green-dark);
  background: var(--white);
}

.intake-progress span.is-active {
  color: var(--green-dark);
  background: var(--white);
}

.intake-progress span.is-active::after {
  background: var(--green);
}

.intake-progress span.is-complete strong {
  color: var(--white);
  border-color: var(--green);
  background: var(--green);
}

.intake-step {
  padding: 38px;
}

.js .intake-step:not(.is-active) {
  display: none;
}

.intake-step h2 {
  margin-bottom: 12px;
  color: var(--green-dark);
  font-size: 32px;
}

.intake-intro {
  max-width: 720px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 17px;
}

.client-type-fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

.client-type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.quote-form .client-type-option {
  position: relative;
  display: block;
  cursor: pointer;
}

.quote-form .client-type-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 1px;
  padding: 0;
  opacity: 0;
}

.client-type-copy {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  column-gap: 14px;
  min-height: 116px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.client-type-copy::before {
  display: flex;
  grid-row: 1 / 3;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  color: var(--green-dark);
  background: var(--green-soft);
  content: attr(data-marker);
  font-size: 13px;
  font-weight: 800;
}

.client-type-copy strong,
.client-type-copy small {
  grid-column: 2;
}

.client-type-copy strong {
  align-self: end;
  font-size: 17px;
  line-height: 1.25;
}

.client-type-copy small {
  align-self: start;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
}

.client-type-option:hover .client-type-copy {
  border-color: #aabfc9;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.client-type-option input:checked + .client-type-copy {
  color: var(--white);
  border-color: var(--green-dark);
  background: var(--green-dark);
  box-shadow: var(--shadow-md);
}

.client-type-option input:checked + .client-type-copy::before {
  color: var(--ink);
  background: var(--yellow);
}

.client-type-option input:checked + .client-type-copy small {
  color: #dce8ee;
}

.client-type-option input:focus-visible + .client-type-copy {
  outline: 3px solid #0b4f47;
  outline-offset: 3px;
}

.intake-nav {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.intake-nav [data-intake-next],
.intake-nav [data-intake-back] {
  display: none;
}

.js .intake-nav [data-intake-next],
.js .intake-nav [data-intake-back] {
  display: inline-flex;
}

.intake-nav-split {
  justify-content: space-between;
}

.intake-back::after {
  order: -1;
  transform: rotate(-135deg);
}

.intake-back:hover::after {
  transform: translateX(-3px) rotate(-135deg);
}

.intake-basics {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.intake-profile {
  margin: 26px 0 22px;
  padding-top: 26px;
  border-top: 4px solid var(--blue);
}

.js .intake-profile:not(.is-active) {
  display: none;
}

.profile-heading {
  margin-bottom: 20px;
}

.profile-heading h3 {
  margin-bottom: 0;
  color: var(--green-dark);
  font-size: 24px;
}

.profile-boundary {
  margin: 0;
  padding: 16px 18px;
  border-left: 4px solid var(--yellow);
  color: var(--ink);
  background: var(--yellow-soft);
}

.notes-field {
  margin-top: 24px;
}

.intake-form .form-note {
  border: 0;
  border-left: 4px solid var(--green);
  border-radius: 0;
  box-shadow: none;
}

.intake-summary {
  position: sticky;
  top: 104px;
  padding: 28px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green-dark);
  box-shadow: var(--shadow-lg);
}

.intake-summary .eyebrow {
  color: var(--yellow);
}

.intake-summary h2 {
  margin-bottom: 24px;
  font-size: 27px;
}

.intake-summary dl {
  margin: 0;
}

.intake-summary dl > div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.intake-summary dt {
  color: #a9c0cc;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.intake-summary dd {
  margin: 0;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.review-edit-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 26px 0;
}

.review-edit-actions button {
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--green-dark);
  background: var(--white);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.review-edit-actions button:hover {
  border-color: var(--green);
  background: var(--green-soft);
}

.request-review-list {
  margin: 0 0 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.request-review-list > div {
  display: grid;
  grid-template-columns: minmax(170px, 0.45fr) minmax(0, 1fr);
  gap: 18px;
  padding: 13px 18px;
}

.request-review-list > div + div {
  border-top: 1px solid var(--line);
}

.request-review-list dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.request-review-list dd {
  margin: 0;
  color: var(--green-dark);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.review-confirmations {
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.review-confirmations legend {
  float: left;
  width: 100%;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--green-dark);
  background: var(--surface);
  font-size: 18px;
  font-weight: 800;
}

.review-confirmations label {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  clear: both;
  padding: 16px 18px;
  color: var(--muted);
  cursor: pointer;
}

.review-confirmations label + label {
  border-top: 1px solid var(--line);
}

.review-confirmations label:hover,
.review-confirmations label:has(input:checked) {
  color: var(--ink);
  background: var(--green-soft);
}

.review-confirmations input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--green);
}

.request-fallback {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--yellow);
  border-radius: 8px;
  background: var(--yellow-soft);
}

.request-fallback h3 {
  color: var(--green-dark);
  font-size: 24px;
}

.request-fallback label {
  display: block;
  color: var(--green-dark);
  font-weight: 800;
}

.request-fallback textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  border: 1px solid #9dafb9;
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
  font: 14px/1.5 Consolas, "Courier New", monospace;
  resize: vertical;
}

.request-fallback-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.request-fallback [data-copy-status] {
  margin: 12px 0 0;
  color: var(--green-dark);
  font-weight: 700;
}

.summary-readiness {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 3px solid var(--yellow);
}

.summary-readiness strong,
.summary-readiness span {
  display: block;
}

.summary-readiness span {
  margin-top: 8px;
  color: #c7d7df;
  font-size: 13px;
}

.summary-next {
  margin-top: 26px;
}

.summary-next h3 {
  font-size: 17px;
}

.summary-next ol {
  margin: 0;
  padding-left: 22px;
  color: #dce8ee;
  font-size: 14px;
}

.summary-next li + li {
  margin-top: 8px;
}

.summary-next li::marker {
  color: var(--yellow);
  font-weight: 800;
}

.summary-call {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  margin-top: 26px;
  color: var(--yellow);
  font-weight: 800;
  text-decoration: none;
}

.quote-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  background: var(--surface);
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--green);
  outline: 0;
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(36, 120, 107, 0.16);
}

.quote-form textarea {
  resize: vertical;
}

.form-note {
  margin: 18px 0;
  padding: 16px;
  background: #eef5f4;
}

.form-note p {
  margin-bottom: 8px;
}

.form-note a {
  color: var(--green-dark);
  font-weight: 700;
}

.quote-form button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 12px 18px;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: var(--green-dark);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(16, 42, 70, 0.18);
  transition: background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.quote-form button[type="submit"]::after {
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.quote-form button[type="submit"]:hover {
  background: var(--green);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.direct-contact {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.direct-contact a {
  color: var(--green-dark);
  font-weight: 700;
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 700;
}

.legal-copy {
  max-width: 860px;
  margin: 0 auto;
}

.legal-copy h2 {
  margin-top: 34px;
  font-size: 25px;
}

.legal-copy a {
  color: var(--blue);
  font-weight: 700;
}

.intent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.intent-grid a,
.related-band > a {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 132px;
  padding: 22px 48px 22px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.intent-grid a::after,
.related-band > a::after {
  position: absolute;
  top: 24px;
  right: 22px;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--green);
  border-right: 2px solid var(--green);
  content: "";
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.intent-grid a:nth-child(3n + 2),
.related-band > a:nth-child(3n + 2) {
  border-top: 4px solid var(--blue);
}

.intent-grid a:nth-child(3n),
.related-band > a:nth-child(3n) {
  border-top: 4px solid var(--yellow);
}

.intent-grid a:nth-child(3n + 1),
.related-band > a:nth-child(3n + 1) {
  border-top: 4px solid var(--green);
}

.intent-grid a:hover,
.related-band > a:hover {
  border-right-color: #b7c7d1;
  border-bottom-color: #b7c7d1;
  border-left-color: #b7c7d1;
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.intent-grid a:hover::after,
.related-band > a:hover::after {
  transform: translateX(3px) rotate(45deg);
}

.intent-grid strong,
.related-band > a strong {
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 17px;
  line-height: 1.25;
}

.intent-grid span,
.related-band > a span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.intent-grid.compact {
  flex: 1 1 720px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: none;
}

.intent-grid.compact a {
  min-height: 118px;
}

.related-band {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 54px 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--blue-soft);
}

.related-band > a {
  flex: 1 1 270px;
}

.related-band > div:first-child {
  flex: 0 1 330px;
  align-self: center;
}

.related-band > div:first-child h2,
.related-band > div:first-child p:last-child {
  margin-bottom: 0;
}

.fee-grid,
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.fee-grid article,
.comparison-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--green);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.fee-grid article:nth-child(even),
.comparison-grid article:nth-child(3n) {
  border-top-color: var(--blue);
}

.fee-grid article > span,
.comparison-grid article > span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.fee-grid article p,
.comparison-grid article p {
  color: var(--muted);
}

.comparison-grid .featured {
  color: var(--white);
  border-color: var(--green-dark);
  background: var(--green-dark);
  box-shadow: var(--shadow-md);
}

.comparison-grid .featured span {
  color: var(--yellow);
}

.comparison-grid .featured p {
  color: #e3edf3;
}

.content-note {
  max-width: 980px;
  margin: 24px auto 0;
  padding: 18px 22px;
  border-left: 4px solid var(--yellow);
  color: var(--muted);
  background: var(--yellow-soft);
}

.content-note.compact-note {
  margin-top: 18px;
  padding: 16px 18px;
}

.content-note.compact-note p {
  margin: 6px 0 0;
}

.field-help {
  max-width: 760px;
  margin: 4px 0 20px;
  color: var(--muted);
  font-size: 13px;
}

.profile-heading > p:last-child:not(.eyebrow) {
  max-width: 820px;
  color: var(--muted);
  font-size: 14px;
}

.important-note {
  margin-top: 0;
  border-left-color: var(--blue);
  background: var(--blue-soft);
}

.important-note h2 {
  margin-bottom: 8px;
}

.important-note p:last-child {
  margin-bottom: 0;
}

.sample-record {
  max-width: 1120px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #c4d0d8;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.record-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 32px;
  align-items: center;
  padding: 28px 30px;
  color: var(--white);
  background: var(--green-dark);
}

.record-header h3 {
  margin: 5px 0;
  color: var(--white);
  font-size: 27px;
}

.record-header p {
  margin: 0;
  color: #dbe7ee;
}

.record-kicker {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.record-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 20px;
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.record-meta p {
  font-size: 14px;
}

.record-table-wrap {
  overflow-x: auto;
}

.record-table {
  width: 100%;
  border-collapse: collapse;
}

.record-table th,
.record-table td {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.record-table thead th {
  color: var(--green-dark);
  background: var(--blue-soft);
  font-size: 13px;
  text-transform: uppercase;
}

.record-table tbody th {
  min-width: 190px;
  color: var(--green-dark);
}

.record-table td:last-child {
  color: var(--muted);
}

.status-pill {
  display: inline-block;
  min-width: 112px;
  padding: 5px 8px;
  border: 1px solid currentColor;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.status-pill.complete {
  color: var(--green);
  background: var(--green-soft);
}

.status-pill.partial {
  color: #725600;
  background: var(--yellow-soft);
}

.record-followup {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  background: var(--surface);
}

.record-followup > div {
  padding: 28px 30px;
}

.record-followup > div + div {
  border-left: 1px solid var(--line);
}

.record-followup h3 {
  margin-bottom: 8px;
}

.record-followup p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-paths {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.contact-paths article {
  position: relative;
  min-height: 280px;
  padding: 30px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--green);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.contact-paths article:nth-child(2) {
  border-top-color: var(--blue);
}

.contact-paths article:nth-child(3) {
  border-top-color: var(--yellow);
}

.contact-paths p {
  color: var(--muted);
}

.contact-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
}

.section-followup {
  display: flex;
  justify-content: center;
  max-width: 1180px;
  margin: 24px auto 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 1080px;
  margin: 0 auto;
}

.faq-grid details {
  align-self: start;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.faq-grid summary {
  position: relative;
  min-height: 68px;
  padding: 20px 52px 20px 22px;
  color: var(--green-dark);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq-grid summary::before,
.faq-grid summary::after {
  position: absolute;
  top: 31px;
  right: 22px;
  width: 14px;
  height: 2px;
  background: var(--green);
  content: "";
  transition: transform 180ms ease;
}

.faq-grid summary::after {
  transform: rotate(90deg);
}

.faq-grid details[open] summary {
  background: var(--green-soft);
}

.faq-grid details[open] summary::after {
  transform: rotate(0);
}

.faq-grid details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.service-area-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 22px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.service-map {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.service-map img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 830;
  object-fit: cover;
}

.service-map figcaption {
  padding: 9px 12px;
  color: var(--muted);
  background: var(--white);
  font-size: 11px;
}

.service-map figcaption a {
  color: var(--blue);
  font-weight: 700;
}

.map-marker {
  position: absolute;
  display: flex;
  flex-direction: column;
  min-width: 112px;
  padding: 7px 10px;
  border: 2px solid var(--white);
  border-radius: 6px;
  color: var(--white);
  background: var(--green-dark);
  box-shadow: 0 5px 14px rgba(16, 42, 70, 0.28);
  transform: translate(-50%, -50%);
}

.map-marker::after {
  position: absolute;
  bottom: -7px;
  left: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  background: inherit;
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.map-marker strong {
  font-size: 12px;
  line-height: 1.2;
}

.map-marker small {
  margin-top: 2px;
  font-size: 9px;
}

.marker-central {
  top: 48%;
  left: 55%;
}

.marker-west {
  top: 46%;
  left: 30%;
  background: var(--blue);
}

.marker-south {
  top: 75%;
  left: 42%;
  color: var(--ink);
  background: var(--yellow);
}

.marker-east {
  top: 38%;
  left: 78%;
  background: var(--green);
}

.area-groups {
  display: grid;
  gap: 10px;
}

.area-groups article {
  padding: 18px 20px;
  border-left: 4px solid var(--green);
  background: var(--surface);
}

.area-groups article:nth-child(even) {
  border-left-color: var(--blue);
}

.area-groups h3 {
  margin-bottom: 6px;
  color: var(--green-dark);
  font-size: 17px;
}

.area-groups p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.summary-learn {
  margin: 16px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
}

.summary-learn a {
  color: var(--blue);
}

[hidden] {
  display: none !important;
}

.resource-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.resource-filters button {
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.resource-filters button:hover {
  color: var(--green-dark);
  border-color: #b8c8d1;
  background: var(--white);
}

.resource-filters button.is-active,
.resource-filters button[aria-pressed="true"] {
  color: var(--white);
  border-color: var(--green-dark);
  background: var(--green-dark);
  box-shadow: var(--shadow-sm);
}

.resource-status {
  max-width: 1180px;
  margin: 18px auto 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.resource-grid a {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 212px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 4px solid var(--green);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.resource-grid a:nth-child(3n + 2) {
  border-top-color: var(--blue);
}

.resource-grid a:nth-child(3n) {
  border-top-color: var(--yellow);
}

.resource-grid a:hover {
  border-right-color: #b8c8d1;
  border-bottom-color: #b8c8d1;
  border-left-color: #b8c8d1;
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.resource-grid a > span,
.role-grid article > span,
.service-boundary-grid article > span {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.resource-grid a > strong {
  margin-top: 10px;
  color: var(--green-dark);
  font-size: 20px;
  line-height: 1.25;
}

.resource-grid a > p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.resource-grid a::after {
  width: 18px;
  height: 18px;
  margin-top: auto;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  content: "";
  transform: rotate(-45deg) scale(0.55);
  transform-origin: bottom left;
  transition: transform 180ms ease;
}

.resource-grid a:hover::after {
  transform: translateX(4px) rotate(-45deg) scale(0.55);
}

.checklist-progress {
  display: grid;
  grid-template-columns: minmax(220px, 0.6fr) minmax(280px, 1.4fr);
  gap: 28px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto 22px;
  padding: 20px 22px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green-dark);
  box-shadow: var(--shadow-md);
}

.checklist-progress > div:first-child {
  display: flex;
  flex-direction: column;
}

.checklist-progress strong {
  color: var(--yellow);
  font-size: 19px;
}

.checklist-progress span {
  margin-top: 4px;
  color: #dce8ee;
  font-size: 13px;
}

.progress-track {
  height: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
}

.progress-track [data-checklist-bar] {
  display: block;
  width: 0;
  height: 100%;
  margin: 0;
  background: var(--yellow);
  transition: width 220ms ease;
}

.planning-checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.checklist-group {
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.checklist-group legend {
  float: left;
  width: 100%;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--green-dark);
  background: var(--surface);
  font-size: 18px;
  font-weight: 800;
}

.checklist-group label {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  clear: both;
  min-height: 64px;
  padding: 16px 20px;
  color: var(--muted);
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease;
}

.checklist-group label + label {
  border-top: 1px solid var(--line);
}

.checklist-group label:hover {
  color: var(--ink);
  background: var(--green-soft);
}

.checklist-group input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--green);
}

.checklist-group label:has(input:checked) {
  color: var(--ink);
  background: var(--green-soft);
}

.checklist-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  max-width: 1180px;
  margin: 22px auto 0;
}

.comparison-table-wrap {
  max-width: 1180px;
  margin: 0 auto;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.comparison-table thead th {
  color: var(--white);
  background: var(--green-dark);
  font-size: 14px;
}

.comparison-table tbody th {
  width: 22%;
  color: var(--green-dark);
  background: var(--surface);
  font-size: 15px;
}

.comparison-table tbody td {
  color: var(--muted);
}

.comparison-table tbody tr:last-child > * {
  border-bottom: 0;
}

.comparison-table tbody tr:hover td {
  color: var(--ink);
  background: var(--green-soft);
}

.review-status-grid,
.trust-level-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.review-status-grid > div,
.trust-level-grid article {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--green);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.review-status-grid > div:nth-child(2),
.trust-level-grid article:nth-child(2) {
  border-top-color: var(--blue);
}

.review-status-grid > div:nth-child(3),
.trust-level-grid article:nth-child(3) {
  border-top-color: var(--yellow);
}

.review-status-grid > div:nth-child(4),
.trust-level-grid article:nth-child(4) {
  border-top-color: var(--ink);
}

.review-status-grid span,
.trust-level-grid h3 {
  display: block;
  margin: 8px 0 10px;
  color: var(--green-dark);
  font-size: 20px;
  font-weight: 800;
}

.review-status-grid p,
.trust-level-grid p {
  margin: 0;
  color: var(--muted);
}

.preference-profile {
  max-width: 1180px;
  margin: 0 auto;
}

.preference-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--green);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.preference-form-grid label {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 8px;
  color: var(--green-dark);
  font-weight: 800;
}

.preference-form-grid input,
.preference-form-grid select,
.preference-form-grid textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: var(--surface);
  font: inherit;
}

.preference-form-grid textarea {
  min-height: 116px;
  resize: vertical;
}

.preference-form-grid input:focus,
.preference-form-grid select:focus,
.preference-form-grid textarea:focus {
  border-color: var(--green);
  outline: 3px solid rgba(36, 120, 107, 0.18);
  background: var(--white);
}

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

.subsection-heading {
  max-width: 1180px;
  margin: 52px auto 24px;
}

.subsection-heading h3 {
  color: var(--green-dark);
  font-size: 25px;
}

.role-grid,
.service-boundary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.role-grid article,
.service-boundary-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--green);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.role-grid article:nth-child(3n + 2),
.service-boundary-grid article:nth-child(2) {
  border-top-color: var(--blue);
}

.role-grid article:nth-child(3n),
.service-boundary-grid article:nth-child(3) {
  border-top-color: var(--yellow);
}

.role-grid h3,
.service-boundary-grid h3 {
  margin: 8px 0 10px;
  color: var(--green-dark);
  font-size: 20px;
}

.role-grid p {
  margin: 0;
  color: var(--muted);
}

.service-boundary-grid .check-list li {
  font-size: 14px;
}

.no-answer-steps {
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
  counter-reset: no-answer;
}

.no-answer-steps li {
  position: relative;
  min-height: 58px;
  padding: 16px 18px 16px 62px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  counter-increment: no-answer;
}

.no-answer-steps li::before {
  position: absolute;
  top: 14px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  color: var(--white);
  background: var(--green);
  content: counter(no-answer);
  font-weight: 800;
}

.no-answer-steps strong {
  color: var(--green-dark);
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .hero-copy {
    padding: 48px 28px;
  }

  h1 {
    font-size: 42px;
  }

  .steps,
  .split-band,
  .quote-panel,
  .page-hero,
  .content-grid,
  .proof-band {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

  .record-meta {
    padding-top: 20px;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    border-left: 0;
  }

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

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

  .service-map {
    grid-column: auto;
  }

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

  .care-panel {
    grid-template-columns: 1fr;
  }

  .intake-layout {
    grid-template-columns: 1fr;
  }

  .intake-summary {
    position: static;
  }

  .intake-summary dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
  }

  .proof-band div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .resource-grid,
  .role-grid,
  .service-boundary-grid,
  .review-status-grid,
  .trust-level-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .checklist-progress {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: sticky;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px 14px;
    padding: 8px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 56px;
    height: 56px;
  }

  .brand-title {
    font-size: 18px;
  }

  .js .nav-toggle {
    display: block;
  }

  .nav {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: 6px 0 2px;
    font-size: 15px;
  }

  .js .nav {
    display: none;
  }

  .js .nav.is-open {
    display: flex;
    flex-direction: column;
  }

  .nav a,
  .nav .nav-call {
    width: 100%;
    min-height: 46px;
    padding: 11px 4px;
    border-bottom: 1px solid var(--line);
  }

  .nav a[aria-current="page"] {
    box-shadow: inset 3px 0 0 var(--green);
    padding-left: 12px;
  }

  .nav .nav-call {
    justify-content: center;
    margin-top: 8px;
    border-bottom: 0;
  }

  .hero-copy {
    order: 1;
  }

  .hero-media {
    order: 2;
  }

  .hero-media,
  .hero-media img {
    height: 220px;
    min-height: 220px;
  }

  .hero-copy,
  .service-band,
  .process-band,
  .split-band,
  .quote-band {
    padding: 32px 20px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 27px;
  }

  .lead {
    font-size: 17px;
    line-height: 1.45;
  }

  .hero .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .hero .hero-actions .button {
    width: 100%;
    padding: 10px 8px;
    font-size: 14px;
  }

  .button {
    width: 100%;
  }

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

  .intake-route-strip span + span {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .intake-progress span {
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    min-height: 82px;
    padding: 10px 4px;
    text-align: center;
    font-size: 12px;
  }

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

  .request-review-list > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .request-fallback {
    padding: 20px;
  }

  .request-fallback-actions {
    display: grid;
  }

  .client-type-grid {
    grid-template-columns: 1fr;
  }

  .client-type-copy {
    min-height: 104px;
  }

  .intake-step {
    padding: 28px 20px;
  }

  .intake-step h2 {
    font-size: 27px;
  }

  .intake-nav-split {
    display: grid;
    grid-template-columns: 1fr;
  }

  .intake-summary {
    padding: 26px 20px;
  }

  .intake-summary dl {
    grid-template-columns: 1fr;
  }

  body {
    padding-bottom: 64px;
  }

  .mobile-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 58px;
    border-top: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 -8px 24px rgba(16, 42, 70, 0.12);
  }

  .mobile-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    color: var(--green-dark);
    text-decoration: none;
    font-weight: 800;
  }

  .mobile-actions a + a {
    color: var(--white);
    background: var(--green);
  }

  .service-card {
    min-height: auto;
  }

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

  .detail-grid,
  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .workflow-grid.four-up,
  .contact-paths,
  .record-followup {
    grid-template-columns: 1fr;
  }

  .breadcrumbs {
    padding-right: 20px;
    padding-left: 20px;
  }

  .faq-band {
    padding: 48px 20px;
  }

  .record-header,
  .record-followup > div,
  .contact-paths article {
    padding: 22px 20px;
  }

  .record-meta {
    grid-template-columns: 1fr;
  }

  .record-followup > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .intent-grid,
  .intent-grid.compact,
  .faq-grid,
  .service-area-layout {
    grid-template-columns: 1fr;
  }

  .related-band {
    padding: 42px 20px;
  }

  .related-band > div:first-child,
  .related-band > .intent-grid {
    flex-basis: 100%;
  }

  .map-marker {
    min-width: 0;
    padding: 5px 7px;
  }

  .map-marker small {
    display: none;
  }

  .scope-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px 20px;
  }

  .scope-matrix-head {
    display: none;
  }

  .scope-row > * {
    padding: 0;
  }

  .scope-row > * + * {
    border-left: 0;
  }

  .scope-row p + p {
    padding-top: 12px;
    border-top: 1px solid var(--line);
  }

  .scope-row p::before {
    display: block;
    margin-bottom: 4px;
    color: var(--green);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    content: "Scope";
  }

  .scope-row p:last-child::before {
    content: "Considerations";
  }

  .scope-tabs,
  .explorer-panel-grid {
    grid-template-columns: 1fr;
  }

  .scope-tab {
    text-align: left;
  }

  .scope-panel {
    padding: 22px 20px;
  }

  .explorer-panel-grid {
    gap: 24px;
  }

  .explorer-panel-grid > div + div {
    padding: 20px;
    border-top: 4px solid var(--blue);
    border-left: 0;
  }

  .care-band {
    padding: 48px 20px;
  }

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

  .quote-form {
    padding: 24px;
  }

  .quote-form.intake-form {
    padding: 0;
  }

  .page-hero,
  .content-band,
  .form-hero,
  .form-band {
    padding-left: 20px;
    padding-right: 20px;
  }

  .resource-filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .resource-filters button {
    padding-right: 8px;
    padding-left: 8px;
  }

  .resource-grid,
  .planning-checklist-grid,
  .role-grid,
  .service-boundary-grid,
  .review-status-grid,
  .trust-level-grid,
  .preference-form-grid {
    grid-template-columns: 1fr;
  }

  .preference-form-grid {
    padding: 22px 20px;
  }

  .preference-form-grid .wide-field {
    grid-column: auto;
  }

  .resource-grid a {
    min-height: 0;
    padding: 22px 20px;
  }

  .checklist-progress {
    padding: 20px;
  }

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

@media (max-width: 760px) {
  .footer-social {
    width: 100%;
    padding-top: 8px;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .social-connect {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* v13 accessibility and resilient interaction */
main [id],
main :focus {
  scroll-margin-top: 118px;
}

button,
select,
textarea,
input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
summary {
  min-height: 44px;
}

summary {
  display: flex;
  align-items: center;
}

.footer-contact a {
  min-height: 28px;
}

@media (prefers-contrast: more) {
  :root {
    --muted: #37414a;
    --line: #8998a2;
  }

  .button,
  .service-card,
  .resource-grid a,
  .checklist-group,
  .service-zone-grid article,
  .plan-result {
    border-width: 2px;
  }
}

@media (forced-colors: active) {
  *,
  *::before,
  *::after {
    box-shadow: none !important;
  }

  :focus-visible {
    outline: 3px solid Highlight;
  }

  .button,
  .resource-filters button,
  .map-marker,
  .neighbourhood-list li,
  .plan-result,
  .checklist-group,
  .service-zone-grid article {
    border: 1px solid ButtonText;
  }

  [aria-selected="true"],
  [aria-pressed="true"] {
    outline: 2px solid Highlight;
  }
}

/* v14 consent-gated Google Analytics */
.analytics-consent {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1200;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  max-width: 1060px;
  margin: 0 auto;
  padding: 22px 24px;
  border: 2px solid var(--green-dark);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(16, 42, 70, 0.28);
}

.analytics-consent[hidden] {
  display: none;
}

.analytics-consent h2 {
  margin: 0 0 4px;
  font-size: 22px;
}

.analytics-consent p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 15px;
}

.analytics-consent a {
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.analytics-consent-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.analytics-consent-actions .button {
  min-width: 120px;
}

.analytics-settings-button {
  margin-top: 4px;
}

@media (max-width: 640px) {
  .analytics-consent {
    right: 10px;
    bottom: 74px;
    left: 10px;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
  }

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

@media print {
  .analytics-consent,
  .analytics-settings-button {
    display: none !important;
  }
}

/* v13 controlled Ottawa service area */
.service-area-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1.18fr);
  gap: 42px;
  align-items: center;
  padding: 58px 32px 64px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.service-area-hero > div {
  max-width: 680px;
}

.service-area-hero .service-map {
  margin: 0;
}

.service-area-source {
  margin: 20px 0 0;
}

.service-zone-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-zone-grid article {
  position: relative;
  min-width: 0;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 4px solid var(--green);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.service-zone-grid article:nth-child(2n) {
  border-top-color: var(--blue);
}

.zone-number {
  position: absolute;
  top: 14px;
  right: 20px;
  color: #dfe8ed;
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}

.service-zone-grid h2 {
  max-width: 85%;
  margin-top: 8px;
  font-size: 27px;
}

.neighbourhood-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.neighbourhood-list li {
  padding: 7px 10px;
  border: 1px solid #c7d4db;
  border-radius: 6px;
  color: var(--green-dark);
  background: var(--surface);
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .service-area-hero {
    grid-template-columns: 1fr;
  }

  .service-area-hero > div {
    max-width: 820px;
  }
}

@media (max-width: 640px) {
  .service-area-hero {
    padding: 40px 18px 46px;
  }

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

  .service-zone-grid article {
    padding: 24px 20px;
  }
}

@media print {
  .site-header,
  .breadcrumbs,
  .mobile-actions,
  .hero-actions,
  .checklist-actions,
  .resource-filters,
  .site-footer {
    display: none !important;
  }

  body {
    padding: 0;
    color: #000000;
    background: #ffffff;
    font-size: 11pt;
  }

  .page-hero,
  .content-band,
  .faq-band,
  .related-band,
  .quote-band {
    padding: 18px 0;
    background: #ffffff;
  }

  .page-hero img,
  .quote-band,
  .related-band {
    display: none;
  }

  .page-hero,
  .planning-checklist-grid,
  .role-grid,
  .service-boundary-grid,
  .review-status-grid,
  .trust-level-grid,
  .preference-form-grid {
    grid-template-columns: 1fr;
  }

  .checklist-progress,
  .checklist-group,
  .role-grid article,
  .service-boundary-grid article,
  .review-status-grid > div,
  .trust-level-grid article,
  .preference-form-grid,
  .comparison-table-wrap {
    color: #000000;
    border: 1px solid #777777;
    background: #ffffff;
    box-shadow: none;
    break-inside: avoid;
  }

  .checklist-progress span,
  .checklist-progress strong {
    color: #000000;
  }

  .progress-track {
    border-color: #777777;
    background: #eeeeee;
  }

  .progress-track [data-checklist-bar] {
    background: #555555;
  }

  .comparison-table {
    min-width: 0;
  }

  .preference-form-grid input,
  .preference-form-grid select,
  .preference-form-grid textarea {
    color: #000000;
    border-color: #777777;
    background: #ffffff;
  }

  .comparison-table thead th,
  .comparison-table tbody th {
    color: #000000;
    background: #eeeeee;
  }

  .reveal-item {
    opacity: 1 !important;
    transform: none !important;
  }
}

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

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

  .js .reveal-item {
    opacity: 1;
    transform: none;
  }
}

/* v13 commercial and residential decision tools */
.commercial-cycle {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.home-plan-finder,
.plan-result {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.home-plan-finder {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.plan-question-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.plan-question-grid label {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: var(--green-dark);
  font-weight: 800;
}

.plan-question-grid select {
  width: 100%;
  min-height: 50px;
  padding: 11px 42px 11px 13px;
  border: 1px solid #aabac4;
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.plan-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.plan-result {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 30px;
  margin-top: 22px;
  padding: 30px;
  border: 2px solid var(--green);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.plan-result[hidden] {
  display: none;
}

.plan-result h2 {
  margin-top: 0;
}

.plan-result-action {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.plan-result-action p {
  margin-top: 0;
  color: var(--muted);
}

@media (max-width: 980px) {
  .commercial-cycle,
  .commercial-readiness-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .commercial-cycle,
  .commercial-readiness-grid,
  .plan-question-grid,
  .plan-result {
    grid-template-columns: 1fr;
  }

  .home-plan-finder,
  .plan-result {
    padding: 22px 18px;
  }

  .plan-result-action {
    padding-top: 22px;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}
