/* =========================================================================
   TYPOGRAPHY
   Fluid typography scale and heading styles
   ========================================================================= */

/* Hero Heading (Fluid) */
.heading-hero {
  font-size: clamp(2rem, 5vw + 1rem, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em; /* Ensure this is updated with Figma's exact value */
  font-weight: 700;
  margin-bottom: var(--space-24);
}

.heading-2 {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 3rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 600;
  margin-bottom: var(--space-16);
}

.section-title {
  font-family: var(--font-body);
  font-weight: var(--weight-bold);
  font-size: clamp(28px, 2.55vw, 49px);
  line-height: 1; /* 100% */
  letter-spacing: 0;
  margin-bottom: var(--space-16);
}

.heading-3 {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 2rem);
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: var(--space-12);
}

.text-lead {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
}

.text-small {
  font-size: var(--text-sm);
}

.text-caption {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}
