/* ============================================
   FACULTY — Typography
   ============================================ */

/* Display / Headlines — Playfair Display Black */
h1, h2, h3, h4,
.display {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h1 { font-size: var(--text-h1); }
h2 { font-size: var(--text-h2); }
h3 { font-size: var(--text-h3); }

/* Body — DM Sans */
p, span, a, li, label, input, textarea {
  font-family: var(--font-body);
  font-weight: 400;
}

.text-hero {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: var(--text-hero);
  line-height: 1.05;
  color: var(--color-white);
}

.text-section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--color-white);
}

.text-body-block {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.7;
  color: var(--color-white);
  max-width: 480px;
}

.text-bucket-body-block {
  font-family: var(--font-body);
  font-size: var(--text-bucket-body);
  font-weight: 500;
  line-height: 1.7;
  color: var(--color-white);
  max-width: 480px;
}

.text-nav-link {
  font-family: var(--font-body);
  font-size: var(--text-nav);
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: 0.02em;
  transition: opacity var(--transition-fast);
}

.text-link {
  font-family: var(--font-body);
  font-size: var(--text-link);
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: 0.02em;
  transition: opacity var(--transition-fast);
}

.text-nav-link:hover {
  opacity: 0.6;
}

/* WE ARE — animated text inline */
.we-are-static {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-transform: uppercase;
  color: var(--color-white);
  display: inline;
}

.we-are-animated {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-transform: uppercase;
  color: var(--color-white);
  display: inline-block;
  min-width: 280px;
  vertical-align: bottom;
}

/* Mobile type scale */
@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.25rem; }

  .text-section-title {
    font-size: 2rem;
  }

  .we-are-static,
  .we-are-animated {
    font-size: 2rem;
  }
}
