
    :root {
      color-scheme: dark;
      --bg: #070909;
      --bg-soft: #10130f;
      --panel: #151812;
      --panel-strong: #1f2118;
      --panel-blue: #102334;
      --gold: #e3aa36;
      --gold-2: #f4c968;
      --gold-dark: #9b6b18;
      --text: #f7f5ed;
      --muted: #c8c1af;
      --muted-2: #928a79;
      --line: rgba(227, 170, 54, 0.24);
      --line-soft: rgba(255, 255, 255, 0.1);
      --line-strong: rgba(214, 203, 157, 0.46);
      --shadow: 0 26px 70px rgba(0, 0, 0, 0.38);
      --radius: 8px;
      --container: min(100% - 64px, 1440px);
      --container-narrow: min(90vw, 1320px);
      --header-height: 90px;
      --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
      --ease-soft: cubic-bezier(.16, 1, .3, 1);
      --ink: var(--text);
      --ink-strong: var(--text);
      --gold-strong: var(--gold);
      --sans: Inter, Arial, sans-serif;
      --serif: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-width: 320px;
      background:
        radial-gradient(circle at 15% 0%, rgba(20, 52, 67, 0.34), transparent 32rem),
        linear-gradient(180deg, #090b0b 0%, var(--bg) 48%, #080909 100%);
      color: var(--text);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      line-height: 1.5;
      overflow-x: hidden;
    }

    body::before {
      position: fixed;
      inset: 0;
      z-index: -2;
      content: "";
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
      background-size: 72px 72px;
      mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 72%);
    }

    body::after {
      position: fixed;
      inset: auto 0 0;
      z-index: -1;
      height: 38vh;
      pointer-events: none;
      content: "";
      background: linear-gradient(180deg, transparent, rgba(227, 170, 54, 0.05));
    }

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

    a:hover {
      color: var(--gold-2);
    }

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

    button {
      font: inherit;
    }

    svg {
      width: 1em;
      height: 1em;
      flex: 0 0 auto;
    }

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

    .icon-sprite {
      position: absolute;
      width: 0;
      height: 0;
      overflow: hidden;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 40;
      background: rgba(6, 7, 7, 0.86);
      border-bottom: 1px solid var(--line-soft);
      backdrop-filter: blur(18px);
      transition: background 260ms ease, box-shadow 260ms ease;
    }

    body.is-scrolled .site-header {
      background: rgba(6, 7, 7, 0.94);
      box-shadow: 0 14px 40px rgba(0, 0, 0, 0.36);
    }

    .topbar {
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0;
      text-transform: uppercase;
    }

    .topbar-inner,
    .nav-inner,
    .hero-inner,
    .section-inner,
    .footer-inner,
    .footer-bottom {
      width: var(--container);
      margin-inline: auto;
    }

    .topbar-inner {
      display: flex;
      justify-content: flex-end;
      gap: 24px;
      min-height: 32px;
      align-items: center;
      color: var(--muted);
    }

    .utility-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap;
    }

    .utility-link svg {
      color: var(--gold);
      font-size: 0.88rem;
    }

    .nav-inner {
      position: relative;
      width: min(92vw, 1760px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
      min-height: 58px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 16px;
      min-width: 260px;
    }

    .brand-mark {
      width: 54px;
      height: 54px;
      object-fit: contain;
    }

    .brand-wordmark {
      width: min(244px, 42vw);
      height: auto;
      object-fit: contain;
    }

    .main-nav {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 22px;
      flex: 1;
      font-size: 0.92rem;
      font-weight: 800;
    }

    .nav-item {
      position: relative;
    }

    .nav-link,
    .nav-trigger {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      min-height: 44px;
      color: var(--text);
      border: 0;
      background: transparent;
      cursor: pointer;
      transition: color 200ms ease;
    }

    .nav-link.is-active {
      color: var(--gold-2);
    }

    .nav-trigger svg {
      font-size: 0.76rem;
      transition: transform 220ms ease;
    }

    .nav-trigger[aria-expanded="true"] svg {
      transform: rotate(180deg);
    }

    .submenu {
      position: absolute;
      top: calc(100% - 1px);
      left: 50%;
      z-index: 2;
      width: 260px;
      max-height: min(70vh, 640px);
      overflow-y: auto;
      overscroll-behavior: contain;
      padding: 10px;
      visibility: hidden;
      pointer-events: none;
      opacity: 0;
      transform: translateX(-50%);
      background: rgba(14, 15, 13, 0.98);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      transition: opacity 140ms ease, visibility 0s linear 140ms;
    }

    .nav-item.is-open > .submenu,
    .nav-trigger[aria-expanded="true"] + .submenu {
      visibility: visible;
      pointer-events: auto;
      opacity: 1;
      transition-delay: 0s;
    }

    .submenu a {
      display: block;
      padding: 9px 10px;
      color: var(--muted);
      border-radius: 6px;
      font-weight: 750;
    }

    .submenu a:hover {
      color: var(--text);
      background: rgba(227, 170, 54, 0.1);
    }

    .nav-item--mega {
      position: static;
    }

    .services-mega {
      left: 0;
      right: 0;
      width: auto;
      max-height: min(calc(100vh - 108px), 780px);
      padding: 0;
      overflow-x: hidden;
      transform: translateY(10px);
      border-color: rgba(227, 170, 54, 0.34);
      background: rgba(8, 10, 10, 0.99);
    }

    .nav-item--mega.is-open > .services-mega,
    .nav-item--mega > .nav-trigger[aria-expanded="true"] + .services-mega {
      transform: translateY(0);
    }

    .services-mega__head {
      display: grid;
      grid-template-columns: minmax(130px, 0.7fr) minmax(320px, 2fr) auto;
      align-items: center;
      gap: 24px;
      padding: 20px 24px;
      border-bottom: 1px solid var(--line);
      background: linear-gradient(90deg, rgba(227, 170, 54, 0.08), rgba(16, 35, 52, 0.24));
    }

    .services-mega__eyebrow,
    .services-mega__group h2,
    .services-mega__feature-overlay small {
      color: var(--gold-2);
      font-size: 0.72rem;
      font-weight: 900;
      letter-spacing: 0;
      text-transform: uppercase;
    }

    .services-mega__statement {
      max-width: 680px;
      color: var(--text);
      font-family: Manrope, Inter, sans-serif;
      font-size: clamp(1rem, 1.2vw, 1.24rem);
      line-height: 1.35;
    }

    .services-mega a.services-mega__all {
      display: inline-flex;
      align-items: center;
      justify-content: flex-end;
      gap: 10px;
      padding: 9px 0;
      color: var(--gold-2);
      white-space: nowrap;
    }

    .services-mega__all svg,
    .services-mega__links svg,
    .services-mega__business-grid svg {
      transition: transform 180ms ease;
    }

    .services-mega__all:hover svg,
    .services-mega__links a:hover svg,
    .services-mega__business-grid a:hover svg {
      transform: translateX(4px);
    }

    .services-mega__body {
      display: grid;
      grid-template-columns: minmax(250px, 0.95fr) minmax(210px, 0.72fr) minmax(0, 2.35fr);
      min-height: 270px;
    }

    .services-mega a.services-mega__feature {
      position: relative;
      display: grid;
      min-height: 236px;
      padding: 0;
      margin: 18px;
      overflow: hidden;
      color: var(--text);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #111;
    }

    .services-mega__feature img,
    .services-mega__feature-overlay {
      grid-area: 1 / 1;
      width: 100%;
      height: 100%;
    }

    .services-mega__feature img {
      object-fit: cover;
      object-position: center 38%;
      transition: transform 420ms var(--ease);
    }

    .services-mega__feature:hover img {
      transform: scale(1.035);
    }

    .services-mega__feature-overlay {
      align-self: end;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      gap: 7px;
      padding: 26px 22px 20px;
      background: linear-gradient(180deg, transparent 8%, rgba(2, 4, 4, 0.94) 100%);
    }

    .services-mega__feature-overlay strong {
      font-family: Manrope, Inter, sans-serif;
      font-size: 1.2rem;
      line-height: 1.2;
    }

    .services-mega__feature-overlay span {
      color: var(--muted);
      font-size: 0.82rem;
      font-weight: 600;
      line-height: 1.45;
    }

    .services-mega__group {
      min-width: 0;
      padding: 22px 18px;
      border-left: 1px solid var(--line-soft);
    }

    .services-mega__group h2 {
      margin: 0 0 13px;
      font-family: Inter, sans-serif;
    }

    .services-mega__links,
    .services-mega__business-grid {
      display: grid;
      gap: 4px;
    }

    .services-mega__business-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 5px 10px;
    }

    .services-mega__links a,
    .services-mega__business-grid a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      min-width: 0;
      min-height: 42px;
      padding: 9px 10px;
      color: var(--muted);
      border: 1px solid transparent;
      border-radius: 5px;
      font-size: 0.82rem;
      line-height: 1.28;
    }

    .services-mega__links a:hover,
    .services-mega__links a:focus-visible,
    .services-mega__business-grid a:hover,
    .services-mega__business-grid a:focus-visible {
      color: var(--text);
      border-color: var(--line);
      background: rgba(227, 170, 54, 0.08);
      outline: none;
    }

    .services-mega__links a span,
    .services-mega__business-grid a span {
      min-width: 0;
      overflow-wrap: anywhere;
    }

    .services-mega__links a svg,
    .services-mega__business-grid a svg {
      color: var(--gold);
    }

    .training-mega__body {
      grid-template-columns: minmax(260px, 0.82fr) minmax(0, 2.18fr);
      min-height: 292px;
    }

    .training-mega__courses {
      min-width: 0;
      padding: 22px 20px;
      border-left: 1px solid var(--line-soft);
    }

    .training-mega__courses h2 {
      margin: 0 0 13px;
      color: var(--gold-2);
      font-family: Inter, sans-serif;
      font-size: 0.72rem;
      font-weight: 900;
      letter-spacing: 0;
      text-transform: uppercase;
    }

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

    .services-mega a.training-mega__link {
      display: grid;
      grid-template-columns: 38px minmax(0, 1fr) 18px;
      align-items: center;
      gap: 12px;
      min-width: 0;
      min-height: 82px;
      padding: 11px 12px;
      color: var(--text);
      border: 1px solid var(--line-soft);
      border-radius: 5px;
      background: rgba(255, 255, 255, 0.025);
    }

    .services-mega a.training-mega__link:hover,
    .services-mega a.training-mega__link:focus-visible {
      border-color: rgba(227, 170, 54, 0.48);
      background: rgba(227, 170, 54, 0.08);
      outline: none;
    }

    .training-mega__link-icon {
      display: grid;
      place-items: center;
      width: 38px;
      height: 38px;
      color: var(--gold-2);
      border: 1px solid rgba(227, 170, 54, 0.4);
      border-radius: 5px;
      background: rgba(227, 170, 54, 0.06);
    }

    .training-mega__link-icon svg {
      width: 20px;
      height: 20px;
    }

    .training-mega__link-copy {
      display: grid;
      min-width: 0;
      gap: 4px;
    }

    .training-mega__link-copy strong {
      font-family: Manrope, Inter, sans-serif;
      font-size: 0.86rem;
      line-height: 1.25;
    }

    .training-mega__link-copy small {
      color: var(--muted);
      font-size: 0.7rem;
      font-weight: 600;
      line-height: 1.35;
    }

    .training-mega__link > svg {
      color: var(--gold);
      transition: transform 180ms ease;
    }

    .training-mega__link:hover > svg {
      transform: translateX(4px);
    }

    .phone-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-height: 42px;
      padding: 0 18px;
      white-space: nowrap;
      color: var(--text);
      border: 1px solid rgba(244, 201, 104, 0.42);
      border-radius: 999px;
      font-weight: 900;
    }

    .phone-link svg {
      color: var(--gold);
    }

    .mobile-header-controls {
      display: none;
      align-items: center;
      gap: 10px;
    }

    .mobile-header-phone {
      display: none;
    }

    .menu-toggle {
      display: none;
      width: 42px;
      height: 42px;
      place-items: center;
      color: var(--text);
      background: transparent;
      border: 1px solid var(--line);
      border-radius: 999px;
      cursor: pointer;
    }

    .mobile-actions {
      display: none;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 50px;
      padding: 0 21px;
      border-radius: 6px;
      border: 1px solid transparent;
      font-size: 0.88rem;
      font-weight: 950;
      line-height: 1;
      transition: transform 220ms var(--ease), border-color 220ms ease, background 220ms ease, color 220ms ease, box-shadow 220ms ease;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
      color: #090909;
      background: linear-gradient(135deg, var(--gold-2), var(--gold));
      box-shadow: 0 18px 34px rgba(227, 170, 54, 0.2);
    }

    .btn-primary:hover {
      color: #050505;
      box-shadow: 0 22px 44px rgba(227, 170, 54, 0.28);
    }

    .btn-secondary {
      color: var(--text);
      background: rgba(255, 255, 255, 0.03);
      border-color: rgba(244, 201, 104, 0.34);
    }

    .btn-secondary:hover {
      color: var(--text);
      border-color: rgba(244, 201, 104, 0.62);
      background: rgba(244, 201, 104, 0.08);
    }

    .hero {
      position: relative;
      min-height: 760px;
      isolation: isolate;
      overflow: hidden;
      border-bottom: 1px solid var(--line);
    }

    .hero-media {
      position: absolute;
      inset: 0;
      z-index: -2;
    }

    .hero-media img,
    .hero-media video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      filter: saturate(0.9) contrast(1.04);
      animation: mediaBreathe 18s ease-in-out infinite alternate;
    }

    .hero::before {
      position: absolute;
      inset: 0;
      z-index: -1;
      content: "";
      background:
        linear-gradient(90deg, rgba(7, 9, 9, 0.96) 0%, rgba(7, 9, 9, 0.82) 44%, rgba(7, 9, 9, 0.28) 100%),
        linear-gradient(0deg, rgba(7, 9, 9, 0.78), transparent 48%);
    }

    .hero-inner {
      display: grid;
      align-items: end;
      min-height: 760px;
      padding: 128px 0 74px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.78fr);
      gap: 48px;
      align-items: end;
    }

    .hero-grid-single {
      grid-template-columns: minmax(0, 920px);
    }

    .breadcrumb {
      display: flex;
      flex-wrap: wrap;
      align-items: baseline;
      gap: 8px;
      margin: 0 0 22px;
      color: var(--muted);
      font-size: 0.84rem;
      font-weight: 850;
    }

    .breadcrumb a {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding-inline: 4px;
      color: var(--gold-2);
    }

    .breadcrumb span {
      color: var(--muted-2);
    }

    .hero h1 {
      max-width: 820px;
      margin: 0;
      line-height: 0.92;
      letter-spacing: 0;
      text-transform: uppercase;
    }

    .hero h1 span {
      display: block;
    }

    .hero h1 span:first-child {
      font-size: clamp(3.25rem, 3.93vw, 3.75rem);
      line-height: 0.92;
    }

    .hero h1 span:nth-child(2) {
      font-size: clamp(4.2rem, 5.7vw, 5.4375rem);
      line-height: 0.92;
    }

    .hero-lede {
      max-width: 680px;
      margin: 30px 0 0;
      color: var(--muted);
      font-size: clamp(1.04rem, 1.4vw, 1.3rem);
      line-height: 1.72;
    }

    .hero-actions,
    .cta-row,
    .panel-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 34px;
    }

    .hero-panel {
      align-self: stretch;
      display: grid;
      gap: 14px;
      padding: 24px;
      background: linear-gradient(145deg, rgba(21, 24, 18, 0.92), rgba(16, 35, 52, 0.86));
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      backdrop-filter: blur(12px);
    }

    .stat-card {
      display: grid;
      gap: 7px;
      padding: 17px 18px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 6px;
      background: rgba(0, 0, 0, 0.16);
    }

    .stat-card strong {
      color: var(--gold-2);
      font-size: clamp(2rem, 4vw, 3.2rem);
      line-height: 0.95;
    }

    .stat-card span {
      color: var(--muted);
      font-size: 0.93rem;
      font-weight: 750;
    }

    .section {
      position: relative;
      padding: clamp(78px, 9vw, 140px) 0;
      overflow: hidden;
      border-bottom: 1px solid rgba(227, 170, 54, 0.14);
    }

    .section-dark {
      background: rgba(7, 9, 9, 0.74);
    }

    .section-alt {
      background: linear-gradient(180deg, rgba(227, 170, 54, 0.045), rgba(255, 255, 255, 0.015));
    }

    .section::before {
      position: absolute;
      top: 0;
      left: 50%;
      width: min(1120px, 74vw);
      height: 1px;
      content: "";
      opacity: 0;
      transform: translateX(-50%) scaleX(0.3);
      background: linear-gradient(90deg, transparent, rgba(244, 201, 104, 0.5), transparent);
      transition: opacity 700ms ease, transform 1000ms var(--ease);
    }

    .section.section-in-view::before {
      opacity: 1;
      transform: translateX(-50%) scaleX(1);
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.58fr);
      gap: 40px;
      align-items: end;
      margin-bottom: 42px;
    }

    .rule {
      width: 66px;
      height: 2px;
      margin-bottom: 22px;
      background: linear-gradient(90deg, var(--gold), transparent);
    }

    .section-title,
    .content-block h2 {
      margin: 0;
      font-size: clamp(2.45rem, 5vw, 5.2rem);
      line-height: 0.98;
      letter-spacing: 0;
    }

    .section-copy,
    .content-block p,
    .letter-body p {
      margin: 0;
      color: var(--muted);
      font-size: 1.02rem;
      line-height: 1.75;
    }

    .content-block p + p,
    .letter-body p + p {
      margin-top: 18px;
    }

    .split-grid {
      display: grid;
      grid-template-columns: minmax(340px, 0.86fr) minmax(0, 1fr);
      gap: clamp(34px, 6vw, 80px);
      align-items: center;
    }

    .split-grid.no-media,
    .about-grid.no-media {
      grid-template-columns: minmax(0, 1fr);
    }

    .split-grid.no-media .content-block,
    .about-grid.no-media .content-block {
      max-width: 1040px;
    }

    .split-grid.image-right > :first-child,
    .about-grid.image-right > :first-child {
      order: 2;
    }

    .split-grid.image-right > .content-block,
    .about-grid.image-right > .content-block {
      order: 1;
    }

    .media-frame {
      position: relative;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--panel);
      box-shadow: var(--shadow);
      transition: transform 360ms var(--ease), border-color 260ms ease, box-shadow 360ms ease;
    }

    .media-frame:hover {
      border-color: rgba(244, 201, 104, 0.48);
      box-shadow: 0 30px 70px rgba(0, 0, 0, 0.44);
      transform: translateY(-4px);
    }

    .media-frame img {
      width: 100%;
      height: 100%;
      min-height: 480px;
      object-fit: cover;
      transition: transform 900ms var(--ease), filter 360ms ease;
    }

    .media-frame:hover img {
      filter: saturate(1.04) contrast(1.04);
      transform: scale(1.035);
    }

    .media-frame.office img {
      object-position: 58% center;
    }

    .mission-card {
      display: grid;
      gap: 22px;
      padding: clamp(24px, 4vw, 44px);
      background:
        linear-gradient(135deg, rgba(227, 170, 54, 0.12), transparent 48%),
        rgba(21, 24, 18, 0.86);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    .mission-card blockquote {
      margin: 0;
      font-size: clamp(2rem, 4.4vw, 4.6rem);
      line-height: 1.02;
      font-weight: 900;
      letter-spacing: 0;
    }

    .mission-card p {
      max-width: 720px;
    }

    .detail-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
      background: rgba(255, 255, 255, 0.02);
    }

    .detail-card {
      display: grid;
      gap: 14px;
      min-width: 0;
      min-height: 180px;
      padding: 24px;
      border-right: 1px solid var(--line);
    }

    .detail-card:last-child {
      border-right: 0;
    }

    .detail-card svg {
      color: var(--gold);
      font-size: 1.7rem;
    }

    .detail-card span {
      color: var(--muted-2);
      font-size: 0.77rem;
      font-weight: 900;
      text-transform: uppercase;
    }

    .detail-card strong,
    .detail-card a {
      color: var(--text);
      font-size: 1.02rem;
      line-height: 1.42;
      overflow-wrap: anywhere;
    }

    .response-stats-section {
      isolation: isolate;
    }

    .response-stats-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(5, 7, 7, 0.4);
      box-shadow: var(--shadow);
    }

    .response-stat {
      display: grid;
      grid-template-rows: auto 1fr;
      gap: 28px;
      min-width: 0;
      padding: clamp(28px, 4vw, 48px);
      border-right: 1px solid var(--line);
      transition: background-color 280ms ease, transform 360ms var(--ease);
    }

    .response-stat:last-child {
      border-right: 0;
    }

    .response-stat:hover {
      background: rgba(227, 170, 54, 0.055);
    }

    .response-stat-timer {
      position: relative;
      width: 136px;
      padding-top: 14px;
    }

    .response-stat-crown {
      position: absolute;
      top: 0;
      left: 50%;
      width: 36px;
      height: 16px;
      border: 2px solid var(--gold);
      border-bottom: 0;
      border-radius: 8px 8px 0 0;
      transform: translateX(-50%);
    }

    .response-stat-crown::after {
      position: absolute;
      top: 8px;
      right: -13px;
      width: 14px;
      height: 5px;
      content: "";
      border-radius: 2px;
      background: var(--gold);
      transform: rotate(38deg);
      transform-origin: left center;
    }

    .response-stat-dial {
      position: relative;
      display: grid;
      width: 136px;
      aspect-ratio: 1;
      place-content: center;
      gap: 4px;
      border: 3px solid var(--gold);
      border-radius: 50%;
      background: rgba(8, 10, 10, 0.82);
      color: var(--text);
      text-align: center;
      box-shadow:
        inset 0 0 0 7px rgba(227, 170, 54, 0.08),
        0 18px 40px rgba(0, 0, 0, 0.28);
    }

    .response-stat-dial::before {
      position: absolute;
      top: 11px;
      left: 50%;
      width: 3px;
      height: 13px;
      content: "";
      border-radius: 2px;
      background: var(--gold-2);
      transform: translateX(-50%);
    }

    .response-stat-dial strong {
      font-family: var(--display);
      font-size: clamp(1.6rem, 2.7vw, 2.45rem);
      line-height: 0.95;
      letter-spacing: 0;
      white-space: nowrap;
    }

    .response-stat-dial span {
      color: var(--gold-2);
      font-size: 0.74rem;
      font-weight: 900;
      letter-spacing: 0;
      text-transform: uppercase;
    }

    .response-stat-content {
      display: grid;
      align-content: start;
      gap: 13px;
    }

    .response-stat-content h3,
    .response-stats-summary h3 {
      margin: 0;
      color: var(--text);
      font-size: clamp(1.2rem, 1.8vw, 1.55rem);
      line-height: 1.2;
      letter-spacing: 0;
    }

    .response-stat-content p,
    .response-stats-summary p {
      margin: 0;
      color: var(--muted);
      font-size: 0.98rem;
      line-height: 1.72;
    }

    .response-stat-content .response-stat-source {
      color: var(--gold-2);
      font-size: 0.76rem;
      font-weight: 700;
      line-height: 1.45;
    }

    .response-stats-summary {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr);
      gap: 24px;
      align-items: start;
      margin-top: 26px;
      padding: clamp(24px, 4vw, 38px);
      border: 1px solid var(--line);
      border-left: 3px solid var(--gold-2);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.025);
    }

    .response-stats-summary > div:last-child {
      display: grid;
      gap: 10px;
      max-width: 1040px;
    }

    .response-stats-summary-icon {
      display: grid;
      width: 48px;
      aspect-ratio: 1;
      place-items: center;
      border: 1px solid var(--line-strong);
      border-radius: 50%;
      color: var(--gold-2);
    }

    .response-stats-summary-icon svg {
      width: 22px;
      height: 22px;
    }

    .letter-wrap {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.45fr);
      gap: 28px;
      align-items: start;
    }

    .letter-body {
      padding: clamp(26px, 5vw, 58px);
      background: rgba(21, 24, 18, 0.86);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    .letter-body h2 {
      margin: 0 0 24px;
      font-size: clamp(2.2rem, 4.2vw, 4.6rem);
      line-height: 1;
    }

    .signature {
      margin-top: 34px;
      padding-top: 22px;
      border-top: 1px solid var(--line);
      color: var(--text);
      font-weight: 850;
    }

    .letter-side {
      position: sticky;
      top: 116px;
      display: grid;
      gap: 18px;
    }

    .president-card,
    .standout-card,
    .contact-panel {
      padding: 24px;
      background: linear-gradient(145deg, rgba(16, 35, 52, 0.86), rgba(21, 24, 18, 0.92));
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    .president-card img {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      object-position: 56% center;
      border-radius: 6px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      margin-bottom: 18px;
    }

    .standout-card > svg {
      display: inline-grid;
      width: 42px;
      height: 42px;
      margin-bottom: 18px;
      color: var(--gold);
    }

    .standout-card img {
      width: 100%;
      aspect-ratio: 16 / 10;
      object-fit: cover;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 6px;
      margin-bottom: 18px;
    }

    .president-card h3,
    .standout-card h3,
    .contact-panel h3 {
      margin: 0 0 8px;
      font-size: 1.35rem;
      line-height: 1.15;
    }

    .president-card p,
    .standout-card p,
    .contact-panel p {
      margin: 0;
      color: var(--muted);
      line-height: 1.65;
    }

    .standout-list {
      display: grid;
      gap: 12px;
      padding: 0;
      margin: 18px 0 0;
      list-style: none;
    }

    .standout-list li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      color: var(--muted);
      font-weight: 750;
    }

    .standout-list svg {
      margin-top: 0.2em;
      color: var(--gold);
    }

    /* Process sections also appear on inner training pages, not only the home page. */
    .section-process > .section-narrow {
      width: var(--container-narrow);
      margin-inline: auto;
    }

    .section-process .process-track {
      position: relative;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 18px;
      margin-top: 46px;
    }

    .section-process .process-track::before {
      position: absolute;
      top: 38px;
      right: 9%;
      left: 9%;
      height: 1px;
      content: "";
      opacity: 0;
      transform: scaleX(0.2);
      transform-origin: center;
      background: linear-gradient(90deg, rgba(214, 153, 62, 0), var(--gold-strong), rgba(214, 153, 62, 0));
      transition: opacity 760ms ease, transform 900ms var(--ease-soft);
    }

    .section-process .section-narrow.is-visible .process-track::before {
      opacity: 1;
      transform: scaleX(1);
    }

    .section-process .process-step {
      position: relative;
      padding: 0;
      border: 0;
      background: transparent;
      color: inherit;
      cursor: pointer;
      text-align: center;
      transition: transform 220ms var(--ease);
    }

    .section-process .process-step:hover {
      transform: translateY(-2px);
    }

    .section-process .step-number {
      display: inline-grid;
      width: 76px;
      height: 76px;
      place-items: center;
      border: 1px solid var(--gold-strong);
      border-radius: 50%;
      background: #0d0f0f;
      color: var(--gold);
      font-family: var(--serif);
      font-size: 1.7rem;
      font-weight: 800;
      line-height: 1;
      text-align: center;
      font-variant-numeric: tabular-nums;
      transition: background 180ms ease, color 180ms ease, transform 180ms var(--ease), box-shadow 180ms ease;
    }

    .section-process .process-step[aria-pressed="true"] .step-number,
    .section-process .process-step:hover .step-number {
      background: var(--gold-strong);
      color: #080807;
      box-shadow: 0 0 0 8px rgba(214, 153, 62, 0.11);
      transform: translateY(-3px);
    }

    .section-process .process-step strong {
      display: block;
      margin-top: 18px;
      color: var(--ink-strong);
      font-size: 1rem;
    }

    .section-process .process-step > span:not(.step-number) {
      display: block;
      max-width: 220px;
      margin: 6px auto 0;
      color: var(--muted);
      font-size: 0.88rem;
      line-height: 1.5;
    }

    @media (max-width: 1180px) {
      .section-process .process-track {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .section-process .process-track::before {
        display: none;
      }
    }

    @media (max-width: 760px) {
      .section-process .process-track {
        grid-template-columns: 1fr;
      }

      .section-process .step-number {
        width: 64px;
        height: 64px;
        font-size: 1.45rem;
      }
    }

    .timeline {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1px;
      background: var(--line);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
    }

    .timeline-item {
      min-height: 228px;
      padding: 26px;
      background: rgba(9, 11, 11, 0.92);
    }

    .timeline-item span {
      display: inline-grid;
      place-items: center;
      width: 44px;
      height: 44px;
      margin-bottom: 28px;
      color: #090909;
      background: var(--gold);
      border-radius: 50%;
      font-weight: 950;
    }

    .timeline-item h3 {
      margin: 0 0 10px;
      font-size: 1.08rem;
    }

    .timeline-item p {
      margin: 0;
      color: var(--muted);
      line-height: 1.62;
    }

    .service-toolbar {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: -14px 0 34px;
    }

    .filter-btn {
      min-height: 42px;
      padding: 0 17px;
      color: var(--muted);
      background: rgba(255, 255, 255, 0.035);
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 999px;
      font-size: 0.84rem;
      font-weight: 900;
      cursor: pointer;
      transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms var(--ease);
    }

    .filter-btn:hover,
    .filter-btn[aria-pressed="true"] {
      color: var(--text);
      background: rgba(227, 170, 54, 0.13);
      border-color: rgba(244, 201, 104, 0.58);
      transform: translateY(-1px);
    }

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

    .service-card {
      position: relative;
      display: block;
      aspect-ratio: 1.08 / 1;
      min-height: 0;
      overflow: hidden;
      color: inherit;
      text-decoration: none;
      border: 1px solid rgba(214, 203, 157, 0.14);
      border-radius: var(--radius);
      background: var(--panel);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
      opacity: 1;
      transform: translateY(0);
      transition: opacity 260ms ease, transform 260ms var(--ease), border-color 180ms ease, box-shadow 260ms ease, filter 260ms ease;
    }

    .service-card.is-hidden {
      display: none;
    }

    .service-card:hover,
    .service-card:focus-within {
      border-color: rgba(214, 203, 157, 0.54);
      box-shadow: 0 24px 54px rgba(0, 0, 0, 0.34);
      filter: saturate(1.04);
      transform: translateY(-4px);
    }

    .service-card:focus-visible {
      outline: 2px solid var(--gold-2);
      outline-offset: 4px;
    }

    .service-card img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: none;
      transition: transform 700ms var(--ease), opacity 300ms ease;
    }

    .service-card:hover img,
    .service-card:focus-within img {
      transform: scale(1.05);
    }

    .service-card::after {
      position: absolute;
      inset: 0;
      content: "";
      background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.22) 36%, rgba(0, 0, 0, 0.86) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.58), transparent 72%);
    }

    .service-card::before {
      position: absolute;
      inset: 0;
      z-index: 1;
      content: "";
      background: linear-gradient(135deg, rgba(214, 153, 62, 0.18), transparent 38%);
      opacity: 0;
      transition: opacity 260ms ease;
    }

    .service-card:hover::before,
    .service-card:focus-within::before {
      opacity: 1;
    }

    .service-card-body {
      position: absolute;
      inset: auto 0 0;
      z-index: 2;
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 14px;
      align-items: center;
      padding: 22px;
    }

    .service-icon,
    .service-card .card-link {
      display: inline-grid;
      place-items: center;
      width: 48px;
      height: 48px;
      color: var(--gold);
      border: 1px solid var(--gold);
      border-radius: 6px;
      background: rgba(0, 0, 0, 0.46);
      transition: background 220ms ease, color 220ms ease, transform 220ms var(--ease), box-shadow 220ms ease, border-color 220ms ease;
    }

    .service-card:hover .service-icon,
    .service-card:focus-within .service-icon {
      background: var(--gold);
      color: #080807;
      box-shadow: 0 0 0 6px rgba(214, 153, 62, 0.12);
      transform: translateY(-2px);
    }

    .service-icon svg {
      width: 25px;
      height: 25px;
    }

    .service-card h3 {
      margin: 0;
      color: var(--text);
      font-size: 1.18rem;
      line-height: 1.15;
    }

    .service-card .card-link {
      width: 42px;
      height: 42px;
      color: var(--text);
      border-radius: 50%;
      border-color: rgba(255, 255, 255, 0.32);
    }

    .service-card:hover .card-link,
    .service-card:focus-visible .card-link {
      color: #090909;
      background: var(--gold);
      border-color: var(--gold);
      transform: translateX(2px);
    }

    .service-card .card-link svg {
      width: 17px;
      height: 17px;
    }

    .service-inspector {
      display: grid;
      grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
      gap: 28px;
      align-items: center;
      margin-top: 24px;
      padding: 28px 30px;
      background:
        linear-gradient(135deg, rgba(227, 170, 54, 0.1), transparent 46%),
        rgba(21, 24, 18, 0.9);
      border: 1px solid var(--line);
      border-radius: var(--radius);
    }

    .service-inspector strong {
      display: block;
      margin-bottom: 8px;
      color: var(--gold-2);
      font-size: 0.78rem;
      text-transform: uppercase;
    }

    .service-inspector h3 {
      margin: 0;
      font-size: clamp(1.7rem, 3vw, 2.65rem);
      line-height: 1.02;
    }

    .service-inspector p {
      margin: 0;
      color: var(--muted);
      line-height: 1.7;
    }

    .coverage-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1px;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--line);
    }

    .coverage-pill {
      display: flex;
      min-height: 104px;
      align-items: center;
      gap: 14px;
      padding: 20px;
      color: var(--text);
      background: rgba(9, 11, 11, 0.94);
      font-weight: 850;
    }

    .coverage-pill svg {
      color: var(--gold);
      font-size: 1.35rem;
    }

    .quote-band {
      position: relative;
      overflow: hidden;
      min-height: 460px;
      background: #050606;
      border-bottom: 1px solid var(--line);
    }

    .quote-band::before {
      position: absolute;
      inset: 0;
      content: "";
      background:
        linear-gradient(90deg, rgba(7, 9, 9, 0.96), rgba(7, 9, 9, 0.58) 48%, rgba(7, 9, 9, 0.24)),
        var(--quote-bg, url("../images/AS-security-testimonail-bg.jpg")) center / cover;
      opacity: 0.95;
      transform: scale(1.02);
    }

    .quote-band-inner {
      position: relative;
      z-index: 1;
      display: grid;
      align-items: center;
      min-height: 460px;
      width: var(--container);
      margin-inline: auto;
      padding: 66px 0;
    }

    .quote-copy {
      max-width: 1180px;
    }

    .quote-copy h2 {
      margin: 0 0 18px;
      font-size: clamp(2.55rem, 5.4vw, 6rem);
      line-height: 0.96;
      letter-spacing: 0;
    }

    .quote-copy p {
      max-width: 760px;
      margin: 0;
      color: var(--muted);
      font-size: 1.08rem;
      line-height: 1.75;
    }

    .site-footer {
      position: relative;
      overflow: clip;
      padding: 0;
      border-top: 1px solid var(--line);
      background:
        radial-gradient(circle at 10% 6%, rgba(227, 170, 54, 0.11), transparent 30rem),
        radial-gradient(circle at 92% 62%, rgba(32, 74, 91, 0.16), transparent 34rem),
        linear-gradient(180deg, #080a0a 0%, #050606 54%, #070808 100%);
      isolation: isolate;
    }

    .site-footer::before {
      position: absolute;
      inset: 0 0 auto;
      z-index: 2;
      height: 2px;
      content: "";
      background: linear-gradient(90deg, transparent, var(--gold) 23%, var(--gold-2) 50%, var(--gold) 77%, transparent);
      opacity: 0.72;
    }

    .footer-mark {
      position: absolute;
      right: clamp(-190px, -9vw, -90px);
      bottom: 76px;
      z-index: -1;
      width: clamp(360px, 38vw, 660px);
      height: auto;
      aspect-ratio: 1;
      object-fit: contain;
      opacity: 0.035;
      filter: grayscale(1);
      pointer-events: none;
      user-select: none;
    }

    .footer-start,
    .footer-trust {
      position: relative;
      z-index: 1;
      width: var(--container);
      margin-inline: auto;
    }

    .footer-start {
      padding: clamp(64px, 6vw, 92px) 0 clamp(52px, 5vw, 76px);
    }

    .footer-start__intro {
      display: grid;
      grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
      gap: clamp(28px, 5vw, 84px);
      align-items: end;
      margin-bottom: 38px;
    }

    .footer-eyebrow,
    .footer-path__kicker {
      display: block;
      color: var(--gold-2);
      font-size: 0.72rem;
      font-weight: 900;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .footer-eyebrow {
      margin-bottom: 12px;
    }

    .footer-start__intro h2 {
      max-width: 900px;
      margin: 0;
      font-size: 2.75rem;
      line-height: 0.98;
      letter-spacing: -0.045em;
      text-wrap: balance;
    }

    .footer-start__intro > div > p {
      max-width: 560px;
      margin: 18px 0 0;
      color: var(--muted);
      font-size: 1.04rem;
      line-height: 1.7;
    }

    .footer-paths {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(280px, 0.86fr);
      gap: 18px;
      align-items: stretch;
    }

    .footer-path {
      position: relative;
      display: flex;
      min-width: 0;
      min-height: 390px;
      overflow: hidden;
      flex-direction: column;
      padding: clamp(26px, 2.4vw, 38px);
      border: 1px solid var(--line);
      border-radius: 14px;
      background:
        linear-gradient(145deg, rgba(18, 39, 49, 0.94), rgba(9, 14, 16, 0.98)),
        #0b1113;
      box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
      transition: border-color 220ms ease, transform 260ms var(--ease), box-shadow 260ms ease;
    }

    .footer-path::before {
      position: absolute;
      inset: 0 0 auto;
      height: 3px;
      content: "";
      background: linear-gradient(90deg, var(--gold-strong), var(--gold-2), transparent 82%);
      opacity: 0.9;
    }

    .footer-path--training {
      background:
        radial-gradient(circle at 94% 0%, rgba(227, 170, 54, 0.12), transparent 17rem),
        linear-gradient(145deg, rgba(18, 33, 39, 0.96), rgba(9, 14, 16, 0.98));
    }

    .footer-path:hover {
      border-color: rgba(227, 170, 54, 0.5);
      box-shadow: 0 30px 82px rgba(0, 0, 0, 0.34);
      transform: translateY(-4px);
    }

    .footer-path__icon {
      display: inline-grid;
      width: 48px;
      height: 48px;
      flex: 0 0 auto;
      place-items: center;
      margin-bottom: 28px;
      border: 1px solid rgba(227, 170, 54, 0.42);
      border-radius: 12px;
      background: rgba(227, 170, 54, 0.08);
      color: var(--gold-2);
    }

    .footer-path__icon svg {
      width: 23px;
      height: 23px;
    }

    .footer-path__kicker {
      margin-bottom: 8px;
    }

    .footer-path h3 {
      margin: 0 0 12px;
      font-size: clamp(1.45rem, 2vw, 2rem);
      line-height: 1.08;
      letter-spacing: -0.025em;
    }

    .footer-path p {
      margin: 0;
      color: var(--muted);
      line-height: 1.65;
    }

    .footer-path__actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: auto;
      padding-top: 30px;
    }

    .footer-path__actions .btn {
      flex: 1 1 180px;
      min-height: 48px;
      justify-content: space-between;
      padding: 12px 16px;
      font-size: 0.77rem;
    }

    .footer-path--location {
      display: grid;
      grid-template-rows: var(--footer-map-height, 240px) 1fr;
      padding: 0;
      background: #0b1113;
    }

    .footer-path--location::before {
      z-index: 2;
    }

    .site-map {
      position: relative;
      width: 100%;
      min-height: var(--footer-map-height, 240px);
      overflow: hidden;
      background: #090b0b;
      border-bottom: 1px solid var(--line);
    }

    .site-map::after {
      position: absolute;
      inset: 0;
      content: "";
      background: linear-gradient(180deg, transparent 66%, rgba(5, 6, 6, 0.44));
      pointer-events: none;
    }

    .site-map iframe {
      display: block;
      width: 100%;
      height: var(--footer-map-height, 240px);
      border: 0;
      filter: saturate(0.72) contrast(1.03);
    }

    .footer-location__copy {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr);
      gap: 18px;
      align-items: start;
      padding: 24px 26px 26px;
    }

    .footer-location__copy .footer-path__icon {
      width: 42px;
      height: 42px;
      margin: 0;
    }

    .footer-location__copy h3 {
      margin-bottom: 9px;
      font-size: 1.3rem;
    }

    .footer-location__copy address {
      margin: 0 0 12px;
      color: var(--muted);
      font-size: 0.9rem;
      font-style: normal;
      line-height: 1.5;
    }

    .footer-text-link {
      display: inline-flex;
      min-height: 44px;
      align-items: center;
      gap: 8px;
      color: var(--gold-2);
      font-size: 0.78rem;
      font-weight: 900;
      letter-spacing: 0.03em;
      text-transform: uppercase;
    }

    .footer-text-link svg {
      width: 15px;
      height: 15px;
      transition: transform 180ms var(--ease);
    }

    .footer-text-link:hover svg {
      transform: translateX(3px);
    }

    .footer-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(240px, 1.05fr) minmax(180px, 0.72fr) minmax(360px, 1.45fr) minmax(190px, 0.8fr);
      gap: clamp(32px, 3.7vw, 60px);
      align-items: start;
      padding: clamp(54px, 5vw, 76px) 0 52px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-col {
      min-width: 0;
    }

    .footer-logo-link {
      display: inline-flex;
      max-width: 100%;
      margin: -6px -6px 24px;
      padding: 6px;
      border-radius: 4px;
    }

    .footer-logo {
      width: min(230px, 100%);
      height: auto;
    }

    .footer-brand__statement {
      max-width: 330px;
      margin: 0 0 22px;
      color: var(--muted);
      line-height: 1.65;
    }

    .footer-contact-list {
      display: grid;
      gap: 4px;
      margin: 0;
      font-style: normal;
    }

    .footer-contact-list a {
      display: grid;
      grid-template-columns: 24px minmax(0, 1fr);
      gap: 10px;
      align-items: start;
      min-height: 44px;
      padding: 10px 0;
      color: var(--text);
      line-height: 1.45;
      overflow-wrap: anywhere;
    }

    .footer-contact-list a > span:first-child {
      display: inline-grid;
      place-items: center;
      width: 24px;
      height: 24px;
      color: var(--gold-2);
    }

    .footer-contact-list svg {
      width: 18px;
      height: 18px;
    }

    .footer-contact-list a:hover {
      color: var(--gold-2);
    }

    .footer-license {
      margin: 16px 0 0;
      color: var(--muted-2);
      font-size: 0.8rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .footer-nav-col > h2 {
      margin: 0 0 22px;
      padding-bottom: 14px;
      color: var(--text);
      border-bottom: 1px solid var(--line);
      font-size: 0.78rem;
      font-weight: 900;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .footer-links {
      display: grid;
      gap: 2px;
      margin: 0;
      padding: 0;
      color: var(--muted);
      list-style: none;
    }

    .footer-links a {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 10px;
      align-items: center;
      min-height: 38px;
      padding: 7px 0;
      color: var(--muted);
      font-size: 0.9rem;
      line-height: 1.4;
      overflow-wrap: anywhere;
      transition: color 180ms ease, padding-left 180ms var(--ease);
    }

    .footer-links a > svg {
      width: 14px;
      height: 14px;
      opacity: 0;
      transform: translateX(-5px);
      transition: opacity 180ms ease, transform 180ms var(--ease);
    }

    .footer-links a:hover {
      padding-left: 4px;
      color: var(--gold-2);
    }

    .footer-links a:hover > svg {
      opacity: 1;
      transform: translateX(0);
    }

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

    .footer-training__group {
      min-width: 0;
    }

    .footer-training__group h3 {
      margin: 0 0 10px;
      color: var(--gold-2);
      font-size: 0.68rem;
      font-weight: 900;
      letter-spacing: 0.1em;
      line-height: 1.4;
      text-transform: uppercase;
    }

    .social-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 24px 0 0;
      padding: 0;
      list-style: none;
    }

    .social-row a,
    .back-to-top {
      display: inline-grid;
      width: 46px;
      height: 46px;
      place-items: center;
      border: 1px solid var(--line);
      border-radius: 50%;
      color: var(--text);
      transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms var(--ease);
    }

    .social-row a:hover,
    .back-to-top:hover {
      border-color: var(--gold);
      background: rgba(227, 170, 54, 0.1);
      color: var(--gold-2);
      transform: translateY(-2px);
    }

    .social-row svg,
    .back-to-top svg {
      width: 17px;
      height: 17px;
    }

    .footer-trust {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      padding: 24px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      list-style: none;
    }

    .footer-trust li {
      display: grid;
      grid-template-columns: 42px minmax(0, 1fr);
      grid-template-rows: auto auto;
      gap: 1px 12px;
      min-width: 0;
      padding: 8px clamp(16px, 2.3vw, 34px);
      border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-trust li:first-child {
      padding-left: 0;
      border-left: 0;
    }

    .footer-trust li:last-child {
      padding-right: 0;
    }

    .footer-trust li > span {
      display: inline-grid;
      grid-row: 1 / 3;
      width: 42px;
      height: 42px;
      place-items: center;
      border: 1px solid rgba(227, 170, 54, 0.3);
      border-radius: 50%;
      color: var(--gold-2);
    }

    .footer-trust svg {
      width: 19px;
      height: 19px;
    }

    .footer-trust strong {
      align-self: end;
      color: var(--text);
      font-size: 0.9rem;
      line-height: 1.25;
    }

    .footer-trust small {
      color: var(--muted-2);
      font-size: 0.72rem;
      line-height: 1.3;
    }

    .footer-bottom {
      position: relative;
      z-index: 1;
      display: flex;
      justify-content: space-between;
      gap: 24px;
      align-items: center;
      padding: 24px 0 calc(24px + env(safe-area-inset-bottom));
      color: var(--muted-2);
      font-size: 0.84rem;
    }

    .footer-bottom__links {
      display: flex;
      flex-wrap: wrap;
      gap: 22px;
      align-items: center;
    }

    .footer-bottom a {
      display: inline-flex;
      min-height: 44px;
      align-items: center;
      color: var(--muted);
      text-decoration: underline;
      text-decoration-color: rgba(227, 170, 54, 0.45);
      text-underline-offset: 4px;
    }

    .footer-bottom a:hover {
      color: var(--gold-2);
    }

    .footer-top-link {
      gap: 7px;
    }

    .footer-top-link svg {
      width: 14px;
      height: 14px;
    }

    .site-footer a:focus-visible,
    .back-to-top:focus-visible {
      outline: 2px solid var(--gold-2);
      outline-offset: 4px;
    }

    .back-to-top {
      position: fixed;
      right: max(20px, env(safe-area-inset-right));
      bottom: max(20px, calc(14px + env(safe-area-inset-bottom)));
      z-index: 30;
      visibility: hidden;
      opacity: 0;
      pointer-events: none;
      background: rgba(5, 6, 6, 0.88);
      backdrop-filter: blur(10px);
      transform: translateY(8px);
      transition: visibility 0s linear 220ms, opacity 220ms ease, transform 220ms var(--ease);
    }

    .back-to-top.is-visible {
      visibility: visible;
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
      transition-delay: 0s;
    }

    [data-reveal],
    .section-head,
    .service-card,
    .coverage-pill,
    .detail-card,
    .response-stat,
    .response-stats-summary,
    .timeline-item {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 720ms ease, transform 820ms var(--ease);
      transition-delay: var(--stagger-delay, 0ms);
    }

    .is-visible,
    .section-in-view .section-head,
    .section-in-view .service-card,
    .section-in-view .coverage-pill,
    .section-in-view .detail-card,
    .section-in-view .response-stat,
    .section-in-view .response-stats-summary,
    .section-in-view .timeline-item {
      opacity: 1;
      transform: translateY(0);
    }

    @keyframes mediaBreathe {
      from { transform: scale(1); }
      to { transform: scale(1.045); }
    }

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

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

      .footer-path--location {
        grid-column: 1 / -1;
        grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
        grid-template-rows: minmax(300px, 1fr);
        min-height: 300px;
      }

      .footer-path--location .site-map {
        min-height: 300px;
        border-right: 1px solid var(--line);
        border-bottom: 0;
      }

      .footer-path--location .site-map iframe {
        height: 100%;
        min-height: 300px;
      }

      .footer-location__copy {
        align-content: center;
      }
    }

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

      .topbar {
        display: none;
      }

      .mobile-header-controls {
        display: flex;
      }

      .menu-toggle {
        display: grid;
      }

      .main-nav {
        position: fixed;
        inset: 72px 16px auto;
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        justify-content: stretch;
        gap: 0;
        max-height: calc(100vh - 92px);
        overflow: auto;
        padding: 14px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        background: rgba(8, 9, 9, 0.98);
        border: 1px solid var(--line);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        transition: opacity 220ms ease, transform 220ms var(--ease);
      }

      body.nav-open .main-nav {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
      }

      .nav-link,
      .nav-trigger {
        width: 100%;
        justify-content: space-between;
        padding: 13px 10px;
      }

      .submenu {
        position: static;
        width: 100%;
        max-height: none;
        overflow: visible;
        display: none;
        visibility: visible;
        transform: none;
        opacity: 1;
        pointer-events: auto;
        border: 0;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.03);
      }

      .nav-trigger[aria-expanded="true"] + .submenu {
        display: block;
        transform: none;
      }

      .nav-item--mega {
        position: relative;
      }

      .services-mega {
        left: auto;
        right: auto;
        width: 100%;
        max-height: none;
        overflow: visible;
        transform: none;
        border: 1px solid var(--line);
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.025);
      }

      .services-mega__head {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 8px 16px;
        padding: 15px 14px;
      }

      .services-mega__eyebrow {
        grid-column: 1 / -1;
      }

      .services-mega__statement {
        font-size: 0.94rem;
      }

      .services-mega a.services-mega__all {
        align-self: center;
        padding: 7px 0;
        font-size: 0.78rem;
      }

      .services-mega__body {
        grid-template-columns: minmax(0, 0.75fr) minmax(0, 2fr);
        min-height: 0;
      }

      .services-mega a.services-mega__feature {
        display: none;
      }

      .services-mega__group {
        padding: 15px 12px;
        border-left: 0;
      }

      .services-mega__group--businesses {
        border-left: 1px solid var(--line-soft);
      }

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

      .services-mega__links a,
      .services-mega__business-grid a {
        min-height: 39px;
        padding: 8px;
      }

      .training-mega__body {
        grid-template-columns: 1fr;
      }

      .training-mega__courses {
        padding: 15px 12px;
        border-left: 0;
      }

      .services-mega a.training-mega__link {
        min-height: 74px;
        padding: 10px;
      }

      .phone-link {
        justify-content: center;
        margin: 12px 0;
      }

      .mobile-actions {
        display: grid;
        gap: 10px;
      }

      .mobile-actions .btn {
        width: 100%;
      }
    }

    @media (max-width: 980px) {
      :root {
        --container: min(100% - 40px, 1440px);
      }

      .hero,
      .hero-inner {
        min-height: auto;
      }

      .hero-inner {
        padding: 106px 0 64px;
      }

      .hero-grid,
      .split-grid,
      .letter-wrap,
      .section-head {
        grid-template-columns: 1fr;
      }

      .hero-panel,
      .letter-side {
        position: static;
      }

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

      .response-stats-grid {
        grid-template-columns: 1fr;
      }

      .response-stat {
        grid-template-columns: 136px minmax(0, 1fr);
        grid-template-rows: auto;
        align-items: center;
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }

      .response-stat:last-child {
        border-bottom: 0;
      }

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

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

      .detail-card {
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }

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

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

      .footer-start__intro {
        grid-template-columns: 1fr;
        gap: 18px;
        align-items: start;
      }

      .footer-start__intro > div > p {
        max-width: 760px;
      }

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

      .footer-trust li:nth-child(3) {
        border-left: 0;
      }

      .footer-trust li:nth-child(-n + 2) {
        padding-bottom: 22px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }

      .footer-trust li:nth-child(n + 3) {
        padding-top: 22px;
      }
    }

    @media (max-width: 640px) {
      .services-mega__head {
        grid-template-columns: 1fr;
      }

      .services-mega__statement {
        display: none;
      }

      .services-mega a.services-mega__all {
        justify-content: space-between;
      }

      .services-mega__body {
        grid-template-columns: 1fr;
      }

      .services-mega__group--businesses {
        border-top: 1px solid var(--line-soft);
        border-left: 0;
      }

      .services-mega__business-grid {
        grid-template-columns: 1fr;
      }

      .training-mega__links {
        grid-template-columns: 1fr;
      }

      .services-mega a.training-mega__link {
        min-height: 58px;
      }

      .training-mega__link-copy small {
        display: none;
      }

      :root {
        --container: min(100% - 28px, 1440px);
      }

      .brand {
        min-width: 0;
      }

      .brand-wordmark {
        display: none;
      }

      .hero h1 span:first-child {
        font-size: clamp(2.4rem, 10vw, 3rem);
      }

      .hero h1 span:nth-child(2) {
        font-size: clamp(2.95rem, 12vw, 3.85rem);
      }

      .btn {
        width: 100%;
      }

      .detail-grid,
      .service-grid,
      .coverage-grid,
      .timeline,
      .footer-inner {
        grid-template-columns: 1fr;
      }

      .footer-start {
        padding: 52px 0 48px;
      }

      .footer-start__intro {
        margin-bottom: 30px;
      }

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

      .footer-path {
        min-height: 0;
        padding: 28px 24px;
      }

      .footer-path:hover {
        transform: none;
      }

      .footer-path--location {
        grid-column: auto;
        grid-template-columns: 1fr;
        grid-template-rows: var(--footer-map-height, 240px) auto;
        min-height: 0;
        padding: 0;
      }

      .footer-path--location .site-map {
        min-height: var(--footer-map-height, 240px);
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }

      .footer-path--location .site-map iframe {
        height: var(--footer-map-height, 240px);
        min-height: var(--footer-map-height, 240px);
      }

      .footer-path__actions {
        margin-top: 0;
      }

      .footer-inner {
        gap: 42px;
        padding: 48px 0;
      }

      .footer-brand__statement {
        max-width: 520px;
      }

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

      .footer-links a {
        min-height: 44px;
      }

      .response-stat {
        grid-template-columns: 98px minmax(0, 1fr);
        gap: 20px;
        padding: 24px 20px;
      }

      .response-stat-timer,
      .response-stat-dial {
        width: 98px;
      }

      .response-stat-timer {
        padding-top: 11px;
      }

      .response-stat-crown {
        width: 28px;
        height: 13px;
      }

      .response-stat-dial {
        border-width: 2px;
      }

      .response-stat-dial strong {
        font-size: 1.35rem;
      }

      .response-stat-dial span {
        font-size: 0.62rem;
      }

      .response-stats-summary {
        grid-template-columns: 1fr;
      }

      .media-frame img {
        min-height: 310px;
      }

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

      .footer-mark {
        display: none;
      }

      .back-to-top {
        display: none;
      }
    }

    @media (max-width: 460px) {
      .service-card-body {
        grid-template-columns: auto 1fr;
      }

      .service-card .card-link {
        grid-column: 1 / -1;
        width: 100%;
        height: 38px;
        border-radius: 6px;
      }

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

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

      .footer-trust li,
      .footer-trust li:first-child,
      .footer-trust li:last-child,
      .footer-trust li:nth-child(n + 3) {
        padding: 18px 0;
        border-left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }

      .footer-trust li:last-child {
        border-bottom: 0;
      }

      .footer-bottom__links {
        width: 100%;
        justify-content: space-between;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
      }
    }

    @media print {
      .site-footer,
      .back-to-top {
        display: none !important;
      }
    }
  

    body.admin-bar .site-header {
      top: 32px;
    }

    .acf-edit-note {
      color: var(--muted-2);
      font-size: 0.84rem;
    }

    .jotform-embed {
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.03);
      box-shadow: var(--shadow);
    }

    .jotform-embed iframe {
      display: block;
      width: 100%;
      min-height: 760px;
      border: 0;
    }

    .section-contact-form {
      background: #0a0e0f;
    }

    .section-contact-form .section-head {
      margin-bottom: clamp(34px, 4vw, 56px);
    }

    main > .hero-contact-us ~ .section-contact-form .section-head {
      grid-template-columns: minmax(0, 1fr);
      gap: 18px;
      align-items: start;
    }

    main > .hero-contact-us ~ .section-contact-form .section-copy {
      max-width: 760px;
    }

    main > .hero-contact-us ~ .section-contact-form .section-title,
    main > .hero-contact-us ~ .section-company-details .section-title {
      font-size: clamp(2.45rem, 4vw, 3.5rem);
    }

    .section-contact-form .jotform-embed {
      padding: clamp(8px, 1.4vw, 18px);
      border-color: rgba(214, 155, 62, 0.36);
      background: #101718;
      box-shadow: 0 24px 64px rgba(0, 0, 0, 0.32);
      color-scheme: dark;
    }

    /* The cross-origin Jotform is white by default; this keeps the treatment local to Contact. */
    .section-contact-form .jotform-embed iframe {
      min-height: 560px;
      border-radius: 4px;
      background: #fff;
      filter: invert(0.88) hue-rotate(180deg) saturate(0.9);
    }

    @media (max-width: 720px) {
      .section-contact-form .jotform-embed {
        padding: 4px;
      }

      .section-contact-form .jotform-embed iframe {
        min-height: 620px;
      }
    }

    .reviews-widget-section.has-background-image {
      background:
        linear-gradient(
          180deg,
          rgba(0, 0, 0, var(--reviews-widget-overlay, 0.65)) 0%,
          rgba(0, 0, 0, var(--reviews-widget-overlay, 0.65)) 100%
        ),
        var(--reviews-widget-bg) center / cover no-repeat;
    }

    .reviews-widget-section .section-inner {
      position: relative;
      z-index: 1;
    }

    .reviews-widget-shell {
      min-height: var(--reviews-widget-height, 480px);
      overflow: hidden;
      border: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
    }

    .reviews-widget-frame {
      display: block;
      width: 100%;
      height: var(--reviews-widget-height, 480px);
      border: 0;
      background: transparent;
      color-scheme: normal;
    }

    .source-content {
      display: grid;
      gap: 18px;
    }

    .source-content h2,
    .source-content h3 {
      margin: 10px 0 0;
      line-height: 1.08;
      letter-spacing: 0;
    }

    .source-content h3 {
      color: var(--gold-2);
      font-size: clamp(1.24rem, 2vw, 1.72rem);
    }

    .source-content p,
    .source-content li,
    .source-content blockquote {
      color: var(--muted);
      font-size: 1.02rem;
      line-height: 1.76;
    }

    .source-content blockquote {
      margin: 0;
      padding: 20px 22px;
      border-left: 2px solid var(--gold);
      background: rgba(255, 255, 255, 0.035);
      border-radius: 0 var(--radius) var(--radius) 0;
    }

    /* Let each service-page Why Hire heading use the full section container. */
    .section[class*="section-why-hire-arrow-security-for-"] .section-head {
      grid-template-columns: minmax(0, 1fr);
    }

    .styled-list {
      display: grid;
      gap: 12px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .styled-list li {
      position: relative;
      padding-left: 26px;
    }

    .styled-list li::before {
      position: absolute;
      top: 0.75em;
      left: 0;
      width: 8px;
      height: 8px;
      content: "";
      border-radius: 50%;
      background: var(--gold);
      box-shadow: 0 0 0 5px rgba(227, 170, 54, 0.12);
    }

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

    @media (min-width: 981px) {
      main > .hero-arizona-guard-card-training
        ~ .section-arizona-guard-card-training-options
        .generated-card-grid,
      main > .hero-cpr-first-aid-training
        ~ .section-course-topics
        .generated-card-grid,
      main > .hero-basic-pistol-training
        ~ .section-what-students-will-learn
        .generated-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    .gallery-card {
      position: relative;
      overflow: hidden;
      min-height: 260px;
      margin: 0;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--panel);
      box-shadow: var(--shadow);
    }

    .gallery-card img {
      width: 100%;
      height: 100%;
      min-height: 260px;
      object-fit: cover;
      transition: transform 800ms var(--ease), filter 320ms ease;
    }

    .gallery-card:hover img {
      filter: saturate(1.06) contrast(1.04);
      transform: scale(1.04);
    }

    .policy-content {
      max-width: 1040px;
      margin-inline: auto;
    }

    .coverage-pill {
      text-decoration: none;
    }

    .faq-grid {
      display: grid;
      gap: 34px;
    }

    .faq-grid > div:first-child {
      max-width: 760px;
    }

    .faq-list {
      display: grid;
      gap: 10px;
    }

    .faq-item {
      overflow: hidden;
      background: linear-gradient(145deg, rgba(16, 35, 52, 0.8), rgba(21, 24, 18, 0.9));
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
    }

    .faq-item summary {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      min-height: 68px;
      padding: 20px 24px;
      color: var(--text);
      font-weight: 900;
      cursor: pointer;
      list-style: none;
    }

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

    .faq-item summary::after {
      content: "+";
      color: var(--gold);
      font-size: 1.35rem;
      line-height: 1;
      transition: transform 220ms ease;
    }

    .faq-item[open] summary::after {
      transform: rotate(45deg);
    }

    .faq-item p {
      margin: 0;
      padding: 0 24px 24px;
      color: var(--muted);
      line-height: 1.72;
    }

    .faq-question {
      display: flex;
      width: 100%;
      min-height: 68px;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 20px 24px;
      border: 0;
      background: transparent;
      color: var(--text);
      cursor: pointer;
      font-weight: 900;
      text-align: left;
    }

    .faq-question svg {
      color: var(--gold);
      transition: transform 220ms ease;
    }

    .faq-question[aria-expanded="true"] svg {
      transform: rotate(45deg);
    }

    .faq-answer {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows 220ms var(--ease);
    }

    .faq-question[aria-expanded="true"] + .faq-answer {
      grid-template-rows: 1fr;
    }

    .faq-answer > div {
      min-height: 0;
      overflow: hidden;
    }

    .faq-answer p {
      margin: 0;
      padding: 0 24px 24px;
      color: var(--muted);
      line-height: 1.72;
    }

    @media (max-width: 980px) {
      body.admin-bar .site-header { top: 46px; }
      .generated-gallery,
      .generated-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .split-grid.image-right > :first-child,
      .split-grid.image-right > .content-block,
      .about-grid.image-right > :first-child,
      .about-grid.image-right > .content-block {
        order: initial;
      }
    }

    @media (max-width: 782px) {
      body.admin-bar .site-header { top: 46px; }
    }

    @media (max-width: 640px) {
      .generated-gallery,
      .generated-card-grid {
        grid-template-columns: 1fr;
      }
    }

    body.home {
      --ink: #f7f4ea;
      --ink-strong: #ffffff;
      --text: #f7f4ea;
      --muted: #bbb5a4;
      --muted-2: #918b7a;
      --gold: #d6cb9d;
      --gold-2: #e3b557;
      --gold-strong: #d6993e;
      --line: rgba(214, 203, 157, 0.22);
      --line-strong: rgba(214, 203, 157, 0.46);
      --container: min(92vw, 1760px);
      --container-narrow: min(90vw, 1320px);
      --header-height: 86px;
      --ease: cubic-bezier(.22, 1, .36, 1);
      --ease-soft: cubic-bezier(.16, 1, .3, 1);
      font-family: var(--sans);
      font-size: 16px;
      line-height: 1.65;
      letter-spacing: 0;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
      background:
        radial-gradient(circle at 12% 0%, rgba(214, 153, 62, 0.13), transparent 30rem),
        linear-gradient(180deg, #050606 0%, #101111 44%, #070808 100%);
    }

    body.home::before,
    body.home::after {
      display: none;
    }

    body.home .site-header {
      z-index: 50;
      min-height: var(--header-height);
      border-bottom-color: rgba(214, 203, 157, 0.16);
      background: rgba(7, 8, 8, 0.84);
    }

    body.home.is-scrolled .site-header {
      border-color: rgba(214, 203, 157, 0.28);
      background: rgba(5, 6, 6, 0.92);
    }

    body.home .topbar {
      border-bottom-color: rgba(214, 203, 157, 0.12);
      background: rgba(0, 0, 0, 0.32);
    }

    body.home .topbar-inner {
      min-height: 34px;
      gap: 18px;
      color: var(--muted);
      font-size: 0.78rem;
      font-weight: 700;
    }

    body.home .utility-link {
      gap: 7px;
    }

    body.home .utility-link svg {
      width: 15px;
      height: 15px;
      color: var(--gold-strong);
    }

    body.home .nav-inner {
      min-height: 52px;
      gap: 28px;
    }

    body.home .brand {
      min-width: 230px;
      gap: 13px;
    }

    body.home .brand-wordmark {
      width: 238px;
    }

    body.home .main-nav {
      gap: 8px;
      font-size: initial;
      font-weight: initial;
    }

    body.home .nav-item {
      display: flex;
      align-items: center;
    }

    body.home .nav-link,
    body.home .nav-trigger {
      min-height: 42px;
      padding: 0 12px;
      color: var(--ink);
      font-size: 0.9rem;
      font-weight: 700;
    }

    body.home .phone-link {
      min-height: 38px;
      color: var(--gold);
      font-size: 0.84rem;
      padding-inline: 14px;
    }

    body.home .btn {
      position: relative;
      min-height: 48px;
      overflow: hidden;
      border-color: var(--line-strong);
      padding-inline: 20px;
      font-size: 0.9rem;
      font-weight: 800;
      transition: transform 180ms var(--ease), background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
    }

    body.home .btn::before {
      position: absolute;
      inset: -40% auto -40% -55%;
      width: 42%;
      content: "";
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
      opacity: 0;
      transform: skewX(-18deg);
      transition: opacity 180ms ease, transform 540ms var(--ease-soft);
    }

    body.home .btn:hover::before {
      opacity: 1;
      transform: translateX(410%) skewX(-18deg);
    }

    body.home .btn-primary {
      border-color: var(--gold-strong);
      background: linear-gradient(180deg, #dfb85f 0%, var(--gold-strong) 100%);
      color: #0b0b09;
    }

    body.home .btn-secondary {
      border-color: var(--line-strong);
      background: rgba(5, 6, 6, 0.48);
      color: var(--gold);
    }

    body.home .btn-secondary:hover {
      border-color: var(--gold);
      background: rgba(214, 203, 157, 0.12);
      color: var(--ink-strong);
    }

    .hero-home {
      min-height: calc(100svh - var(--header-height));
    }

    .hero-home .hero-media {
      overflow: hidden;
      background: #050606;
    }

    .hero-home .hero-media img,
    .hero-home .hero-media video {
      opacity: 0.72;
      transform-origin: center;
    }

    .hero-home::before {
      background:
        linear-gradient(90deg, rgba(4, 5, 5, 0.94) 0%, rgba(4, 5, 5, 0.82) 37%, rgba(4, 5, 5, 0.36) 71%, rgba(4, 5, 5, 0.84) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.08) 38%, #090a0a 100%);
    }

    .hero-home::after {
      position: absolute;
      inset: 12% 4% 8% 50%;
      z-index: -1;
      content: "";
      pointer-events: none;
      background: radial-gradient(circle, rgba(214, 153, 62, 0.16), transparent 66%);
      filter: blur(28px);
      opacity: 0.72;
      animation: ambientDrift 16s ease-in-out infinite alternate;
    }

    .hero-home .hero-inner {
      width: var(--container);
      min-height: calc(100svh - var(--header-height));
      margin-inline: auto;
      align-items: end;
      padding: 82px 0 34px;
    }

    .hero-home .hero-copy {
      width: min(900px, 100%);
      padding-bottom: 30px;
    }

    .hero-home h1 {
      max-width: 860px;
      margin: 0;
      color: var(--ink-strong);
      font-family: var(--serif);
      font-size: 4.95rem;
      font-weight: 650;
      line-height: 0.98;
      letter-spacing: 0;
      text-transform: none;
    }

    .hero-home h1 span:first-child,
    .hero-home h1 span:nth-child(2) {
      font-size: inherit;
      line-height: inherit;
    }

    .hero-home .hero-lede {
      max-width: 680px;
      margin-top: 28px;
      color: var(--ink);
      font-size: 1.18rem;
      line-height: 1.65;
    }

    .hero-home .hero-actions {
      align-items: center;
      margin-top: 34px;
    }

    .hero-home .btn {
      min-height: 48px;
      padding-inline: 20px;
      font-weight: 850;
    }

    .hero-proof {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      border-top: 1px solid var(--line);
      background: rgba(5, 6, 6, 0.58);
      backdrop-filter: blur(16px);
    }

    .proof-item {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 14px;
      min-height: 108px;
      align-items: center;
      padding: 22px;
      border-right: 1px solid rgba(214, 203, 157, 0.16);
      transition: background 220ms ease, transform 220ms var(--ease), box-shadow 220ms ease, opacity 560ms ease;
    }

    .proof-item:last-child {
      border-right: 0;
    }

    .proof-item svg {
      width: 28px;
      height: 28px;
      color: var(--gold-strong);
      transition: transform 220ms var(--ease);
    }

    .proof-item:hover {
      background: rgba(214, 153, 62, 0.08);
      transform: translateY(-2px);
    }

    .proof-item:hover svg {
      transform: scale(1.08);
    }

    .proof-item strong {
      display: block;
      color: var(--ink-strong);
      font-size: 0.94rem;
      line-height: 1.3;
    }

    .proof-item span {
      display: block;
      margin-top: 2px;
      color: var(--muted);
      font-size: 0.83rem;
      line-height: 1.45;
    }

    .hero-home .proof-item {
      opacity: 0;
      transform: translateY(16px) scale(0.985);
      transition-delay: var(--stagger-delay, 0ms);
    }

    .hero-home.section-in-view .proof-item {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    .hero-home.section-in-view .proof-item:hover {
      transform: translateY(-2px) scale(1);
    }

    @keyframes ambientDrift {
      from { transform: translate3d(-1%, 0, 0) scale(1); }
      to { transform: translate3d(2%, 1%, 0) scale(1.05); }
    }

    @media (min-width: 1900px) {
      body.home {
        --header-height: 96px;
      }

      body.home .topbar-inner {
        min-height: 40px;
        font-size: 0.82rem;
      }

      body.home .nav-inner {
        min-height: 56px;
      }

      body.home .brand-mark {
        width: 60px;
        height: 60px;
      }

      body.home .brand-wordmark {
        width: 272px;
      }

      body.home .hero-home h1 {
        font-size: 5.7rem;
      }

      body.home .hero-home .hero-lede {
        font-size: 1.28rem;
      }

      body.home .section-title {
        font-size: 3.45rem;
      }

      body.home .service-card {
        min-height: 310px;
      }
    }

    @media (max-width: 1220px) {
      :root {
        --header-height: 74px;
      }

      body.home {
        --header-height: 74px;
      }
    }

    @media (max-width: 980px) {
      .hero-home,
      .hero-home .hero-inner {
        min-height: calc(100svh - var(--header-height));
      }

      .hero-home .hero-inner {
        padding: 106px 0 38px;
      }

      .hero-proof {
        grid-template-columns: 1fr;
        gap: 1px;
        background: var(--line);
      }

      .proof-item {
        border-right: 0;
        background: rgba(5, 6, 6, 0.78);
      }
    }

    @media (max-width: 640px) {
      .hero-home {
        min-height: auto;
      }

      .hero-home .hero-media img,
      .hero-home .hero-media video {
        object-position: 30% center;
      }

      .hero-home .hero-inner {
        min-height: auto;
        padding: 78px 0 24px;
      }

      .hero-home .hero-copy {
        padding-bottom: 24px;
      }

      .hero-home h1,
      .hero-home h1 span:first-child,
      .hero-home h1 span:nth-child(2) {
        font-size: 42px;
        line-height: 0.96;
      }

      .hero-home .hero-lede {
        font-size: 1rem;
      }

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

    body.home .section {
      padding: 96px 0;
    }

    body.home .section-process,
    body.home .section-industries {
      padding: clamp(124px, 8vw, 164px) 0;
    }

    body.home .section-dark {
      background: #0d0f0f;
    }

    body.home .section-alt {
      background:
        linear-gradient(180deg, rgba(214, 153, 62, 0.07), transparent 26rem),
        #111313;
    }

    body.home .section-inner {
      width: var(--container);
      margin-inline: auto;
    }

    body.home .section-narrow {
      width: var(--container-narrow);
      margin-inline: auto;
    }

    body.home .section-head {
      display: grid;
      grid-template-columns: minmax(0, 0.78fr) minmax(300px, 0.42fr);
      gap: 42px;
      align-items: end;
      margin-bottom: 38px;
    }

    body.home .section-title {
      margin: 0;
      color: var(--ink-strong);
      font-family: var(--serif);
      font-size: 3rem;
      font-weight: 650;
      line-height: 1.05;
      letter-spacing: 0;
    }

    body.home .service-card h3 {
      font-family: var(--serif);
      font-weight: 650;
      line-height: 1.18;
    }

    body.home .section-copy {
      margin: 0;
      color: var(--muted);
      font-size: 1rem;
      line-height: 1.75;
    }

    body.home .rule {
      margin-bottom: 18px;
    }

    body.home .service-toolbar {
      margin: 0 0 24px;
    }

    body.home .service-card-content {
      position: absolute;
      inset: auto 0 0;
      z-index: 2;
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 14px;
      align-items: center;
      padding: 22px;
    }

    body.home .service-inspector {
      grid-template-columns: 0.85fr 1.15fr;
      margin-top: 28px;
      padding: 30px;
      background:
        linear-gradient(135deg, rgba(214, 153, 62, 0.13), transparent 46%),
        rgba(255, 255, 255, 0.035);
    }

    body.home .service-inspector strong {
      margin-bottom: 0;
      color: var(--gold);
      font-size: 0.82rem;
      font-weight: 800;
    }

    body.home .service-inspector h3 {
      margin: 8px 0 0;
      color: var(--ink-strong);
      font-family: var(--serif);
      font-size: 2rem;
      font-weight: 650;
      line-height: 1.08;
    }

    body.home .service-inspector p {
      line-height: 1.65;
    }

    .quote-band-feature {
      position: relative;
      overflow: hidden;
      padding: 0;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background:
        radial-gradient(circle at 18% 18%, rgba(214, 153, 62, 0.22), transparent 28rem),
        linear-gradient(135deg, #141513 0%, #0a0b0b 52%, #15120b 100%);
      color: var(--ink);
    }

    .quote-band-feature::before {
      display: none;
    }

    .quote-band-feature .quote-band-inner {
      display: grid;
      width: var(--container);
      min-height: 430px;
      margin: 0 auto;
      grid-template-columns: minmax(360px, 0.8fr) minmax(520px, 1.2fr);
      gap: 44px;
      align-items: center;
      padding: 58px 0;
    }

    .quote-band-feature .quote-copy {
      display: grid;
      align-content: center;
      align-self: stretch;
      padding: 42px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background:
        linear-gradient(135deg, rgba(214, 153, 62, 0.18), transparent 46%),
        rgba(255, 255, 255, 0.035);
    }

    .quote-band-feature .quote-copy .phone-emblem {
      display: inline-grid;
      width: 78px;
      height: 78px;
      place-items: center;
      margin-bottom: 18px;
      border: 1px solid var(--gold-strong);
      border-radius: 50%;
      background: rgba(214, 153, 62, 0.12);
      color: var(--gold);
      animation: softPulse 5.4s ease-in-out infinite;
    }

    .quote-band-feature .quote-copy .phone-emblem svg {
      width: 34px;
      height: 34px;
    }

    .quote-band-feature .quote-copy h2 {
      margin: 0 0 16px;
      color: var(--ink-strong);
      font-family: var(--serif);
      font-size: 2.55rem;
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: 0;
    }

    .quote-band-feature .quote-copy p {
      max-width: 600px;
      margin: 0;
      color: var(--muted);
      font-size: 1.04rem;
      font-weight: 500;
      line-height: 1.65;
    }

    .quote-band-feature .quote-copy a {
      color: var(--gold);
      font-weight: 800;
      text-decoration: underline;
      text-decoration-thickness: 1px;
      text-underline-offset: 5px;
    }

    .quote-band-feature .quote-copy .cta-row .btn-primary,
    .quote-band-feature .quote-copy .cta-row .btn-primary:visited,
    .quote-band-feature .quote-copy .cta-row .btn-primary:hover,
    .quote-band-feature .quote-copy .cta-row .btn-primary:focus,
    .quote-band-feature .quote-copy .cta-row .btn-primary:focus-visible {
      color: #0b0b09;
      text-decoration: none;
    }

    .quote-band-feature .quote-copy .cta-row {
      margin-top: 28px;
    }

    .quote-band-feature .quote-media {
      position: relative;
      min-height: 330px;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #0b0c0c;
      box-shadow: var(--shadow);
      transition: transform 320ms var(--ease), box-shadow 320ms ease, border-color 320ms ease;
    }

    .quote-band-feature .quote-media:hover {
      border-color: var(--line-strong);
      box-shadow: 0 30px 70px rgba(0, 0, 0, 0.46);
      transform: translateY(-3px);
    }

    .quote-band-feature .quote-media-main {
      width: 100%;
      height: 100%;
      min-height: 430px;
      object-fit: cover;
      opacity: 0.78;
      filter: saturate(0.92) contrast(1.04);
      transition: transform 900ms var(--ease), filter 320ms ease;
    }

    .quote-band-feature .quote-media:hover .quote-media-main {
      filter: saturate(1.03) contrast(1.08);
      transform: scale(1.035);
    }

    .quote-band-feature .quote-media::after {
      position: absolute;
      inset: 0;
      content: "";
      background:
        linear-gradient(90deg, rgba(8, 9, 9, 0.76) 0%, rgba(8, 9, 9, 0.18) 54%, rgba(8, 9, 9, 0.58) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.72));
    }

    .quote-band-feature .quote-media-card {
      position: absolute;
      z-index: 2;
      border: 1px solid rgba(214, 203, 157, 0.32);
      border-radius: var(--radius);
      background: rgba(8, 9, 9, 0.78);
      box-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
      backdrop-filter: blur(14px);
      transition: transform 360ms var(--ease), border-color 260ms ease, background 260ms ease;
    }

    .quote-band-feature .quote-media:hover .quote-media-card {
      border-color: rgba(214, 203, 157, 0.48);
      background: rgba(8, 9, 9, 0.86);
      transform: translateY(-3px);
    }

    .quote-band-feature .quote-media-card.photo {
      right: 28px;
      bottom: 28px;
      width: min(48%, 360px);
      overflow: hidden;
      margin: 0;
    }

    .quote-band-feature .quote-media-card.photo img {
      width: 100%;
      aspect-ratio: 1.45 / 1;
      object-fit: cover;
    }

    .quote-band-feature .quote-media-card.stat {
      top: auto;
      bottom: 28px;
      left: 28px;
      max-width: 330px;
      padding: 22px;
    }

    .quote-band-feature .quote-media-card.stat:not(:last-child) {
      max-width: min(330px, calc(52% - 70px));
    }

    .quote-band-feature .quote-media-card strong {
      display: block;
      color: var(--ink-strong);
      font-size: 1.05rem;
      font-weight: 900;
      line-height: 1.25;
    }

    .quote-band-feature .quote-media-card span {
      display: block;
      margin-top: 8px;
      color: var(--muted);
      font-size: 0.88rem;
      line-height: 1.5;
    }

    body.home .split-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
      gap: 48px;
      align-items: center;
    }

    body.home .media-stack {
      display: grid;
      grid-template-columns: 0.76fr 1fr;
      gap: 18px;
      align-items: stretch;
    }

    body.home .media-frame {
      margin: 16px 40px;
    }

    body.home .media-frame img {
      width: 100%;
      height: 100%;
      min-height: 320px;
    }

    body.home .media-frame.tall img {
      min-height: 520px;
    }

    body.home .media-frame-shooter img,
    body.home .media-frame-security img {
      transform-origin: left center;
    }

    body.home .media-frame-shooter img {
      object-position: left center;
    }

    body.home .media-frame-security img {
      object-position: 16% center;
    }

    body.home .content-block h2,
    body.home .content-block h3 {
      margin: 0;
      color: var(--ink-strong);
      font-family: var(--serif);
      font-size: 2.75rem;
      font-weight: 650;
      line-height: 1.06;
      letter-spacing: 0;
    }

    body.home .source-content {
      display: block;
      gap: normal;
    }

    body.home .content-block p {
      margin: 18px 0 0;
      color: var(--muted);
      font-size: 1rem;
      line-height: 1.65;
    }

    body.home .coverage-list {
      display: grid;
      gap: 13px;
      margin: 26px 0 0;
      padding: 0;
      list-style: none;
    }

    body.home .coverage-list li {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 12px;
      align-items: center;
      color: var(--ink);
      font-size: 1rem;
      font-weight: 600;
      line-height: 1.65;
      transition: color 180ms ease, transform 180ms var(--ease);
    }

    body.home .coverage-list svg {
      width: 20px;
      height: 20px;
      color: var(--gold-strong);
      transition: transform 180ms var(--ease);
    }

    body.home .coverage-list li:hover {
      color: var(--ink-strong);
      transform: translateX(4px);
    }

    body.home .coverage-list li:hover svg {
      transform: scale(1.12);
    }

    body.home .about-grid {
      display: grid;
      grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.14fr);
      gap: 42px;
      align-items: center;
    }

    body.home .mission {
      margin: 28px 40px 1em;
      padding: 10px 0 10px 28px;
      border-left: 2px solid var(--gold-strong);
      color: var(--gold);
      font-family: var(--serif);
      font-size: 1.86rem;
      font-style: italic;
      font-weight: 500;
      line-height: 1.36;
      transition: border-color 260ms ease, color 260ms ease, transform 260ms var(--ease);
    }

    body.home .mission p {
      margin: 0;
      color: inherit;
      font: inherit;
      line-height: inherit;
    }

    body.home .mission:hover {
      border-color: var(--gold);
      color: var(--ink-strong);
      transform: translateX(4px);
    }

    body.home .process-track {
      position: relative;
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 18px;
      margin-top: 46px;
    }

    body.home .process-track::before {
      position: absolute;
      top: 38px;
      right: 9%;
      left: 9%;
      height: 1px;
      content: "";
      opacity: 0;
      transform: scaleX(0.2);
      transform-origin: center;
      background: linear-gradient(90deg, rgba(214, 153, 62, 0), var(--gold-strong), rgba(214, 153, 62, 0));
      transition: opacity 760ms ease, transform 900ms var(--ease-soft);
    }

    body.home .section-narrow.is-visible .process-track::before {
      opacity: 1;
      transform: scaleX(1);
    }

    body.home .process-step {
      position: relative;
      padding: 0;
      border: 0;
      background: transparent;
      color: inherit;
      cursor: pointer;
      text-align: center;
      transition: transform 220ms var(--ease);
    }

    body.home .process-step:hover {
      transform: translateY(-2px);
    }

    body.home .step-number {
      display: inline-grid;
      width: 76px;
      height: 76px;
      place-items: center;
      border: 1px solid var(--gold-strong);
      border-radius: 50%;
      background: #0d0f0f;
      color: var(--gold);
      font-family: var(--serif);
      font-size: 1.7rem;
      font-weight: 800;
      line-height: 1;
      text-align: center;
      font-variant-numeric: tabular-nums;
      transition: background 180ms ease, color 180ms ease, transform 180ms var(--ease), box-shadow 180ms ease;
    }

    body.home .process-step[aria-pressed="true"] .step-number,
    body.home .process-step:hover .step-number {
      background: var(--gold-strong);
      color: #080807;
      box-shadow: 0 0 0 8px rgba(214, 153, 62, 0.11);
      transform: translateY(-3px);
    }

    body.home .process-step strong {
      display: block;
      margin-top: 18px;
      color: var(--ink-strong);
      font-size: 1rem;
    }

    body.home .process-step > span:not(.step-number) {
      display: block;
      max-width: 220px;
      margin: 6px auto 0;
      color: var(--muted);
      font-size: 0.88rem;
      line-height: 1.5;
    }

    body.home .industries {
      display: grid;
      grid-template-columns: repeat(8, minmax(0, 1fr));
      gap: 1px;
      margin-top: 34px;
      border: 1px solid var(--line);
      background: var(--line);
    }

    body.home .industry {
      display: grid;
      min-height: 132px;
      place-items: center;
      gap: 12px;
      padding: 18px 10px;
      background: #0d0f0f;
      color: var(--ink);
      font-size: 0.82rem;
      font-weight: 700;
      text-align: center;
      transition: background 220ms ease, color 220ms ease, transform 220ms var(--ease), box-shadow 220ms ease;
    }

    body.home .industry svg {
      width: 35px;
      height: 35px;
      color: var(--gold-strong);
      transition: transform 220ms var(--ease), color 220ms ease;
    }

    body.home .industry:hover {
      z-index: 1;
      background: #151717;
      color: var(--ink-strong);
      box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
      transform: translateY(-4px);
    }

    body.home .industry:hover svg {
      color: var(--gold);
      transform: translateY(-2px) scale(1.08);
    }

    body.home .testimonial {
      position: relative;
      display: grid;
      min-height: 430px;
      align-items: center;
      overflow: hidden;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background:
        linear-gradient(90deg, rgba(5, 6, 6, 0.96), rgba(5, 6, 6, 0.76), rgba(5, 6, 6, 0.92)),
        var(--testimonial-bg, url("../images/AS-security-testimonail-bg.jpg")) center / cover no-repeat;
    }

    body.home .testimonial::after {
      position: absolute;
      inset: 12% 6% 12% 52%;
      content: "";
      pointer-events: none;
      background: radial-gradient(circle, rgba(214, 153, 62, 0.12), transparent 68%);
      filter: blur(30px);
      opacity: 0.72;
      animation: ambientDrift 18s ease-in-out infinite alternate;
    }

    body.home .testimonial-inner {
      position: relative;
      z-index: 1;
      width: var(--container-narrow);
      margin: 0 auto;
    }

    body.home .quote-slide {
      display: none;
      max-width: 900px;
    }

    body.home .quote-slide.is-active {
      display: block;
      animation: slideFade 420ms var(--ease-soft) both;
    }

    body.home .quote-slide blockquote {
      margin: 0;
      color: var(--ink-strong);
      font-family: var(--serif);
      font-size: 2.25rem;
      font-style: italic;
      font-weight: 500;
      line-height: 1.24;
    }

    body.home .quote-slide cite {
      display: block;
      margin-top: 20px;
      color: var(--gold);
      font-style: normal;
      font-weight: 800;
    }

    body.home .slider-controls {
      display: flex;
      gap: 10px;
      margin-top: 26px;
    }

    body.home .slider-dot {
      position: relative;
      width: 42px;
      height: 18px;
      padding: 0;
      border: 0;
      background: transparent;
      cursor: pointer;
    }

    body.home .slider-dot::before {
      position: absolute;
      top: 7px;
      right: 0;
      left: 0;
      height: 4px;
      border-radius: 999px;
      content: "";
      background: rgba(255, 255, 255, 0.24);
      transition: background 180ms ease, transform 180ms var(--ease), width 180ms var(--ease);
    }

    body.home .slider-dot[aria-current="true"]::before {
      background: var(--gold-strong);
      transform: scaleX(1.12);
    }

    body.home .faq-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 28px;
      align-items: start;
    }

    body.home .faq-grid > .content-block {
      max-width: 760px;
    }

    body.home .faq-list {
      display: grid;
      width: 100%;
      gap: 12px;
    }

    body.home .faq-question {
      display: flex;
      width: 100%;
      min-height: 64px;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 0 20px;
      border: 0;
      background: transparent;
      color: var(--ink-strong);
      cursor: pointer;
      font-weight: 800;
      text-align: left;
      transition: color 180ms ease, background 180ms ease;
    }

    body.home .faq-question:hover,
    body.home .faq-question[aria-expanded="true"] {
      color: var(--gold);
      background: rgba(214, 153, 62, 0.06);
    }

    body.home .faq-question svg {
      width: 18px;
      height: 18px;
      color: var(--gold);
      transition: transform 180ms ease;
    }

    body.home .faq-question[aria-expanded="true"] svg {
      transform: rotate(45deg);
    }

    body.home .faq-answer {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows 220ms var(--ease);
    }

    body.home .faq-question[aria-expanded="true"] + .faq-answer {
      grid-template-rows: 1fr;
    }

    body.home .faq-answer > div {
      min-height: 0;
      overflow: hidden;
    }

    body.home .faq-answer p {
      margin: 0;
      padding: 0 20px 20px;
      color: var(--muted);
    }

    body.home .contact-panel {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 24px;
      align-items: center;
      padding: 34px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background:
        linear-gradient(135deg, rgba(214, 153, 62, 0.16), transparent 46%),
        #111313;
      transition: border-color 260ms ease, background 260ms ease, transform 260ms var(--ease), box-shadow 260ms ease;
    }

    body.home .contact-panel:hover {
      border-color: var(--line-strong);
      background:
        linear-gradient(135deg, rgba(214, 153, 62, 0.22), transparent 48%),
        #121414;
      box-shadow: 0 24px 52px rgba(0, 0, 0, 0.3);
      transform: translateY(-3px);
    }

    body.home .contact-panel .panel-actions {
      margin-top: 0;
      white-space: nowrap;
    }

    body.home .contact-panel h3 {
      margin: 0;
      color: var(--ink-strong);
      font-size: 2rem;
      font-weight: 800;
      line-height: 1.12;
    }

    body.home .contact-panel p {
      margin: 14px 0 0;
      color: var(--muted);
    }

    @keyframes softPulse {
      0%,
      100% {
        opacity: 0.42;
        transform: scale(1);
      }

      50% {
        opacity: 0.72;
        transform: scale(1.045);
      }
    }

    @keyframes slideFade {
      from {
        opacity: 0;
        transform: translateY(10px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 1220px) {
      body.home .nav-item {
        display: block;
        width: 100%;
      }

      body.home .nav-link,
      body.home .nav-trigger {
        min-height: 48px;
        padding: 13px 10px;
      }
    }

    @media (max-width: 1180px) {
      body.home .section-head,
      body.home .split-grid,
      body.home .about-grid,
      body.home .faq-grid {
        grid-template-columns: 1fr;
      }

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

      body.home .process-track,
      body.home .industries {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      body.home .process-track::before {
        display: none;
      }
    }

    @media (max-width: 1000px) {
      .quote-band-feature .quote-band-inner {
        grid-template-columns: 1fr;
        gap: 24px;
      }

      .quote-band-feature .quote-media {
        min-height: 320px;
      }
    }

    @media (max-width: 820px) {
      body.home .contact-panel {
        grid-template-columns: 1fr;
      }

      body.home .contact-panel .panel-actions {
        white-space: normal;
      }
    }

    @media (max-width: 760px) {
      body.home .section {
        padding: 68px 0;
      }

      body.home .section-process,
      body.home .section-industries {
        padding: 92px 0;
      }

      body.home .section-title {
        font-size: 2.28rem;
      }

      body.home .content-block h2,
      body.home .content-block h3 {
        font-size: 2.1rem;
      }

      .footer-start__intro h2 {
        font-size: 2.1rem;
      }

      body.home .service-grid,
      body.home .service-inspector,
      body.home .media-stack,
      body.home .process-track,
      body.home .industries {
        grid-template-columns: 1fr;
      }

      .quote-band-feature .quote-copy {
        padding: 28px;
      }

      .quote-band-feature .quote-copy h2 {
        font-size: 2.05rem;
      }

      .quote-band-feature .quote-band-inner {
        min-height: auto;
        padding: 42px 0;
      }

      .quote-band-feature .quote-media-main {
        min-height: 380px;
      }

      .quote-band-feature .quote-media-card.stat {
        top: auto;
        right: 18px;
        bottom: 18px;
        left: 18px;
        max-width: none;
        padding: 18px;
      }

      .quote-band-feature .quote-media-card.stat:not(:last-child) {
        max-width: none;
      }

      .quote-band-feature .quote-media-card.photo {
        top: 18px;
        right: 18px;
        bottom: auto;
        width: min(36%, 220px);
      }

      .quote-band-feature .quote-media-card.photo img {
        height: auto;
      }

      body.home .quote-band-feature .quote-media-card.photo,
      main > .hero-store ~ .quote-band-feature .quote-media-card.photo,
      body.home .section-serving-arizona-since-1993 .media-stack > .media-frame-shooter {
        display: none;
      }

      body.home .step-number {
        width: 68px;
        height: 68px;
        font-size: 1.48rem;
      }

      body.home .mission {
        padding-left: 18px;
        font-size: 18px;
      }

      body.home .quote-slide blockquote {
        font-size: 1.65rem;
      }
    }

    @media (max-width: 460px) {
      body.home .service-toolbar {
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 6px;
      }

      body.home .service-toolbar .filter-btn {
        min-width: 0;
        padding-inline: 5px;
        white-space: nowrap;
      }

      body.home .service-card-content {
        grid-template-columns: auto 1fr;
      }

      body.home .service-card .card-link {
        grid-column: 1 / -1;
        width: 100%;
        height: 38px;
        border-radius: 6px;
      }
    }

    @media (max-width: 350px) {
      body.home .service-toolbar {
        gap: 4px;
      }

      body.home .service-toolbar .filter-btn {
        padding-inline: 3px;
        font-size: 0.75rem;
      }
    }

    /* About page */
    .hero-about-us h1 {
      max-width: 860px;
      color: var(--ink-strong);
      font-family: var(--serif);
      font-size: clamp(3rem, 4.85vw, 4.75rem);
      font-weight: 650;
      line-height: 1;
      letter-spacing: 0;
      text-transform: none;
      white-space: nowrap;
    }

    .hero-security-service h1,
    .hero-sentence-case-page h1 {
      max-width: 860px;
      color: var(--ink-strong);
      font-family: var(--serif);
      font-size: 4.75rem;
      font-weight: 650;
      line-height: 1;
      letter-spacing: 0;
      text-transform: none;
      text-wrap: balance;
    }

    .hero-reviews h1 {
      max-width: 860px;
      color: var(--ink-strong);
      font-family: var(--serif);
      font-size: 4.95rem;
      font-weight: 650;
      line-height: 0.98;
      letter-spacing: 0;
      text-transform: none;
      white-space: nowrap;
    }

    @media (min-width: 1900px) {
      .hero-security-service h1,
      .hero-sentence-case-page h1,
      .hero-reviews h1 {
        font-size: 5.7rem;
      }
    }

    @media (min-width: 981px) and (max-width: 1350px) {
      .hero-security-service h1,
      .hero-sentence-case-page h1 {
        font-size: 3.5rem;
      }
    }

    .section-arizona-security-built-around-professional-standards .content-block h2,
    .section-message-from-our-president .content-block h2 {
      max-width: 680px;
      margin: 0;
      font-family: var(--serif);
      font-size: clamp(2.4rem, 4vw, 3.25rem);
      font-weight: 650;
      line-height: 1.06;
    }

    .section-arizona-security-built-around-professional-standards .generated-hero-card img {
      object-position: right center;
    }

    @media (min-width: 981px) {
      .section-what-sets-arrow-apart .generated-card-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }

      .section-what-sets-arrow-apart .section-head,
      .section-from-protection-to-preparation .section-head {
        grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.5fr);
      }

      .section-what-sets-arrow-apart .section-title,
      .section-from-protection-to-preparation .section-title {
        font-size: clamp(2.6rem, 4vw, 4rem);
        white-space: nowrap;
      }
    }

    .section-our-mission {
      padding: clamp(64px, 7vw, 100px) 0;
    }

    .section-our-mission > .section-inner {
      display: grid;
      grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.12fr);
      gap: clamp(40px, 6vw, 88px);
      align-items: center;
    }

    .section-our-mission .section-head {
      display: block;
      margin: 0;
    }

    .section-our-mission .section-title {
      max-width: 440px;
      font-family: var(--serif);
      font-size: clamp(2.8rem, 4.4vw, 4.25rem);
      font-weight: 650;
      line-height: 1;
    }

    .section-our-mission .section-copy {
      max-width: 460px;
      margin-top: 24px;
      font-size: 1.08rem;
    }

    .section-our-mission .generated-card-grid {
      grid-template-columns: 1fr;
    }

    .section-our-mission .standout-card {
      display: grid;
      grid-template-columns: 56px minmax(0, 1fr);
      column-gap: 24px;
      row-gap: 10px;
      min-height: 0;
      padding: clamp(30px, 4vw, 50px);
      background:
        linear-gradient(135deg, rgba(227, 170, 54, 0.12), transparent 42%),
        linear-gradient(145deg, rgba(16, 35, 52, 0.92), rgba(21, 24, 18, 0.94));
    }

    .section-our-mission .standout-card > svg {
      grid-row: 1 / span 2;
      width: 56px;
      height: 56px;
      margin: 0;
    }

    .section-our-mission .standout-card h3 {
      margin: 0;
      color: var(--text);
      font-family: var(--serif);
      font-size: clamp(1.55rem, 2.2vw, 2rem);
      font-weight: 700;
      line-height: 1.12;
    }

    .section-our-mission .standout-card p {
      max-width: 660px;
      font-size: 1.05rem;
      line-height: 1.72;
    }

    .section-message-from-our-president {
      padding: clamp(78px, 8vw, 118px) 0;
      overflow: clip;
    }

    .section-message-from-our-president .split-grid {
      grid-template-columns: minmax(320px, 0.76fr) minmax(0, 1.1fr);
      gap: clamp(44px, 6vw, 88px);
      align-items: start;
    }

    .section-message-from-our-president .generated-hero-card {
      position: sticky;
      top: calc(var(--header-height) + 28px);
      align-self: start;
    }

    .section-message-from-our-president .generated-hero-card img {
      min-height: 0;
      aspect-ratio: 4 / 5;
      object-position: 25% center;
    }

    .section-message-from-our-president .source-content {
      gap: 22px;
      max-width: 760px;
      padding-left: clamp(0px, 2vw, 28px);
      border-left: 1px solid rgba(227, 170, 54, 0.22);
    }

    .section-message-from-our-president .source-content > p {
      font-size: 1.03rem;
      line-height: 1.78;
    }

    .section-message-from-our-president .source-content > p + p {
      margin-top: 0;
    }

    .section-message-from-our-president .source-content > p:first-of-type {
      max-width: max-content;
      margin: 2px 0 4px;
      padding: 10px 16px;
      color: var(--gold-2);
      background: rgba(227, 170, 54, 0.08);
      border-left: 2px solid var(--gold);
      font-family: var(--serif);
      font-size: 1.12rem;
      font-weight: 700;
      line-height: 1.4;
    }

    .section-message-from-our-president .signature {
      width: fit-content;
      min-width: min(100%, 260px);
      margin-top: 12px;
      padding-top: 20px;
      color: var(--text);
      border-color: rgba(227, 170, 54, 0.34);
      font-family: var(--serif);
      line-height: 1.6;
    }

    @media (min-width: 1081px) {
      .section-company-details .detail-grid {
        grid-template-columns:
          minmax(150px, 0.8fr)
          minmax(170px, 0.9fr)
          minmax(230px, 1.35fr)
          minmax(165px, 0.85fr)
          minmax(220px, 1.2fr);
      }
    }

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

      .section-company-details .detail-card {
        border-right: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
      }

      .section-company-details .detail-card:nth-child(2n),
      .section-company-details .detail-card:last-child {
        border-right: 0;
      }

      .section-company-details .detail-card:last-child {
        grid-column: 1 / -1;
        border-bottom: 0;
      }
    }

    @media (max-width: 980px) {
      .hero-about-us h1 {
        font-size: clamp(2.75rem, 8vw, 4.6rem);
      }

      .hero-security-service h1,
      .hero-sentence-case-page h1 {
        font-size: 4.25rem;
      }

      .hero-reviews h1 {
        font-size: clamp(2.75rem, 8vw, 4.6rem);
      }

      .section-our-mission > .section-inner,
      .section-message-from-our-president .split-grid {
        grid-template-columns: 1fr;
      }

      .section-message-from-our-president .generated-hero-card {
        position: relative;
        top: auto;
      }

      .section-message-from-our-president .generated-hero-card img {
        aspect-ratio: 16 / 10;
      }

      .section-message-from-our-president .source-content {
        max-width: none;
        padding-left: 0;
        border-left: 0;
      }
    }

    @media (max-width: 640px) {
      .hero-about-us:not(.hero-contact-us) .hero-media > img {
        object-position: 25% center;
      }

      .hero-hotel-motel-resorts .hero-media > img {
        object-position: 31% center;
      }

      .hero-about-us h1 {
        font-size: clamp(1.8rem, 8vw, 2.55rem);
        line-height: 1;
      }

      .hero-security-service h1,
      .hero-sentence-case-page h1 {
        font-size: 2.55rem;
        line-height: 1;
      }

      .hero-reviews h1 {
        font-size: clamp(2.05rem, 10vw, 3rem);
        line-height: 1;
      }

      .section-arizona-security-built-around-professional-standards .content-block h2,
      .section-message-from-our-president .content-block h2 {
        font-size: 2.35rem;
      }

      .section-our-mission {
        padding: 66px 0;
      }

      .section-our-mission .section-title {
        font-size: 2.6rem;
      }

      .section-our-mission .standout-card {
        grid-template-columns: 1fr;
        padding: 28px;
      }

      .section-our-mission .standout-card > svg {
        grid-row: auto;
        width: 48px;
        height: 48px;
      }

      .section-message-from-our-president {
        padding: 68px 0;
      }

      .section-message-from-our-president .generated-hero-card img {
        aspect-ratio: 4 / 3;
      }

      .section-company-details .detail-grid {
        grid-template-columns: 1fr;
      }

      .section-company-details .detail-card,
      .section-company-details .detail-card:nth-child(2n) {
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }

      .section-company-details .detail-card:last-child {
        grid-column: auto;
        border-bottom: 0;
      }
    }

    /* Store page */
    .hero-store {
      min-height: 680px;
    }

    .hero-store .hero-inner {
      min-height: 680px;
      padding-top: 150px;
      padding-bottom: 84px;
    }

    .hero-store::before {
      background:
        linear-gradient(90deg, rgba(5, 7, 7, 0.98) 0%, rgba(5, 7, 7, 0.9) 38%, rgba(5, 7, 7, 0.38) 72%, rgba(5, 7, 7, 0.5) 100%),
        linear-gradient(0deg, rgba(5, 7, 7, 0.86), transparent 54%);
    }

    .hero-store .hero-media img {
      object-position: center;
    }

    .hero-store .hero-grid-single {
      max-width: 920px;
    }

    .hero-store h1 {
      max-width: 820px;
      font-family: var(--sans);
      font-size: clamp(3.9rem, 6.1vw, 6.65rem);
      font-weight: 680;
      line-height: 0.96;
      text-transform: none;
    }

    .hero-store .hero-lede {
      max-width: 820px;
      color: rgba(247, 244, 234, 0.82);
    }

    main > .hero-store ~ .section {
      padding: clamp(82px, 8vw, 126px) 0;
    }

    main > .hero-store ~ .section .split-grid {
      grid-template-columns: minmax(340px, 0.92fr) minmax(0, 1.08fr);
      gap: clamp(42px, 6vw, 92px);
    }

    main > .hero-store ~ .section .source-content {
      display: block;
    }

    main > .hero-store ~ .section .content-block h2 {
      max-width: 760px;
      font-family: var(--sans);
      font-size: clamp(2.65rem, 4vw, 3.5rem);
      font-weight: 660;
      line-height: 1;
    }

    main > .hero-store ~ .section .content-block p {
      max-width: 760px;
      font-size: 1.04rem;
      line-height: 1.75;
    }

    main > .hero-store ~ .section .generated-hero-card img {
      min-height: 0;
      aspect-ratio: 16 / 10;
      object-fit: cover;
    }

    main > .hero-store ~ .section .coverage-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0 26px;
      margin: 30px 0 0;
      padding: 0;
      list-style: none;
      border-top: 1px solid var(--line);
    }

    main > .hero-store ~ .section .coverage-list li {
      display: grid;
      grid-template-columns: 18px minmax(0, 1fr);
      gap: 11px;
      align-items: center;
      min-height: 48px;
      color: var(--text);
      border-bottom: 1px solid var(--line);
      font-size: 0.92rem;
      font-weight: 720;
      line-height: 1.35;
    }

    main > .hero-store ~ .section .coverage-list svg {
      width: 17px;
      height: 17px;
      color: var(--gold);
    }

    main > .hero-store ~ .section .hero-actions {
      margin-top: 32px;
    }

    .section-arrow-security-inc-store .generated-hero-card img {
      aspect-ratio: 16 / 9;
      object-position: center;
    }

    .section-laser-shot-training .media-stack {
      position: relative;
      display: block;
      padding: 0 0 clamp(48px, 6vw, 76px);
    }

    .section-laser-shot-training .media-stack .media-frame {
      min-width: 0;
      box-shadow: var(--shadow);
    }

    .section-laser-shot-training .media-stack img {
      min-height: 0;
      aspect-ratio: 16 / 9;
      object-fit: cover;
    }

    .section-laser-shot-training .media-frame-shooter img {
      object-position: center;
    }

    .section-laser-shot-training .media-frame-security {
      position: absolute;
      right: 18px;
      bottom: 0;
      width: min(46%, 270px);
      background: #eef1f4;
    }

    .section-laser-shot-training .media-frame-security img {
      aspect-ratio: 16 / 8;
      object-fit: contain;
      padding: 18px;
    }

    .section-classes-for-the-public .generated-hero-card img {
      aspect-ratio: 16 / 9;
      object-position: center;
    }

    .section-nra .generated-hero-card {
      width: min(100%, 520px);
      justify-self: center;
      padding: clamp(24px, 4vw, 46px);
      background:
        linear-gradient(145deg, rgba(16, 35, 52, 0.92), rgba(8, 10, 10, 0.96));
    }

    .section-nra .generated-hero-card img {
      aspect-ratio: 1;
      object-fit: contain;
    }

    .section-contact-arrow-security-inc .generated-hero-card {
      width: min(100%, 520px);
      justify-self: center;
      padding: clamp(18px, 3vw, 32px);
      background: rgba(255, 255, 255, 0.92);
    }

    .section-contact-arrow-security-inc .generated-hero-card img {
      aspect-ratio: 1;
      object-fit: contain;
    }

    @media (max-width: 980px) {
      .hero-store,
      .hero-store .hero-inner {
        min-height: 610px;
      }

      .hero-store .hero-inner {
        padding-top: 132px;
        padding-bottom: 70px;
      }

      .hero-store h1 {
        font-size: clamp(3.4rem, 10vw, 5.4rem);
      }

      main > .hero-store ~ .section .split-grid {
        grid-template-columns: 1fr;
      }

    }

    @media (max-width: 640px) {
      .hero-store,
      .hero-store .hero-inner {
        min-height: 560px;
      }

      .hero-store .hero-inner {
        padding-top: 112px;
        padding-bottom: 58px;
      }

      .hero-store h1 {
        font-size: clamp(2.65rem, 14vw, 4.1rem);
        line-height: 0.98;
      }

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

      main > .hero-store ~ .section {
        padding: 68px 0;
      }

      main > .hero-store ~ .section .content-block h2 {
        font-size: clamp(2.15rem, 11vw, 3rem);
      }

      main > .hero-store ~ .section .coverage-list {
        grid-template-columns: 1fr;
      }

      .section-laser-shot-training .media-stack {
        padding-bottom: 42px;
      }

      .section-laser-shot-training .media-frame-security {
        right: 10px;
        width: min(52%, 210px);
      }

      .section-laser-shot-training .media-frame-security img {
        padding: 10px;
      }
    }

    .section-local-security-planning-statewide-reach .content-block h2 {
      font-size: clamp(2.15rem, 3.7vw, 2.625rem);
      line-height: 1.05;
    }

    .section-local-security-planning-statewide-reach .coverage-list {
      display: grid;
      gap: 12px;
      margin: 28px 0 0;
      padding: 0 0 0 12px;
      list-style: none;
    }

    .section-local-security-planning-statewide-reach .coverage-list li {
      display: grid;
      grid-template-columns: 20px minmax(0, 1fr);
      gap: 14px;
      align-items: center;
      margin: 0;
      color: var(--text);
      font-size: 1.02rem;
      line-height: 1.5;
    }

    .section-local-security-planning-statewide-reach .coverage-list li::marker {
      content: "";
    }

    .section-local-security-planning-statewide-reach .coverage-list svg {
      width: 20px;
      height: 20px;
      color: var(--gold);
    }

    /* Shared refinements for approved service-area location pages. */
    main > .hero-service-area-location ~ .section .section-title,
    main > .hero-service-area-location ~ .section .content-block h2 {
      font-size: clamp(1.96rem, 4vw, 4.16rem);
    }

    main > .hero-service-area-location ~ .section .split-grid.no-media .content-block {
      width: 100%;
      max-width: none;
    }

    main > .hero-service-area-location ~ .section .policy-content {
      width: 100%;
      max-width: none;
      margin-inline: 0;
      color: var(--text);
    }

    main > .hero-service-area-location ~ .section .policy-content :where(
      p,
      li,
      blockquote,
      h2,
      h3,
      h4,
      strong,
      em,
      a,
      span
    ) {
      color: var(--text);
    }

    main > .hero-service-area-location
      ~ .section-what-professional-security-officers-can-contribute
      .section-head {
      grid-template-columns: minmax(0, 1fr);
    }

    @media (min-width: 981px) {
      main > .hero-service-area-location ~ .section .timeline > .timeline-item:nth-child(5),
      main > .hero-service-area-location ~ .section .timeline > .timeline-item:nth-child(6) {
        grid-column: span 2;
      }
    }

    /* Keep every related-links section heading aligned to the approved scale. */
    main .section.section-coverage-links .section-title {
      font-size: clamp(2.25rem, 4vw, 3.5rem);
    }

    /* Refine the homepage coverage subheading without affecting other section H3s. */
    body.home .section-serving-arizona-since-1993 .content-block h3 {
      padding-top: 14px;
      font-size: clamp(1.75rem, 2.2vw, 2rem);
    }

    /* Let the empty-copy coverage-path heading use the full desktop container. */
    @media (min-width: 981px) {
      .section-a-clear-coverage-path .section-head {
        grid-template-columns: minmax(0, 1fr);
      }

      .section-a-clear-coverage-path .section-title {
        white-space: nowrap;
      }
    }

    /* Fingerprinting page grids: 3 x 2 support items and one-row benefit cards. */
    main > .hero-fingerprinting-services
      ~ .section-complete-these-steps-before-your-appointment
      .process-track {
      align-items: start;
    }

    @media (min-width: 761px) {
      main > .hero-fingerprinting-services
        ~ .section-complete-these-steps-before-your-appointment
        .process-step:hover,
      main > .hero-fingerprinting-services
        ~ .section-complete-these-steps-before-your-appointment
        .process-step[aria-pressed="true"]
        .step-number,
      main > .hero-fingerprinting-services
        ~ .section-complete-these-steps-before-your-appointment
        .process-step:hover
        .step-number {
        transform: none;
      }
    }

    @media (min-width: 981px) {
      main > .hero-fingerprinting-services
        ~ .section-who-we-support
        .detail-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      main > .hero-fingerprinting-services
        ~ .section-who-we-support
        .detail-card {
        border-right: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
      }

      main > .hero-fingerprinting-services
        ~ .section-who-we-support
        .detail-card:nth-child(3n) {
        border-right: 0;
      }

      main > .hero-fingerprinting-services
        ~ .section-who-we-support
        .detail-card:nth-child(n + 4) {
        border-bottom: 0;
      }

      main > .hero-fingerprinting-services
        ~ .section-built-for-reliable-results
        .generated-card-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }
    }

    @media (min-width: 641px) and (max-width: 980px) {
      main > .hero-fingerprinting-services
        ~ .section-who-we-support
        .detail-card {
        border-right: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
      }

      main > .hero-fingerprinting-services
        ~ .section-who-we-support
        .detail-card:nth-child(2n) {
        border-right: 0;
      }

      main > .hero-fingerprinting-services
        ~ .section-who-we-support
        .detail-card:nth-child(n + 5) {
        border-bottom: 0;
      }
    }

    @media (max-width: 640px) {
      main > .hero-fingerprinting-services
        ~ .section-who-we-support
        .detail-card {
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }

      main > .hero-fingerprinting-services
        ~ .section-who-we-support
        .detail-card:last-child {
        border-bottom: 0;
      }
    }

    main > .hero-fingerprinting-services
      ~ .section-on-site-and-office-fingerprinting-appointments
      .split-grid.no-media
      .content-block {
      width: 100%;
      max-width: none;
    }

    main > .hero-fingerprinting-services
      ~ .section-on-site-and-office-fingerprinting-appointments
      .content-block
      > p {
      max-width: 1080px;
    }

    main > .hero-fingerprinting-services
      ~ .section-on-site-and-office-fingerprinting-appointments
      .coverage-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px 36px;
      max-width: 1200px;
      margin: 34px 0 0;
      padding: 0;
      list-style: none;
    }

    main > .hero-fingerprinting-services
      ~ .section-on-site-and-office-fingerprinting-appointments
      .coverage-list
      li {
      display: grid;
      grid-template-columns: 22px minmax(0, 1fr);
      gap: 12px;
      align-items: start;
      color: var(--text);
      line-height: 1.55;
    }

    main > .hero-fingerprinting-services
      ~ .section-on-site-and-office-fingerprinting-appointments
      .coverage-list
      svg {
      width: 20px;
      height: 20px;
      margin-top: 0.16em;
      color: var(--gold);
    }

    @media (max-width: 640px) {
      main > .hero-fingerprinting-services
        ~ .section-on-site-and-office-fingerprinting-appointments
        .coverage-list {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    @media (max-width: 980px) {
      .site-header .brand,
      body.home .site-header .brand {
        min-width: 0;
      }

      .mobile-header-phone {
        display: inline-flex;
        flex: 0 0 auto;
        align-items: center;
        justify-content: center;
        gap: 7px;
        min-height: 42px;
        padding: 0 4px;
        color: var(--gold-2);
        font-size: 0.82rem;
        font-weight: 900;
        line-height: 1;
        white-space: nowrap;
      }

      .mobile-header-phone:hover,
      .mobile-header-phone:focus-visible {
        color: var(--text);
      }

      .mobile-header-phone svg {
        flex: 0 0 auto;
        width: 16px;
        height: 16px;
        color: var(--gold);
      }

      .menu-toggle {
        flex: 0 0 42px;
      }
    }

    @media (max-width: 350px) {
      .mobile-header-phone {
        gap: 5px;
        font-size: 0.76rem;
      }
    }
