/* Design tokens + base */
:root {
	--bb-bg: #090909;
	--bb-bg-2: #111111;
	--bb-card: #151515;
	--bb-accent: #f5c518;
	--bb-accent-soft: rgba(245, 197, 24, 0.25);
	--bb-text: #f7f4ee;
	--bb-muted: #9b9b9b;
	--bb-line: rgba(247, 244, 238, 0.12);
	--bb-font-heading: "Playfair Display", Georgia, serif;
	--bb-font-body: "Manrope", system-ui, sans-serif;
	--bb-space-1: 0.5rem;
	--bb-space-2: 1rem;
	--bb-space-3: 1.5rem;
	--bb-space-4: 2.5rem;
	--bb-space-5: 4rem;
	--bb-space-6: 6rem;
	--bb-radius: 0;
	--bb-header-h: 5.75rem;
	--bb-logo-h: 3.75rem;
	--bb-ease: 280ms ease;
	--bb-max: 1200px;
}

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

html {
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

body {
	margin: 0;
	background: var(--bb-bg);
	color: var(--bb-text);
	font-family: var(--bb-font-body);
	font-size: 1rem;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	padding-bottom: 6.25rem;
}

@media (min-width: 901px) {
	body {
		padding-bottom: 0;
	}
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color var(--bb-ease), border-color var(--bb-ease), background-color var(--bb-ease), opacity var(--bb-ease);
}

a:hover,
a:focus-visible {
	color: var(--bb-accent);
}

:focus-visible {
	outline: 2px solid var(--bb-accent);
	outline-offset: 3px;
}

h1, h2, h3, h4 {
	font-family: var(--bb-font-heading);
	font-weight: 500;
	line-height: 1.15;
	margin: 0 0 var(--bb-space-2);
}

p {
	margin: 0 0 var(--bb-space-2);
}

ul, ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.skip-link:focus {
	clip: auto;
	clip-path: none;
	height: auto;
	left: var(--bb-space-2);
	top: var(--bb-space-2);
	width: auto;
	z-index: 100000;
	background: var(--bb-bg-2);
	color: var(--bb-accent);
	padding: var(--bb-space-2);
}
