/* =============================================
   TYPOGRAPHY
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* === HEADING STYLES === */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

h1 { font-size: var(--text-hero); letter-spacing: -0.5px; }
h2 { font-size: var(--text-5xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }

/* === SECTION TYPOGRAPHY === */
.section-label {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: var(--sp-2);
  display: block;
}

.section-headline {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-5xl);
  line-height: 1.2;
  margin-bottom: var(--sp-2);
}

.section-sub {
  font-family: var(--font-body);
  font-style: normal;
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: var(--sp-5);
  max-width: 620px;
}

.section-sub.centered {
  margin-left: auto;
  margin-right: auto;
}

/* === UI TEXT === */
.ui-text {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.body-text {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--text-body);
}
