:root {
  --navy: #0d385a;
  --navy-deep: #082a45;
  --navy-soft: #174d76;
  --blue: #bfe0fb;
  --soft: #e7f4ff;
  --accent: #8dc8f4;
  --accent-text: #27678f;
  --paper: #f7f9fb;
  --white: #fff;
  --ink: #122637;
  --muted: #4b6070;
  --line: #d8e2ea;
  --gold: #ffb800;
  --gold-text: #805500;
  --success: #176044;
  --shadow: 0 20px 60px rgba(7, 39, 64, 0.14);
  --shadow-soft: 0 12px 34px rgba(7, 39, 64, 0.09);
  --max: 1180px;
  --font: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
@supports (overflow: clip) { html, body { overflow-x: clip; } }
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; max-width: 100%; }
iframe { display: block; width: 100%; border: 0; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { max-width: 100%; font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, h4, p, figure, blockquote { margin-top: 0; }
h1, h2, h3, h4 { color: var(--navy); line-height: 1.12; letter-spacing: -0.035em; }
h1, h2, h3, h4, strong { font-weight: 800; }
small, .small { font-size: 14px; }
[id] { scroll-margin-top: 82px; }
::selection { color: var(--white); background: var(--navy); }
:focus-visible {
  outline: 3px solid #005f99;
  outline-offset: 3px;
  box-shadow: 0 0 0 5px #fff;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }
.sr-only, .rl-hp {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.shell { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }
.shell.narrow, .narrow { max-width: 820px; }
.section { padding: 96px 0; }
.section-sm { padding: 68px 0; }
.section-grid-gap { margin-top: 42px; }
.section-action { margin-top: 34px; text-align: center; }
.section-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 34px; }
.section-actions.align-left { justify-content: flex-start; }
.about-copy .section-actions { margin-top: 0; }
.bg-white { background: var(--white); }
.bg-blue { background: var(--blue); }
.bg-soft { background: var(--soft); }
.center-copy { max-width: 770px; margin-inline: auto; text-align: center; }
.max-copy { max-width: 720px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--accent-text);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.eyebrow::before { width: 8px; height: 8px; flex: 0 0 auto; background: var(--accent-text); border-radius: 50%; content: ""; }
.eyebrow.light, .dark-panel .eyebrow, .photo-section .eyebrow, .contact-banner .eyebrow { color: #d7ecff; }
.eyebrow.light::before, .dark-panel .eyebrow::before, .photo-section .eyebrow::before, .contact-banner .eyebrow::before { background: var(--blue); }
.section-title { margin-bottom: 18px; font-size: clamp(38px, 5vw, 62px); }
.section-title.compact { font-size: clamp(34px, 4.3vw, 52px); }
.lead { color: var(--muted); font-size: clamp(17px, 2vw, 19px); line-height: 1.7; }
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 44px;
}
.section-heading > p { margin-bottom: 2px; color: var(--muted); }
.narrative-copy p { margin: 0 0 14px; color: var(--muted); }
.narrative-copy p:last-child { margin-bottom: 2px; }
.section-closing { max-width: 820px; margin: 34px auto 0; color: var(--muted); text-align: center; }
.section-closing p:last-child { margin-bottom: 0; }
.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 23px;
  color: var(--white);
  background: var(--navy);
  border: 2px solid var(--navy);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
}
.btn:hover { background: var(--navy-soft); border-color: var(--navy-soft); transform: translateY(-2px); }
.btn-light { color: var(--navy); background: var(--blue); border-color: var(--blue); }
.btn-light:hover { background: var(--white); border-color: var(--white); }
.btn-white { color: var(--navy); background: var(--white); border-color: var(--white); }
.btn-outline { color: var(--navy); background: transparent; }
.btn-outline:hover { color: var(--white); background: var(--navy); }
.btn-arrow::after { content: "↗"; font-size: 18px; }
.text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--navy); font-weight: 800; }
.text-link::after { content: "→"; transition: transform 0.2s; }
.text-link:hover::after { transform: translateX(4px); }

/* Header */
.site-header { position: relative; z-index: 50; background: var(--navy-deep); }
.topbar { color: #dcecf8; background: var(--navy-deep); }
.topbar-inner { display: grid; min-height: 38px; grid-template-columns: repeat(3, 1fr); align-items: center; font-size: 14px; }
.topbar-item { display: flex; min-width: 0; align-items: center; justify-content: center; gap: 8px; }
.topbar-item:first-child { justify-content: flex-start; }
.topbar-item:last-child { justify-content: flex-end; }
.nav-wrap { position: absolute; top: 52px; left: 0; width: 100%; z-index: 30; }
.navbar {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 26px;
  background: rgba(232, 246, 255, 0.96);
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(2, 25, 42, 0.17);
  backdrop-filter: blur(14px);
}
.brand { display: inline-flex; min-width: 210px; align-items: center; gap: 12px; color: var(--navy); }
.brand-mark { display: grid; width: 49px; height: 49px; flex: 0 0 auto; place-items: center; color: var(--white); background: var(--navy); border-radius: 12px; box-shadow: inset 0 -8px 18px rgba(0, 0, 0, 0.12); }
.brand-mark svg { width: 30px; height: 30px; }
.brand-copy { display: grid; min-width: 0; line-height: 1; }
.brand-copy strong { overflow: hidden; font-size: 20px; letter-spacing: 0.02em; text-overflow: ellipsis; white-space: nowrap; }
.brand-copy span { margin-top: 5px; overflow: hidden; font-size: 12px; font-weight: 800; letter-spacing: 0.11em; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links > a, .nav-dropdown-trigger > a { position: relative; padding: 29px 0; color: #354e62; font-size: 15px; font-weight: 700; white-space: nowrap; }
.nav-links > a:not(.btn)::after, .nav-dropdown-trigger > a::after { position: absolute; right: 0; bottom: 21px; left: 0; height: 2px; background: var(--navy); transform: scaleX(0); content: ""; transition: transform 0.2s; }
.nav-links > a:hover::after, .nav-links > a[aria-current="page"]::after, .nav-dropdown-trigger > a:hover::after, .nav-dropdown-trigger > a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links .btn { min-height: 48px; padding: 0 24px; color: var(--white); }
.nav-links .btn::after { display: none; }
.nav-dropdown { position: relative; display: flex; align-self: stretch; align-items: center; }
.nav-dropdown-trigger { display: flex; align-items: center; gap: 2px; }
.nav-dropdown-toggle {
  display: grid;
  width: 27px;
  height: 34px;
  place-items: center;
  padding: 0;
  color: #354e62;
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}
.nav-dropdown-toggle:hover { color: var(--navy); background: rgba(13, 56, 90, 0.08); }
.nav-dropdown-toggle svg { width: 16px; transition: transform 0.2s ease; }
.nav-dropdown-panel {
  position: absolute;
  top: calc(100% - 3px);
  left: 50%;
  z-index: 60;
  width: min(500px, calc(100vw - 48px));
  padding: 12px;
  visibility: hidden;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.99);
  border: 1px solid rgba(13, 56, 90, 0.13);
  border-top: 4px solid var(--accent);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 24px 55px rgba(7, 39, 64, 0.2);
  opacity: 0;
  transform: translate(-50%, 10px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
}
.nav-dropdown.is-open .nav-dropdown-panel {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
  transform: translate(-50%, 0);
  transition-delay: 0s;
}
.nav-dropdown.is-open .nav-dropdown-toggle svg { transform: rotate(180deg); }
.nav-dropdown-list {
  display: grid;
  max-height: min(360px, calc(100vh - 180px));
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.nav-dropdown-item {
  display: grid;
  min-width: 0;
  min-height: 48px;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 9px 10px;
  color: var(--ink);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.25;
  overflow-wrap: anywhere;
  transition: color 0.16s ease, background 0.16s ease, transform 0.16s ease;
}
.nav-dropdown-item:hover { color: var(--navy); background: var(--soft); transform: translateX(2px); }
.nav-dropdown-index {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--accent-text);
  background: var(--soft);
  border-radius: 9px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
}
.nav-dropdown-empty { grid-template-columns: 1fr; }
.nav-dropdown-all {
  display: flex;
  min-height: 43px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 8px;
  padding: 9px 12px;
  color: var(--navy);
  background: var(--soft);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 850;
}
.nav-dropdown-all span { font-size: 18px; transition: transform 0.16s ease; }
.nav-dropdown-all:hover span { transform: translateX(3px); }
.nav-toggle { display: none; width: 48px; height: 48px; place-items: center; padding: 0; color: var(--navy); background: transparent; border: 1px solid #8faabd; border-radius: 10px; cursor: pointer; }
.nav-toggle svg { width: 24px; }
.nav-toggle .nav-close-icon { display: none; }
.nav-toggle[aria-expanded="true"] .nav-open-icon { display: none; }
.nav-toggle[aria-expanded="true"] .nav-close-icon { display: block; }

/* Hero and request rail */
.hero { position: relative; min-height: 745px; display: flex; align-items: center; overflow: hidden; color: var(--white); background: var(--navy); }
.hero-bg, .inner-hero-bg { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.hero::before { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(5, 35, 58, 0.94) 0%, rgba(7, 44, 70, 0.76) 50%, rgba(7, 44, 70, 0.2) 100%); content: ""; }
.hero::after { position: absolute; inset: auto 0 0; z-index: 1; height: 150px; background: linear-gradient(transparent, rgba(3, 28, 45, 0.35)); content: ""; }
.hero-inner { position: relative; z-index: 2; padding: 154px 0 132px; }
.hero-copy { max-width: 745px; }
.hero-kicker { display: block; margin-bottom: 17px; font-size: 14px; font-weight: 800; letter-spacing: 0.11em; text-transform: uppercase; }
.hero h1 { max-width: 800px; margin-bottom: 23px; color: var(--white); font-size: clamp(48px, 7vw, 80px); }
.hero p { max-width: 620px; margin-bottom: 28px; color: #e0edf5; font-size: 18px; line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-badges { position: absolute; right: 0; bottom: 145px; z-index: 2; display: grid; gap: 10px; }
.hero-badge { min-width: 160px; padding: 12px 16px; color: var(--navy); background: rgba(255, 255, 255, 0.94); border-radius: 10px; font-size: 14px; font-weight: 800; box-shadow: var(--shadow-soft); }
.quote-zone { position: relative; }
.quote-overlap { position: relative; z-index: 10; margin-top: -68px; }
.quote-panel { padding: 26px 32px 25px; color: var(--white); background: var(--navy); border-radius: 24px; box-shadow: var(--shadow); }
.quote-panel h2 { margin-bottom: 20px; color: var(--white); font-size: 23px; letter-spacing: -0.02em; }
.quote-form { display: grid; grid-template-columns: 0.9fr 0.9fr 1.45fr; gap: 12px; }
.field-stack, .quote-message { display: grid; gap: 12px; }
.field-stack label, .quote-message { color: #e6f0f6; font-size: 13px; font-weight: 700; }
.field-stack label { display: grid; gap: 5px; }
.field { width: 100%; min-height: 48px; padding: 0 15px; color: var(--ink); background: #f8fafc; border: 1px solid transparent; border-radius: 8px; font-size: 15px; }
textarea.field { min-height: 108px; padding-top: 13px; resize: vertical; }
.field:focus { border-color: var(--accent-text); outline: 3px solid rgba(141, 200, 244, 0.35); }
.quote-foot { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 16px; }
.consent { display: flex; max-width: 690px; align-items: flex-start; gap: 9px; color: #d8e5ee; font-size: 14px; }
.consent input { width: 18px; height: 18px; margin-top: 2px; flex: 0 0 auto; }
.form-success { display: none; margin: 14px 0 0; color: #baf5db; font-size: 14px; font-weight: 700; }
.form-success.visible, [data-rl-lead].is-success .form-success, [data-rl-lead][data-status="success"] .form-success { display: block; }
.form-error { display: none; margin: 14px 0 0; color: #ffd1d1; font-size: 14px; font-weight: 700; }
.form-error.visible, [data-rl-lead].is-error .form-error, [data-rl-lead][data-status="error"] .form-error { display: block; }
.full-form .form-error { color: #9f2525; }
[data-rl-lead][data-status="pending"] button[type="submit"] { cursor: progress; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; padding-top: 72px; }
.trust-item { display: grid; grid-template-columns: 44px minmax(0, 1fr); gap: 15px; }
.icon-box { display: grid; width: 44px; height: 44px; place-items: center; color: var(--navy); background: var(--soft); border-radius: 12px; }
.trust-item h3 { margin: 1px 0 8px; font-size: 18px; letter-spacing: -0.02em; }
.trust-item p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }

/* Homepage cards and storytelling */
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.service-card { display: flex; min-width: 0; flex-direction: column; overflow: hidden; background: var(--white); border: 1px solid rgba(13, 56, 90, 0.1); border-radius: 18px; box-shadow: var(--shadow-soft); transition: transform 0.25s, box-shadow 0.25s; }
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.service-card img { height: 245px; object-fit: cover; }
.service-card-body { display: flex; min-height: 260px; flex: 1; align-items: flex-start; flex-direction: column; padding: 25px; }
.service-card h3 { margin-bottom: 12px; font-size: 25px; }
.service-card p { margin-bottom: 22px; color: var(--muted); font-size: 15px; }
.service-card .btn { margin-top: auto; }
.about-mosaic { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
.about-copy .check-list { margin: 25px 0 28px; }
.check-list { display: grid; gap: 12px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 30px; }
.check-list li::before { position: absolute; top: 2px; left: 0; display: grid; width: 21px; height: 21px; place-items: center; color: var(--white); background: var(--navy); border-radius: 50%; content: "✓"; font-size: 14px; font-weight: 900; }
.check-list.large li { display: grid; gap: 3px; padding-block: 7px; }
.check-list.large li span { color: var(--muted); font-size: 14px; }
.mosaic { position: relative; min-height: 560px; }
.mosaic-main { position: absolute; top: 0; right: 0; width: 78%; height: 470px; object-fit: cover; border-radius: 26px; box-shadow: var(--shadow); }
.mosaic-small { position: absolute; bottom: 0; left: 0; width: 54%; height: 245px; object-fit: cover; border: 8px solid var(--white); border-radius: 24px; box-shadow: var(--shadow-soft); }
.stat-sticker { position: absolute; right: 15px; bottom: 28px; max-width: 170px; padding: 20px; color: var(--white); background: var(--navy); border-radius: 18px; box-shadow: var(--shadow); }
.stat-sticker strong { display: block; font-size: 34px; line-height: 1; }
.stat-sticker span { display: block; margin-top: 7px; font-size: 14px; }
.logo-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.logo-row { display: grid; grid-template-columns: 1.2fr repeat(4, 1fr); align-items: center; }
.logo-cell { display: grid; min-height: 115px; place-items: center; padding: 18px; border-right: 1px solid var(--line); text-align: center; }
.logo-cell:first-child { justify-items: start; color: var(--muted); font-size: 14px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.logo-cell:last-child { border-right: 0; }
.wordmark { color: var(--navy); font-size: 18px; font-weight: 800; letter-spacing: -0.03em; opacity: 0.72; }
.offer-ribbon { padding: 32px 0; color: var(--white); background: var(--navy); }
.offer-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.offer-copy { display: flex; align-items: center; gap: 18px; }
.offer-pill { display: grid; min-width: 78px; height: 78px; place-items: center; color: var(--navy); background: var(--blue); border-radius: 50%; font-size: 22px; font-weight: 900; }
.offer-copy h2 { margin: 0 0 4px; color: var(--white); font-size: 28px; }
.offer-copy p { margin: 0; color: #cfe1ee; }
.feature-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); overflow: hidden; border: 1px solid var(--line); border-radius: 22px; }
.feature-card { min-height: 285px; padding: 30px 25px; background: var(--white); border-right: 1px solid var(--line); }
.feature-card:last-child { border-right: 0; }
.feature-number { display: block; margin-bottom: 52px; color: var(--accent-text); font-size: 14px; font-weight: 800; }
.feature-card h3 { margin-bottom: 11px; font-size: 22px; }
.feature-card p { margin: 0; color: var(--muted); font-size: 15px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.price-card { position: relative; padding: 32px; background: var(--white); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow-soft); }
.price-card.featured { color: var(--white); background: var(--navy); transform: translateY(-10px); }
.price-card.featured h3, .price-card.featured .price { color: var(--white); }
.price-card h3 { margin-bottom: 8px; font-size: 25px; }
.price-card > p { min-height: 52px; color: var(--muted); font-size: 14px; }
.price-card.featured > p { color: #cfe0ec; }
.price { display: block; margin: 26px 0 21px; color: var(--navy); font-size: 42px; font-weight: 800; letter-spacing: -0.05em; }
.price small { font-size: 14px; letter-spacing: 0; }
.price-card .check-list { min-height: 168px; margin-bottom: 24px; font-size: 14px; }
.price-card.featured .check-list li::before { color: var(--navy); background: var(--blue); }
.process { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; counter-reset: step; }
.process-step { position: relative; min-height: 285px; padding: 28px; overflow: hidden; color: var(--white); background: var(--navy); border-radius: 20px; counter-increment: step; }
.process-step::before { display: block; margin-bottom: 74px; color: var(--blue); content: "0" counter(step); font-size: 15px; font-weight: 800; }
.process-step::after { position: absolute; top: -36px; right: -30px; width: 120px; height: 120px; border: 22px solid rgba(191, 224, 251, 0.08); border-radius: 50%; content: ""; }
.process-step h3 { margin-bottom: 10px; color: var(--white); font-size: 22px; }
.process-step p { margin: 0; color: #c9dae7; font-size: 14px; }
.problems-layout { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 60px; align-items: center; }
.problems-image { position: relative; }
.problems-image img { height: 600px; object-fit: cover; border-radius: 24px; box-shadow: var(--shadow); }
.floating-note { position: absolute; right: -24px; bottom: 30px; width: min(230px, calc(100% - 20px)); padding: 22px; color: var(--white); background: var(--navy); border-radius: 17px; box-shadow: var(--shadow); }
.floating-note strong { display: block; margin-bottom: 7px; font-size: 20px; }
.floating-note span { display: block; font-size: 14px; }
.problem-list { display: grid; border-top: 1px solid var(--line); }
.problem-row { display: grid; grid-template-columns: 50px minmax(0, 1fr); gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.problem-row b { display: grid; width: 42px; height: 42px; place-items: center; color: var(--navy); background: var(--blue); border-radius: 50%; }
.problem-row h3 { margin: 0 0 5px; font-size: 20px; }
.problem-row p { margin: 0; color: var(--muted); font-size: 15px; }

/* Reviews */
.photo-section { position: relative; overflow: hidden; color: var(--white); background: var(--navy-deep); }
.photo-section::before { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(3, 28, 46, 0.94), rgba(3, 28, 46, 0.45)); content: ""; }
.photo-section > img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.photo-section-inner { position: relative; z-index: 2; padding-block: 96px; }
.photo-section h2 { color: var(--white); }
.review-intro { color: #d6e5ef; }
.review-board { margin-top: 34px; padding: 32px; color: var(--ink); background: rgba(255, 255, 255, 0.97); border-radius: 22px; box-shadow: var(--shadow); }
.review-summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.google-line { display: flex; align-items: center; gap: 16px; }
.google-line strong { display: block; color: var(--navy); font-size: 32px; line-height: 1; }
.google-line > span { color: var(--muted); }
.stars { color: var(--gold-text); letter-spacing: 2px; }
.review-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.review-card { min-width: 0; min-height: 225px; padding: 22px; background: #f2f5f7; border: 1px solid #e2e7eb; border-radius: 14px; }
.review-person { display: flex; align-items: center; gap: 11px; margin-bottom: 12px; }
.avatar { display: grid; width: 44px; height: 44px; flex: 0 0 auto; place-items: center; color: var(--white); background: var(--navy); border-radius: 50%; font-weight: 800; }
.review-person strong { display: block; }
.review-person span { color: var(--muted); font-size: 14px; }
.review-card p { margin: 8px 0 0; color: #374b5a; font-size: 14px; }
.review-closing { margin-top: 24px; padding-top: 22px; color: var(--muted); border-top: 1px solid var(--line); }
.review-closing p:last-child { margin-bottom: 0; }

/* Locations, FAQ and resources */
.locations-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 64px; align-items: center; }
.location-pills { display: flex; flex-wrap: wrap; gap: 11px; margin: 28px 0; }
.location-pill { display: inline-flex; min-height: 45px; align-items: center; gap: 8px; padding: 8px 18px; color: var(--navy); background: var(--blue); border: 0; border-radius: 999px; font-size: 14px; font-weight: 800; }
.location-pill.active, a.location-pill:first-child { color: var(--white); background: var(--navy); }
.detail-pills .location-pill { color: var(--navy); background: var(--blue); }
.map-card { position: relative; min-height: 430px; overflow: hidden; background: #d9eaf3; border: 10px solid var(--white); border-radius: 24px; box-shadow: var(--shadow); }
.map-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(13, 56, 90, 0.09) 1px, transparent 1px), linear-gradient(90deg, rgba(13, 56, 90, 0.09) 1px, transparent 1px); background-size: 42px 42px; transform: rotate(-6deg) scale(1.15); }
.map-road { position: absolute; height: 9px; background: rgba(255, 255, 255, 0.92); border: 2px solid rgba(13, 56, 90, 0.09); border-radius: 20px; }
.road-a { top: 47%; left: -10%; width: 125%; transform: rotate(16deg); }
.road-b { top: 20%; left: 15%; width: 110%; transform: rotate(76deg); }
.road-c { bottom: 17%; left: -5%; width: 95%; transform: rotate(-18deg); }
.map-pin { position: absolute; top: 45%; left: 53%; display: grid; width: 62px; height: 62px; place-items: center; color: var(--white); background: var(--navy); border: 8px solid var(--white); border-radius: 50% 50% 50% 0; box-shadow: var(--shadow); transform: rotate(-45deg); }
.map-pin > * { transform: rotate(45deg); }
.map-label { position: absolute; top: 20px; left: 20px; max-width: calc(100% - 40px); padding: 17px; background: var(--white); border-radius: 13px; box-shadow: var(--shadow-soft); }
.map-label strong { display: block; color: var(--navy); }
.map-label span { display: block; color: var(--muted); font-size: 14px; }
.faq-layout { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 65px; align-items: start; }
.accordion { display: grid; gap: 12px; }
.accordion details { overflow: hidden; background: #eef2f5; border: 1px solid #d9e2e8; border-radius: 14px; }
.accordion summary { display: flex; min-height: 66px; align-items: center; justify-content: space-between; gap: 15px; padding: 16px 20px; color: var(--ink); cursor: pointer; font-weight: 750; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { position: relative; width: 30px; height: 30px; flex: 0 0 auto; background: var(--white); border-radius: 50%; }
.accordion summary span::before, .accordion summary span::after { position: absolute; top: 50%; left: 50%; width: 12px; height: 2px; background: var(--navy); content: ""; transform: translate(-50%, -50%); }
.accordion summary span::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform 0.2s; }
.accordion details[open] summary span::after { transform: translate(-50%, -50%) rotate(0); }
.accordion .answer { padding: 0 20px 20px; color: var(--muted); font-size: 15px; }
.accordion .answer p { margin: 0; }
.article-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.article-card { min-width: 0; overflow: hidden; background: var(--white); border-radius: 18px; box-shadow: var(--shadow-soft); }
.article-card img { height: 235px; object-fit: cover; transition: transform 0.35s; }
.article-card:hover img { transform: scale(1.04); }
.article-body { padding: 22px; }
.article-meta { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 11px; color: var(--muted); font-size: 13px; font-weight: 700; }
.article-card h3 { margin-bottom: 16px; font-size: 22px; }
.article-card p { color: var(--muted); }
.city-cards { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.city-card { position: relative; min-width: 0; min-height: 215px; display: flex; align-items: flex-end; overflow: hidden; padding: 22px; color: var(--white); background: var(--navy); border-radius: 17px; }
.city-card::before { position: absolute; inset: 0; z-index: 1; background: linear-gradient(transparent, rgba(3, 28, 46, 0.95)); content: ""; }
.city-card img { position: absolute; inset: 0; height: 100%; object-fit: cover; transition: transform 0.3s; }
.city-card:hover img { transform: scale(1.04); }
.city-card div { position: relative; z-index: 2; }
.city-card h3 { margin: 0 0 3px; color: var(--white); font-size: 21px; }
.city-card span { color: #c8dbe8; font-size: 14px; }

/* Contact and footer */
.contact-banner { position: relative; min-height: 470px; display: flex; align-items: center; overflow: hidden; color: var(--white); background: var(--navy-deep); }
.contact-banner > img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.contact-banner::before { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(3, 25, 42, 0.96) 0%, rgba(3, 25, 42, 0.74) 55%, rgba(3, 25, 42, 0.2) 100%); content: ""; }
.contact-banner-inner { position: relative; z-index: 2; max-width: 650px; padding: 74px 0; }
.contact-banner h2 { margin-bottom: 20px; color: var(--white); font-size: clamp(42px, 6vw, 64px); }
.contact-banner p { color: #d6e5ef; font-size: 17px; }
.call-row { display: flex; flex-wrap: wrap; align-items: center; gap: 25px; margin-top: 28px; }
.call-number { font-size: 17px; }
.call-number strong { display: block; color: var(--blue); font-size: 25px; }
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; }
.contact-cards { display: grid; gap: 13px; margin-top: 26px; }
.contact-card { display: grid; grid-template-columns: 48px minmax(0, 1fr); gap: 15px; padding: 18px; overflow-wrap: anywhere; background: var(--white); border: 1px solid var(--line); border-radius: 14px; }
.contact-card strong { display: block; color: var(--navy); }
.contact-card small { display: block; color: var(--muted); }
.full-form { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 14px; padding: 30px; background: var(--white); border-radius: 22px; box-shadow: var(--shadow-soft); }
.full-form .field { background: var(--paper); border-color: var(--line); }
.full-form .full { grid-column: 1 / -1; }
.full-form label { display: grid; gap: 7px; color: var(--navy); font-size: 14px; font-weight: 800; }
.newsletter { padding: 34px 0; color: var(--white); background: var(--navy-soft); }
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.newsletter h2 { margin: 0 0 5px; color: var(--white); font-size: 27px; }
.newsletter p { margin: 0; color: #d5e5f0; font-size: 14px; }
.newsletter-form { display: flex; width: min(100%, 475px); align-items: flex-start; flex-wrap: wrap; gap: 10px; }
.newsletter-form .field { background: var(--white); }
.newsletter-form .field { min-width: 210px; flex: 1; }
.newsletter-form .form-success { width: 100%; }
.footer { color: #d4e2ec; background: var(--navy-deep); }
.footer-main { display: grid; grid-template-columns: 1.45fr 0.7fr 0.7fr 1fr; gap: 60px; padding: 68px 0 46px; }
.footer .brand { margin-bottom: 23px; color: var(--white); }
.footer .brand-mark { color: var(--navy); background: var(--blue); }
.footer-about p { max-width: 330px; color: #a9bfce; font-size: 14px; }
.footer h3 { margin-bottom: 19px; color: var(--white); font-size: 16px; letter-spacing: 0; }
.footer-links { display: grid; min-width: 0; gap: 10px; }
.footer-links a, .footer-links span { overflow-wrap: anywhere; color: #b9ccd9; font-size: 14px; }
.footer-links a:hover { color: var(--white); }
.social-row { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 18px; }
.social-row a { display: grid; width: 40px; height: 40px; place-items: center; color: var(--navy); background: var(--blue); border-radius: 50%; font-weight: 900; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0 27px; color: #9db4c4; border-top: 1px solid rgba(255, 255, 255, 0.12); font-size: 14px; }
.sticky-call { position: fixed; right: max(16px, env(safe-area-inset-right)); bottom: max(16px, env(safe-area-inset-bottom)); z-index: 60; display: none; min-height: 52px; align-items: center; gap: 9px; padding: 0 19px; visibility: hidden; pointer-events: none; color: var(--white); background: var(--navy); border: 3px solid var(--white); border-radius: 999px; box-shadow: var(--shadow); opacity: 0; transform: translateY(12px); transition: opacity 0.2s, transform 0.2s, visibility 0s linear 0.2s; font-size: 14px; font-weight: 800; }
.sticky-call.is-visible { visibility: visible; pointer-events: auto; opacity: 1; transform: none; transition-delay: 0s; }

/* Inner and detail pages */
.inner-hero { position: relative; min-height: 590px; display: flex; align-items: flex-end; overflow: hidden; color: var(--white); background: var(--navy); }
.inner-hero::before { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(4, 31, 50, 0.95), rgba(4, 31, 50, 0.45)); content: ""; }
.inner-hero-content { position: relative; z-index: 2; padding: 175px 0 82px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 22px; color: #cfe0ec; font-size: 14px; font-weight: 700; }
.breadcrumbs a { text-decoration: underline; text-decoration-color: transparent; text-underline-offset: 3px; }
.breadcrumbs a:hover { text-decoration-color: currentColor; }
.breadcrumbs span { opacity: 0.65; }
.inner-hero h1 { max-width: 820px; margin-bottom: 18px; color: var(--white); font-size: clamp(48px, 7vw, 76px); }
.inner-hero p { max-width: 680px; margin-bottom: 27px; color: #d7e6ef; font-size: 18px; }
.hero-fact-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.hero-fact { padding: 11px 15px; color: var(--navy); background: rgba(255, 255, 255, 0.94); border-radius: 9px; font-size: 14px; font-weight: 800; }
.section-nav { position: sticky; top: 0; z-index: 25; background: rgba(255, 255, 255, 0.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.section-nav .shell { display: flex; min-height: 58px; align-items: center; gap: 28px; overflow-x: auto; scrollbar-width: none; }
.section-nav .shell::-webkit-scrollbar { display: none; }
.section-nav a { flex: 0 0 auto; color: var(--navy); font-size: 14px; font-weight: 800; }
.split-section { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 68px; align-items: center; }
.split-section.reverse > :first-child { order: 2; }
.content-image { position: relative; margin: 0; }
.content-image img { min-height: 480px; object-fit: cover; border-radius: 24px; box-shadow: var(--shadow); }
.content-image figcaption { position: absolute; right: 18px; bottom: 18px; left: 18px; padding: 17px 20px; color: var(--white); background: rgba(7, 40, 64, 0.92); border-radius: 13px; font-size: 14px; }
.info-chips, .filter-row { display: flex; flex-wrap: wrap; gap: 9px; margin: 23px 0; }
.info-chip { display: inline-flex; align-items: center; padding: 9px 13px; color: var(--navy); background: var(--soft); border: 1px solid transparent; border-radius: 999px; font-size: 14px; font-weight: 800; }
.info-chip.active { color: var(--white); background: var(--navy); }
.included-grid, .service-link-grid, .problem-grid, .pricing-factors { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.included-card { min-width: 0; padding: 27px; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: 17px; box-shadow: var(--shadow-soft); }
a.included-card { transition: transform 0.2s, box-shadow 0.2s; }
a.included-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.included-card > span:first-child { display: block; margin-bottom: 24px; color: var(--accent-text); font-size: 14px; font-weight: 800; }
.included-card h3 { margin-bottom: 9px; font-size: 21px; }
.included-card p { margin: 0; color: var(--muted); font-size: 14px; }
.included-card b { display: block; margin-top: 18px; color: var(--navy); font-size: 14px; }
.feature-grid > .included-card { border: 0; border-right: 1px solid var(--line); border-radius: 0; box-shadow: none; }
.feature-grid > .included-card:last-child { border-right: 0; }
.problem-grid .included-card { border-top: 5px solid var(--navy); }
.pricing-factors .included-card { background: var(--soft); box-shadow: none; }
.price-range { color: var(--navy); font-size: clamp(24px, 4vw, 38px); }
.comparison { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); overflow: hidden; border: 1px solid var(--line); border-radius: 22px; }
.compare-pane { min-width: 0; padding: 40px; background: var(--white); }
.compare-pane.dark, .compare-pane + .compare-pane { color: var(--white); background: var(--navy); }
.compare-pane h2 { font-size: clamp(28px, 4vw, 40px); }
.compare-pane.dark h2, .compare-pane + .compare-pane h2 { color: var(--white); }
.compare-pane p { color: var(--muted); }
.compare-pane.dark p, .compare-pane + .compare-pane p { color: #c9dce9; }
.timeline { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); }
.timeline article { position: relative; min-width: 0; padding: 68px 20px 0 0; }
.timeline article::before { position: absolute; top: 25px; left: 0; width: 18px; height: 18px; z-index: 2; background: var(--accent); border: 5px solid var(--navy); border-radius: 50%; content: ""; }
.timeline article::after { position: absolute; top: 33px; right: 0; left: 14px; height: 2px; background: #45718f; content: ""; }
.timeline article:last-child::after { display: none; }
.timeline article > b { color: var(--accent-text); font-size: 13px; }
.timeline h3 { margin: 7px 0 8px; font-size: 19px; }
.timeline p { margin: 0; color: var(--muted); font-size: 14px; }
.dark-panel { color: var(--white); background: var(--navy-deep); }
.dark-panel h2, .dark-panel h3 { color: var(--white); }
.dark-panel .content-image img { box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25); }
.tool-stack { display: grid; gap: 14px; }
.tool-card { display: grid; grid-template-columns: 38px minmax(0, 1fr); gap: 14px; padding: 20px; background: var(--soft); border-radius: 16px; }
.dark-panel .tool-card { background: rgba(231, 244, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.13); }
.tool-card > span { color: var(--accent-text); font-size: 13px; font-weight: 800; }
.dark-panel .tool-card > span { color: var(--blue); }
.tool-card h3 { margin-bottom: 5px; font-size: 19px; }
.tool-card p { margin: 0; color: var(--muted); font-size: 14px; }
.dark-panel .tool-card p { color: #c5d8e5; }
.case-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: 22px; align-items: stretch; }
.case-grid > .content-image img { height: 100%; min-height: 510px; }
.case-list { display: grid; gap: 12px; }
.case-list article { padding: 22px; background: var(--soft); border-radius: 15px; }
.case-list h3 { margin-bottom: 6px; font-size: 20px; }
.case-list p { margin: 0; color: var(--muted); font-size: 14px; }
.before-after { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.ba-card { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); overflow: hidden; border: 1px solid var(--line); border-radius: 21px; box-shadow: var(--shadow-soft); }
.ba-card > h3 { grid-column: 1 / -1; padding: 24px 26px 0; margin: 0; background: var(--paper); }
.ba-card > div { padding: 26px; background: var(--paper); }
.ba-card > div + div { background: var(--navy); }
.ba-card p { margin: 12px 0 0; color: var(--muted); }
.ba-card > div + div p { color: #d4e3ec; }
.ba-label { display: inline-flex; padding: 7px 11px; color: var(--white); background: var(--navy); border-radius: 999px; font-size: 12px; font-weight: 800; text-transform: uppercase; }
.ba-label.after { color: var(--navy); background: var(--blue); }
.stat-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; overflow: hidden; background: rgba(13, 56, 90, 0.15); border: 1px solid rgba(13, 56, 90, 0.15); border-radius: 20px; }
.stat-card { min-width: 0; min-height: 190px; display: grid; align-content: center; padding: 28px; background: var(--navy); }
.stat-card strong { overflow-wrap: anywhere; color: var(--blue); font-size: clamp(28px, 4vw, 42px); line-height: 1; }
.stat-card span { margin-top: 10px; color: #c6d9e6; font-size: 14px; }
.zip-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.zip { padding: 10px 14px; color: var(--navy); background: var(--white); border: 1px solid var(--line); border-radius: 8px; font-size: 14px; font-weight: 800; }
.notice-card { margin-top: 25px; padding: 24px; color: var(--white); background: var(--navy); border-radius: 18px; }
.notice-card h2, .notice-card h3 { color: var(--white); }
.notice-card p { margin: 6px 0 0; color: #cbdde9; }
.notice-card a { text-decoration: underline; text-underline-offset: 3px; }
.season-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 15px; }
.season-card { min-width: 0; padding: 25px; background: var(--white); border: 1px solid var(--line); border-radius: 16px; }
.season-card > span { display: block; margin-bottom: 30px; color: var(--accent-text); font-size: 24px; font-weight: 800; }
.season-card h3 { margin-bottom: 9px; font-size: 20px; }
.season-card p { margin: 0; color: var(--muted); font-size: 14px; }
.season-card aside { margin-top: 16px; padding: 12px; color: var(--navy); background: var(--soft); border-radius: 10px; font-size: 13px; }
.related-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.related-card { min-width: 0; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 17px; box-shadow: var(--shadow-soft); }
.related-card img { height: 190px; object-fit: cover; }
.related-card div { padding: 21px; }
.related-card h3 { margin-bottom: 7px; font-size: 21px; }
.related-card p { color: var(--muted); font-size: 14px; }
.related-card span { color: var(--navy); font-size: 14px; font-weight: 800; }

/* Blog index, article and legal */
.blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.blog-card { min-width: 0; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-soft); }
.blog-card-image { display: block; overflow: hidden; }
.blog-card-image img { height: 240px; object-fit: cover; transition: transform 0.3s; }
.blog-card:hover .blog-card-image img { transform: scale(1.04); }
.blog-card-body { padding: 24px; }
.blog-card h2 { font-size: 23px; }
.blog-card h2 a:hover { color: var(--accent-text); }
.blog-card p { color: var(--muted); }
.empty-state { padding: 40px; text-align: center; background: var(--white); border-radius: 18px; }
.resource-callout { display: flex; align-items: center; justify-content: space-between; gap: 32px; margin-top: 42px; padding: 32px; background: var(--white); border: 1px solid var(--line); border-radius: 20px; }
.resource-callout h2 { max-width: 660px; margin-bottom: 0; font-size: clamp(26px, 4vw, 36px); }
.article-hero { padding: 180px 0 56px; background: var(--soft); }
.article-hero .breadcrumbs { color: var(--muted); }
.article-hero h1 { margin-bottom: 22px; font-size: clamp(42px, 7vw, 72px); }
.article-byline { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; color: var(--muted); }
.article-byline .avatar { width: 38px; height: 38px; }
.article-byline strong { color: var(--navy); }
.article-cover { position: relative; z-index: 2; margin-top: 0; transform: translateY(28px); }
.article-cover img { max-height: 620px; aspect-ratio: 16 / 8; object-fit: cover; border-radius: 24px; box-shadow: var(--shadow); }
.article-section { padding-top: 106px; }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 270px; gap: 64px; align-items: start; }
.article-toc { position: sticky; top: 82px; padding: 22px; background: var(--soft); border-radius: 16px; }
.article-toc ol { display: grid; gap: 11px; padding: 0; margin: 0; list-style: none; }
.article-toc li { display: grid; grid-template-columns: 28px minmax(0, 1fr); gap: 6px; font-size: 14px; }
.article-toc li > span { color: var(--accent-text); font-weight: 800; }
.article-toc a { color: var(--navy); }
.article-toc a:hover, .article-toc a.is-active { color: var(--accent-text); }
.article-tags { margin-top: 42px; padding-top: 24px; border-top: 1px solid var(--line); }
.article-tags > strong { color: var(--navy); }
.article-tags .info-chips { margin-bottom: 0; }
.legal-copy { max-width: 820px; }
.legal-copy > p, .legal-copy section p { color: var(--muted); line-height: 1.8; }
.legal-copy section { margin-top: 44px; }
.legal-copy section h2 { font-size: clamp(25px, 4vw, 34px); }
.legal-date { display: inline-block; padding: 10px 14px; color: var(--navy) !important; background: var(--soft); border-radius: 9px; }
.legal-copy .notice-card { margin-top: 48px; }
.legal-copy .notice-card p { color: #d8e7f0; }

/* Progressive reveal: content is only hidden after JS confirms support. */
[data-sal] { transition: opacity 0.55s, transform 0.55s; }
.motion-ready [data-sal] { opacity: 0; transform: translateY(18px); }
.motion-ready [data-sal="fade"] { transform: none; }
.motion-ready [data-sal="slide-right"] { transform: translateX(-20px); }
.motion-ready [data-sal].sal-animate { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
  [data-sal] { opacity: 1 !important; transform: none !important; }
}

@media (max-width: 1100px) {
  .nav-links { gap: 13px; }
  .nav-links > a, .nav-dropdown-trigger > a { font-size: 14px; }
  .brand { min-width: 185px; }
}

@media (max-width: 1020px) {
  .shell { width: min(var(--max), calc(100% - 36px)); }
  .topbar-item:nth-child(2) { display: none; }
  .topbar-inner { grid-template-columns: 1fr 1fr; }
  .nav-wrap { top: 45px; }
  .navbar { min-height: 70px; padding: 0 15px; backdrop-filter: none; }
  .brand { position: relative; z-index: 42; min-width: 0; max-width: calc(100% - 70px); }
  .brand-mark { width: 43px; height: 43px; }
  .brand-copy strong { font-size: 17px; }
  .nav-toggle { position: relative; z-index: 42; display: grid; flex: 0 0 auto; }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(340px, 88vw);
    z-index: 40;
    display: grid;
    align-content: start;
    gap: 0;
    padding: calc(120px + env(safe-area-inset-top)) 30px calc(30px + env(safe-area-inset-bottom));
    overflow-y: auto;
    visibility: hidden;
    pointer-events: none;
    background: var(--soft);
    box-shadow: -20px 0 60px rgba(7, 39, 64, 0.2);
    opacity: 0;
    transform: translateX(110%);
    transition: transform 0.25s, opacity 0.2s, visibility 0s linear 0.25s;
  }
  .nav-links.open { visibility: visible; pointer-events: auto; opacity: 1; transform: none; transition-delay: 0s; }
  .nav-links > a { padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 17px; }
  .nav-links > a::after { display: none; }
  .nav-links .btn { margin-top: 20px; }
  .nav-dropdown { display: block; align-self: auto; width: 100%; }
  .nav-dropdown-trigger { display: grid; grid-template-columns: minmax(0, 1fr) 48px; border-bottom: 1px solid var(--line); }
  .nav-dropdown-trigger > a { min-width: 0; padding: 15px 0; font-size: 17px; }
  .nav-dropdown-trigger > a::after { display: none; }
  .nav-dropdown-toggle { width: 48px; height: 100%; min-height: 54px; justify-self: end; }
  .nav-dropdown-toggle svg { width: 19px; }
  .nav-dropdown-panel {
    position: static;
    display: none;
    width: 100%;
    padding: 10px 0 14px 14px;
    visibility: visible;
    pointer-events: auto;
    background: transparent;
    border: 0;
    border-left: 3px solid var(--accent);
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
    transition: none;
  }
  .nav-dropdown.is-open .nav-dropdown-panel { display: block; transform: none; }
  .nav-dropdown-list { max-height: none; grid-template-columns: 1fr; gap: 2px; overflow: visible; }
  .nav-dropdown-item { min-height: 44px; padding: 7px 9px; font-size: 15px; }
  .nav-dropdown-item:hover { transform: none; }
  .nav-dropdown-index { width: 28px; height: 28px; }
  .nav-dropdown-all { margin-top: 6px; background: rgba(255, 255, 255, 0.55); font-size: 14px; }
  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-card:nth-child(2n), .feature-grid > .included-card:nth-child(2n) { border-right: 0; }
  .feature-card:nth-child(-n + 2), .feature-grid > .included-card:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .process { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-main { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
  .city-cards, .season-grid, .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .timeline { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px 0; }
  .timeline article:nth-child(3)::after { display: none; }
  .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  body { padding-bottom: calc(74px + env(safe-area-inset-bottom)); }
  .section { padding: 76px 0; }
  .hero { min-height: 720px; }
  .hero-inner { padding: 132px 0 150px; }
  .hero-badges { display: none; }
  .quote-form { grid-template-columns: 1fr 1fr; }
  .quote-message { grid-column: 1 / -1; }
  .quote-foot { align-items: flex-start; flex-direction: column; }
  .section-heading, .about-mosaic, .problems-layout, .locations-layout, .faq-layout, .contact-grid, .split-section, .case-grid { grid-template-columns: 1fr; gap: 42px; }
  .section-heading { align-items: start; }
  .split-section.reverse > :first-child { order: initial; }
  .service-grid, .pricing-grid, .article-grid, .included-grid, .service-link-grid, .problem-grid, .pricing-factors { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .price-card.featured { transform: none; }
  .review-grid { grid-template-columns: 1fr; }
  .review-card { min-height: auto; }
  .logo-row { grid-template-columns: 1fr 1fr; }
  .logo-cell { border-bottom: 1px solid var(--line); }
  .logo-cell:nth-child(2n) { border-right: 0; }
  .logo-cell:first-child { grid-column: 1 / -1; justify-items: center; border-right: 0; }
  .logo-cell:last-child { grid-column: 1 / -1; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
  .timeline { grid-template-columns: 1fr; gap: 18px; }
  .timeline article { padding: 0 0 0 58px; }
  .timeline article::before { top: 3px; }
  .timeline article::after, .timeline article:nth-child(3)::after { display: block; top: 17px; bottom: -26px; left: 8px; width: 2px; height: auto; }
  .timeline article:last-child::after { display: none; }
  .stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-layout { grid-template-columns: 1fr; }
  .article-toc { position: static; order: -1; }
  .resource-callout { align-items: flex-start; flex-direction: column; }
  .sticky-call { display: inline-flex; }
}

@media (max-width: 580px) {
  body { font-size: 15px; }
  .shell { width: min(var(--max), calc(100% - 28px)); }
  .section { padding: 64px 0; }
  .section-title, .section-title.compact { font-size: clamp(32px, 10vw, 40px); }
  .topbar-inner { min-height: 34px; grid-template-columns: 1fr; font-size: 13px; }
  .topbar-item:last-child { display: none; }
  .nav-wrap { top: 42px; }
  .navbar { border-radius: 12px; }
  .brand-copy strong { font-size: 15px; }
  .brand-copy span { display: none; }
  .hero { min-height: 660px; }
  .hero::before { background: linear-gradient(90deg, rgba(5, 35, 58, 0.94), rgba(7, 44, 70, 0.66)); }
  .hero-inner { padding: 120px 0 130px; }
  .hero h1 { font-size: clamp(40px, 13vw, 48px); }
  .hero p { font-size: 16px; }
  .hero-actions, .hero-actions .btn { width: 100%; }
  .quote-overlap { margin-top: -45px; }
  .quote-panel { padding: 22px 18px; border-radius: 18px; }
  .quote-panel h2 { font-size: 20px; }
  .quote-form { grid-template-columns: 1fr; }
  .quote-message { grid-column: auto; }
  .quote-foot .btn { width: 100%; }
  .trust-grid { grid-template-columns: 1fr; gap: 25px; padding-top: 52px; }
  .service-grid, .pricing-grid, .article-grid, .included-grid, .service-link-grid, .problem-grid, .pricing-factors, .process, .city-cards, .season-grid, .related-grid, .blog-grid { grid-template-columns: 1fr; }
  .service-card img { height: 215px; }
  .about-mosaic { gap: 36px; }
  .mosaic { min-height: 450px; }
  .mosaic-main { width: 88%; height: 380px; }
  .mosaic-small { width: 61%; height: 190px; }
  .stat-sticker { right: 5px; bottom: 10px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card, .feature-grid > .included-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .feature-card:last-child, .feature-grid > .included-card:last-child { border-bottom: 0; }
  .offer-inner, .offer-copy, .review-summary, .newsletter-inner, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .offer-pill { min-width: 64px; height: 64px; }
  .offer-inner .btn { width: 100%; }
  .problems-image img { height: 450px; }
  .floating-note { right: 10px; bottom: 10px; }
  .review-board { padding: 18px; }
  .google-line { align-items: flex-start; flex-direction: column; }
  .map-card { min-height: 350px; border-width: 6px; }
  .newsletter-form { width: 100%; flex-direction: column; }
  .newsletter-form .btn { width: 100%; }
  .footer-main { grid-template-columns: 1fr; gap: 35px; }
  .full-form { grid-template-columns: 1fr; padding: 20px; }
  .full-form .full { grid-column: auto; }
  .inner-hero { min-height: 560px; }
  .inner-hero-content { padding: 145px 0 65px; }
  .inner-hero h1 { font-size: clamp(39px, 12vw, 48px); }
  .comparison, .before-after, .ba-card { grid-template-columns: 1fr; }
  .compare-pane { padding: 28px; }
  .content-image img { min-height: 370px; }
  .stat-grid { grid-template-columns: 1fr; }
  .article-meta { flex-direction: column; gap: 2px; }
  .article-hero { padding: 145px 0 44px; }
  .article-hero h1 { font-size: clamp(36px, 11vw, 48px); }
  .article-cover { width: calc(100% - 28px); }
  .article-cover img { aspect-ratio: 4 / 3; border-radius: 16px; }
  .article-section { padding-top: 82px; }
  .contact-banner h2 { font-size: 40px; }
}

@media (max-width: 390px) {
  .shell { width: calc(100% - 24px); }
  .navbar { gap: 10px; padding-inline: 11px; }
  .brand { gap: 8px; }
  .brand-mark { width: 40px; height: 40px; border-radius: 10px; }
  .brand-mark svg { width: 25px; height: 25px; }
  .nav-toggle { width: 44px; height: 44px; }
  .nav-links { width: 100vw; padding-inline: 22px; }
  .hero h1 { overflow-wrap: anywhere; font-size: 39px; }
  .inner-hero h1, .article-hero h1 { overflow-wrap: anywhere; font-size: 37px; }
  .quote-panel, .full-form, .review-board, .compare-pane, .resource-callout { padding-inline: 16px; }
  .btn { width: 100%; padding-inline: 16px; }
  .contact-card { grid-template-columns: 42px minmax(0, 1fr); padding: 14px; }
  .offer-copy { width: 100%; }
  .mosaic { min-height: 405px; }
  .mosaic-main { height: 340px; }
  .mosaic-small { height: 170px; }
  .sticky-call { right: max(10px, env(safe-area-inset-right)); max-width: calc(100% - 20px); }
}
