/* ==========================================================================
   Base typography & elements
   ========================================================================== */

body {
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.7;
	color: var(--color-ink-soft);
	background: var(--color-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4 {
	font-family: var(--font-display);
	font-weight: 700;
	color: var(--color-ink);
	line-height: 1.08;
	letter-spacing: -0.01em;
}

h1 {
	font-size: clamp(2.6rem, 3vw + 2rem, 5.4rem);
}

h2 {
	font-size: clamp(2rem, 1.6vw + 1.6rem, 3.1rem);
}

h3 {
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 1.2rem;
	color: var(--color-ink);
	letter-spacing: normal;
	line-height: 1.3;
}

p {
	max-width: 62ch;
}

strong {
	font-weight: 600;
	color: var(--color-ink);
}

a {
	text-decoration: none;
}

.wrap {
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--space-3);
}

.skip-link {
	position: absolute;
	left: -999px;
	top: auto;
	background: var(--color-ink);
	color: #fff;
	padding: var(--space-2) var(--space-3);
	z-index: 999;
	border-radius: var(--radius-sm);
}

.skip-link:focus {
	left: var(--space-2);
	top: var(--space-2);
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

.section-title {
	max-width: 20ch;
}

.section-title--center {
	max-width: none;
	text-align: center;
	margin-inline: auto;
}

.section-lead {
	color: var(--color-muted);
	font-size: 1.15rem;
	margin-top: var(--space-2);
}

.section-lead--center {
	text-align: center;
	max-width: 56ch;
	margin-inline: auto;
	margin-top: var(--space-2);
}

section {
	padding-block: var(--space-6);
}

/* ==========================================================================
   Subtle reveal-on-scroll (progressive enhancement, see main.js)
   ========================================================================== */

.reveal {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* ==========================================================================
   Section background utilities — the color rhythm that keeps the page from
   reading as an all-white brochure (navy / orange / blue, sampled directly
   from the approved carousel artwork).
   ========================================================================== */

.bg-navy,
.bg-orange,
.bg-blue {
	position: relative;
}

.bg-navy {
	background: var(--color-navy);
	color: rgba(255, 255, 255, 0.78);
}

.bg-navy .section-title,
.bg-navy h3 {
	color: #fff;
}

.bg-navy .section-lead {
	color: rgba(255, 255, 255, 0.62);
}

.bg-orange {
	background: linear-gradient(155deg, var(--color-orange) 0%, #e8691a 100%);
	color: rgba(20, 24, 31, 0.82);
}

.bg-orange .section-title {
	color: var(--color-navy);
}

.bg-orange .section-lead {
	color: rgba(20, 24, 31, 0.68);
}

.bg-blue {
	background: linear-gradient(155deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
	color: rgba(20, 24, 31, 0.82);
}

.bg-blue .section-title {
	color: var(--color-navy);
}

.eyebrow {
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: var(--space-1);
	opacity: 0.75;
}
