/* ==========================================================================
   S&K Corporation — style.css
   Professional security services | navy + royal blue identity
   ========================================================================== */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
}

:root {
  --navy:       #001F72;
  --navy-deep:  #001359;
  --navy-mid:   #0B2E8B;
  --royal:      #003FAB;
  --royal-2:    #2A6BE0;
  --royal-hover:#1259D6;
  --ink:        #16203C;
  --body:       #3F4B66;
  --muted:      #6B7487;
  --line:       #E5E9F2;
  --bg:         #F4F6FB;
  --bg-soft:    #FAFBFE;
  --white:      #FFFFFF;
  --radius:     14px;
  --radius-lg:  22px;
  --shadow-sm:  0 1px 2px rgba(0,21,64,.05), 0 1px 3px rgba(0,21,64,.06);
  --shadow-md:  0 12px 30px -8px rgba(0,21,64,.16);
  --shadow-lg:  0 30px 70px -20px rgba(0,21,64,.28);
  --container: 1200px;
  --ease:       cubic-bezier(.2,.7,.2,1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--royal); text-decoration: none; }
a:hover { color: var(--royal-hover); }
p { margin: 0 0 1em; }

h1, h2, h3, h4 {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 .5em;
}

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section--tint { background: var(--bg); }

/* eyebrow / kicker */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--royal);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--royal);
  border-radius: 2px;
}
.section-head { max-width: 760px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); }
.section-head p { font-size: 1.075rem; color: var(--muted); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .eyebrow::before { display: none; }

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .01em;
  padding: 14px 26px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all .22s var(--ease);
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--royal); color: #fff; box-shadow: 0 8px 20px -6px rgba(0,63,171,.45); }
.btn--primary:hover { background: var(--royal-hover); color: #fff; transform: translateY(-2px); box-shadow: 0 14px 28px -8px rgba(0,63,171,.5); }
.btn--ghost {
  background: rgba(255,255,255,.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: var(--shadow-lg);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.28);
  color: #fff;
  transform: translateY(-2px);
}
.btn--outline { background: #fff; color: var(--navy); border-color: var(--line); }
.btn--outline:hover { border-color: var(--royal); color: var(--royal); }
.btn--lg { padding: 17px 32px; font-size: 16px; }

/* Bouncing CTA (attention draw) */
@keyframes btn-bounce {
  0%, 20%, 53%, 80%, 100% { transform: translateY(0); }
  40%, 43% { transform: translateY(-9px); }
  70% { transform: translateY(-5px); }
  90% { transform: translateY(-2px); }
}
.btn-bounce {
  animation: btn-bounce 2.6s ease-in-out infinite;
  animation-delay: 1.2s;
}
.btn-bounce:hover {
  animation: none;
  transform: translateY(-2px);
}

/* Pulsing glow CTA */
@keyframes btn-glow {
  0%, 100% {
    box-shadow: 0 8px 20px -6px rgba(0,63,171,.45), 0 0 0 0 rgba(0,63,171,0);
  }
  50% {
    box-shadow: 0 8px 20px -6px rgba(0,63,171,.45), 0 0 0 6px rgba(0,63,171,.12), 0 0 26px 6px rgba(0,63,171,.4);
  }
}
.btn-glow {
  animation: btn-glow 2.4s ease-in-out infinite;
  animation-delay: 1.6s;
}
.btn-glow:hover { animation: none; }

/* ============================ HEADER ============================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; height: 116px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 100px; width: auto; }
.brand .brand-text { display: none; }

/* Header rotating accreditations */
.brand-wrap { display: contents; }
.brand-divider { display: none; }
.header-accredit { position: relative; width: 130px; height: 72px; flex: 0 0 auto; margin-left: auto; }
.header-accredit img {
  position: absolute; inset: 0; margin: auto;
  max-width: 130px; max-height: 72px; width: auto; height: auto;
  object-fit: contain;
  opacity: 0;
  animation: header-logo-cycle 16s ease-in-out infinite;
}
.header-accredit img:nth-child(1)  { animation-delay: 0s; }
.header-accredit img:nth-child(2)  { animation-delay: 2s; }
.header-accredit img:nth-child(3)  { animation-delay: 4s; }
.header-accredit img:nth-child(4)  { animation-delay: 6s; }
.header-accredit img:nth-child(5)  { animation-delay: 8s; }
.header-accredit img:nth-child(6)  { animation-delay: 10s; }
.header-accredit img:nth-child(7)  { animation-delay: 12s; }
.header-accredit img:nth-child(8)  { animation-delay: 14s; }

@keyframes header-logo-cycle {
  0%   { opacity: 0; transform: translateY(8px); }
  3%   { opacity: 1; transform: translateY(0); }
  7%   { opacity: 1; transform: translateY(0); }
  10%  { opacity: 0; transform: translateY(-8px); }
  100% { opacity: 0; transform: translateY(-8px); }
}

.nav { display: flex; align-items: center; gap: 14px; }
.nav a {
  font-size: 14px; font-weight: 500; color: var(--ink);
  position: relative; padding: 6px 0;
  white-space: nowrap;
}
.nav a:hover { color: var(--royal); }
.nav a.has-drop:hover + .dropdown, .nav a.has-drop:focus + .dropdown { display: block; }
.nav-cta { display: flex; align-items: center; gap: 14px; }

.dropdown-parent { position: relative; }
.dropdown {
  position: absolute; top: 100%; left: -18px;
  min-width: 250px; padding: 10px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 12px; box-shadow: var(--shadow-md);
  opacity: 0; transform: translateY(8px); visibility: hidden;
  transition: all .22s var(--ease);
  z-index: 200;
}
.dropdown-parent:hover .dropdown { opacity: 1; transform: translateY(0); visibility: visible; }
.dropdown a { display: block; padding: 9px 12px; border-radius: 8px; font-size: 14.5px; }
.dropdown a:hover { background: var(--bg-soft); color: var(--royal); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; color: var(--navy); padding: 8px; }
.nav-toggle svg { width: 26px; height: 26px; }

/* top utility bar */
.topbar { background: var(--navy-deep); color: rgba(255,255,255,.85); font-size: 13.5px; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 40px; padding-top: 6px; padding-bottom: 6px; }
.topbar .item { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.85); }
.topbar .item svg { width: 15px; height: 15px; }
.topbar .item:hover { color: #fff; }
.topbar a { color: rgba(255,255,255,.85); }
.topbar .badge { color:#fff; font-weight:600; letter-spacing:.04em; }
.topbar .topbar-cta {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--royal-2); color: #fff;
  font-weight: 600; font-size: 12.5px;
  padding: 4px 12px; border-radius: 999px;
  line-height: 1.2; white-space: nowrap;
  text-decoration: none;
}
.topbar .topbar-cta strong { font-weight: 800; }
.topbar .topbar-cta:hover { background: var(--royal-hover); color: #fff; }
.topbar-contact { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
.topbar-contact-line { display: flex; align-items: center; gap: 18px; }

/* ringing phone icon in the top bar */
@keyframes phone-ring {
  0%, 100% { transform: rotate(0deg); }
  10%, 30% { transform: rotate(-16deg); }
  20%, 40% { transform: rotate(16deg); }
  50%, 70% { transform: rotate(-12deg); }
  60%, 80% { transform: rotate(10deg); }
  90% { transform: rotate(-4deg); }
}
.topbar a[href^="tel:"] svg {
  animation: phone-ring 2s ease-in-out infinite;
  transform-origin: 50% 60%;
  will-change: transform;
}

/* ============================ HERO ============================ */
.hero {
  position: relative; overflow: hidden;
  color: #fff;
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(0,63,171,.55), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(0,63,171,.35), transparent 55%),
    linear-gradient(135deg, var(--navy-deep) 0%, #001F72 55%, #002A96 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(80% 80% at 50% 20%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(80% 80% at 50% 20%, #000 20%, transparent 75%);
  pointer-events: none;
}
/* (hero watermark removed per client request) */
.hero-inner { position: relative; z-index: 2; padding-top: 120px; padding-bottom: 128px; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }

.hero .eyebrow { color: #fff; }
.hero .eyebrow::before { display: none; }
.hero h1 {
  color: #fff; font-size: clamp(2.4rem, 5vw, 3.7rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.06;
  margin-bottom: 22px;
}
.hero h1 .accent { color: #fff; }
.hero .lede { font-size: 1.28rem; color: rgba(255,255,255,.82); max-width: 590px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-proof { display: flex; flex-wrap: wrap; gap: 28px; }
.hero-proof .stat { display: flex; flex-direction: column; }
.hero-proof .stat b { font-size: 1.7rem; font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.hero-proof .stat span { font-size: 13px; color: rgba(255,255,255,.72); }

.hero-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-lg);
}
.hero-card h3 { color: #fff; font-size: 1.15rem; margin-bottom: 16px; }
.hero-card ul { list-style: none; margin: 0; padding: 0; }
.hero-card li { display: flex; gap: 12px; align-items: flex-start; padding: 9px 0; color: rgba(255,255,255,.88); font-size: 15px; }
.hero-card li svg { width: 18px; height: 18px; color: #7da4ff; flex-shrink: 0; margin-top: 3px; }

/* ============================ TRUST STRIP ============================ */
.trust-strip { background: #fff; border-bottom: 1px solid var(--line); }
.trust-inner { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; padding: 26px 24px; text-align: center; }
.trust-inner .trust-badges { justify-content: center; }
.trust-label { font-size: 12.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.trust-badges { display: flex; flex-wrap: wrap; gap: 28px; align-items: center; }
.trust-badges .badge { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--ink); font-size: 15px; }
.trust-badges .badge svg { width: 20px; height: 20px; color: var(--royal); }

/* ============================ CARDS / GRID ============================ */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px;
  transition: all .25s var(--ease); position: relative;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.card .icon {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-soft); color: var(--royal); margin-bottom: 18px;
  border: 1px solid var(--line);
}
.card .icon svg { width: 26px; height: 26px; }
.card .accredit-logo { height: 64px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.card .accredit-logo img.accredit { max-height: 64px; max-width: 160px; width: auto; height: auto; object-fit: contain; }
.card .accredit-logo img.accredit--sm { max-height: 40px; }
.card .accredit-logo.accredit-logo--lg { height: 104px; }
.card .accredit-logo img.accredit--lg { max-height: 104px; }
.card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.card p { font-size: 15px; color: var(--muted); margin-bottom: 14px; }
.card .card-link { font-weight: 600; font-size: 14.5px; display: inline-flex; align-items: center; gap: 6px; }
.card .card-link svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.card:hover .card-link svg { transform: translateX(4px); }

/* service card variant */
.service-card { padding: 30px; }
.service-card:hover .icon { background: var(--royal); color: #fff; }

/* feature / why */
.feature { display: flex; gap: 18px; align-items: flex-start; }
.feature .icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-soft); color: var(--royal); border: 1px solid var(--line);
}
.feature .icon svg { width: 24px; height: 24px; }
.feature h4 { font-size: 1.05rem; margin-bottom: 6px; }
.feature p { font-size: 14.5px; color: var(--muted); margin: 0; }

/* ============================ SPLIT ============================ */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.split .visual { position: relative; }
.split ul.check { list-style: none; padding: 0; margin: 0; }
.split ul.check li { display: flex; gap: 12px; align-items: flex-start; padding: 7px 0; }
.split ul.check li svg { width: 20px; height: 20px; color: var(--royal); flex-shrink: 0; margin-top: 3px; }

/* ============================ TESTIMONIAL ============================ */
.testimonial {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; display: flex; flex-direction: column; gap: 18px; height: 100%;
}
.testimonial .quote { color: var(--body); font-size: 15.5px; line-height: 1.7; flex: 1; }
.testimonial .quote::before { content: "\201C"; font-size: 48px; line-height: 0; color: var(--royal); display: block; margin: 8px 0 14px; font-family: Georgia, serif; }
.testimonial .who { display: flex; align-items: center; gap: 12px; }
.testimonial .avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--bg); display: flex; align-items: center; justify-content: center; color: var(--royal); font-weight: 700; font-size: 15px; }
.testimonial .who b { display: block; color: var(--ink); font-size: 15px; }
.testimonial .who span { font-size: 13px; color: var(--muted); }
.stars { display: flex; gap: 5px; align-items: center; }
.stars::before { content: ""; display: block; width: 17px; height: 17px; margin-right: 4px; flex: none; background: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2048%2048'%3E%3Cpath%20fill%3D'%23EA4335'%20d%3D'M24%209.5c3.54%200%206.71%201.22%209.21%203.6l6.85-6.85C35.9%202.38%2030.47%200%2024%200%2014.62%200%206.51%205.38%202.56%2013.22l7.98%206.19C12.43%2013.72%2017.74%209.5%2024%209.5z'%2F%3E%3Cpath%20fill%3D'%234285F4'%20d%3D'M46.98%2024.55c0-1.57-.15-3.09-.38-4.55H24v9.02h12.94c-.58%202.96-2.26%205.48-4.78%207.18l7.73%206c4.51-4.18%207.09-10.36%207.09-17.65z'%2F%3E%3Cpath%20fill%3D'%23FBBC05'%20d%3D'M10.53%2028.59c-.48-1.45-.76-2.99-.76-4.59s.27-3.14.76-4.59l-7.98-6.19C.92%2016.46%200%2020.12%200%2024c0%203.88.92%207.54%202.56%2010.78l7.97-6.19z'%2F%3E%3Cpath%20fill%3D'%2334A853'%20d%3D'M24%2048c6.48%200%2011.93-2.13%2015.89-5.81l-7.73-6c-2.15%201.45-4.92%202.3-8.16%202.3-6.26%200-11.57-4.22-13.47-9.91l-7.98%206.19C6.51%2042.62%2014.62%2048%2024%2048z'%2F%3E%3C%2Fsvg%3E") no-repeat center/contain; }
.stars .star { display: block; width: 18px; height: 18px; background: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2024%2024'%3E%3Cdefs%3E%3ClinearGradient%20id%3D'g'%20x1%3D'0'%20y1%3D'0'%20x2%3D'0'%20y2%3D'1'%3E%3Cstop%20offset%3D'0'%20stop-color%3D'%23F9D873'%2F%3E%3Cstop%20offset%3D'0.5'%20stop-color%3D'%23F0BE4A'%2F%3E%3Cstop%20offset%3D'1'%20stop-color%3D'%23DD9418'%2F%3E%3C%2FlinearGradient%3E%3C%2Fdefs%3E%3Cpath%20fill%3D'url%28%23g%29'%20stroke%3D'url%28%23g%29'%20stroke-width%3D'0.8'%20stroke-linejoin%3D'round'%20d%3D'M12%2017.27L18.18%2021l-1.64-7.03L22%209.24l-7.19-.61L12%202%209.19%208.63%202%209.24l5.46%204.73L5.82%2021z'%2F%3E%3C%2Fsvg%3E") no-repeat center/contain; filter: drop-shadow(0 1px 1px rgba(140,90,0,.28)); }

/* ============================ CTA BAND ============================ */
.cta-band {
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-mid) 70%);
  color: #fff; padding: 60px 56px;
}
.cta-band::after { content: ""; position: absolute; right: -80px; top: 50%; transform: translateY(-50%); width: 420px; height: 420px; border-radius: 50%; background: url('../img/logo-white.png') center/contain no-repeat; opacity: .07; }
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,.82); max-width: 560px; margin-bottom: 26px; }
.cta-band .row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.cta-band .phone { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; color: #fff; }

/* ============================ FOOTER ============================ */
.site-footer { background: #0B1430; color: rgba(255,255,255,.7); }
.footer-top { padding: 72px 0 48px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px; }
.site-footer h4 { color: #fff; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer ul a { color: rgba(255,255,255,.66); font-size: 14.5px; }
.site-footer ul a:hover { color: #fff; }
.site-footer .brand-desc { font-size: 14.5px; max-width: 300px; margin: 16px 0 20px; }
.site-footer .contact li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: 14.5px; }
.site-footer .contact svg { width: 17px; height: 17px; color: #7da4ff; flex-shrink: 0; margin-top: 3px; }
.footer-legal { border-top: 1px solid rgba(255,255,255,.09); }
.footer-legal-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; padding: 22px 0; font-size: 13.5px; }
.footer-legal a { color: rgba(255,255,255,.55); }
.footer-legal a:hover { color: #fff; }
.footer-legal .badges { color: rgba(255,255,255,.55); }
.site-credit { text-align: center; padding: 14px 0 22px; font-size: 12.5px; color: rgba(255,255,255,.42); }
.site-credit a { color: rgba(255,255,255,.6); font-weight: 500; }
.site-credit a:hover { color: #fff; }

/* ============================ REVEAL ============================ */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .8s var(--ease), transform .8s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }

.reveal--up    { transform: translateY(40px); }
.reveal--left  { transform: translateX(-56px); }
.reveal--right { transform: translateX(56px); }
.reveal--scale { transform: scale(.94); }

.grid > .reveal:nth-child(2) { transition-delay: .12s; }
.grid > .reveal:nth-child(3) { transition-delay: .24s; }
.grid > .reveal:nth-child(4) { transition-delay: .36s; }
.grid > .reveal:nth-child(5) { transition-delay: .48s; }
.grid > .reveal:nth-child(6) { transition-delay: .6s; }
.hero-grid > .reveal:nth-child(2) { transition-delay: .22s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn-bounce { animation: none; }
  .btn-glow { animation: none; }
  .header-accredit img { animation: none; opacity: 0; }
  .header-accredit img:first-child { opacity: 1; }
}

/* ============================ RESPONSIVE ============================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .brand img { height: 82px; flex-shrink: 0; }
  .header-inner { height: 100px; }
  .header-accredit { width: 108px; height: 60px; }
  .header-accredit img { max-width: 108px; max-height: 60px; }
  .brand-divider { height: 46px; }
}
@media (max-width: 860px) {
  .nav, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .brand-divider { display: none; }
  .topbar-inner .item--hide { display: none; }
  .grid-3 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .section { padding: 64px 0; }
  .hero-inner { padding-top: 80px; padding-bottom: 84px; }
  .cta-band { padding: 44px 30px; }
}
@media (max-width: 520px) {
  .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .brand img { height: 76px; }
  .header-accredit { width: 84px; height: 46px; }
  .header-accredit img { max-width: 84px; max-height: 46px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 420px) {
  .topbar-inner .topbar-badges { flex-direction: column; align-items: flex-end; gap: 2px !important; }
  .topbar-inner .topbar-badges .badge { white-space: nowrap; }
}

/* mobile drawer */
.mobile-menu {
  position: fixed; inset: 0; z-index: 300;
  background: #fff; padding: 24px;
  transform: translateX(100%); transition: transform .32s var(--ease);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu .head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.mobile-menu nav a { display: block; padding: 14px 4px; font-size: 17px; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--line); }
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: 24px; }

.site-header.scrolled { box-shadow: var(--shadow-sm); }
.dropdown--wide { min-width: 470px; columns: 2; column-gap: 4px; }

/* ==========================================================================
   COMPACT + CENTERED (design sign-off)
   Smaller type, tighter spacing, centered text.
   ========================================================================== */

body { font-size: 15px; line-height: 1.55; }
.section { padding: 60px 0; }
.section-head { margin-bottom: 36px; }
.hero-inner { padding-top: 84px; padding-bottom: 88px; }

/* --- smaller headings & copy --- */
.hero h1 { font-size: clamp(1.95rem, 3.6vw, 2.6rem); }
.hero .lede { font-size: 1.12rem; }
.hero-proof .stat b { font-size: 1.4rem; }
.hero-card h3 { font-size: 1.05rem; }
.hero-card li { font-size: 14px; }
.section-head h2 { font-size: clamp(1.42rem, 2.4vw, 1.85rem); }
.section-head p { font-size: 1rem; }
.card h3 { font-size: 1.04rem; }
.card p { font-size: 14.5px; }
.feature h4 { font-size: 1rem; }
.feature p { font-size: 14px; }
.cta-band h2 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); }
.testimonial .quote { font-size: 15px; }

/* --- centering --- */
.hero-grid > div:first-child { text-align: center; }
.hero-grid > div:first-child .lede { margin-left: auto; margin-right: auto; }
.hero-actions { justify-content: center; }
.hero-proof { justify-content: center; }
.hero-proof .stat { text-align: center; }

.section-head { text-align: center; margin-left: auto; margin-right: auto; }
.section-head .eyebrow::before,
.split .eyebrow::before { display: none; }

.card, .service-card { text-align: center; }
.card .icon { margin-left: auto; margin-right: auto; }

.feature { flex-direction: column; align-items: center; text-align: center; }

.testimonial { text-align: center; }
.testimonial .stars, .testimonial .who { justify-content: center; }

.cta-band { text-align: center; }
.cta-band p { margin-left: auto; margin-right: auto; }
.cta-band .row { justify-content: center; }

.split .reveal { text-align: center; }
.split ul.check { display: inline-block; text-align: left; margin: 0 auto; }

/* ==========================================================================
   ZOOM OUT (pass 2) — reduce overall visual scale further
   ========================================================================== */

:root { --container: 1120px; }

body { font-size: 14px; line-height: 1.5; }
.section { padding: 48px 0; }
.section-head { margin-bottom: 30px; }
.hero-inner { padding-top: 64px; padding-bottom: 72px; }
.footer-top { padding: 48px 0 36px; }

.hero h1 { font-size: clamp(1.7rem, 3vw, 2.2rem); }
.hero .lede { font-size: 1.05rem; }
.hero-proof .stat b { font-size: 1.25rem; }
.hero-proof .stat span { font-size: 12px; }
.hero-card { padding: 24px; }
.hero-card h3 { font-size: 1rem; }
.hero-card li { font-size: 13.5px; }

.section-head h2 { font-size: clamp(1.3rem, 2.1vw, 1.6rem); }
.section-head p { font-size: 0.95rem; }
.eyebrow { font-size: 12px; }

.card { padding: 24px; }
.card .icon { width: 44px; height: 44px; }
.card .icon svg { width: 22px; height: 22px; }
.card h3 { font-size: 0.98rem; }
.card p { font-size: 13.5px; }

.feature .icon { width: 42px; height: 42px; }
.feature .icon svg { width: 20px; height: 20px; }
.feature h4 { font-size: 0.95rem; }
.feature p { font-size: 13px; }

.cta-band { padding: 44px 40px; }
.cta-band h2 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
.cta-band p { font-size: 0.95rem; }

.testimonial { padding: 24px; }
.testimonial .quote { font-size: 14px; }

.btn { font-size: 14px; padding: 12px 22px; }
.btn--lg { font-size: 15px; padding: 14px 28px; }

.topbar { font-size: 12.5px; }
.nav a { font-size: 14px; }

.site-footer .brand-desc,
.site-footer ul a { font-size: 13.5px; }

/* ==========================================================================
   MOBILE BUTTONS — not edge-to-edge
   ========================================================================== */
@media (max-width: 520px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: auto; }
  .cta-band .row { flex-direction: column; align-items: center; }
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-hero .eyebrow { color: #7da4ff; }
.contact-hero .eyebrow::before { background: #7da4ff; }
.contact-hero { position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-mid)); }
.contact-hero::after { content: ""; position: absolute; right: -120px; top: 50%; transform: translateY(-50%);
  width: 460px; height: 460px; border-radius: 50%; background: url('../img/logo-white.png') center/contain no-repeat; opacity: .06; pointer-events: none; }
.contact-hero .hero-inner { padding-top: 64px; padding-bottom: 72px; position: relative; z-index: 2; }
.contact-hero h1 { color: #fff; }
.contact-hero .lede { color: rgba(255,255,255,.82); max-width: 620px; }

/* Centred internal-page hero */
.contact-hero .hero-inner { text-align: center; }
.contact-hero .eyebrow::before { display: none; }
.contact-hero h1 { margin-left: auto; margin-right: auto; max-width: 780px; }
.contact-hero .lede { margin-left: auto; margin-right: auto; }
.contact-hero .hero-actions { justify-content: center; }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: start; }

.contact-info h3 { font-size: 1.05rem; margin-bottom: 12px; }
.contact-info .contact, .contact-info .hours { list-style: none; margin: 0 0 26px; padding: 0; }
.contact-info .contact li { display: flex; gap: 12px; align-items: flex-start; padding: 8px 0; color: var(--body); font-size: 14.5px; }
.contact-info .contact li svg { width: 20px; height: 20px; color: var(--royal); flex-shrink: 0; margin-top: 2px; }
.contact-info .contact li a { color: var(--royal); font-weight: 600; }
.contact-info .hours li { display: flex; justify-content: space-between; gap: 16px; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; color: var(--body); }
.contact-info .hours li b { color: var(--ink); font-weight: 600; }

.urgent-box { background: var(--bg-soft); border: 1px solid var(--line); border-left: 3px solid var(--royal); border-radius: 12px; padding: 20px 22px; }
.urgent-box b { display: block; color: var(--navy); margin-bottom: 6px; }
.urgent-box a { font-weight: 700; font-size: 1.15rem; color: var(--royal); }

.contact-form .field { margin-bottom: 16px; }
.contact-form label { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; font-family: inherit; font-size: 15px; color: var(--ink);
  padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--royal); box-shadow: 0 0 0 3px rgba(0,63,171,.12);
}
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form .urgent { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: var(--body); margin: 4px 0 18px; cursor: pointer; }
.contact-form .urgent input { width: auto; accent-color: var(--royal); }
.contact-form .msg-ok { display: none; background: #EAF6EE; border: 1px solid #C7E6CF; color: #1E6B34; border-radius: 10px; padding: 12px 16px; font-size: 14px; margin-bottom: 16px; }
.contact-form .form-note { font-size: 13px; color: var(--muted); margin-top: 14px; }

.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); margin-top: 48px; }
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-form .form-row { grid-template-columns: 1fr; gap: 0; }
  .map-wrap iframe { height: 300px; }
}

/* ==========================================================================
   SUBPAGE CONTENT (service & info pages)
   ========================================================================== */
.prose { max-width: 840px; }
.prose h2 { font-size: 1.55rem; margin: 0 0 14px; }
.prose h3 { font-size: 1.12rem; margin: 28px 0 10px; }
.prose p { font-size: 15.5px; line-height: 1.75; color: var(--body); }
.prose .lead { font-size: 17px; color: var(--ink); }

.checklist { list-style: none; margin: 6px 0 24px; padding: 0; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; padding: 7px 0; font-size: 15px; color: var(--body); }
.checklist li svg { width: 20px; height: 20px; color: var(--royal); flex-shrink: 0; margin-top: 2px; }
.checklist.cols-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 32px; }
.checklist.cols-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2px 32px; }

.panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.panel--tint { background: var(--bg-soft); border-left: 3px solid var(--royal); }
.panel h3 { font-size: 1.12rem; margin-bottom: 10px; }
.panel p { font-size: 15px; color: var(--muted); margin-bottom: 6px; }

.faq-list { list-style: none; margin: 12px 0; padding: 0; }
.faq-list li { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; padding: 20px 24px; margin-bottom: 12px; }
.faq-list li h3 { font-size: 1.05rem; margin: 0 0 8px; display: flex; align-items: flex-start; gap: 10px; }
.faq-list li h3 i { color: var(--royal); width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.faq-list li p { font-size: 15px; line-height: 1.7; color: var(--body); margin: 0; }

@media (max-width: 640px) {
  .checklist.cols-2, .checklist.cols-3 { grid-template-columns: 1fr; }
}

/* ============================ PHOTOGRAPHY ============================ */
/* Full-bleed hero photograph — sits behind the navy gradient + content */
.hero-photo {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  pointer-events: none;
  transition: opacity 1.1s ease;
}
.hero-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg,
    rgba(8,11,16,.82) 0%, rgba(8,11,16,.52) 42%, rgba(8,11,16,.24) 68%, rgba(8,11,16,.04) 100%);
}

/* Subtle Ken Burns drift — slow constant zoom in/out with a gentle pan */
@keyframes hero-kenburns {
  0%   { transform: scale(1.05) translate(0, 0); }
  50%  { transform: scale(1.40) translate(-3%, -1.1%); }
  100% { transform: scale(1.05) translate(0, 0); }
}
.hero-photo {
  animation: hero-kenburns 13s ease-in-out infinite;
  will-change: transform;
}

/* Editorial section image inside prose content */
.section-img {
  margin: 40px 0; border-radius: 18px; overflow: hidden;
  box-shadow: 0 26px 55px -22px rgba(0,20,70,.45);
  border: 1px solid var(--line);
}
.section-img img {
  display: block; width: 100%; height: auto;
  aspect-ratio: 16 / 8; object-fit: cover;
}

@media (max-width: 720px) {
  .section-img { margin: 28px 0; border-radius: 14px; }
  .section-img img { aspect-ratio: 4 / 3; }
}

/* ---- Cookie consent banner ---- */
.cookie-banner{position:fixed;left:0;right:0;bottom:0;z-index:1000;background:#001F72;color:#fff;box-shadow:0 -6px 24px rgba(0,0,0,.18);padding:18px 0}
.cookie-banner[hidden]{display:none}
.cookie-inner{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:14px}
.cookie-text{flex:1 1 320px;margin:0;font-size:.95rem;line-height:1.5;color:#dbe4ff}
.cookie-text a{color:#fff;text-decoration:underline;text-underline-offset:3px}
.cookie-actions{display:flex;gap:10px;flex-shrink:0}
.cookie-actions .btn{white-space:nowrap}
@media (max-width:640px){.cookie-inner{flex-direction:column;align-items:flex-start}.cookie-actions{width:100%}.cookie-actions .btn{flex:1}}

/* center background logo watermark on mobile */
@media (max-width: 860px) {
  .cta-band::after,
  .contact-hero::after {
    right: auto;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .cta-band::after { width: 240px; height: 240px; }
  .contact-hero::after { width: 260px; height: 260px; }
}

/* ---- Contact enquiry popup ---- */
.enquiry-overlay{
  position:fixed; inset:0; z-index:2000;
  display:flex; align-items:center; justify-content:center;
  padding:24px;
  background:rgba(0,21,64,.55);
  -webkit-backdrop-filter:blur(6px); backdrop-filter:blur(6px);
  opacity:0; visibility:hidden; pointer-events:none;
  transition:opacity .35s var(--ease), visibility .35s var(--ease);
}
.enquiry-overlay.open{opacity:1; visibility:visible; pointer-events:auto;}
.enquiry-modal{
  position:relative; width:100%; max-width:430px; max-height:88vh; overflow:auto;
  background:linear-gradient(160deg, rgba(10,12,16,.66), rgba(14,16,20,.48)), url('../img/photos/team-security.jpg') center/cover no-repeat;
  border-radius:var(--radius-lg);
  padding:32px 28px 28px;
  box-shadow:var(--shadow-lg);
  transform:translateY(24px) scale(.98);
  transition:transform .35s var(--ease);
}
.enquiry-overlay.open .enquiry-modal{transform:translateY(0) scale(1);}
.enquiry-close{
  position:absolute; top:14px; right:14px;
  width:34px; height:34px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:rgba(255,255,255,.14); border:0; color:#fff; cursor:pointer;
  transition:background .2s, color .2s;
}
.enquiry-close:hover{background:rgba(255,255,255,.26); color:#fff;}
.enquiry-close svg{width:18px; height:18px;}
.enquiry-title{font-size:1.35rem; font-weight:800; color:#fff; letter-spacing:-.02em; margin:0 0 8px; padding-right:24px; text-wrap:balance;}
.enquiry-sub{font-size:.95rem; color:rgba(255,255,255,.85); margin:0 0 20px; line-height:1.5;}
.enquiry-modal .contact-form label{color:#fff;}
.enquiry-modal .contact-form textarea{resize:none;}
.enquiry-modal .btn{width:100%; justify-content:center;}
.enquiry-alt{margin:16px 0 0; font-size:.85rem; color:rgba(255,255,255,.78); text-align:center;}
.enquiry-alt a{color:#fff; font-weight:700; white-space:nowrap; text-decoration:underline; text-underline-offset:3px;}
.enquiry-alt a:hover{text-decoration:underline;}
@media (prefers-reduced-motion:reduce){
  .enquiry-overlay, .enquiry-modal{transition:none;}
}
/* Tighten stacked sections — "Who this service is for" sits flush with section above */
.section + .section { padding-top: 0; }
.section:has(+ .section) { padding-bottom: 0; }
/* Contact page: keep phone icon + number on one line */
.urgent-box a { display: inline-flex; align-items: center; gap: 8px; }
.urgent-box a svg { width: 18px; height: 18px; flex-shrink: 0; }
