:root {
  --gold:         #c9993a;
  --gold-light:   #f0c96a;
  --gold-bg:      #fdf8ef;
  --dark:         #1a1a1a;
  --navy:         #1b2340;
  --navy-light:   #243056;
  --text:         #3a3a3a;
  --muted:        #888;
  --border:       #e8e2d6;
  --font-display: 'Playfair Display', serif;
  --font-body:    'Inter', sans-serif;
}

* { box-sizing: border-box; }
body { font-family: var(--font-body); color: var(--text); background: #fff; margin: 0; }

/* ── SHARED: pill + heading ─────────────── */
.mga-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #111828 0%, var(--navy) 50%, #2d3a66 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-family: var(--font-body);
  padding: 12px 26px;
  border-radius: 100px;
  margin-bottom: 16px;
  box-shadow: 0 4px 18px rgba(27,35,64,0.28);
}

.mga-pill svg {
  width: 12px;
  height: 12px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mga-section-heading {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 0;
}

.mga-section-heading strong {
  color: var(--gold);
}