/* ================================================
   ESTILA — Typography
   houseofestila.com design system
   Abhaya Libre (display) + Lora (body) + Helvetica (UI)
   ================================================ */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  margin: 0;
}

h1 {
  font-size: 2rem;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

h2 {
  font-size: 1.5rem;
  letter-spacing: 0;
  line-height: 1.4;
}

h3 {
  font-size: 1.125rem;
}

h4 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 400;
}

h5, h6 {
  font-family: var(--font-ui);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
}

h5 { font-size: 0.8125rem; }
h6 { font-size: 0.6875rem; }

p {
  margin-bottom: var(--space-lg);
  color: var(--ink-soft);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}

.eyebrow {
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-lg);
  display: block;
}

.lead {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 640px;
}

.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--ink);
  max-width: 800px;
}

.section-number {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 400;
  color: var(--border);
  line-height: 1;
  opacity: 0.4;
  user-select: none;
}

.link-underline {
  position: relative;
  display: inline-block;
}

.link-underline::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--duration) var(--ease-out);
}

.link-underline:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Brand statement — push scale */
.brand-statement__text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--ink);
  max-width: 860px;
  margin: 0 auto;
}

.brand-statement__text em {
  color: var(--gold);
  font-style: italic;
}
