/* =======================================================
   First Class Security
   Modernized stylesheet. Brand: Onyx + White + Champagne Gold.
   Typography: Playfair Display (display) + Inter (body).
   Single file, no vendor dependencies.
   ======================================================= */

/* ---------- Tokens ---------- */
:root {
  --onyx: #0A0A0A;
  --onyx-soft: #1A1A1A;
  --graphite: #2B2B2B;
  --slate: #5A5A5A;
  --mist: #EDEDED;
  --paper: #F7F7F5;
  --white: #FFFFFF;
  --gold: #C4A14A;
  --gold-dim: #A88737;
  --gold-soft: #E7D9B1;

  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;

  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 14px;

  --shadow-1: 0 2px 8px rgba(10,10,10,0.08);
  --shadow-2: 0 10px 30px rgba(10,10,10,0.12);

  --ease: cubic-bezier(.4,.0,.2,1);

  --container: 1200px;
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--graphite);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--onyx); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--gold-dim); }
ul { padding: 0; margin: 0; list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--onyx);
  font-weight: 600;
  letter-spacing: .2px;
  line-height: 1.2;
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 2.8vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; letter-spacing: .5px; text-transform: none; }
p { margin: 0 0 1.1em; }
strong { color: var(--onyx); font-weight: 600; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: .9rem;
}

.hr-gold {
  width: 64px;
  height: 2px;
  background: var(--gold);
  border: 0;
  margin: 1.2rem 0 1.6rem;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 88px 0; }
.section-tight { padding: 56px 0; }
.section-dark { background: var(--onyx); color: var(--mist); }
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 { color: var(--white); }
.section-paper { background: var(--paper); }

.grid { display: grid; gap: 32px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--mist);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo img { height: 44px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: .95rem;
  font-weight: 500;
}
.nav-links > li { position: relative; }
.nav-links a { color: var(--onyx); padding: 6px 0; }
.nav-links a:hover { color: var(--gold-dim); }

.nav-links .dropdown > a::after {
  content: "";
  display: inline-block;
  margin-left: 6px;
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}
.nav-submenu {
  position: absolute;
  top: 100%;
  left: -16px;
  min-width: 240px;
  background: var(--white);
  box-shadow: var(--shadow-2);
  border-radius: var(--radius);
  padding: 10px 0;
  border-top: 2px solid var(--gold);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .2s var(--ease);
}
.nav-submenu li a {
  display: block;
  padding: 9px 20px;
  font-size: .92rem;
  color: var(--graphite);
}
.nav-submenu li a:hover { background: var(--paper); color: var(--onyx); }
.dropdown:hover .nav-submenu,
.dropdown:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--onyx);
  color: var(--white) !important;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .5px;
  transition: background .2s var(--ease);
}
.nav-cta:hover { background: var(--gold-dim); color: var(--white) !important; }

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px; height: 44px;
  cursor: pointer;
  padding: 10px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--onyx);
  margin: 5px 0;
  transition: all .2s var(--ease);
}

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s var(--ease);
    border-bottom: 1px solid var(--mist);
  }
  .nav-links.open { max-height: 100vh; overflow-y: auto; padding: 12px 0; }
  .nav-links > li { padding: 0 24px; }
  .nav-links > li + li { border-top: 1px solid var(--mist); }
  .nav-links a { padding: 14px 0; display: block; }
  .nav-submenu {
    position: static;
    box-shadow: none;
    border-top: 0;
    padding: 0 0 8px;
    opacity: 1;
    visibility: visible;
    transform: none;
    border-radius: 0;
    background: transparent;
  }
  .nav-submenu li a { padding: 8px 0 8px 16px; font-size: .88rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--onyx);
  color: var(--white);
  overflow: hidden;
  padding: 120px 0 112px;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(1200px 600px at 20% 20%, rgba(196,161,74,0.18), transparent 60%),
              linear-gradient(180deg, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.85) 100%);
}
.hero-inner {
  position: relative;
  max-width: 820px;
}
.hero .eyebrow { color: var(--gold); }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero p.lead {
  font-size: 1.2rem;
  color: var(--mist);
  max-width: 640px;
  margin-bottom: 2rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Page header (interior) ---------- */
.page-head {
  background: var(--onyx);
  color: var(--white);
  padding: 80px 0 64px;
  border-bottom: 2px solid var(--gold);
}
.page-head h1 {
  color: var(--white);
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
}
.page-head .eyebrow { color: var(--gold); }
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .85rem;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--gold-soft); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb li + li::before {
  content: "/";
  margin-right: 8px;
  color: var(--slate);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .4px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .2s var(--ease);
}
.btn-primary { background: var(--gold); color: var(--onyx); }
.btn-primary:hover { background: var(--gold-dim); color: var(--white); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark { background: var(--onyx); color: var(--white); }
.btn-dark:hover { background: var(--gold-dim); color: var(--white); }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  padding: 28px;
  transition: all .25s var(--ease);
  height: 100%;
}
.card:hover {
  border-color: var(--gold-soft);
  box-shadow: var(--shadow-2);
  transform: translateY(-3px);
}
.card .icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--gold-dim);
}
.card .icon svg { width: 22px; height: 22px; }
.card h3 { font-size: 1.15rem; margin-bottom: .4em; }
.card p { margin: 0; color: var(--slate); font-size: .95rem; }
.card a.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-weight: 600;
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold-dim);
}
.card a.card-link::after {
  content: "→";
  transition: transform .2s var(--ease);
}
.card a.card-link:hover::after { transform: translateX(4px); }

/* ---------- Service checklist ---------- */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  color: var(--graphite);
}
.check-list li::before {
  content: "";
  flex-shrink: 0;
  width: 10px; height: 10px;
  margin-top: 7px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
}

/* ---------- City/service chip list ---------- */
.tag-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 700px) { .tag-grid { grid-template-columns: repeat(2, 1fr); } }
.tag {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--graphite);
  transition: all .2s var(--ease);
}
.tag::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.tag:hover {
  border-color: var(--gold);
  color: var(--onyx);
}

/* ---------- Testimonial ---------- */
.testimonial {
  background: var(--paper);
  border-left: 4px solid var(--gold);
  padding: 40px 44px;
  border-radius: var(--radius);
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: -10px;
  left: 28px;
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--gold);
  line-height: 1;
}
.testimonial p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--onyx);
  line-height: 1.5;
  margin: 0 0 1em;
}
.testimonial .author {
  font-family: var(--font-body);
  font-style: normal;
  font-size: .95rem;
  color: var(--slate);
}
.testimonial .author strong { color: var(--onyx); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--onyx);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
  background-image: radial-gradient(600px 300px at 50% 0%, rgba(196,161,74,0.18), transparent 60%);
}
.cta-band h2 {
  color: var(--white);
  margin-bottom: .4em;
}
.cta-band .phone {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--gold);
  letter-spacing: 1px;
  display: inline-block;
  margin: 10px 0 16px;
}
.cta-band p { color: var(--mist); margin-bottom: 24px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--onyx);
  color: var(--mist);
  padding: 72px 0 0;
}
.site-footer a { color: var(--mist); }
.site-footer a:hover { color: var(--gold); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 48px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.site-footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.site-footer ul li { padding: 5px 0; font-size: .95rem; }
.site-footer .contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.site-footer .contact li strong { color: var(--white); margin-right: 4px; }
.site-footer .brand-mark { margin-bottom: 18px; }
.site-footer .brand-mark img { height: 42px; }
.site-footer .map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}
.social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .2s var(--ease);
}
.social a:hover { background: var(--gold); color: var(--onyx) !important; }
.social svg { width: 16px; height: 16px; }

.accreditation img {
  background: var(--white);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  max-height: 48px;
  width: auto;
}
.accreditation li { display: inline-block; margin-right: 10px; }

.footer-bar {
  margin-top: 64px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: .85rem;
  color: var(--slate);
}
.footer-bar .container {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  align-items: center;
}
.footer-bar ul { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-bar ul a { color: var(--slate); }
.footer-bar ul a:hover { color: var(--gold); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: all .6s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Trust strip (auto-scrolling marquee) ---------- */
.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--mist);
  border-bottom: 1px solid var(--mist);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
}
/* Soft fade on the left and right edges so items glide in / out */
.trust-strip::before,
.trust-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.trust-strip::before {
  left: 0;
  background: linear-gradient(90deg, var(--white) 0%, rgba(255, 255, 255, 0) 100%);
}
.trust-strip::after {
  right: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, var(--white) 100%);
}
.trust-strip-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: trust-marquee 38s linear infinite;
}
.trust-strip:hover .trust-strip-track {
  animation-play-state: paused;
}
.trust-strip-row {
  display: flex;
  align-items: center;
  gap: 56px;
  list-style: none;
  margin: 0;
  padding: 0 28px;
  flex-shrink: 0;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  color: var(--graphite);
  font-weight: 500;
  flex-shrink: 0;
  white-space: nowrap;
}
.trust-item svg { width: 24px; height: 24px; color: var(--gold-dim); flex-shrink: 0; }
.trust-item strong { color: var(--onyx); font-weight: 600; }
.trust-item span { line-height: 1.3; }

@keyframes trust-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Reduced motion: stop the animation, wrap items, hide the duplicate set */
@media (prefers-reduced-motion: reduce) {
  .trust-strip { overflow: visible; }
  .trust-strip::before,
  .trust-strip::after { display: none; }
  .trust-strip-track {
    animation: none;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }
  .trust-strip-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
    padding: 0 20px;
  }
  .trust-strip-row[aria-hidden="true"] { display: none; }
}

@media (max-width: 700px) {
  .trust-strip-row { gap: 36px; padding: 0 18px; }
  .trust-item { font-size: .82rem; }
  .trust-strip-track { animation-duration: 30s; }
}

/* ---------- Hero with image background ---------- */
.hero-photo {
  position: relative;
  background: var(--onyx);
  color: var(--white);
  overflow: hidden;
  padding: 110px 0 96px;
  isolation: isolate;
}
.hero-photo .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background-size: cover;
  background-position: center;
  z-index: -2;
  filter: grayscale(0.2) brightness(0.55);
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.55) 60%, rgba(10,10,10,0.30) 100%),
              radial-gradient(800px 400px at 12% 30%, rgba(196,161,74,0.22), transparent 60%);
  z-index: -1;
}
.hero-photo .hero-inner {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  z-index: 1;
}
.hero-photo .eyebrow { color: var(--gold); }
.hero-photo h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}
.hero-photo h1 em {
  font-style: italic;
  color: var(--white);
}
.hero-photo p.lead {
  color: var(--mist);
  font-size: 1.15rem;
  max-width: 720px;
}
.hero-photo p.lead strong { color: var(--white); }
.hero-photo .hero-cta { margin-top: 1.4rem; display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Pillars (three column with icons) ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  background: var(--white);
  border: 1px solid var(--mist);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all .25s var(--ease);
}
.pillar:hover { box-shadow: var(--shadow-2); transform: translateY(-3px); }
.pillar .num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
  display: block;
}
.pillar h3 { font-size: 1.25rem; margin-bottom: .5em; }
.pillar p { color: var(--slate); margin: 0; }

/* ---------- Industry cards (image based) ---------- */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1000px) { .industry-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .industry-grid { grid-template-columns: 1fr; } }
.industry-card {
  display: block;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--white);
  aspect-ratio: 4 / 3;
  background: var(--onyx);
  transition: transform .35s var(--ease);
}
.industry-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.25) brightness(0.7);
  transition: all .5s var(--ease);
}
.industry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.05) 0%, rgba(10,10,10,0.85) 100%);
}
.industry-card-body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px 22px;
  z-index: 2;
}
.industry-card h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin: 0 0 .25em;
}
.industry-card p {
  color: var(--mist);
  font-size: .9rem;
  margin: 0;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all .35s var(--ease);
}
.industry-card:hover img {
  transform: scale(1.04);
  filter: grayscale(0) brightness(0.8);
}
.industry-card:hover p {
  opacity: 1;
  max-height: 80px;
}

/* ---------- Leadership cards ---------- */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 900px) { .leadership-grid { grid-template-columns: 1fr; } }
.leader {
  text-align: left;
}
.leader-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  margin-bottom: 18px;
  border: 1px solid var(--mist);
}
.leader-photo img { width: 100%; height: 100%; object-fit: cover; }
.leader h3 { font-size: 1.25rem; margin-bottom: .15em; }
.leader .title {
  display: block;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: .9em;
}
.leader p { color: var(--slate); margin: 0; font-size: .95rem; }

/* ---------- Stat row ---------- */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
@media (max-width: 900px) { .stat-row { grid-template-columns: repeat(2, 1fr); } }
.stat {
  padding: 28px 16px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: .35em;
}
.stat-label {
  font-size: .85rem;
  color: var(--mist);
  text-transform: uppercase;
  letter-spacing: .15em;
}

/* ---------- Testimonial carousel (no JS, scroll snap) ---------- */
.testi-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 24px;
  scrollbar-width: thin;
}
.testi-track::-webkit-scrollbar { height: 6px; }
.testi-track::-webkit-scrollbar-thumb { background: var(--gold-soft); border-radius: 3px; }
.testi-card {
  flex: 0 0 360px;
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--mist);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px;
}
.testi-card p {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--onyx);
  font-size: 1.05rem;
  margin: 0 0 1em;
}
.testi-card .author { font-size: .9rem; color: var(--slate); }
.testi-card .author strong { color: var(--onyx); }

/* ---------- Accreditation band ---------- */
.accred-band {
  background: var(--paper);
  padding: 40px 0;
  border-top: 1px solid var(--mist);
  border-bottom: 1px solid var(--mist);
}
.accred-band-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.accred-band img {
  max-height: 64px;
  width: auto;
  filter: grayscale(1) opacity(0.65);
  transition: filter .25s var(--ease);
}
.accred-band img:hover { filter: grayscale(0) opacity(1); }

/* ---------- Two column with image ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
}
.split-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--paper);
}
.split-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.split-image.has-frame {
  position: relative;
}
.split-image.has-frame::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid var(--gold);
  border-radius: calc(var(--radius-lg) - 8px);
  pointer-events: none;
}

/* ---------- Tech feature list ---------- */
.tech-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 700px) { .tech-list { grid-template-columns: 1fr; } }
.tech-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius);
}
.tech-feature .icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--paper);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dim);
}
.tech-feature .icon svg { width: 22px; height: 22px; }
.tech-feature h4 { font-size: 1.05rem; margin-bottom: .3em; font-family: var(--font-body); font-weight: 600; }
.tech-feature p { color: var(--slate); font-size: .92rem; margin: 0; }

/* ---------- Tech list (alternate item style for icon + heading + body) ---------- */
.tech-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius);
}
.tech-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--paper);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dim);
}
.tech-icon svg { width: 24px; height: 24px; }
.tech-item h3 {
  font-size: 1.15rem;
  margin: 0 0 .35em;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--onyx);
}
.tech-item p { color: var(--slate); font-size: .95rem; margin: 0; line-height: 1.55; }

/* ---------- Page header (used on inner pages: about, industries, etc.) ---------- */
.page-header {
  background: var(--onyx);
  color: var(--white);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(196,161,74,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.page-header .eyebrow {
  color: var(--gold);
  position: relative;
}
.page-header h1 {
  color: var(--white);
  position: relative;
  margin: .2em 0;
}
.page-header h1 em {
  color: var(--gold);
  font-style: italic;
}
.page-header .lead {
  color: var(--mist);
  max-width: 720px;
  font-size: 1.1rem;
  position: relative;
  margin-top: .6em;
}

/* ---------- Placeholder helper (mark stock content) ---------- */
.placeholder {
  outline: 2px dashed var(--gold);
  outline-offset: -6px;
  position: relative;
}
.placeholder::before {
  content: "PLACEHOLDER";
  position: absolute;
  top: 8px; left: 8px;
  background: var(--gold);
  color: var(--onyx);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 3px;
  z-index: 5;
  pointer-events: none;
}

/* ---------- 4 Pillar Difference Grid ---------- */
.pillars.pillars-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media (max-width: 1024px) {
  .pillars.pillars-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .pillars.pillars-4 { grid-template-columns: 1fr; }
}

/* ---------- Hero Trust Meta Strip ---------- */
.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
  padding: 22px 24px;
  border: 1px solid rgba(196, 161, 74, 0.35);
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(2px);
  border-radius: 6px;
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-meta-item strong {
  color: var(--gold);
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.hero-meta-item span {
  color: var(--paper, #F7F7F5);
  opacity: 0.82;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .hero-meta { grid-template-columns: 1fr; gap: 14px; padding: 18px; }
}

/* ---------- Nav Submenu Divider ---------- */
.nav-submenu-divider {
  border-top: 1px solid rgba(196, 161, 74, 0.25);
  margin-top: 6px;
  padding-top: 6px;
}
.nav-submenu-divider a {
  font-style: italic;
  color: var(--gold) !important;
  font-size: 0.88rem;
}

/* ---------- Service Card Grid ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .service-grid { grid-template-columns: 1fr; }
}
.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-top: 3px solid var(--gold);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(10, 10, 10, 0.12);
  border-color: rgba(196, 161, 74, 0.35);
}
.service-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.service-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  background: rgba(196, 161, 74, 0.08);
  border-radius: 4px;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card-tag {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--onyx, #0A0A0A);
  background: rgba(196, 161, 74, 0.18);
  padding: 4px 10px;
  border-radius: 999px;
}
.service-card h3 {
  margin: 4px 0 0;
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 1.4rem;
}
.service-card p {
  margin: 0;
  color: rgba(10, 10, 10, 0.78);
  font-size: 0.97rem;
  line-height: 1.55;
}
.service-card .card-link {
  margin-top: auto;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}
.service-card .card-link::after {
  content: ' →';
  transition: transform 0.2s ease;
  display: inline-block;
}
.service-card:hover .card-link::after {
  transform: translateX(3px);
}

/* ---------- Comparison Table ---------- */
.comparison-wrap {
  overflow-x: auto;
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 6px 24px rgba(10, 10, 10, 0.06);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.97rem;
  min-width: 720px;
}
.comparison-table th,
.comparison-table td {
  text-align: left;
  padding: 16px 22px;
  border-bottom: 1px solid rgba(10, 10, 10, 0.06);
  vertical-align: top;
}
.comparison-table thead th {
  background: var(--onyx, #0A0A0A);
  color: #fff;
  font-family: var(--font-display, 'Playfair Display', serif);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  border-bottom: none;
}
.comparison-table thead th.comparison-us {
  background: linear-gradient(180deg, var(--onyx, #0A0A0A) 0%, #1a1a1a 100%);
  color: var(--gold);
  position: relative;
}
.comparison-table thead th.comparison-us::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--gold);
}
.comparison-table tbody th {
  background: rgba(247, 247, 245, 0.6);
  font-weight: 600;
  color: rgba(10, 10, 10, 0.85);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  width: 26%;
}
.comparison-table td.comparison-us {
  background: rgba(196, 161, 74, 0.07);
  font-weight: 500;
  color: var(--onyx, #0A0A0A);
  border-left: 3px solid var(--gold);
}
.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

/* Stacked card layout on portrait mobile so the table is readable
   without horizontal scrolling. Kicks in below 700px wide. */
@media (max-width: 700px) {
  .comparison-wrap {
    border: none;
    box-shadow: none;
    background: transparent;
    overflow: visible;
  }
  .comparison-table {
    min-width: 0;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
  }
  .comparison-table thead { display: none; }
  .comparison-table tbody tr {
    display: block;
    background: #fff;
    border: 1px solid rgba(10, 10, 10, 0.08);
    border-radius: 6px;
    padding: 16px 18px;
    margin-bottom: 14px;
    box-shadow: 0 4px 14px rgba(10, 10, 10, 0.05);
  }
  .comparison-table tbody th,
  .comparison-table tbody td {
    display: block;
    width: auto;
    padding: 0;
    border: none;
    background: transparent;
  }
  .comparison-table tbody th {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(10, 10, 10, 0.55);
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(10, 10, 10, 0.08);
    font-family: var(--font-body);
  }
  .comparison-table tbody td {
    padding: 10px 0 0 0;
    font-size: 0.95rem;
    line-height: 1.45;
  }
  .comparison-table tbody td::before {
    display: block;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 4px;
    font-weight: 700;
  }
  .comparison-table tbody td.comparison-us {
    background: rgba(196, 161, 74, 0.08);
    border-left: 3px solid var(--gold);
    padding: 10px 12px;
    margin-top: 10px;
    border-radius: 0 4px 4px 0;
    color: var(--onyx, #0A0A0A);
  }
  .comparison-table tbody td.comparison-us::before {
    content: "First Class Security";
    color: var(--gold);
  }
  .comparison-table tbody td:not(.comparison-us)::before {
    content: "Typical National Chain";
    color: rgba(10, 10, 10, 0.5);
  }
}

/* ---------- FCS Shield Watermark (removed) ---------- */
/*
  The shield watermark was previously rendered in five locations:
  hero photo, dark stat band, CTA band, page head, and trust strip.
  Removed at client request. Structural positioning rules preserved
  below to keep child element layering intact.
*/

.section-dark {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.section-dark > * { position: relative; z-index: 1; }

.cta-band {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta-band > * { position: relative; z-index: 1; }

.page-head {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.page-head > * { position: relative; z-index: 1; }

.trust-strip {
  position: relative;
  overflow: hidden;
}
.trust-strip > * { position: relative; z-index: 1; }

/* ---------- Client Logo Row (named clients band) ---------- */
.client-logo-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  align-items: center;
  margin-top: 12px;
}
@media (max-width: 1024px) {
  .client-logo-row { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .client-logo-row { grid-template-columns: repeat(2, 1fr); }
}
.client-logo {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(10, 10, 10, 0.78);
  text-align: center;
  padding: 18px 12px;
  border: 1px solid rgba(10, 10, 10, 0.10);
  background: #fff;
  border-radius: 4px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.client-logo:hover {
  color: var(--onyx, #0A0A0A);
  border-color: rgba(196, 161, 74, 0.45);
}

/* ---------- Tiered Protocol Grid (mobile surveillance page) ---------- */
.protocol-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 1024px) {
  .protocol-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .protocol-grid { grid-template-columns: 1fr; }
}
.protocol-step {
  position: relative;
  padding: 28px 24px 24px;
  background: #fff;
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-top: 3px solid var(--gold);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.protocol-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(10, 10, 10, 0.10);
}
.protocol-num {
  display: inline-block;
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.protocol-step h3 {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 1.2rem;
  margin: 0 0 10px;
  color: var(--onyx, #0A0A0A);
}
.protocol-step p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(10, 10, 10, 0.78);
  line-height: 1.55;
}

/* ---------- Use Case Grid (service pages) ---------- */
.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 1024px) {
  .use-case-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .use-case-grid { grid-template-columns: 1fr; }
}
.use-case-card {
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-left: 3px solid var(--gold);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.use-case-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(10, 10, 10, 0.08);
}
.use-case-card h3 {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 1.15rem;
  margin: 0 0 8px;
  color: var(--onyx, #0A0A0A);
}
.use-case-card p {
  margin: 0;
  font-size: 0.94rem;
  color: rgba(10, 10, 10, 0.78);
  line-height: 1.55;
}

/* ---------- Officer Profile Checklist ---------- */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.checklist li {
  position: relative;
  padding: 6px 0 6px 32px;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(10, 10, 10, 0.85);
}
.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 18px;
  height: 18px;
  background: var(--gold);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") no-repeat center / contain;
}

/* ---------- Contact Form ---------- */
.contact-form .form-row {
  margin-bottom: 18px;
}
.contact-form label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--onyx, #0A0A0A);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.contact-form label span[aria-label="required"] { color: var(--gold); }
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(10, 10, 10, 0.18);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
  color: var(--onyx, #0A0A0A);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 161, 74, 0.18);
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form .form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 600px) {
  .contact-form .form-row-split { grid-template-columns: 1fr; gap: 0; }
  .contact-form .form-row-split > div { margin-bottom: 18px; }
}

/* ---------- FAQ Accordion ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: #fff;
  border: 1px solid rgba(10, 10, 10, 0.10);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  padding: 0;
  transition: box-shadow 0.2s ease;
}
.faq-item[open] {
  box-shadow: 0 8px 24px rgba(10, 10, 10, 0.06);
}
.faq-item summary {
  padding: 18px 22px;
  cursor: pointer;
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--onyx, #0A0A0A);
  list-style: none;
  position: relative;
  padding-right: 48px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 400;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after {
  content: "−";
}
.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: rgba(10, 10, 10, 0.78);
  line-height: 1.6;
}

/* ---------- Sitemap (HTML) ---------- */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}
@media (max-width: 768px) {
  .sitemap-grid { grid-template-columns: 1fr; }
}
.sitemap-group h2 {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 1.4rem;
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
  color: var(--onyx, #0A0A0A);
}
.sitemap-list {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 24px;
}
.sitemap-list li {
  padding: 6px 0;
  break-inside: avoid;
}
.sitemap-list a {
  color: rgba(10, 10, 10, 0.85);
  text-decoration: none;
  font-size: 0.95rem;
}
.sitemap-list a:hover {
  color: var(--gold);
  text-decoration: underline;
}
@media (max-width: 600px) {
  .sitemap-list { columns: 1; }
}

/* ---------- Leadership bio expandable toggle ---------- */
.leader .bio-toggle {
  margin-top: 8px;
}
.leader .bio-toggle summary {
  list-style: none;
  cursor: pointer;
  color: var(--graphite);
  font-size: 0.92rem;
  line-height: 1.55;
  outline: none;
}
.leader .bio-toggle summary::-webkit-details-marker { display: none; }
.leader .bio-toggle summary::after {
  content: " Read more \2192";
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.leader .bio-toggle[open] summary::after {
  content: " Read less \2191";
}
.leader .bio-toggle:hover summary::after {
  text-decoration: underline;
}
.leader .bio-toggle p {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--graphite);
}
.leader .bio-toggle summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 3px;
}

/* ---------- Shift tag (AM / PM team identifier) ---------- */
.shift-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
  line-height: 1;
}
.shift-tag.am {
  background: var(--gold);
  color: var(--onyx);
}
.shift-tag.pm {
  background: var(--onyx);
  color: var(--gold);
  border: 1px solid var(--gold);
}

/* ---------- Accessibility ---------- */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 3px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  html { scroll-behavior: auto; }
}
