/* ===== LAPTOP REPAIR IN NYC — FONTS ===== */

/* Google Fonts: Sora (headings) + DM Sans (body) + JetBrains Mono (code) */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=JetBrains+Mono:wght@400;500&display=swap');

/* ─── FONT UTILITY CLASSES ─── */
.font-head { font-family: 'Sora', 'Segoe UI', sans-serif; }
.font-body { font-family: 'DM Sans', 'Segoe UI', sans-serif; }
.font-mono { font-family: 'JetBrains Mono', monospace; }

.fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }

.fs-sm   { font-size: 0.82rem; }
.fs-base { font-size: 0.95rem; }
.fs-md   { font-size: 1.05rem; }
.fs-lg   { font-size: 1.2rem; }
.fs-xl   { font-size: 1.5rem; }

.lh-tight  { line-height: 1.2; }
.lh-normal { line-height: 1.5; }
.lh-relaxed { line-height: 1.7; }
.lh-loose  { line-height: 1.85; }

.ls-tight  { letter-spacing: -0.02em; }
.ls-normal { letter-spacing: 0; }
.ls-wide   { letter-spacing: 0.05em; }
.ls-wider  { letter-spacing: 0.1em; }
.ls-widest { letter-spacing: 0.15em; }

/* ─── HEADING VARIANTS ─── */
.display-heading {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.section-heading {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.eyebrow-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.body-lead {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.75;
  font-weight: 400;
}

.caption-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--text-muted);
}

/* ─── ARTICLE TYPOGRAPHY ─── */
.article-content {
  font-family: 'DM Sans', 'Segoe UI', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-800);
}
.article-content h2 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 2rem 0 0.75rem;
  color: var(--navy);
}
.article-content h3 {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  margin: 1.5rem 0 0.6rem;
  color: var(--navy);
}
.article-content p { margin-bottom: 1.1rem; }
.article-content blockquote {
  border-left: 4px solid var(--steel);
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  background: rgba(44,110,147,0.05);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--navy);
}
