/* ==========================================================================
   COMPONENTS & UTILITIES
   ========================================================================== */

/* Eyebrow / kicker — used above H1s (e.g. "COLORES CORPORATIVOS") */
.eyebrow {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--fs-micro);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  color: var(--eln-teal);
}

/* Script flourish — the Pacifico lowercase-with-underline treatment */
.script {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--eln-pink);
  font-size: 1.15em;
  line-height: 1;
}

/* ==========================================================================
   COMPONENTS — section heads, cards, etc.
   ========================================================================== */

/* Section head (reusable across layouts) */
.section-head {
	text-align: center;
	max-width: 620px;
	margin: 0 auto 64px;
	padding: 0 20px;
}

.section-head__eyebrow {
	display: block;
	margin-bottom: 12px;
}

.section-head__script {
	font-family: var(--font-script);
	font-weight: 400;
	color: var(--eln-magenta);
	font-size: clamp(1.6rem, 2.5vw, 1.875rem);
	margin: 0 0 8px;
	line-height: 1.2;
}

.section-head__title {
	font-family: var(--font-display);
	font-weight: 900;
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	color: var(--eln-midnight);
	line-height: 1.2;
	margin: 0 0 16px;
	text-wrap: balance;
}

.section-head__title .script-accent {
	font-family: var(--font-script);
	font-weight: 400;
	color: var(--eln-magenta);
	font-size: 1.05em;
	display: inline-block;
}

.section-head__subtitle {
	color: var(--fg-2);
	font-size: 1.05rem;
	line-height: 1.6;
	margin: 0;
}

/* Wrap container (reusable) */
.wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
}

@media (max-width: 768px) {
	.wrap { padding: 0 20px; }
}