/* ===== Design tokens ===== */
:root {
	--jcpmd-black: #0a0a0a;
	--jcpmd-near-black: #131211;
	--jcpmd-white: #ffffff;
	--jcpmd-warm-white: #f6f4ef;
	--jcpmd-gold: #dba037;
	--jcpmd-gold-light: #ecc06b;
	--jcpmd-ink: #14130f;
	--jcpmd-muted-on-dark: #a6a299;
	--jcpmd-muted-on-light: #5c584f;
	--jcpmd-border-on-dark: rgba(255, 255, 255, 0.12);
	--jcpmd-border-on-light: rgba(20, 19, 15, 0.12);

	--jcpmd-font-display: "Playfair Display", Georgia, serif;
	--jcpmd-font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

	--jcpmd-max-width: 1200px;
	--jcpmd-gutter: clamp(20px, 5vw, 64px);
	--jcpmd-radius: 4px;
}

/* ===== Reset ===== */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--jcpmd-font-body);
	font-size: 17px;
	line-height: 1.6;
	color: var(--jcpmd-ink);
	background: var(--jcpmd-white);
	-webkit-font-smoothing: antialiased;
}

img,
svg {
	max-width: 100%;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

button {
	font-family: inherit;
	cursor: pointer;
}

h1,
h2,
h3,
h4 {
	font-family: var(--jcpmd-font-display);
	font-weight: 700;
	line-height: 1.15;
	margin: 0 0 0.5em;
}

h1 {
	font-size: clamp(2.4rem, 5vw, 4rem);
}

h2 {
	font-size: clamp(1.9rem, 3.6vw, 2.75rem);
}

h3 {
	font-size: clamp(1.3rem, 2.2vw, 1.6rem);
}

p {
	margin: 0 0 1em;
}

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

.skip-link:focus {
	position: fixed;
	top: 8px;
	left: 8px;
	width: auto;
	height: auto;
	padding: 12px 20px;
	background: var(--jcpmd-black);
	color: var(--jcpmd-white);
	z-index: 10000;
	clip: auto;
}

.eyebrow {
	display: inline-block;
	font-family: var(--jcpmd-font-body);
	font-weight: 600;
	font-size: 0.8rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--jcpmd-gold);
	margin-bottom: 1em;
}

.section {
	padding: clamp(56px, 9vw, 120px) var(--jcpmd-gutter);
}

.section--dark {
	background: var(--jcpmd-black);
	color: var(--jcpmd-warm-white);
}

.section--dark .eyebrow {
	color: var(--jcpmd-gold-light);
}

.section-inner {
	max-width: var(--jcpmd-max-width);
	margin: 0 auto;
}
