:root {
  color-scheme: light;
  --ink: #1d2326;
  --muted: #59645f;
  --line: #ddd8cf;
  --soft: #f4f1ea;
  --panel: #ffffff;
  --brand: #2f5d50;
  --brand-dark: #203c36;
  --accent: #c46f3d;
  --ok: #2d6d46;
  --shadow: 0 12px 32px rgba(31, 39, 35, 0.13);
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fbfaf6;
  line-height: 1.55;
}

a {
  color: var(--brand-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

.topbar {
  background: var(--brand-dark);
  color: #fff;
  font-size: 0.94rem;
}

.topbar .wrap,
.nav .wrap,
.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
}

.topbar a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.topbar a:hover {
  text-decoration: underline;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  color: #fff;
  background: var(--brand);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 17px;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--ink);
  text-decoration: none;
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 7px;
  color: #fff;
  background: var(--brand);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button:hover,
button:hover {
  background: var(--brand-dark);
}

.button.secondary {
  color: var(--brand-dark);
  background: #edf4ef;
}

.hero {
  position: relative;
  background: #1b2426;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 29, 28, 0.94) 0%, rgba(25, 36, 34, 0.78) 46%, rgba(32, 60, 54, 0.24) 100%);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 34px;
  align-items: center;
  min-height: 560px;
  padding: 38px 0;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #233d36;
  background: #f8efe7;
  font-size: 0.82rem;
  font-weight: 800;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 16px;
  color: #fff;
  font-size: clamp(2.25rem, 4.4vw, 4.15rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 690px;
  color: #f2f0e9;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.trust-row span,
.tag {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
}

.quote-card {
  background: var(--panel);
  border-radius: 8px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.quote-card h2 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.field {
  display: grid;
  gap: 6px;
  margin-top: 12px;
}

label {
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid #cbd7de;
  border-radius: 7px;
  padding: 10px 11px;
  font: inherit;
  background: #fff;
}

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

.fine {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.section {
  padding: 48px 0;
}

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

.section-head {
  max-width: 760px;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(1.55rem, 2.35vw, 2.2rem);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  font-size: 1.12rem;
}

.grid-3,
.grid-2,
.city-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
}

.card p:last-child,
.section-head p:last-child {
  margin-bottom: 0;
}

.list {
  padding-left: 20px;
  margin: 0;
}

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

.callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 26px;
  border-radius: 8px;
  background: var(--brand-dark);
  color: #fff;
}

.callout h2,
.callout p {
  color: #fff;
}

.service-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.service-nav a {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  text-decoration: none;
  font-weight: 800;
}

.page-hero {
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.page-hero .wrap {
  padding: 44px 0 30px;
}

.page-hero h1 {
  max-width: 840px;
  color: var(--ink);
}

.page-hero .hero-copy {
  color: var(--muted);
}

.breadcrumbs {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer {
  padding: 34px 0;
  color: #eee7dc;
  background: #202826;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 22px;
}

.footer a {
  color: #fff;
}

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

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

.success {
  display: none;
  margin-top: 12px;
  padding: 10px;
  border: 1px solid #bdd7c5;
  border-radius: 7px;
  color: #24543a;
  background: #eef8f1;
  font-weight: 700;
}

.success.show {
  display: block;
}



.resource-figure {
  margin: 0 0 28px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.resource-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.resource-figure-portrait img {
  max-width: 540px;
  margin-inline: auto;
}

.resource-figure figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}
.asset-content h2:not(:first-child) {
  margin-top: 28px;
}

.checklist {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding: 12px 14px 12px 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 19px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--ok);
}
@media (max-width: 860px) {
  .topbar .wrap,
  .nav .wrap,
  .callout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .topbar .wrap,
  .nav .wrap {
    display: grid;
  }

  .nav-links {
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero .wrap {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .grid-3,
  .grid-2,
  .city-grid {
    grid-template-columns: 1fr;
  }

  .quote-card {
    max-width: 520px;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 36px 0;
  }

  .hero .wrap {
    padding: 28px 0;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .topbar .wrap,
  .nav .wrap,
  .wrap {
    width: min(100% - 24px, 1120px);
  }

  .hero-actions {
    display: grid;
  }

  .button,
  button {
    width: 100%;
  }
}

.intake-ready {
  display: grid;
  gap: 12px;
}

.intake-ready h3 {
  margin: 0;
  color: #244b3a;
  font-size: 1.15rem;
}

.intake-call-button {
  width: 100%;
  font-size: 1.05rem;
}

.call-script {
  padding: 12px;
  border: 1px solid #c9d8c9;
  border-radius: 8px;
  background: #fbfff9;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.55;
}

.copy-call-script {
  width: 100%;
}
.contact-choice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.success.success-error {
  border-color: #e2b4a4;
  color: #7a2f1a;
  background: #fff3ed;
}

.success.success-working {
  border-color: #c8d7de;
  color: #36515a;
  background: #f2f7f8;
}

button:disabled {
  opacity: 0.72;
  cursor: wait;
}

@media (max-width: 560px) {
  .section {
    padding: 36px 0;
  }

  .hero .wrap {
    padding: 28px 0;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .contact-choice {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.city-card {
  display: grid;
  gap: 8px;
  color: var(--ink);
  text-decoration: none;
}

.city-card strong {
  color: var(--brand-dark);
  font-size: 1.05rem;
}

.city-card span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}


/* Canva-inspired homepage refresh */
.hero {
  background: #17363c;
}

.hero::after {
  background: linear-gradient(90deg, rgba(18, 47, 53, 0.94) 0%, rgba(18, 47, 53, 0.84) 48%, rgba(18, 47, 53, 0.46) 100%);
}

.hero img {
  opacity: 0.72;
  filter: saturate(0.85) contrast(1.02);
}

.hero .wrap {
  grid-template-columns: minmax(0, 1fr) 390px;
  min-height: 635px;
  gap: 72px;
}

.hero-content h1 {
  max-width: 780px;
  font-size: clamp(2rem, 3.8vw, 3.35rem);
  line-height: 1.08;
}

.hero .quote-card {
  align-self: center;
}

.button.accent,
button {
  background: #d79c22;
  color: #fff;
}

.button.accent:hover,
button:hover {
  background: #bd8118;
}

.button.secondary.ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.08);
}

.quote-card {
  color: var(--ink);
}

.quote-card h2 {
  color: var(--brand-dark);
}

.quote-card .field {
  margin-top: 9px;
}

.quote-card label {
  color: #586368;
  font-size: 0.82rem;
}

.quote-card input,
.quote-card select,
.quote-card textarea {
  min-height: 37px;
  padding: 7px 10px;
  border-color: #d6dde0;
  border-radius: 4px;
  font-size: 0.93rem;
}

.quote-card textarea {
  min-height: 78px;
}

.quote-card button {
  width: 100%;
  margin-top: 14px;
  background: #176a74;
}

.quote-card button:hover {
  background: #104f56;
}

.centered > .section-head,
.faq-wrap > .section-head {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 960px;
  margin: 0 auto;
}

.service-card {
  overflow: hidden;
  border: 1px solid #d5dee2;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 5px 16px rgba(31, 39, 35, 0.1);
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #e8ece8;
}

.service-card div {
  padding: 17px 18px 20px;
}

.service-card h3 {
  margin-bottom: 7px;
  color: var(--brand-dark);
}

.service-card p {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.38;
}

.service-card a,
.guide-card {
  font-weight: 800;
  text-decoration: none;
}

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

.city-tile {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-height: 86px;
  padding: 16px 10px;
  border: 1px solid #c9d9de;
  border-radius: 6px;
  color: var(--brand-dark);
  background: #fff;
  text-decoration: none;
}

.city-pin {
  position: relative;
  width: 18px;
  height: 18px;
  border: 2px solid #3f8790;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.city-pin::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3f8790;
}

.city-tile strong {
  font-size: 0.94rem;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.step-grid article {
  display: grid;
  justify-items: center;
}

.step-grid span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 15px;
  border-radius: 50%;
  color: #fff;
  background: #176a74;
  font-weight: 900;
}

.step-grid h3 {
  margin-bottom: 6px;
  color: var(--brand-dark);
}

.step-grid p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.38;
}

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

.guide-card {
  display: grid;
  gap: 7px;
  min-height: 104px;
  padding: 20px;
  border: 1px solid #d9e0df;
  border-radius: 6px;
  color: var(--brand-dark);
  background: #fff;
}

.guide-card span {
  color: var(--muted);
  font-weight: 400;
  line-height: 1.35;
}

.faq-wrap {
  max-width: 760px;
}

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

.faq-list details {
  border: 1px solid #d9e0df;
  border-radius: 7px;
  background: #fff;
}

.faq-list summary {
  cursor: pointer;
  padding: 15px 18px;
  color: var(--brand-dark);
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 18px 16px;
  color: var(--muted);
}

.cta-band {
  padding: 64px 0;
  color: #fff;
  background: #145d66;
  text-align: center;
}

.cta-band h2,
.cta-band p {
  color: #fff;
}

.cta-band p {
  margin-bottom: 26px;
}

@media (max-width: 980px) {
  .hero .wrap,
  .service-card-grid,
  .step-grid,
  .guide-grid {
    grid-template-columns: 1fr;
  }

  .hero .wrap {
    gap: 28px;
    min-height: auto;
    padding: 42px 0;
  }

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

  .step-grid {
    gap: 26px;
  }
}

@media (max-width: 560px) {
  .hero-content h1 {
    font-size: clamp(1.85rem, 9vw, 2.45rem);
  }

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

  .service-card div,
  .guide-card {
    padding: 16px;
  }
}
.service-card img[src$=".svg"] {
  object-fit: contain;
  padding: 12px;
}
.service-card img.service-photo {
  object-fit: cover;
  padding: 0;
}
/* Final launch polish: typography, spacing, and mobile navigation */
:root {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

body {
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

p {
  color: #2f383b;
}

.nav .wrap {
  gap: 16px;
}

.nav-links {
  gap: 13px;
}

.logo span:last-child {
  line-height: 1.12;
}

.button,
button {
  letter-spacing: 0;
  white-space: nowrap;
}

.quote-card {
  border: 1px solid rgba(213, 222, 226, 0.9);
}

.quote-card .fine {
  color: #526269;
}

.section-head p {
  color: #526269;
  font-size: 1.02rem;
}

.local-proof-section {
  background: #fbfaf6;
}

.local-proof {
  align-items: center;
  gap: 32px;
}

.local-proof .section-head {
  margin-bottom: 14px;
}

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

.mini-card {
  display: grid;
  gap: 7px;
  min-height: 128px;
  padding: 18px;
  border: 1px solid #d7e1df;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 5px 18px rgba(31, 39, 35, 0.06);
}

.mini-card strong {
  color: var(--brand-dark);
  line-height: 1.22;
}

.mini-card span {
  color: #526269;
  font-size: 0.94rem;
  line-height: 1.42;
}

.service-card p,
.step-grid p,
.guide-card span,
.city-card span {
  color: #526269;
}

.resource-figure {
  box-shadow: 0 5px 18px rgba(31, 39, 35, 0.06);
}

.resource-figure-portrait img {
  max-width: 500px;
}

@media (max-width: 1120px) {
  .nav-links .button.secondary {
    display: none;
  }
}

@media (max-width: 860px) {
  .topbar .wrap {
    gap: 4px;
  }

  .nav .wrap {
    gap: 12px;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
    padding-bottom: 0;
  }

  .nav-links a {
    min-height: 38px;
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
    text-align: center;
    font-size: 0.9rem;
  }

  .nav-links .button {
    min-height: 38px;
    padding: 8px 10px;
    color: #fff;
    background: var(--brand);
  }

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

@media (max-width: 560px) {
  .topbar {
    font-size: 0.84rem;
  }

  .topbar .wrap {
    text-align: center;
  }

  .logo {
    gap: 8px;
  }

  .logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 7px;
    font-size: 0.82rem;
  }

  .logo span:last-child {
    font-size: 0.98rem;
  }

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

  .hero .wrap {
    padding: 30px 0 34px;
  }

  .hero-content h1 {
    font-size: clamp(1.95rem, 8.7vw, 2.55rem);
    line-height: 1.1;
  }

  .quote-card {
    padding: 18px;
  }

  .mini-card {
    min-height: 0;
  }
}