/* ═══════════════════════════════════════════════════════════
   REPFORCE ONE — Shared Stylesheet
   Brand: Dark Forest Green · Black · Bronze/Gold · Cream
═══════════════════════════════════════════════════════════ */

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

:root {
  --bg:       #0C1510;
  --bg2:      #121E16;
  --bg3:      #192519;
  --bg4:      #1E2D1E;
  --gold:     #C4952A;
  --gold-lt:  #D8B870;
  --gold-dk:  #8A6618;
  --cream:    #EDE4D0;
  --white:    #FFFFFF;
  --muted:    #6E8A74;
  --border:   rgba(196,149,42,0.22);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
}

/* ── UTILITIES ──────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }

.eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(38px, 4.5vw, 60px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.97;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.section-sub {
  font-size: 17px;
  color: var(--cream);
  opacity: 0.72;
  line-height: 1.68;
  max-width: 520px;
}
.gold { color: var(--gold); }

.btn {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 2px;
  transition: all 0.22s;
  cursor: pointer;
  border: none;
}
.btn-gold  { background: var(--gold); color: var(--bg); }
.btn-gold:hover { background: var(--gold-lt); }
.btn-outline { border: 1.5px solid var(--gold); color: var(--gold); background: transparent; }
.btn-outline:hover { background: var(--gold); color: var(--bg); }
.btn-dark { background: var(--bg); color: var(--gold); }
.btn-dark:hover { background: var(--bg2); }

/* Diagonal brand lines */
.diag-line {
  position: absolute;
  top: -10%;
  width: 1px;
  height: 120%;
  background: linear-gradient(to bottom,
    transparent 0%, var(--gold-dk) 25%,
    var(--gold) 50%, var(--gold-dk) 75%, transparent 100%);
  transform: rotate(14deg);
  pointer-events: none;
}
.diag-line-1 { right: 22%; opacity: 0.5; }
.diag-line-2 { right: 25.5%; opacity: 0.2; width: 1.5px; }
.diag-line-3 { right: 18%; opacity: 0.1; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── NAV ────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 18px 0;
  transition: background 0.35s, padding 0.35s, border-bottom 0.35s;
}
nav.scrolled, nav.solid {
  background: rgba(10,18,13,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.nav-logo img { height: 44px; width: auto; display: block; }
.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.68);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--bg) !important;
  padding: 9px 22px;
  border-radius: 2px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold-lt) !important; color: var(--bg) !important; }

/* Mobile nav toggle */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ── PAGE HERO (inner pages) ────────────────────────────── */
.page-hero {
  padding: 160px 0 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(48px, 6vw, 78px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.page-hero p {
  font-size: 18px;
  color: var(--cream);
  opacity: 0.75;
  max-width: 560px;
  line-height: 1.65;
}

/* ── SECTIONS ────────────────────────────────────────────── */
section { padding: 90px 0; }

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 64px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 220px 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 52px;
}
.footer-logo img { height: 42px; width: auto; display: block; }
.footer-tagline {
  font-size: 13px;
  color: var(--muted);
  margin-top: 14px;
  line-height: 1.65;
}
.footer-col-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 11px; }
.footer-links a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ── CTA BAND ────────────────────────────────────────────── */
.cta-band {
  background: var(--gold);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 60%);
}
.cta-band h2 {
  position: relative;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--bg);
  margin-bottom: 14px;
  line-height: 1.0;
}
.cta-band p {
  position: relative;
  font-size: 16px;
  color: rgba(12,21,16,0.65);
  margin-bottom: 36px;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(10,18,13,0.98);
    padding: 32px 24px;
    gap: 20px;
    border-top: 1px solid var(--border);
    z-index: 199;
  }
  .nav-burger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
