/* Lawrenceville Water Restoration — brand: navy / blue / green from the logo, orange for calls */
:root {
  --navy: #0b2a5b;
  --navy-deep: #071c40;
  --blue: #1b75d0;
  --blue-dark: #145aa3;
  --sky: #eaf3fc;
  --green: #4fa22a;
  --green-soft: #e9f5e1;
  --orange: #f26a1b;
  --orange-dark: #d85a10;
  --ink: #1b2634;
  --muted: #56657a;
  --line: #dbe4ee;
  --white: #fff;
  --radius: 12px;
  --shadow: 0 6px 24px rgba(11, 42, 91, 0.12);
  --shadow-sm: 0 2px 10px rgba(11, 42, 91, 0.1);
  --font-head: "Poppins", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--font-body); color: var(--ink); background: var(--white); line-height: 1.65; font-size: 17px; padding-bottom: 64px; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--blue-dark); }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy); line-height: 1.2; margin: 0 0 0.6em; letter-spacing: -0.01em; }
h1 { font-size: clamp(2rem, 4.4vw, 3.1rem); font-weight: 700; }
h2 { font-size: clamp(1.55rem, 3vw, 2.15rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; }
p { margin: 0 0 1.05em; }
ul { padding-left: 1.2em; }
.wrap { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--navy); color: #fff; padding: 10px 16px; z-index: 200; }
.skip-link:focus { left: 8px; top: 8px; }
.ico { width: 1.25em; height: 1.25em; flex: none; }
.text-center { text-align: center; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.55em; font-family: var(--font-head); font-weight: 600; font-size: 1rem; padding: 0.8em 1.5em; border-radius: 999px; border: 2px solid transparent; text-decoration: none; cursor: pointer; transition: transform 0.15s, background 0.15s, box-shadow 0.15s; line-height: 1.2; }
.btn:hover { transform: translateY(-1px); }
.btn-call { background: var(--orange); color: #fff; box-shadow: 0 4px 14px rgba(242, 106, 27, 0.35); }
.btn-call:hover { background: var(--orange-dark); color: #fff; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-deep); color: #fff; }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-dark); color: #fff; }
.btn-outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-outline-light { border-color: rgba(255, 255, 255, 0.85); color: #fff; background: transparent; }
.btn-outline-light:hover { background: #fff; color: var(--navy); }
.btn-lg { font-size: 1.1rem; padding: 0.95em 1.9em; }
.btn-block { display: flex; width: 100%; }

/* Top bar */
.topbar { background: var(--navy); color: #fff; font-size: 0.92rem; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 8px; padding-bottom: 8px; }
.topbar-left { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; }
.topbar-btn { background: var(--orange); color: #fff; text-decoration: none; font-family: var(--font-head); font-weight: 600; padding: 7px 28px; border-radius: 6px; border: 2px solid rgba(255, 255, 255, 0.35); }
.topbar-btn:hover { background: var(--orange-dark); color: #fff; }
.topbar-call { display: inline-flex; align-items: center; gap: 8px; color: #fff; text-decoration: none; font-family: var(--font-head); font-weight: 600; }
.topbar-call:hover { color: #ffd9c2; }

/* Header + nav */
.site-header { background: #fff; position: sticky; top: 0; z-index: 100; box-shadow: 0 1px 0 var(--line); }
.header-inner { display: flex; align-items: center; gap: 24px; min-height: 84px; }
.logo { display: block; flex: none; }
.logo img { height: 68px; width: auto; }
.main-nav { margin-left: auto; }
.main-nav > ul { list-style: none; display: flex; gap: 4px; margin: 0; padding: 0; align-items: center; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a { display: block; padding: 30px 14px; color: var(--navy); font-weight: 500; text-decoration: none; font-size: 0.98rem; }
.main-nav > ul > li > a:hover { color: var(--blue); }
.has-dd > a::after { content: ""; display: inline-block; width: 6px; height: 6px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); margin: 0 0 3px 8px; }
.dd { position: absolute; top: 100%; left: 0; background: #fff; border-radius: 0 0 var(--radius) var(--radius); box-shadow: var(--shadow); border-top: 3px solid var(--blue); padding: 18px 22px; min-width: 260px; display: none; z-index: 20; }
.has-dd:hover > .dd, .has-dd:focus-within > .dd, .has-dd.dd-open > .dd { display: block; }
.dd ul { list-style: none; margin: 0; padding: 0; }
.dd a { display: block; padding: 6px 0; color: var(--ink); text-decoration: none; font-size: 0.95rem; }
.dd a:hover { color: var(--blue); }
.dd h3 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--green); margin: 0 0 6px; }
.dd-mega { grid-template-columns: 1fr 1fr; gap: 28px; min-width: 560px; left: -120px; }
.has-dd:hover > .dd-mega, .has-dd:focus-within > .dd-mega, .has-dd.dd-open > .dd-mega { display: grid; }
.dd-areas { min-width: 420px; }
.dd-areas ul { columns: 2; column-gap: 24px; }
.dd-all { margin-top: 8px; font-weight: 600; color: var(--blue) !important; }
.header-call { padding: 0.65em 1.3em; margin-left: 8px; }
.menu-toggle { display: none; margin-left: auto; width: 46px; height: 46px; background: none; border: 0; cursor: pointer; padding: 10px; flex-direction: column; justify-content: center; gap: 6px; }
.menu-toggle span { display: block; height: 3px; background: var(--navy); border-radius: 2px; transition: transform 0.2s, opacity 0.2s; }
.menu-toggle.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
.mobile-nav { display: none; background: #fff; border-top: 1px solid var(--line); padding: 8px 20px 20px; max-height: calc(100vh - 130px); overflow-y: auto; }
.mobile-nav.open { display: block; }
.mobile-nav details { border-bottom: 1px solid var(--line); }
.mobile-nav summary { padding: 14px 0; font-weight: 600; color: var(--navy); cursor: pointer; }
.mobile-nav ul { list-style: none; margin: 0 0 10px; padding: 0 0 0 12px; }
.mobile-nav li a { display: block; padding: 8px 0; color: var(--ink); text-decoration: none; }
.mobile-link { display: block; padding: 14px 0; font-weight: 600; color: var(--navy); border-bottom: 1px solid var(--line); text-decoration: none; }
.mobile-nav .btn { margin-top: 16px; }

/* Breadcrumbs */
.breadcrumbs { background: var(--sky); font-size: 0.88rem; padding: 10px 0; color: var(--muted); }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs .sep { margin: 0 6px; }

/* Hero (home + inner) */
.hero { position: relative; background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 55%, #0f4a8f 100%); color: #fff; padding: 64px 0 132px; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 85% 20%, rgba(27, 117, 208, 0.45), transparent 45%), radial-gradient(circle at 5% 90%, rgba(79, 162, 42, 0.22), transparent 40%); pointer-events: none; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; }
.hero h1 { color: #fff; margin-bottom: 0.45em; }
.hero .lede { font-size: 1.18rem; color: #dbe8f8; max-width: 34em; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.28); color: #fff; padding: 6px 14px; border-radius: 999px; font-size: 0.85rem; font-weight: 600; margin-bottom: 18px; }
.hero-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: #5bd35b; box-shadow: 0 0 0 4px rgba(91, 211, 91, 0.25); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 22px; }
.hero-ctas .btn-lg { font-size: 1.02rem; padding: 0.9em 1.45em; }
.hero-checks { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 22px; font-size: 0.95rem; color: #e6f0fc; }
.hero-checks li { display: flex; gap: 8px; align-items: center; }
.hero-checks .ico { color: #7fd35a; }
.hero-media { position: relative; }
.hero-media img { width: 100%; border-radius: 18px; box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45); border: 4px solid rgba(255, 255, 255, 0.9); aspect-ratio: 4/3; object-fit: cover; }
.hero-tag { position: absolute; left: -14px; bottom: 26px; background: #fff; color: var(--navy); border-radius: 12px; padding: 12px 18px; box-shadow: var(--shadow); font-family: var(--font-head); font-weight: 700; line-height: 1.15; }
.hero-tag small { display: block; font-family: var(--font-body); font-weight: 500; color: var(--muted); font-size: 0.78rem; }
.hero-tag strong { color: var(--orange); }
.hero-wave { position: absolute; left: 0; right: 0; bottom: -1px; height: 60px; width: 100%; }
.hero-inner { padding: 44px 0 56px; }
.hero-inner .hero-grid { grid-template-columns: 1.15fr 0.85fr; }
.hero-inner h1 { font-size: clamp(1.9rem, 3.8vw, 2.7rem); }

/* Trust cards overlapping the hero (Advantaclean-style review strip) */
.trust-strip { position: relative; z-index: 3; margin-top: -84px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 24px 22px; border-top: 4px solid var(--blue); }
.trust-card:nth-child(2) { border-top-color: var(--green); }
.trust-card:nth-child(3) { border-top-color: var(--orange); }
.trust-card:nth-child(4) { border-top-color: var(--navy); }
.trust-card .ico { width: 30px; height: 30px; color: var(--blue); margin-bottom: 10px; }
.trust-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.trust-card p { font-size: 0.93rem; color: var(--muted); margin: 0; }

/* Section rhythm */
section { padding: 72px 0; }
.bg-sky { background: var(--sky); }
.bg-soft { background: #f6f9fc; }
.bg-navy { background: var(--navy); color: #dfe9f7; }
.bg-navy h2, .bg-navy h3 { color: #fff; }
.tight { padding: 36px 0; }
.section-head { max-width: 760px; margin: 0 auto 40px; text-align: center; }
.eyebrow { display: inline-block; font-family: var(--font-head); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin-bottom: 10px; }
.eyebrow-light { color: #9be07a; }
.lead { font-size: 1.15rem; color: var(--muted); }

/* Navy service icon band */
.svc-band { background: var(--navy); color: #fff; padding: 64px 0 60px; }
.svc-band .section-head h2 { color: #fff; }
.svc-band .section-head p { color: #c5d6ee; }
.svc-circles { display: grid; grid-template-columns: repeat(6, 1fr); gap: 22px; }
.svc-circle { text-align: center; text-decoration: none; color: #fff; }
.svc-circle .disc { width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 14px; display: grid; place-items: center; background: rgba(255, 255, 255, 0.08); border: 2px solid rgba(255, 255, 255, 0.35); transition: background 0.2s, transform 0.2s; }
.svc-circle .disc .ico { width: 40px; height: 40px; }
.svc-circle:hover .disc { background: var(--blue); transform: translateY(-4px); }
.svc-circle strong { display: block; font-family: var(--font-head); font-size: 0.98rem; line-height: 1.25; }
.svc-circle:hover { color: #fff; }

/* Split section: image + bordered panel */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; }
.split-media img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius) 0 0 var(--radius); min-height: 340px; }
.split-panel { border: 2px solid var(--navy); border-left: 0; border-radius: 0 var(--radius) var(--radius) 0; padding: 40px 44px; background: #fff; }
.split-panel h2 { margin-bottom: 0.4em; }
.split-panel .sub { font-family: var(--font-head); font-size: 1.15rem; color: var(--muted); font-weight: 500; }
.split.reverse .split-media { order: 2; }
.split.reverse .split-media img { border-radius: 0 var(--radius) var(--radius) 0; }
.split.reverse .split-panel { order: 1; border: 2px solid var(--navy); border-right: 0; border-radius: var(--radius) 0 0 var(--radius); }

/* Emergency banner */
.emergency { background: linear-gradient(100deg, var(--navy-deep), var(--navy) 60%, #14509a); color: #fff; padding: 56px 0; text-align: center; position: relative; overflow: hidden; }
.emergency::after { content: ""; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; border-radius: 50%; background: rgba(79, 162, 42, 0.2); }
.emergency .wrap { position: relative; z-index: 1; }
.emergency h2 { color: #fff; }
.emergency .kicker { font-family: var(--font-head); font-weight: 700; letter-spacing: 0.14em; color: #ffb27d; font-size: 0.95rem; display: block; margin-bottom: 8px; }
.emergency p { max-width: 640px; margin: 0 auto 24px; color: #d3e2f6; }

/* "Why us" tiles */
.tiles { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.tile { text-align: center; padding: 26px 16px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.tile .ico { width: 44px; height: 44px; color: var(--blue); margin: 0 auto 12px; }
.tile h3 { font-size: 1.02rem; margin-bottom: 4px; }
.tile p { font-size: 0.88rem; color: var(--muted); margin: 0 0 8px; }
.tile a { font-family: var(--font-head); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; color: var(--orange); }

/* Cards & grids */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.card .card-icon { width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center; background: var(--sky); color: var(--blue); margin-bottom: 14px; }
.card .card-icon .ico { width: 28px; height: 28px; }
.card h3 { margin-bottom: 8px; }
.card p { margin: 0; color: var(--muted); font-size: 0.97rem; }
.card-link { display: inline-block; margin-top: 12px; font-weight: 600; text-decoration: none; }
.card.service-card { display: flex; flex-direction: column; }
.card.service-card p { flex: 1; }

/* Service name cards (location pages) */
.svc-name-card { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--blue); border-radius: var(--radius); padding: 16px 18px; box-shadow: var(--shadow-sm); }
.svc-name-card .card-icon { width: 44px; height: 44px; margin: 0; flex: none; border-radius: 10px; display: grid; place-items: center; background: var(--sky); color: var(--blue); }
.svc-name-card .card-icon .ico { width: 24px; height: 24px; }
.svc-name-card h3 { margin: 0; font-size: 1rem; line-height: 1.3; }

/* FAQ page jump links */
.faq-jump { margin-bottom: 8px; }
.faq-group { margin-bottom: 48px; scroll-margin-top: 120px; }
.faq-group > h2 { text-align: center; margin-bottom: 24px; }

/* Footer address */
.footer-address { font-style: normal; margin-top: 14px; font-size: 0.9rem; line-height: 1.55; color: #d5e1f2; }

/* Prose blocks */
.prose { max-width: 820px; margin: 0 auto; }
.prose.wide { max-width: 960px; }
.prose h2 { margin-top: 1.6em; }
.prose h2:first-child, .prose > h2:first-of-type { margin-top: 0; }
.prose h3 { margin-top: 1.5em; }
.prose ul, .prose ol { margin: 0 0 1.2em; }
.prose li { margin-bottom: 0.4em; }
.check-list { list-style: none; padding: 0; }
.check-list li { position: relative; padding-left: 30px; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 0.3em; width: 18px; height: 18px; border-radius: 50%; background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12.5 4.5 4.5L19 7'/%3E%3C/svg%3E") center/12px no-repeat; }
.callout { background: var(--green-soft); border-left: 4px solid var(--green); padding: 18px 22px; border-radius: 0 var(--radius) var(--radius) 0; margin: 1.6em 0; }
.callout p:last-child { margin: 0; }
.callout.warn { background: #fff4e8; border-left-color: var(--orange); }
.tag-list { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 1em; }
.tag-list li { background: var(--sky); color: var(--navy); border-radius: 999px; padding: 5px 14px; font-size: 0.9rem; font-weight: 500; margin: 0; }

/* Process timeline */
.timeline { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 20px; counter-reset: step; }
.timeline-step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 20px; position: relative; box-shadow: var(--shadow-sm); }
.timeline-step .num { width: 40px; height: 40px; border-radius: 50%; background: var(--blue); color: #fff; font-family: var(--font-head); font-weight: 700; display: grid; place-items: center; margin-bottom: 12px; }
.timeline-step h3 { font-size: 1.02rem; margin-bottom: 6px; }
.timeline-step p { font-size: 0.92rem; color: var(--muted); margin: 0; }

/* Tables */
.table-scroll { overflow-x: auto; margin: 1.4em 0 0.6em; border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.cost-table { width: 100%; border-collapse: collapse; font-size: 0.96rem; background: #fff; }
.cost-table th, .cost-table td { padding: 14px 16px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.cost-table thead th { background: var(--navy); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; }
.cost-table tbody th { font-weight: 600; color: var(--navy); }
.cost-table tbody tr:nth-child(even) { background: #f6f9fc; }
.cost-table td strong { color: var(--navy); white-space: nowrap; }
.cost-disclaimer { font-size: 0.88rem; color: var(--muted); font-style: italic; }

/* FAQ */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 18px 22px; font-family: var(--font-head); font-weight: 600; color: var(--navy); display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .plus { font-size: 1.5rem; color: var(--blue); transition: transform 0.2s; line-height: 1; }
.faq-item[open] .plus { transform: rotate(45deg); }
.faq-answer { padding: 0 22px 18px; color: #38475b; }
.faq-answer p { margin: 0; }

/* Map */
.map-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); background: var(--sky); }
.map-frame iframe { display: block; width: 100%; height: 420px; border: 0; }

/* Link lists */
.link-cols { columns: 3; column-gap: 28px; list-style: none; padding: 0; margin: 0; }
.link-cols li { break-inside: avoid; margin-bottom: 6px; }
.pill-links { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; margin: 0; }
.pill-links a { display: inline-block; padding: 8px 16px; border: 1px solid var(--line); border-radius: 999px; background: #fff; text-decoration: none; font-size: 0.93rem; font-weight: 500; color: var(--navy); }
.pill-links a:hover { background: var(--blue); border-color: var(--blue); color: #fff; }

/* Area cards */
.area-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); scroll-margin-top: 120px; }
.area-card h3 { margin-bottom: 4px; }
.area-card .meta { font-size: 0.85rem; color: var(--green); font-weight: 600; margin-bottom: 10px; }
.area-card p { font-size: 0.96rem; color: #3b4a5e; }
.area-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.area-links a { font-weight: 600; font-size: 0.92rem; text-decoration: none; padding: 7px 14px; border-radius: 999px; background: var(--sky); }
.area-links a:hover { background: var(--blue); color: #fff; }

/* CTA banner */
.cta-banner { background: linear-gradient(120deg, var(--navy-deep), var(--navy) 55%, #14509a); color: #fff; text-align: center; padding: 72px 0; }
.cta-banner h2 { color: #fff; }
.cta-banner p { max-width: 640px; margin: 0 auto 26px; color: #d3e2f6; font-size: 1.1rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* Forms */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 6px; color: var(--navy); }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: 12px 14px; border: 1px solid #b9c7d8; border-radius: 8px; font: inherit; background: #fff; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: 3px solid rgba(27, 117, 208, 0.25); border-color: var(--blue); }

/* Calculator */
.calc { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 30px; }
.calc-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 32px; align-items: start; }
.calc fieldset { border: 0; padding: 0; margin: 0 0 20px; }
.calc legend { font-family: var(--font-head); font-weight: 600; color: var(--navy); margin-bottom: 8px; padding: 0; }
.calc .opts { display: flex; flex-wrap: wrap; gap: 8px; }
.calc .opts label { cursor: pointer; }
.calc .opts input { position: absolute; opacity: 0; pointer-events: none; }
.calc .opts span { display: inline-block; padding: 9px 16px; border: 2px solid var(--line); border-radius: 999px; font-size: 0.93rem; font-weight: 500; background: #fff; transition: all 0.15s; }
.calc .opts input:checked + span { border-color: var(--blue); background: var(--sky); color: var(--navy); font-weight: 600; }
.calc .opts input:focus-visible + span { outline: 3px solid rgba(27, 117, 208, 0.35); }
.calc-result { background: linear-gradient(160deg, var(--navy), #14509a); color: #fff; border-radius: var(--radius); padding: 28px; position: sticky; top: 110px; }
.calc-result h3 { color: #fff; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.85; }
.calc-range { font-family: var(--font-head); font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 700; margin: 6px 0 6px; }
.calc-note { font-size: 0.9rem; color: #cfe0f6; }
.calc-breakdown { list-style: none; padding: 0; margin: 16px 0 0; font-size: 0.92rem; }
.calc-breakdown li { display: flex; justify-content: space-between; gap: 12px; padding: 7px 0; border-top: 1px solid rgba(255, 255, 255, 0.18); }
.calc input[type="range"] { width: 100%; accent-color: var(--blue); }
.range-val { font-family: var(--font-head); font-weight: 700; color: var(--blue); }

/* Footer */
.site-footer { background: var(--navy-deep); color: #b9c9df; padding-top: 60px; font-size: 0.95rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr; gap: 32px; }
.footer-logo { display: inline-block; background: #fff; padding: 8px 12px; border-radius: 10px; margin-bottom: 16px; }
.footer-logo img { height: 74px; width: auto; }
.footer-brand p { margin-bottom: 16px; }
.footer-note { font-size: 0.85rem; margin-top: 12px; }
.footer-col h3 { color: #fff; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col .two-up { columns: 2; column-gap: 14px; }
.footer-col a { color: #b9c9df; text-decoration: none; }
.footer-col a:hover { color: #fff; text-decoration: underline; }
.footer-contact { margin-top: 18px; font-size: 0.9rem; }
.footer-contact a { color: #fff; font-weight: 600; }
.footer-social { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; color: #d5e1f2; text-decoration: none; font-size: 0.9rem; font-weight: 600; }
.footer-social .ico { width: 22px; height: 22px; flex: none; }
.footer-social:hover { color: #fff; text-decoration: underline; }
.footer-bottom { margin-top: 44px; border-top: 1px solid rgba(255, 255, 255, 0.12); padding: 20px 0; font-size: 0.85rem; }
.footer-bottom-inner { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.footer-bottom p { margin: 0; }

/* Mobile sticky call bar */
.mobile-bar { display: none; }

/* Responsive */
@media (max-width: 1080px) {
  .svc-circles { grid-template-columns: repeat(3, 1fr); row-gap: 32px; }
  .tiles { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .header-call { display: none; }
}
@media (max-width: 900px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .topbar-left span { display: none; }
  .hero { padding: 40px 0 112px; }
  .hero-grid, .hero-inner .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-tag { left: 10px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split-media img, .split.reverse .split-media img { border-radius: var(--radius) var(--radius) 0 0; min-height: 240px; }
  .split-panel, .split.reverse .split-panel { border: 2px solid var(--navy); border-top: 0; border-radius: 0 0 var(--radius) var(--radius); padding: 28px 22px; order: 0; }
  .split.reverse .split-media { order: 0; }
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .calc-grid { grid-template-columns: 1fr; }
  .calc-result { position: static; }
  .link-cols { columns: 2; }
  section { padding: 52px 0; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .topbar-inner { justify-content: space-between; }
  .topbar-btn { padding: 6px 16px; font-size: 0.85rem; }
  .logo img { height: 56px; }
  .header-inner { min-height: 72px; }
  .hero-checks { grid-template-columns: 1fr; }
  .trust-grid, .grid-2, .grid-3, .grid-4, .form-row { grid-template-columns: 1fr; }
  .svc-circles { grid-template-columns: 1fr 1fr; }
  .svc-circle .disc { width: 80px; height: 80px; }
  .tiles { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .link-cols { columns: 1; }
  .map-frame iframe { height: 320px; }
  .cost-table thead { display: none; }
  .cost-table, .cost-table tbody, .cost-table tr, .cost-table th, .cost-table td { display: block; width: 100%; }
  .cost-table tr { border-bottom: 2px solid var(--line); padding: 8px 0; }
  .cost-table th, .cost-table td { border: 0; padding: 6px 16px; }
  .cost-table td::before, .cost-table tbody th::before { content: attr(data-label); display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); font-weight: 600; }
  .mobile-bar { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 150; box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2); }
  .mobile-bar a { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 15px 10px; font-family: var(--font-head); font-weight: 700; color: #fff; text-decoration: none; }
  .mobile-bar-call { flex: 1 1 auto; background: var(--orange); font-size: 0.98rem; }
  .mobile-bar-quote { flex: 0 0 34%; background: var(--navy); font-size: 0.95rem; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
