/* ==================================================
   BRAND STORY — Mobile First
   Loaded ONLY on pages with the checkbox enabled
   (see inc/components/brand-story.php).
================================================== */

/* Base = mobile */
.brand-strip {
	background: var(--white);
	padding: 3.75rem 0.625rem;
	border-bottom: 0.0625rem solid var(--border);
}

.brand-strip-inner {
	max-width: 45rem;
	margin: 0 auto;
	text-align: center;
}

/* Scoped to .brand-strip so this class stays self-contained
   and never leaks its styling onto other sections/pages. */
.brand-strip .section-eyebrow {
	display: block;
	font-family: var(--sans);
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 1rem;
}

.brand-strip h2 {
	font-family: var(--serif);
	font-size: clamp(1.75rem, 8vw, 3.25rem);
	font-weight: 400;
	color: var(--black);
	line-height: 1.12;
	margin-bottom: 1.25rem;
}

.brand-strip p {
	font-size: 0.9375rem;
	font-weight: 300;
	color: var(--mid);
	line-height: 1.8;
	margin-bottom: 0.75rem;
}

.brand-strip p strong {
	color: var(--black);
	font-weight: 500;
}

/* ─── TABLET (≥641px) ─── */
@media (min-width: 641px) {

	.brand-strip {
		padding: 4.5rem 0.9375rem;
	}

	.brand-strip .section-eyebrow {
		font-size: 0.75rem;
		margin-bottom: 1.25rem;
	}

}

/* ─── DESKTOP (≥901px) ─── */
@media (min-width: 901px) {

	.brand-strip {
		padding: 5.5rem 2.5rem;
	}

	.brand-strip h2 {
		margin-bottom: 1.5rem;
	}

	.brand-strip p {
		line-height: 1.9;
	}

}