/* ============================= */
/* BLACK ORCHID ELITE v5 STABLE  */
/* ============================= */

:root{
  --black:#0b0b0c;
  --charcoal:#151515;
  --gold:#d4af37;
  --gold-dark:#b8941f;
  --light:#f7f7f7;
  --muted:#666;
  --border:rgba(0,0,0,.08);
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  color:var(--black);
  background:#fff;
  min-height:100vh;
  display:flex;
  flex-direction:column;
}

/* ===== NAV ===== */

header{
  position:fixed;
  top:0;left:0;width:100%;
  background:rgba(11,11,12,.98);
  border-bottom:1px solid rgba(212,175,55,.35);
  z-index:1000;
}

.nav-wrap{
  max-width:1200px;
  width:92%;
  margin:0 auto;
  padding:14px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}

.logo img{
  height:34px;
  width:auto;
}

.logo span{
  color:var(--gold);
  font-weight:800;
  letter-spacing:1px;
  font-size:.95rem;
}

.nav{
  flex:1;
  display:flex;
  justify-content:center;
}

.nav-links{
  display:flex;
  list-style:none;
  gap:28px;
  align-items:center;
}

.nav-links a{
  color:rgba(255,255,255,.9);
  text-decoration:none;
  font-size:.78rem;
  letter-spacing:1.3px;
  text-transform:uppercase;
  position:relative;
}

.nav-links a:hover{color:var(--gold)}

.nav-links a.is-active{
  color:var(--gold);
}

.cta-link{
  background:var(--gold);
  color:#000 !important;
  padding:8px 14px;
  border-radius:8px;
  font-weight:700;
}

/* ===== HERO ===== */

.hero{
  margin-top:84px;
  padding:100px 0 80px;
  text-align:center;
  background:linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.75)),
  url("../images/hero-patriotic.webp.png");
  background-size:cover;
  background-position:center;
  color:#fff;
}

.hero h1{
  font-weight:300;
  font-size:2.8rem;
  margin-bottom:12px;
}

.hero p{
  max-width:760px;
  margin:0 auto 20px;
  color:rgba(255,255,255,.85);
}

/* ===== SECTION ===== */

.section{
  padding:90px 0;
}

.section-inner{
  max-width:1100px;
  width:92%;
  margin:0 auto;
}

.section-title{
  font-size:2rem;
  font-weight:300;
  margin-bottom:14px;
}

.section-lead{
  color:var(--muted);
  margin-bottom:40px;
}

/* ===== INTELLIGENCE CARDS ===== */

.intel-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:28px;
}

.intel-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:14px;
  overflow:hidden;
  transition:all .3s ease;
}

.intel-card:hover{
  transform:translateY(-6px);
  box-shadow:0 30px 70px rgba(0,0,0,.12);
}

.intel-thumb{
  width:100%;
  height:220px;
  object-fit:cover;
}

.intel-body{padding:20px}

.intel-title{
  font-size:1.2rem;
  margin-bottom:10px;
  font-weight:700;
}

.intel-excerpt{
  color:var(--muted);
  margin-bottom:16px;
}

.intel-link{
  color:var(--gold-dark);
  font-weight:800;
  text-decoration:none;
}

/* ===== CASE STUDIES ===== */

.case-grid{
  display:grid;
  gap:36px;
}

.case-card{
  background:var(--light);
  padding:40px;
  border-radius:16px;
  border:1px solid var(--border);
  transition:.3s ease;
}

.case-card:hover{
  box-shadow:0 25px 60px rgba(0,0,0,.08);
}

.case-title{
  font-size:1.4rem;
  margin-bottom:14px;
  font-weight:700;
}

.case-narrative{
  color:#333; /* lighter readable */
  line-height:1.7;
}

/* ===== LEGAL ===== */

.legal-article{
  background:#fff;
  padding:40px;
  border-radius:16px;
  border:1px solid var(--border);
}

.legal-article h2{
  margin-top:24px;
  margin-bottom:10px;
}

/* ===== FOOTER ===== */

footer{
  margin-top:auto;
  background:#000;
  color:#fff;
  padding:40px 0;
  text-align:center;
}
