:root {
  --black: #070707;
  --panel: #111111;
  --white: #ffffff;
  --muted: #c9c9c9;
  --body: #555555;
  --line: rgba(255, 255, 255, .16);
  --gold: #d5a63a;
  --gold-2: #f0c86a;
  --paper: #f7f7f7;
  --shadow: 0 18px 50px rgba(0, 0, 0, .28);
  --desktop-width: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
}

body {
  margin: 0;
  color: #1b1b1b;
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

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

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.section-inner {
  width: min(var(--desktop-width), calc(100% - 36px));
  margin: 0 auto;
}

#about, #services, #industries, #areas, #contact, #quote {
  scroll-margin-top: 150px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--white);
  background: rgba(8, 8, 8, .96);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  backdrop-filter: blur(12px);
}

.header-main {
  width: min(var(--desktop-width), calc(100% - 36px));
  min-height: 96px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  text-transform: uppercase;
}

.brand img {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.brand strong,
.brand em {
  display: block;
  font-style: normal;
  font-weight: 900;
  line-height: .96;
}

.brand strong {
  color: var(--white);
  font-size: clamp(22px, 3vw, 36px);
}

.brand em {
  color: var(--gold);
  font-size: clamp(20px, 2.7vw, 32px);
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 900;
}

.header-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 20px;
  text-decoration: none;
}

.header-contact .icon { color: var(--gold); }

.header-contact span {
  font-size: 12px;
  text-transform: uppercase;
}

.site-nav {
  width: min(var(--desktop-width), calc(100% - 36px));
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  gap: 34px;
  padding: 12px 0 18px;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.site-nav a {
  position: relative;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 3px;
  background: var(--gold);
  transition: width .2s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after { width: 100%; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .3);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 650px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  opacity: .84;
  filter: contrast(1.06) saturate(1.04);
}

body.ready .hero-image { animation: heroZoom 12s ease-out forwards; }

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .94), rgba(0, 0, 0, .72) 34%, rgba(0, 0, 0, .22) 58%, rgba(0, 0, 0, 0) 78%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(560px, calc(100% - 36px));
  margin-left: max(18px, calc((100vw - var(--desktop-width)) / 2));
  padding: 76px 0 86px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(42px, 6.8vw, 68px);
  line-height: .94;
  font-weight: 900;
}

h1 span {
  display: block;
  color: var(--gold);
}

h2 {
  margin-bottom: 16px;
  color: inherit;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
  font-weight: 900;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.05;
  font-weight: 900;
}

.hero-copy {
  max-width: 500px;
  color: rgba(255, 255, 255, .88);
  font-size: 17px;
}

.hero-actions,
.cta-grid,
.quote-form .button {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  gap: 10px;
  transition: transform .22s ease, box-shadow .22s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .2);
}

.button.primary {
  color: #111;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, .42);
  background: rgba(0, 0, 0, .25);
}

.button.full { width: 100%; }

.feature-band {
  padding: 0;
  background: #101010;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--white);
  background: #101010;
}

.feature-strip div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  align-items: center;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.feature-strip div:last-child { border-right: 0; }

.feature-strip .icon {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  color: var(--gold);
}

.feature-strip strong,
.feature-strip span {
  display: block;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-strip span {
  color: var(--muted);
  font-size: 12px;
}

.about,
.industries,
.areas,
.quote-section {
  padding: clamp(44px, 6vw, 76px) 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.about-copy p:not(.eyebrow) { color: var(--body); }

.about-image {
  overflow: hidden;
  transform: skewX(-5deg);
  box-shadow: var(--shadow);
}

.about-image img {
  width: 110%;
  height: 430px;
  object-fit: cover;
  transform: skewX(5deg) translateX(-5%);
}

.services {
  padding: clamp(48px, 6vw, 80px) 0;
  color: var(--white);
  background: linear-gradient(180deg, #111, #080808);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 24px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading p:not(.eyebrow) { color: var(--body); }
.services .section-heading h2 { color: var(--white); }

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

.service-list article {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 0 20px 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, .18);
  background: #111;
  transition: transform .24s ease, border-color .24s ease;
}

.service-list article:hover {
  transform: translateY(-5px);
  border-color: rgba(213, 166, 58, .78);
}

.service-list article > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .32;
  transition: opacity .24s ease, transform .24s ease;
}

.service-list article:hover > img {
  opacity: .44;
  transform: scale(1.04);
}

.service-list article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .1), rgba(0, 0, 0, .9));
}

.service-list article > .icon,
.service-list h3,
.service-list p {
  position: relative;
  z-index: 1;
}

.service-list article > .icon {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--gold);
}

.service-list h3 { color: var(--white); }

.service-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
}

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

.location-grid article {
  overflow: hidden;
  border: 1px solid #dedede;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
}

.location-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.location-grid div { padding: 18px; }
.location-grid p {
  margin: 0;
  color: var(--body);
}

.areas { background: var(--paper); }

.area-card-grid {
  display: grid;
  gap: 12px;
}

.area-card-grid article {
  display: grid;
  grid-template-columns: minmax(130px, 24%) 1fr;
  align-items: center;
  overflow: hidden;
  border: 1px solid #dedede;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .06);
}

.area-card-grid img {
  width: 100%;
  height: 100%;
  min-height: 112px;
  max-height: 145px;
  object-fit: cover;
}

.area-card-grid div { padding: 18px 24px; }
.area-card-grid h3 { margin: 0; }

.cta-band {
  padding: 26px 0;
  color: var(--white);
  background: linear-gradient(90deg, rgba(0, 0, 0, .86), rgba(0, 0, 0, .72)), url("assets/service-uniformed-officer.png") center / cover;
}

.cta-grid { justify-content: space-between; }

.cta-grid h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(24px, 3vw, 36px);
}

.quote-section { background: var(--white); }

.quote-form {
  width: min(720px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 20px;
  background: #f6f6f6;
  border: 1px solid #e5e5e5;
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: #333;
  font-size: 13px;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 0;
  background: #eeeeee;
  font: inherit;
}

.quote-form textarea {
  min-height: 120px;
  resize: vertical;
}

.full-field,
.quote-form .button,
.form-note {
  grid-column: 1 / -1;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--gold);
  font-weight: 900;
}

.site-footer {
  color: var(--white);
  background: #0a0a0a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 34px;
  padding: 36px 0;
}

.footer-brand img {
  width: 86px;
  height: 86px;
}

.site-footer .brand {
  display: inline-flex;
}

.site-footer h3 {
  color: var(--white);
  font-size: 16px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, .76);
  font-size: 14px;
}

.site-footer p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.site-footer a {
  display: block;
  margin-bottom: 7px;
  text-decoration: none;
}

.site-footer .icon {
  width: 17px;
  height: 17px;
  color: var(--gold);
}

.copyright {
  display: block;
  margin: 0;
  padding: 12px 18px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1); }
}

@media (min-width: 1181px) {
  .section-inner,
  .header-main,
  .site-nav {
    width: var(--desktop-width);
  }

  .hero {
    width: 100%;
    min-width: var(--desktop-width);
    min-height: 520px;
    height: 520px;
  }

  body.ready .hero-image {
    animation: none;
  }

  .hero-image {
    left: 50%;
    width: var(--desktop-width);
    max-width: none;
    transform: translateX(-50%);
    object-position: center top;
  }

  .hero-content {
    width: 560px;
    margin-left: calc((100vw - var(--desktop-width)) / 2 + 56px);
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .about,
  .services,
  .industries,
  .areas,
  .cta-band,
  .quote-section {
    min-width: var(--desktop-width);
  }
}

@media (max-width: 980px) {
  .header-main { min-height: 82px; }
  .brand img { width: 68px; height: 68px; }
  .header-contact { display: none; }
  .menu-toggle { display: block; }

  .site-nav {
    display: none;
    width: 100%;
    padding: 8px 18px 18px;
    border-top: 1px solid rgba(255, 255, 255, .12);
  }

  .site-nav.open {
    display: grid;
    gap: 4px;
  }

  .site-nav a { padding: 12px 0; }
  .hero {
    min-height: 560px;
    align-items: end;
  }

  .hero-image {
    object-position: 64% center;
  }

  .hero-content {
    margin: 0 auto;
    padding: 54px 0 54px;
  }

  .feature-strip,
  .service-list,
  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-strip div:nth-child(2n) {
    border-right: 0;
  }

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

  .about-image { transform: none; }
  .about-image img {
    width: 100%;
    height: auto;
    transform: none;
  }
}

@media (max-width: 640px) {
  html { scroll-padding-top: 96px; }
  #about, #services, #industries, #areas, #contact, #quote { scroll-margin-top: 96px; }

  .header-main {
    width: calc(100% - 24px);
    min-height: 72px;
  }

  .brand {
    gap: 10px;
    min-width: 0;
  }

  .brand img {
    width: 56px;
    height: 56px;
  }

  .brand strong {
    font-size: 20px;
  }

  .brand em {
    font-size: 18px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
  }

  .site-nav {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero {
    min-height: 620px;
    align-items: end;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, .24), rgba(0, 0, 0, .5) 42%, rgba(0, 0, 0, .84));
  }

  .hero-image {
    object-position: 72% top;
    opacity: .82;
  }

  .hero-content {
    width: calc(100% - 28px);
    padding: 250px 0 34px;
  }

  h1 {
    font-size: clamp(38px, 14vw, 52px);
  }

  h2 {
    font-size: clamp(24px, 8vw, 32px);
  }

  .hero-copy {
    font-size: 15px;
  }

  .hero-actions .button,
  .hero-actions { width: 100%; }

  .service-list,
  .location-grid,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .feature-strip {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-strip div {
    padding: 14px 18px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .feature-strip div:nth-child(2n) {
    border-right: 0;
  }

  .feature-strip div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .feature-strip .icon {
    width: 32px;
    height: 32px;
  }

  .about,
  .industries,
  .areas,
  .quote-section,
  .services {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .service-list article {
    min-height: 245px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .location-grid div {
    padding: 16px;
  }

  .area-card-grid article { grid-template-columns: 1fr; }
  .area-card-grid img {
    min-height: 130px;
    max-height: 160px;
  }

  .area-card-grid div {
    padding: 14px 16px;
  }

  .area-card-grid h3 {
    font-size: 20px;
  }

  .cta-grid {
    display: grid;
  }

  .cta-grid .button {
    width: 100%;
  }

  .quote-form {
    padding: 14px;
    gap: 12px;
  }

  .footer-grid {
    gap: 18px;
    padding: 28px 0;
  }
}

@media (max-width: 420px) {
  .section-inner {
    width: calc(100% - 24px);
  }

  .brand strong {
    font-size: 17px;
  }

  .brand em {
    font-size: 16px;
  }

  .hero {
    min-height: 600px;
  }

  .hero-content {
    padding-top: 230px;
  }

  h1 {
    font-size: 38px;
  }

  .button {
    min-height: 46px;
    padding: 12px 16px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
