/**
 * STREET DOGS | Craft Hot Dogs & Urban Diner
 * Typography Architecture & Editorial Hierarchy
 */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  color: var(--color-text);
  font-weight: 800;
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
}

h1 {
  font-size: var(--text-5xl);
  font-weight: 900;
  line-height: 1.08;
}

h2 {
  font-size: var(--text-4xl);
  font-weight: 800;
  line-height: 1.15;
}

h3 {
  font-size: var(--text-3xl);
  font-weight: 700;
  line-height: 1.22;
}

h4 {
  font-size: var(--text-2xl);
  font-weight: 700;
  line-height: 1.3;
}

h5 {
  font-size: var(--text-xl);
  font-weight: 600;
}

h6 {
  font-size: var(--text-lg);
  font-weight: 600;
}

/* Párrafo Principal / Lead */
.text-lead {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--color-text-muted);
  font-weight: 400;
}

.text-muted {
  color: var(--color-text-muted);
}

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

/* Detalle Editorial Humano: Eyebrow en mayúsculas con espaciado */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 2px;
  background-color: var(--color-primary);
}

/* Numeración de sección editorial */
.section-tag {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: var(--tracking-wider);
  color: var(--color-secondary);
  text-transform: uppercase;
  background-color: var(--color-surface-alt);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-xs);
  border: 1px solid var(--color-border);
}

/* Gran número decorativo editorial */
.editorial-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  color: var(--color-border);
  line-height: 0.9;
  letter-spacing: -0.04em;
  user-select: none;
}

/* Citas y testimonios editoriales */
blockquote {
  border-left: 3px solid var(--color-primary);
  padding-left: var(--space-6);
  margin: var(--space-6) 0;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--color-text);
  line-height: var(--leading-snug);
}

figcaption {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-2);
  letter-spacing: var(--tracking-wide);
}
