@font-face {
	font-family: "Atkinson Hyperlegible";
	src: url("../fonts/atkinson-400.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Atkinson Hyperlegible";
	src: url("../fonts/atkinson-700.ttf") format("truetype");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Saira Condensed";
	src: url("../fonts/saira-condensed-800.ttf") format("truetype");
	font-weight: 800;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Saira Condensed";
	src: url("../fonts/saira-condensed-900.ttf") format("truetype");
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}

:root {
	--color-background: #f3f3ef;
	--color-background-alt: #e9e9e4;
	--color-surface: #ffffff;
	--color-surface-dark: #151515;
	--color-text: #111111;
	--color-text-light: #ffffff;
	--color-muted: #50545a;
	--color-muted-light: #c9c9c2;
	--color-yellow: #f4c400;
	--color-yellow-light: #ffe162;
	--color-yellow-dark: #c99f00;
	--color-blue: #1e5b8c;
	--color-blue-dark: #123a5c;
	--color-blue-light: #dceaf4;
	--color-border: #d9d9d2;
	--color-border-dark: #303030;
	--color-success: #2e7d32;
	--color-error: #c62828;
	--font-heading: "Saira Condensed", "Arial Narrow", Impact, sans-serif;
	--font-body: "Atkinson Hyperlegible", "Segoe UI", system-ui, sans-serif;
	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 16px;
	--container: min(1180px, calc(100vw - 32px));
	--shadow-tight: 0 6px 14px rgba(17, 17, 17, .08);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--color-background);
	color: var(--color-text);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.58;
	text-rendering: optimizeLegibility;
}

body.menu-open {
	overflow: hidden;
}

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

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

p {
	margin: 0 0 .95rem;
	color: var(--color-muted);
	max-width: 68ch;
	line-height: 1.68;
	text-wrap: pretty;
}

h1,
h2,
h3,
h4 {
	margin: 0;
	color: var(--color-text);
	font-family: var(--font-heading);
	font-weight: 900;
	line-height: 1.08;
	letter-spacing: -.002em;
	text-wrap: balance;
}

h1 {
	font-size: clamp(2.85rem, 6.6vw, 4.8rem);
	max-width: 18ch;
}

h2 {
	font-size: clamp(2rem, 4.2vw, 3.05rem);
	max-width: 22ch;
}

h3 {
	font-size: clamp(1.45rem, 5.5vw, 2rem);
	line-height: 1.12;
}

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

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

.container {
	width: var(--container);
	margin-inline: auto;
}

.section {
	padding: clamp(2rem, 5vw, 4rem) 0;
}

.page-shell {
	padding: 5rem 0 3rem;
}

.content-narrow {
	max-width: 820px;
}

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

.skip-link:focus {
	position: fixed;
	z-index: 1000;
	top: 1rem;
	left: 1rem;
	width: auto;
	height: auto;
	padding: .75rem 1rem;
	clip: auto;
	border-radius: var(--radius-sm);
	background: var(--color-surface-dark);
	color: var(--color-text-light);
}

.eyebrow,
.brand-kicker {
	display: inline-flex;
	align-items: center;
	gap: .55rem;
	margin: 0 0 .85rem;
	color: var(--color-blue-dark);
	font-size: .82rem;
	font-weight: 700;
	letter-spacing: .045em;
	text-transform: uppercase;
}

.eyebrow::before,
.brand-kicker::before {
	content: "";
	width: 32px;
	height: 3px;
	background: var(--color-yellow);
}

.site-header {
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	right: 0;
	min-height: 64px;
	background: rgba(243, 243, 239, .94);
	border-bottom: 1px solid rgba(17, 17, 17, .12);
	backdrop-filter: blur(12px);
}

body.admin-bar .site-header {
	top: 32px;
}

.header-grid {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 1rem;
	height: 64px;
	min-height: 64px;
}

.brand {
	display: inline-flex;
	align-items: center;
	height: 64px;
	max-height: 64px;
	overflow: hidden;
}

.brand-lockup {
	display: inline-flex;
	align-items: center;
	gap: .58rem;
	color: #111;
	max-height: 52px;
}

.brand-mark,
.custom-logo,
.custom-logo-link img,
.site-header .brand img {
	width: 42px !important;
	height: 42px !important;
	max-width: 42px !important;
	max-height: 42px !important;
	object-fit: contain;
	flex: 0 0 auto;
	padding: 3px;
	border-radius: 10px;
	background: #fff;
}

.brand-text {
	display: grid;
	gap: .05rem;
	line-height: 1;
	white-space: nowrap;
}

.brand-text strong {
	font-family: var(--font-heading);
	font-size: 1.28rem;
	font-weight: 900;
	letter-spacing: 0;
}

.brand-text small {
	color: #3d3d3d;
	font-size: .58rem;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
}

.nav-list,
.mobile-nav-list,
.footer-nav,
.footer-contact {
	list-style: none;
	padding: 0;
	margin: 0;
}

.desktop-nav {
	justify-self: center;
}

.nav-list {
	display: flex;
	align-items: center;
	gap: 1rem;
	font-size: .95rem;
	font-weight: 700;
}

.nav-list a {
	padding: .45rem .15rem;
	color: #1b1b1b;
}

.nav-list a:hover,
.nav-list a:focus-visible {
	color: var(--color-blue-dark);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: .55rem;
}

.phone-chip {
	display: none;
	align-items: center;
	gap: .45rem;
	min-height: 44px;
	padding: .55rem .85rem;
	border: 1px solid var(--color-border);
	border-radius: 999px;
	background: #fff;
	font-weight: 700;
}

.phone-chip svg {
	width: 18px;
	color: var(--color-yellow-dark);
}

.menu-toggle {
	display: inline-flex;
	width: 46px;
	height: 46px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--color-border);
	border-radius: 999px;
	background: #fff;
	color: var(--color-text);
	cursor: pointer;
}

.menu-toggle svg {
	width: 22px;
}

.mobile-nav {
	position: fixed;
	inset: 64px 0 auto;
	padding: 1rem 16px 1.25rem;
	background: var(--color-background);
	border-bottom: 1px solid var(--color-border);
	box-shadow: var(--shadow-tight);
}

body.admin-bar .mobile-nav {
	inset-block-start: 96px;
}

.mobile-nav-list {
	display: grid;
	gap: .3rem;
}

.mobile-nav-list a {
	display: block;
	min-height: 46px;
	padding: .75rem 0;
	border-bottom: 1px solid var(--color-border);
	font-weight: 700;
}

.mobile-nav-cta {
	width: 100%;
	margin-top: .8rem;
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	gap: .8rem;
	align-items: center;
	margin-top: 1.35rem;
}

.button {
	position: relative;
	display: inline-flex;
	min-height: 52px;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	padding: .88rem 1.28rem;
	overflow: hidden;
	border-radius: var(--radius-md);
	border: 2px solid transparent;
	font-weight: 700;
	line-height: 1.1;
	cursor: pointer;
	box-shadow: 0 3px 0 rgba(0, 0, 0, .28);
	transform: translateY(0);
	transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
}

.button::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .34) 45%, transparent 70%);
	transform: translateX(-130%);
	transition: transform .42s ease;
	pointer-events: none;
}

.button:hover,
.button:focus-visible {
	transform: translateY(-3px);
	box-shadow: 0 7px 0 rgba(0, 0, 0, .24), 0 13px 22px rgba(0, 0, 0, .18);
}

.button:hover::after,
.button:focus-visible::after {
	transform: translateX(130%);
}

.button:active {
	transform: translateY(1px) scale(.99);
	box-shadow: 0 1px 0 rgba(0, 0, 0, .32);
}

.button-primary {
	background: var(--color-yellow);
	color: #111;
	border-color: var(--color-yellow);
}

.button-primary:hover {
	background: var(--color-yellow-light);
}

.button-secondary {
	background: #fff;
	color: var(--color-text);
	border-color: #171717;
}

.button-secondary:hover {
	background: var(--color-text);
	color: #fff;
	border-color: var(--color-text);
}

.button-facebook {
	background: #1877f2;
	color: #fff;
	border-color: #1877f2;
}

.button-facebook:hover,
.button-facebook:focus-visible {
	background: #0e5fd8;
	color: #fff;
	border-color: #0e5fd8;
}

.button-facebook svg {
	width: 18px;
	height: 18px;
}

.hero-section {
	position: relative;
	min-height: min(760px, 100dvh);
	display: grid;
	align-items: end;
	padding: 6rem 0 1rem;
	overflow: hidden;
	background: #111;
}

.hero-media {
	position: absolute;
	inset: 0;
}

.hero-media::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(0, 0, 0, .86) 0%, rgba(0, 0, 0, .62) 44%, rgba(0, 0, 0, .18) 100%),
		linear-gradient(0deg, rgba(0, 0, 0, .5), transparent 42%);
}

.hero-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 62% center;
}

.hero-layout {
	position: relative;
	z-index: 1;
}

.hero-copy {
	max-width: 1040px;
	padding: 1.2rem 0 1.5rem;
	color: #fff;
}

.hero-copy h1 {
	max-width: 17ch;
}

.hero-copy h1,
.hero-copy .brand-kicker {
	color: #fff;
}

.hero-lead {
	margin-top: .9rem;
	color: #ecece7;
	font-size: clamp(1rem, 4.2vw, 1.25rem);
	line-height: 1.52;
}

.hero-contact-strip {
	display: flex;
	flex-wrap: wrap;
	gap: .6rem 1rem;
	align-items: center;
	margin-top: 1rem;
	color: #fff;
	font-weight: 700;
}

.hero-contact-strip a {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	gap: .45rem;
}

.hero-contact-strip svg {
	width: 18px;
	color: var(--color-yellow);
}

.section-heading {
	max-width: 860px;
	margin-bottom: 1.15rem;
}

.section-heading h2 {
	max-width: 22ch;
}

.section-heading p:not(.eyebrow) {
	margin-top: .8rem;
	font-size: 1.02rem;
	line-height: 1.55;
}

.entry-content h1,
.entry-content h2,
.entry-content h3 {
	margin: 1.5rem 0 .75rem;
}

.entry-content a {
	text-decoration: underline;
	text-decoration-color: var(--color-yellow-dark);
	text-decoration-thickness: 2px;
}

.entry-content img {
	border-radius: var(--radius-md);
}

.breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: .45rem;
	margin-bottom: 1.2rem;
	font-size: .92rem;
	color: var(--color-muted);
}

.breadcrumb a {
	color: var(--color-blue-dark);
	font-weight: 700;
}

[data-reveal] {
	opacity: 1;
	transform: none;
}

.js-ready [data-reveal] {
	opacity: 0;
	transform: translateY(10px);
	transition: opacity .42s ease, transform .42s ease;
}

.js-ready [data-reveal].is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (min-width: 720px) {
	:root {
		--container: min(1180px, calc(100vw - 48px));
	}

	.phone-chip {
		display: inline-flex;
	}

	.hero-section {
		align-items: center;
		padding: 6.25rem 0 2.25rem;
	}

	.hero-copy {
		padding: 2rem 0;
	}

	.section-heading h2 {
		max-width: 24ch;
	}
}

@media (min-width: 1180px) {
	h2 {
		font-size: clamp(2rem, 3.4vw, 3.1rem);
	}

	.section-heading h2 {
		max-width: 25ch;
	}
}

@media (min-width: 1024px) {
	.menu-toggle,
	.mobile-nav {
		display: none;
	}
}

@media (max-width: 1023px) {
	.desktop-nav {
		display: none;
	}

	.header-grid {
		grid-template-columns: 1fr auto;
	}
}

@media (max-width: 782px) {
	body.admin-bar .site-header {
		top: 46px;
	}

	body.admin-bar .mobile-nav {
		inset-block-start: 110px;
	}
}

@media (max-width: 560px) {
	:root {
		--container: min(100vw - 36px, 1180px);
	}

	.brand img {
		width: 42px;
		height: 42px;
	}

	h1 {
		font-size: clamp(2.45rem, 11vw, 3.45rem);
		max-width: 13.5ch;
	}

	h2,
	.section-heading h2 {
		font-size: clamp(1.9rem, 7.2vw, 2.45rem);
		max-width: 100%;
	}

	.section-heading {
		max-width: 100%;
	}

	.button-row,
	.button {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .001ms !important;
	}
}
