/* =============================================
   TYPOGRAPHY SYSTEM
============================================= */
/* 🅰️ Display Titles: large, impactful headers */
.type-display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 4.5vw, 76px);
  line-height: 1.15;
  color: var(--ink);
}

/* 🅱️ Section Titles: medium-large, elegant */
.type-section {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.25;
  color: var(--ink);
}

/* 🅲 Lead Details: subtitle or intro text */
.type-lead {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 20px;
  line-height: 1.8;
  color: var(--ink-75);
}

/* 🅳 Body Paragraphs: standard reading text */
.type-body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-60);
}

/* 🅴 Micro Labels: UI text, tiny headings */
.type-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-35);
}
