/* Reset + base */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--lb-font-body);
	font-size: var(--lb-size-body);
	line-height: 1.6;
	color: var(--lb-ink);
	background: var(--lb-white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}
html { overflow-x: hidden; }
h1, h2, h3, h4, h5, h6, p, blockquote, figcaption {
	overflow-wrap: break-word;
	word-wrap: break-word;
	-webkit-hyphens: auto;
	hyphens: auto;
}
img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

/* Utility container */
.lb-container {
	width: 100%;
	max-width: var(--lb-content-max);
	margin-inline: auto;
	padding-inline: var(--lb-container-pad-x);
}

/* Visually hidden (accessible) */
.sr-only {
	position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Default heading + button typography */
h1, .h1 { font-family: var(--lb-font-heading); font-weight: 600; font-size: var(--lb-size-h1); line-height: 1; letter-spacing: 0; }
h2, .h2 { font-family: var(--lb-font-heading); font-weight: 500; font-size: var(--lb-size-h2); line-height: 1; }
h3, .h3 { font-family: var(--lb-font-heading); font-weight: 500; font-size: var(--lb-size-h3); line-height: 1; }
h4, .h4 { font-family: var(--lb-font-heading); font-weight: 500; font-size: var(--lb-size-h4); line-height: 1.1; }
h5, .h5 { font-family: var(--lb-font-heading); font-weight: 500; font-size: var(--lb-size-h5); line-height: 1.46; }
h6, .h6 { font-family: var(--lb-font-heading); font-weight: 500; font-size: var(--lb-size-h6); line-height: 1.2; }

.display-xl {
	font-family: var(--lb-font-heading); font-weight: 500;
	font-size: clamp(36px, 8vw, var(--lb-size-display-xl));
	line-height: 1; letter-spacing: 2px;
	overflow-wrap: break-word;
}
.display-lg {
	font-family: var(--lb-font-heading); font-weight: 500;
	font-size: clamp(32px, 5vw, var(--lb-size-display-lg));
	line-height: 1.05; letter-spacing: 0;
	overflow-wrap: break-word; hyphens: none;
}
.display-lg--serif { font-family: var(--lb-font-display); font-weight: 400; letter-spacing: -0.5px; }
@media (max-width: 480px) {
	.display-xl, .display-lg, .display-lg--serif {
		font-size: clamp(28px, 9vw, 44px);
	}
}

.eyebrow-sm {
	font-family: var(--lb-font-body); font-weight: 500;
	font-size: var(--lb-size-eyebrow-sm); line-height: 1.5;
	letter-spacing: 3.5px; text-transform: uppercase;
}
.eyebrow-lg {
	font-family: var(--lb-font-heading); font-weight: 500;
	font-size: var(--lb-size-eyebrow-lg); line-height: 1.4;
	letter-spacing: 0.4px; text-transform: uppercase;
}

.body-lg { font-family: var(--lb-font-body); font-weight: 300; font-size: var(--lb-size-body-lg); line-height: 1.6; }
.body { font-family: var(--lb-font-body); font-weight: 400; font-size: var(--lb-size-body); line-height: 1.71; }
.caption { font-family: var(--lb-font-body); font-weight: 300; font-size: var(--lb-size-caption); line-height: 1.33; letter-spacing: 0.16px; }

/* Buttons */
.btn {
	display: inline-flex; align-items: center; gap: 8px;
	font-family: var(--lb-font-body); font-weight: 500;
	font-size: var(--lb-size-button); letter-spacing: 3px;
	text-transform: uppercase;
	padding: 14px 28px;
	border-radius: var(--lb-radius-sm);
	border: 1px solid transparent;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn--primary { background: var(--lb-white); color: var(--lb-ink); }
.btn--primary:hover { background: var(--lb-cream); }
.btn--ghost { background: transparent; color: var(--lb-white); border-color: var(--lb-white-30); }
.btn--ghost:hover { border-color: var(--lb-cream); color: var(--lb-cream); }
.btn--ink { background: var(--lb-ink); color: var(--lb-white); }
.btn--ink:hover { background: var(--lb-cream); color: var(--lb-ink); }
.btn--pill { border-radius: var(--lb-radius-pill); }
