/* ============================================================
   SEIFERT DYNAMICS — Base / Typography
   ============================================================ */

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 300;
  line-height: var(--lh-body);
  color: var(--text-primary);
  background-color: var(--bg-void);
}

/* ── Heading Utility Classes ─────────────────────────────── */

.display-1 {
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 8vw, var(--fs-7xl));
  font-weight: 700;
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--text-bright);
}

.display-2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, var(--fs-6xl));
  font-weight: 600;
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-snug);
  color: var(--text-bright);
}

.heading-1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, var(--fs-5xl));
  font-weight: 600;
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-snug);
  color: var(--text-bright);
}

.heading-2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, var(--fs-4xl));
  font-weight: 600;
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-normal);
  color: var(--text-bright);
}

.heading-3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.8vw, var(--fs-3xl));
  font-weight: 600;
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-normal);
  color: var(--text-bright);
}

.heading-4 {
  font-family: var(--font-body);
  font-size: var(--fs-xl);
  font-weight: 500;
  line-height: var(--lh-heading);
  letter-spacing: 0;
  color: var(--text-bright);
}

/* ── Body Text Classes ───────────────────────────────────── */

.body-lg {
  font-size: var(--fs-lg);
  font-weight: 300;
  line-height: var(--lh-body);
  color: var(--text-primary);
}

.body-base {
  font-size: var(--fs-base);
  font-weight: 300;
  line-height: var(--lh-body);
  color: var(--text-primary);
}

.body-sm {
  font-size: var(--fs-sm);
  font-weight: 400;
  line-height: var(--lh-body);
  color: var(--text-secondary);
}

/* ── Label / Eyebrow Classes ─────────────────────────────── */

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--text-muted);
}

.eyebrow--accent {
  color: var(--accent);
}

.label {
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* ── On-light variants ───────────────────────────────────── */

.on-light .display-1,
.on-light .display-2,
.on-light .heading-1,
.on-light .heading-2,
.on-light .heading-3,
.on-light .heading-4 {
  color: var(--text-dark);
}

.on-light .body-lg,
.on-light .body-base {
  color: var(--text-dark-mid);
}

.on-light .body-sm {
  color: var(--text-dark-soft);
}

.on-light .eyebrow {
  color: var(--text-dark-soft);
}

/* ── Utility ─────────────────────────────────────────────── */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.text-center { text-align: center; }
.text-left   { text-align: left; }

/* ── Horizontal Rule ─────────────────────────────────────── */

hr.divider {
  border: none;
  border-top: 1px solid var(--border-mid);
  margin: 0;
}

hr.divider--light {
  border-top-color: var(--border-light);
}
