/* =========================================================
   BSA SECURITY — DESIGN TOKENS
   ========================================================= */
:root{
  --yellow: #F2D716;
  --yellow-dim: #C7B012;
  --ink: #0B0B0C;
  --ink-panel: #151517;
  --ink-panel-2: #1C1C1F;
  --white: #FFFFFF;
  --paper: #F5F5F3;
  --grey-500: #8A8A8E;
  --grey-300: #B3B3B8;

  --font-display: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius: 4px;
  --container: 1180px;
  --nav-h: 76px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* THEME: dark (default) */
body.theme-dark{
  --bg: var(--ink);
  --bg-alt: var(--ink-panel);
  --text: #F2F1EC;
  --text-muted: var(--grey-300);
  --border: rgba(242,215,22,0.18);
  --card-bg: var(--ink-panel);
  --nav-bg: rgba(11,11,12,0.6);
  --nav-border: rgba(242,215,22,0.14);
}

/* THEME: light */
body.theme-light{
  --bg: var(--paper);
  --bg-alt: var(--white);
  --text: #17171A;
  --text-muted: var(--grey-500);
  --border: rgba(0,0,0,0.1);
  --card-bg: var(--white);
  --nav-bg: rgba(255,255,255,0.65);
  --nav-border: rgba(0,0,0,0.08);
}

/* =========================================================
   RESET / BASE
   ========================================================= */
*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:var(--font-body);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  transition:background .35s var(--ease), color .35s var(--ease);
  overflow-x:hidden;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
ul,ol{margin:0;padding:0;list-style:none;}
h1,h2,h3{
  font-family:var(--font-display);
  text-transform:uppercase;
  letter-spacing:0.01em;
  margin:0 0 .5em;
  line-height:1.08;
  font-weight:600;
}
h1{font-size:clamp(2.6rem,7vw,5.2rem);}
h2{font-size:clamp(1.9rem,4vw,2.8rem);}
h3{font-size:1.05rem;letter-spacing:.02em;}
p{margin:0 0 1em;color:var(--text-muted);}
.container{max-width:var(--container);margin:0 auto;padding:0 24px;}
.section{padding:96px 0;position:relative;}
@media (max-width:720px){
  .section{padding:64px 0;}
}

@media (prefers-reduced-motion: reduce){
  *{animation-duration:.001ms !important; transition-duration:.001ms !important;}
  html{scroll-behavior:auto;}
}

:focus-visible{outline:2px solid var(--yellow); outline-offset:3px;}

/* =========================================================
   EYEBROW / LABELS
   ========================================================= */
.eyebrow{
  font-family:var(--font-mono);
  font-size:.78rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--yellow-dim);
  display:flex;align-items:center;gap:8px;
  margin-bottom:14px;
}
body.theme-dark .eyebrow{color:var(--yellow);}
.eyebrow--onDark{color:var(--yellow) !important;}
.eyebrow-dot{
  width:7px;height:7px;border-radius:50%;
  background:var(--yellow);display:inline-block;
}
.eyebrow-dot--pulse{animation:pulse 1.8s infinite;}
@keyframes pulse{
  0%,100%{box-shadow:0 0 0 0 rgba(242,215,22,.5);}
  50%{box-shadow:0 0 0 6px rgba(242,215,22,0);}
}
.section-lead{max-width:640px;font-size:1.05rem;}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  font-family:var(--font-body);
  font-weight:700;
  font-size:.92rem;
  padding:13px 22px;
  border-radius:2px;
  border:1.5px solid transparent;
  cursor:pointer;
  transition:transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
  white-space:nowrap;
}
.btn svg{width:18px;height:18px;flex-shrink:0;}
.btn:hover{transform:translateY(-2px);}
.btn-primary{background:var(--yellow); color:#141400;}
.btn-primary:hover{background:#fff099;}
.btn-ghost{background:transparent; border-color:currentColor; color:var(--text);}
.btn-ghost:hover{border-color:var(--yellow); color:var(--yellow);}
.btn-lg{padding:15px 28px; font-size:1rem;}
.btn-block{width:100%; margin-top:8px;}
.btn-call{background:var(--yellow); color:#141400; padding:10px 18px; font-size:.85rem;}
.btn-call--nav{}

/* =========================================================
   NAV
   ========================================================= */
.site-nav{
  position:fixed; top:0; left:0; right:0; z-index:1000;
  height:var(--nav-h);
  background:var(--nav-bg);
  border-bottom:1px solid var(--nav-border);
  backdrop-filter:blur(16px) saturate(140%);
  -webkit-backdrop-filter:blur(16px) saturate(140%);
  transition:background .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.site-nav.scrolled{box-shadow:0 8px 24px rgba(0,0,0,0.18);}
.nav-inner{
  max-width:var(--container); margin:0 auto; height:100%;
  padding:0 24px;
  display:flex; align-items:center; justify-content:space-between; gap:24px;
}
.nav-brand{display:flex;align-items:center;gap:10px;flex-shrink:0;}
.brand-mark{height:38px;width:auto;}
.brand-mark--light{display:none;}
body.theme-light .brand-mark--dark{display:none;}
body.theme-light .brand-mark--light{display:block;}
.brand-text{display:flex;flex-direction:column;line-height:1.1;}
.brand-text strong{font-family:var(--font-display); font-size:.95rem; letter-spacing:.04em;}
.brand-text em{font-style:normal; font-size:.62rem; letter-spacing:.1em; text-transform:uppercase; color:var(--text-muted);}

.nav-links{display:flex; gap:28px; align-items:center;}
.nav-links a{
  font-size:.86rem; font-weight:600; letter-spacing:.02em;
  color:var(--text-muted);
  position:relative;
  padding:6px 0;
  transition:color .2s;
}
.nav-links a:hover{color:var(--text);}
.nav-links a::after{
  content:''; position:absolute; left:0; bottom:0; height:2px; width:0;
  background:var(--yellow); transition:width .25s var(--ease);
}
.nav-links a:hover::after{width:100%;}

.nav-actions{display:flex; align-items:center; gap:14px;}
.theme-toggle{
  width:38px;height:38px; border-radius:50%;
  border:1px solid var(--border); background:transparent; color:var(--text);
  display:flex; align-items:center; justify-content:center; cursor:pointer;
  flex-shrink:0;
}
.theme-toggle svg{width:18px;height:18px;}
.theme-toggle .icon-moon{display:none;}
body.theme-light .theme-toggle .icon-sun{display:none;}
body.theme-light .theme-toggle .icon-moon{display:block;}

.nav-burger{display:none; flex-direction:column; justify-content:center; gap:5px; width:34px; height:34px; background:none; border:none; cursor:pointer;}
.nav-burger span{display:block; height:2px; width:100%; background:var(--text); border-radius:2px; transition:transform .25s, opacity .25s;}

@media (max-width:900px){
  .nav-links{
    position:fixed; top:var(--nav-h); left:0; right:0;
    flex-direction:column; align-items:flex-start; gap:0;
    background:var(--bg); border-bottom:1px solid var(--border);
    max-height:0; overflow:hidden; padding:0 24px;
    transition:max-height .3s var(--ease);
  }
  .nav-links.open{max-height:340px; padding:16px 24px;}
  .nav-links a{width:100%; padding:12px 0; border-bottom:1px solid var(--border);}
  .nav-burger{display:flex;}
  .btn-call--nav span{display:none;}
  .btn-call--nav{padding:10px;}
}
@media (max-width:560px){
  .brand-text{display:none;}
}

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position:relative; min-height:100vh; display:flex; align-items:flex-end;
  padding-top:var(--nav-h);
  overflow:hidden;
}
.hero-media{position:absolute; inset:0; z-index:0;}
.hero-media img{width:100%; height:100%; object-fit:cover; object-position:center 30%;}
.hero-scrim{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(11,11,12,.55) 0%, rgba(11,11,12,.35) 35%, rgba(11,11,12,.92) 100%);
}
.hero-scanline{
  position:absolute; left:0; right:0; height:2px;
  background:linear-gradient(90deg, transparent, rgba(242,215,22,.55), transparent);
  animation:scan 6s linear infinite;
  opacity:.6;
}
@keyframes scan{
  0%{top:0%;} 100%{top:100%;}
}
.hero-content{
  position:relative; z-index:1;
  max-width:var(--container); margin:0 auto; width:100%;
  padding:0 24px 90px;
  color:#F2F1EC;
}
.hero-content .eyebrow{color:var(--yellow);}
.hero h1{color:#fff; margin-bottom:.4em;}
.hero h1 .hl{color:var(--yellow);}
.hero-sub{max-width:560px; font-size:1.08rem; color:#D7D6CE;}
.hero-actions{display:flex; gap:16px; margin-top:12px; flex-wrap:wrap;}
.hero-actions .btn-ghost{color:#fff; border-color:rgba(255,255,255,.5);}
.hero-actions .btn-ghost:hover{border-color:var(--yellow); color:var(--yellow);}

.scroll-cue{
  position:absolute; bottom:28px; left:50%; transform:translateX(-50%);
  width:26px; height:42px; border:2px solid rgba(255,255,255,.45); border-radius:20px;
  z-index:1;
}
.scroll-cue span{
  position:absolute; top:8px; left:50%; transform:translateX(-50%);
  width:4px; height:8px; background:var(--yellow); border-radius:2px;
  animation:cueMove 1.6s infinite;
}
@keyframes cueMove{
  0%{opacity:1; top:8px;} 70%{opacity:0; top:22px;} 100%{opacity:0; top:8px;}
}
@media (max-width:720px){
  .hero{align-items:center;}
  .hero-content{padding-bottom:48px;}
  .scroll-cue{display:none;}
}

/* =========================================================
   ABOUT
   ========================================================= */
.about-grid{
  display:grid; grid-template-columns:1.5fr 1fr; gap:64px; align-items:start;
}
.about-points{margin-top:24px; display:flex; flex-direction:column; gap:14px;}
.about-points li{
  padding-left:20px; border-left:2px solid var(--yellow);
  color:var(--text-muted); font-size:.96rem;
}
.about-points strong{color:var(--text); font-weight:700;}

.about-side{display:flex; justify-content:center;}
.founder-card{
  text-align:center; padding:32px 24px;
  border:1px solid var(--border); border-radius:8px;
  background:var(--card-bg);
}
.founder-photo{
  width:132px; height:132px; border-radius:50%;
  overflow:hidden; margin:0 auto 16px;
  border:3px solid var(--yellow);
  box-shadow:0 0 0 6px rgba(242,215,22,0.08);
}
.founder-photo img{width:100%; height:100%; object-fit:cover;}
.founder-name{font-family:var(--font-display); text-transform:uppercase; letter-spacing:.04em; font-size:1rem; color:var(--text); margin-bottom:2px;}
.founder-role{font-size:.8rem; color:var(--text-muted); margin:0;}

@media (max-width:840px){
  .about-grid{grid-template-columns:1fr; gap:40px;}
  .about-side{order:-1;}
}

/* =========================================================
   STATS / OPERATIONS PANEL
   ========================================================= */
.stats-panel{
  background:var(--ink); color:#F2F1EC;
  background-image:
    linear-gradient(rgba(242,215,22,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242,215,22,0.05) 1px, transparent 1px);
  background-size:32px 32px;
}
body.theme-light .stats-panel{background-color:var(--ink);}
.stats-panel p, .stats-panel h2{color:#F2F1EC;}
.stats-head{margin-bottom:40px;}
.stats-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:1px;
  background:rgba(242,215,22,0.18);
  border:1px solid rgba(242,215,22,0.18);
}
.stat-card{
  background:var(--ink); padding:36px 24px; text-align:left;
  position:relative;
}
.stat-number{
  font-family:var(--font-mono); font-size:clamp(2.2rem,4vw,3rem); font-weight:600; color:var(--yellow);
}
.stat-suffix{font-family:var(--font-mono); font-size:1.4rem; color:var(--yellow);}
.stat-label{
  font-size:.8rem; text-transform:uppercase; letter-spacing:.08em;
  color:#B3B3B8; margin:10px 0 0;
}
.stats-note{margin-top:20px; font-size:.75rem; color:#6B6B70; font-family:var(--font-mono);}
@media (max-width:800px){
  .stats-grid{grid-template-columns:repeat(2,1fr);}
}

/* =========================================================
   SERVICES — BADGE CARD SIGNATURE
   ========================================================= */
.badge-grid{
  margin-top:48px;
  display:grid; grid-template-columns:repeat(4,1fr); gap:20px;
}
.badge-card{
  position:relative;
  background:var(--card-bg);
  border:1px solid var(--border);
  padding:28px 22px 24px;
  clip-path:polygon(0 0,calc(100% - 22px) 0,100% 22px,100% 100%,0 100%);
  transition:transform .25s var(--ease), border-color .25s var(--ease);
}
.badge-card:hover{transform:translateY(-4px); border-color:var(--yellow);}
.badge-notch{
  position:absolute; top:0; right:0; width:22px; height:22px;
  background:var(--yellow);
  clip-path:polygon(100% 0, 0 0, 100% 100%);
}
.badge-icon{width:30px; height:30px; color:var(--yellow); margin-bottom:16px;}
.badge-card h3{margin-bottom:8px;}
.badge-card p{font-size:.88rem; margin:0;}
@media (max-width:980px){
  .badge-grid{grid-template-columns:repeat(2,1fr);}
}
@media (max-width:560px){
  .badge-grid{grid-template-columns:1fr;}
}

/* =========================================================
   ARMED GUARD FEATURE
   ========================================================= */
.armed-feature{
  margin-top:28px;
  display:grid; grid-template-columns:1.1fr 1fr; gap:0;
  border:1px solid var(--border); border-radius:8px; overflow:hidden;
  background:var(--card-bg);
}
.armed-feature-media{position:relative; min-height:374px;}
.armed-feature-media img{position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center 15%;}
.armed-feature-copy{padding:40px 44px; display:flex; flex-direction:column; justify-content:center;}
.armed-feature-copy h3{
  font-size:clamp(1.4rem,2.4vw,1.9rem); text-transform:none; margin-bottom:14px;
}
.armed-feature-copy p:last-child{margin-bottom:0; font-size:.96rem;}
@media (max-width:900px){
  .armed-feature{grid-template-columns:1fr;}
  .armed-feature-media{min-height:308px;}
  .armed-feature-copy{padding:28px 24px;}
}

/* =========================================================
   PERSONNEL CHIPS
   ========================================================= */
.chip-row{display:flex; flex-wrap:wrap; gap:12px; margin-top:32px;}
.chip{
  font-family:var(--font-mono); font-size:.82rem;
  border:1px solid var(--border); padding:10px 16px; border-radius:2px;
  color:var(--text-muted);
}

/* =========================================================
   LADY FORCE
   ========================================================= */
.lady-force{background:var(--bg-alt);}
.lady-gallery{
  margin-top:44px; display:grid; grid-template-columns:1fr 1fr; gap:20px;
}
.lady-photo{margin:0; position:relative; border-radius:8px; overflow:hidden; border:1px solid var(--border); min-height:320px;}
.lady-photo img{position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center 20%;}
.lady-photo figcaption{
  position:relative; z-index:1; height:100%;
  display:flex; flex-direction:column; justify-content:flex-end;
  padding:24px; background:linear-gradient(180deg, transparent 45%, rgba(0,0,0,.86) 100%);
}
.lady-photo h3, .lady-photo p{color:#fff;}
.lady-photo p{font-size:.86rem; max-width:320px; margin:0;}

.lady-points{
  margin-top:20px; display:grid; grid-template-columns:repeat(4,1fr); gap:20px;
}
.lady-point{
  border:1px solid var(--border); border-radius:6px; padding:24px 20px;
  background:var(--card-bg);
}
.lady-point-num{
  font-family:var(--font-mono); color:var(--yellow); font-size:.85rem; font-weight:600;
  display:block; margin-bottom:10px;
}
.lady-point h3{margin-bottom:8px; font-size:1rem;}
.lady-point p{font-size:.86rem; margin:0;}

@media (max-width:900px){
  .lady-gallery{grid-template-columns:1fr;}
  .lady-points{grid-template-columns:repeat(2,1fr);}
}
@media (max-width:560px){
  .lady-points{grid-template-columns:1fr;}
}

/* =========================================================
   STANDING ORDERS
   ========================================================= */
.standing-orders{background:var(--bg-alt);}
.so-grid{display:grid; grid-template-columns:.9fr 1.1fr; gap:56px; align-items:center;}
.so-image img{border-radius:8px; border:1px solid var(--border);}
.orders-list{margin-top:32px; display:flex; flex-direction:column; gap:22px;}
.orders-list li{display:flex; gap:18px; align-items:flex-start;}
.order-num{
  font-family:var(--font-mono); color:var(--yellow); font-weight:600; font-size:.95rem;
  flex-shrink:0; margin-top:2px;
}
.orders-list h3{margin-bottom:4px;}
.orders-list p{margin:0; font-size:.9rem;}
@media (max-width:840px){
  .so-grid{grid-template-columns:1fr; gap:32px;}
}

/* =========================================================
   TRAINING
   ========================================================= */
.training-grid{
  margin-top:40px; display:grid; grid-template-columns:1fr 1fr; gap:20px;
}
.training-card{
  position:relative; margin:0; border-radius:8px; overflow:hidden;
  border:1px solid var(--border);
  min-height:340px;
}
.training-card img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
}
.training-card figcaption{
  position:relative; z-index:1; height:100%;
  display:flex; flex-direction:column; justify-content:flex-end;
  padding:26px; background:linear-gradient(180deg, transparent 40%, rgba(0,0,0,.85) 100%);
}
.training-card h3, .training-card p{color:#fff;}
.training-card p{font-size:.88rem; max-width:340px; margin:0;}
@media (max-width:780px){
  .training-grid{grid-template-columns:1fr;}
}

/* =========================================================
   DEPLOYMENTS BAND
   ========================================================= */
.deployments{
  position:relative; min-height:70vh; display:flex; align-items:center;
  padding:96px 0;
}
.deploy-media{position:absolute; inset:0; z-index:0;}
.deploy-media img{width:100%; height:100%; object-fit:cover;}
.deploy-scrim{position:absolute; inset:0; background:linear-gradient(90deg, rgba(11,11,12,.92) 0%, rgba(11,11,12,.55) 55%, rgba(11,11,12,.25) 100%);}
.deploy-copy{position:relative; z-index:1; max-width:560px; margin-left:calc((100vw - var(--container))/2 + 24px); color:#F2F1EC;}
.deploy-copy h2{color:#fff;}
.deploy-copy p{color:#D7D6CE;}
@media (max-width:980px){
  .deploy-copy{margin-left:24px; margin-right:24px;}
}

/* =========================================================
   VISION / AIM
   ========================================================= */
.vision-grid{display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:start;}
.aim-list{display:flex; flex-direction:column; gap:16px;}
.aim-list li{
  padding:16px 18px; border:1px solid var(--border); border-radius:6px;
  font-size:.92rem; color:var(--text-muted); position:relative; padding-left:38px;
}
.aim-list li::before{
  content:''; position:absolute; left:16px; top:19px; width:8px; height:8px;
  background:var(--yellow); border-radius:1px;
}
@media (max-width:840px){
  .vision-grid{grid-template-columns:1fr; gap:32px;}
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact{background:var(--ink); color:#F2F1EC;}
.contact h2, .contact p{color:#F2F1EC;}
.contact-grid{margin-top:40px; display:grid; grid-template-columns:1fr 1fr; gap:32px;}
.contact-cards{display:flex; flex-direction:column; gap:14px;}
.office-card{
  border:1px solid rgba(242,215,22,0.18); border-radius:6px; padding:18px 20px;
  background:rgba(255,255,255,0.02);
}
.office-tag{
  font-family:var(--font-mono); font-size:.72rem; text-transform:uppercase; letter-spacing:.08em;
  color:var(--yellow); display:block; margin-bottom:8px;
}
.office-card p{margin:0; font-size:.9rem; color:#D7D6CE;}
.contact-direct{display:flex; flex-direction:column; gap:4px; margin-top:8px;}
.contact-line{
  display:flex; align-items:center; gap:12px; padding:12px 4px;
  border-bottom:1px solid rgba(255,255,255,0.08);
  color:#F2F1EC; font-weight:600; font-size:.92rem;
  transition:color .2s;
}
.contact-line svg{width:17px; height:17px; color:var(--yellow); flex-shrink:0;}
.contact-line:hover{color:var(--yellow);}
.map-frame{border-radius:8px; overflow:hidden; border:1px solid rgba(242,215,22,0.18); min-height:360px;}
.map-frame iframe{width:100%; height:100%; min-height:360px; border:0; filter:grayscale(.15) contrast(1.05);}
@media (max-width:840px){
  .contact-grid{grid-template-columns:1fr;}
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{background:var(--bg-alt); border-top:1px solid var(--border); padding:36px 0;}
.footer-inner{display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:16px;}
.footer-tagline{font-family:var(--font-display); text-transform:uppercase; letter-spacing:.08em; font-size:.85rem; color:var(--yellow); margin:0;}
.footer-copy{font-size:.78rem; color:var(--text-muted); margin:0;}

/* =========================================================
   MOBILE CALL FAB
   ========================================================= */
.mobile-call-fab{
  display:none; position:fixed; bottom:20px; right:20px; z-index:900;
  width:56px; height:56px; border-radius:50%;
  background:var(--yellow); color:#141400;
  align-items:center; justify-content:center;
  box-shadow:0 8px 24px rgba(0,0,0,.35);
}
.mobile-call-fab svg{width:24px; height:24px;}
@media (max-width:720px){
  .mobile-call-fab{display:flex;}
  .nav-actions .btn-call--nav{display:none;}
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal{opacity:0; transform:translateY(24px); transition:opacity .7s var(--ease), transform .7s var(--ease);}
.reveal.is-visible{opacity:1; transform:translateY(0);}
