/* ============================================
   SHIELDED TRAINING SOLUTIONS
   shieldedtrainingsolutions.com
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Barlow+Condensed:wght@500;600;700&display=swap');

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-primary:    #0b1622;
  --bg-secondary:  #111f30;
  --bg-card:       #162033;
  --gold:          #c8a84b;
  --gold-light:    #dfc06a;
  --white:         #ffffff;
  --text-body:     #b8ccd8;
  --text-muted:    #6e8a9a;
  --border:        #1e3350;
  --nav-height:    72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-body);
  line-height: 1.7;
  font-size: 16px;
}

h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', sans-serif;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.15;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; }

p { margin-bottom: 1rem; color: var(--text-body); }
p:last-child { margin-bottom: 0; }

a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }

img { max-width: 100%; display: block; }

/* === LAYOUT === */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* === NAV === */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(11, 22, 34, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-logo span { color: var(--gold); }

.nav-logo-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.footer-logo-wrap {
  display: block;
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 52px;
  width: auto;
  display: block;
}

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

.nav-links a {
  color: var(--text-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: var(--bg-primary) !important;
  padding: 10px 24px;
  border-radius: 3px;
  font-weight: 600 !important;
  line-height: 1;
}

.nav-cta:hover { background: var(--gold-light); color: var(--bg-primary) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--bg-primary);
}

.btn-gold:hover {
  background: var(--gold-light);
  color: var(--bg-primary);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* === HERO === */
.hero {
  padding-top: calc(var(--nav-height) + 96px);
  padding-bottom: 96px;
  background:
    linear-gradient(to bottom, rgba(11,22,34,0.6) 0%, rgba(11,22,34,0.92) 100%),
    url('../images/hero-bg.jpg') center/cover no-repeat;
  min-height: 88vh;
  display: flex;
  align-items: center;
}

.hero-content { max-width: 780px; }

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 24px;
}

.hero h1 { margin-bottom: 24px; }

.hero p.lead {
  font-size: 1.15rem;
  color: var(--text-body);
  max-width: 620px;
  line-height: 1.75;
}

/* === VALUE BLOCKS === */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 80px;
}

.value-block {
  background: var(--bg-secondary);
  padding: 40px 36px;
}

.value-block h3 { font-size: 1.3rem; margin-bottom: 12px; }

/* === SECTION LABELS === */
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title { margin-bottom: 20px; }
.section-intro { max-width: 680px; font-size: 1.05rem; margin-bottom: 56px; }

/* === CLIENT STRIP === */
.client-strip {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}

.client-strip-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.client-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  align-items: center;
}

.client-list span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-body);
  letter-spacing: 0.04em;
}

/* === PROGRAM TILES === */
.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}

.program-tile {
  background: var(--bg-card);
  padding: 36px 32px;
  transition: background 0.2s;
  display: flex;
  flex-direction: column;
}

.program-tile:hover { background: var(--bg-secondary); }

.program-tile h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.program-tile p { font-size: 0.92rem; flex: 1; }

.program-tile .wcb-badge {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 3px 10px;
  border-radius: 2px;
  width: fit-content;
}

.program-tile a.tile-link {
  margin-top: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* === INDIGENOUS BADGE === */
.indigenous-bar {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.indigenous-bar .ib-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}

.indigenous-bar p { margin: 0; font-size: 0.95rem; }

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

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
}

.team-photo {
  width: 100%;
  height: 280px;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-photo img { width: 100%; height: 100%; object-fit: cover; }

.team-info { padding: 28px 28px 32px; }
.team-info h3 { font-size: 1.3rem; margin-bottom: 4px; }
.team-info .team-title { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.team-info p { font-size: 0.9rem; }

/* === APPROACH BLOCK === */
.approach-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.approach-quote {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
  border-left: 4px solid var(--gold);
  padding-left: 28px;
}

/* === PROCUREMENT === */
.procurement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.proc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 36px;
}

.proc-card h3 { font-size: 1.2rem; margin-bottom: 16px; }

/* === CONTACT FORM === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  border-radius: 3px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group select option { background: var(--bg-card); }
.form-group textarea { resize: vertical; min-height: 120px; }

.contact-info h3 { font-size: 1.4rem; margin-bottom: 24px; }

.contact-detail {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.contact-detail:last-child { border-bottom: none; }
.contact-detail .cd-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-detail p { margin: 0; color: var(--white); }

/* === FOOTER === */
footer {
  background: #070f18;
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo { font-size: 1.1rem; margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 0.88rem; max-width: 280px; }

.footer-links h4 { font-size: 0.75rem; margin-bottom: 16px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--text-body); font-size: 0.88rem; }
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); margin: 0; }

.indigenous-footer-badge {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 4px 12px;
  border-radius: 2px;
  letter-spacing: 0.06em;
}

/* === TESTIMONIALS === */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-quote {
  font-size: 0.97rem;
  line-height: 1.75;
  color: var(--text-body);
  font-style: italic;
  margin-bottom: 28px;
}

.testimonial-quote::before { content: '\201C'; color: var(--gold); font-size: 1.4rem; line-height: 0; vertical-align: -0.3em; margin-right: 2px; }

.testimonial-attr { border-top: 1px solid var(--border); padding-top: 20px; }

.testimonial-name {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.testimonial-org {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

@media (max-width: 900px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* === DIVIDER === */
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* === DARK SECTION === */
.section-dark { background: var(--bg-secondary); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .value-grid { grid-template-columns: 1fr; }
  .program-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .approach-block { grid-template-columns: 1fr; gap: 40px; }
  .procurement-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: var(--nav-height); left: 0; right: 0; background: var(--bg-primary); border-bottom: 1px solid var(--border); padding: 24px; gap: 20px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .program-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .indigenous-bar { flex-direction: column; gap: 16px; }
  .btn-group { flex-direction: column; }
  .btn { width: 100%; text-align: center; }
}
