:root {
  --forest: #123d2f;
  --forest-2: #1e513f;
  --leaf: #3f7955;
  --lime: #d3e65a;
  --cream: #f5f1e7;
  --paper: #fffdf8;
  --ink: #17211d;
  --muted: #5f6b65;
  --line: #dce2da;
  --white: #fff;
  --shadow: 0 18px 50px rgba(18, 61, 47, .10);
  --radius: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 17px; line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; }
a { color: var(--forest); text-decoration-thickness: .08em; text-underline-offset: .18em; }
h1, h2, h3 { margin: 0 0 .55em; color: var(--forest); font-family: Georgia, "Times New Roman", serif; line-height: 1.08; letter-spacing: -.025em; }
h1 { font-size: clamp(2.8rem, 6.4vw, 5.7rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }
p { margin: 0 0 1.25em; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.content-narrow { max-width: 820px; }
.section { padding: clamp(72px, 10vw, 130px) 0; }
.center { text-align: center; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; top: 12px; left: 12px; transform: translateY(-180%); background: var(--white); padding: 10px 16px; border-radius: 8px; }
.skip-link:focus { transform: none; }
.eyebrow { margin: 0 0 18px; color: var(--leaf); font: 800 .73rem/1.2 Inter, sans-serif; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow.light { color: var(--lime); }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 13px 23px; border: 1px solid var(--forest); border-radius: 999px; background: var(--forest); color: var(--white); font-weight: 800; text-decoration: none; cursor: pointer; transition: transform .18s ease, background .18s ease, box-shadow .18s ease; }
.button:hover { transform: translateY(-2px); background: #0c3025; box-shadow: 0 10px 25px rgba(18,61,47,.18); }
.button:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible { outline: 3px solid #f4b942; outline-offset: 3px; }
.button-small { min-height: 42px; padding: 9px 17px; color: var(--white) !important; }
.button-bright { border-color: var(--lime); background: var(--lime); color: #173326; }
.button-bright:hover { background: #e3f26f; }
.button-secondary { border-color: var(--forest); background: transparent; color: var(--forest); }
.button-outline-light { border-color: rgba(255,255,255,.55); background: transparent; }
.button-wide { width: 100%; border: 0; font-size: 1rem; }
.text-link { display: inline-flex; gap: 10px; align-items: center; font-weight: 800; text-decoration: none; }
.text-link span { transition: transform .18s ease; }
.text-link:hover span { transform: translateX(4px); }
.text-link.light { color: var(--white); }

.site-header { position: sticky; z-index: 100; top: 0; border-bottom: 1px solid rgba(18,61,47,.09); background: rgba(255,253,248,.94); backdrop-filter: blur(14px); }
.header-inner { display: flex; min-height: 78px; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--forest); font-family: Georgia, serif; font-size: 1.5rem; font-weight: 800; text-decoration: none; letter-spacing: -.03em; }
.brand > span:last-child span, .brand-footer span { color: var(--leaf); }
.brand-mark { display: grid; width: 40px; height: 40px; place-items: center; border-radius: 50%; background: var(--forest); }
.brand-mark svg { width: 26px; fill: var(--lime); }
.main-nav { display: flex; align-items: center; gap: 24px; }
.main-nav > a:not(.button) { color: #30433a; font-size: .91rem; font-weight: 750; text-decoration: none; }
.main-nav > a:not(.button):hover { color: var(--leaf); }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 9px; border: 0; background: transparent; }
.nav-toggle > span:not(.screen-reader-text) { display: block; height: 2px; margin: 5px 0; background: var(--forest); }

.home-hero { position: relative; min-height: min(790px, calc(100vh - 78px)); display: grid; align-items: center; overflow: hidden; background: var(--forest); }
.hero-media { position: absolute; inset: 0; background: url('../images/bomenhulp-hero.webp') center/cover no-repeat; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,33,24,.91) 0%, rgba(10,40,29,.77) 43%, rgba(10,40,29,.14) 78%, rgba(10,40,29,.05) 100%); }
.hero-content { position: relative; z-index: 1; padding-block: 100px; color: var(--white); }
.hero-content h1 { max-width: 820px; color: var(--white); font-size: clamp(3.2rem, 7vw, 6.4rem); }
.hero-lead { max-width: 700px; color: rgba(255,255,255,.86); font-size: clamp(1.05rem, 2vw, 1.28rem); }
.hero-layout { display: grid; grid-template-columns: minmax(0, .95fr) minmax(430px, .75fr); gap: clamp(40px, 6vw, 88px); align-items: center; }
.hero-layout .hero-copy h1 { max-width: 700px; font-size: clamp(3rem, 5.6vw, 5.35rem); }
.hero-layout .hero-lead { max-width: 620px; }
.hero-read-link { margin-top: 12px; }
.hero-layout .trust-row { margin-top: 42px; }
.hero-form-wrap { width: 100%; max-width: 580px; justify-self: end; }

.boomscan-form { overflow: hidden; border: 1px solid rgba(255,255,255,.65); border-radius: 22px; background: rgba(255,253,248,.97); color: var(--ink); box-shadow: 0 28px 70px rgba(4,24,17,.32); backdrop-filter: blur(16px); }
.boomscan-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding: 25px 28px 17px; }
.boomscan-kicker { margin: 0 0 4px; color: var(--leaf); font-size: .68rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.boomscan-head h2 { margin: 0; font-family: Georgia, serif; font-size: 1.75rem; }
.boomscan-time { flex: 0 0 auto; padding: 5px 10px; border-radius: 999px; background: #e9eddc; color: var(--forest); font-size: .72rem; font-weight: 800; }
.boomscan-progress { display: grid; grid-template-columns: repeat(3, 1fr); padding: 0 28px 17px; }
.boomscan-progress span { position: relative; display: flex; align-items: center; gap: 7px; color: #8b958f; font-size: .69rem; font-weight: 800; }
.boomscan-progress span::after { position: absolute; z-index: 0; top: 12px; right: 8px; left: 33px; height: 1px; background: #d6ddd4; content: ""; }
.boomscan-progress span:last-child::after { display: none; }
.boomscan-progress i { position: relative; z-index: 1; display: grid; width: 25px; height: 25px; place-items: center; border: 1px solid #ced7cc; border-radius: 50%; background: var(--paper); font-style: normal; }
.boomscan-progress .is-active { color: var(--forest); }
.boomscan-progress .is-active i { border-color: var(--forest); background: var(--forest); color: var(--lime); }
.boomscan-progress .is-complete i { border-color: var(--leaf); background: var(--leaf); color: transparent; }
.boomscan-progress .is-complete i::after { position: absolute; color: var(--white); content: "✓"; }
.boomscan-step { margin: 0; padding: 23px 28px 27px; border: 0; border-top: 1px solid #e1e6df; min-inline-size: 0; }
.boomscan-step[hidden] { display: none; }
.boomscan-step label { display: flex; flex-direction: column; margin-bottom: 14px; color: var(--forest); font-size: .76rem; font-weight: 850; line-height: 1.35; }
.boomscan-step label > span { color: #a4482f; }
.boomscan-step label small { display: block; margin-top: 3px; color: var(--muted); font-size: .68rem; font-weight: 500; }
.boomscan-step input, .boomscan-step select, .boomscan-step textarea { min-height: 44px; margin-top: 6px; padding: 8px 11px; border-color: #cbd4c9; border-radius: 9px; background: var(--white); font-size: .82rem; }
.boomscan-step textarea { min-height: 76px; line-height: 1.45; }
.boomscan-two { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.boomscan-three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.choice-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; margin: -5px 0 14px; }
.choice-grid label { position: relative; display: block; margin: 0; cursor: pointer; }
.choice-grid input { position: absolute; opacity: 0; pointer-events: none; }
.choice-grid span { display: grid; min-height: 48px; padding: 7px; place-items: center; border: 1px solid #d0d8cf; border-radius: 9px; background: var(--white); color: var(--forest) !important; font-size: .65rem; text-align: center; }
.choice-grid input:checked + span { border-color: var(--leaf); background: #e8eddc; box-shadow: inset 0 0 0 1px var(--leaf); }
.choice-grid input:focus-visible + span { outline: 3px solid #f4b942; outline-offset: 2px; }
.boomscan-step .button { width: 100%; min-height: 46px; padding: 10px 17px; border: 0; border-radius: 10px; font-size: .82rem; }
.boomscan-step .button span { margin-left: 8px; color: inherit; }
.boomscan-actions { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: center; }
.boomscan-back { padding: 10px 3px; border: 0; background: transparent; color: var(--forest); font-size: .75rem; font-weight: 800; cursor: pointer; }
.boomscan-upload small { margin-bottom: 2px; }
.boomscan-upload input { min-height: auto; padding: 9px; }
.boomscan-consent { flex-direction: row !important; align-items: flex-start; gap: 9px; color: var(--muted) !important; font-size: .69rem !important; font-weight: 550 !important; }
.boomscan-consent input { flex: 0 0 18px; width: 18px; min-height: 18px; margin: 0; }
.boomscan-consent span { color: inherit !important; }
.boomscan-footnote { margin: 10px 0 0; color: var(--muted); font-size: .65rem; text-align: center; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 26px; margin-top: 32px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 16px 30px; margin-top: 62px; color: rgba(255,255,255,.83); font-size: .89rem; font-weight: 650; }
.trust-row i { display: inline-grid; width: 22px; height: 22px; margin-right: 6px; place-items: center; border: 1px solid rgba(211,230,90,.65); border-radius: 50%; color: var(--lime); font-style: normal; }

.services-section { background: var(--cream); }
.split-heading { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: end; margin-bottom: 56px; }
.split-heading > p { max-width: 540px; color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.service-card { position: relative; min-height: 430px; display: flex; flex-direction: column; padding: 0 31px 31px; overflow: hidden; border: 1px solid #d7ddd3; border-radius: var(--radius); background: rgba(255,255,255,.55); color: var(--ink); text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.service-card:hover { transform: translateY(-7px); background: var(--white); box-shadow: var(--shadow); }
.service-card.featured { border-color: var(--forest); background: var(--forest); color: rgba(255,255,255,.78); }
.service-card.featured h3, .service-card.featured .card-link { color: var(--white); }
.service-card.featured .service-number { color: rgba(255,255,255,.55); }
.service-number { color: #849189; font: 800 .7rem/1 Inter, sans-serif; letter-spacing: .1em; }
.service-card-media { display: block; height: 245px; margin: 0 -31px 26px; overflow: hidden; }
.service-card-media img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.service-card:hover .service-card-media img { transform: scale(1.035); }
.service-icon { display: grid; width: 58px; height: 58px; margin: 48px 0 28px; place-items: center; border: 1px solid rgba(63,121,85,.25); border-radius: 50%; color: var(--leaf); font-size: 1.5rem; }
.featured .service-icon { border-color: rgba(211,230,90,.35); color: var(--lime); }
.service-card h3 { font-size: 1.6rem; }
.service-card p { color: inherit; font-size: .94rem; line-height: 1.6; }
.card-link { margin-top: auto; padding-top: 20px; color: var(--forest); font-size: .86rem; font-weight: 800; }
.card-link b { float: right; }

.decision-section { background: var(--paper); }
.decision-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(60px, 9vw, 130px); align-items: start; }
.decision-copy { position: sticky; top: 125px; }
.decision-copy p:not(.eyebrow) { color: var(--muted); }
.decision-list { border-top: 1px solid var(--line); }
.decision-list > a { display: grid; grid-template-columns: 38px 1fr 28px; gap: 24px; align-items: start; padding: 29px 6px; border-bottom: 1px solid var(--line); color: var(--ink); text-decoration: none; }
.decision-list > a > span { color: var(--leaf); font-size: .73rem; font-weight: 800; }
.decision-list h3 { margin-bottom: 6px; font-size: 1.35rem; }
.decision-list p { margin: 0; color: var(--muted); font-size: .92rem; }
.decision-list b { color: var(--leaf); transition: transform .18s ease; }
.decision-list a:hover b { transform: translateX(5px); }

.cost-section { padding-top: 0; background: var(--paper); }
.cost-grid { display: grid; grid-template-columns: 1.35fr .65fr; box-shadow: var(--shadow); }
.cost-card { padding: clamp(44px, 7vw, 80px); border-radius: 24px 0 0 24px; background: var(--forest); color: rgba(255,255,255,.78); }
.cost-card h2 { max-width: 720px; color: var(--white); }
.factor-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; margin: 42px 0; }
.factor-grid > div { padding-top: 20px; border-top: 1px solid rgba(255,255,255,.18); }
.factor-grid strong { color: var(--lime); font-size: .72rem; }
.factor-grid h3 { margin: 10px 0 4px; color: var(--white); font-size: 1.25rem; }
.factor-grid p { margin: 0; font-size: .89rem; }
.photo-checklist { overflow: hidden; border-radius: 0 24px 24px 0; background: #e5ead8; }
.photo-checklist-image { display: block; width: 100%; height: 380px; object-fit: cover; }
.photo-checklist-copy { padding: clamp(40px, 5vw, 62px); }
.photo-checklist h2 { font-size: 2.3rem; }
.photo-checklist ol { margin: 36px 0 0; padding: 0; list-style: none; }
.photo-checklist li { display: flex; gap: 15px; padding: 20px 0; border-top: 1px solid rgba(18,61,47,.17); }
.photo-checklist li > span { display: grid; flex: 0 0 34px; height: 34px; place-items: center; border-radius: 50%; background: var(--forest); color: var(--white); font-size: .75rem; }
.photo-checklist strong, .photo-checklist small { display: block; }
.photo-checklist small { color: var(--muted); line-height: 1.5; }

.permit-section { background: var(--cream); }
.permit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(60px, 10vw, 130px); align-items: center; }
.permit-grid > div:first-child p:not(.eyebrow) { color: var(--muted); }
.permit-steps { border-left: 1px solid #b9c4b7; }
.permit-steps > div { display: grid; grid-template-columns: 52px 1fr; gap: 20px; padding: 15px 0 30px 28px; }
.permit-steps span { display: grid; width: 44px; height: 44px; place-items: center; border-radius: 50%; background: var(--white); color: var(--forest); font-weight: 850; box-shadow: 0 8px 24px rgba(18,61,47,.09); }
.permit-steps p { margin: 0; color: var(--muted); }
.permit-steps strong { color: var(--forest); }
.permit-visual { overflow: hidden; border-radius: var(--radius); background: rgba(255,255,255,.55); box-shadow: 0 18px 46px rgba(18,61,47,.1); }
.permit-visual > img { display: block; width: 100%; height: 400px; object-fit: cover; }
.permit-visual .permit-steps { margin: 0; padding: 18px 22px 4px; border-left: 0; }

.emergency-section { padding: 40px 0; background: var(--paper); }
.emergency-box { display: grid; grid-template-columns: 285px 1fr auto; gap: 34px; align-items: center; padding: 24px; border: 1px solid #e4c7a6; border-radius: var(--radius); background: #fff7ed; }
.emergency-photo { display: block; width: 285px; height: 205px; border-radius: 14px; object-fit: cover; }
.emergency-symbol { display: grid; width: 60px; height: 60px; place-items: center; border-radius: 50%; background: #b55b25; color: var(--white); font-family: Georgia, serif; font-size: 2rem; }
.emergency-box h2 { font-size: 2rem; }
.emergency-box p { margin-bottom: 0; color: #69594c; }

.process-section { background: var(--paper); }
.section-heading.center { max-width: 760px; margin: 0 auto 58px; }
.process-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 52px; margin-bottom: 50px; }
.process-grid::before { position: absolute; top: 23px; right: 16%; left: 16%; height: 1px; background: var(--line); content: ""; }
.process-grid > div { position: relative; text-align: center; }
.process-grid span { position: relative; z-index: 1; display: grid; width: 48px; height: 48px; margin: 0 auto 25px; place-items: center; border-radius: 50%; background: var(--forest); color: var(--lime); font-size: .76rem; font-weight: 850; }
.process-grid h3 { font-size: 1.45rem; }
.process-grid p { color: var(--muted); font-size: .94rem; }
.process-photo { max-width: 1120px; height: 560px; margin: -18px auto 64px; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.process-photo img { display: block; width: 100%; height: 100%; object-fit: cover; }

.faq-section { background: var(--cream); }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(50px, 9vw, 120px); }
.faq-list { border-top: 1px solid #cfd7cd; }
.faq-list details, .page-faq details { border-bottom: 1px solid #cfd7cd; }
.faq-list summary, .page-faq summary { position: relative; padding: 24px 44px 24px 0; color: var(--forest); font-family: Georgia, serif; font-size: 1.18rem; font-weight: 750; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker, .page-faq summary::-webkit-details-marker { display: none; }
.faq-list summary::after, .page-faq summary::after { position: absolute; top: 19px; right: 4px; content: "+"; color: var(--leaf); font: 400 1.7rem/1 Georgia, serif; }
.faq-list details[open] summary::after, .page-faq details[open] summary::after { content: "−"; }
.faq-list details p, .page-faq details p { max-width: 680px; padding: 0 35px 20px 0; color: var(--muted); }

.final-cta { padding: 80px 0; background: var(--forest); color: rgba(255,255,255,.8); }
.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.final-cta h2 { max-width: 800px; color: var(--white); }
.final-cta p:not(.eyebrow) { max-width: 720px; margin-bottom: 0; }
.final-cta .button { flex: 0 0 auto; }

.page-hero { padding: clamp(78px, 10vw, 130px) 0; background: var(--cream); }
.page-hero.compact { min-height: 420px; display: flex; align-items: center; }
.page-hero.compact h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
.page-hero p:not(.eyebrow) { max-width: 760px; color: var(--muted); font-size: 1.14rem; }
.page-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(460px, 1fr); gap: clamp(45px, 7vw, 90px); align-items: center; }
.service-page-hero { min-height: 560px; display: flex; align-items: center; background: linear-gradient(135deg, #f4f0e5 0%, #edf2e3 100%); }
.service-page-hero .page-hero-grid { grid-template-columns: minmax(0, 1.25fr) minmax(320px, .65fr); gap: clamp(55px, 8vw, 120px); }
.service-page-hero h1 { max-width: 860px; font-size: clamp(3rem, 6vw, 5.3rem); }
.service-page-hero p:not(.eyebrow) { max-width: 720px; font-size: 1.14rem; }
.service-hero-summary { border: 1px solid rgba(255,255,255,.12); background: var(--forest); box-shadow: 0 24px 55px rgba(13,45,35,.18); }
.hero-visual-panel { overflow: hidden; border-radius: var(--radius); background: var(--forest); box-shadow: var(--shadow); }
.hero-visual-panel > img { display: block; width: 100%; min-height: 410px; aspect-ratio: 4 / 3; object-fit: cover; }
.hero-summary { padding: 38px; border-radius: var(--radius); background: var(--forest); color: rgba(255,255,255,.8); box-shadow: var(--shadow); }
.hero-visual-panel .hero-summary { border-radius: 0; box-shadow: none; }
.hero-summary h2 { color: var(--white); font-size: 1.65rem; }
.check-list { margin: 22px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; margin: 13px 0; padding-left: 28px; }
.check-list li::before { position: absolute; top: 1px; left: 0; color: var(--lime); content: "✓"; font-weight: 900; }
.article-layout { display: grid; grid-template-columns: minmax(0, 760px) 300px; gap: clamp(60px, 9vw, 120px); align-items: start; }
.prose { font-size: 1.06rem; }
.prose h2 { margin-top: 1.7em; font-size: clamp(1.85rem, 4vw, 2.75rem); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.5em; font-size: 1.35rem; }
.prose p, .prose li { color: #48564f; }
.prose a { font-weight: 700; }
.service-story-section { padding-top: clamp(72px, 9vw, 130px); overflow: hidden; }
.service-story { max-width: 1180px; }
.service-story-content { max-width: none; }
.service-story-copy { width: min(820px, 78%); padding: clamp(58px, 8vw, 105px) 0; border: 0; }
.service-story-copy:first-child { padding-top: 0; }
.service-story-copy.align-right { margin-left: auto; }
.service-story-copy h2 { max-width: 760px; margin-top: 0; }
.service-story-copy p:last-child, .service-story-copy ul:last-child, .service-story-copy div:last-child { margin-bottom: 0; }
.story-number { margin: 0 0 16px; color: var(--leaf) !important; font-size: .78rem; font-weight: 900; letter-spacing: .18em; }
.service-story-photo { position: relative; width: 100%; margin: 0; overflow: hidden; border-radius: 28px; background: #dce4d6; box-shadow: 0 28px 65px rgba(13,45,35,.17); }
.service-story-photo::after { position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.44); border-radius: inherit; content: ""; pointer-events: none; }
.service-story-photo img { display: block; width: 100%; height: clamp(440px, 52vw, 650px); object-fit: cover; transition: transform .7s ease; }
.service-story-photo:hover img { transform: scale(1.015); }
.service-story-content > .inline-cta { margin-top: clamp(80px, 10vw, 130px); }
.service-story-content > .page-faq { width: min(900px, 100%); margin: clamp(80px, 10vw, 130px) auto 0; }
.price-notice { margin: 0 0 30px; padding: 24px 26px; border: 1px solid #cbd8bd; border-left: 5px solid var(--leaf); border-radius: 14px; background: #f0f4e6; }
.price-notice > strong { display: block; margin-bottom: 6px; color: var(--forest); font-size: 1.05rem; }
.price-notice p { margin: 0; font-size: .93rem; }
.price-table-wrap { width: 100%; margin: 26px 0 18px; overflow-x: auto; border: 1px solid #d4dcd2; border-radius: 16px; background: var(--white); box-shadow: 0 10px 28px rgba(18,61,47,.06); -webkit-overflow-scrolling: touch; }
.price-table { width: 100%; min-width: 620px; border-collapse: collapse; font-size: .92rem; line-height: 1.45; }
.price-table th, .price-table td { padding: 17px 18px; text-align: left; vertical-align: top; }
.price-table thead { background: var(--forest); color: var(--white); }
.price-table th { color: var(--white); font-size: .72rem; font-weight: 850; letter-spacing: .05em; text-transform: uppercase; }
.price-table tbody tr:nth-child(even) { background: #f5f6ef; }
.price-table tbody tr + tr { border-top: 1px solid #e0e5de; }
.price-table td { color: #48564f; }
.price-table td:last-child { color: var(--forest); white-space: nowrap; }
.price-table-compact { min-width: 560px; }
.price-table-compact td:first-child { width: 56%; }
.price-caption { margin: 0 0 12px; color: var(--muted) !important; font-size: .86rem; font-style: italic; }
.price-points { margin: 24px 0 4px; padding: 0; list-style: none; }
.price-points li { position: relative; margin: 12px 0; padding-left: 27px; }
.price-points li::before { position: absolute; top: 1px; left: 0; color: var(--leaf); content: "✓"; font-weight: 900; }
.price-factor-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0 5px; }
.price-factor-grid > div { padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
.price-factor-grid > div > strong { color: var(--leaf); font-size: .72rem; letter-spacing: .1em; }
.price-factor-grid h3 { margin: 8px 0 5px; font-size: 1.18rem; }
.price-factor-grid p { margin: 0; font-size: .88rem; }
.source-note { margin-top: 30px; padding: 24px 26px; border-radius: 14px; background: #eef0e7; }
.source-note > strong { color: var(--forest); }
.source-note p { margin: 7px 0 0; font-size: .83rem; }
.source-note a { color: var(--forest); }
.sticky-card { position: sticky; top: 112px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 12px 35px rgba(18,61,47,.07); }
.sticky-card h2 { font-size: 1.65rem; }
.sticky-card ul { margin: 20px 0 26px; padding-left: 20px; color: var(--muted); }
.inline-cta { margin: 60px 0; padding: clamp(30px, 5vw, 50px); border-radius: var(--radius); background: #e8eddc; }
.inline-cta h2 { margin-top: 0; }
.page-faq { margin-top: 70px; }

.request-section { background: var(--paper); }
.request-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: clamp(50px, 8vw, 100px); align-items: start; }
.request-form { padding: clamp(28px, 5vw, 50px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-grid label { display: flex; flex-direction: column; color: var(--forest); font-size: .9rem; font-weight: 800; }
.form-grid label > span { color: #a4482f; }
.form-grid .span-2 { grid-column: 1 / -1; }
input, select, textarea { width: 100%; margin-top: 7px; border: 1px solid #c7d0c6; border-radius: 10px; background: var(--paper); color: var(--ink); font: inherit; }
input, select { min-height: 50px; padding: 10px 13px; }
textarea { min-height: 150px; padding: 13px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--leaf); }
.upload-label small { margin: 2px 0 5px; color: var(--muted); font-weight: 500; }
.upload-label input { min-height: auto; padding: 14px; }
.consent { display: flex; gap: 12px; margin: 25px 0; color: var(--muted); font-size: .85rem; line-height: 1.5; }
.consent input { flex: 0 0 20px; width: 20px; min-height: 20px; margin-top: 2px; }
.form-footnote { margin: 13px 0 0; color: var(--muted); font-size: .78rem; text-align: center; }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-alert { margin-bottom: 22px; padding: 14px 18px; border-radius: 10px; }
.form-alert.error { border: 1px solid #d79d8d; background: #fff2ee; color: #783720; }
.request-aside { position: sticky; top: 112px; padding: 32px; overflow: hidden; border-radius: var(--radius); background: var(--cream); }
.request-aside-image { display: block; width: calc(100% + 64px); height: 220px; margin: -32px -32px 28px; object-fit: cover; }
.request-aside h2 { font-size: 1.8rem; }
.request-aside .check-list li::before { color: var(--leaf); }
.safety-note { margin-top: 30px; padding: 20px; border-left: 4px solid #b55b25; background: #fff7ed; }
.safety-note p { margin: 5px 0 0; color: #69594c; font-size: .88rem; }
.thank-you { min-height: 650px; align-items: center; padding-bottom: 80px; }
.success-mark { display: grid; width: 70px; height: 70px; margin: 0 auto 25px; place-items: center; border-radius: 50%; background: var(--forest); color: var(--lime); font-size: 2rem; }
.thank-you-photo { position: relative; width: min(1080px, calc(100vw - 40px)); margin: 50px 0 0 50%; overflow: hidden; transform: translateX(-50%); border-radius: 22px; box-shadow: 0 24px 55px rgba(13,45,35,.18); }
.thank-you-photo::after { position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.4); border-radius: inherit; content: ""; pointer-events: none; }
.thank-you-photo img { display: block; width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.content-photo { width: min(1040px, calc(100vw - 40px)); margin: 0 0 58px 50%; overflow: hidden; transform: translateX(-50%); border-radius: var(--radius); box-shadow: var(--shadow); }
.content-photo img { display: block; width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.legal-copy { font-size: 1rem; }
.trust-page-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, .72fr); gap: clamp(55px, 8vw, 110px); align-items: start; }
.trust-page-visual { overflow: hidden; border-radius: var(--radius); background: var(--forest); color: rgba(255,255,255,.78); box-shadow: var(--shadow); }
.trust-page-visual img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.trust-page-visual > div { padding: 36px; }
.trust-page-visual h2 { color: var(--white); }
.trust-page-visual .text-link { color: var(--lime); }
.contact-card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.contact-card { min-height: 390px; display: flex; padding: clamp(35px, 5vw, 60px); align-items: flex-start; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius); background: var(--cream); }
.contact-card h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
.contact-card p:not(.eyebrow) { max-width: 560px; color: var(--muted); }
.contact-card .button { margin-top: auto; }
.contact-card-dark { border-color: var(--forest); background: var(--forest); color: var(--white); }
.contact-card-dark h2 { color: var(--white); }
.contact-card-dark p:not(.eyebrow) { color: rgba(255,255,255,.72); }

.regions-section { background: #eef1e7; }
.region-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.region-card-grid > a { position: relative; min-height: 310px; display: flex; padding: 34px; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); color: var(--ink); text-decoration: none; box-shadow: 0 10px 26px rgba(18,61,47,.05); transition: transform .25s ease, box-shadow .25s ease; }
.region-card-grid > a:hover { transform: translateY(-4px); box-shadow: 0 20px 42px rgba(18,61,47,.12); }
.region-card-grid span { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 50%; background: var(--forest); color: var(--lime); font-size: .72rem; font-weight: 900; letter-spacing: .06em; }
.region-card-grid h3 { margin: 26px 0 10px; font-size: 2rem; }
.region-card-grid p { margin: 0 0 24px; color: var(--muted); }
.region-card-grid b { margin-top: auto; color: var(--leaf); font-size: .86rem; }
.regions-note { max-width: 850px; margin: 28px 0 0; color: var(--muted); font-size: .86rem; }

.local-page-hero { padding: clamp(70px, 8vw, 112px) 0; background: linear-gradient(135deg, #f4f0e5 0%, #e9efe0 100%); }
.local-hero-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(390px, .78fr); gap: clamp(45px, 7vw, 90px); align-items: center; }
.local-hero-copy h1 { max-width: 820px; font-size: clamp(3rem, 6.1vw, 5.45rem); }
.local-hero-copy > p:not(.eyebrow) { max-width: 720px; color: var(--muted); font-size: 1.13rem; }
.local-hero-actions { display: flex; margin-top: 34px; align-items: center; gap: 25px; flex-wrap: wrap; }
.local-hero-visual { overflow: hidden; border-radius: var(--radius); background: var(--forest); color: rgba(255,255,255,.78); box-shadow: var(--shadow); }
.local-hero-visual > img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.local-hero-visual > div { padding: 28px 34px 34px; }
.local-hero-visual .check-list { margin-top: 13px; }

.local-permit-section { background: var(--forest); color: rgba(255,255,255,.75); }
.local-permit-intro { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(45px, 8vw, 110px); align-items: end; }
.local-permit-intro h2 { max-width: 720px; margin-bottom: 0; color: var(--white); }
.local-permit-intro > p { max-width: 720px; margin: 0; font-size: 1.07rem; }
.local-fact-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; margin-top: 58px; }
.local-fact-grid article { min-height: 270px; padding: 28px; border: 1px solid rgba(255,255,255,.15); border-radius: 18px; background: rgba(255,255,255,.045); }
.local-fact-grid article > span { color: var(--lime); font-size: .72rem; font-weight: 900; letter-spacing: .14em; }
.local-fact-grid h3 { margin: 22px 0 12px; color: var(--white); font-size: 1.35rem; }
.local-fact-grid p { margin: 0; font-size: .9rem; }
.local-source { display: flex; margin-top: 32px; padding: 22px 26px; align-items: center; justify-content: space-between; gap: 28px; border-radius: 14px; background: rgba(255,255,255,.08); }
.local-source strong { color: var(--white); }
.local-source p { margin: 3px 0 0; font-size: .78rem; }
.local-source a { color: var(--lime); font-size: .86rem; font-weight: 800; text-decoration: none; }

.local-story-section { overflow: hidden; background: var(--paper); }
.local-story { display: grid; gap: clamp(85px, 11vw, 150px); }
.local-story-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(380px, .92fr); gap: clamp(45px, 8vw, 105px); align-items: center; }
.local-story-row.is-reversed .local-story-copy { order: 2; }
.local-story-row.is-reversed figure { order: 1; }
.local-story-copy h2 { font-size: clamp(2rem, 4.2vw, 3.35rem); }
.local-story-copy p { color: var(--muted); }
.local-story-copy a { color: var(--forest); font-weight: 800; }
.local-story-row figure { margin: 0; overflow: hidden; border-radius: 26px; box-shadow: 0 24px 55px rgba(13,45,35,.15); }
.local-story-row figure img { display: block; width: 100%; height: clamp(390px, 43vw, 560px); object-fit: cover; }
.local-warning { margin-top: 26px; padding: 20px 22px; border-left: 5px solid var(--leaf); border-radius: 0 12px 12px 0; background: #eef2e4; }
.local-warning strong { color: var(--forest); }
.local-warning p { margin: 5px 0 0; font-size: .88rem; }

.local-links-section { background: var(--cream); }
.local-service-links { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.local-service-links a { display: grid; min-height: 260px; padding: 30px; grid-template-columns: 1fr auto; align-content: start; border: 1px solid var(--line); border-radius: 18px; background: var(--paper); color: var(--ink); text-decoration: none; }
.local-service-links span { color: var(--leaf); font-size: .72rem; font-weight: 900; }
.local-service-links h3, .local-service-links p { grid-column: 1 / -1; }
.local-service-links h3 { margin: 34px 0 8px; font-size: 1.65rem; }
.local-service-links p { color: var(--muted); }
.local-service-links b { color: var(--leaf); font-size: 1.3rem; }
.local-faq-section { background: var(--paper); }

.site-footer { padding: 75px 0 24px; background: #0d2d23; color: rgba(255,255,255,.66); }
.footer-grid { display: grid; grid-template-columns: 1.35fr .65fr .75fr .65fr; gap: 45px; padding-bottom: 55px; }
.brand-footer { color: var(--white); }
.footer-grid > div:first-child p { max-width: 430px; margin-top: 18px; }
.footer-grid h2 { color: var(--white); font-family: Inter, sans-serif; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-grid a:not(.brand) { display: block; margin: 9px 0; color: rgba(255,255,255,.72); font-size: .9rem; text-decoration: none; }
.footer-grid a:hover { color: var(--lime); }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.13); font-size: .78rem; }
.footer-bottom p { margin: 0; }

@media (max-width: 1020px) {
  .nav-toggle { display: block; cursor: pointer; }
  .main-nav { position: absolute; top: 77px; right: 0; left: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 15px 20px 24px; border-bottom: 1px solid var(--line); background: var(--paper); box-shadow: 0 18px 28px rgba(18,61,47,.1); }
  .main-nav.is-open { display: flex; }
  .main-nav > a:not(.button) { padding: 11px 5px; }
  .main-nav .button { margin-top: 10px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card { min-height: 430px; }
  .service-card-media { height: 280px; }
  .decision-grid, .faq-grid { grid-template-columns: 1fr; }
  .decision-copy { position: static; max-width: 720px; }
  .cost-grid { grid-template-columns: 1fr; }
  .cost-card { border-radius: 24px 24px 0 0; }
  .photo-checklist { border-radius: 0 0 24px 24px; }
  .article-layout { grid-template-columns: minmax(0, 1fr) 260px; gap: 50px; }
  .hero-layout { grid-template-columns: minmax(0, .8fr) minmax(390px, 1fr); gap: 35px; }
  .hero-layout .hero-copy h1 { font-size: clamp(2.6rem, 5.8vw, 4.2rem); }
  .page-hero-grid { grid-template-columns: minmax(0, .9fr) minmax(390px, 1.1fr); gap: 42px; }
  .service-page-hero .page-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(300px, .7fr); gap: 42px; }
  .local-fact-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 70px 0; }
  .header-inner { min-height: 68px; }
  .main-nav { top: 67px; }
  .brand { font-size: 1.28rem; }
  .brand-mark { width: 36px; height: 36px; }
  .home-hero { min-height: 720px; align-items: end; }
  .hero-media { background-position: 62% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(7,33,24,.97) 0%, rgba(7,33,24,.82) 55%, rgba(7,33,24,.18) 100%); }
  .hero-content { padding: 90px 0 58px; }
  .hero-content h1 { font-size: clamp(2.65rem, 13vw, 4.3rem); }
  .hero-layout { grid-template-columns: 1fr; gap: 38px; }
  .hero-layout .hero-copy h1 { font-size: clamp(2.65rem, 12vw, 4.2rem); }
  .hero-form-wrap { max-width: none; }
  .boomscan-head { padding: 22px 20px 15px; }
  .boomscan-progress { padding: 0 20px 15px; }
  .boomscan-step { padding: 20px; }
  .boomscan-three { grid-template-columns: 1fr; gap: 0; }
  .choice-grid { grid-template-columns: 1fr 1fr; }
  .trust-row { margin-top: 38px; gap: 11px; flex-direction: column; }
  .split-heading { grid-template-columns: 1fr; gap: 15px; margin-bottom: 38px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 410px; }
  .service-card-media { height: 270px; }
  .service-icon { margin-top: 30px; }
  .decision-list > a { grid-template-columns: 30px 1fr 20px; gap: 13px; }
  .factor-grid { grid-template-columns: 1fr; }
  .permit-grid, .page-hero-grid, .article-layout, .request-layout, .trust-page-grid, .contact-card-grid, .local-hero-grid, .local-permit-intro, .local-story-row { grid-template-columns: 1fr; }
  .region-card-grid, .local-service-links { grid-template-columns: 1fr; }
  .local-fact-grid { grid-template-columns: 1fr; }
  .local-story-row.is-reversed .local-story-copy, .local-story-row.is-reversed figure { order: initial; }
  .local-story-row figure img { height: clamp(300px, 74vw, 430px); }
  .local-source { align-items: flex-start; flex-direction: column; }
  .article-aside { display: none; }
  .price-factor-grid { grid-template-columns: 1fr; }
  .price-table { font-size: .86rem; }
  .price-table th, .price-table td { padding: 14px; }
  .permit-visual { margin-top: 25px; }
  .permit-visual > img { height: 320px; }
  .emergency-box { grid-template-columns: 1fr; padding: 20px; }
  .emergency-photo { width: 100%; height: 280px; }
  .emergency-box .text-link { grid-column: 1 / -1; }
  .process-photo { height: 340px; margin-bottom: 42px; }
  .process-grid { grid-template-columns: 1fr; gap: 22px; }
  .process-grid::before { display: none; }
  .process-grid > div { padding: 25px; border: 1px solid var(--line); border-radius: var(--radius); }
  .final-cta-inner { align-items: flex-start; flex-direction: column; }
  .page-hero { padding: 75px 0; }
  .page-hero.compact { min-height: 340px; }
  .service-page-hero { min-height: 0; padding: 80px 0; align-items: center; }
  .service-page-hero .page-hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .service-hero-summary { padding: 28px; }
  .service-story-section { padding-top: 70px; }
  .service-story-copy { width: 100%; padding: 64px 0; }
  .service-story-photo { width: calc(100vw - 28px); margin-left: 50%; transform: translateX(-50%); border-radius: 20px; }
  .service-story-photo img { height: clamp(300px, 75vw, 430px); }
  .service-story-content > .inline-cta, .service-story-content > .page-faq { margin-top: 75px; }
  .hero-visual-panel { margin-top: 10px; }
  .hero-visual-panel > img { min-height: 0; aspect-ratio: 3 / 2; }
  .hero-visual-panel .hero-summary { margin-top: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .span-2 { grid-column: auto; }
  .request-aside { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .thank-you-photo, .content-photo { width: calc(100vw - 28px); }
}

@media (max-width: 440px) {
  .boomscan-two { grid-template-columns: 1fr; gap: 0; }
  .boomscan-actions { grid-template-columns: 1fr; }
  .boomscan-back { order: 2; }
  .boomscan-time { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

.breadcrumbs {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.breadcrumbs .container {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 48px;
  color: var(--muted);
  font-size: .78rem;
}

.breadcrumbs a {
  color: var(--forest);
  font-weight: 750;
  text-decoration: none;
}

.breadcrumbs span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
