﻿: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;
  }
}
/* 2026-07-15 DSM-style rebuild overrides */
:root {
  --ink: #102030;
  --muted: #50657a;
  --line: #d7e3ef;
  --soft: #eef6ff;
  --panel: #ffffff;
  --brand: #0e3a53;
  --brand-dark: #09283b;
  --accent: #f2c14e;
  --accent-dark: #c78a16;
  --teal: #2a9d8f;
  --ok: #1f8a68;
  --shadow: 0 18px 44px rgba(16, 32, 44, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}
body { background: #f8fbff; color: var(--ink); }
a { color: var(--brand); }
.wrap { width: min(1180px, calc(100% - 40px)); }
.topbar { background: var(--brand-dark); font-weight: 750; }
.nav { background: rgba(255,255,255,.96); border-bottom-color: rgba(215,227,239,.95); }
.nav .wrap { min-height: 78px; }
.logo-image img { width: min(260px, 58vw); height: auto; }
.nav-links { font-weight: 800; }
.button, button { min-height: 50px; border-radius: 7px; background: var(--brand); color: #fff; }
.button:hover, button:hover { background: var(--brand-dark); }
.button.accent { color: #102030; background: var(--accent); }
.button.accent:hover { background: #ffd66b; }
.button.secondary, .button.ghost { color: var(--brand); background: #e8f3f7; }
.hero { min-height: 720px; background: #0b1f37; }
.hero::after { background: linear-gradient(90deg, rgba(9,31,47,.94) 0%, rgba(9,31,47,.78) 46%, rgba(9,31,47,.24) 100%); }
.hero .wrap { grid-template-columns: minmax(0,1.15fr) minmax(360px,440px); gap: 3rem; min-height: 720px; padding: 5rem 0; }
.eyebrow { display: block; padding: 0; border-radius: 0; background: transparent; color: #d8ecff; font-size: .78rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow.dark { color: var(--brand); }
h1 { font-size: clamp(2.65rem, 5.4vw, 5.3rem); line-height: .98; }
h2 { font-size: clamp(2rem, 3.5vw, 3.6rem); line-height: 1.05; }
h3 { font-size: 1.28rem; }
.hero-copy { color: rgba(255,255,255,.91); font-size: clamp(1.05rem,1.45vw,1.28rem); }
.quote-card { border-radius: 7px; box-shadow: var(--shadow); border: 1px solid rgba(215,227,239,.7); }
.panel-kicker { margin: 0 0 .35rem; color: var(--brand); font-weight: 900; letter-spacing: .12em; text-transform: uppercase; font-size: .76rem; }
.contact-choice { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
input, select, textarea { border-color: #c8d8e6; }
.section { padding: 72px 0; }
.section.alt { background: var(--soft); }
.split-intro { display: grid; grid-template-columns: .9fr 1.1fr; gap: 2rem; align-items: start; }
.service-card-grid { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 20px; }
.service-card { overflow: hidden; border: 1px solid var(--line); border-radius: 7px; background: #fff; box-shadow: 0 12px 30px rgba(16,32,44,.08); }
.service-card .service-photo { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.service-card > div { padding: 20px; }
.tag { display: inline-flex; margin-bottom: 10px; color: var(--brand); background: #e8f3f7; }
.city-strip { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }
.city-tile { display: grid; gap: 5px; min-height: 118px; align-content: start; padding: 18px; border: 1px solid var(--line); border-radius: 7px; background: #fff; text-decoration: none; box-shadow: 0 8px 22px rgba(16,32,44,.06); }
.city-tile small { color: var(--muted); line-height: 1.35; }
.city-pin { width: 12px; height: 12px; border-radius: 999px; background: var(--teal); }
.step-grid { gap: 18px; }
.step-grid article { border: 1px solid var(--line); border-radius: 7px; background: #fff; padding: 22px; text-align: left; }
.step-grid span { width: 38px; height: 38px; color: var(--brand-dark); background: var(--accent); }
.guide-card { border-radius: 7px; border-left-color: var(--teal); }
.local-proof-section { background: #fff; }
.mini-card { border-radius: 7px; border-color: var(--line); background: #f8fbff; }
.cta-band { background: var(--brand-dark); }
.cta-band a { color: #fff; }
.cta-band .button { color: #102030; }
.page-hero { background: linear-gradient(180deg,#eef6ff,#fff); }
.page-hero h1 { color: var(--ink); font-size: clamp(2.2rem,4vw,4.3rem); }
.page-hero .hero-copy { color: var(--muted); }
.footer { background: #071d2b; }
@media (max-width: 980px) {
  .hero .wrap, .split-intro, .service-card-grid, .step-grid, .guide-grid, .grid-2 { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero .wrap { min-height: auto; padding: 3.5rem 0; }
  .city-strip { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 640px) {
  .wrap { width: min(100% - 28px, 1180px); }
  .topbar .wrap { display: grid; gap: 4px; }
  .nav .wrap { display: grid; gap: 12px; min-height: 0; }
  .nav-links { overflow-x: auto; padding-bottom: 4px; gap: 12px; }
  h1 { font-size: clamp(2rem, 10vw, 3rem); }
  h2 { font-size: clamp(1.65rem, 8vw, 2.5rem); }
  .hero-actions, .contact-choice, .city-strip { grid-template-columns: 1fr; display: grid; }
  .section { padding: 46px 0; }
}

/* Approved Option A logo palette - Lake Superior Bedrock */
:root {
  --ink: #18232c;
  --muted: #5f6c72;
  --line: #d8dee2;
  --soft: #f5f7f4;
  --panel: #ffffff;
  --brand: #06233d;
  --brand-dark: #031522;
  --accent: #b86632;
  --accent-dark: #8e451f;
  --lake: #35657d;
  --teal: #35657d;
  --ok: #2f735f;
  --shadow: 0 18px 44px rgba(6, 35, 61, 0.14);
}
body { background: var(--soft); color: var(--ink); }
a { color: var(--brand); }
.topbar, .cta-band, .footer { background: var(--brand-dark); }
.logo-image img {
  width: min(300px, 62vw);
  height: auto;
  max-height: 72px;
  object-fit: contain;
  object-position: left center;
}
.button, button { background: var(--brand); color: #fff; }
.button:hover, button:hover { background: var(--brand-dark); }
.button.accent { color: #fff; background: var(--accent-dark); }
.button.accent:hover { background: #6f3217; }
.button.secondary, .button.ghost, .tag { color: var(--brand); background: #edf3f5; }
.eyebrow.dark, .panel-kicker, .city-card strong, .mini-card strong, .quote-card h2 { color: var(--brand); }
.city-pin { background: var(--lake); }
.step-grid span { color: #fff; background: var(--accent-dark); }
.guide-card { border-left-color: var(--accent); }
.page-hero { background: linear-gradient(180deg, #eef3f5, #fff); }
@media (max-width: 980px) {
  .logo-image img { width: min(276px, 76vw); max-height: 68px; }
}


/* Duluth refinement pass: dropdown header, balanced intro, infographics, footer */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.97); border-bottom: 1px solid var(--line); box-shadow: 0 4px 20px rgba(6,35,61,.05); }
.nav { display: none; }
.nav-shell { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.nav-shell .logo-image img { width: min(320px, 34vw); max-height: 74px; object-fit: contain; object-position: left center; }
.nav-links { display: flex; align-items: center; gap: 16px; font-weight: 850; }
.nav-links > a, .nav-dropdown > summary { color: var(--ink); text-decoration: none; cursor: pointer; list-style: none; white-space: nowrap; }
.nav-dropdown { position: relative; }
.nav-dropdown summary::-webkit-details-marker { display: none; }
.nav-dropdown summary::after { content: ""; display: inline-block; width: 7px; height: 7px; margin-left: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); }
.dropdown-menu { position: absolute; top: calc(100% + 16px); left: 0; min-width: 260px; display: grid; gap: 4px; padding: 10px; border: 1px solid var(--line); border-radius: 8px; background: #fff; box-shadow: var(--shadow); }
.dropdown-menu a { padding: 10px 12px; border-radius: 6px; color: var(--ink); text-decoration: none; }
.dropdown-menu a:hover { background: #edf3f5; color: var(--brand); }
.nav-quote.button { min-height: 46px; gap: 8px; color: #fff !important; background: var(--brand); }
.nav-quote.button:hover { background: var(--brand-dark); }
.nav-call { min-height: 46px; display: inline-flex; align-items: center; padding: 0 18px; border-radius: 7px; color: var(--brand) !important; background: #edf3f5; text-decoration: none; }
.hero-content h1 { overflow-wrap: normal; word-break: normal; hyphens: none; max-width: 820px; font-size: clamp(2.45rem, 4.7vw, 4.65rem); line-height: 1.02; }
.split-intro { align-items: start; }
.split-intro > p { max-width: 720px; font-size: 1.08rem; line-height: 1.68; }
.intro-cards { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; margin-top: 22px; }
.intro-cards article, .detail-grid article, .cost-cards article { border: 1px solid var(--line); border-radius: 8px; background: #fff; padding: 20px; box-shadow: 0 8px 24px rgba(6,35,61,.06); }
.intro-cards strong { display: block; margin-bottom: 7px; color: var(--brand); font-size: 1.05rem; }
.intro-cards span { color: var(--muted); line-height: 1.45; }
.transparent-band { background: #fff; }
.proof-safe { display: grid; grid-template-columns: minmax(0,1fr) minmax(320px,420px); gap: 48px; align-items: center; }
.proof-copy p { color: #2e3c44; font-size: 1.08rem; }
.brand-badge-card { display: grid; place-items: center; gap: 16px; padding: 24px; border: 1px solid var(--line); border-radius: 8px; background: #f8fbf8; text-align: center; }
.brand-badge-card img { width: min(210px, 60vw); max-height: 300px; object-fit: contain; }
.brand-badge-card p { color: var(--muted); margin: 0; }
.detail-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 16px; }
.detail-grid span { display: inline-grid; place-items: center; width: 38px; height: 38px; margin-bottom: 12px; border-radius: 999px; color: #fff; background: var(--brand); font-weight: 900; }
.detail-grid h3, .cost-cards h3 { color: var(--brand); margin-bottom: 8px; font-size: 1.08rem; }
.detail-grid p, .cost-cards p { color: var(--muted); margin: 0; font-size: .95rem; line-height: 1.45; }
.infographic-layout { align-items: center; gap: 36px; }
.infographic-card { margin: 0; padding: 12px; border: 1px solid var(--line); border-radius: 8px; background: #fff; box-shadow: 0 12px 32px rgba(6,35,61,.08); }
.infographic-card img { width: 100%; height: auto; border-radius: 6px; }
.infographic-card figcaption { margin-top: 10px; color: var(--muted); font-size: .9rem; }
.cost-layout { display: grid; grid-template-columns: minmax(0,.86fr) minmax(0,1.14fr); gap: 34px; align-items: start; }
.cost-cards { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }
.city-strip { grid-template-columns: repeat(3,minmax(0,1fr)); }
.city-tile { min-height: 112px; align-content: center; justify-items: center; text-align: center; border-radius: 6px; }
.footer { padding: 46px 0; color: #dce8ee; background: var(--brand-dark); }
.footer-grid { display: grid; grid-template-columns: 1.45fr 1fr 1fr 1fr; gap: 30px; align-items: start; }
.footer strong { display: block; margin-bottom: 12px; color: #fff; }
.footer p { color: #c7d5dd; line-height: 1.6; }
.footer a { display: block; color: #fff; text-decoration: none; margin-bottom: 9px; }
.footer a:hover { text-decoration: underline; }
.footer-meta { margin-top: 16px; font-size: .95rem; }
.footer-meta a { display: inline; margin: 0; }
@media (max-width: 1100px) { .nav-shell { align-items: flex-start; flex-direction: column; padding: 12px 0; } .nav-shell .logo-image img { width: min(320px, 78vw); } .nav-links { width: 100%; flex-wrap: wrap; gap: 10px; } .dropdown-menu { z-index: 60; } }
@media (max-width: 980px) { .proof-safe, .infographic-layout, .cost-layout, .detail-grid, .intro-cards, .cost-cards, .footer-grid { grid-template-columns: 1fr; } .hero-content h1 { font-size: clamp(2rem, 9vw, 3.25rem); } }
@media (max-width: 640px) { .site-header { position: static; } .nav-links { display: grid; grid-template-columns: 1fr 1fr; } .nav-links > a, .nav-dropdown > summary, .nav-call, .nav-quote.button { width: 100%; justify-content: center; min-height: 42px; padding: 9px 10px; border: 1px solid var(--line); border-radius: 6px; background: #fff; text-align: center; } .nav-quote.button { background: var(--brand); border-color: var(--brand); } .nav-call { background: #edf3f5; } .dropdown-menu { position: static; min-width: 0; margin-top: 8px; box-shadow: none; } .nav-dropdown { display: grid; } .nav-dropdown[open] { grid-column: 1 / -1; } .nav-dropdown[open] summary { color: var(--brand); } }

/* Duluth v2 review polish: second infographic and balanced footer marker */
.infographic-layout-secondary { margin-top: 28px; }
.footer-grid-balanced { border-top: 0; }
@media (max-width: 980px) { .infographic-layout-secondary { margin-top: 18px; } }

/* Duluth header logo fit: prevent approved horizontal logo from clipping in the masthead */
.site-header { overflow: visible; }
.nav-shell {
  min-height: 104px;
  padding-top: 10px;
  padding-bottom: 10px;
  overflow: visible;
}
.logo-image {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  overflow: visible;
}
.nav-shell .logo-image img {
  display: block;
  width: min(330px, 32vw) !important;
  height: auto !important;
  max-height: 86px !important;
  object-fit: contain;
  object-position: left center;
}
@media (max-width: 1100px) {
  .nav-shell .logo-image img { width: min(320px, 78vw) !important; max-height: 84px !important; }
}
@media (max-width: 640px) {
  .nav-shell { min-height: 0; padding-top: 12px; padding-bottom: 12px; }
  .nav-shell .logo-image img { width: min(290px, 82vw) !important; max-height: 82px !important; }
}

/* Duluth header-safe padded logo asset */
.nav-shell {
  min-height: 146px;
}
.nav-shell .logo-image img {
  width: min(380px, 34vw) !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
}
@media (max-width: 1100px) {
  .nav-shell { min-height: 0; }
  .nav-shell .logo-image img { width: min(360px, 80vw) !important; max-height: none !important; }
}
@media (max-width: 640px) {
  .nav-shell .logo-image img { width: min(320px, 86vw) !important; max-height: none !important; }
}

/* Duluth header compact logo correction */
.site-header { overflow: visible; }
.nav-shell {
  min-height: 108px !important;
  padding-top: 6px !important;
  padding-bottom: 6px !important;
  align-items: center !important;
}
.nav-shell .logo-image img {
  width: min(320px, 31vw) !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
}
@media (max-width: 1100px) {
  .nav-shell { min-height: 0 !important; padding-top: 10px !important; padding-bottom: 10px !important; }
  .nav-shell .logo-image img { width: min(310px, 76vw) !important; }
}
@media (max-width: 640px) {
  .nav-shell .logo-image img { width: min(285px, 84vw) !important; }
}

/* Duluth final header lockup: shield image plus live text */
.nav-shell {
  min-height: 96px !important;
  padding-top: 8px !important;
  padding-bottom: 8px !important;
  align-items: center !important;
}
.logo-lockup {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  flex: 0 0 auto;
  min-width: 0;
  text-decoration: none !important;
  overflow: visible !important;
}
.logo-lockup .logo-shield {
  display: block !important;
  width: 72px !important;
  height: 72px !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
  flex: 0 0 72px;
}
.logo-type {
  display: grid !important;
  gap: 0 !important;
  line-height: .88 !important;
  letter-spacing: 0 !important;
  white-space: nowrap !important;
  overflow: visible !important;
}
.logo-type .logo-line {
  display: block !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-weight: 900 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}
.logo-line-primary {
  color: #06233d !important;
  font-size: 34px !important;
}
.logo-line-secondary {
  color: #1f5d86 !important;
  font-size: 26px !important;
}
.logo-line-accent {
  color: #b56435 !important;
  font-size: 18px !important;
  line-height: 1 !important;
}
@media (max-width: 1100px) {
  .nav-shell { min-height: 0 !important; }
  .logo-lockup .logo-shield { width: 66px !important; height: 66px !important; flex-basis: 66px; }
  .logo-line-primary { font-size: 30px !important; }
  .logo-line-secondary { font-size: 23px !important; }
  .logo-line-accent { font-size: 16px !important; }
}
@media (max-width: 640px) {
  .logo-lockup { gap: 10px !important; }
  .logo-lockup .logo-shield { width: 58px !important; height: 58px !important; flex-basis: 58px; }
  .logo-line-primary { font-size: 25px !important; }
  .logo-line-secondary { font-size: 19px !important; }
  .logo-line-accent { font-size: 14px !important; }
}

/* Duluth header lockup visual correction: compact, logo-like proportions */
.nav-shell {
  min-height: 86px !important;
  padding-top: 7px !important;
  padding-bottom: 7px !important;
  align-items: center !important;
}
.logo-lockup {
  gap: 10px !important;
  transform: none !important;
}
.logo-lockup .logo-shield {
  width: 58px !important;
  height: 58px !important;
  flex-basis: 58px !important;
}
.logo-type {
  line-height: .82 !important;
  gap: 1px !important;
}
.logo-line-primary {
  font-size: 27px !important;
  font-weight: 900 !important;
}
.logo-line-secondary {
  font-size: 21px !important;
  font-weight: 900 !important;
}
.logo-line-accent {
  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: .95 !important;
}
@media (min-width: 1300px) {
  .logo-lockup .logo-shield { width: 62px !important; height: 62px !important; flex-basis: 62px !important; }
  .logo-line-primary { font-size: 30px !important; }
  .logo-line-secondary { font-size: 23px !important; }
  .logo-line-accent { font-size: 15px !important; }
}
@media (max-width: 1100px) {
  .nav-shell { min-height: 0 !important; }
  .logo-lockup .logo-shield { width: 56px !important; height: 56px !important; flex-basis: 56px !important; }
  .logo-line-primary { font-size: 26px !important; }
  .logo-line-secondary { font-size: 20px !important; }
  .logo-line-accent { font-size: 13.5px !important; }
}
@media (max-width: 640px) {
  .logo-lockup .logo-shield { width: 50px !important; height: 50px !important; flex-basis: 50px !important; }
  .logo-line-primary { font-size: 23px !important; }
  .logo-line-secondary { font-size: 18px !important; }
  .logo-line-accent { font-size: 12px !important; }
}

/* Duluth approved generated Option D header logo */
.nav-shell {
  min-height: 92px !important;
  padding-top: 8px !important;
  padding-bottom: 8px !important;
  align-items: center !important;
}
.logo-generated-d {
  display: inline-flex !important;
  align-items: center !important;
  flex: 0 0 auto !important;
  overflow: visible !important;
}
.logo-generated-d img {
  display: block !important;
  width: min(340px, 31vw) !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: left center !important;
}
@media (max-width: 1100px) {
  .nav-shell { min-height: 0 !important; padding-top: 10px !important; padding-bottom: 10px !important; }
  .logo-generated-d img { width: min(320px, 78vw) !important; }
}
@media (max-width: 640px) {
  .logo-generated-d img { width: min(290px, 86vw) !important; }
}

