:root {
  --black: #050505;
  --ink: #121212;
  --charcoal: #1b1c1e;
  --steel: #64686d;
  --line: #d8d9da;
  --fog: #f1f2f2;
  --paper: #f4f3ef;
  --white: #ffffff;
  --red: #c8102e;
  --red-deep: #971027;
  --font: "Montserrat", "Arial Narrow", Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--white); color: var(--ink); font-family: var(--font); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
h1, h2, h3, h4, p { margin-top: 0; }
button, summary { font: inherit; }

.skip-link { position: absolute; left: -9999px; top: 10px; z-index: 9999; background: var(--white); color: var(--black); padding: 10px 14px; }
.skip-link:focus { left: 10px; }

.shell { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }

/* ---- real site chrome (matches every other rebuilt page) ---- */
.utility-bar { background: var(--black); color: rgba(255,255,255,.68); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.utility-inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; }
.utility-inner a { color: #fff; }

.site-header { background: var(--black); border-bottom: 1px solid rgba(255,255,255,.08); position: sticky; top: 0; z-index: 50; }
.header-inner { min-height: 84px; display: flex; align-items: center; gap: 30px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 176px; height: auto; object-fit: contain; }
.desktop-nav { margin-left: auto; display: flex; align-items: stretch; align-self: stretch; gap: 16px; }
.desktop-nav a { text-decoration: none; color: #dfe1e4; font-size: 10.5px; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; display: flex; align-items: center; white-space: nowrap; }
.desktop-nav a:hover, .desktop-nav a:focus-visible { color: var(--red); }
.desktop-nav a.current { color: var(--red); }
.header-cta { background: var(--red); color: #fff; font-size: 10px; font-weight: 800; letter-spacing: .08em; padding: 15px 18px; text-transform: uppercase; }
.header-cta:hover, .header-cta:focus-visible { background: var(--red-deep); }
.mobile-nav { display: none; margin-left: auto; position: relative; }
.mobile-nav summary { cursor: pointer; font-weight: 700; list-style: none; color: #dfe1e4; font-size: 11px; letter-spacing: .04em; text-transform: uppercase; }
.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-nav-panel { position: absolute; top: 52px; right: 0; min-width: 240px; padding: 14px; background: var(--white); box-shadow: 0 20px 60px rgba(5,5,5,.16); border: 1px solid var(--line); z-index: 60; }
.mobile-nav-panel { max-height: 80vh; overflow-y: auto; }
.mobile-nav-panel a { display: block; padding: 10px 8px; text-decoration: none; font-weight: 600; color: var(--ink); font-size: 13px; }
.mobile-nav-panel a:hover, .mobile-nav-panel a:focus-visible { color: var(--red); }
.mobile-nav-panel a.current { color: var(--red); }
.mobile-nav-panel a.mobile-nav-sub { padding: 7px 8px 7px 20px; font-size: 12px; font-weight: 500; color: var(--steel); border-left: 2px solid var(--line); margin-left: 8px; }
.mobile-nav-panel a.mobile-nav-sub:hover, .mobile-nav-panel a.mobile-nav-sub:focus-visible { color: var(--red); }

/* dropdown (Services) */
.has-dropdown { position: relative; display: flex; align-items: center; align-self: stretch; }
.has-dropdown > a { display: flex; align-items: center; height: 100%; }
.has-dropdown > a::after { content: "\25BE"; margin-left: 5px; font-size: 9px; position: relative; top: -1px; }
.nav-dropdown { position: absolute; top: 100%; left: 0; min-width: 268px; margin: 0; padding: 8px 0; list-style: none; background: var(--black); border: 1px solid rgba(255,255,255,.12); border-top: 2px solid var(--red); opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .15s ease, transform .15s ease, visibility .15s; max-height: 70vh; overflow-y: auto; }
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown li { margin: 0; }
.nav-dropdown a { display: block; padding: 11px 18px; font-size: 11px; white-space: nowrap; color: #dfe1e4; }
.nav-dropdown a:hover, .nav-dropdown a:focus-visible { background: rgba(255,255,255,.06); color: var(--red); }
.nav-dropdown a.current { color: var(--red); }
.nav-new-tag { display: inline-block; margin-left: 8px; padding: 2px 6px; background: var(--red); color: #fff; font-size: 8.5px; font-weight: 800; letter-spacing: .06em; border-radius: 2px; vertical-align: middle; }

.breadcrumb-bar { background: var(--fog); border-bottom: 1px solid var(--line); }
.breadcrumb-bar .shell { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; min-height: 46px; }
.breadcrumb { font-size: 12px; color: var(--steel); }
.breadcrumb a { color: var(--steel); text-decoration: none; }
.breadcrumb a:hover, .breadcrumb a:focus-visible { color: var(--red); }
.concept-badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px; background: var(--charcoal); color: #fff; font-size: 9.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; border-radius: 3px; }
.concept-badge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--red); }

.site-footer { background: var(--black); border-top: 1px solid rgba(255,255,255,.1); color: #fff; padding: 34px 0; }
.footer-inner { align-items: center; display: grid; gap: 40px; grid-template-columns: auto 1fr auto; }
.footer-inner img { width: 150px; height: auto; }
.footer-inner p { color: rgba(255,255,255,.46); font-size: 10px; margin: 0; }
.footer-inner > span { color: rgba(255,255,255,.32); font-size: 8px; }
.section { padding: 64px 0; }
.section-fog { background: var(--fog); }

/* ---- page-specific: Ballistic Repair hub ---- */
.page-kicker { color: var(--red); font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 14px; }
.eyebrow-red { color: var(--red-deep); font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 10px; }

.br-hero { position: relative; min-height: 440px; display: flex; align-items: center; overflow: hidden; padding: 0; }
.br-hero-media { position: absolute; inset: 0; }
.br-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.br-hero-shade { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(5,5,5,.93) 32%, rgba(5,5,5,.5) 100%); }
.br-hero-inner { position: relative; color: #fff; padding: 68px 0; }
.br-hero h1 { font-size: clamp(32px, 4vw, 50px); line-height: 1.05; letter-spacing: -.02em; font-weight: 900; max-width: 700px; margin-bottom: 18px; }
.br-hero .page-hero-lead { max-width: 640px; font-size: 16.5px; line-height: 1.65; color: rgba(255,255,255,.86); }

.br-copy { max-width: 780px; margin: 0 auto; }
.br-copy h2 { font-size: 24px; font-weight: 900; line-height: 1.25; margin-bottom: 16px; }
.br-copy > p { font-size: 14.5px; line-height: 1.7; color: var(--steel); margin: 0 0 16px; }

.br-ref-card { background: var(--fog); border-left: 4px solid var(--red); border-radius: 4px; padding: 26px 28px; margin-top: 28px; }
.br-ref-card h3 { font-size: 14px; font-weight: 800; margin-bottom: 8px; line-height: 1.4; }
.br-ref-card > p { font-size: 13px; color: var(--steel); margin: 0 0 12px; font-weight: 700; }
.br-contract-list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.br-contract-list li { font-family: monospace; font-size: 12.5px; font-weight: 700; background: var(--white); border: 1px solid var(--line); border-radius: 3px; padding: 6px 10px; color: var(--red-deep); }

.br-why-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: center; }
.br-why-grid h2 { font-size: 22px; font-weight: 900; margin-bottom: 18px; }
.br-why-media { border-radius: 4px; overflow: hidden; }
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.check-list li { position: relative; padding-left: 30px; font-size: 14px; line-height: 1.6; color: var(--steel); }
.check-list li::before { content: "\2713"; position: absolute; left: 0; top: 0; color: var(--red); font-weight: 900; }

.br-video-card { max-width: 820px; margin: 0 auto; text-align: center; background: var(--charcoal); color: #fff; border-radius: 6px; padding: 48px 44px; }
.br-video-card .eyebrow-red { color: #ff8a9c; }
.br-video-card h2 { font-size: 24px; font-weight: 900; margin-bottom: 14px; }
.br-video-card p { font-size: 14.5px; line-height: 1.7; color: rgba(255,255,255,.78); max-width: 620px; margin: 0 auto 24px; }

.br-kits-lead { max-width: 700px; font-size: 15px; line-height: 1.65; color: var(--steel); margin-bottom: 32px; }
.br-kit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 28px; }
.br-kit-card { background: var(--white); border: 1px solid var(--line); border-radius: 4px; padding: 26px; }
.br-kit-card h3 { font-size: 16px; font-weight: 800; margin-bottom: 10px; }
.br-kit-card p { font-size: 13.5px; line-height: 1.6; color: var(--steel); margin: 0; }
.br-kits-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 24px; }
.br-kits-footer p { font-size: 13.5px; color: var(--steel); margin: 0; max-width: 360px; }
.br-kits-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-primary { display: inline-flex; align-items: center; background: var(--red); color: #fff; font-weight: 800; font-size: 12.5px; letter-spacing: .04em; text-transform: uppercase; padding: 14px 24px; border-radius: 2px; }
.btn-primary:hover, .btn-primary:focus-visible { background: var(--red-deep); }
.btn-outline { display: inline-flex; align-items: center; background: transparent; color: var(--ink); font-weight: 800; font-size: 12.5px; letter-spacing: .04em; text-transform: uppercase; padding: 13px 22px; border-radius: 2px; border: 1.5px solid var(--ink); }
.btn-outline:hover, .btn-outline:focus-visible { border-color: var(--red); color: var(--red); }
.br-video-card .btn-outline { border-color: rgba(255,255,255,.5); color: #fff; }
.br-video-card .btn-outline:hover, .br-video-card .btn-outline:focus-visible { border-color: var(--red); color: var(--red); }

.about-section-head { max-width: 700px; margin: 0 auto 32px; text-align: center; }
.home-eyebrow { color: var(--red); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 10px; }
.about-section-head h2 { font-size: 24px; font-weight: 900; }

.br-cluster-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.br-cluster-card { display: block; background: var(--white); border: 1px solid var(--line); border-radius: 4px; padding: 26px; transition: border-color .15s ease, transform .15s ease; }
.br-cluster-card:hover, .br-cluster-card:focus-visible { border-color: var(--red); transform: translateY(-2px); }
.br-cluster-tag { display: inline-block; margin-bottom: 12px; padding: 3px 9px; background: var(--fog); color: var(--red-deep); font-size: 9.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; border-radius: 2px; }
.br-cluster-card h3 { font-size: 15px; font-weight: 800; line-height: 1.35; margin-bottom: 8px; color: var(--ink); }
.br-cluster-card p { font-size: 13px; line-height: 1.6; color: var(--steel); margin: 0; }

.final-cta { background: var(--black); color: #fff; padding: 64px 0; border-top: 8px solid var(--red); text-align: center; }
.final-cta h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 900; margin-bottom: 14px; }
.final-cta p { color: rgba(255,255,255,.7); max-width: 620px; margin: 0 auto 26px; font-size: 15px; }
.final-btn { display: inline-flex; background: var(--red); color: #fff; font-weight: 800; font-size: 13px; letter-spacing: .03em; padding: 16px 30px; border-radius: 2px; }
.final-btn:hover { background: var(--red-deep); }

@media (max-width: 900px) {
  .br-why-grid { grid-template-columns: 1fr; }
  .br-why-media { order: -1; }
  .br-kit-grid { grid-template-columns: 1fr; }
  .br-cluster-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .br-kits-footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 1080px) {
  .desktop-nav { display: none; }
  .mobile-nav { display: block; }
}
@media (max-width: 640px) {
  .header-cta { display: none; }
  .brand img { width: 130px; }
  .footer-inner { grid-template-columns: 1fr; gap: 14px; text-align: center; }
  .footer-inner img { margin: 0 auto; }
}

.reg-mark { font-size: .58em; vertical-align: super; line-height: 0; }

.video-embed { position: relative; padding-top: 56.25%; height: 0; overflow: hidden; border-radius: 4px; background: #111; }
.video-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
