/* King Security Solutions — shared visual system.
   Sections, type and controls share the same scale across all ten public pages. */
:root {
  --ink: #172c42;
  --muted: #536171;
  --blue: #255c91;
  --blue-dark: #19466f;
  --navy: #142b42;
  --paper: #ffffff;
  --surface: #f4f6f7;
  --line: #dce2e7;
  --emergency-red: #b91c1c;
  --emergency-red-dark: #941313;
  --review-gold: #a86600;
  --font: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --content-width: 1200px;
  --section-space: clamp(56px, 6.7vw, 96px);
  --radius: 4px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body { margin: 0; color: var(--ink); background: var(--paper); font: 400 16px/1.65 var(--font); -webkit-font-smoothing: antialiased; }
button, input, select, textarea { font: inherit; }
button, summary { cursor: pointer; }
a { color: var(--blue); text-underline-offset: 4px; }
a:hover { color: var(--blue-dark); }
img { display: block; max-width: 100%; height: auto; }
figure { margin: 0; }
h1, h2, h3, h4, p { margin: 0; }
h1, h2, h3, h4 { color: var(--ink); font-weight: 600; line-height: 1.15; }
h1 { font-size: clamp(2.15rem, 3.7vw, 3.35rem); letter-spacing: -.04em; text-wrap: balance; }
h2 { font-size: clamp(1.8rem, 2.65vw, 2.55rem); letter-spacing: -.035em; text-wrap: balance; }
h3 { font-size: 1.2rem; letter-spacing: -.015em; line-height: 1.3; }
p { color: var(--muted); }
p + p { margin-top: 16px; }
:where(a, button, summary, input, select, textarea, [tabindex]):focus-visible { outline: 3px solid #a17120; outline-offset: 5px; }
[hidden] { display: none !important; }
.wrap { width: min(var(--content-width), calc(100% - 80px)); margin-inline: auto; }
.section { padding-block: var(--section-space); }
.section-kicker, .eyebrow, .service-product-placeholder-kicker { display: block; margin-bottom: 18px; color: var(--blue); font-size: .72rem; font-weight: 700; line-height: 1.5; letter-spacing: .14em; text-transform: uppercase; }
.section-header { max-width: 720px; margin-bottom: 36px; }
.section-header p { margin-top: 20px; }
.section-header.center { max-width: 760px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 3000; padding: 12px 18px; color: white; background: var(--navy); transform: translateY(-200%); }
.skip-link:focus { transform: translateY(0); }

/* Navigation and shared actions */
.masthead { position: sticky; top: 0; z-index: 1100; background: #fff; border-bottom: 1px solid var(--line); }
.navrow { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 94px; }
.brand { flex-shrink: 0; display: flex; align-items: center; text-decoration: none; }
.brandmark { display: block; width: 230px; }
.brandmark img { width: 100%; }
.navlinks { display: flex; align-items: center; gap: 28px; }
.navlinks > a, .nav-dropdown summary { display: flex; align-items: center; min-height: 44px; color: var(--ink); font-size: .875rem; font-weight: 500; text-decoration: none; white-space: nowrap; }
.navlinks a:hover, .nav-dropdown summary:hover, .navlinks [aria-current="page"] { color: var(--blue); }
.navlinks > a[aria-current="page"] { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 9px; }
.nav-dropdown { position: relative; }
.nav-dropdown summary { gap: 10px; list-style: none; }
summary::-webkit-details-marker { display: none; }
.nav-dropdown summary::after { content: ""; width: 6px; height: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); }
.nav-dropdown[open] summary::after { transform: rotate(225deg); }
.nav-dropdown-menu { position: absolute; top: calc(100% + 10px); left: -20px; width: 240px; padding: 10px; background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 12px 30px #142b4214; }
.nav-dropdown-menu a { display: block; padding: 11px 12px; color: var(--ink); font-size: .9rem; text-decoration: none; }
.nav-dropdown-menu a:hover, .nav-dropdown-menu a[aria-current="page"] { color: var(--blue); background: var(--surface); }
.top-actions { display: flex; align-items: center; gap: 22px; }
.phone-link { color: var(--ink); text-decoration: none; white-space: nowrap; line-height: 1.4; }
.phone-label { display: block; color: var(--muted); font-size: .7rem; }
.phone-number { display: block; font-size: .88rem; font-weight: 600; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 48px; padding: 12px 22px; border: 1px solid transparent; border-radius: var(--radius); color: white; background: var(--blue); font-size: .9rem; font-weight: 600; line-height: 1.4; text-align: center; text-decoration: none; transition: background-color .18s ease, border-color .18s ease, color .18s ease; }
.button:hover { color: white; background: var(--blue-dark); }
.button.ghost, .button.services { color: var(--blue); border-color: #aab9c7; background: transparent; }
.button.ghost:hover, .button.services:hover { color: var(--blue-dark); background: #e9eff4; border-color: var(--blue); }
.button.emergency-service { background: var(--emergency-red); border-color: var(--emergency-red); }
.button.emergency-service:hover { background: var(--emergency-red-dark); border-color: var(--emergency-red-dark); }
.button.block { width: 100%; }
.navlinks .menu-quote, .mobile-menu-toggle { display: none; }
.hero-actions, .cta-banner-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }

/* Homepage: clear introduction, real installation imagery, direct service navigation. */
.hero { background: var(--surface); }
.hero > .wrap { display: grid; grid-template-columns: 1.08fr 1fr; align-items: center; gap: 56px; padding-block: 64px; }
.hero-copy { padding-block: 10px; }
.hero h1 { max-width: 620px; font-size: clamp(2.2rem, 3.5vw, 3.15rem); }
.hero .lede { margin-top: 24px; max-width: 570px; font-size: 1.05rem; }
.hero .hero-actions { margin-top: 30px; }
.hero-service-area { margin-top: 28px; max-width: 420px; padding-top: 20px; border-top: 1px solid var(--line); font-size: .79rem; line-height: 1.6; }
.hero-visual { align-self: center; min-width: 0; }
/* Crop the empty sides while keeping all four team members in view. */
.hero-visual img { width: 100%; height: auto; aspect-ratio: 1.1; object-fit: cover; object-position: 60% center; border-radius: var(--radius); }
.quick-services { padding-block: 50px 64px; border-bottom: 1px solid var(--line); }
.quick-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); column-gap: 36px; }
.quick-link { display: block; position: relative; padding: 25px 24px 25px 0; border-top: 1px solid var(--line); color: var(--ink); text-decoration: none; }
.quick-link strong { display: flex; align-items: center; gap: 13px; font-size: 1.02rem; font-weight: 600; line-height: 1.4; }
.quick-link svg { width: 23px; height: 23px; flex-shrink: 0; color: var(--blue); }
.quick-link > span { display: block; margin-top: 12px; color: var(--muted); font-size: .88rem; line-height: 1.65; }
.quick-link::after { content: "↗"; position: absolute; top: 25px; right: 0; color: var(--blue); font-size: 1rem; }
.quick-link:hover strong { color: var(--blue); text-decoration: underline; text-underline-offset: 4px; }
.local-layout, .about-local-layout { display: grid; grid-template-columns: 1fr 1.15fr; gap: 72px; align-items: center; }
.local-copy .section-header { margin: 0; }
.local-photo img { width: 100%; aspect-ratio: 1.55; object-fit: cover; object-position: 42% center; border-radius: var(--radius); }

/* Product spotlight: one integrated brand and product presentation. */
.usa-band { background: var(--surface); }
.product-spotlight { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.product-spotlight-copy h2 { max-width: 520px; }
.product-spotlight-copy > p { margin-top: 24px; max-width: 510px; }
.product-capabilities { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px 24px; list-style: none; margin: 28px 0; padding: 0; font-size: .88rem; font-weight: 500; }
.product-capabilities li { display: flex; align-items: baseline; gap: 10px; }
.product-capabilities li::before { content: ""; width: 6px; height: 6px; flex: 0 0 6px; border-radius: 50%; background: var(--blue); }
.product-spotlight-link { display: inline-flex; align-items: center; gap: 14px; font-size: .9rem; font-weight: 600; text-decoration-thickness: 1px; }
.product-feature { min-width: 0; background: white; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.product-feature-brand { display: flex; align-items: center; gap: 24px; margin: 0 32px; padding-block: 24px; border-bottom: 1px solid var(--line); }
/* The source logo includes generous transparent padding. */
.product-brand-logo { position: relative; flex: 0 0 112px; height: 44px; overflow: hidden; }
.product-brand-logo img { position: absolute; width: 216px; max-width: none; height: 108px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.product-feature-brand > span { max-width: 175px; color: var(--muted); font-size: .8rem; line-height: 1.5; }
.product-feature-image { padding: 8px 32px; }
.product-feature-image img { width: 100%; max-width: 440px; height: auto; margin-inline: auto; }
.product-feature-caption { display: flex; flex-direction: column; gap: 3px; padding: 20px 32px; border-top: 1px solid var(--line); }
.product-feature-caption > span:first-child { font-size: .93rem; font-weight: 600; }
.product-feature-caption > span:last-child { color: var(--muted); font-size: .8rem; }

/* Interior pages use a calm, editorial introduction instead of repeated photo overlays. */
.page-hero { padding-block: 54px 64px; background: var(--surface); border-bottom: 1px solid var(--line); }
.page-hero-copy { display: grid; grid-template-columns: 1.2fr 1fr; column-gap: 80px; align-items: start; }
.crumbs { grid-column: 1 / -1; margin-bottom: 34px; color: var(--muted); font-size: .8rem; }
.crumbs a { color: var(--muted); }
.page-hero h1 { grid-column: 1; grid-row: 2 / 4; font-size: clamp(2.1rem, 3.25vw, 3rem); }
.hero-display-emphasis { color: var(--blue); }
.page-hero .lede { grid-column: 2; grid-row: 2; font-size: 1rem; }
.page-hero .lede > span { display: block; color: var(--ink); font-weight: 600; margin-bottom: 10px; }
.page-hero .hero-actions { grid-column: 2; grid-row: 3; margin-top: 25px; }
.content-grid { display: grid; grid-template-columns: 1.55fr 1fr; gap: 72px; align-items: start; }
.split-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 24px 32px; }
.detail-card { padding-top: 22px; border-top: 1px solid var(--line); }
.detail-card p { margin-top: 10px; font-size: .94rem; }
.side-panel { background: var(--surface); border-radius: var(--radius); overflow: hidden; }
.side-panel-body { padding: 32px; }
.side-panel-body > p { margin-top: 14px; }
.side-panel-body > .button { margin-top: 24px; }
.service-fit-panel { border-top: 3px solid var(--blue); }
.service-product-placeholder > strong { display: block; margin-bottom: 16px; font-size: 1.45rem; font-weight: 600; letter-spacing: -.025em; line-height: 1.3; }
.service-product-placeholder > span:not(.service-product-placeholder-kicker) { color: var(--muted); font-size: .94rem; }
.service-king-notes, .check-list { padding: 0; margin: 24px 0 0; list-style: none; }
.service-king-notes li, .check-list li { position: relative; padding-left: 20px; font-size: .88rem; line-height: 1.6; }
.service-king-notes li + li, .check-list li + li { margin-top: 10px; }
.service-king-notes li::before, .check-list li::before { content: ""; position: absolute; left: 0; top: .65em; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }
.page-band { background: var(--surface); }
.process-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 32px; margin-top: 44px; }
.process-step { border-top: 1px solid #bcc8d3; padding-top: 24px; }
.step-number { display: block; margin-bottom: 22px; color: var(--blue); font-size: .85rem; font-weight: 600; font-variant-numeric: tabular-nums; }
.step-number::before { content: "0"; }
.process-step h3 { font-size: 1.15rem; }
.process-step p { margin-top: 14px; font-size: .94rem; }
.faq-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: 72px; }
.faq-grid { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { position: relative; padding: 23px 36px 23px 0; list-style: none; color: var(--ink); font-weight: 500; line-height: 1.5; }
.faq-item summary::after { content: "+"; position: absolute; right: 4px; top: 21px; color: var(--blue); font-size: 1.3rem; font-weight: 400; }
.faq-item[open] summary::after { content: "−"; }
.faq-item summary:hover { color: var(--blue); }
.faq-item > p { padding: 0 36px 24px 0; font-size: .94rem; }
.cta-banner { background: var(--navy); padding-block: 56px; }
.cta-banner > .wrap { display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.cta-banner h2 { color: white; font-size: clamp(1.65rem,2.4vw,2.1rem); }
.cta-banner p { max-width: 650px; margin-top: 14px; color: #c7d2dc; }
.cta-banner-actions { flex-shrink: 0; max-width: 430px; }
.cta-banner .primary { color: var(--navy); background: white; }
.cta-banner .primary:hover { background: #e4edf4; }
.cta-banner .ghost { color: white; border-color: #7890a5; }
.cta-banner .ghost:hover { background: #25425d; }

/* About */
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
.service-card { border-top: 1px solid var(--line); padding-top: 24px; }
.service-body { display: flex; height: 100%; flex-direction: column; align-items: start; }
.service-body p { margin-block: 14px 20px; font-size: .95rem; }
.service-body > a { font-size: .86rem; font-weight: 600; margin-top: auto; }
.service-note { color: var(--muted); font-size: .85rem; margin-top: auto; }
.about-local-section { background: var(--surface); }
#what-we-do + .section { padding-top: 0; }
.about-local-section + .page-band { background: white; }
.about-photo-main { min-height: 340px; background-position: 38% center; background-size: cover; border-radius: var(--radius); }
.about-local-copy p { margin-top: 20px; }
.about-local-actions { margin-top: 28px; }
.side-panel-photo { height: 240px; background-position: center; background-size: cover; }
.about-trust-panel { background: var(--surface); }
.about-trust-panel .side-panel-photo { height: 190px; margin: 24px 24px 0; background-size: contain; background-repeat: no-repeat; }

/* Reviews */
.reviews-band { background: white; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 36px; }
.reviews-grid:has(.review-more[open]) { align-items: start; }
.review-card { display: flex; flex-direction: column; align-items: start; padding: 28px 0 0; border-top: 2px solid var(--blue); }
.review-stars { color: var(--review-gold); font-size: .95rem; letter-spacing: .08em; margin-bottom: 18px; }
.review-card > p { color: var(--ink); font-size: 1rem; line-height: 1.85; margin-bottom: 26px; }
.review-customer { display: flex; gap: 12px; align-items: center; margin-top: auto; }
.review-avatar img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.review-author { display: block; font-size: .9rem; color: var(--ink); font-weight: 600; text-decoration: none; }
.review-author:hover { text-decoration: underline; }
.review-source { display: block; font-size: .77rem; margin-top: 2px; }
.review-more { margin: -10px 0 26px; font-size: .92rem; }
.review-more summary { color: var(--blue); font-weight: 500; text-decoration: underline; text-underline-offset: 4px; }
.review-more p { margin-top: 14px; }
.reviews-page-lead { background: var(--surface); }
.reviews-page-lead .section-header { margin-bottom: 50px; }
.reviews-page-lead h1 { max-width: 800px; }

/* Compact service geography, with all community names retained. */
.locations-section { background: var(--surface); border-top: 1px solid var(--line); }
.locations-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: center; }
.locations-intro h2 { font-size: clamp(1.75rem,2.4vw,2.2rem); }
.locations-intro > p { margin-top: 18px; font-size: .95rem; }
.locations-intro .locations-map-help { font-size: .85rem; }
.location-list { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 7px 12px; margin: 24px 0 0; padding: 20px 0 0; border-top: 1px solid var(--line); list-style: none; color: var(--muted); font-size: .76rem; }
.location-more { grid-column: 1 / -1; color: var(--blue); padding-top: 5px; }
.locations-visual { min-width: 0; }
.service-area-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.service-area-map { height: 360px; position: relative; z-index: 0; background: #e9eef1; }
.service-area-map-fallback { padding: 28px; color: var(--muted); font-size: .9rem; }
.service-area-map.is-ready .service-area-map-fallback { display: none; }
.service-area-legend { display: flex; align-items: center; gap: 10px; padding: 12px 18px; font-size: .75rem; color: var(--muted); }
.service-area-swatch { width: 18px; height: 12px; background: #d2e2ef; border: 1px solid var(--blue); }

/* Support and enquiry */
#emergency { padding-block: 0; background: var(--surface); }
.emergency-panel { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; padding-block: 36px; border-top: 1px solid var(--line); }
.emergency-panel .section-kicker { margin-bottom: 8px; color: var(--emergency-red); }
.emergency-panel h2 { font-size: 1.8rem; }
.emergency-panel p { margin-top: 12px; }
.emergency-ticket-card .label { display: block; margin-bottom: 8px; color: var(--muted); font-size: .8rem; }
.contact-service-action { margin-top: 28px; }
.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; align-items: start; gap: 80px; }
.contact-intro > p { margin-top: 24px; }
.contact-intro h1 { font-size: clamp(2.05rem,3vw,2.8rem); }
.contact-details { display: flex; flex-direction: column; align-items: start; gap: 10px; margin-top: 30px; }
.contact-details a { font-size: 1.55rem; font-weight: 500; text-decoration: none; }
.contact-details a:hover { text-decoration: underline; }
.contact-details span { color: var(--muted); font-size: .88rem; }
.quote-form { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 22px; padding: 32px; background: var(--surface); border-radius: var(--radius); }
.form-field { min-width: 0; }
.form-field.full, .form-footer { grid-column: 1 / -1; }
.form-field label { display: block; margin-bottom: 9px; font-size: .83rem; font-weight: 500; }
.form-field input, .form-field select, .form-field textarea { display: block; width: 100%; min-width: 0; min-height: 48px; padding: 11px 12px; background: white; color: var(--ink); border: 1px solid #7d8d9e; border-radius: 3px; font-size: 1rem; }
.form-field select { padding-right: 22px; }
.form-field textarea { min-height: 135px; resize: vertical; }
.form-field textarea::placeholder { color: #65717e; font-size: .9rem; }
.form-field :is(input, select, textarea):focus { border-color: var(--blue); }
.form-footer { display: flex; flex-direction: column; align-items: start; gap: 20px; }
.form-footer small { color: var(--muted); font-size: .76rem; line-height: 1.65; }
.form-footer .button:disabled { cursor: wait; opacity: .65; }
.form-status { font-size: .9rem; }
.form-status:empty { display: none; }
.form-status[data-state="success"] { color: #23603c; }
.form-status[data-state="error"] { color: var(--emergency-red); }

/* Footer: all business details and support destinations in one quiet, organised area. */
.footer { background: var(--navy); color: #c7d2dc; padding-block: 0 26px; font-size: .86rem; }
.service-alert { color: #dbe4eb; font-size: .81rem; }
.service-alert > .wrap { display: flex; align-items: center; gap: 30px; justify-content: space-between; padding-block: 26px; border-bottom: 1px solid #ffffff24; }
.service-alert strong { color: white; font-weight: 500; }
.alert-link { color: white; white-space: nowrap; font-weight: 500; }
.alert-link:hover { color: #c7d2dc; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 44px; padding-block: 54px 44px; }
.footer-logo { width: 210px; height: auto; padding: 10px 12px; background: white; border-radius: var(--radius); margin-bottom: 18px; }
.footer-brand strong { display: block; color: white; font-size: .92rem; margin-bottom: 10px; }
.footer-brand span { display: block; font-size: .84rem; line-height: 1.8; }
.footer-col { display: flex; flex-direction: column; align-items: start; gap: 10px; }
.footer-col h2 { color: white; font-size: .78rem; font-weight: 500; margin: 10px 0 14px; }
.footer a { color: #c7d2dc; text-decoration: none; }
.footer a:hover { color: white; text-decoration: underline; }
.footer a[aria-current="page"] { color: white; text-decoration: underline; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px; border-top: 1px solid #ffffff24; padding-top: 24px; font-size: .72rem; }
.legal-links { display: flex; flex-wrap: wrap; gap: 24px; }

/* Existing social and emergency menus, with restrained controls. */
.emergency-fab { position: fixed; right: 20px; bottom: 20px; z-index: 1040; }
.emergency-fab-toggle, .social-fab-toggle { display: flex; align-items: center; gap: 14px; min-height: 44px; padding: 10px 16px; border: 1px solid var(--line); border-radius: var(--radius); background: white; color: var(--ink); font-size: .82rem; font-weight: 500; }
.emergency-fab-toggle:hover { border-color: var(--blue); }
.emergency-fab-toggle-icon { color: var(--emergency-red); font-size: 1.2rem; line-height: 1; }
.emergency-fab.is-open .emergency-fab-toggle-icon { transform: rotate(45deg); }
.emergency-fab-panel, .social-fab-panel { position: absolute; bottom: calc(100% + 12px); right: 0; width: min(320px,calc(100vw - 40px)); padding: 22px; background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 8px 32px #142b4224; }
.emergency-fab-copy, .social-fab-copy { font-size: .9rem; margin-bottom: 16px; }
.emergency-fab-panel .button { width: 100%; }
.social-fab { position: relative; margin-top: 10px; }
.social-fab-toggle { padding: 0; color: #c7d2dc; background: none; border: 0; text-decoration: underline; text-underline-offset: 4px; }
.social-fab-toggle-icon { display: flex; gap: 3px; }
.social-fab-toggle-icon span { width: 3px; height: 3px; background: currentColor; border-radius: 50%; }
.social-fab-panel { left: auto; right: 0; z-index: 20; }
.social-fab-facebook { display: flex; align-items: center; gap: 12px; }
.social-fab-facebook svg { width: 30px; height: 30px; }
.social-fab-facebook-copy strong, .social-fab-facebook-copy small { display: block; color: var(--ink); }
.social-fab-facebook-copy small { font-size: .75rem; color: var(--muted); }
body.mobile-menu-lock .emergency-fab { visibility: hidden; }

/* Preserve the accessibility integration and its original fix hooks. */
.asw-container { position: static; z-index: auto !important; }
.asw-container .asw-widget, .asw-container .asw-menu-btn { z-index: 1050 !important; }
.asw-container .asw-menu-btn { --asw-btn-size: 44px; --asw-btn-size-mobile: 44px; --asw-icon-size: 25px; --asw-icon-size-mobile: 25px; min-width: 44px; min-height: 44px; background: var(--blue) !important; box-shadow: none !important; border: 2px solid white !important; outline: 1px solid white !important; }
.asw-container .asw-menu-btn:hover { transform: none; }
.asw-container .asw-menu-btn:focus-visible { outline: 3px solid #a17120 !important; outline-offset: 4px; }
.asw-container .asw-menu { z-index: 1002001 !important; }
.asw-structure-overlay { z-index: 1002002 !important; }
.asw-structure-modal { z-index: 1002003 !important; }
body.kss-a11y-menu-open .masthead, body.kss-a11y-menu-open .emergency-fab,
body.kss-a11y-structure-open .masthead, body.kss-a11y-structure-open .emergency-fab { visibility: hidden; pointer-events: none; }
html.kss-a11y-super-focus body :where(a, button, summary, input, select, textarea, [tabindex]):where(:hover, :focus-visible) { outline: 4px solid #ffbf47 !important; outline-offset: 4px !important; position: relative !important; z-index: 1000002 !important; }
html.kss-a11y-hide-images body :where(img, picture, video) { opacity: 0 !important; visibility: hidden !important; }
html.kss-a11y-hide-images .asw-container :where(img, picture, video) { opacity: 1 !important; visibility: visible !important; }
html.kss-a11y-hide-images body :where([style*="background-image"]) { background-image: none !important; }
.kss-a11y-image-tooltip { position: fixed; z-index: 1000003; max-width: min(320px,calc(100vw - 32px)); padding: 10px 12px; border: 2px solid white; border-radius: 4px; background: var(--navy); color: white; font: 600 .88rem/1.35 var(--font); pointer-events: none; }

/* Responsive layouts */
@media (max-width: 1200px) {
  .wrap { width: calc(100% - 64px); }
  .navrow { gap: 20px; }
  .brandmark { width: 210px; }
  .navlinks { gap: 22px; }
  .top-actions { gap: 18px; }
  .top-call .phone-number { display: none; }
  .top-call .phone-label { color: var(--ink); font-size: .86rem; }
  .hero > .wrap, .page-hero-copy, .content-grid, .contact-layout, .locations-layout, .local-layout, .about-local-layout { gap: 44px; }
  .page-hero-copy { column-gap: 48px; row-gap: 0; }
}
@media (max-width: 980px) {
  .product-spotlight { gap: 36px; }
  .product-feature-brand { margin-inline: 24px; gap: 16px; }
  .product-feature-image { padding-inline: 16px; }
  .product-feature-caption { padding-inline: 24px; }
  .navrow { min-height: 80px; }
  .brandmark { width: 218px; }
  .mobile-menu-toggle { display: flex; width: 44px; height: 44px; padding: 12px 10px; flex-direction: column; justify-content: center; gap: 5px; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
  .mobile-menu-toggle span { height: 2px; width: 22px; background: var(--ink); transition: transform .18s ease; }
  .menu-open .mobile-menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-open .mobile-menu-toggle span:nth-child(2) { opacity: 0; }
  .menu-open .mobile-menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .navlinks { display: none; }
  .menu-open .navlinks { display: flex; position: fixed; top: var(--mobile-menu-top,80px); inset-inline: 0; flex-direction: column; align-items: stretch; gap: 0; max-height: calc(100dvh - var(--mobile-menu-top,80px)); overflow-y: auto; padding: 16px 32px 28px; background: white; border-bottom: 1px solid var(--line); box-shadow: 0 12px 24px #142b4214; }
  .navlinks > a:not(.button), .nav-dropdown summary { min-height: 52px; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav-dropdown summary { justify-content: space-between; }
  .nav-dropdown-menu { position: static; width: auto; padding: 8px 0 8px 18px; border: 0; box-shadow: none; }
  .nav-dropdown-menu a { padding: 12px 0; }
  .navlinks .menu-quote { display: inline-flex; color: white; margin-top: 22px; }
  .mobile-menu-lock { overflow: hidden; }
  .hero > .wrap { grid-template-columns: 1.1fr .9fr; gap: 32px; padding-block: 48px; }
  .hero h1 { font-size: 2.6rem; }
  .quick-grid { column-gap: 26px; }
  .quick-link strong { align-items: start; font-size: .96rem; }
  .local-layout, .about-local-layout { gap: 40px; }
  .page-hero-copy { grid-template-columns: 1.1fr 1fr; column-gap: 36px; }
  .page-hero .hero-actions { flex-direction: column; align-items: stretch; }
  .content-grid { grid-template-columns: 1.3fr 1fr; gap: 36px; }
  .side-panel-body { padding: 26px; }
  .process-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 36px; }
  .faq-layout { grid-template-columns: .7fr 1.3fr; gap: 36px; }
  .locations-layout { grid-template-columns: 1fr 1fr; gap: 36px; }
  .location-list { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .reviews-grid { gap: 26px; }
  .contact-layout { grid-template-columns: .85fr 1.15fr; gap: 32px; }
  .quote-form { padding: 26px; gap: 20px; }
  .quote-form .form-field { grid-column: 1 / -1; }
  .cta-banner > .wrap { flex-direction: column; align-items: start; gap: 28px; }
  .service-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .footer-grid { grid-template-columns: 1.3fr 1fr; gap: 40px 64px; }
  .service-alert > .wrap { align-items: start; }
}
@media (max-width: 700px) {
  .product-spotlight { grid-template-columns: minmax(0,1fr); gap: 32px; }
  .product-spotlight-copy > p { margin-top: 20px; }
  .product-capabilities { gap: 12px 16px; font-size: .82rem; }
  html { scroll-padding-top: 88px; }
  .wrap { width: calc(100% - 40px); }
  .navrow { min-height: 76px; gap: 14px; }
  .brandmark { width: min(210px,49vw); }
  .top-actions { gap: 13px; }
  .top-actions > .top-quote { display: none; }
  .top-call .phone-label { font-size: .79rem; }
  .menu-open .navlinks { padding-inline: 20px; }
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.95rem; }
  .section-header { margin-bottom: 28px; }
  .section-kicker, .eyebrow { font-size: .68rem; margin-bottom: 14px; }
  .hero > .wrap { display: flex; flex-direction: column; align-items: stretch; gap: 30px; padding-block: 38px 32px; }
  .hero h1 { font-size: clamp(2rem,7.8vw,2.8rem); }
  .hero-copy { padding: 0; }
  .hero .lede { font-size: 1rem; margin-top: 20px; }
  .hero .hero-actions { margin-top: 24px; }
  .hero-service-area { margin-top: 22px; padding-top: 16px; }
  .hero-visual img { aspect-ratio: 1.45; }
  .quick-services { padding-block: 36px 40px; }
  .quick-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 0 24px; }
  .quick-link { padding-block: 22px; padding-right: 0; }
  .quick-link strong { flex-direction: column; gap: 14px; font-size: 1rem; }
  .quick-link > span { font-size: .84rem; }
  .quick-link::after { top: 22px; }
  .local-layout, .about-local-layout, .content-grid, .faq-layout, .locations-layout, .contact-layout { grid-template-columns: minmax(0,1fr); gap: 32px; }
  .local-photo img { aspect-ratio: 1.55; }
  .page-hero { padding-block: 30px 40px; }
  .page-hero-copy { display: block; }
  .crumbs { margin-bottom: 24px; }
  .page-hero h1 { font-size: clamp(2rem,7.8vw,2.7rem); }
  .page-hero .lede { margin-top: 24px; }
  .page-hero .hero-actions { flex-direction: row; }
  .page-hero .hero-actions .button { flex: 1 1 auto; }
  .split-grid { gap: 24px; }
  .detail-card h3 { font-size: 1.1rem; }
  .detail-card p { font-size: .9rem; }
  .side-panel-body { padding: 28px; }
  .process-grid { gap: 30px 24px; margin-top: 32px; }
  .process-step h3 { font-size: 1.05rem; }
  .process-step p { font-size: .88rem; }
  .step-number { margin-bottom: 16px; }
  .faq-layout { gap: 0; }
  .faq-item summary { padding-block: 20px; font-size: .96rem; }
  .cta-banner { padding-block: 42px; }
  .cta-banner-actions { width: 100%; max-width: none; }
  .cta-banner-actions .button { flex: 1 1 auto; }
  .service-grid { grid-template-columns: minmax(0,1fr); gap: 28px; }
  .about-photo-main { min-height: 270px; }
  .reviews-grid { grid-template-columns: minmax(0,1fr); gap: 32px; }
  .review-card { padding-top: 24px; }
  .review-card > p { font-size: 1rem; margin-bottom: 22px; }
  .reviews-page-lead .section-header { margin-bottom: 34px; }
  .location-list { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 9px; font-size: .73rem; }
  .service-area-map { height: 300px; }
  .emergency-panel { grid-template-columns: minmax(0,1fr); gap: 24px; padding-block: 30px; }
  .emergency-ticket-card .button { width: auto; }
  .contact-layout { gap: 36px; }
  .quote-form { padding: 24px; }
  .form-footer .button { width: 100%; }
  .service-alert > .wrap { flex-direction: column; gap: 12px; padding-block: 28px; }
  .footer-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 32px 24px; padding-block: 36px; }
  .footer-brand, .footer-col:last-child { grid-column: 1 / -1; }
  .footer-brand { max-width: 360px; }
  .footer-logo { width: 190px; height: auto; }
  .footer-col h2 { margin-bottom: 6px; }
  .footer-col { font-size: .84rem; }
  .footer-bottom { padding-bottom: 68px; font-size: .7rem; }
  .legal-links { gap: 18px; }
  .emergency-fab { bottom: 14px; right: 14px; }
  .emergency-fab-toggle { min-height: 44px; padding: 9px 12px; font-size: .77rem; }
  .emergency-fab-panel { width: min(320px,calc(100vw - 28px)); }
  .social-fab-panel { left: 0; right: auto; }
}
@media (max-width: 360px) {
  .wrap { width: calc(100% - 32px); }
  .brandmark { width: 160px; }
  .top-actions { gap: 8px; }
  .quote-form { padding: 20px; }
  .location-list { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
@media print {
  .masthead, .emergency-fab, .asw-container, .social-fab { display: none; }
  .section { padding-block: 24px; }
  .wrap { width: 100%; }
  .footer { background: white; color: black; }
}
