:root {
	--bc-color-brand-primary: #009fc6;
	--bc-color-brand-primary-soft: #6ec1e4;
	--bc-color-brand-secondary: #000000;
	--bc-color-accent: #b52700;
	--bc-color-text-strong: #000000;
	--bc-color-text: #54595f;
	--bc-color-text-muted: #7a7a7a;
	--bc-color-surface: #ffffff;
	--bc-color-surface-raised: #f7f7f7;
	--bc-color-surface-alternate: #ededed;
	--bc-color-border: #e0e0e0;
	--bc-color-focus: #009fc6;

	--bc-font-sans: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	--bc-font-serif: Georgia, Cambria, "Times New Roman", Times, serif;
	--bc-font-display: "Anaheim", -apple-system, BlinkMacSystemFont, sans-serif;

	--bc-space-1: 0.25rem;
	--bc-space-2: 0.5rem;
	--bc-space-3: 0.75rem;
	--bc-space-4: 1rem;
	--bc-space-5: 1.5rem;
	--bc-space-6: 2rem;
	--bc-space-7: 3rem;
	--bc-space-8: 4rem;
	--bc-space-9: 6rem;
	--bc-space-10: 8rem;

	--bc-container: 1140px;
	--bc-content: 760px;
	--bc-radius-sm: 0.25rem;
	--bc-radius-md: 0.375rem;
	--bc-radius-lg: 0.5rem;
	--bc-radius-pill: 999px;
	--bc-shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.08);
	--bc-header-height: 84px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--bc-color-surface);
	color: var(--bc-color-text);
	font-family: var(--bc-font-sans);
	font-size: 1rem;
	line-height: 1.7;
	text-rendering: optimizeLegibility;
}

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

a {
	color: var(--bc-color-brand-primary);
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

a:hover {
	color: var(--bc-color-brand-secondary);
}

:focus-visible {
	outline: 3px solid var(--bc-color-focus);
	outline-offset: 4px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--bc-color-text-strong);
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.05;
	margin: 0 0 var(--bc-space-5);
}

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

h2 {
	font-size: clamp(2rem, 1.4rem + 2.4vw, 3.5rem);
}

h3 {
	font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.25rem);
}

p {
	margin: 0 0 var(--bc-space-5);
}

button,
input,
select,
textarea {
	font: inherit;
}

button,
.button,
.wp-block-button__link {
	border: 0;
	border-radius: var(--bc-radius-pill);
	cursor: pointer;
	font-weight: 800;
}

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

.screen-reader-text:focus {
	clip: auto;
	clip-path: none;
	background: var(--bc-color-surface);
	border-radius: var(--bc-radius-sm);
	box-shadow: var(--bc-shadow-soft);
	color: var(--bc-color-text-strong);
	height: auto;
	left: var(--bc-space-4);
	padding: var(--bc-space-3) var(--bc-space-4);
	top: var(--bc-space-4);
	width: auto;
	z-index: 100000;
}
