/* ── CORE Firearms Academy — Brand Design System ── */

:root {
  /* Brand colors (exact per guidelines) */
  --green:       #004225;
  --green-dark:  #002e18;
  --green-mid:   #003820;
  --green-light: #005530;
  --gold:        #C9A227;
  --gold-h:      #dbb52e;
  --white:       #ffffff;
  --cream:       #f5f2eb;

  /* Text */
  --text-dark:   #1a2e1a;
  --text-mid:    #4a6650;
  --text-light:  rgba(255,255,255,.88);
  --text-muted:  rgba(255,255,255,.55);

  /* Borders */
  --border-l:    #d8d3c8;
  --border-g:    #1a4a30;

  /* Layout */
  --nav-h:       72px;
  --section-pad: 96px 5%;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  line-height: 1.2;
  color: var(--text-dark);
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-dark);
}

/* Shared heading style */
.sh {
  font-family: 'Merriweather', serif;
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
}
.sh em  { font-style: italic; color: var(--gold); }
.sh.w   { color: #fff; }
.sh.w em { color: var(--gold); }

/* Shared paragraph style */
.sp {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-mid);
  max-width: 520px;
}
.sp.l { color: var(--text-light); }

/* Pill section label */
.pill-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.pill-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

/* Section header block */
.sec-hdr { margin-bottom: 56px; }
.sec-hdr.center { text-align: center; }
.sec-hdr.center .pill-label { justify-content: center; }
.sec-hdr.center .sp         { margin: 0 auto; }
