/* ============================================================
   fp-fonts.css — Fluke Promotions Typography System
   ============================================================ */

/* Noto Sans loaded via Google Fonts link in HTML */

/* ── Heading Scale ──────────────────────── */
.fp-display-xl {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}
.fp-display-lg {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.fp-display-md {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

/* ── Body Copy ──────────────────────────── */
.fp-body-lg {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--fp-gray-light);
}
.fp-body-md {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--fp-gray-light);
}
.fp-body-sm {
  font-size: 0.825rem;
  line-height: 1.65;
  color: var(--fp-gray);
}

/* ── Utility text styles ────────────────── */
.fp-caps-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fp-gold);
}
.fp-overline {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fp-gray);
  margin-bottom: 8px;
  display: block;
}
.fp-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fp-gold);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.fp-eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: currentColor;
}

/* ── Article Typography ─────────────────── */
.fp-article-body {
  font-size: 1.025rem;
  line-height: 1.85;
  color: var(--fp-gray-light);
  padding: 10px;
}
.fp-article-body h2 {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--fp-white);
  margin-top: 48px;
  margin-bottom: 16px;
}


.fp-article-body h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--fp-white);
  margin-top: 36px;
  margin-bottom: 12px;
}
.fp-article-body p { margin-bottom: 20px; }
.fp-article-body ul, .fp-article-body ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.fp-article-body li {
  margin-bottom: 8px;
  color: var(--fp-gray-light);
}
.fp-article-body strong { color: var(--fp-white); }
.fp-article-body a { color: var(--fp-gold); border-bottom: 1px solid rgba(255,194,14,0.3); }
.fp-article-body a:hover { color: var(--fp-gold-light); border-color: var(--fp-gold-light); }

/* ── Number / Data Typography ───────────── */
.fp-data-number {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--fp-gold);
}
.fp-data-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fp-gray);
  margin-top: 6px;
}

/* ── Mono / Technical ───────────────────── */
.fp-mono {
  font-family: 'Courier New', monospace;
  font-size: 0.85em;
  background: rgba(255,194,14,0.1);
  border: 1px solid rgba(255,194,14,0.2);
  border-radius: 4px;
  padding: 2px 6px;
  color: var(--fp-gold);
}
