/* ==========================================================================
   02-typography.css — Type Scale & Prose Utilities
   ========================================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--rentl-color-heading);
  line-height: var(--rentl-line-height-heading);
  text-wrap: balance;
}

h1 {
  font-size: var(--rentl-font-size-4xl);
  line-height: var(--rentl-line-height-tight);
}

h2 {
  font-size: var(--rentl-font-size-3xl);
}

h3 {
  font-size: var(--rentl-font-size-2xl);
}

h4 {
  font-size: var(--rentl-font-size-xl);
}

h5 {
  font-size: var(--rentl-font-size-lg);
}

h6 {
  font-size: var(--rentl-font-size-md);
}

p {
  margin-bottom: var(--rentl-space-4);
}

p:last-child {
  margin-bottom: 0;
}

/* Eyebrow label */
.rentl-eyebrow {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: var(--rentl-font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rentl-orange);
  display: block;
}

/* Lead / lede paragraph */
.rentl-lede {
  font-size: var(--rentl-font-size-md);
  line-height: 1.7;
  color: var(--rentl-color-text-muted);
}

/* Muted text */
.rentl-text-muted {
  color: var(--rentl-color-text-muted);
}

/* Price display */
.rentl-price {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--rentl-font-size-lg);
  color: var(--rentl-orange);
}

/* Responsive type scale */
@media (max-width: 639px) {
  h1 {
    font-size: var(--rentl-font-size-3xl);
  }

  h2 {
    font-size: var(--rentl-font-size-2xl);
  }

  h3 {
    font-size: var(--rentl-font-size-xl);
  }
}
