.wf-container {
	max-width: var(--wf-container);
	margin-inline: auto;
	padding-inline: var(--wf-gutter);
	box-sizing: border-box;
}

.wf-container--wide {
	max-width: var(--wf-container-wide);
}

.wf-section {
	padding-block: clamp(64px, 8vw, 112px);
}

.wf-section--dark {
	background: var(--wf-navy);
	color: var(--wf-white);
}

.wf-section--light {
	background: var(--wf-bg);
	color: var(--wf-text);
}

.wf-eyebrow {
	font: 600 .8rem/1.2 var(--wf-font-body);
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--wf-cyan);
}

.wf-h1 {
	font: 800 clamp(2.25rem, 5vw, 3.5rem)/1.05 var(--wf-font-display);
	text-transform: uppercase;
	letter-spacing: -.01em;
	margin: 0;
}

.wf-h2 {
	font: 700 clamp(1.75rem, 3.5vw, 2.5rem)/1.1 var(--wf-font-display);
	margin: 0;
}

.wf-h3 {
	font: 700 1.5rem/1.2 var(--wf-font-display);
	margin: 0;
}

.wf-lede {
	font: 400 1.125rem/1.6 var(--wf-font-body);
}

.wf-btn {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	font: 600 1rem/1 var(--wf-font-body);
	text-transform: uppercase;
	letter-spacing: .02em;
	/* GOTCHA: no `border: 1px solid transparent` on buttons. Chrome anti-aliases
	   a rounded gradient/solid background at the padding-box edge as well as
	   the border-box edge, so a transparent border renders as a faint lighter
	   ring around every button. Hairline variants draw their line with an inset
	   box-shadow instead, and the 1px is folded into the padding so rendered
	   sizes are unchanged. Same rule applies to the .wpforms-submit clones. */
	padding: 13px 21px;
	border-radius: var(--wf-radius-sm);
	border: 0;
	text-decoration: none;
	cursor: pointer;
	transition: background var(--wf-dur) var(--wf-ease), color var(--wf-dur) var(--wf-ease), box-shadow var(--wf-dur) var(--wf-ease), transform var(--wf-dur) var(--wf-ease);
}

.wf-btn--primary {
	background: linear-gradient(90deg, var(--wf-blue) 0%, var(--wf-cyan) 100%);
	color: var(--wf-white);
}

.wf-btn--primary:hover,
.wf-btn--primary:focus-visible {
	background: var(--wf-gold);
	color: var(--wf-navy);
}

.wf-btn--ghost-light {
	background: transparent;
	color: var(--wf-white);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .35);
}

.wf-btn--ghost-light:hover {
	box-shadow: inset 0 0 0 1px var(--wf-white);
}

.wf-btn--light {
	background: var(--wf-white);
	color: var(--wf-navy);
}

.wf-btn--light:hover {
	background: var(--wf-bg-blue);
}

.wf-btn--sm {
	padding: 10px 15px;
	font-size: .875rem;
}

.wf-btn--lg {
	padding: 17px 33px;
	font-size: 1rem;
	min-height: 52px;
}

.wf-btn:focus-visible {
	outline: 2px solid var(--wf-cyan);
	outline-offset: 2px;
}

.wf-grid-bg {
	position: relative;
	background-color: var(--wf-navy);
}

.wf-grid-bg::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
	background-size: 72px 72px;
	-webkit-mask-image: radial-gradient(ellipse at center, #000 40%, transparent 80%);
	mask-image: radial-gradient(ellipse at center, #000 40%, transparent 80%);
	pointer-events: none;
}

.wf-grid-bg > * {
	position: relative;
}

.wf-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;
}

.wf-icon {
	width: 1.25em;
	height: 1.25em;
	flex: none;
}

.wf-icon svg {
	width: 100%;
	height: 100%;
	display: block;
}

/* =======================================================================
 * Document defaults (added 2026-09-13, Elementor exit).
 * The Elementor kit used to supply body font/colour/background, heading
 * colour and link colour via `.elementor-kit-6 …` rules that outrank these
 * element selectors, so nothing changes while the kit is active. Once
 * Elementor is deactivated these become the site's defaults.
 * ===================================================================== */
html {
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--wf-bg);
	color: var(--wf-text);
	font-family: var(--wf-font-body);
	font-size: 1rem;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
	color: var(--wf-navy);
	font-family: var(--wf-font-display);
	line-height: 1.15;
	margin: 0 0 0.5em;
}

a {
	color: var(--wf-blue);
	text-decoration: none;
}

a:hover,
a:focus-visible {
	color: var(--wf-cyan);
}

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

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

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

/* Keep the .site-main wrapper full-bleed; our templates manage their own
 * gutters via .wf-container. (Originally written to beat Hello Elementor's
 * 1140px cap; the theme is standalone now, the Elementor classes are simply
 * never present, so this always applies.) */
body:not(.elementor-default):not(.elementor-page) .site-main {
	width: 100%;
	max-width: none;
	margin-inline: 0;
	padding-inline: 0;
}
/* Skip-to-content link: clipped off-screen like .wf-sr-only, revealed as a pill
   above the fixed header only while it has keyboard focus. Ported from Hello
   Elementor's .screen-reader-text, whose CSS does not load in the Astro front end. */
.wf-skip-link {
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
	z-index: 1001;
}

.wf-skip-link:focus-visible {
	width: auto;
	height: auto;
	margin: 0;
	padding: 10px 16px;
	top: 12px;
	left: 12px;
	overflow: visible;
	clip: auto;
	background: var(--wf-blue);
	color: #fff;
	font: 600 14px/1 var(--wf-font-body);
	border-radius: var(--wf-radius);
	outline: 2px solid #fff;
	outline-offset: 2px;
	text-decoration: none;
}
