:root {
  --ink: #1F2D33;
  --muted: #52666F;
  --brand: #005EB8;
  --brand-dark: #003B5C;
  --teal: #00857C;
  --accent: #D6A63C;
  --surface: #ffffff;
  --tint: #F2F7FA;
  --line: #D6E2E8;
  --radius: 1rem;
  --shadow: 0 1rem 2.5rem rgba(0, 59, 92, .10);
  --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(--teal); 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(--brand-dark); 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.5rem 0 1.75rem; transform: translateY(-.5rem); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: linear-gradient(135deg, #F7FAFC 0%, #fff 45%, #F2F7FA 100%); opacity: 0; box-shadow: 0 1.5rem 3.5rem rgba(0,59,92,.14); 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 { position: relative; width: min(calc(100% - 2rem), var(--max)); display: grid; grid-template-columns: 16.5rem 1fr; gap: 3rem; align-items: stretch; margin-inline: auto; }
.mega-menu-inner::after { content: ""; position: absolute; top: 50%; left: 16.45rem; width: 3.1rem; border-top: 2px solid #A9D9D5; }
.mega-menu-heading { position: relative; display: grid; align-content: center; gap: .55rem; min-height: 10rem; padding: 1.4rem 1.5rem; overflow: hidden; border: 1px solid rgba(255,255,255,.16); border-radius: 1rem; background: linear-gradient(145deg, var(--brand-dark), var(--brand)); color: white; box-shadow: 0 .8rem 2rem rgba(0,59,92,.22); }
.mega-menu-heading::after { content: ""; position: absolute; right: -2.8rem; bottom: -3.4rem; width: 8rem; height: 8rem; border: 1.5rem solid rgba(255,255,255,.08); border-radius: 50%; }
.mega-menu-heading .eyebrow { position: relative; z-index: 1; margin: 0; color: #BFE9E5; }
.mega-menu-heading a { position: relative; z-index: 1; max-width: 13rem; color: white; font-size: 1.05rem; line-height: 1.35; }
.mega-menu ul { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .65rem .8rem; margin: 0; padding: 0; list-style: none; counter-reset: submenu-child; }
.mega-menu ul::before { content: ""; position: absolute; top: .9rem; bottom: .9rem; left: -.05rem; border-left: 2px solid #A9D9D5; }
.mega-menu li { position: relative; counter-increment: submenu-child; }
.mega-menu li::before { content: ""; position: absolute; top: 50%; left: -.8rem; width: .8rem; border-top: 1px solid #C7E5E2; }
.mega-menu li a { min-height: 3.75rem; display: grid; grid-template-columns: 1.8rem 1fr; align-items: center; gap: .55rem; padding: .6rem .7rem; border: 1px solid #D6E2E8; border-radius: .75rem; background: rgba(255,255,255,.92); font-size: .8rem; line-height: 1.25; box-shadow: 0 .2rem .7rem rgba(0,59,92,.05); transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease, background .16s ease; }
.mega-menu li a::before { content: counter(submenu-child, decimal-leading-zero); display: grid; width: 1.75rem; height: 1.75rem; place-items: center; border-radius: .5rem; background: var(--tint); color: var(--brand-dark); font-size: .64rem; font-weight: 900; letter-spacing: .02em; }
.mega-menu li a:hover, .mega-menu li a:focus-visible { transform: translateY(-.12rem); border-color: #63BEB7; background: white; box-shadow: 0 .45rem 1rem rgba(0,59,92,.10); }

.pricing-ticker { position: sticky; z-index: 19; top: 4.8rem; overflow: hidden; border-bottom: 1px solid rgba(255,255,255,.18); background: var(--brand-dark); 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, #003B5C 0%, #00527C 100%); color: white; }
.hero-copy { padding-block: clamp(4rem, 8vw, 7rem); }
.hero-copy > p:not(.eyebrow) { max-width: 43rem; color: #DCEAF1; 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(--brand-dark); }
.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, #00857C, #003B5C); 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(0,59,92,.72), rgba(0,133,124,.08)), linear-gradient(135deg, #B8CCD7, #597684); }
.building-visual::before { content: ""; width: 75%; aspect-ratio: 1 / .72; border: .65rem solid #DDE7EC; border-bottom-width: 1.3rem; background: repeating-linear-gradient(90deg, #315B6B 0 18%, #C5D6DE 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(0,59,92,.82); 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 #3C7898; border-radius: 99rem; background: var(--brand-dark); 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(0,59,92,.22); }
.timer-hint:hover { background: var(--brand); }
.timer-hint.is-running { animation: pill-travel 20s linear forwards; }
.service-timer-pill .timer-track { width: 100%; height: .45rem; margin: 0; background: #E5ECEF; }
@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 #D8E1E6; border-radius: .75rem; background: #F7FAFC; color: #3E505A; font-weight: 750; text-align: left; cursor: pointer; box-shadow: 0 .15rem .45rem rgba(0,59,92,.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: #005EB8; background: white; box-shadow: 0 0 0 2px rgba(38,119,201,.2), 0 .3rem .8rem rgba(0,59,92,.10); }
.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%, #F2F7FA); box-shadow: 0 .25rem 1rem rgba(0,59,92,.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(0,133,124,.08); 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; }

.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(--brand-dark); 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 #D8E1E6; border-radius: 1.25rem; background: #F3F6F8; box-shadow: 0 1.5rem 4rem rgba(0,59,92,.28); }
.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: var(--brand-dark); color: #F7FAFC; }
.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: #96A6AE; 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: #A5B3BA; 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: #70818A; 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: #31424D; 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: var(--brand-dark); font-size: 1.05rem; }
.assistant-controls .button:hover { background: var(--brand); }
.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: #003B5C; 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, #003B5C 0%, #00527C 100%); color: white; }
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4.7rem); }
.page-hero p:not(.eyebrow) { max-width: 48rem; color: #DCEAF1; 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(0,59,92,.04); }
.intent-grid article { border-top: 4px solid var(--teal); }
.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(--brand-dark); 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-inner::after, .mega-menu ul::before, .mega-menu li::before { display: none; }
  .mega-menu-heading { min-height: 0; display: block; padding: .4rem 0 .8rem; border: 0; border-radius: 0; background: transparent; color: var(--ink); box-shadow: none; }
  .mega-menu-heading::after { display: none; }
  .mega-menu-heading .eyebrow { display: none; }
  .mega-menu-heading a { max-width: none; color: var(--brand-dark); font-size: .88rem; }
  .mega-menu ul { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .mega-menu li a { min-height: 3rem; padding: .55rem; background: var(--tint); box-shadow: none; }
  .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; }
}

/* v6: service directory. Scoped to preserve the surrounding site. */
.sector-tabs { margin-bottom: clamp(2rem, 4vw, 3rem); }
.sector-panel .card-grid.is-sequenced { grid-template-columns: minmax(0, 56rem); }
.sector-panel .service-card { border: 1px solid #D6E2E8; border-top: 4px solid var(--teal); border-radius: 1.25rem; background: #fff; overflow: visible; }
.sector-panel .service-card::after { content: none; }
.sector-panel .service-card:hover, .sector-panel .service-card:focus-within { transform: none; }
.sector-panel .card-grid.is-sequenced .service-card { min-height: 26rem; padding: clamp(1.5rem, 4vw, 3rem); box-shadow: 0 12px 32px rgba(0,59,92,.08); }
.sector-panel .service-card h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); line-height: 1.2; max-width: 34ch; }
.sector-panel .service-card p { max-width: 72ch; font-size: 1rem; }
.sector-panel .service-card .eyebrow { font-size: .72rem; margin-bottom: .65rem; color: var(--brand-dark); }
.sector-panel .service-card .card-emoji { display: inline-grid; place-items: center; width: 3.25rem; height: 3.25rem; border-radius: .9rem; background: var(--tint); font-size: 1.8rem; }
.sector-panel .service-card-summary { padding-top: 1rem; border-top: 1px solid var(--line); }
.sector-panel .service-page-link { display: inline-flex; align-items: center; gap: 1rem; background: var(--brand-dark); color: white; padding: .7rem 1.1rem; border-radius: .5rem; font-size: .95rem; text-decoration: none; }
.sector-panel .service-page-link:hover { background: var(--brand-dark); }
.sector-panel .service-selector { min-height: 6rem; padding: 1.1rem; background: #FFFFFF; border-radius: 1rem; line-height: 1.4; }
.sector-panel .service-selector.is-active { background: var(--tint); border-color: var(--brand); box-shadow: 0 0 0 1px var(--brand); }
.sector-panel .selector-emoji { font-size: 1.5rem; }
.sector-panel .service-selector:focus-visible, .sector-panel a:focus-visible, .service-pause:focus-visible { outline: 3px solid var(--brand-dark); outline-offset: 4px; }
.service-timer-pill { margin: 1.5rem 0 2.25rem; padding-top: 0; }
.service-timer-pill > span { text-align: left; padding-right: 10rem; min-height: 2.5rem; margin-bottom: 1.2rem; }
.service-pause { position: absolute; right: 0; top: -.4rem; padding: .45rem .7rem; min-height: 2.75rem; border: 1px solid var(--line); border-radius: .5rem; background: white; color: var(--brand-dark); cursor: pointer; }
@media (max-width: 40rem) {
  .sector-panel .card-grid.is-sequenced .service-card { min-height: 0; }
  .sector-panel .service-selector-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sector-panel .service-selector { flex-direction: column; align-items: flex-start; padding: .85rem; font-size: .85rem; }
  .service-timer-pill > span { padding-right: 0; padding-top: 3rem; }
}
@media (prefers-reduced-motion: reduce) {
  .sector-panel .service-selector, .sector-panel .service-card { transition: none; }
  .sector-panel .service-selector:hover { transform: none; }
}

/* Approved layout amendments: header only is slimmer; ticker item height is preserved. */
:root { --header-height: 3.75rem; --section-space: 2.5rem; }
html { scroll-padding-top: 8rem; }
.header-inner { min-height: var(--header-height); gap: 1.25rem; }
.nav-list { align-items: center; }
@media (min-width: 62.01rem) {
  .nav-list > li { display: flex; align-items: center; }
  .nav-list > li > a { display: flex; align-items: center; min-height: var(--header-height); padding-block: .5rem; }
  .mega-menu { top: var(--header-height); }
}
.pricing-ticker { top: calc(var(--header-height) + 1px); display: flex; align-items: stretch; }
.ticker-viewport { min-width: 0; flex: 1; }
.ticker-consultation { display: inline-flex; align-items: center; align-self: center; flex-shrink: 0; gap: .45rem; margin: 0 .65rem; padding: .2rem .8rem; border: 1px solid #63BEB7; border-radius: 99rem; background: var(--brand); color: white; font-size: .84rem; font-weight: 800; text-decoration: none; }
.section { padding-block: var(--section-space); }
.site-footer { margin-top: 1rem; padding-block: 3.5rem; }
.hero-layout { display: grid; grid-template-columns: 1.1fr 1fr; align-items: center; gap: clamp(2rem,4vw,4rem); padding-block: 3.5rem; }
.hero-copy { padding: 0; }
.hero-copy h1 { max-width: 24ch; font-size: clamp(2rem,3.5vw,3.25rem); line-height: 1.14; }
.hero-copy > p:not(.eyebrow) { font-size: 1.05rem; }
#services-title { max-width: 34ch; font-size: clamp(1.65rem,2.6vw,2.35rem); }
.hero-gallery { min-width: 0; border: 1px solid var(--line); border-radius: 1.25rem; overflow: hidden; background: white; box-shadow: var(--shadow); }
.hero-slides { position: relative; aspect-ratio: 1.25; }
.hero-slide { position: absolute; inset: 0; margin: 0; }
.hero-slide[hidden], .hero-gallery-controls[hidden] { display: none; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide figcaption { position: absolute; right: 0; bottom: 0; left: 0; padding: 1rem 1.25rem; background: rgba(0,59,92,.94); color: white; display: grid; }
.hero-slide figcaption span { font-size: .8rem; }
.hero-gallery-controls { display: flex; align-items: center; justify-content: center; gap: .6rem; padding: .6rem; }
.hero-gallery-controls button { min-height: 2.75rem; padding: .4rem .7rem; border: 1px solid var(--line); border-radius: .5rem; background: white; color: var(--brand-dark); cursor: pointer; }
.journey-section { background: #F7FAFC; }
.journey-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 3rem; }
.journey-layout h2 { font-size: clamp(1.7rem,2.8vw,2.5rem); }
.journey-steps { margin: 0; padding: 0; list-style: none; display: grid; gap: 1rem; }
.journey-steps li { display: flex; gap: 1.25rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.journey-steps li:last-child { border: 0; padding-bottom: 0; }
.journey-steps li > span { color: var(--brand-dark); font-size: .85rem; font-weight: 800; }
.journey-steps h3 { margin-bottom: .45rem; }
.journey-steps p { margin: 0; color: var(--muted); }
.office-grid { grid-template-columns: 1fr 1.5fr; align-items: start; gap: 1.5rem 3rem; }
.office-grid address { grid-column: 1; font-style: normal; }
.office-directions { grid-column: 2; grid-row: 1 / 3; padding: 1.5rem; background: white; border: 1px solid var(--line); border-radius: 1rem; }
.office-directions ol { padding-left: 1.25rem; }
.office-directions li + li { margin-top: .7rem; }
.directions-actions { display: flex; align-items: center; gap: 1rem; }
.directions-actions img { display: block; width: 150px; height: 150px; }
.assistant-open { width: 3.5rem; height: 3.5rem; padding: 0; border-radius: 50%; box-shadow: var(--shadow); font-size: 1.6rem; }
.assistant-backdrop { position: fixed; z-index: 90; inset: 0; background: rgba(0,59,92,.25); }
.consultation-window { z-index: 100; overscroll-behavior: contain; }
.assistant-step { overscroll-behavior: contain; }
@media (max-width: 62rem) { .nav-list { max-height: calc(100dvh - var(--header-height)); } }
@media (max-width: 48rem) {
  .hero-layout, .journey-layout { grid-template-columns: 1fr; gap: 2rem; }
  .hero-layout { padding-block: 3rem; }
  .hero-gallery { width: 100%; max-width: 36rem; margin-inline: auto; }
  .office-grid { grid-template-columns: 1fr; }
  .office-directions, .office-grid address { grid-column: auto; grid-row: auto; }
  .ticker-consultation { font-size: .72rem; margin-inline: .4rem; padding-inline: .55rem; }
}
@media (max-width: 26rem) { .directions-actions { align-items: flex-start; flex-direction: column; } }

/* CQC scope-note popovers: hover on desktop, tap/click via <details> on touch devices */
.scope-note { position: relative; display: inline-block; margin-top: 1rem; z-index: 4; }
.scope-note > summary { list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: .35rem; padding: .55rem .8rem; border: 1px solid var(--line); border-radius: 999px; background: #F2F7FA; color: var(--brand-dark, #003B5C); font-weight: 700; font-size: .92rem; box-shadow: 0 .2rem .8rem rgba(0,59,92,.05); }
.scope-note > summary::-webkit-details-marker { display: none; }
.scope-note > summary:hover, .scope-note > summary:focus-visible { border-color: var(--brand); outline: none; box-shadow: 0 0 0 3px rgba(0,133,124,.14); }
.scope-note-popover { display: none; position: absolute; left: 0; top: calc(100% + .55rem); width: min(34rem, calc(100vw - 2rem)); padding: 1.1rem 1.2rem; border: 1px solid var(--line); border-radius: 1rem; background: #fff; box-shadow: 0 1rem 2.5rem rgba(0,59,92,.16); color: var(--text); }
.scope-note-popover h3 { margin: 0 0 .55rem; font-size: 1.05rem; }
.scope-note-popover p { margin: .45rem 0; }
.scope-note-popover .scope-note-links { margin-top: .8rem; font-size: .9rem; }
.scope-note-popover a { font-weight: 700; }
.scope-note[open] .scope-note-popover, .scope-note:hover .scope-note-popover, .scope-note:focus-within .scope-note-popover { display: block; }
@media (max-width: 700px) {
  .scope-note { display: block; }
  .scope-note-popover { position: static; width: auto; margin-top: .55rem; }
  .scope-note:not([open]) .scope-note-popover { display: none; }
}


/* CQC focus-card regulatory references — v10 */
.cqc-reference {
  margin-top: 1rem;
  padding-top: .75rem;
  border-top: 1px solid rgba(0, 133, 124, .18);
  font-size: .78rem;
  line-height: 1.45;
  color: #52666F;
}
.cqc-reference-label {
  font-weight: 700;
  color: #00857C;
}
.cqc-reference a {
  color: #005EB8;
  font-weight: 650;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.cqc-reference a:hover, .cqc-reference a:focus-visible {
  color: #003B5C;
}

/* v12 clinical deep-blue refinements */
.hero .eyebrow, .page-hero .eyebrow { color: #8EDDD6; }
.hero .text-link, .page-hero .text-link { color: #D5F2EF; }
.hero .text-link:hover, .page-hero .text-link:hover { color: #FFFFFF; }
.hero .button:hover, .page-hero .button:hover { background: var(--teal); }


/* v13 sleek horizontal information cards */
.section-heading-row { display:flex; align-items:end; justify-content:space-between; gap:1.5rem; margin-bottom:1.25rem; }
.section-heading-row h2 { margin-bottom:0; }
.sleek-card-row { display:grid; gap:1rem; }
.sleek-card-row-4 { grid-template-columns:repeat(4,minmax(0,1fr)); }
.sleek-card-row-3 { grid-template-columns:repeat(3,minmax(0,1fr)); }
.sleek-card-row-2 { grid-template-columns:repeat(2,minmax(0,1fr)); }
.sleek-card { position:relative; min-width:0; padding:1.15rem 1.2rem 1.15rem 3.7rem; border:1px solid var(--line); border-top:3px solid var(--teal); border-radius:1rem; background:#fff; box-shadow:0 .45rem 1.2rem rgba(0,59,92,.06); }
.sleek-card .sleek-number { position:absolute; left:1rem; top:1.1rem; color:var(--brand); font-weight:800; font-size:.84rem; letter-spacing:.04em; }
.sleek-card h3 { margin:0 0 .45rem; font-size:1rem; color:var(--brand-dark); }
.sleek-card p { margin:0; color:var(--muted); font-size:.92rem; line-height:1.55; }
.detailed-scope-grid .sleek-card { min-height:8.25rem; }
.assessment-strip-section { background:#fff; }
.review-scope-section { background:#fff; }
.why-us-section .sleek-card { box-shadow:none; }
@media (max-width:70rem) { .sleek-card-row-4 { grid-template-columns:repeat(2,minmax(0,1fr)); } .sleek-card-row-3 { grid-template-columns:repeat(2,minmax(0,1fr)); } }
@media (max-width:44rem) { .section-heading-row { align-items:flex-start; flex-direction:column; } .sleek-card-row-4,.sleek-card-row-3,.sleek-card-row-2 { grid-template-columns:1fr; } .sleek-card { padding-left:3.5rem; } }

/* v14: homepage card treatment and deep-blue Tolworth office band */
.journey-section { background: #F7FAFC; }
.journey-section .section-intro { max-width: 52rem; }
.journey-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}
.journey-card-grid li {
  min-height: 10.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 1rem;
  padding: clamp(1.3rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-top: 4px solid var(--teal);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 .25rem 1rem rgba(0,59,92,.04);
}
.journey-card-grid li:last-child {
  grid-column: 1 / -1;
  min-height: auto;
  border-bottom: 1px solid var(--line);
  padding: clamp(1.3rem, 3vw, 2rem);
}
.journey-card-grid li > span {
  display: inline-grid;
  place-items: center;
  min-width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: var(--tint);
  color: var(--brand-dark);
  font-size: .82rem;
  font-weight: 850;
}
.journey-card-grid h3 { margin: .15rem 0 .45rem; }
.journey-card-grid p { margin: 0; color: var(--muted); }

#office {
  background: var(--brand-dark);
  color: #fff;
}
#office .eyebrow { color: #78D3C9; }
#office h2,
#office p,
#office address { color: #fff; }
#office .office-directions {
  background: #fff;
  color: var(--text);
  border-color: rgba(255,255,255,.35);
  box-shadow: 0 1rem 2.5rem rgba(0,34,54,.18);
}
#office .office-directions h3,
#office .office-directions p,
#office .office-directions li { color: var(--text); }
#office .office-directions .text-link { color: var(--brand-dark); }

@media (max-width: 48rem) {
  .journey-card-grid { grid-template-columns: 1fr; }
  .journey-card-grid li:last-child { grid-column: auto; }
}


/* v15: compact clinical polish, borderless hero media, pill CTAs, reference-style directions */
/* Tighter site-wide heading scale for a cleaner clinical hierarchy */
h1 { max-width: 24ch; font-size: clamp(2.15rem, 4.6vw, 4.3rem); }
h2 { max-width: 30ch; font-size: clamp(1.7rem, 3.2vw, 2.8rem); }
.page-hero h1 { max-width: 28ch; font-size: clamp(2rem, 3.8vw, 3.65rem); }
.hero-copy h1 { max-width: 27ch; font-size: clamp(1.9rem, 3vw, 2.8rem); }
#services-title { max-width: 40ch; font-size: clamp(1.55rem, 2.3vw, 2.15rem); }
.section-heading-row h2 { max-width: 34ch; }

/* Remove the framed look from the Argent House hero media */
.hero-gallery {
  border: 0;
  border-radius: 1.05rem;
  background: transparent;
  box-shadow: 0 .9rem 2.1rem rgba(0,34,54,.18);
}
.hero-slide { border: 0; }

/* Slimmer cards and controls */
.sleek-card { padding: .9rem 1rem .9rem 3.35rem; border-radius: .85rem; }
.sleek-card .sleek-number { top: .86rem; left: .9rem; }
.sleek-card h3 { margin-bottom: .3rem; }
.sleek-card p { font-size: .88rem; line-height: 1.45; }
.detailed-scope-grid .sleek-card { min-height: 6.5rem; }
.journey-card-grid { gap: .8rem; margin-top: 1.8rem; }
.journey-card-grid li,
.journey-card-grid li:last-child {
  min-height: 7.4rem;
  padding: 1rem 1.15rem;
  border-top-width: 3px;
  border-radius: .85rem;
}
.journey-card-grid li > span { min-width: 2.1rem; height: 2.1rem; font-size: .75rem; }
.journey-card-grid h3 { margin: .05rem 0 .3rem; }
.journey-card-grid p { font-size: .9rem; line-height: 1.48; }
.intent-grid article, .provider-grid article { padding: 1rem 1.1rem; }
.service-card { padding: 1.05rem; }
.sector-panel .card-grid.is-sequenced .service-card { min-height: 20.5rem; padding: clamp(1.25rem, 2.5vw, 2rem); }
.sector-panel .service-selector { min-height: 4.5rem; padding: .72rem .82rem; border-radius: .8rem; }
.sector-tab { padding: .75rem .9rem; }
.button { min-height: 2.75rem; padding: .68rem 1.05rem; }
.button-small { min-height: 2.45rem; }

/* Key inline CTAs become compact, gently pulsing pills */
.pulse-pill-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  min-height: 2.35rem;
  padding: .48rem .85rem;
  border: 1px solid rgba(0,94,184,.24);
  border-radius: 999px;
  background: #fff;
  color: var(--brand-dark);
  font-size: .84rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: 0 .2rem .8rem rgba(0,59,92,.08);
  animation: clinical-pill-pulse 2.6s ease-in-out infinite;
}
.pulse-pill-link:hover { background: var(--brand); color: #fff; border-color: var(--brand); animation-play-state: paused; }
@keyframes clinical-pill-pulse {
  0%,100% { box-shadow: 0 .2rem .8rem rgba(0,59,92,.08), 0 0 0 0 rgba(0,133,124,.15); transform: translateY(0); }
  50% { box-shadow: 0 .35rem 1rem rgba(0,59,92,.12), 0 0 0 .28rem rgba(0,133,124,.06); transform: translateY(-1px); }
}
@media (prefers-reduced-motion: reduce) { .pulse-pill-link { animation: none; } }
.hero .pulse-pill-link, .page-hero .pulse-pill-link {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.35);
  color: #fff;
}
.hero .pulse-pill-link:hover, .page-hero .pulse-pill-link:hover { background: #fff; color: var(--brand-dark); }

/* Reference-inspired Tolworth directions panel: same content, cleaner hierarchy */
#office { padding-block: clamp(3rem, 6vw, 5rem); }
#office .office-shell {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 1.55rem;
  background: linear-gradient(145deg, #07152E 0%, #003B5C 100%);
  box-shadow: 0 1rem 2.5rem rgba(0,34,54,.2);
}
#office .office-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 1.4rem;
}
#office .office-top h2 { max-width: 26ch; margin-bottom: .7rem; }
#office .office-top p { max-width: 48rem; color: #DCEAF1; }
#office .office-address-line {
  display: inline-block;
  margin-top: .4rem;
  color: #fff;
  font-style: normal;
  font-weight: 750;
  line-height: 1.5;
}
#office .office-qr-card {
  width: 8.5rem;
  display: grid;
  place-items: center;
  gap: .55rem;
  padding: .85rem;
  border-radius: 1rem;
  background: #fff;
  color: var(--brand-dark);
  text-decoration: none;
  text-align: center;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}
#office .office-qr-card img { width: 6.2rem; height: 6.2rem; display: block; }
#office .office-directions {
  display: grid;
  grid-template-columns: 1.5fr .65fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.25rem 1.4rem;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 1.1rem;
  background: rgba(255,255,255,.045);
  box-shadow: none;
}
#office .office-directions h3 { color: #fff; margin-bottom: .7rem; }
#office .office-directions ol { margin: 0; padding-left: 1.2rem; color: #DCEAF1; }
#office .office-directions li { color: #DCEAF1; line-height: 1.5; }
#office .office-directions li + li { margin-top: .45rem; }
#office .office-direction-actions { display: grid; gap: .7rem; }
#office .office-direction-actions .pulse-pill-link { justify-content: center; background: #fff; color: var(--brand-dark); border-color: #fff; animation-duration: 3.2s; }
#office .office-direction-actions .pulse-pill-link:hover { background: #DCEAF1; }

/* Lower-page polish */
#faqs { padding-bottom: clamp(3rem, 5vw, 4.5rem); }
#faqs details { border-radius: .8rem; }

@media (max-width: 48rem) {
  h2 { max-width: 100%; }
  #office .office-top, #office .office-directions { grid-template-columns: 1fr; }
  #office .office-qr-card { width: 7.5rem; }
  #office .office-qr-card img { width: 5.5rem; height: 5.5rem; }
  .sector-panel .service-selector { min-height: 3.8rem; padding: .65rem .72rem; }
  .journey-card-grid li, .journey-card-grid li:last-child { min-height: 0; }
}


/* v16: active primary-navigation pill and consolidated Tolworth location panel */
@media (min-width: 62.01rem) {
  .nav-list > li > a {
    padding: .52rem .78rem;
    border-radius: 999px;
    transition: background-color .16s ease, color .16s ease, box-shadow .16s ease;
  }
  .nav-list > li > a:hover,
  .nav-list > li > a:focus-visible {
    background: #F2F7FA;
    color: var(--brand-dark);
  }
  .nav-list > li > a.is-current-section {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 .25rem .8rem rgba(0,94,184,.20);
  }
  .nav-list > li > a.is-current-section:hover,
  .nav-list > li > a.is-current-section:focus-visible {
    background: var(--brand-dark);
    color: #fff;
  }
}
@media (max-width: 62rem) {
  .nav-list > li > a.is-current-section,
  .nav-category.is-current-section {
    background: var(--tint);
    color: var(--brand-dark);
    font-weight: 850;
  }
}

#office .office-shell {
  background: linear-gradient(145deg, #07152E 0%, #003B5C 68%, #004B70 100%);
}
#office .office-top {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  margin-bottom: 1.65rem;
}
#office .office-top h2 {
  max-width: 34ch;
  margin-bottom: .55rem;
  font-size: clamp(1.55rem, 2.7vw, 2.35rem);
}
#office .office-top p { margin-bottom: .55rem; }
#office .office-address-line {
  display: block;
  margin-top: .55rem;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
}
#office .office-qr-card {
  width: 9rem;
  padding: 1rem .9rem;
  box-shadow: 0 .5rem 1.4rem rgba(0,0,0,.16);
}
#office .office-directions {
  grid-template-columns: minmax(0, 1.7fr) minmax(13rem, .55fr);
  padding: 1.45rem 1.55rem;
  border-color: rgba(255,255,255,.16);
  background: rgba(5,18,43,.44);
}
#office .office-directions h3 {
  display: flex;
  align-items: center;
  gap: .45rem;
  margin-bottom: .75rem;
}
#office .office-direction-actions .pulse-pill-link {
  min-height: 3rem;
  padding-inline: 1rem;
}


/* v17: verified compact layout, explicit navigation pills, true borderless hero */
:root { --section-space: 1.55rem; }

/* Hero media: remove every remaining frame cue rather than only the border. */
.hero-gallery {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: hidden;
}
.hero-slides, .hero-slide { border: 0 !important; border-radius: 0 !important; box-shadow: none !important; }

/* Smaller heading scale site-wide, with practical one-line widths on desktop. */
h1 { max-width: 32ch; font-size: clamp(1.9rem, 3.6vw, 3.45rem); line-height: 1.08; }
h2 { max-width: 42ch; font-size: clamp(1.45rem, 2.45vw, 2.25rem); line-height: 1.12; }
.page-hero h1 { max-width: 34ch; font-size: clamp(1.85rem, 3vw, 2.95rem); }
.hero-copy h1 { max-width: 31ch; font-size: clamp(1.8rem, 2.65vw, 2.55rem); }
.section-heading-row h2, #services-title { max-width: 46ch; }

/* Make cards materially shorter and tighter. */
.sleek-card { padding: .66rem .82rem .66rem 2.95rem; border-radius: .72rem; }
.sleek-card .sleek-number { left: .78rem; top: .66rem; font-size: .76rem; }
.sleek-card h3 { margin-bottom: .18rem; font-size: .94rem; }
.sleek-card p { font-size: .82rem; line-height: 1.35; }
.detailed-scope-grid .sleek-card { min-height: 5.25rem; }
.journey-card-grid { gap: .58rem; margin-top: 1rem; }
.journey-card-grid li, .journey-card-grid li:last-child { min-height: 5.55rem; padding: .72rem .84rem; gap: .72rem; border-radius: .72rem; }
.journey-card-grid li > span { min-width: 1.82rem; height: 1.82rem; font-size: .68rem; }
.journey-card-grid h3 { margin: 0 0 .18rem; font-size: .95rem; }
.journey-card-grid p { font-size: .82rem; line-height: 1.36; }
.intent-grid article, .provider-grid article { padding: .72rem .82rem; }
.intent-grid article h3, .provider-grid article h3 { margin-bottom: .25rem; }
.intent-grid article p, .provider-grid article p { line-height: 1.38; }
.service-card { min-height: 8.25rem; padding: .78rem .86rem; }
.service-card .card-emoji { margin-bottom: .48rem; }
.service-card p { font-size: .82rem; line-height: 1.35; }
.sector-panel .card-grid.is-sequenced .service-card { min-height: 15.75rem; padding: 1rem 1.1rem; }
.sector-panel .service-card-summary { padding-top: .58rem; }
.sector-panel .service-selector { min-height: 3.2rem; padding: .46rem .6rem; }
.sector-tab { padding: .58rem .72rem; }

/* Consistent compact action pills, including the homepage Inspect card. */
.card-action-pill { margin-top: .5rem; }

/* Tighter, consistent section rhythm; adjacent sections no longer create large blank bands. */
.section { padding-block: var(--section-space); }
.section + .section { margin-top: 0; }
.assessment-strip-section, .review-scope-section, .why-us-section { padding-block: 1.35rem; }
#cqc-services + .assessment-strip-section { padding-top: .85rem; }
#faqs { padding-top: 1.25rem; padding-bottom: 1.35rem; }

/* Consultation band: copy left, long CTA right, minimal vertical bulk. */
.consultation-section { padding-block: 1.35rem; }
.consultation-grid { grid-template-columns: minmax(0,1fr) auto; align-items: center; gap: 1.5rem; }
.consultation-copy h2 { margin-bottom: .4rem; }
.consultation-copy p:last-of-type { margin-bottom: 0; }
.consultation-primary-cta { min-width: 19rem; justify-content: center; white-space: nowrap; }

/* Remove visual gap before FAQs. */
.consultation-section + #faqs { margin-top: 0; }

/* Bottom return navigation on internal pages. */
.return-navigation { padding: .8rem 0 1rem; background: #fff; }
.return-navigation-inner { display: flex; flex-wrap: wrap; gap: .65rem; justify-content: flex-start; }
.return-pill { min-width: 12rem; justify-content: center; }

/* Keep the Tolworth panel compact while making station directions explicit. */
#office { padding-block: 1.55rem; }
#office .office-shell { padding: 1.15rem 1.2rem; }
#office .office-top { margin-bottom: .9rem; }
#office .office-directions { padding: 1rem 1.1rem; gap: 1rem; }
#office .office-directions li { line-height: 1.38; }
#office .office-directions li + li { margin-top: .3rem; }

@media (max-width: 48rem) {
  :root { --section-space: 1.25rem; }
  h1, h2, .page-hero h1, .hero-copy h1 { max-width: 100%; }
  .consultation-grid { grid-template-columns: 1fr; }
  .consultation-primary-cta { min-width: 0; width: 100%; }
  .return-navigation-inner { display: grid; grid-template-columns: 1fr; }
  .return-pill { width: 100%; }
  .sector-panel .card-grid.is-sequenced .service-card { min-height: 0; }
}

/* v19 per-component verification helpers; inline styles are authoritative */
.hero-gallery,.hero-slides,.hero-slide{border:0!important;box-shadow:none!important;border-radius:0!important;background:transparent!important;}
@media(max-width:48rem){.consultation-grid{grid-template-columns:1fr!important}.consultation-primary-cta,.consultation-copy{grid-column:1!important;grid-row:auto!important;width:100%;min-width:0!important}.office-top,.office-directions{grid-template-columns:1fr!important}.return-navigation-inner{display:grid!important;grid-template-columns:1fr!important}.return-pill{width:100%;}}
