@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* ---- Brand palette: navy dominant, orange for emphasis/CTAs only ---- */
  --navy: #0F2740;
  --navy-deep: #0A1D31;
  --navy-soft: #1B3A57;

  --orange: #D96A16;
  --orange-hover: #B9550E;
  --orange-hot: #B9550E;      /* deeper orange for link/accent text on white (legibility) */
  --orange-dark: #8F420A;     /* text on light-orange fills */
  --orange-soft: rgba(217,106,22,.10);
  --orange-light: #FBECDC;    /* soft orange fill (calculator result, tints) */
  --on-accent: #FFFFFF;
  --hi-vis: #F4C842;

  /* ---- Neutrals ---- */
  --ink: #0F2740;             /* headings + strong text (navy) */
  --ink-soft: #444444;        /* body text */
  --muted: #6E7A86;           /* meta, labels, captions */
  --bg: #FFFFFF;
  --bg-2: #F7F7F5;            /* warm light gray */
  --surface: #FFFFFF;
  --surface-2: #F1F1EE;
  --surface-hover: #ECECE8;
  --line: #E6E6E6;
  --line-strong: #D9D9D4;

  --green: #2F8F5B;
  --gold: #E6A817;

  /* ---- Elevation: subtle, premium ---- */
  --shadow-sm: 0 1px 2px rgba(15,39,64,.06);
  --shadow-md: 0 10px 30px rgba(15,39,64,.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.08);
  --shadow-xl: 0 24px 60px rgba(0,0,0,.16);

  --radius: 8px;
  --radius-sm: 6px;
  --radius-lg: 10px;
  --container: 1200px;
  --container-narrow: 880px;

  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Oswald", "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink-soft);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange-hot); text-decoration: none; }
a:hover { color: var(--orange); }

h1, h2, h3, h4 {
  font-family: var(--font-display); color: var(--ink); line-height: 1.05;
  margin: 0 0 .5em; font-weight: 600; letter-spacing: .005em;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1.05rem; }
p { margin: 0 0 1em; color: var(--ink-soft); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }

::selection { background: var(--orange); color: var(--on-accent); }

/* ---------- Header / Nav (light, navy text; dark logo lockup) ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 4px 20px rgba(15,39,64,.08); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px; max-width: var(--container); margin: 0 auto; padding: 0 24px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--navy); }
/* New logo is a full horizontal lockup (mountains + wordmark) — show it, hide the duplicate text */
.brand-logo {
  width: 172px; height: 48px;
  background: url("/images/logo.png") left center / contain no-repeat;
  font-size: 0; color: transparent;
}
.site-header .brand-name { display: none; }
.brand-name { font-family: var(--font-display); font-weight: 600; font-size: 17px; line-height: 1.02; color: var(--navy); letter-spacing: .04em; text-transform: uppercase; }
.brand-name small {
  display: block; font-family: var(--font-sans); font-weight: 600; font-size: 10px;
  color: var(--muted); letter-spacing: .14em; text-transform: uppercase; margin-top: 2px;
}

.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--navy); font-weight: 500; font-size: 14px; text-transform: uppercase; letter-spacing: .07em; transition: color .15s; }
.nav-links a:hover { color: var(--orange); text-decoration: none; }
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  background: none; border: none; font: inherit; color: var(--navy); cursor: pointer;
  padding: 0; display: inline-flex; align-items: center; gap: 4px;
  font-weight: 500; font-size: 14px; text-transform: uppercase; letter-spacing: .07em;
}
.nav-dropdown-trigger:hover { color: var(--orange); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 14px); left: -16px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 8px; min-width: 230px; box-shadow: var(--shadow-lg);
  display: none; flex-direction: column;
}
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu { display: flex; }
.nav-dropdown-menu a { padding: 11px 12px; border-radius: 6px; text-transform: none; letter-spacing: 0; font-size: 14px; color: var(--ink); font-weight: 500; }
.nav-dropdown-menu a:hover { background: var(--bg-2); color: var(--orange-hot); }

.nav-mobile-toggle {
  display: none; background: var(--bg-2); border: 1px solid var(--line-strong); border-radius: 6px;
  padding: 8px 12px; cursor: pointer; color: var(--navy); font-weight: 700; font-size: 18px; line-height: 1;
}

/* Homepage: keep the header sticky + white (a dark logo can't sit on the dark hero) */
body.page-home .site-header { position: sticky; background: #fff; border-bottom-color: var(--line); }

/* Footer uses a dark navy bg — the dark logo would vanish there, so show the white wordmark text instead */
.site-footer .brand-logo { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 16px 26px; border-radius: var(--radius-sm); font-weight: 600; font-size: 14px;
  border: 2px solid transparent; cursor: pointer;
  transition: transform .12s ease, box-shadow .18s ease, background .15s, border-color .15s, color .15s;
  text-decoration: none; line-height: 1; white-space: nowrap;
  text-transform: uppercase; letter-spacing: .08em;
  font-family: var(--font-display);
}
.btn-primary {
  background: var(--orange); color: #fff;
  box-shadow: 0 8px 22px rgba(217,106,22,.28);
}
.btn-primary:hover { background: var(--orange-hover); color: #fff; text-decoration: none; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(217,106,22,.34); }
.btn-primary:active { transform: translateY(0); box-shadow: 0 5px 14px rgba(217,106,22,.26); }
.btn-secondary {
  background: #fff; color: var(--navy); border-color: var(--navy);
}
.btn-secondary:hover { background: var(--navy); color: #fff; text-decoration: none; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--navy); }
.btn-ghost:hover { background: var(--bg-2); color: var(--navy); text-decoration: none; }
.btn-lg { padding: 19px 36px; font-size: 15px; }
.btn-block { display: flex; width: 100%; }

/* ---------- Hero (homepage) — full-screen photo ---------- */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: calc(100vh - 74px); display: flex; align-items: center;
  padding: 72px 0 90px;
  background: var(--navy);
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background: url("/images/hero_bg.png") center/cover no-repeat;
  transform: scale(1.06);
  animation: heroZoom 20s ease-out both;
}
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(15,39,64,.92) 0%, rgba(15,39,64,.72) 44%, rgba(15,39,64,.32) 100%),
    linear-gradient(0deg, rgba(10,25,45,.85) 0%, rgba(10,25,45,0) 42%);
}
.hero-inner {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; width: 100%;
}
.hero-content { max-width: 640px; }
.hero-title {
  font-family: var(--font-display); text-transform: uppercase; color: #fff;
  font-weight: 700; line-height: .9; letter-spacing: .01em; margin: 0 0 22px;
  font-size: clamp(3.2rem, 7.2vw, 6.2rem);
}
.hero-title span { display: block; }
.hero-title .accent { color: var(--orange); }
.hero-sub {
  color: rgba(255,255,255,.88); font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  max-width: 48ch; margin: 0 0 28px; line-height: 1.55;
}

.hero-trust {
  display: flex; gap: 14px 26px; flex-wrap: wrap;
  color: rgba(255,255,255,.85); font-size: 13px;
  text-transform: uppercase; letter-spacing: .08em; font-weight: 600;
  font-family: var(--font-display);
}
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust .dot { width: 7px; height: 7px; background: var(--orange); border-radius: 50%; }

/* White quote-wizard card floating over the hero */
.quote-card {
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 30px; width: 100%; max-width: 440px; justify-self: end;
}
.quote-card-title { font-family: var(--font-display); text-transform: uppercase; color: var(--navy); font-size: 1.7rem; margin: 0 0 4px; letter-spacing: .02em; }
.quote-card-sub { color: var(--muted); font-size: 14px; margin: 0 0 20px; }

.hero-form { margin: 0; }
.hero-form-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hero-form .field { margin-bottom: 16px; }
.hero-form-note { color: var(--muted); margin: 12px 0 0; font-size: 13px; text-align: center; }
.hero-form-note a { color: var(--orange-hot); text-decoration: underline; }

@media (max-width: 900px) {
  .hero { min-height: 0; padding: 56px 0 64px; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-content { max-width: none; }
  .quote-card { justify-self: stretch; max-width: none; }
}
@media (max-width: 520px) {
  .hero-form-fields { grid-template-columns: 1fr; }
}

/* ---------- Sections ---------- */
.section { padding: 100px 0; }
.section-tight { padding: 64px 0; }
.section-alt { background: var(--bg-2); }
.section-navy {
  background: var(--navy); color: rgba(255,255,255,.82);
}
.section-navy h1, .section-navy h2, .section-navy h3, .section-navy h4 { color: #fff; }
.section-navy p { color: rgba(255,255,255,.78); }
/* Back-compat: old .section-dark now reads as navy */
.section-dark { background: var(--navy); color: rgba(255,255,255,.82); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark p { color: rgba(255,255,255,.78); }

.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: .18em;
  font-size: 12px; color: var(--orange); font-weight: 600; margin-bottom: 16px;
  font-family: var(--font-display);
}

/* ---------- Cards & grids ---------- */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-image { aspect-ratio: 16/10; background: var(--bg-2) center/cover no-repeat; }
.card-body { padding: 24px 24px 26px; }
.card h3 { color: var(--navy); margin-bottom: 8px; }
.card p { font-size: 15px; margin-bottom: 0; color: var(--ink-soft); }
.card a { color: var(--orange-hot); }
.card-meta { font-size: 12px; color: var(--muted); margin-top: 14px; display: flex; gap: 14px; flex-wrap: wrap; text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.tag {
  display: inline-block; padding: 5px 11px; border-radius: 4px;
  background: var(--orange); color: #fff;
  font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  font-family: var(--font-display);
}
.tag-neutral { background: var(--surface-2); color: var(--navy); border: 1px solid var(--line); }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  position: relative; box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform .2s ease, box-shadow .25s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.step-photo {
  aspect-ratio: 16/10; background: var(--bg-2) center/cover no-repeat;
}
.step-body { padding: 24px 30px 30px; }
.step-num {
  width: 46px; height: 46px; border-radius: 8px;
  background: var(--orange); color: #fff; display: grid; place-items: center;
  font-weight: 700; font-size: 20px; font-family: var(--font-display);
  margin-top: -51px; margin-bottom: 16px; box-shadow: 0 6px 16px rgba(217,106,22,.35);
}
.step h3 { color: var(--navy); margin-bottom: 8px; }

/* ---------- Trust bar ---------- */
.trust-bar {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 36px;
  padding: 20px 24px; background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  font-size: 13px; color: var(--ink-soft); font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em; font-family: var(--font-display);
}
.trust-bar span { display: inline-flex; align-items: center; gap: 8px; color: var(--navy); }
.trust-bar span::before { content: ""; width: 7px; height: 7px; background: var(--orange); border-radius: 50%; }

/* ---------- Form ---------- */
.field { display: block; margin-bottom: 18px; }
.field label {
  display: block; font-weight: 600; font-size: 12px; margin-bottom: 8px;
  color: var(--navy); text-transform: uppercase; letter-spacing: .08em;
}
.field input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="file"]),
.field select, .field textarea {
  width: 100%; padding: 14px 14px; border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm); font: inherit; color: var(--ink); background: #fff;
  transition: border-color .12s, box-shadow .12s, background .12s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--orange); background: #fff;
  box-shadow: 0 0 0 3px var(--orange-soft);
}
.field select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236E7A86' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
.field textarea { min-height: 96px; resize: vertical; }
.field-error { display: none; color: #C1362B; font-size: 13px; margin-top: 6px; font-weight: 600; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #C1362B; }
.field.has-error .field-error { display: block; }

.field-group { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.radio-group, .checkbox-group { display: grid; gap: 10px; }
.radio-option, .check-option {
  display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px;
  border: 1.5px solid var(--line-strong); border-radius: var(--radius-sm); cursor: pointer;
  background: #fff;
  transition: border-color .1s, background .1s;
}
.radio-option:hover, .check-option:hover { border-color: var(--orange); background: var(--bg-2); }
.radio-option input, .check-option input { margin-top: 2px; accent-color: var(--orange); }
.radio-option span, .check-option span { font-weight: 500; color: var(--ink); }
.radio-option:has(input:checked), .check-option:has(input:checked) { border-color: var(--orange); background: var(--orange-soft); }

.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--ink-soft); margin: 8px 0 18px; cursor: pointer; }
.consent input { margin-top: 3px; accent-color: var(--orange); }

/* ---------- Stepper ---------- */
.stepper { display: flex; align-items: center; gap: 10px; margin-bottom: 28px; }
.stepper-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.stepper-bullet {
  width: 30px; height: 30px; border-radius: 6px; display: grid; place-items: center;
  background: var(--surface-2); color: var(--muted); font-size: 13px; font-weight: 700; font-family: var(--font-display);
}
.stepper-item.active .stepper-bullet { background: var(--orange); color: #fff; }
.stepper-item.done .stepper-bullet { background: var(--green); color: #fff; }
.stepper-item.active, .stepper-item.done { color: var(--navy); }
.stepper-line { flex: 1; height: 2px; background: var(--line); }

.step-panel { display: none; }
.step-panel.active { display: block; animation: fadeIn .25s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

.form-actions { display: flex; gap: 12px; justify-content: space-between; margin-top: 12px; }

.alert {
  padding: 14px 16px; border-radius: var(--radius-sm); margin-bottom: 16px;
  font-size: 14px; border: 1px solid;
}
.alert-info { background: rgba(47,143,91,.08); border-color: rgba(47,143,91,.35); color: #1E6B41; }
.alert-warn { background: rgba(230,168,23,.10); border-color: rgba(230,168,23,.45); color: #8A6414; }

/* ---------- Optional-field tag ---------- */
.opt-tag {
  display: inline-block; margin-left: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  color: var(--muted); background: var(--surface-2);
  padding: 2px 8px; border-radius: 999px; border: 1px solid var(--line);
}

/* ---------- Field hint (used under address search) ---------- */
.field-hint { font-size: 13px; color: var(--muted); margin-top: 6px; }
.field-hint-warn { color: #8A6414; }
.field-hint-ok { color: #1E6B41; }

/* ---------- Address row (input + Search button) ---------- */
.address-row { display: grid; grid-template-columns: 1fr auto; gap: 8px; }
.address-row .btn { padding: 0 18px; }

/* ---------- Map containers ---------- */
.map-container {
  width: 100%; height: 0;
  border-radius: var(--radius); border: 1px solid var(--line);
  margin-top: 12px; overflow: hidden; background: var(--bg-2);
  transition: height .2s ease;
}
.map-container.is-visible { height: 320px; }
.map-container-tall { height: 460px !important; display: block; }
@media (max-width: 600px) {
  .map-container.is-visible { height: 260px; }
  .map-container-tall { height: 340px !important; }
}

.map-toolbar { display: flex; align-items: center; gap: 12px; margin-top: 10px; flex-wrap: wrap; }
.map-status { font-size: 13px; color: var(--muted); }

/* ---------- Small / link buttons used by maps + helpers ---------- */
.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn-link {
  background: none; border: 0; padding: 0; margin-left: 6px;
  color: var(--orange-hot); font-weight: 600; cursor: pointer; font-size: inherit;
}
.btn-link:hover { color: var(--orange); text-decoration: underline; }

/* ---------- Photo upload dropzone ---------- */
.upload-dropzone {
  display: block; cursor: pointer; margin-top: 8px;
  border: 2px dashed var(--line-strong); border-radius: var(--radius);
  background: var(--bg-2); padding: 28px 20px; text-align: center;
  transition: border-color .15s, background .15s;
}
.upload-dropzone:hover, .upload-dropzone.is-dragging { border-color: var(--orange); background: var(--orange-soft); }
.upload-dropzone-inner { display: flex; flex-direction: column; gap: 6px; align-items: center; color: var(--ink-soft); }
.upload-dropzone-inner strong { color: var(--navy); }
.upload-dropzone-inner span { font-size: 13px; color: var(--muted); }

.upload-preview { display: grid; gap: 10px; margin-top: 12px; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); }
.upload-thumb {
  position: relative; aspect-ratio: 1 / 1; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--line); background: var(--bg-2);
}
.upload-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.upload-thumb-remove {
  position: absolute; top: 6px; right: 6px;
  width: 24px; height: 24px; border-radius: 50%; border: 0;
  background: rgba(15,39,64,.72); color: #fff; cursor: pointer;
  font-size: 16px; line-height: 1; padding: 0; display: grid; place-items: center;
}
.upload-thumb-remove:hover { background: var(--orange); color: #fff; }

/* ---------- Quote form layout ---------- */
.quote-layout { display: grid; grid-template-columns: 1.4fr .8fr; gap: 48px; align-items: start; }
.quote-aside { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; }
.quote-aside h4 { margin-top: 0; color: var(--navy); text-transform: uppercase; letter-spacing: .06em; font-size: 14px; }
.quote-aside ul { list-style: none; padding: 0; margin: 0 0 16px; }
.quote-aside li { display: flex; gap: 10px; align-items: flex-start; margin: 12px 0; font-size: 14px; color: var(--ink-soft); }
.quote-aside li svg { flex: none; color: var(--orange); margin-top: 3px; }

/* ---------- FAQ accordion ---------- */
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); padding: 20px 0; }
.accordion summary {
  list-style: none; cursor: pointer;
  font-weight: 600; color: var(--navy); font-size: 17px; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .01em;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: "+"; font-size: 26px; color: var(--orange); font-weight: 400; line-height: 1;
  transition: transform .15s;
}
.accordion details[open] summary::after { content: "−"; }
.accordion-body { padding-top: 12px; color: var(--ink-soft); font-size: 16px; }

/* ---------- Testimonials ---------- */
.testimonial {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px; box-shadow: var(--shadow-sm);
}
.testimonial-stars { color: var(--gold); margin-bottom: 10px; font-size: 16px; letter-spacing: 2px; }
.testimonial p { font-size: 15px; color: var(--ink-soft); }
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: 14px; font-size: 14px; color: var(--muted); }
.testimonial-author strong { color: var(--navy); }
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 8px;
  background: var(--orange);
  display: grid; place-items: center; font-weight: 700; color: #fff; font-family: var(--font-display);
}

/* ---------- Coverage ---------- */
.coverage {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center;
  box-shadow: var(--shadow-sm);
}
.coverage-cities { display: flex; flex-wrap: wrap; gap: 8px; }
.coverage-cities a {
  padding: 9px 15px; border-radius: 6px; background: var(--bg-2);
  color: var(--navy); font-weight: 600; font-size: 13px; text-decoration: none;
  text-transform: uppercase; letter-spacing: .06em;
  border: 1px solid var(--line); transition: background .12s, color .12s, border-color .12s;
}
.coverage-cities a:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.map-svg { display: block; width: 100%; height: auto; background: var(--bg-2); border-radius: var(--radius-lg); }

/* ---------- Builder profile ---------- */
.builder-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px; display: grid; grid-template-columns: 140px 1fr; gap: 26px; box-shadow: var(--shadow-sm);
}
.builder-photo { width: 140px; height: 140px; border-radius: var(--radius); object-fit: cover; background: var(--orange); }
.builder-card h3 { color: var(--navy); margin-bottom: 4px; }
.builder-meta { color: var(--muted); font-size: 13px; margin-bottom: 12px; text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.builder-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }

/* ---------- Footer (navy) ---------- */
.site-footer {
  background: var(--navy-deep); color: rgba(255,255,255,.72);
  padding: 72px 0 28px; margin-top: 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.site-footer h4 { color: #fff; font-family: var(--font-display); font-size: 13px; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 18px; font-weight: 600; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 9px; }
.footer-grid a { color: rgba(255,255,255,.62); font-size: 14px; }
.footer-grid a:hover { color: var(--orange); text-decoration: none; }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(255,255,255,.1); margin-top: 48px; padding-top: 24px;
  font-size: 12px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .08em;
}
.social-row { display: flex; gap: 8px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 8px; background: rgba(255,255,255,.08);
  display: grid; place-items: center; color: #fff; border: 1px solid rgba(255,255,255,.14);
  font-weight: 700; font-size: 13px;
}
.social-row a:hover { background: var(--orange); color: #fff; border-color: var(--orange); }

/* ---------- Page hero (interior) — navy band ---------- */
.page-hero {
  background:
    linear-gradient(180deg, rgba(15,39,64,.90) 0%, rgba(10,29,49,.96) 100%),
    var(--navy);
  padding: 80px 0 64px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero p { font-size: 1.08rem; max-width: 62ch; color: rgba(255,255,255,.82); }
.breadcrumbs { font-size: 12px; color: rgba(255,255,255,.55); margin-bottom: 16px; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.breadcrumbs a { color: rgba(255,255,255,.55); text-decoration: none; }
.breadcrumbs a:hover { color: var(--orange); }

/* ---------- Final CTA strip (navy with orange button) ---------- */
.cta-strip {
  background: var(--navy);
  background-image: linear-gradient(120deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: #fff; padding: 90px 0; text-align: center; position: relative;
}
.cta-strip h2 { color: #fff; }
.cta-strip p { color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto 28px; font-size: 1.08rem; }

/* ---------- Misc ---------- */
.list-checks { list-style: none; padding: 0; margin: 0; }
.list-checks li { padding: 10px 0 10px 34px; position: relative; color: var(--ink-soft); }
.list-checks li::before {
  content: ""; position: absolute; left: 0; top: 14px;
  width: 20px; height: 20px; border-radius: 4px; background: var(--orange);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat; background-position: center;
}

.prose h2 { margin-top: 1.6em; color: var(--navy); text-transform: none; }
.prose h3 { margin-top: 1.4em; color: var(--navy); text-transform: none; }
.prose img { border-radius: var(--radius-lg); margin: 1.5em 0; }
.prose ul, .prose ol { padding-left: 1.4em; color: var(--ink-soft); }
.prose li { margin-bottom: .35em; }
.prose strong { color: var(--navy); }
.prose table { color: var(--ink-soft); }
.prose th { color: var(--navy); }

/* ---------- Scroll reveal (progressive enhancement, JS-added) ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero::before { animation: none; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: inline-flex; }
  .nav-links.is-open {
    display: flex; position: absolute; top: 74px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 8px 16px 16px; box-shadow: var(--shadow-md);
  }
  .nav-links.is-open li { padding: 12px 4px; border-bottom: 1px solid var(--line); }
  .nav-links.is-open li:last-child { border-bottom: none; padding-top: 12px; }
  .nav-dropdown-menu { position: static; box-shadow: none; border: none; padding: 0; min-width: 0; display: flex; padding-left: 12px; background: transparent; }
  .nav-dropdown-menu a { color: var(--navy); }
  .nav-dropdown-menu a:hover { background: transparent; color: var(--orange); }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .quote-layout { grid-template-columns: 1fr; gap: 28px; }
  .coverage { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .builder-card { grid-template-columns: 1fr; text-align: center; }
  .builder-photo { margin: 0 auto; }
  .field-group { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .cta-strip { padding: 64px 0; }
}
