:root {
  --ink: #112d2a;
  --muted: #546a66;
  --brand: #087d72;
  --brand-dark: #075b54;
  --accent: #e7b44e;
  --surface: #ffffff;
  --tint: #edf6f3;
  --line: #ceded9;
  --radius: 1rem;
  --shadow: 0 1rem 2.5rem rgba(17, 45, 42, .1);
  --max: 76rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--surface); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.6; }
a { color: inherit; }
button, input { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.12; letter-spacing: -.025em; }
h1 { max-width: 18ch; font-size: clamp(2.5rem, 6vw, 5.4rem); margin-bottom: 1.5rem; }
h2 { max-width: 23ch; font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 1.25rem; }
h3 { font-size: 1.12rem; }

.container { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.narrow { max-width: 54rem; }
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-tint { background: var(--tint); }
.section-intro { max-width: 48rem; color: var(--muted); font-size: 1.08rem; }
.eyebrow { color: var(--brand); font-size: .78rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.sr-only { 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: 99; top: .5rem; left: .5rem; padding: .75rem 1rem; transform: translateY(-150%); background: var(--ink); color: white; }
.skip-link:focus { transform: translateY(0); }

.site-header { position: sticky; z-index: 50; top: 0; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.96); backdrop-filter: blur(12px); }
.header-inner { min-height: 4.8rem; display: flex; align-items: center; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: .7rem; font-weight: 850; text-decoration: none; white-space: nowrap; }
.brand-mark { display: grid; width: 2.2rem; height: 2.2rem; place-items: center; border-radius: .65rem; background: var(--brand); color: white; font-size: .75rem; }
.site-header nav { margin-left: auto; }
.nav-list { display: flex; gap: 1.5rem; margin: 0; padding: 0; list-style: none; }
.nav-list a { text-decoration: none; font-size: .92rem; font-weight: 650; }
.nav-list a:hover { color: var(--brand); }
.nav-toggle, .submenu-toggle { display: none; }
.nav-group { position: relative; display: flex; align-items: center; }
.nav-category { padding-block: 1.7rem; }
.mega-menu { position: fixed; z-index: 55; top: 4.8rem; right: 0; left: 0; visibility: hidden; padding: 1.25rem 0; transform: translateY(-.5rem); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: white; opacity: 0; box-shadow: var(--shadow); transition: opacity .18s ease, transform .18s ease, visibility .18s; }
.nav-group:hover .mega-menu, .nav-group:focus-within .mega-menu, .nav-group.is-open .mega-menu { visibility: visible; transform: translateY(0); opacity: 1; }
.mega-menu-inner { width: min(calc(100% - 2rem), var(--max)); display: grid; grid-template-columns: 15rem 1fr; gap: 2rem; margin-inline: auto; }
.mega-menu-heading { padding: .75rem 1.25rem .75rem 0; border-right: 1px solid var(--line); }
.mega-menu-heading a { color: var(--brand-dark); }
.mega-menu ul { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .35rem 1rem; margin: 0; padding: 0; list-style: none; }
.mega-menu li a { min-height: 2.75rem; display: flex; align-items: center; padding: .45rem .6rem; border-radius: .45rem; font-size: .84rem; line-height: 1.3; }
.mega-menu li a:hover { background: var(--tint); }

.pricing-ticker { position: sticky; z-index: 19; top: 4.8rem; overflow: hidden; border-bottom: 1px solid rgba(255,255,255,.18); background: var(--ink); color: white; }
.ticker-viewport { overflow: hidden; }
.ticker-track { display: flex; width: max-content; animation: ticker-scroll 60s linear infinite; }
.ticker-set { display: flex; flex-shrink: 0; align-items: center; }
.ticker-set span { display: inline-flex; align-items: center; gap: .35rem; padding: .65rem 2.5rem; white-space: nowrap; font-size: .86rem; }
.ticker-set span::after { content: "◆"; margin-left: 2.5rem; color: var(--accent); font-size: .5rem; }
.ticker-viewport:hover .ticker-track, .ticker-viewport:focus .ticker-track, .ticker-viewport:focus-within .ticker-track { animation-play-state: paused; }
@keyframes ticker-scroll { to { transform: translateX(-50%); } }

.button { display: inline-flex; min-height: 3rem; align-items: center; justify-content: center; padding: .78rem 1.2rem; border: 0; border-radius: .7rem; background: var(--brand); color: white; font-weight: 750; text-decoration: none; cursor: pointer; }
.button:hover { background: var(--brand-dark); }
.button:focus-visible, a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.button-small { min-height: 2.65rem; font-size: .88rem; }
.button:disabled { cursor: not-allowed; opacity: .55; }
.text-link { color: var(--brand-dark); font-weight: 750; text-underline-offset: .2em; }

.hero { position: relative; overflow: hidden; background: linear-gradient(130deg, #f7fbfa, #e8f4f1); }
.hero-copy { padding-block: clamp(4rem, 8vw, 7rem); }
.hero-copy > p:not(.eyebrow) { max-width: 43rem; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.25rem); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem; margin-top: 2rem; }
.hero-media { min-width: 0; min-height: clamp(31rem, 58vw, 48rem); display: grid; grid-template-columns: 1fr 1fr; background: var(--ink); }
.media-stack { min-width: 0; display: grid; grid-template-rows: 1fr 1fr; }
.media-panel { position: relative; min-width: 0; margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.22); }
.media-panel-main { min-height: 100%; }
.placeholder-visual { position: absolute; inset: 0; display: grid; place-items: center; padding: 1rem; background: linear-gradient(145deg, #1a6961, #0a3531); color: white; text-align: center; }
.placeholder-visual-alt { background: linear-gradient(145deg, #b78531, #6a4918); }
.building-visual { align-content: center; gap: 1rem; background: linear-gradient(to top, rgba(8,45,42,.7), rgba(8,45,42,.06)), linear-gradient(135deg, #a7bfba, #496b66); }
.building-visual::before { content: ""; width: 75%; aspect-ratio: 1 / .72; border: .65rem solid #dbe4e1; border-bottom-width: 1.3rem; background: repeating-linear-gradient(90deg, #244d49 0 18%, #b4cac6 18% 24%); box-shadow: var(--shadow); }
.building-name { position: absolute; top: 27%; padding: .25rem .55rem; background: rgba(255,255,255,.9); color: var(--ink); font-size: clamp(.65rem, 1.1vw, .95rem); font-weight: 900; letter-spacing: .12em; }
.placeholder-label { position: relative; z-index: 1; padding: .45rem .7rem; border-radius: 99rem; background: rgba(5,27,25,.72); font-size: .78rem; }
.media-panel figcaption { position: absolute; z-index: 2; right: 1rem; bottom: 1rem; left: 1rem; color: white; font-size: .8rem; }

.sector-tabs { display: flex; gap: .5rem; margin-top: 2.5rem; overflow-x: auto; }
.sector-tab { flex: 1; min-width: max-content; padding: 1rem; border: 1px solid var(--line); border-radius: .75rem; background: white; color: var(--muted); font-weight: 800; cursor: pointer; }
.sector-tab.is-active { border-color: var(--brand); background: var(--brand); color: white; }
.timer-track { height: .25rem; margin: .6rem 0 2rem; overflow: hidden; border-radius: 1rem; background: var(--line); }
.timer-track span { display: block; width: 0; height: 100%; background: var(--accent); }
.timer-track span.is-running { animation: timer-progress 20s linear forwards; }
.faq-timer span.is-running { animation-duration: 20s; }
.service-timer-pill { position: relative; display: block; margin: -1.25rem 1.5rem 1.8rem; padding-top: 1.9rem; color: var(--muted); font-size: .76rem; }
.service-timer-pill > span { display: block; margin-bottom: .4rem; text-align: right; }
.timer-hint { position: absolute; z-index: 2; left: 0; bottom: -.62rem; max-width: min(85%, 19rem); padding: .4rem .8rem; overflow: hidden; border: 1px solid #26364e; border-radius: 99rem; background: #101827; color: white; font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; font-size: .7rem; font-weight: 800; letter-spacing: .02em; text-overflow: ellipsis; white-space: nowrap; cursor: pointer; box-shadow: 0 .25rem .65rem rgba(16,24,39,.2); }
.timer-hint:hover { background: #202b3d; }
.timer-hint.is-running { animation: pill-travel 20s linear forwards; }
.service-timer-pill .timer-track { width: 100%; height: .45rem; margin: 0; background: #e6eaf0; }
@keyframes pill-travel { from { left: 0; transform: translateX(0); } to { left: 100%; transform: translateX(-100%); } }
@keyframes timer-progress { to { width: 100%; } }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.card-grid.is-sequenced { grid-template-columns: minmax(0, 42rem); justify-content: center; }
.card-grid.is-sequenced .service-card { min-height: 22rem; padding: clamp(1.5rem, 4vw, 2.5rem); }
.service-selector-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .65rem; margin-top: 1rem; }
.service-selector { min-height: 3.5rem; display: flex; align-items: center; gap: .55rem; padding: .65rem .75rem; border: 1px solid #d9dfe6; border-radius: .75rem; background: #f8f9fa; color: #303a48; font-weight: 750; text-align: left; cursor: pointer; box-shadow: 0 .15rem .45rem rgba(17,45,42,.04); transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease; }
.service-selector:hover { transform: translateY(-.12rem); border-color: var(--brand); }
.service-selector.is-active { border-color: #2677c9; background: white; box-shadow: 0 0 0 2px rgba(38,119,201,.2), 0 .3rem .8rem rgba(17,45,42,.1); }
.service-selector .selector-emoji { flex: 0 0 auto; font-size: 1.15rem; }
.service-card { position: relative; min-height: 10.5rem; padding: 1.35rem; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, white 55%, #f0f8f6); box-shadow: 0 .25rem 1rem rgba(17,45,42,.04); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.service-card::after { content: ""; position: absolute; right: -2.5rem; bottom: -2.5rem; width: 7rem; height: 7rem; border-radius: 50%; background: rgba(8,125,114,.07); transition: transform .25s ease; }
.service-card:hover, .service-card:focus-within { transform: translateY(-.45rem) scale(1.01); border-color: var(--brand); box-shadow: var(--shadow); }
.service-card:hover::after { transform: scale(1.3); }
.service-card > * { position: relative; z-index: 1; }
.service-card p { color: var(--muted); font-size: .9rem; }
.service-card .card-emoji { margin-bottom: .9rem; }
.service-card-details { padding-top: .75rem; border-top: 1px solid var(--line); }
.service-card-details[hidden] { display: none; }
.read-more-button { display: inline-flex; align-items: center; gap: .35rem; margin-top: .35rem; padding: .35rem 0; border: 0; background: transparent; color: var(--brand-dark); font-weight: 800; cursor: pointer; text-decoration: underline; text-decoration-color: rgba(7,91,84,.3); text-underline-offset: .22em; }
.read-more-button::after { content: "↓"; transition: transform .18s ease; }
.read-more-button[aria-expanded="true"]::after { transform: rotate(180deg); }
.service-card.is-expanded { border-color: var(--brand); box-shadow: var(--shadow); }

.split-content { display: grid; grid-template-columns: 1.25fr .75fr; align-items: center; gap: clamp(2rem, 7vw, 6rem); }
.check-list { margin: 0; padding: 2rem; border-radius: var(--radius); background: white; box-shadow: var(--shadow); list-style: none; }
.check-list li { position: relative; padding: .8rem 0 .8rem 2rem; border-bottom: 1px solid var(--line); }
.check-list li:last-child { border: 0; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--brand); font-weight: 900; }

.milestones { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin: 3rem 0 0; padding: 0; list-style: none; counter-reset: milestone; }
.milestones li { position: relative; padding: 1.5rem; border-top: 3px solid var(--brand); background: var(--tint); }
.milestones span { display: inline-block; margin-bottom: 2rem; color: var(--brand); font-size: .8rem; font-weight: 850; letter-spacing: .1em; }
.milestones p { color: var(--muted); }

.consultation-section { background: var(--ink); color: white; }
.consultation-section .eyebrow { color: #78d3c9; }
.consultation-grid { display: grid; grid-template-columns: minmax(0, 42rem); gap: clamp(2rem, 6vw, 5rem); }
.booking-placeholder { display: grid; gap: 1.25rem; padding: clamp(1.25rem, 4vw, 2.25rem); border-radius: var(--radius); background: white; color: var(--ink); }
.consultation-window { position: fixed; z-index: 40; right: 1.25rem; bottom: 1.25rem; width: min(32rem, calc(100vw - 2rem)); height: min(36rem, calc(100dvh - 2rem)); min-height: 0; grid-template-rows: auto auto auto minmax(0, 1fr) auto auto; align-content: stretch; gap: 0; padding: 0; overflow: hidden; border: 1px solid #d9dde4; border-radius: 1.25rem; background: #f4f5f7; box-shadow: 0 1.5rem 4rem rgba(0,0,0,.3); }
.consultation-window[hidden], .assistant-open[hidden], .assistant-step[hidden] { display: none !important; }
.assistant-header { display: flex; align-items: center; gap: .75rem; min-height: 5.5rem; padding: 1rem 1.25rem; background: #101827; color: #f7f8fb; }
.assistant-header > div { display: grid; gap: .3rem; }
.assistant-header strong { font-size: clamp(1.25rem, 2.5vw, 1.75rem); line-height: 1.15; }
.assistant-kicker { color: #9da6b6; font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; font-size: .86rem; letter-spacing: .08em; }
.assistant-close { margin-left: auto; padding: .4rem; border: 0; background: transparent; color: #a9b0bd; font-size: 2rem; font-weight: 300; line-height: 1; cursor: pointer; }
.assistant-close:hover { color: white; }
.assistant-open { position: fixed; z-index: 40; right: 1.25rem; bottom: 1.25rem; }
.assistant-progress { height: .3rem; margin: 1.2rem 2rem 0; overflow: hidden; border-radius: 99rem; background: #dfe3e8; }
.assistant-progress span { display: block; width: 16.67%; height: 100%; border-radius: inherit; background: var(--brand); transition: width .25s ease; }
.step-count { margin: .45rem 2rem 0; color: #788190; font-size: .75rem; font-weight: 750; text-align: right; }
.assistant-step { min-width: 0; margin: 0; padding: 1.25rem 1.5rem 1.5rem; overflow-y: auto; border: 0; animation: assistant-step-in .22s ease both; }
.assistant-step:not(fieldset) { display: flex; flex-direction: column; }
.assistant-step > input { margin-top: auto !important; }
.assistant-step legend { width: 100%; margin-bottom: 1rem; font-size: 1.3rem; font-weight: 850; line-height: 1.25; }
.assistant-message { position: relative; max-width: 38rem; margin-bottom: 1.1rem; padding: 1.35rem 1.5rem; border: 1px solid #dfe3e8; border-radius: 1.35rem; background: white; box-shadow: 0 .18rem .4rem rgba(16,24,39,.14); }
.assistant-message h3 { margin-bottom: 0; font-size: clamp(1.2rem, 2.3vw, 1.55rem); font-weight: 500; line-height: 1.35; }
.assistant-message p { margin-bottom: .45rem; color: #263244; font-size: clamp(.96rem, 1.8vw, 1.12rem); }
.assistant-message p:last-child { margin-bottom: 0; }
.assistant-complete { padding-block: 2rem; text-align: center; }
.assistant-complete h3 { margin-bottom: .7rem; }
.choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem; }
.choice-grid label { position: relative; cursor: pointer; }
.choice-grid input { position: absolute; opacity: 0; pointer-events: none; }
.choice-grid label span { min-height: 7rem; display: grid; align-content: center; gap: .35rem; padding: 1rem; border: 1px solid var(--line); border-radius: .8rem; background: white; text-align: center; transition: border-color .18s ease, background .18s ease, transform .18s ease; }
.choice-grid label:hover span { transform: translateY(-.15rem); border-color: var(--brand); }
.choice-grid input:focus-visible + span { outline: 3px solid var(--accent); outline-offset: 3px; }
.choice-grid input:checked + span { border-color: var(--brand); background: var(--tint); box-shadow: inset 0 0 0 2px var(--brand); }
.choice-grid input:checked + span::after { content: "✓ Selected"; color: var(--brand-dark); font-size: .72rem; font-weight: 850; }
.choice-grid small { color: var(--muted); line-height: 1.35; }
.card-emoji { display: inline-grid; width: 2.8rem; height: 2.8rem; place-items: center; border-radius: .8rem; background: var(--tint); font-size: 1.45rem; font-style: normal; line-height: 1; }
.choice-grid .card-emoji { margin-inline: auto; }
.segment-grid { grid-template-columns: repeat(2, 1fr); max-height: 23rem; margin-top: 1rem; padding: .15rem; overflow-y: auto; }
.segment-grid label span { min-height: 5.5rem; }
.segment-reveal { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid #dfe3e8; }
.segment-reveal h3 { margin-bottom: .35rem; }
#other-segment-wrap { margin-top: 1rem; }
#other-segment-wrap label { font-weight: 800; }
.assistant-controls { display: flex; justify-content: flex-end; gap: .75rem; min-height: 4.8rem; padding: .65rem 1rem; border-top: 1px solid #e0e3e8; background: rgba(255,255,255,.72); }
.assistant-controls .button { min-width: 7.5rem; background: #101827; font-size: 1.05rem; }
.assistant-controls .button:hover { background: #202b3d; }
.assistant-back { min-height: 3rem; padding: .7rem 1rem; border: 1px solid var(--line); border-radius: .7rem; background: white; color: var(--ink); font-weight: 750; cursor: pointer; }
.assistant-feedback { min-height: 1.5rem; margin: 0; padding: 0 1.5rem .7rem; background: rgba(255,255,255,.72); color: var(--brand-dark); font-size: .85rem; font-weight: 700; }
@keyframes assistant-step-in { from { opacity: 0; transform: translateX(1rem); } }
.booking-placeholder fieldset { margin: 0; padding: 0; border: 0; }
.booking-placeholder legend, .booking-placeholder > label { margin-bottom: .65rem; font-weight: 800; }
.choice-row { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: .65rem; }
.choice-row label { padding: .7rem .85rem; border: 1px solid var(--line); border-radius: .65rem; cursor: pointer; }
.booking-placeholder input[type="text"], .booking-placeholder input[type="email"], .booking-placeholder input[type="tel"], .booking-placeholder input[type="date"], .booking-placeholder select { width: 100%; min-height: 4.7rem; margin-top: .45rem; padding: .85rem 1.25rem; border: 2px solid #dfe3e8; border-radius: 1rem; background: white; color: var(--ink); font-size: 1rem; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field-grid label { font-weight: 800; }
.form-note { margin: 0; color: var(--muted); font-size: .85rem; }

.accordion { display: grid; gap: .75rem; }
.accordion details { border: 1px solid var(--line); border-radius: .75rem; background: white; }
.accordion summary { padding: 1.2rem 3rem 1.2rem 1.2rem; cursor: pointer; font-weight: 800; }
.accordion details p { padding: 0 1.2rem 1.2rem; color: var(--muted); }
.office-grid { display: grid; grid-template-columns: 1fr .65fr 1fr; align-items: center; gap: 2rem; }
.office-grid address { font-style: normal; }
.map-placeholder { min-height: 13rem; display: grid; place-items: center; padding: 1rem; border: 1px dashed var(--brand); border-radius: var(--radius); background: white; color: var(--muted); text-align: center; }
.site-footer { padding: 3rem 0; background: #071e1c; color: #d8e4e1; font-size: .88rem; }
.footer-inner { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; }

.breadcrumbs { padding-top: 1.25rem; font-size: .84rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: .4rem; margin: 0; padding: 0; list-style: none; }
.breadcrumbs li + li::before { content: "/"; margin-right: .4rem; color: var(--muted); }
.breadcrumbs [aria-current="page"] { color: var(--muted); }
.page-hero { padding: clamp(4rem, 8vw, 7rem) 0; background: linear-gradient(130deg, #f7fbfa, #e8f4f1); }
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4.7rem); }
.page-hero p:not(.eyebrow) { max-width: 48rem; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.25rem); }
.narrow-left { max-width: 64rem; margin-left: max(1rem, calc((100% - var(--max)) / 2)); }
.intent-grid, .provider-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 2.5rem; }
.intent-grid article, .provider-grid article { padding: clamp(1.3rem, 3vw, 2rem); border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 .25rem 1rem rgba(17,45,42,.04); }
.intent-grid article { border-top: 4px solid var(--brand); }
.intent-grid p, .provider-grid p, .content-note { color: var(--muted); }
.provider-grid h3 a { text-underline-offset: .2em; }
.related-links { display: grid; grid-template-columns: .8fr 1.2fr; gap: 3rem; }
.related-links ul { display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; margin: 0; padding: 0; list-style: none; }
.related-links li a { display: block; padding: 1rem; border: 1px solid var(--line); border-radius: .7rem; font-weight: 750; text-decoration: none; }
.related-links li a:hover { border-color: var(--brand); background: var(--tint); }
.consultation-banner { background: var(--ink); color: white; }
.consultation-banner .eyebrow { color: #78d3c9; }
.service-page-link { display: inline-block; margin-top: .6rem; color: var(--brand-dark); font-size: .86rem; font-weight: 800; text-underline-offset: .2em; }

@media (max-width: 62rem) {
  .header-inner { position: relative; gap: .75rem; }
  .primary-nav { order: 3; margin-left: 0 !important; }
  .nav-toggle { width: 2.75rem; height: 2.75rem; display: grid; place-items: center; padding: 0; border: 1px solid var(--line); border-radius: .65rem; background: white; cursor: pointer; }
  .nav-toggle span[aria-hidden] { width: 1.25rem; height: .9rem; border-top: 2px solid; border-bottom: 2px solid; }
  .nav-toggle span[aria-hidden]::after { content: ""; display: block; margin-top: .32rem; border-top: 2px solid; }
  .nav-list { position: absolute; top: calc(100% + 1px); right: 0; left: 0; display: none; max-height: calc(100dvh - 4.8rem); gap: 0; margin: 0 -1rem; padding: .5rem 1rem 1rem; overflow-y: auto; border-bottom: 1px solid var(--line); background: white; box-shadow: var(--shadow); }
  .nav-list.is-open { display: block; }
  .nav-list > li:not(.nav-group) > a, .nav-category { min-height: 3rem; display: flex; align-items: center; padding: .7rem .25rem; }
  .nav-group { display: grid; grid-template-columns: 1fr auto; border-bottom: 1px solid var(--line); }
  .submenu-toggle { width: 2.75rem; height: 2.75rem; display: grid; place-items: center; border: 0; background: transparent; cursor: pointer; }
  .submenu-toggle span { transition: transform .18s ease; }
  .nav-group.is-open .submenu-toggle span { transform: rotate(180deg); }
  .mega-menu { position: static; grid-column: 1 / -1; display: none; visibility: visible; padding: 0 0 .75rem; transform: none; border: 0; opacity: 1; box-shadow: none; transition: none; }
  .nav-group:hover .mega-menu, .nav-group:focus-within .mega-menu { display: none; }
  .nav-group.is-open .mega-menu { display: block; }
  .mega-menu-inner { width: 100%; display: block; }
  .mega-menu-heading { padding: .4rem 0 .8rem; border: 0; }
  .mega-menu-heading .eyebrow { display: none; }
  .mega-menu ul { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .mega-menu li a { min-height: 2.8rem; padding: .55rem; background: var(--tint); }
  .header-cta { margin-left: auto; }
  .hero-media { min-height: 34rem; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .milestones { grid-template-columns: repeat(2, 1fr); }
  .office-grid { grid-template-columns: 1fr 1fr; }
  .map-placeholder { grid-column: 1 / -1; }
  .service-selector-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 42rem) {
  .header-inner { gap: .75rem; }
  .site-header .button-small { margin-left: auto; padding-inline: .75rem; font-size: .76rem; }
  .brand span:last-child { display: none; }
  .hero-media { min-height: 32rem; }
  .hero-media { grid-template-columns: 1fr 1fr; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .card-grid, .split-content, .consultation-grid, .field-grid, .office-grid, .footer-inner { grid-template-columns: 1fr; }
  .choice-grid { grid-template-columns: 1fr; }
  .segment-grid { grid-template-columns: 1fr; max-height: 21rem; }
  .choice-grid label span { min-height: 4.5rem; }
  .service-selector-grid { grid-template-columns: 1fr; }
  .service-timer-pill { margin-inline: .5rem; }
  .consultation-window { inset: .5rem; width: auto; height: calc(100dvh - 1rem); min-height: 0; border-radius: 1.1rem; }
  .assistant-header { min-height: 5.5rem; padding: 1rem; }
  .assistant-step { padding-inline: 1rem; }
  .assistant-progress { margin-inline: 1rem; }
  .step-count { margin-right: 1rem; }
  .milestones { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .map-placeholder { grid-column: auto; }
  .mega-menu ul, .intent-grid, .provider-grid, .related-links, .related-links ul { grid-template-columns: 1fr; }
  .header-cta { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .timer-track { display: none; }
  .ticker-viewport { overflow-x: auto; }
  .ticker-track { animation: none; }
}
