*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  /* =====================================================================
     NEUMORPHIC DESIGN SYSTEM — shared tokens
     Every shadow pair below uses two-direction lighting adapted from the
     site's own off-white background (not a generic flat gray): a cool,
     low-contrast dark shadow toward the lower-right and a soft white
     highlight toward the upper-left. "Raised" tokens are for resting/idle
     surfaces (cards, nav, buttons). "Inset" tokens are for pressed,
     selected, or embedded surfaces (inputs, active tabs, sunken panels).
     ===================================================================== */
  :root {
    /* Base background + text colors (brand navy/blue, unchanged) */
    --ink: #0b1b2e;
    --muted: #5e7189;
    --page-bg: #e9eef3;           /* base neumorphic background: off-white, brand-tinted */
    --surface: #eef3f7;           /* default raised-card surface color */
    --surface-lift: #f6f9fb;      /* lighter surface, used near top of page */
    --surface-sunken: #e3e9ef;    /* inset/pressed surface color */
    --line: rgba(80, 102, 124, 0.16);
    --paper: var(--surface-lift);
    --wash: #edf2f6;
    --blue-rgb: 20, 117, 209;
    --blue-mid-rgb: 15, 95, 179;
    --blue: #1475d1;
    --blue-deep: #061426;
    --blue-light: #8bb6d8;
    --blue-mid: #0f5fb3;
    --blue-glow: #8bd3ff;
    --blue-glow-soft: #9ed0ff;
    --blue-tint: #7db8e6;
    --blue-tint-bright: #78c4ff;
    --blue-surface: #eef5fb;
    --blue-surface-hover: #f4f9fd;
    --blue-surface-alt: #eef7ff;
    --blue-surface-note: #eef6ff;
    --blue-surface-pressed: #edf4fb;
    --blue-surface-active: #e9f3fd;
    --blue-surface-panel: #f7fbff;
    --blue-icon-top: #dff0ff;
    --blue-icon-bottom: #cbe3f8;
    --blue-icon-hover-top: #e8f5ff;
    --blue-icon-hover-bottom: #d5e9fa;
    --navy: #0b1b2e;
    --red: #b91c1c;
    --accent: var(--blue);
    --accent-deep: var(--blue-mid);
    --green: #6fa36f;
    /* Shadow system: light-surface (off-white) components */
    --neu-dark: rgba(152, 168, 184, 0.72);        /* dark shadow, lower-right */
    --neu-dark-soft: rgba(152, 168, 184, 0.42);
    --neu-light: rgba(255, 255, 255, 0);        /* highlight removed for a cleaner surface edge */
    --neu-border: rgba(255, 255, 255, 0.3);      /* subtle rim color for raised surfaces */
    --neu-raised: 12px 12px 26px var(--neu-dark-soft);
    --neu-raised-sm: 7px 7px 16px rgba(152, 168, 184, 0.38);
    --neu-raised-hover: 16px 16px 32px rgba(152, 168, 184, 0.46);
    --neu-inset: inset 5px 5px 11px rgba(152, 168, 184, 0.58);
    --neu-inset-sm: inset 3px 3px 7px rgba(152, 168, 184, 0.54);

    /* Shadow system: brand-blue raised surfaces (primary buttons) */
    --neu-blue-raised: 8px 10px 22px rgba(18, 96, 179, 0.28);
    --neu-blue-pressed: inset 5px 5px 12px rgba(8, 79, 147, 0.5);

    /* Shadow system: dark-navy raised surfaces (cards/panels on photo or navy backgrounds) */
    --neu-dark-raised: 10px 12px 26px rgba(2, 8, 16, 0.4);
    --neu-dark-raised-hover: 14px 16px 32px rgba(2, 8, 16, 0.48);
    --neu-dark-inset: inset 5px 5px 12px rgba(2, 8, 16, 0.42);

    --shadow: var(--neu-raised);
    --transition: 180ms ease;      /* shared transition speed for hover/active/focus */
    --font: "Plus Jakarta Sans", "Segoe UI", sans-serif;

    /* Corner radius scale: large sections / medium cards+forms / small chips */
    --radius-xl: 28px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 16px;
  }

  html {
    scroll-behavior: smooth;
  }

  section[id],
  a[id] {
    scroll-margin-top: 128px;
  }

  body {
    min-height: 100vh;
    color: var(--ink);
    background: linear-gradient(180deg, var(--surface-lift) 0%, var(--page-bg) 42%, var(--wash) 100%);
    font-family: var(--font);
    line-height: 1.6;
    overflow-x: hidden;
  }

  html.mobile-menu-lock,
  body.mobile-menu-lock {
    overflow: hidden;
  }

  body.home-loading::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 9998;
    background:
      url("assets/navlogo.png") center calc(50% - 52px) / min(360px, 74vw) auto no-repeat,
      #ffffff;
    pointer-events: auto;
    animation: loaderOverlayFade 0.34s ease 0.86s forwards;
  }

  body.home-loading::after {
    content: "";
    position: fixed;
    top: calc(50% + 112px);
    left: 50%;
    z-index: 9999;
    width: 44px;
    height: 44px;
    border: 4px solid rgba(139, 211, 255, 0.26);
    border-top-color: var(--blue-glow);
    border-right-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 24px rgba(20, 117, 209, 0.32);
    pointer-events: none;
    transform: translate(-50%, -50%) rotate(0deg);
    animation:
      loaderSpinner 0.68s linear infinite,
      loaderSpinnerFade 0.34s ease 0.86s forwards;
  }

  body.home-loading > :not(script) {
    opacity: 0;
    animation: siteContentFadeIn 0.38s ease 0.92s forwards;
  }

  @keyframes loaderSpinner {
    100% {
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }

  @keyframes loaderOverlayFade {
    to {
      opacity: 0;
      visibility: hidden;
    }
  }

  @keyframes loaderSpinnerFade {
    to {
      opacity: 0;
      visibility: hidden;
    }
  }

  @keyframes siteContentFadeIn {
    to {
      opacity: 1;
    }
  }

  a {
    color: inherit;
    text-decoration: none;
  }

  img {
    max-width: 100%;
    display: block;
  }

  .wrap {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
  }

  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  a:focus-visible,
  button:focus-visible,
  summary:focus-visible,
  input:focus-visible,
  select:focus-visible,
  textarea:focus-visible {
    outline: 3px solid rgba(20, 117, 209, 0.4);
    outline-offset: 3px;
  }

  /* ---------- Top utility bar ---------- */

  .service-alert {
    display: none;
  }

  .service-alert .wrap {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .service-alert strong {
    color: var(--blue-glow-soft);
  }

  .service-alert .alert-link {
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
    white-space: nowrap;
  }

  /* ---------- Header ---------- */

  .masthead {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    padding: 10px 0 12px;
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
  }

  .masthead::after {
    content: "";
    display: none;
  }

  .masthead .wrap {
    width: min(1440px, calc(100% - 32px));
  }

  .navrow {
    min-height: 78px;
    display: grid;
    grid-template-columns: minmax(170px, 1fr) auto minmax(228px, 1fr);
    align-items: center;
    gap: clamp(14px, 2vw, 34px);
    padding: 9px 12px 9px 16px;
    border: 1px solid rgba(20, 117, 209, 0.12);
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(7, 21, 36, 0.16);
  }

  .brand {
    display: flex;
    align-items: center;
    gap: 0;
    justify-self: start;
    min-width: 0;
    flex-shrink: 0;
  }

  .brandmark {
    width: 230px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    background: none;
    box-shadow: none;
    overflow: hidden;
    flex-shrink: 0;
  }

  .brandmark img {
    display: block;
    width: auto;
    height: 100%;
    max-width: none;
    object-fit: contain;
    object-position: center center;
  }

  .brandname {
    display: none;
    color: var(--navy);
    font-family: var(--font);
    font-size: clamp(0.9rem, 1.15vw, 1.05rem);
    font-weight: 800;
    line-height: 1.05;
    white-space: nowrap;
  }

  .brandtag {
    display: none;
    margin-top: 3px;
    color: var(--blue-glow-soft);
    font-size: 0.76rem;
    font-weight: 700;
    white-space: nowrap;
  }

  .navlinks {
    display: flex;
    align-items: center;
    justify-self: center;
    gap: clamp(18px, 2.6vw, 34px);
    color: #44576d;
    font-size: 0.92rem;
    font-weight: 700;
  }

  .menu-quote {
    display: none !important;
  }

  .navlinks > a,
  .nav-dropdown summary {
    padding: 10px 12px;
    border-bottom: 0;
    white-space: nowrap;
    cursor: pointer;
    transition: color 0.16s ease, opacity 0.16s ease;
  }

  .navlinks > a:hover,
  .navlinks > a:focus-visible,
  .nav-dropdown summary:hover,
  .nav-dropdown summary:focus-visible,
  .nav-dropdown[open] summary,
  .nav-dropdown summary[aria-current="page"],
  .navlinks > a[aria-current="page"] {
    color: var(--blue);
    border-color: transparent;
    outline: none;
  }

  .nav-dropdown {
    position: relative;
  }

  .nav-dropdown::after {
    content: "";
    position: absolute;
    z-index: 19;
    top: 100%;
    left: -22px;
    width: 250px;
    height: 12px;
  }

  .nav-dropdown summary {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
  }

  .nav-dropdown summary::after {
    content: "";
    width: 0.48em;
    height: 0.48em;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    opacity: 0.68;
    transform: translateY(-2px) rotate(45deg);
    transform-origin: 58% 58%;
    transition: transform 0.22s ease, opacity 0.18s ease;
  }

  .nav-dropdown[open] summary::after {
    opacity: 1;
    transform: translateY(1px) rotate(225deg);
  }

  .nav-dropdown summary::-webkit-details-marker {
    display: none;
  }

  .nav-dropdown-menu {
    position: absolute;
    z-index: 20;
    top: calc(100% + 17px);
    left: -22px;
    width: 250px;
    padding: 10px;
    border: 1px solid rgba(15, 52, 86, 0.12);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 22px 46px rgba(5, 18, 31, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.96);
    transform-origin: top left;
    transition:
      opacity 0.2s ease,
      transform 0.24s cubic-bezier(0.2, 0.8, 0.2, 1),
      visibility 0s linear 0.24s;
    pointer-events: none;
  }

  .nav-dropdown-menu::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 38px;
    width: 12px;
    height: 12px;
    border-top: 1px solid rgba(15, 52, 86, 0.12);
    border-left: 1px solid rgba(15, 52, 86, 0.12);
    background: #ffffff;
    transform: rotate(45deg);
  }

  .nav-dropdown-menu a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-radius: 8px;
    color: var(--navy);
    font-weight: 750;
    opacity: 0;
    transform: translateY(6px);
    transition:
      opacity 0.18s ease,
      transform 0.2s ease,
      background 0.16s ease,
      color 0.16s ease;
  }

  .nav-dropdown-menu a::after {
    content: "\2192";
    color: var(--blue);
    transition: transform 0.16s ease;
  }

  .nav-dropdown-menu a:hover,
  .nav-dropdown-menu a:focus-visible {
    background: var(--blue-surface-alt);
    color: var(--blue-mid);
    outline: none;
  }

  .nav-dropdown-menu a:hover::after,
  .nav-dropdown-menu a:focus-visible::after {
    transform: translateX(3px);
  }

  .nav-dropdown[open] .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    transition-delay: 0s;
    pointer-events: auto;
  }

  .nav-dropdown[open] .nav-dropdown-menu a {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-dropdown[open] .nav-dropdown-menu a:nth-child(1) {
    transition-delay: 0.04s;
  }

  .nav-dropdown[open] .nav-dropdown-menu a:nth-child(2) {
    transition-delay: 0.07s;
  }

  .nav-dropdown[open] .nav-dropdown-menu a:nth-child(3) {
    transition-delay: 0.1s;
  }

  .nav-dropdown[open] .nav-dropdown-menu a:nth-child(4) {
    transition-delay: 0.13s;
  }

  .nav-dropdown[open] .nav-dropdown-menu a:nth-child(5) {
    transition-delay: 0.16s;
  }

  @media (prefers-reduced-motion: reduce) {
    .nav-dropdown summary::after,
    .nav-dropdown-menu,
    .nav-dropdown-menu a,
    .nav-dropdown-menu a::after {
      transition: none;
    }
  }

  .top-actions {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 0;
    flex-shrink: 0;
  }

  .top-actions > * {
    margin-left: 0;
  }

  .top-actions > *:first-child {
    margin-left: 0;
  }

  .button.primary.top-quote {
    --button-border-width: 2px;
    --button-border-bottom-width: 4px;
    --button-border-bottom-hover: 6px;
    --button-border-bottom-active: 2px;
    min-height: 46px;
    padding: 0 12px 0 22px;
    border-radius: 16px;
    border: var(--button-border-width) solid var(--blue-mid);
    border-bottom-width: var(--button-border-bottom-width);
    background: var(--blue-surface);
    color: var(--blue-mid);
    box-shadow: 0 10px 22px rgba(80, 110, 138, 0.12);
  }

  .button.primary.top-quote::after {
    content: "\2192";
    width: 36px;
    height: 36px;
    display: inline-grid;
    place-items: center;
    margin-left: 8px;
    border-radius: 50%;
    background: var(--blue);
    color: #ffffff;
    font-size: 1.13rem;
    font-weight: 900;
    line-height: 1;
    background: var(--blue);
    color: #ffffff;
    box-shadow: inset 3px 3px 8px rgba(8, 79, 147, 0.44);
    transition: background 0.16s ease, box-shadow 0.16s ease;
  }

  .button.primary.top-quote:hover,
  .button.primary.top-quote:focus-visible {
    background: var(--blue-surface-hover);
    color: var(--blue-mid);
  }

  .button.primary.top-quote:hover::after,
  .button.primary.top-quote:focus-visible::after {
    background: var(--blue);
    color: #ffffff;
    box-shadow: inset 2px 2px 6px rgba(8, 79, 147, 0.38), 3px 3px 8px rgba(15, 95, 179, 0.22);
  }

  .phone-link {
    --button-border-width: 2px;
    --button-border-bottom-width: 4px;
    --button-border-bottom-hover: 6px;
    --button-border-bottom-active: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 16px;
    border: var(--button-border-width) solid var(--blue-mid);
    border-bottom-width: var(--button-border-bottom-width);
    background: var(--blue-surface);
    color: var(--blue-mid);
    font-family: var(--font);
    font-size: 0.92rem;
    font-weight: 800;
    white-space: nowrap;
    margin-right: 0;
    box-shadow: 0 10px 22px rgba(80, 110, 138, 0.12);
    transition: filter 0.16s ease, background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease;
  }

  .phone-link.top-call {
    display: none;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 16px;
    font-size: 0.92rem;
    font-weight: 800;
  }

  .phone-link.top-call .phone-label {
    color: var(--blue-mid);
  }

  .phone-link.top-call .phone-number {
    color: var(--blue-mid);
  }

  .phone-link.top-call:hover,
  .phone-link.top-call:focus-visible {
    border-color: var(--blue-mid);
    background: var(--blue-surface-hover);
    color: var(--blue-mid);
    filter: brightness(1.1);
  }

  .phone-link.top-call:active {
    transform: translateY(2px);
    filter: brightness(0.9);
    border-bottom-width: var(--button-border-bottom-active);
  }

  .phone-link.top-call:hover .phone-label,
  .phone-link.top-call:hover .phone-number,
  .phone-link.top-call:focus-visible .phone-label,
  .phone-link.top-call:focus-visible .phone-number {
    color: var(--blue-mid);
  }

  .phone-link::before,
  .alert-link[href^="tel:"]::before,
  .button[href^="tel:"]::before,
  .locations-callout[href^="tel:"]::before,
  .contact-details a[href^="tel:"]::before {
    content: "";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.1em;
    height: 1.1em;
    line-height: 1;
    flex: 0 0 auto;
    background-color: currentColor;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79a15.46 15.46 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1-.24c1.12.37 2.33.57 3.59.57a1 1 0 0 1 1 1V20a1 1 0 0 1-1 1C10.61 21 3 13.39 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1c0 1.26.2 2.47.57 3.59a1 1 0 0 1-.25 1.01l-2.2 2.19Z'/%3E%3Cpath d='M14.5 4.5a1 1 0 0 1 1.41 0A8.5 8.5 0 0 1 18.5 10a1 1 0 1 1-2 0 6.51 6.51 0 0 0-1.99-4.09 1 1 0 0 1-.01-1.41Z'/%3E%3Cpath d='M17.82 2.18a1 1 0 0 1 1.41 0A12 12 0 0 1 22.5 10a1 1 0 1 1-2 0 10.01 10.01 0 0 0-2.68-6.41 1 1 0 0 1 0-1.41Z'/%3E%3C/svg%3E");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79a15.46 15.46 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1-.24c1.12.37 2.33.57 3.59.57a1 1 0 0 1 1 1V20a1 1 0 0 1-1 1C10.61 21 3 13.39 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1c0 1.26.2 2.47.57 3.59a1 1 0 0 1-.25 1.01l-2.2 2.19Z'/%3E%3Cpath d='M14.5 4.5a1 1 0 0 1 1.41 0A8.5 8.5 0 0 1 18.5 10a1 1 0 1 1-2 0 6.51 6.51 0 0 0-1.99-4.09 1 1 0 0 1-.01-1.41Z'/%3E%3Cpath d='M17.82 2.18a1 1 0 0 1 1.41 0A12 12 0 0 1 22.5 10a1 1 0 1 1-2 0 10.01 10.01 0 0 0-2.68-6.41 1 1 0 0 1 0-1.41Z'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
  }

  .phone-link::before {
    font-size: 0.95rem;
  }

  .alert-link[href^="tel:"]::before,
  .button[href^="tel:"]::before,
  .locations-callout[href^="tel:"]::before,
  .contact-details a[href^="tel:"]::before {
    margin-right: 8px;
    font-size: 0.9em;
  }

  .phone-link .phone-label {
    display: none;
    color: var(--blue-glow-soft);
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .phone-link .phone-number {
    display: block;
  }

  .mobile-menu-toggle {
    --toggle-size: 48px;
    --toggle-line-width: 20px;
    --toggle-line-height: 2px;
    --toggle-line-offset: 6px;
    display: none;
    align-items: center;
    justify-content: center;
    width: var(--toggle-size);
    height: var(--toggle-size);
    padding: 0;
    border: 1px solid var(--blue-mid);
    border-radius: 999px;
    background: var(--blue);
    color: #ffffff;
    font: inherit;
    cursor: pointer;
    box-shadow: var(--neu-blue-raised);
    transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), border-color var(--transition), color var(--transition);
  }

  .mobile-menu-toggle span {
    position: absolute;
    width: var(--toggle-line-width);
    height: var(--toggle-line-height);
    border-radius: 999px;
    background: currentColor;
    transform-origin: center;
    transition: transform 0.24s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.18s ease;
  }

  .mobile-menu-toggle:hover,
  .mobile-menu-toggle:focus-visible {
    transform: translateY(-1px);
    box-shadow: 12px 14px 28px rgba(18, 96, 179, 0.34);
    outline: none;
  }

  .mobile-menu-toggle:active {
    transform: translateY(0);
    box-shadow: var(--neu-blue-pressed);
  }

  .mobile-menu-toggle span:first-child {
    transform: translateY(calc(var(--toggle-line-offset) * -1));
  }

  .mobile-menu-toggle span:last-child {
    transform: translateY(var(--toggle-line-offset));
  }

  .masthead.menu-open .mobile-menu-toggle span:first-child {
    transform: translateY(0) rotate(45deg);
  }

  .masthead.menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.4);
  }

  .masthead.menu-open .mobile-menu-toggle span:last-child {
    transform: translateY(0) rotate(-45deg);
  }

  /* ---------- Buttons ---------- */

  .button {
    --button-bg: #ffffff;
    --button-border: rgba(11, 27, 46, 0.08);
    --button-text: var(--ink);
    --button-border-width: 2px;
    --button-border-bottom-width: 4px;
    --button-border-bottom-hover: 6px;
    --button-border-bottom-active: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 14px;
    border: var(--button-border-width) solid var(--button-border);
    border-bottom-width: var(--button-border-bottom-width);
    background: var(--button-bg);
    color: var(--button-text);
    font-family: var(--font);
    font-size: 0.94rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(80, 110, 138, 0.12);
    transition: filter var(--transition), background-color var(--transition), border-color var(--transition), color var(--transition);
  }

  .button:hover,
  .button:focus-visible {
    filter: brightness(1.1);
  }

  .button:active {
    transform: translateY(2px);
    filter: brightness(0.9);
    border-bottom-width: var(--button-border-bottom-active);
  }

  .button.emergency {
    --button-bg: rgba(128, 39, 39, 0.26);
    --button-border: rgba(255, 220, 220, 0.24);
    --button-text: #ffffff;
  }

  .button.emergency:hover {
    --button-bg: rgba(128, 39, 39, 0.3);
  }

  .button.emergency-service {
    --button-bg: #c72a2a;
    --button-border: #b91c1c;
    --button-text: #ffffff;
  }

  .button.emergency-service:hover,
  .button.emergency-service:focus-visible {
    --button-bg: #b91c1c;
  }

  .button.services {
    --button-bg: var(--blue-surface);
    --button-border: var(--blue-mid);
    --button-text: var(--blue-mid);
  }

  .button.primary {
    --button-bg: var(--blue);
    --button-border: var(--blue-mid);
    --button-text: #ffffff;
  }

  .button.ghost {
    --button-bg: var(--blue-surface);
    --button-border: var(--blue-mid);
    --button-text: var(--blue-mid);
  }

  .button.block {
    width: 100%;
  }

  /* ---------- Hero ---------- */

  .hero {
    position: relative;
    min-height: clamp(680px, 82vh, 780px);
    display: grid;
    align-items: center;
    overflow: hidden;
    background: var(--surface-lift);
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 0 0 0 54%;
    background: url("assets/kingsecurityhero.png") right top 54px / auto 88% no-repeat;
    filter: saturate(0.98) contrast(1.02);
  }

  .hero::after {
    content: none;
  }

  .hero .wrap {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 700px) minmax(0, 1fr);
    justify-content: start;
    gap: clamp(36px, 4vw, 56px);
    align-items: center;
    padding: 126px 0 124px;
  }

  .hero-copy {
    max-width: 700px;
    color: var(--ink);
    text-align: left;
  }

  .hero-mobile-visual {
    display: none;
  }

  .hero .hero-copy h1 {
    max-width: 620px;
    font-size: clamp(2rem, 3.2vw, 2.85rem);
    line-height: 1.03;
    letter-spacing: 0;
    color: var(--ink);
    text-wrap: balance;
  }

  .hero .hero-styled-lede {
    max-width: 620px;
    margin-top: 24px;
    padding-left: 0;
    border-left: 0;
    color: var(--muted);
    font-size: clamp(1rem, 1.25vw, 1.08rem);
    line-height: 1.62;
  }

  .hero .hero-styled-lede span {
    display: inline;
    margin: 0;
    color: var(--blue-deep);
    font-size: inherit;
    font-weight: 800;
    line-height: inherit;
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 999px;
    background: rgba(8, 34, 58, 0.7);
    color: #f1f7fb;
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    backdrop-filter: blur(10px);
  }

  .eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: none;
  }

  .hero-eyebrow-card {
    gap: 10px;
    margin-bottom: 18px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: var(--blue-mid);
    font-size: 0.74rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    backdrop-filter: none;
  }

  .hero-eyebrow-card svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    color: var(--blue);
  }

  .hero-eyebrow-card::before {
    display: none;
  }

  .service-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    max-width: 100%;
    margin-bottom: 20px;
    padding: 8px 12px 8px 10px;
    border: 1px solid rgba(139, 211, 255, 0.32);
    border-left: 3px solid var(--blue-glow);
    border-radius: 6px;
    background: rgba(7, 28, 50, 0.66);
    color: #eaf6ff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.2;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
  }

  h1 {
    max-width: 980px;
    margin: 0;
    color: #fff;
    font-family: var(--font);
    font-size: clamp(2rem, 3.55vw, 3.3rem);
    line-height: 1.02;
    font-weight: 750;
    letter-spacing: -0.018em;
  }

  h1 .accent {
    color: #f1f7fb;
  }

  .lede {
    max-width: 920px;
    margin: 24px 0 0;
    color: rgba(235, 246, 255, 0.9);
    font-size: 0.94rem;
    line-height: 1.76;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px;
    margin-top: 30px;
  }

  .hero-actions .button {
    min-height: 52px;
    min-width: 176px;
    padding: 0 30px;
    font-size: 0.94rem;
    border-radius: 14px;
  }

  .home-facebook.tooltip-container {
    position: relative;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 17px;
    border-radius: 10px;
  }

  .home-facebook .tooltip {
    position: absolute;
    bottom: calc(100% + 18px);
    left: 50%;
    z-index: 5;
    width: min(290px, calc(100vw - 40px));
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 16px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    border-radius: 15px;
    box-shadow:
      inset 5px 5px 5px rgba(0, 0, 0, 0.2),
      inset -5px -5px 15px rgba(255, 255, 255, 0.1),
      5px 5px 15px rgba(0, 0, 0, 0.3),
      -5px -5px 15px rgba(255, 255, 255, 0.1);
  }

  .home-facebook .profile {
    background: #3b5998;
    border-radius: 10px 15px;
    padding: 10px;
    border: 1px solid #29487d;
  }

  .home-facebook:hover .tooltip,
  .home-facebook:focus-within .tooltip {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }

  .home-facebook .icon {
    text-decoration: none;
    color: #fff;
    display: block;
    position: relative;
    width: 55px;
  }

  .home-facebook > .text {
    display: block;
    width: 55px;
  }

  .home-facebook .icon .layer {
    position: relative;
    width: 55px;
    height: 55px;
    border: 3px solid #1877f2;
    border-radius: 50%;
    transition: transform 0.3s, border 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 15px rgba(24, 119, 242, 0.7), 0 0 20px rgba(24, 119, 242, 0.5);
  }

  .home-facebook:hover .icon .layer,
  .home-facebook:focus-within .icon .layer,
  .home-facebook .icon:hover .layer,
  .home-facebook .icon:focus-visible .layer {
    transform: rotate(-35deg) skew(20deg);
    box-shadow: 0 0 30px rgba(24, 119, 242, 1), 0 0 40px rgba(24, 119, 242, 0.7);
  }

  .home-facebook .layer span {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border: 1px solid #fff;
    border-radius: 50%;
    transition: all 0.3s;
  }

  .home-facebook .layer span,
  .home-facebook .text {
    color: #1877f2;
    border-color: #1877f2;
  }

  .home-facebook:hover .icon .layer span,
  .home-facebook:focus-within .icon .layer span,
  .home-facebook .icon:hover .layer span,
  .home-facebook .icon:focus-visible .layer span {
    box-shadow: -1px 1px 3px #1877f2;
  }

  .home-facebook .icon .text {
    position: absolute;
    left: 50%;
    bottom: -5px;
    opacity: 0;
    font-size: 0.78rem;
    font-weight: 700;
    transform: translateX(-50%);
    transition: bottom 0.3s ease, opacity 0.3s ease;
  }

  .home-facebook:hover .icon .text,
  .home-facebook:focus-within .icon .text,
  .home-facebook .icon:hover .text,
  .home-facebook .icon:focus-visible .text {
    bottom: -35px;
    opacity: 1;
  }

  .home-facebook:hover .icon .layer span:nth-child(1),
  .home-facebook:focus-within .icon .layer span:nth-child(1),
  .home-facebook .icon:hover .layer span:nth-child(1),
  .home-facebook .icon:focus-visible .layer span:nth-child(1) {
    opacity: 0.2;
  }

  .home-facebook:hover .icon .layer span:nth-child(2),
  .home-facebook:focus-within .icon .layer span:nth-child(2),
  .home-facebook .icon:hover .layer span:nth-child(2),
  .home-facebook .icon:focus-visible .layer span:nth-child(2) {
    opacity: 0.4;
    transform: translate(5px, -5px);
  }

  .home-facebook:hover .icon .layer span:nth-child(3),
  .home-facebook:focus-within .icon .layer span:nth-child(3),
  .home-facebook .icon:hover .layer span:nth-child(3),
  .home-facebook .icon:focus-visible .layer span:nth-child(3) {
    opacity: 0.6;
    transform: translate(10px, -10px);
  }

  .home-facebook:hover .icon .layer span:nth-child(4),
  .home-facebook:focus-within .icon .layer span:nth-child(4),
  .home-facebook .icon:hover .layer span:nth-child(4),
  .home-facebook .icon:focus-visible .layer span:nth-child(4) {
    opacity: 0.8;
    transform: translate(15px, -15px);
  }

  .home-facebook:hover .icon .layer span:nth-child(5),
  .home-facebook:focus-within .icon .layer span:nth-child(5),
  .home-facebook .icon:hover .layer span:nth-child(5),
  .home-facebook .icon:focus-visible .layer span:nth-child(5) {
    opacity: 1;
    transform: translate(20px, -20px);
  }

  .home-facebook .facebookSVG {
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #ffffff;
    background: #1877f2;
    border-radius: 50%;
    background: linear-gradient(
      45deg,
      #1877f2 0%,
      #3b5998 25%,
      #1877f2 50%,
      #3b5998 75%,
      #1877f2 100%
    );
  }

  .home-facebook .facebookSVG svg {
    width: 100%;
    height: 100%;
  }

  .home-facebook .user {
    display: flex;
    gap: 10px;
  }

  .home-facebook .img {
    width: 50px;
    height: 50px;
    font-size: 25px;
    font-weight: 700;
    border: 1px solid #1877f2;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
  }

  .home-facebook .name {
    font-size: 17px;
    font-weight: 700;
    color: #1877f2;
  }

  .home-facebook .details {
    display: flex;
    flex-direction: column;
    gap: 0;
    color: #fff;
  }

  .home-facebook .username {
    color: #dbe8ff;
  }

  .home-facebook .about {
    color: #ccc;
    padding-top: 5px;
  }

  .hero .button.primary {
    --button-border: rgba(179, 62, 22, 0.24);
  }

  .hero .button.emergency-service {
    --button-bg: #cf2f2f;
    --button-border: #ef4444;
    --button-shadow-dark: rgba(129, 20, 20, 0.56);
    --button-shadow-light: rgba(255, 170, 170, 0.18);
    --button-shadow-dark-outer: rgba(129, 20, 20, 0.4);
    --button-drop: rgba(109, 27, 27, 0.28);
  }

  .hero .button.emergency-service:hover,
  .hero .button.emergency-service:focus-visible {
    --button-bg: #b91c1c;
    --button-border: #f87171;
  }

  .hero-service-area {
    margin-top: 16px;
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 600;
    line-height: 1.5;
  }

  /* ---------- Quick services ---------- */

  .quick-services {
    position: relative;
    z-index: 3;
    margin-top: 0;
    padding: 42px 0 0;
    background: linear-gradient(180deg, var(--surface-lift) 0%, var(--page-bg) 100%);
  }

  .quick-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    padding: 14px;
    background: linear-gradient(180deg, rgba(246, 249, 251, 0.96), rgba(232, 239, 246, 0.94));
    border: 1px solid var(--neu-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--neu-raised);
  }

  .quick-link {
    position: relative;
    min-height: 150px;
    padding: 26px 24px;
    display: grid;
    align-content: space-between;
    gap: 16px;
    background:
      linear-gradient(145deg, rgba(246, 249, 252, 0.98) 0%, rgba(235, 241, 247, 0.98) 100%);
    color: var(--muted);
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--neu-raised-sm);
  }

  .quick-link:nth-child(1),
  .quick-link:nth-child(2) {
    grid-column: span 2;
  }

  .quick-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 22px;
    width: 88px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--blue) 0%, var(--blue-tint) 100%);
    transition: width var(--transition), opacity var(--transition);
  }

  .quick-link:hover::before,
  .quick-link:focus-visible::before {
    width: 124px;
  }

  .quick-link:hover,
  .quick-link:focus-visible {
    background:
      linear-gradient(145deg, rgba(249, 252, 255, 0.98) 0%, rgba(238, 245, 251, 0.98) 100%);
    color: #55697f;
    outline: none;
  }

  .quick-link strong {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--ink);
    font-family: var(--font);
    font-size: 1.02rem;
    line-height: 1.28;
  }

  .quick-link strong svg {
    width: 34px;
    height: 34px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 12px;
    background: linear-gradient(145deg, var(--blue-icon-top) 0%, var(--blue-icon-bottom) 100%);
    color: var(--blue-mid);
    flex-shrink: 0;
    box-shadow: var(--neu-inset-sm);
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
  }

  .quick-link:hover strong svg,
  .quick-link:focus-visible strong svg {
    border-color: rgba(255, 255, 255, 0.9);
    background: linear-gradient(145deg, var(--blue-icon-hover-top) 0%, var(--blue-icon-hover-bottom) 100%);
    transform: translateY(-1px);
  }

  .quick-link span {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.55;
  }

  /* ---------- Generic sections ---------- */

  .section {
    padding: 80px 0;
  }

  .section-header {
    max-width: 760px;
    margin-bottom: 36px;
  }

  .section-header.center {
    margin-inline: auto;
    text-align: center;
  }

  .section-kicker {
    color: var(--blue);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .section h2 {
    margin-top: 8px;
    color: var(--ink);
    font-family: var(--font);
    font-size: 2.2rem;
    line-height: 1.14;
    letter-spacing: -0.01em;
  }

  .section-header p {
    margin-top: 12px;
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.72;
  }

  /* ---------- Service cards ---------- */

  .service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .service-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 18px 42px rgba(14, 32, 56, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.7);
    display: flex;
    flex-direction: column;
  }

  .local-photo {
    min-height: 168px;
    background:
      linear-gradient(180deg, rgba(18, 50, 79, 0.04), rgba(18, 50, 79, 0.18)),
      linear-gradient(135deg, #d6dde4, #eef2f5);
    background-position: center;
    background-size: cover;
    border-bottom: 1px solid var(--line);
    position: relative;
  }

  .service-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .service-body h3 {
    color: var(--ink);
    font-family: var(--font);
    font-size: 1.3rem;
    line-height: 1.22;
  }

  .service-body p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.64;
    flex: 1;
  }

  .service-body a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    color: var(--blue-mid);
    font-weight: 900;
    font-size: 0.92rem;
  }

  /* ---------- Interior pages ---------- */

  .page-hero {
    position: relative;
    min-height: 520px;
    display: grid;
    align-items: end;
    overflow: hidden;
    background:
      linear-gradient(90deg, rgba(4, 17, 32, 0.94) 0%, rgba(6, 25, 43, 0.82) 52%, rgba(7, 24, 38, 0.42) 100%),
      url("assets/herobackground.webp");
    background-position: center;
    background-size: cover;
    color: #fff;
  }

  .page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 100% 72px;
    mask-image: linear-gradient(90deg, #000, transparent 72%);
    -webkit-mask-image: linear-gradient(90deg, #000, transparent 72%);
  }

  .page-hero .wrap {
    position: relative;
    z-index: 1;
    padding: 156px 0 96px;
  }

  .page-hero h1 {
    max-width: 980px;
  }

  .page-hero .lede {
    max-width: 940px;
  }

  .page-hero.custom {
    min-height: 600px;
    align-items: center;
  }

  .page-hero.custom::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 34%;
    background: linear-gradient(180deg, transparent 0%, rgba(3, 12, 24, 0.58) 100%);
    pointer-events: none;
  }

  .page-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(300px, 0.62fr);
    gap: 48px;
    align-items: center;
    padding: 156px 0 96px;
  }

  .page-hero-copy {
    color: #fff;
  }

  .page-hero-copy h1 {
    color: #fff;
  }

  .page-hero-copy h1,
  .page-hero-grid .page-hero-copy h1 {
    font-size: clamp(1.95rem, 3.25vw, 3.05rem);
    line-height: 1.02;
  }

  .page-hero-copy .lede,
  .page-hero-grid .lede {
    font-size: 0.94rem;
    line-height: 1.78;
  }

  .hero-proof-panel {
    position: relative;
    min-height: 330px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    background: rgba(7, 28, 50, 0.72);
    box-shadow: 0 30px 70px rgba(3, 12, 24, 0.36);
    overflow: hidden;
    color: #fff;
    backdrop-filter: blur(12px);
  }

  .hero-proof-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 100% 42px;
    opacity: 0.6;
    pointer-events: none;
  }

  .hero-proof-panel > * {
    position: relative;
    z-index: 1;
  }


  .panel-label {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(235, 246, 255, 0.86);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .panel-title {
    margin-top: 16px;
    color: #fff;
    font-family: var(--font);
    font-size: 1.32rem;
    line-height: 1.2;
  }

  .panel-lines {
    display: grid;
    gap: 10px;
    margin-top: 20px;
  }

  .panel-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(235, 246, 255, 0.84);
    font-size: 0.88rem;
  }

  .panel-line strong {
    color: #fff;
    font-size: 0.9rem;
  }

  .panel-pill {
    flex-shrink: 0;
    padding: 5px 8px;
    border-radius: 999px;
    background: rgba(20, 117, 209, 0.26);
    color: #d9efff;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .camera-plan-panel {
    padding-bottom: 18px;
    background:
      linear-gradient(180deg, rgba(9, 36, 62, 0.82), rgba(5, 21, 39, 0.76)),
      rgba(7, 28, 50, 0.72);
  }

  .camera-plan-panel .panel-title {
    max-width: 330px;
  }

  .service-map-frame {
    margin-top: 18px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }

  .service-map-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    background: #f6f9fc;
  }

  .hero-photo-stack {
    display: grid;
    grid-template-columns: 1.1fr 0.72fr;
    gap: 10px;
    margin-top: 18px;
  }

  .hero-photo-stack span {
    min-height: 120px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    background-position: center;
    background-size: cover;
  }

  .hero-photo-stack span:first-child {
    grid-row: span 2;
    min-height: 250px;
  }

  .signal-chain {
    display: grid;
    gap: 0;
    margin-top: 22px;
  }

  .signal-step {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 12px;
    align-items: start;
  }

  .signal-step + .signal-step {
    margin-top: 16px;
  }

  .signal-dot {
    position: relative;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #1475d1;
    color: #fff;
    font-weight: 900;
  }

  .signal-step:not(:last-child) .signal-dot::after {
    content: "";
    position: absolute;
    top: 38px;
    left: 18px;
    width: 2px;
    height: 28px;
    background: rgba(255, 255, 255, 0.24);
  }

  .signal-step strong {
    display: block;
    color: #fff;
  }

  .signal-step span {
    display: block;
    margin-top: 3px;
    color: rgba(235, 246, 255, 0.72);
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .hero-camera {
    background-image:
      linear-gradient(90deg, rgba(4, 17, 32, 0.96) 0%, rgba(6, 25, 43, 0.84) 50%, rgba(7, 24, 38, 0.36) 100%),
      url("assets/herobackground.webp");
  }

  .hero-alarm {
    background-image:
      linear-gradient(90deg, rgba(6, 18, 31, 0.96) 0%, rgba(11, 35, 58, 0.86) 52%, rgba(12, 34, 50, 0.4) 100%),
      url("assets/kingsecurityteammember.webp");
    background-position: center 36%;
  }

  .hero-fire-alarm {
    background-image:
      linear-gradient(90deg, rgba(6, 18, 31, 0.96) 0%, rgba(40, 30, 34, 0.86) 52%, rgba(60, 35, 32, 0.4) 100%),
      url("assets/kingsecurityteammember.webp");
    background-position: center 36%;
  }

  .hero-access {
    background-image:
      linear-gradient(90deg, rgba(4, 17, 32, 0.96) 0%, rgba(7, 31, 54, 0.84) 50%, rgba(7, 24, 38, 0.38) 100%),
      url("assets/herobackground.webp");
    background-position: center;
  }

  .hero-cabling {
    background-image:
      linear-gradient(90deg, rgba(4, 17, 32, 0.96) 0%, rgba(8, 34, 48, 0.84) 52%, rgba(7, 24, 38, 0.38) 100%),
      url("assets/kingsecurityteammember.webp");
    background-position: center 36%;
  }

  .hero-trailer {
    background-image:
      linear-gradient(90deg, rgba(4, 17, 32, 0.96) 0%, rgba(6, 25, 43, 0.82) 50%, rgba(7, 24, 38, 0.35) 100%),
      url("assets/herobackground.webp");
    background-position: center;
  }

  .hero-about {
    background-image:
      linear-gradient(90deg, rgba(4, 17, 32, 0.96) 0%, rgba(6, 25, 43, 0.82) 50%, rgba(7, 24, 38, 0.34) 100%),
      url("assets/kingsecurityteammember.webp");
  }

  .hero-about .page-hero-copy {
    max-width: 760px;
  }

  .hero-copy h1,
  .page-hero-copy h1 {
    text-wrap: balance;
    text-shadow: 0 18px 44px rgba(3, 12, 24, 0.34);
  }

  .hero-about h1,
  .page-hero.custom h1 {
    max-width: 980px;
    font-size: clamp(2rem, 3.5vw, 3.35rem);
    line-height: 1.02;
  }

  .hero-display-emphasis {
    display: block;
    margin-top: 6px;
    color: var(--blue-glow);
  }

  .hero-styled-lede {
    max-width: 920px;
    margin-top: 24px;
    padding-left: 18px;
    border-left: 3px solid rgba(139, 211, 255, 0.72);
    color: rgba(232, 244, 255, 0.88);
    font-size: 0.96rem;
    line-height: 1.76;
    text-shadow: 0 8px 22px rgba(3, 12, 24, 0.22);
  }

  .hero-styled-lede span {
    display: block;
    margin-bottom: 6px;
    color: #ffffff;
    font-family: var(--font);
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.4;
  }

  .hero-contact {
    background-image:
      linear-gradient(90deg, rgba(4, 17, 32, 0.96) 0%, rgba(6, 25, 43, 0.86) 56%, rgba(7, 24, 38, 0.38) 100%),
      url("assets/herobackground.webp");
  }

  .google-rating-panel {
    display: grid;
    align-content: center;
    gap: 16px;
  }

  .google-rating-mark {
    display: flex;
    align-items: center;
    gap: 1px;
    font-family: var(--font);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
  }

  .google-letter.g1 {
    color: #4285f4;
  }

  .google-letter.g2 {
    color: #ea4335;
  }

  .google-letter.g3 {
    color: #fbbc05;
  }

  .google-letter.g4 {
    color: #34a853;
  }

  .google-rating-score {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
  }

  .google-rating-score strong {
    color: #ffffff;
    font-family: var(--font);
    font-size: 3.2rem;
    line-height: 0.95;
  }

  .google-stars {
    display: flex;
    gap: 4px;
    color: #fbbc05;
  }

  .google-rating-note {
    max-width: 360px;
    color: rgba(235, 246, 255, 0.78);
    font-size: 0.94rem;
    line-height: 1.6;
  }

  .crumbs {
    margin-bottom: 18px;
    color: rgba(235, 246, 255, 0.78);
    font-size: 0.84rem;
    font-weight: 800;
  }

  .crumbs a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .content-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.55fr);
    gap: 44px;
    align-items: start;
  }

  .split-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .detail-card,
  .side-panel,
  .faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: 0 14px 32px rgba(14, 32, 56, 0.06);
  }

  .detail-card,
  .faq-item {
    padding: 30px;
  }

  .detail-card h3,
  .side-panel h3,
  .faq-item summary {
    color: var(--ink);
    font-family: var(--font);
    font-size: 1.12rem;
    line-height: 1.25;
  }

  .detail-card p,
  .side-panel p,
  .faq-item p {
    margin-top: 9px;
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.66;
  }

  .service-highlights {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 760px;
  }

  .service-highlights .detail-card {
    position: relative;
    min-height: 84px;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    column-gap: 18px;
    align-items: center;
    padding: 22px 26px 22px 22px;
    overflow: hidden;
    border-color: rgba(14, 32, 56, 0.1);
    border-radius: var(--radius-sm);
    background:
      linear-gradient(90deg, rgba(20, 117, 209, 0.08), rgba(255, 255, 255, 0) 42%),
      #fff;
    box-shadow: 0 10px 26px rgba(14, 32, 56, 0.055);
  }

  .service-highlights .detail-card::before {
    content: "";
    width: 42px;
    height: 42px;
    grid-row: 1 / span 2;
    border-radius: 50%;
    background:
      linear-gradient(135deg, rgba(20, 117, 209, 0.16), rgba(139, 182, 216, 0.2)),
      #f5f9fd;
    border: 1px solid rgba(20, 117, 209, 0.18);
    box-shadow: inset 0 0 0 8px #fff;
  }

  .service-highlights .detail-card::after {
    content: "";
    position: absolute;
    left: 43px;
    top: 50%;
    width: 10px;
    height: 16px;
    border-right: 3px solid var(--blue);
    border-bottom: 3px solid var(--blue);
    transform: translate(-50%, -50%) rotate(42deg);
    transform-origin: center;
  }

  .service-highlights .detail-card h3 {
    font-size: 1rem;
    line-height: 1.22;
  }

  .service-highlights .detail-card p {
    margin-top: 4px;
    font-size: 0.91rem;
    line-height: 1.48;
  }

  .faq-item {
    padding: 0;
    overflow: hidden;
    transition:
      border-color 0.18s ease,
      box-shadow 0.18s ease,
      transform 0.18s ease;
  }

  .faq-item[open] {
    border-color: rgba(20, 117, 209, 0.24);
    box-shadow: 0 18px 42px rgba(14, 32, 56, 0.1);
  }

  .faq-item summary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 72px;
    padding: 26px 76px 26px 30px;
    cursor: pointer;
    list-style: none;
  }

  .faq-item summary::-webkit-details-marker {
    display: none;
  }

  .faq-item summary::before,
  .faq-item summary::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 28px;
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: var(--blue);
    transform: translateY(-50%);
    transition: transform 0.18s ease, background 0.18s ease;
  }

  .faq-item summary::after {
    transform: translateY(-50%) rotate(90deg);
  }

  .faq-item[open] summary::after {
    transform: translateY(-50%) rotate(0deg);
  }

  .faq-item summary:focus-visible {
    color: var(--blue-mid);
    outline: none;
  }

  .faq-item summary:focus-visible {
    box-shadow: inset 0 0 0 3px rgba(20, 117, 209, 0.16);
  }

  .faq-item p {
    margin: 0;
    padding: 0 76px 30px 30px;
    border-top: 1px solid rgba(15, 52, 86, 0.08);
    color: var(--muted);
  }

  .faq-item[open] p {
    padding-top: 18px;
  }

  .side-panel {
    position: sticky;
    top: 132px;
    overflow: hidden;
  }

  .side-panel-photo {
    min-height: 190px;
    background-position: center;
    background-size: cover;
  }


  .side-panel-body {
    padding: 30px;
  }

  .service-fit-panel {
    border-radius: var(--radius-sm);
    box-shadow: 0 22px 46px rgba(14, 32, 56, 0.1);
  }

  .service-fit-panel .side-panel-photo {
    min-height: 220px;
    background-position: center;
    border-bottom: 1px solid rgba(14, 32, 56, 0.08);
  }

  .service-fit-panel .side-panel-body {
    display: grid;
    gap: 24px;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .service-product-placeholder {
    --placeholder-photo: url("assets/kingsecurityteammember.webp");
    position: relative;
    display: grid;
    align-content: start;
    justify-items: start;
    gap: 10px;
    min-height: 0;
    padding: 0 0 4px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: hidden;
  }

  .service-fit-panel,
  .service-fit-panel * {
    animation: none;
    transition: none;
  }

  .service-product-placeholder::before {
    content: "";
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    background:
      linear-gradient(180deg, rgba(3, 12, 24, 0) 48%, rgba(3, 12, 24, 0.2) 100%),
      var(--placeholder-photo) center / cover no-repeat;
    border-bottom: 1px solid rgba(14, 32, 56, 0.1);
  }

  .service-product-placeholder > * {
    margin-inline: 30px;
  }

  .service-product-placeholder-cameras {
    --placeholder-photo: url("assets/dmpvideocam.avif");
  }

  .service-product-placeholder-burglar {
    --placeholder-photo: url("assets/kingsecurityteammember.webp");
  }

  .service-product-placeholder-fire {
    --placeholder-photo: url("assets/kingsecuritycar.webp");
  }

  .service-product-placeholder-access {
    --placeholder-photo: url("assets/dmpvideocam.avif");
  }

  .service-product-placeholder-cabling {
    --placeholder-photo: url("assets/kingsecurityteammember.webp");
  }

  .service-product-placeholder-trailers {
    --placeholder-photo: url("assets/kingsecuritybillboard.webp");
  }

  .service-product-placeholder-kicker {
    display: inline-flex;
    width: fit-content;
    margin-top: 18px;
    padding: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--blue);
    box-shadow: none;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
  }

  .service-product-placeholder strong {
    display: block;
    color: var(--ink);
    font-size: 1.18rem;
    line-height: 1.1;
    text-shadow: none;
  }

  .service-product-placeholder > span:not(.service-product-placeholder-kicker) {
    display: block;
    max-width: 34ch;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.5;
    text-shadow: none;
  }

  .service-fit-panel .button:hover,
  .service-fit-panel .button:focus-visible {
    filter: none;
  }

  .service-fit-panel .button:active {
    transform: none;
  }

  .service-king-notes {
    display: grid;
    gap: 8px;
    margin: 4px 30px 0;
    padding: 0;
    list-style: none;
  }

  .service-fit-panel .button.block {
    width: auto;
    margin: 0 30px 30px;
  }

  .service-king-notes li {
    position: relative;
    padding-left: 18px;
    color: var(--ink);
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.4;
  }

  .service-king-notes li::before {
    content: "";
    position: absolute;
    top: 0.66em;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--blue);
    transform: translateY(-50%);
  }

  .service-fit-panel .side-panel-body h3 {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .service-fit-panel .side-panel-body h3::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 5px rgba(111, 163, 111, 0.16);
  }

  .service-fit-panel .check-list {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 18px;
  }

  .service-fit-panel .check-list li {
    min-height: 38px;
    display: flex;
    align-items: center;
    padding: 8px 12px 8px 34px;
    border: 1px solid rgba(20, 117, 209, 0.12);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.76);
    color: #435875;
    font-size: 0.92rem;
    font-weight: 700;
  }

  .service-fit-panel .check-list li::before {
    top: 50%;
    left: 12px;
    width: 9px;
    height: 9px;
    border: 0;
    background: var(--blue);
    box-shadow: 0 0 0 4px rgba(20, 117, 209, 0.12);
    transform: translateY(-50%);
  }

  .about-trust-panel .button.block {
    margin-top: 22px;
  }

  .about-hero-panel {
    min-height: 0;
  }

  .about-panel-note {
    margin-top: 18px;
    color: rgba(235, 246, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .about-service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-service-grid .service-body h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.18rem;
  }

  .service-note {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    margin-top: 16px;
    padding: 0 10px;
    border-radius: 999px;
    background: var(--blue-surface-note);
    color: var(--blue-mid);
    font-size: 0.8rem;
    font-weight: 800;
  }

  .about-principles {
    margin-top: 10px;
  }

  .about-local-section {
    background:
      radial-gradient(circle at top left, rgba(139, 211, 255, 0.16), transparent 34%),
      linear-gradient(180deg, #f8fbfe 0%, var(--blue-surface) 100%);
  }

  .about-local-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.84fr) minmax(0, 1fr);
    gap: 38px;
    align-items: center;
  }

  .about-photo-card {
    border: 1px solid rgba(14, 32, 56, 0.1);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow);
    overflow: hidden;
  }

  .about-photo-main {
    min-height: 320px;
    background-position: center;
    background-size: cover;
  }

  .about-photo-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(14, 32, 56, 0.08);
  }

  .about-photo-stack > div {
    min-height: 160px;
    background-position: center;
    background-size: cover;
  }

  .about-local-copy p + p {
    margin-top: 14px;
  }

  .about-local-actions {
    margin-top: 26px;
  }

  .about-trust-panel .side-panel-photo {
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #f6f9fc;
  }

  .check-list {
    display: grid;
    gap: 12px;
    margin-top: 20px;
    list-style: none;
  }

  .check-list li {
    position: relative;
    padding-left: 28px;
    color: var(--muted);
    line-height: 1.55;
  }

  .check-list li::before {
    content: "";
    position: absolute;
    top: 0.45em;
    left: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(20, 117, 209, 0.12);
    box-shadow: inset 0 0 0 5px #fff;
    border: 2px solid var(--blue);
  }

  .process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    margin-top: 52px;
    padding-top: 44px;
  }

  .process-grid::before {
    content: "";
    position: absolute;
    top: 21px;
    left: calc(12.5% + 21px);
    right: calc(12.5% + 21px);
    height: 3px;
    border-radius: 999px;
    background:
      linear-gradient(90deg, rgba(20, 117, 209, 0.12), rgba(20, 117, 209, 0.82), rgba(139, 211, 255, 0.9));
    box-shadow: 0 10px 28px rgba(20, 117, 209, 0.18);
  }

  .process-step {
    position: relative;
    min-height: 220px;
    padding: 34px 24px 26px;
    border: 1px solid rgba(20, 117, 209, 0.14);
    border-radius: 8px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 250, 255, 0.92));
    box-shadow:
      0 22px 46px rgba(14, 32, 56, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
    overflow: visible;
  }

  .process-step::before {
    content: "";
    position: absolute;
    top: -30px;
    left: 50%;
    width: 2px;
    height: 30px;
    background: rgba(20, 117, 209, 0.34);
    transform: translateX(-50%);
  }

  .process-step::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border-top: 3px solid rgba(139, 211, 255, 0.82);
    pointer-events: none;
  }

  .process-step:nth-child(even) {
    transform: translateY(22px);
  }

  .process-step h3 {
    color: var(--ink);
    font-family: var(--font);
    font-size: 1.16rem;
    line-height: 1.22;
  }

  .process-step p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.68;
  }

  .step-number {
    position: absolute;
    top: -45px;
    left: 50%;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-bottom: 0;
    border: 5px solid #fff;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--blue-glow));
    color: #fff;
    font-weight: 900;
    box-shadow:
      0 12px 26px rgba(20, 117, 209, 0.26),
      0 0 0 1px rgba(20, 117, 209, 0.12);
    transform: translateX(-50%);
  }

  .faq-grid {
    display: grid;
    grid-template-columns: minmax(0, 860px);
    justify-content: center;
    gap: 14px;
  }

  .page-band {
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  /* ---------- Local proof ---------- */

  .local-band {
    background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .local-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1.28fr);
    gap: 40px;
    align-items: center;
  }

  .local-copy .section-header {
    margin-bottom: 0;
  }

  .local-copy .section-header p {
    max-width: 620px;
  }

  .photo-wall {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(150px, 0.46fr);
    gap: 14px;
    align-items: start;
  }

  .local-photo {
    position: relative;
    overflow: hidden;
    min-height: 0;
    background: #dce7f0;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    box-shadow: 0 20px 46px rgba(14, 32, 56, 0.12);
  }

  .local-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 180ms ease;
  }

  .local-photo-primary {
    grid-column: 1;
    grid-row: 2;
    aspect-ratio: 680 / 510;
  }

  .local-photo-primary img {
    object-position: center center;
  }

  .local-photo-wide {
    grid-column: 1 / -1;
    grid-row: 1;
    aspect-ratio: 680 / 318;
  }

  .local-photo-wide img {
    object-position: center center;
  }

  .local-photo-tall {
    grid-column: 2;
    grid-row: 2;
    aspect-ratio: 46 / 75;
  }

  .local-photo-tall img {
    object-position: center top;
    transform: scale(1.05);
  }

  /* ---------- American-made equipment ---------- */

  .usa-band {
    position: relative;
    overflow: hidden;
    background: #f7fafc;
  }

  .usa-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(rgba(14, 32, 56, 0.05) 1px, transparent 1px);
    background-size: 100% 68px;
    pointer-events: none;
  }

  .usa-layout {
    position: relative;
    display: block;
  }

  .usa-visual {
    position: relative;
    min-height: 460px;
    border-radius: 32px;
    background:
      radial-gradient(circle at top right, rgba(230, 198, 184, 0.7), transparent 34%),
      linear-gradient(180deg, #eef4f8 0%, #f8fbfd 100%);
    border: 1px solid rgba(14, 32, 56, 0.06);
    box-shadow: 0 24px 54px rgba(6, 20, 38, 0.08);
    overflow: hidden;
  }

  .manufacturer-board {
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 24px;
    padding: 30px;
    min-height: 100%;
  }

  .manufacturer-board-header {
    display: grid;
    gap: 12px;
  }

  .manufacturer-board h2 {
    max-width: 760px;
    margin-top: 0;
  }

  .manufacturer-shelf {
    position: relative;
    display: grid;
    min-height: 100%;
  }

  .manufacturer-shelf::after {
    content: "";
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 0;
    height: 26px;
    border-radius: 999px;
    background: rgba(14, 32, 56, 0.08);
    filter: blur(4px);
  }

  .manufacturer-shelf-track {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 18px;
    min-height: 100%;
    padding: 24px 28px;
    border: 1px solid rgba(14, 32, 56, 0.08);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 34px rgba(6, 20, 38, 0.08);
  }

  .manufacturer-logo-row {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 126px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .manufacturer-logo-row::-webkit-scrollbar {
    display: none;
  }

  .manufacturer-scroll-indicator {
    display: none;
  }

  .dmp-showcase-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid rgba(14, 32, 56, 0.1);
    border-radius: 999px;
    background: #eef2f5;
    color: var(--ink);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.11em;
    text-transform: uppercase;
  }

  .manufacturer-logo-pill {
    flex: 0 0 auto;
    min-width: 120px;
    min-height: 86px;
    display: grid;
    place-items: center;
    padding: 18px 22px;
    border-radius: 20px;
    background: #f2f6fa;
    border: 2px solid rgba(20, 117, 209, 0.1);
    cursor: pointer;
    box-shadow: inset 4px 4px 10px rgba(168, 184, 200, 0.66), 8px 10px 20px rgba(80, 110, 138, 0.14);
    transition: transform 0.16s ease, background 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
  }

  .manufacturer-logo-pill.is-active {
    background: var(--blue-surface-active);
    border-color: rgba(20, 117, 209, 0.22);
    box-shadow: inset 3px 3px 8px rgba(118, 157, 193, 0.5), 10px 12px 22px rgba(63, 111, 153, 0.18);
  }

  .manufacturer-logo-pill:focus-visible {
    transform: translateY(-1px);
    background: var(--blue-surface-panel);
    border-color: rgba(20, 117, 209, 0.18);
    box-shadow: inset 2px 2px 6px rgba(168, 184, 200, 0.7), 3px 3px 8px rgba(168, 184, 200, 0.5), 12px 14px 22px rgba(80, 110, 138, 0.18);
    outline: none;
  }

  .manufacturer-logo-pill-image {
    overflow: hidden;
    padding: 12px 14px;
  }

  .manufacturer-logo-mark {
    color: #1c2431;
    font-family: var(--font);
    font-size: 1.02rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .manufacturer-logo-image {
    width: calc(100% + 44px);
    max-width: none;
    height: 67px;
    display: block;
    object-fit: cover;
    object-position: center;
  }

  .manufacturer-logo-pill-placeholder .manufacturer-logo-mark {
    color: rgba(28, 36, 49, 0.72);
  }

  .manufacturer-logo-pill-stock {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    padding: 12px 14px;
    background: linear-gradient(145deg, rgba(246, 249, 251, 0.96), rgba(232, 239, 246, 0.94));
    overflow: hidden;
  }

  .manufacturer-logo-pill-stock .manufacturer-logo-image {
    width: 108px;
    height: 50px;
    border-radius: 10px;
    object-fit: contain;
    box-shadow: inset 0 0 0 1px rgba(14, 32, 56, 0.08);
  }

  .manufacturer-logo-pill-stock .manufacturer-logo-mark {
    max-width: 72px;
    margin-left: 10px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: var(--blue-mid);
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    white-space: normal;
    text-align: left;
  }

  .manufacturer-detail-list {
    position: relative;
    min-height: 210px;
    border-top: 1px solid rgba(14, 32, 56, 0.06);
    background: transparent;
    box-shadow: none;
    overflow: hidden;
  }

  .manufacturer-detail {
    position: absolute;
    inset: 0;
    padding: 18px 0 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(24px);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
    scroll-margin-top: 140px;
  }

  .manufacturer-detail.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .manufacturer-detail:target {
    background: linear-gradient(90deg, rgba(20, 117, 209, 0.08), rgba(20, 117, 209, 0));
  }

  .manufacturer-detail strong {
    display: block;
    color: var(--ink);
    font-family: var(--font);
    font-size: 1.08rem;
    line-height: 1.2;
  }

  .manufacturer-detail-layout {
    display: grid;
    grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
    gap: 20px;
    align-items: start;
  }

  .manufacturer-detail-visual {
    display: grid;
    place-items: center;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .manufacturer-detail-visual img {
    width: 100%;
    max-width: 180px;
    height: auto;
    display: block;
    object-fit: contain;
  }

  .manufacturer-detail-placeholder .manufacturer-detail-visual img {
    max-width: 220px;
    aspect-ratio: 2 / 1;
    border-radius: 16px;
    object-fit: contain;
    box-shadow: 0 12px 24px rgba(14, 32, 56, 0.14);
  }

  .manufacturer-detail p {
    margin-top: 8px;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.62;
  }

  .manufacturer-detail-copy {
    display: grid;
    align-content: start;
    gap: 10px;
  }

  .manufacturer-detail-eyebrow {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border: 1px solid rgba(20, 117, 209, 0.14);
    border-radius: 999px;
    background: rgba(20, 117, 209, 0.08);
    color: var(--blue-mid);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .manufacturer-detail-eyebrow svg {
    width: 19px;
    height: 14px;
    flex: 0 0 auto;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(14, 32, 56, 0.08);
  }

  .manufacturer-detail-summary {
    margin-top: 0;
    max-width: 46ch;
  }

  .manufacturer-detail-points {
    display: grid;
    gap: 10px;
    margin: 2px 0 0;
    padding: 0;
    list-style: none;
  }

  .manufacturer-detail-points li {
    position: relative;
    padding-left: 18px;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .manufacturer-detail-points li::before {
    content: "";
    position: absolute;
    top: 0.58em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--blue), var(--blue-tint-bright));
    box-shadow: 0 0 0 4px rgba(20, 117, 209, 0.08);
    transform: translateY(-50%);
  }

  /* ---------- Reviews ---------- */

  .reviews-band {
    background: var(--wash);
  }

  .reviews-page-lead {
    padding-top: 154px;
  }

  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .review-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: 0 14px 32px rgba(14, 32, 56, 0.06);
  }

  .review-stars {
    margin-bottom: 14px;
    color: #e3a128;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0.08em;
  }

  .review-customer {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 18px;
  }

  .review-avatar {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    overflow: hidden;
    border: 2px solid #fff;
    border-radius: 50%;
    background: linear-gradient(145deg, #dce9f4, #eef4f8);
    box-shadow: 0 0 0 1px rgba(14, 32, 56, 0.12);
    color: rgba(15, 95, 179, 0.44);
  }

  .review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .review-card p {
    color: var(--ink);
    font-size: 0.96rem;
    line-height: 1.66;
  }

  .review-more {
    margin-top: 12px;
  }

  .review-more summary {
    width: fit-content;
    color: var(--blue-mid);
    font-size: 0.9rem;
    font-weight: 850;
    cursor: pointer;
  }

  .review-more summary:focus-visible {
    outline: 3px solid rgba(20, 117, 209, 0.24);
    outline-offset: 3px;
    border-radius: 4px;
  }

  .review-more p {
    margin-top: 12px;
  }

  .review-author {
    display: block;
    color: var(--ink);
    font-size: 0.86rem;
    font-weight: 800;
  }

  .review-source {
    display: inline-flex;
    align-items: center;
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.4;
  }

  .review-source-google {
    color: var(--blue-mid);
  }

  .review-source-google:hover,
  .review-source-google:focus-visible {
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  /* ---------- Emergency panel ---------- */

  .emergency-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    padding: 30px 34px;
    border-radius: var(--radius-lg);
    background: var(--blue-deep);
    color: #fff;
    box-shadow: var(--shadow);
  }

  .emergency-panel h2 {
    color: #fff;
    font-size: clamp(1.9rem, 3vw, 2.55rem);
    line-height: 1.08;
  }

  .emergency-panel .section-kicker {
    color: #d8e6f0;
  }

  .emergency-panel p {
    max-width: 46rem;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    line-height: 1.55;
  }

  .contact-card {
    display: grid;
    justify-items: end;
    gap: 12px;
    min-width: 300px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .contact-card .label {
    display: block;
    width: fit-content;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #d8e6f0;
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
  }

  .contact-card .phone-big {
    display: block;
    margin-top: 10px;
    font-family: var(--font);
    font-size: 1.7rem;
    font-weight: 700;
    color: #fff;
  }

  .contact-card small {
    display: block;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.55;
  }

  .contact-card .button {
    margin-top: 0;
    white-space: nowrap;
  }

  .emergency-ticket-card {
    justify-items: start;
    gap: 14px;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(10, 23, 43, 0.92), rgba(7, 18, 34, 0.82));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 18px 32px rgba(2, 9, 20, 0.18);
  }

  .emergency-ticket-card .label {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(216, 230, 240, 0.9);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .emergency-ticket-card .button {
    min-height: 48px;
    padding: 0 24px;
  }

  /* ---------- Floating emergency menu ---------- */

  .emergency-fab {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1100;
    display: grid;
    justify-items: end;
    gap: 12px;
    pointer-events: none;
  }

  .emergency-fab > * {
    pointer-events: auto;
  }

  body.mobile-menu-lock .emergency-fab {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .emergency-fab-toggle {
    --button-border-width: 2px;
    --button-border-bottom-width: 4px;
    --button-border-bottom-active: 2px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 14px 0 20px;
    border: var(--button-border-width) solid #b91c1c;
    border-bottom-width: var(--button-border-bottom-width);
    border-radius: 16px;
    background: #ffffff;
    color: #b91c1c;
    font: inherit;
    font-weight: 800;
    letter-spacing: 0.01em;
    box-shadow: 0 10px 22px rgba(120, 42, 42, 0.12);
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), color var(--transition), border-color var(--transition);
  }

  .emergency-fab-toggle:hover,
  .emergency-fab-toggle:focus-visible {
    background: #ffffff;
    color: #b91c1c;
    box-shadow: 0 10px 22px rgba(120, 42, 42, 0.12);
  }

  .emergency-fab-toggle:focus-visible {
    outline: 3px solid rgba(20, 117, 209, 0.26);
    outline-offset: 3px;
  }

  .emergency-fab-toggle:active {
    transform: translateY(2px);
    border-bottom-width: var(--button-border-bottom-active);
  }

  .emergency-fab-toggle-icon {
    position: relative;
    width: 36px;
    height: 36px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    margin-left: 2px;
    background: #c72a2a;
    color: transparent;
    font-size: 0;
    line-height: 0;
    box-shadow: inset 3px 3px 8px rgba(129, 20, 20, 0.36);
    transition: transform var(--transition), background-color var(--transition), box-shadow var(--transition);
  }

  .emergency-fab-toggle-icon::before,
  .emergency-fab-toggle-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    border-radius: 999px;
    background: #ffffff;
    transform: translate(-50%, -50%);
  }

  .emergency-fab-toggle-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .emergency-fab.is-open .emergency-fab-toggle-icon {
    transform: rotate(45deg);
    background: #b91c1c;
    box-shadow: inset 2px 2px 6px rgba(129, 20, 20, 0.3), 3px 3px 8px rgba(185, 28, 28, 0.18);
  }

  .emergency-fab-panel {
    width: min(320px, calc(100vw - 32px));
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 24px;
    background: rgba(238, 243, 247, 0.98);
    box-shadow: var(--neu-raised);
    backdrop-filter: blur(12px);
  }

  .emergency-fab-copy {
    margin: 0 0 14px;
    color: var(--ink);
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .emergency-fab-panel .button {
    width: 100%;
    justify-content: center;
  }

  /* ---------- Floating social menu ---------- */

  .social-fab {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 1100;
    display: grid;
    justify-items: start;
    gap: 12px;
    pointer-events: none;
  }

  .social-fab > * {
    pointer-events: auto;
  }

  body.mobile-menu-lock .social-fab {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .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 {
    z-index: 1002001 !important;
  }

  .asw-structure-overlay {
    z-index: 1002002 !important;
  }

  .asw-structure-modal {
    z-index: 1002003 !important;
  }

  body.mobile-menu-lock .asw-container {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body.kss-a11y-menu-open .masthead,
  body.kss-a11y-menu-open .emergency-fab,
  body.kss-a11y-menu-open .social-fab,
  body.kss-a11y-structure-open .masthead,
  body.kss-a11y-structure-open .emergency-fab,
  body.kss-a11y-structure-open .social-fab {
    opacity: 0;
    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;
    box-shadow: 0 0 0 8px rgba(7, 20, 38, 0.22) !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 #ffffff;
    border-radius: 10px;
    background: #071426;
    color: #ffffff;
    font: 700 0.88rem/1.35 var(--font);
    box-shadow: 0 12px 28px rgba(2, 8, 16, 0.32);
    pointer-events: none;
  }

  .kss-a11y-image-tooltip[hidden] {
    display: none;
  }

  .social-fab-toggle {
    --button-border-width: 2px;
    --button-border-bottom-width: 4px;
    --button-border-bottom-active: 2px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 14px 0 20px;
    border: var(--button-border-width) solid var(--blue-mid);
    border-bottom-width: var(--button-border-bottom-width);
    border-radius: 16px;
    background: var(--blue-surface);
    color: var(--blue-mid);
    font: inherit;
    font-weight: 800;
    letter-spacing: 0.01em;
    box-shadow: 0 10px 22px rgba(80, 110, 138, 0.12);
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition), background-color var(--transition), color var(--transition), border-color var(--transition);
  }

  .social-fab-toggle:hover,
  .social-fab-toggle:focus-visible {
    background: var(--blue-surface-hover);
    color: var(--blue-mid);
    filter: none;
  }

  .social-fab-toggle:focus-visible {
    outline: 3px solid rgba(20, 117, 209, 0.26);
    outline-offset: 3px;
  }

  .social-fab-toggle:active {
    transform: translateY(2px);
    border-bottom-width: var(--button-border-bottom-active);
  }

  .social-fab-toggle-icon {
    width: 36px;
    height: 36px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    margin-left: 2px;
    background: var(--blue);
    color: #ffffff;
    box-shadow: inset 3px 3px 8px rgba(8, 79, 147, 0.44);
    transition: transform var(--transition), background-color var(--transition), box-shadow var(--transition);
  }

  .social-fab-toggle-icon span {
    grid-area: 1 / 1;
    width: 14px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform var(--transition), opacity var(--transition);
  }

  .social-fab-toggle-icon span:nth-child(1) {
    transform: translateY(-4px);
  }

  .social-fab-toggle-icon span:nth-child(3) {
    transform: translateY(4px);
  }

  .social-fab.is-open .social-fab-toggle-icon {
    background: var(--blue);
    box-shadow: inset 2px 2px 6px rgba(8, 79, 147, 0.38), 3px 3px 8px rgba(15, 95, 179, 0.22);
  }

  .social-fab.is-open .social-fab-toggle-icon span:nth-child(1) {
    transform: rotate(45deg);
  }

  .social-fab.is-open .social-fab-toggle-icon span:nth-child(2) {
    opacity: 0;
  }

  .social-fab.is-open .social-fab-toggle-icon span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .social-fab-panel {
    width: min(320px, calc(100vw - 32px));
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 24px;
    background: rgba(238, 243, 247, 0.98);
    box-shadow: var(--neu-raised);
    backdrop-filter: blur(12px);
  }

  .social-fab-copy {
    margin: 0 0 14px;
    color: var(--ink);
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .social-fab-items {
    display: grid;
    gap: 12px;
  }

  .social-fab-facebook {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 14px;
    min-width: 0;
    padding: 14px 16px;
    border: 1px solid rgba(20, 117, 209, 0.16);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.08), rgba(59, 89, 152, 0.14));
    box-shadow: var(--neu-raised-sm);
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  }

  .social-fab-facebook:hover,
  .social-fab-facebook:focus-visible {
    transform: translateY(-1px);
    filter: brightness(1.03);
    box-shadow: var(--neu-raised-hover);
    outline: none;
  }

  .social-fab-facebook-icon {
    width: 56px;
    height: 56px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
  }

  .social-fab-facebook-icon svg {
    width: 56px;
    height: 56px;
    display: block;
    filter: drop-shadow(0 10px 18px rgba(24, 119, 242, 0.22));
  }

  .social-fab-facebook-copy {
    min-width: 0;
    color: var(--ink);
  }

  .social-fab-facebook-copy strong,
  .social-fab-facebook-copy small {
    display: block;
  }

  .social-fab-facebook-copy strong {
    font-size: 1rem;
    line-height: 1.2;
  }

  .social-fab-facebook-copy small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  /* ---------- Contact form ---------- */

  .contact-section {
    background: #fff;
    border-top: 1px solid var(--line);
  }

  .contact-page-section {
    padding-top: 150px;
  }

  .contact-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
    gap: 56px;
    align-items: start;
  }

  .contact-intro p {
    margin-top: 16px;
    color: var(--muted);
  }

  .contact-details {
    display: grid;
    gap: 14px;
    margin-top: 28px;
  }

  .contact-details a,
  .contact-details span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-weight: 750;
  }

  .quote-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding: 38px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .form-field {
    display: grid;
    gap: 7px;
  }

  .form-field[hidden] {
    display: none;
  }

  .form-field.full {
    grid-column: 1 / -1;
  }

  .form-field label {
    color: var(--ink);
    font-size: 0.82rem;
    font-weight: 850;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    width: 100%;
    min-height: 48px;
    padding: 14px 18px;
    border: 1px solid rgba(14, 32, 56, 0.2);
    border-radius: 7px;
    background: #fbfdff;
    color: var(--ink);
    font: inherit;
  }

  .form-field textarea {
    min-height: 130px;
    resize: vertical;
  }

  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(20, 117, 209, 0.12);
    outline: none;
  }

  .form-footer {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .form-footer small {
    max-width: 390px;
    color: var(--muted);
    line-height: 1.5;
  }

  /* ---------- Locations ---------- */

  .locations-section {
    background:
      linear-gradient(180deg, rgba(244, 248, 252, 0.92) 0%, #ffffff 100%);
    border-top: 1px solid var(--line);
  }

  .locations-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
    gap: 52px;
    align-items: center;
  }

  .locations-intro p {
    margin-top: 14px;
    color: var(--muted);
    line-height: 1.72;
  }

  .locations-map-help {
    max-width: 32rem;
    font-size: 0.92rem;
  }

  .locations-callout {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    color: var(--ink);
    font-weight: 850;
  }

  .location-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    list-style: none;
  }

  .locations-visual {
    display: grid;
    gap: 20px;
  }

  .service-area-card {
    overflow: hidden;
    border: 1px solid rgba(14, 32, 56, 0.1);
    border-radius: 18px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 252, 0.98));
    box-shadow: 0 24px 52px rgba(14, 32, 56, 0.1);
  }

  .service-area-map {
    position: relative;
    z-index: 0;
    min-height: 390px;
    background:
      radial-gradient(circle at top left, rgba(20, 117, 209, 0.1), transparent 42%),
      linear-gradient(180deg, #eff5fb 0%, #dfeaf5 100%);
  }

  .service-area-map .leaflet-pane,
  .service-area-map .leaflet-control-container {
    z-index: 1;
  }

  .service-area-map-fallback {
    position: absolute;
    inset: 18px;
    display: grid;
    place-items: center;
    padding: 24px;
    border: 1px dashed rgba(20, 117, 209, 0.35);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--ink);
    font-size: 0.95rem;
    line-height: 1.65;
    text-align: center;
  }

  .service-area-map.is-ready .service-area-map-fallback {
    display: none;
  }

  .service-area-map code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.9em;
  }

  .service-area-legend {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 22px 22px;
    border-top: 1px solid rgba(14, 32, 56, 0.08);
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 700;
  }

  .service-area-swatch {
    width: 44px;
    height: 18px;
    border: 2px solid rgba(20, 117, 209, 0.95);
    border-radius: 999px;
    background: rgba(20, 117, 209, 0.2);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  }

  .location-list li {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 14px 18px;
    border: 1px solid rgba(14, 32, 56, 0.12);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(14, 32, 56, 0.06);
  }

  .location-list .location-more {
    grid-column: 1 / -1;
    justify-content: center;
    border-color: rgba(20, 117, 209, 0.3);
    background: linear-gradient(135deg, rgba(20, 117, 209, 0.1), rgba(4, 136, 201, 0.08));
    color: var(--blue-mid);
    text-align: center;
  }

  /* ---------- CTA banner ---------- */

  .cta-banner {
    position: relative;
    overflow: hidden;
    background:
      linear-gradient(90deg, rgba(20, 117, 209, 0.1) 0%, rgba(20, 117, 209, 0) 44%),
      linear-gradient(180deg, #ffffff 0%, var(--wash) 100%);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    color: var(--ink);
  }

  .cta-banner::before,
  .cta-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  .cta-banner::before {
    bottom: auto;
    height: 4px;
    background: linear-gradient(90deg, var(--blue) 0%, var(--blue-glow) 34%, rgba(139, 211, 255, 0) 78%);
  }

  .cta-banner::after {
    background-image: linear-gradient(rgba(14, 32, 56, 0.04) 1px, transparent 1px);
    background-size: 100% 48px;
    mask-image: linear-gradient(90deg, #000 0%, transparent 74%);
    -webkit-mask-image: linear-gradient(90deg, #000 0%, transparent 74%);
    opacity: 0.62;
  }

  .cta-banner .wrap {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 48px 0;
    flex-wrap: wrap;
  }

  .cta-banner .wrap > div:first-child {
    max-width: 760px;
    padding-left: 30px;
    border-left: 3px solid rgba(20, 117, 209, 0.48);
  }

  .cta-banner h2 {
    color: var(--ink);
    font-family: var(--font);
    font-size: clamp(1.5rem, 2vw, 1.95rem);
    line-height: 1.18;
    max-width: 660px;
    text-wrap: balance;
  }

  .cta-banner p {
    margin-top: 8px;
    color: var(--muted);
    line-height: 1.68;
  }

  .cta-banner-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .cta-banner .button.services {
    --button-bg: var(--blue);
    --button-border: rgba(20, 117, 209, 0.42);
    --button-text: #ffffff;
    --button-shadow-dark: rgba(8, 79, 147, 0.46);
    --button-shadow-dark-outer: rgba(8, 79, 147, 0.34);
    --button-drop: rgba(18, 96, 179, 0.24);
  }

  .cta-banner .button.ghost {
    --button-bg: var(--blue-surface);
    --button-border: var(--blue-mid);
    --button-text: var(--blue-mid);
    --button-shadow-dark: rgba(170, 188, 205, 0.68);
    --button-shadow-dark-outer: rgba(170, 188, 205, 0.52);
    --button-drop: rgba(80, 110, 138, 0.16);
  }

  /* ---------- Footer ---------- */

  .footer {
    padding: 48px 0 28px;
    background: linear-gradient(180deg, #ffffff 0%, var(--wash) 100%);
    border-top: 1px solid var(--line);
    color: var(--muted);
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--line);
  }

  .footer-brand {
    display: grid;
    align-content: start;
    justify-items: start;
    gap: 12px;
  }

  .footer-logo {
    width: min(220px, 100%);
    height: auto;
    object-fit: contain;
    background: transparent;
    padding: 0;
    box-shadow: none;
    flex-shrink: 0;
  }

  .footer-brand > div {
    max-width: 32ch;
  }

  .footer-brand strong {
    display: block;
    color: var(--ink);
    font-family: var(--font);
    font-size: 1.1rem;
  }

  .footer-brand span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .footer h4 {
    color: var(--ink);
    font-size: 0.84rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
  }

  .footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.92rem;
  }

  .footer-col a:hover,
  .footer-col a:focus-visible,
  .footer-col a[aria-current="page"] {
    color: var(--blue-mid);
  }

  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
    font-size: 0.84rem;
  }

  .footer-bottom .legal-links {
    display: flex;
    flex-wrap: wrap;
  }

  .footer-bottom .legal-links a {
    margin-right: 16px;
  }

  .footer-bottom .legal-links a:last-child {
    margin-right: 0;
  }

  /* ---------- Soft neumorphic system ---------- */

  .neu-surface,
  .neu-raised {
    border: 1px solid var(--neu-border);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--neu-raised);
  }

  .neu-inset,
  .neu-recessed {
    border: 1px solid rgba(80, 102, 124, 0.08);
    border-radius: var(--radius-md);
    background: var(--surface-sunken);
    box-shadow: var(--neu-inset);
  }

  .neu-button {
    border: 1px solid var(--neu-border);
    border-radius: 999px;
    background: var(--surface);
    box-shadow: var(--neu-raised-sm);
    transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition);
  }

  .neu-button:hover,
  .neu-button:focus-visible {
    transform: translateY(-1px);
    box-shadow: var(--neu-raised-hover);
  }

  .neu-button:active {
    transform: translateY(0);
    box-shadow: var(--neu-inset);
  }

  .masthead {
    padding-top: 14px;
  }

  .navrow {
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: rgba(238, 243, 247, 0.92);
    box-shadow: 12px 12px 26px rgba(152, 168, 184, 0.34);
    backdrop-filter: blur(16px);
  }

  .navlinks > a,
  .nav-dropdown summary {
    border-radius: 999px;
    transition: color var(--transition), background-color var(--transition), box-shadow var(--transition), transform var(--transition);
  }

  .navlinks > a:hover,
  .navlinks > a:focus-visible,
  .nav-dropdown summary:hover,
  .nav-dropdown summary:focus-visible,
  .nav-dropdown[open] summary,
  .nav-dropdown summary[aria-current="page"],
  .navlinks > a[aria-current="page"] {
    background: transparent;
    box-shadow: none;
  }

  .nav-dropdown-menu {
    border-color: rgba(255, 255, 255, 0.68);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--neu-raised-hover);
  }

  .nav-dropdown-menu::before {
    border-color: rgba(255, 255, 255, 0.7);
    background: var(--surface);
  }

  .nav-dropdown-menu a {
    border-radius: var(--radius-sm);
  }

  .nav-dropdown-menu a:hover,
  .nav-dropdown-menu a:focus-visible {
    background: var(--surface-sunken);
    box-shadow: var(--neu-inset-sm);
  }

  .phone-link {
    border-color: rgba(255, 255, 255, 0.7);
    background: var(--surface);
    box-shadow: none;
  }

  .button.primary.top-quote {
    border-color: var(--blue-mid);
    background: var(--blue-surface);
    color: var(--blue-mid);
    box-shadow: none;
  }

  .button.primary.top-quote::after {
    background: var(--blue);
    color: #ffffff;
    box-shadow: var(--neu-inset-sm);
  }

  .button.primary.top-quote:hover,
  .button.primary.top-quote:focus-visible,
  .phone-link.top-call:hover,
  .phone-link.top-call:focus-visible {
    box-shadow: none;
  }

  .quick-services,
  .local-band,
  .contact-section,
  .locations-section,
  .reviews-band,
  .footer {
    background: var(--page-bg);
    border-color: rgba(80, 102, 124, 0.12);
  }

  .page-band,
  .usa-band,
  .about-local-section {
    background: linear-gradient(180deg, var(--surface-lift) 0%, var(--page-bg) 100%);
    border-color: rgba(80, 102, 124, 0.12);
  }

  .quick-grid,
  .service-card,
  .detail-card,
  .side-panel,
  .faq-item,
  .about-photo-card,
  .process-step,
  .usa-visual,
  .manufacturer-shelf-track,
  .review-card,
  .quote-form,
  .service-area-card,
  .location-list li {
    border: 1px solid var(--neu-border);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--neu-raised);
  }

  .quick-grid {
    gap: 14px;
    padding: 14px;
  }

  .quick-link {
    border: 1px solid rgba(111, 160, 204, 0.18);
    border-radius: var(--radius-md);
    box-shadow: var(--neu-dark-raised);
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  }

  .quick-link:hover,
  .quick-link:focus-visible {
    transform: translateY(-2px);
    box-shadow: var(--neu-dark-raised-hover);
  }

  .quick-link strong svg,
  .review-avatar,
  .service-highlights .detail-card::before,
  .check-list li::before,
  .signal-dot,
  .service-area-swatch {
    box-shadow: var(--neu-inset-sm);
  }

  .service-card,
  .detail-card,
  .review-card,
  .location-list li {
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  }

  .process-step {
    transition: none;
  }

  .service-card:focus-within,
  .detail-card:focus-within,
  .review-card:focus-within,
  .location-list li:focus-within {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.86);
    box-shadow: var(--neu-raised-hover);
  }

  .process-step:focus-within {
    border-color: rgba(20, 117, 209, 0.14);
    box-shadow:
      0 22px 46px rgba(14, 32, 56, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
  }

  .process-step:nth-child(even):focus-within {
    transform: translateY(22px);
  }

  .service-body,
  .side-panel-body {
    background: linear-gradient(180deg, rgba(246, 249, 251, 0.78), rgba(238, 243, 247, 0.92));
  }

  .service-note,
  .dmp-showcase-label {
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: var(--surface-sunken);
    box-shadow: var(--neu-inset-sm);
  }

  .panel-label {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(235, 246, 255, 0.86);
    box-shadow: inset 4px 4px 10px rgba(3, 18, 34, 0.26), inset -4px -4px 10px rgba(255, 255, 255, 0.05);
  }

  .service-highlights .detail-card,
  .service-fit-panel .check-list li {
    background:
      linear-gradient(90deg, rgba(20, 117, 209, 0.08), rgba(255, 255, 255, 0) 42%),
      var(--surface);
  }

  .service-fit-panel,
  .about-photo-card,
  .service-area-card {
    overflow: hidden;
  }

  .service-area-map,
  .service-area-map-fallback {
    background: var(--surface-sunken);
    box-shadow: var(--neu-inset);
  }

  .hero-proof-panel,
  .emergency-panel {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    box-shadow: 18px 22px 48px rgba(3, 12, 24, 0.34);
  }

  .panel-line,
  .contact-card {
    border-radius: var(--radius-md);
    box-shadow: var(--neu-dark-inset);
  }

  .process-grid::before {
    box-shadow: var(--neu-raised-sm);
  }

  .step-number {
    border-color: var(--surface-lift);
    box-shadow: var(--neu-blue-raised);
  }

  .faq-item[open] {
    border-color: rgba(20, 117, 209, 0.22);
    background: var(--surface-sunken);
    box-shadow: var(--neu-inset);
  }

  .faq-item summary:focus-visible {
    box-shadow: var(--neu-inset-sm);
  }

  .manufacturer-logo-pill {
    border-color: rgba(255, 255, 255, 0.72);
    background: var(--surface);
    box-shadow: var(--neu-raised-sm);
  }

  .manufacturer-logo-pill.is-active,
  .manufacturer-logo-pill:active {
    background: #e5eef7;
    border-color: rgba(20, 117, 209, 0.22);
    box-shadow: var(--neu-inset);
  }

  .manufacturer-logo-pill:focus-visible {
    box-shadow: var(--neu-raised-hover);
  }

  .quote-form {
    padding: 34px;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    border: 1px solid rgba(80, 102, 124, 0.12);
    border-radius: var(--radius-sm);
    background: var(--surface-sunken);
    box-shadow: var(--neu-inset);
    transition: border-color var(--transition), box-shadow var(--transition), background-color var(--transition);
  }

  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    background: #f0f5f9;
  }

  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    border-color: rgba(20, 117, 209, 0.58);
    box-shadow: var(--neu-inset), 0 0 0 4px rgba(20, 117, 209, 0.16);
  }

  .contact-details a,
  .contact-details span,
  .locations-callout {
    width: fit-content;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--surface);
    box-shadow: var(--neu-raised-sm);
  }

  .service-area-legend,
  .location-list .location-more {
    background: var(--surface-sunken);
    box-shadow: var(--neu-inset-sm);
  }

  .cta-banner {
    background: var(--page-bg);
    border-color: rgba(80, 102, 124, 0.12);
  }

  .cta-banner .wrap {
    width: min(1200px, calc(100% - 32px));
    margin-top: 42px;
    margin-bottom: 42px;
    padding: 34px;
    border: 1px solid var(--neu-border);
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(246, 249, 251, 0.96), rgba(232, 239, 246, 0.94));
    box-shadow: var(--neu-raised);
  }

  .cta-banner .wrap > div:first-child {
    padding-left: 24px;
  }

  .cta-banner .button.services {
    --button-bg: var(--blue);
    --button-border: var(--blue-mid);
    --button-text: #ffffff;
  }

  .cta-banner .button.ghost {
    --button-bg: var(--blue-surface);
    --button-border: var(--blue-mid);
    --button-text: var(--blue-mid);
    --button-shadow: 0 10px 22px rgba(80, 110, 138, 0.12);
    --button-shadow-hover: 0 14px 28px rgba(80, 110, 138, 0.18);
    --button-shadow-active: 0 6px 14px rgba(80, 110, 138, 0.14);
  }

  .footer-grid {
    border-bottom-color: rgba(80, 102, 124, 0.16);
  }

  /* ---------- Unified FAQ typography ---------- */

  body,
  button,
  input,
  select,
  textarea,
  .navlinks,
  .button,
  .phone-link,
  .eyebrow,
  .section-kicker,
  .brandname,
  .brandtag,
  h1,
  h2,
  h3,
  h4,
  p,
  li,
  summary {
    font-family: var(--font);
  }

  h1,
  .hero .hero-copy h1,
  .page-hero-copy h1,
  .page-hero-grid .page-hero-copy h1,
  .hero-about h1,
  .page-hero.custom h1,
  .section h2,
  .cta-banner h2,
  .service-body h3,
  .detail-card h3,
  .side-panel h3,
  .faq-item summary,
  .process-step h3,
  .footer-brand strong {
    font-weight: 700;
    letter-spacing: 0;
  }

  .lede,
  .hero-styled-lede,
  .section-header p,
  .service-body p,
  .detail-card p,
  .side-panel p,
  .faq-item p,
  .review-card p,
  .cta-banner p,
  .footer-brand span {
    font-weight: 400;
    letter-spacing: 0;
  }

  /* ---------- Responsive ---------- */

  @media (max-width: 1080px) {
    .quick-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .quick-link {
      min-height: 142px;
    }

    .quick-link:nth-child(1),
    .quick-link:nth-child(2) {
      grid-column: span 1;
    }

    .footer-grid {
      grid-template-columns: 1.3fr 1fr 1fr;
    }
  }

  @media (max-width: 980px) {
    .navrow {
      min-height: 0;
      display: grid;
      grid-template-columns: minmax(148px, 1fr) auto;
      align-items: center;
      padding: 10px 14px 12px 16px;
      gap: 10px 18px;
      border-radius: 30px;
    }

    .brandmark {
      width: 212px;
      height: 48px;
    }

    .navlinks {
      grid-column: 1 / -1;
      width: 100%;
      justify-content: center;
      padding: 4px 0;
    }

    .nav-dropdown-menu {
      top: calc(100% + 9px);
      left: 0;
    }

    .top-actions {
      width: auto;
      justify-self: end;
    }

    .service-grid,
    .reviews-grid,
    .local-layout,
    .usa-layout,
    .about-local-layout,
    .contact-layout,
    .content-grid,
    .page-hero-grid,
    .emergency-panel {
      grid-template-columns: 1fr;
    }

    .local-layout {
      gap: 34px;
    }

    .photo-wall {
      max-width: 760px;
      width: 100%;
    }

    .hero .wrap {
      grid-template-columns: 1fr;
      max-width: 760px;
      justify-content: stretch;
    }

    .hero {
      background-size: 100% 100%, 100% 100%, max(100%, 2400px) auto;
    }

    .process-grid {
      grid-template-columns: 1fr;
      gap: 20px;
      margin-top: 34px;
      padding: 0 0 0 46px;
    }

    .process-grid::before {
      top: 0;
      bottom: 0;
      left: 21px;
      right: auto;
      width: 3px;
      height: auto;
      background:
        linear-gradient(180deg, rgba(20, 117, 209, 0.12), rgba(20, 117, 209, 0.82), rgba(139, 211, 255, 0.9));
    }

    .process-step {
      min-height: 0;
      padding: 24px 24px 24px 28px;
    }

    .process-step,
    .process-step:nth-child(even) {
      transform: none;
    }

    .process-step::before {
      top: 30px;
      left: -24px;
      width: 24px;
      height: 2px;
      transform: none;
    }

    .step-number {
      top: 12px;
      left: -46px;
      transform: none;
    }

    .side-panel {
      position: static;
    }

    .hero-proof-panel {
      min-height: 0;
    }

    .quick-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-service-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .quick-link {
      min-height: 112px;
    }

    .usa-copy {
      order: -1;
    }

    .footer-grid {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 680px) {
    .masthead {
      --mobile-menu-top: 72px;
      padding: 8px 0;
    }

    .masthead::after {
      position: fixed;
      inset: 0;
      z-index: 1001;
      display: block;
      background: rgba(7, 20, 38, 0.42);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.2s ease, visibility 0s linear 0.2s;
      pointer-events: none;
    }

    .masthead.menu-open::after {
      opacity: 1;
      visibility: visible;
      transition-delay: 0s;
      pointer-events: auto;
    }

    .masthead .wrap {
      width: min(1200px, calc(100% - 24px));
    }

    .wrap {
      width: min(1200px, calc(100% - 24px));
    }

    section[id],
    a[id] {
      scroll-margin-top: 132px;
    }

    .service-alert .wrap {
      align-items: flex-start;
      flex-direction: column;
      padding: 10px 0;
      gap: 6px;
    }

    .hero-actions,
    .cta-banner-actions {
      width: 100%;
      flex-direction: column;
    }

    .home-facebook.tooltip-container {
      width: 100%;
      display: flex;
      justify-content: center;
      padding-top: 6px;
    }

    .home-facebook .tooltip {
      display: none;
    }

    .cta-banner .wrap {
      flex-direction: column;
      align-items: stretch;
      padding: 34px 0;
    }

    .cta-banner .wrap > div:first-child {
      padding-top: 16px;
      padding-left: 0;
      border-top: 3px solid rgba(20, 117, 209, 0.48);
      border-left: 0;
    }

    .button {
      width: 100%;
    }

    .quote-form {
      grid-template-columns: 1fr;
      padding: 22px;
    }

    .form-field.full,
    .form-footer {
      grid-column: auto;
    }

    .form-footer {
      align-items: stretch;
      flex-direction: column;
    }

    .navrow {
      position: relative;
      z-index: 1004;
      grid-template-columns: minmax(0, 1fr) auto auto;
      min-height: 56px;
      padding: 7px 8px 7px 10px;
      gap: 8px;
      border-radius: 28px;
    }

    .brand {
      grid-column: 1;
      grid-row: 1;
      min-width: 0;
    }

    .brandmark {
      width: 178px;
      height: 40px;
    }

    .brandmark img {
      width: auto;
      height: 100%;
    }

    .brandname {
      display: none;
      max-width: 138px;
      font-size: 0.84rem;
      line-height: 1.08;
      white-space: normal;
    }

    .top-actions {
      display: flex;
      align-items: center;
      justify-self: end;
      gap: 6px;
    }

    .top-actions > * {
      margin-left: 0;
    }

    .top-actions .button.primary.top-quote {
      --button-border-width: 3px;
      --button-border-bottom-width: 5px;
      --button-border-bottom-hover: 7px;
      --button-border-bottom-active: 3px;
      display: none;
      min-width: 0;
      min-height: 46px;
      padding: 0 18px;
      border-radius: 16px;
      border: var(--button-border-width) solid var(--blue-mid);
      border-bottom-width: var(--button-border-bottom-width);
      background: var(--blue);
      color: #fff;
      font-size: 0.9rem;
      white-space: nowrap;
      box-shadow: 0 10px 22px rgba(80, 110, 138, 0.12);
    }

    .top-actions .button.primary.top-quote::after {
      display: none;
    }

    .masthead.menu-open .top-actions .button.primary.top-quote {
      position: fixed;
      right: 16px;
      bottom: max(22px, env(safe-area-inset-bottom));
      left: 16px;
      z-index: 1005;
      display: flex;
      width: auto;
      min-height: 54px;
      border-radius: 16px;
      box-shadow: 0 10px 22px rgba(80, 110, 138, 0.12);
    }

    .phone-link.top-call {
      display: flex;
      min-width: 46px;
      width: 46px;
      min-height: 46px;
      padding: 0;
      border-radius: 16px;
      border: 2px solid rgba(20, 117, 209, 0.16);
      background: var(--blue-surface-pressed);
      color: var(--blue-mid);
      white-space: nowrap;
    }

    .phone-link {
      width: auto;
      min-width: 68px;
      height: 46px;
      min-height: 46px;
      justify-content: center;
      padding: 0 12px;
      border-radius: 16px;
      box-shadow: inset 4px 4px 10px rgba(166, 184, 201, 0.68), 8px 10px 18px rgba(80, 110, 138, 0.16);
    }

    .phone-link > span {
      position: absolute;
      width: 1px;
      height: 1px;
      overflow: hidden;
      clip: rect(0 0 0 0);
      white-space: nowrap;
    }

    .phone-link .phone-label {
      display: block;
      color: var(--blue-mid);
      font-size: 0.75rem;
      letter-spacing: 0.02em;
    }

    .phone-link .phone-number {
      display: none;
    }

    .mobile-menu-toggle {
      position: relative;
      display: grid;
      place-items: center;
      justify-self: end;
    }

    .navlinks {
      display: grid;
      position: fixed;
      top: calc(var(--mobile-menu-top) + 10px);
      right: 12px;
      left: 12px;
      z-index: 1002;
      grid-template-columns: 1fr;
      align-content: start;
      gap: 8px;
      width: auto;
      height: auto;
      max-height: calc(100vh - var(--mobile-menu-top) - 96px);
      max-height: calc(100dvh - var(--mobile-menu-top) - 96px);
      padding: 14px;
      border: 1px solid rgba(255, 255, 255, 0.76);
      border-radius: 24px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 245, 250, 0.98));
      box-shadow: 0 24px 60px rgba(7, 21, 36, 0.28);
      color: var(--ink);
      font-size: 0.95rem;
      opacity: 0;
      overflow-y: auto;
      overscroll-behavior: contain;
      transform: translateY(-10px) scale(0.98);
      transform-origin: top center;
      visibility: hidden;
      -webkit-overflow-scrolling: touch;
      pointer-events: none;
      transition:
        opacity 0.22s ease,
        transform 0.24s cubic-bezier(0.2, 0.8, 0.2, 1),
        visibility 0s linear 0.24s;
    }

    .masthead.menu-open .navlinks {
      opacity: 1;
      transform: translateY(0) scale(1);
      visibility: visible;
      transition-delay: 0s;
      pointer-events: auto;
    }

    .navlinks > a,
    .nav-dropdown summary {
      min-width: 0;
      min-height: 52px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 15px 16px;
      border: 1px solid rgba(20, 117, 209, 0.1);
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.76);
      color: var(--ink);
      box-shadow: 0 8px 18px rgba(86, 110, 135, 0.12);
      font-weight: 800;
      line-height: 1.2;
      text-align: left;
      white-space: normal;
    }

    .navlinks > a::after {
      content: "\2192";
      color: var(--blue);
      font-size: 0.95rem;
      line-height: 1;
    }

    .navlinks > a[href="#emergency"] {
      border-color: rgba(185, 28, 28, 0.18);
      background: #fff1f1;
      color: var(--red);
    }

    .nav-dropdown {
      grid-column: 1 / -1;
      position: static;
    }

    .nav-dropdown summary {
      justify-content: space-between;
    }

    .nav-dropdown::after {
      display: none;
    }

    .nav-dropdown-menu {
      position: static;
      display: none;
      width: 100%;
      max-width: none;
      margin-top: 8px;
      padding: 8px;
      border: 1px solid rgba(20, 117, 209, 0.08);
      border-radius: 18px;
      background: rgba(232, 240, 247, 0.72);
      box-shadow: inset 4px 4px 10px rgba(152, 168, 184, 0.2);
      opacity: 1;
      visibility: visible;
      transform: none;
      transition: none;
      pointer-events: auto;
    }

    .nav-dropdown-menu::before {
      display: none;
    }

    .nav-dropdown-menu a {
      min-height: 44px;
      padding: 12px 13px;
      color: var(--navy);
      opacity: 1;
      transform: none;
      transition: background 0.16s ease, color 0.16s ease;
    }

    .nav-dropdown[open] .nav-dropdown-menu {
      display: grid;
      gap: 2px;
      transform: none;
    }

    .hero {
      min-height: 640px;
    }

    .hero::before {
      inset: 0 0 0 36%;
      background-position: right top 48px, center;
      background-size: auto 86%, 100% 100%;
    }

    .page-hero {
      min-height: 540px;
      background-position: 64% center;
    }

    .hero .wrap {
      padding: 140px 0 78px;
      grid-template-columns: minmax(0, 1fr);
    }

    .page-hero .wrap,
    .page-hero-grid {
      padding: 132px 0 72px;
    }

    .hero-photo-stack {
      grid-template-columns: 1fr 1fr;
    }

    .hero-photo-stack span:first-child {
      grid-column: span 2;
      grid-row: auto;
      min-height: 190px;
    }

    .hero-copy {
      max-width: 100%;
    }

    .hero .hero-copy h1 {
      max-width: 100%;
      font-size: clamp(2.08rem, 8.4vw, 2.55rem);
      line-height: 1.1;
    }

    h1 {
      font-size: clamp(2.25rem, 11vw, 3rem);
      line-height: 1.02;
    }

    .lede {
      font-size: 1rem;
      line-height: 1.58;
      margin-top: 18px;
    }

    .hero-actions {
      margin-top: 22px;
    }

    .hero-actions .button {
      display: inline-flex;
      width: 100%;
      min-width: 0;
    }

    .hero-service-area {
      margin-top: 14px;
      font-size: 0.82rem;
    }

    .hero-display-emphasis {
      margin-top: 6px;
    }

    .hero .hero-styled-lede {
      margin-top: 20px;
      padding-left: 0;
      font-size: 0.97rem;
      line-height: 1.62;
    }

    .hero .hero-styled-lede span {
      margin-bottom: 6px;
      font-size: 1.03rem;
      line-height: 1.35;
    }

    .quick-services {
      margin-top: 0;
      padding-top: 24px;
    }

    .quick-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-service-grid {
      grid-template-columns: 1fr;
    }

    .quick-link {
      min-height: 136px;
      padding: 18px 14px;
    }

    .quick-link strong {
      align-items: flex-start;
      font-size: 1rem;
      line-height: 1.25;
    }

    .quick-link span {
      font-size: 0.8rem;
      line-height: 1.4;
    }

    .section {
      padding: 48px 0;
    }

    .split-grid,
    .process-grid,
    .faq-grid {
      grid-template-columns: 1fr;
    }

    .about-photo-main {
      min-height: 240px;
    }

    .about-photo-stack > div {
      min-height: 120px;
    }

    .section h2 {
      font-size: 1.75rem;
      line-height: 1.18;
    }

    .section-header {
      margin-bottom: 28px;
    }

    .usa-visual {
      min-height: 300px;
    }

    .manufacturer-board {
      padding: 18px;
    }

    .manufacturer-shelf-track {
      padding: 18px 18px 20px;
      border-radius: 22px;
    }

    .manufacturer-logo-row {
      min-height: 96px;
    }

    .manufacturer-scroll-indicator {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: -4px;
      margin-bottom: 2px;
      color: rgba(28, 36, 49, 0.68);
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .manufacturer-scroll-indicator-line {
      flex: 1 1 auto;
      min-width: 22px;
      height: 1px;
      background: linear-gradient(90deg, rgba(20, 117, 209, 0), rgba(20, 117, 209, 0.5));
    }

    .manufacturer-scroll-indicator-text {
      flex: 0 0 auto;
    }

    .manufacturer-scroll-indicator-arrow {
      flex: 0 0 auto;
      width: 9px;
      height: 9px;
      border-top: 2px solid rgba(20, 117, 209, 0.72);
      border-right: 2px solid rgba(20, 117, 209, 0.72);
      transform: rotate(45deg);
    }

    .manufacturer-detail-list {
      min-height: 420px;
    }

    .manufacturer-detail-layout {
      grid-template-columns: 1fr;
      gap: 14px;
    }

    .manufacturer-detail-visual {
      min-height: 0;
      max-width: none;
    }

    .manufacturer-detail {
      padding-top: 20px;
    }

    .manufacturer-detail-copy {
      gap: 12px;
    }

    .dmp-showcase-label {
      margin-bottom: 12px;
      font-size: 0.66rem;
    }

    .review-card {
      padding: 20px;
    }

    .reviews-page-lead {
      padding-top: 118px;
    }

    .contact-layout {
      gap: 30px;
    }

    .locations-layout {
      grid-template-columns: 1fr;
      gap: 26px;
    }

    .locations-visual {
      width: 100%;
      justify-items: center;
    }

    .service-area-card {
      width: min(100%, 540px);
      margin-right: auto;
      margin-left: auto;
    }

    .service-area-map {
      width: 100%;
      min-height: 340px;
    }

    .location-list {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .quote-form {
      gap: 14px;
      padding: 18px;
      border-radius: 10px;
      box-shadow: 0 16px 36px rgba(14, 32, 56, 0.1);
    }

    .form-field input,
    .form-field select,
    .form-field textarea {
      min-height: 50px;
      font-size: 16px;
    }

    .photo-wall {
      grid-template-columns: 1fr;
      grid-template-rows: auto;
      gap: 12px;
    }

    .local-photo {
      min-height: 0;
      aspect-ratio: 4 / 3;
    }

    .local-photo-primary {
      grid-column: auto;
      grid-row: auto;
    }

    .local-photo-wide {
      grid-column: auto;
      grid-row: auto;
      aspect-ratio: 680 / 318;
    }

    .local-photo-tall {
      grid-column: auto;
      grid-row: auto;
      aspect-ratio: 46 / 75;
    }

    .footer-grid {
      grid-template-columns: 1fr;
      gap: 24px;
    }

    .footer {
      padding-top: 38px;
    }

    .footer-bottom {
      align-items: flex-start;
      flex-direction: column;
    }

    .emergency-panel {
      gap: 22px;
      padding: 22px;
    }

    .contact-card {
      padding: 20px;
    }

    .emergency-ticket-card {
      padding: 18px;
    }

    .contact-card .phone-big {
      font-size: 1.45rem;
    }
  }

  @media (max-width: 380px) {
    .masthead {
      --mobile-menu-top: 72px;
    }

    .brandmark {
      width: 160px;
      height: 36px;
    }

    .brandmark img {
      width: auto;
      height: 100%;
    }

    .brandname {
      display: none;
      max-width: 112px;
      font-size: 0.78rem;
    }

    .quick-grid {
      grid-template-columns: 1fr;
    }

    .quick-link {
      min-height: 108px;
    }

    .location-list {
      grid-template-columns: 1fr;
    }

    .service-area-map {
      min-height: 300px;
    }
  }

  @media (max-width: 680px) {
    .navrow {
      border-color: rgba(255, 255, 255, 0.72);
      background: rgba(238, 243, 247, 0.96);
      box-shadow: var(--neu-raised-sm);
    }

    .mobile-menu-toggle {
      box-shadow: var(--neu-blue-raised);
    }

    .masthead.menu-open .top-actions .button.primary.top-quote {
      box-shadow: none;
    }

    .navlinks > a,
    .nav-dropdown summary {
      border-color: rgba(255, 255, 255, 0.72);
      border-radius: var(--radius-sm);
      background: var(--surface);
      box-shadow: var(--neu-raised-sm);
    }

    .nav-dropdown-menu {
      padding: 8px;
    }

    .nav-dropdown-menu a {
      border-radius: 14px;
    }

    .hero-actions .button,
    .cta-banner-actions .button {
      min-height: 54px;
    }

    .quick-grid {
      gap: 12px;
      padding: 12px;
      border-radius: var(--radius-lg);
    }

    .quick-link,
    .service-card,
    .detail-card,
    .side-panel,
    .faq-item,
    .review-card,
    .quote-form,
    .service-area-card,
    .emergency-panel,
    .contact-card {
      border-radius: var(--radius-lg);
    }

    .cta-banner .wrap {
      width: min(1200px, calc(100% - 24px));
      margin-top: 28px;
      margin-bottom: 28px;
      padding: 24px;
    }

    .cta-banner .wrap > div:first-child {
      padding-top: 16px;
      padding-left: 0;
    }

    .quote-form {
      padding: 22px;
      box-shadow: var(--neu-raised);
    }

    .emergency-fab {
      right: 16px;
      bottom: 16px;
    }

    .social-fab {
      left: 16px;
      bottom: 88px;
    }

    .emergency-fab-toggle {
      min-height: 54px;
      padding: 0 12px 0 18px;
      font-size: 0.92rem;
    }

    .social-fab-toggle {
      min-height: 54px;
      padding: 0 12px 0 18px;
      font-size: 0.92rem;
    }

    .emergency-fab-panel {
      width: min(300px, calc(100vw - 24px));
      padding: 16px;
      border-radius: 22px;
    }

    .social-fab-panel {
      width: min(300px, calc(100vw - 24px));
      padding: 16px;
      border-radius: 22px;
    }

    .form-field input,
    .form-field select,
    .form-field textarea {
      border-radius: var(--radius-sm);
    }

    .contact-details a,
    .contact-details span,
    .locations-callout {
      width: 100%;
    }
  }

  @media (max-width: 680px) {
    .hero {
      min-height: auto;
      align-items: start;
      background: var(--surface-lift);
      isolation: isolate;
    }

    .hero::before {
      content: none;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(246, 249, 251, 0.96) 0%, rgba(246, 249, 251, 0.98) 180px, rgba(246, 249, 251, 1) 100%);
      z-index: 0;
    }

    .hero .wrap {
      position: relative;
      z-index: 1;
      grid-template-columns: minmax(0, 1fr);
      gap: 14px;
      padding: 104px 0 56px;
    }

    .hero-mobile-visual {
      width: 100%;
      display: block;
      justify-self: stretch;
      margin-top: 18px;
      border-radius: 24px;
      box-shadow: 0 18px 34px rgba(7, 21, 36, 0.14);
      overflow: hidden;
    }

    .hero-mobile-visual img {
      width: 100%;
      aspect-ratio: 16 / 9;
      display: block;
      object-fit: cover;
      object-position: center center;
    }

    .hero-copy {
      max-width: 100%;
      padding-top: 0;
    }

    .hero-eyebrow-card {
      max-width: 100%;
      margin-bottom: 14px;
      font-size: 0.68rem;
      line-height: 1.35;
      white-space: normal;
    }

    .hero .hero-copy h1 {
      max-width: 100%;
      font-size: clamp(2.12rem, 10vw, 2.78rem);
      line-height: 1.06;
    }

    .hero .hero-styled-lede {
      max-width: 100%;
      margin-top: 18px;
      color: #42566c;
      font-size: 0.98rem;
      line-height: 1.58;
    }

    .hero-actions {
      margin-top: 24px;
    }
  }

  @media (max-width: 380px) {
    .hero-mobile-visual {
      border-radius: 20px;
    }

    .hero .wrap {
      padding-top: 98px;
    }

    .hero .hero-copy h1 {
      font-size: clamp(1.95rem, 10vw, 2.35rem);
    }
  }

  @media (min-width: 681px) and (max-width: 980px) {
    .masthead {
      --mobile-menu-top: 80px;
      padding: 10px 0;
    }

    .masthead::after {
      position: fixed;
      inset: 0;
      z-index: 1001;
      display: block;
      background: rgba(7, 20, 38, 0.42);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.2s ease, visibility 0s linear 0.2s;
      pointer-events: none;
    }

    .masthead.menu-open::after {
      opacity: 1;
      visibility: visible;
      transition-delay: 0s;
      pointer-events: auto;
    }

    .navrow {
      position: relative;
      z-index: 1004;
      grid-template-columns: minmax(0, 1fr) auto auto;
      min-height: 60px;
      padding: 8px 10px 8px 14px;
      border-radius: 30px;
    }

    .brandmark {
      width: 204px;
      height: 46px;
    }

    .top-actions {
      justify-self: end;
    }

    .top-actions .button.primary.top-quote {
      display: none;
    }

    .mobile-menu-toggle {
      position: relative;
      display: grid;
      place-items: center;
      justify-self: end;
    }

    .navlinks {
      display: grid;
      position: fixed;
      top: calc(var(--mobile-menu-top) + 10px);
      right: 16px;
      left: 16px;
      z-index: 1002;
      grid-template-columns: 1fr;
      align-content: start;
      justify-content: stretch;
      gap: 8px;
      width: auto;
      height: auto;
      max-height: calc(100vh - var(--mobile-menu-top) - 34px);
      max-height: calc(100dvh - var(--mobile-menu-top) - 34px);
      padding: 14px;
      border: 1px solid rgba(255, 255, 255, 0.76);
      border-radius: 24px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 245, 250, 0.98));
      box-shadow: 0 24px 60px rgba(7, 21, 36, 0.28);
      color: var(--ink);
      font-size: 0.95rem;
      opacity: 0;
      overflow-y: auto;
      overscroll-behavior: contain;
      transform: translateY(-10px) scale(0.98);
      transform-origin: top center;
      visibility: hidden;
      -webkit-overflow-scrolling: touch;
      pointer-events: none;
      transition:
        opacity 0.22s ease,
        transform 0.24s cubic-bezier(0.2, 0.8, 0.2, 1),
        visibility 0s linear 0.24s;
    }

    .masthead.menu-open .navlinks {
      opacity: 1;
      transform: translateY(0) scale(1);
      visibility: visible;
      transition-delay: 0s;
      pointer-events: auto;
    }

    .navlinks > a,
    .nav-dropdown summary {
      min-width: 0;
      min-height: 52px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 15px 16px;
      border: 1px solid rgba(255, 255, 255, 0.72);
      border-radius: var(--radius-sm);
      background: var(--surface);
      box-shadow: var(--neu-raised-sm);
      color: var(--ink);
      font-weight: 800;
      line-height: 1.2;
      text-align: left;
      white-space: normal;
    }

    .navlinks > a::after {
      content: "\2192";
      color: var(--blue);
      font-size: 0.95rem;
      line-height: 1;
    }

    .nav-dropdown {
      grid-column: 1 / -1;
      position: static;
    }

    .nav-dropdown::after,
    .nav-dropdown-menu::before {
      display: none;
    }

    .nav-dropdown-menu {
      position: static;
      display: none;
      width: 100%;
      max-width: none;
      margin-top: 8px;
      padding: 8px;
      border: 1px solid rgba(20, 117, 209, 0.08);
      border-radius: 18px;
      background: rgba(232, 240, 247, 0.72);
      box-shadow: inset 4px 4px 10px rgba(152, 168, 184, 0.2);
      opacity: 1;
      visibility: visible;
      transform: none;
      transition: none;
      pointer-events: auto;
    }

    .nav-dropdown-menu a {
      min-height: 44px;
      padding: 12px 13px;
      color: var(--navy);
      opacity: 1;
      transform: none;
      transition: background 0.16s ease, color 0.16s ease;
    }

    .nav-dropdown[open] .nav-dropdown-menu {
      display: grid;
      gap: 2px;
      transform: none;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    html {
      scroll-behavior: auto;
    }

    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }

    body.home-loading::before,
    body.home-loading::after {
      animation: none !important;
      opacity: 0;
      visibility: hidden;
    }

    body.home-loading > :not(script) {
      animation: none !important;
      opacity: 1;
    }

    .emergency-fab-toggle-icon {
      transition: none !important;
    }
  }

  html.asw-stop-animations body.home-loading::before,
  html.asw-stop-animations body.home-loading::after {
    animation: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  html.asw-stop-animations body.home-loading > :not(script) {
    animation: none !important;
    opacity: 1 !important;
  }

  @media (max-width: 980px) {
    .masthead {
      --mobile-menu-top: 76px;
    }

    .masthead::after,
    .masthead.menu-open::after {
      display: none;
    }

    .navrow {
      position: relative;
      z-index: 1004;
      grid-template-columns: minmax(0, 1fr) auto auto;
      overflow: visible;
    }

    .top-actions .button.primary.top-quote {
      display: none;
    }

    .mobile-menu-toggle {
      position: relative;
      z-index: 1006;
      display: grid;
      place-items: center;
    }

    .masthead.menu-open .mobile-menu-toggle {
      background: var(--blue-mid);
      border-color: var(--blue-mid);
      color: #ffffff;
      box-shadow: var(--neu-blue-pressed);
    }

    .navlinks {
      display: grid;
      position: absolute;
      top: 4px;
      right: -2px;
      left: auto;
      z-index: 1002;
      grid-template-columns: 1fr;
      align-content: start;
      justify-content: stretch;
      gap: 10px;
      width: min(390px, calc(100vw - 18px));
      height: auto;
      max-height: min(calc(100vh - var(--mobile-menu-top) - 22px), 78dvh);
      padding: 64px 14px 18px;
      border: 1px solid rgba(255, 255, 255, 0.72);
      border-radius: 28px;
      background: linear-gradient(180deg, rgba(238, 243, 247, 0.96) 0%, rgba(231, 239, 246, 0.96) 100%);
      box-shadow: 0 18px 34px rgba(7, 21, 36, 0.12);
      color: var(--ink);
      font-size: 1rem;
      opacity: 0;
      overflow-y: auto;
      overscroll-behavior: contain;
      transform: translateY(-10px);
      transform-origin: top center;
      visibility: hidden;
      -webkit-overflow-scrolling: touch;
      pointer-events: none;
      transition:
        opacity 0.22s ease,
        transform 0.24s cubic-bezier(0.2, 0.8, 0.2, 1),
        visibility 0s linear 0.24s;
    }

    .masthead.menu-open .navlinks {
      opacity: 1;
      transform: translateY(0);
      visibility: visible;
      transition-delay: 0s;
      pointer-events: auto;
    }

    .masthead.menu-open .navrow {
      border-radius: 28px;
      box-shadow: 0 12px 28px rgba(7, 21, 36, 0.12);
    }

    .navlinks > a,
    .nav-dropdown summary {
      min-width: 0;
      min-height: 58px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 17px 18px;
      border: 1px solid rgba(255, 255, 255, 0.76);
      border-radius: 16px;
      background: var(--surface);
      box-shadow: var(--neu-raised-sm);
      color: var(--ink);
      font-size: 1rem;
      font-weight: 800;
      line-height: 1.2;
      text-align: left;
      white-space: normal;
    }

    .nav-dropdown summary[aria-current="page"] {
      background: var(--surface);
      box-shadow: var(--neu-raised-sm);
      color: var(--ink);
    }

    .nav-dropdown summary::after {
      border-right-color: var(--blue);
      border-bottom-color: var(--blue);
      opacity: 0.82;
    }

    .nav-dropdown[open] summary {
      color: var(--blue-mid);
    }

    .navlinks > a::after {
      content: "\2192";
      flex: 0 0 auto;
      color: var(--blue);
      font-size: 1rem;
      line-height: 1;
    }

    .nav-dropdown {
      grid-column: 1 / -1;
      position: static;
    }

    .nav-dropdown::after,
    .nav-dropdown-menu::before {
      display: none;
    }

    .nav-dropdown-menu {
      position: static;
      display: none;
      width: 100%;
      max-width: none;
      margin-top: 10px;
      padding: 10px;
      border: 1px solid rgba(20, 117, 209, 0.08);
      border-radius: 18px;
      background: rgba(232, 240, 247, 0.84);
      box-shadow: inset 4px 4px 10px rgba(152, 168, 184, 0.2);
      opacity: 1;
      visibility: visible;
      transform: none;
      transition: none;
      pointer-events: auto;
    }

    .nav-dropdown-menu a {
      min-height: 48px;
      padding: 13px 14px;
      border-radius: 14px;
      color: var(--navy);
      opacity: 1;
      transform: none;
      transition: background 0.16s ease, color 0.16s ease;
    }

    .nav-dropdown[open] .nav-dropdown-menu {
      display: grid;
      gap: 4px;
      transform: none;
    }

    .masthead.menu-open .top-actions .button.primary.top-quote {
      display: none;
    }

    .masthead.menu-open .navlinks .menu-quote {
      position: sticky;
      right: auto;
      bottom: 0;
      left: auto;
      z-index: 2;
      display: inline-flex !important;
      width: 100%;
      min-height: 46px;
      padding: 0 12px 0 22px;
      margin-top: 14px;
      margin-left: 0;
      border-color: var(--blue-mid);
      border-radius: 16px;
      background: var(--blue-surface);
      color: var(--blue-mid);
      box-shadow: 0 10px 22px rgba(80, 110, 138, 0.12);
    }

    .navlinks .menu-quote::after {
      display: inline-grid;
      flex: 0 0 auto;
      background: rgba(255, 255, 255, 0.92);
      color: var(--blue-mid);
      box-shadow: var(--neu-inset-sm);
    }
  }

  @media (max-width: 680px) {
    .contact-page-section {
      padding-top: 116px;
    }

    .emergency-panel {
      gap: 22px;
      padding: 24px;
    }

    .emergency-panel h2 {
      font-size: clamp(1.85rem, 8vw, 2.35rem);
    }

    .contact-card {
      min-width: 0;
      justify-items: stretch;
    }

    .contact-card .label {
      justify-self: start;
    }

    .contact-card .button {
      width: auto;
      min-height: 44px;
      justify-self: start;
      padding: 0 20px;
      font-size: 0.84rem;
      white-space: nowrap;
    }

    .emergency-ticket-card {
      gap: 12px;
      padding: 16px 18px;
      border-radius: 20px;
      background: linear-gradient(180deg, rgba(8, 20, 38, 0.78), rgba(6, 16, 30, 0.66));
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    }

    .emergency-ticket-card .label {
      font-size: 0.68rem;
      letter-spacing: 0.11em;
    }

    .emergency-ticket-card .button {
      min-height: 46px;
      padding: 0 18px;
      font-size: 0.82rem;
      border-radius: 16px;
    }
  }

  /* ---------- Unified section backgrounds ---------- */

  body {
    background: var(--page-bg);
  }

  .quick-services,
  .section,
  .local-band,
  .usa-band,
  .locations-section,
  .reviews-band,
  .contact-section,
  .page-band,
  .about-local-section,
  .footer {
    background: var(--page-bg);
  }

  .local-band,
  .locations-section,
  .contact-section,
  .page-band,
  .footer {
    border-top: 1px solid rgba(80, 102, 124, 0.12);
  }

  .local-band {
    border-bottom: 0;
  }

  .usa-band::before {
    content: none;
  }

  .hero {
    background: var(--surface-lift);
  }

  .emergency-panel {
    background: var(--blue-deep);
  }

  @media (max-width: 560px) {
    .social-fab,
    .emergency-fab {
      gap: 10px;
      bottom: max(12px, env(safe-area-inset-bottom) + 12px);
    }

    .social-fab {
      left: 12px;
    }

    .emergency-fab {
      right: 12px;
    }

    .social-fab-toggle,
    .emergency-fab-toggle {
      gap: 8px;
      min-height: 48px;
      padding: 0 10px 0 14px;
      border-radius: 15px;
      font-size: 0.84rem;
      letter-spacing: 0;
    }

    .social-fab-toggle-label,
    .emergency-fab-toggle-label {
      line-height: 1.12;
    }

    .social-fab-toggle-label {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    .social-fab-toggle {
      width: 54px;
      min-width: 54px;
      min-height: 54px;
      padding: 0;
      justify-content: center;
      border-radius: 50%;
      background: linear-gradient(180deg, rgba(243, 249, 255, 0.98), rgba(227, 238, 249, 0.98));
      box-shadow: 0 12px 28px rgba(80, 110, 138, 0.18);
    }

    .social-fab-toggle:hover,
    .social-fab-toggle:focus-visible {
      background: linear-gradient(180deg, rgba(243, 249, 255, 0.98), rgba(227, 238, 249, 0.98));
      color: var(--blue-mid);
      filter: none;
    }

    .emergency-fab-toggle-label {
      max-width: 10ch;
      text-wrap: balance;
    }

    .social-fab-toggle-icon,
    .emergency-fab-toggle-icon {
      width: 32px;
      height: 32px;
      flex: 0 0 32px;
      margin-left: 0;
    }

    .social-fab-toggle-icon {
      width: 34px;
      height: 34px;
      flex-basis: 34px;
    }

    .social-fab-toggle-icon span,
    .emergency-fab-toggle-icon::before,
    .emergency-fab-toggle-icon::after {
      width: 12px;
    }

    .social-fab-toggle-icon span:nth-child(1) {
      transform: translateY(-3px);
    }

    .social-fab-toggle-icon span:nth-child(3) {
      transform: translateY(3px);
    }

    .social-fab-panel,
    .emergency-fab-panel {
      width: min(280px, calc(100vw - 24px));
      padding: 14px;
      border-radius: 20px;
    }

    .social-fab-copy,
    .emergency-fab-copy {
      margin-bottom: 12px;
      font-size: 0.88rem;
      line-height: 1.45;
    }

    .social-fab-facebook {
      gap: 10px;
      padding: 12px 14px;
      border-radius: 16px;
    }

    .social-fab-facebook-icon,
    .social-fab-facebook-icon svg {
      width: 48px;
      height: 48px;
    }

    .social-fab-facebook-copy strong {
      font-size: 0.94rem;
    }

    .social-fab-facebook-copy small {
      font-size: 0.78rem;
      line-height: 1.35;
    }
  }
