/*
Theme Name:  BoSlott
Theme URI:   https://boslott.com
Author:      BoSlott.com
Author URI:  https://boslott.com
Description: Custom theme for BoSlott.com — Developing High-Performance Humans through Leadership, Resiliency, Fitness, and Confidence. Hub-and-Spoke architecture with three Spoke domains: SimpleSuccess Leadership, SimpleSuccess Household, and SimpleSuccess Aquatics.
Version:     1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License:     Proprietary
License URI: https://boslott.com
Text Domain: boslott
Tags:        custom-theme, one-page, sports, education, family
*/

/* ==========================================================================
   SECTION 1: CSS CUSTOM PROPERTIES (Design Tokens)
   ========================================================================== */

:root {
	/* --- Hub & Spoke Brand Colors --- */
	--color-hub-navy: #00193C;
	/* Hub — Authority, Technical Foundation */
	--color-leadership-blue: #1996C8;
	/* Spoke 01 — Leadership, Sky Blue */
	--color-household-amber: #F09628;
	/* Spoke 02 — Household, Amber */
	--color-aquatics-green: #3CA030;
	/* Spoke 03 — Aquatics, Green */
	--color-white: #FFFFFF;

	/* --- Extended Palette (from design files) --- */
	--color-navy-dark: #000E22;
	/* Deepest navy for footer bottom bar */
	--color-navy-mid: #0A2545;
	/* Header background */
	--color-cream: #F5EFE6;
	/* Page body / section backgrounds */
	--color-cream-light: #FAF6F0;
	/* Alternate section background */
	--color-text-dark: #1A2E44;
	/* Primary body text */
	--color-text-mid: #3D5268;
	/* Secondary body text */
	--color-text-light: #6B7F93;
	/* Captions, metadata */
	--color-border: #D8CCBB;
	/* Subtle dividers */

	/* --- Typography --- */
	--font-primary: 'Inter', sans-serif;
	--font-mono: 'Courier New', Courier, monospace;

	--fw-regular: 400;
	--fw-medium: 500;
	--fw-semibold: 600;
	--fw-bold: 700;

	/* Type Scale */
	--text-xs: 0.75rem;
	/*  12px */
	--text-sm: 0.875rem;
	/*  14px */
	--text-base: 1rem;
	/*  16px */
	--text-lg: 1.125rem;
	/*  18px */
	--text-xl: 1.25rem;
	/*  20px */
	--text-2xl: 1.5rem;
	/*  24px */
	--text-3xl: 1.875rem;
	/*  30px */
	--text-4xl: 2.25rem;
	/*  36px */
	--text-5xl: 3rem;
	/*  48px */
	--text-6xl: 3.75rem;
	/*  60px */

	/* Line Heights */
	--leading-tight: 1.2;
	--leading-snug: 1.35;
	--leading-normal: 1.6;
	--leading-relaxed: 1.75;

	/* --- Spacing Scale --- */
	--space-1: 0.25rem;
	/*  4px */
	--space-2: 0.5rem;
	/*  8px */
	--space-3: 0.75rem;
	/* 12px */
	--space-4: 1rem;
	/* 16px */
	--space-5: 1.25rem;
	/* 20px */
	--space-6: 1.5rem;
	/* 24px */
	--space-8: 2rem;
	/* 32px */
	--space-10: 2.5rem;
	/* 40px */
	--space-12: 3rem;
	/* 48px */
	--space-16: 4rem;
	/* 64px */
	--space-20: 5rem;
	/* 80px */
	--space-24: 6rem;
	/* 96px */
	--space-32: 8rem;
	/* 128px */

	/* --- Layout --- */
	--container-max: 1200px;
	--container-narrow: 860px;
	--container-wide: 1400px;
	--container-pad: clamp(1rem, 5vw, 2rem);

	/* --- Border Radius --- */
	--radius-sm: 4px;
	--radius-md: 8px;
	--radius-lg: 16px;
	--radius-xl: 24px;
	--radius-full: 9999px;

	/* --- Shadows --- */
	--shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
	--shadow-md: 0 4px 16px rgba(0, 0, 0, 0.10);
	--shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.14);
	--shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.18);

	/* --- Transitions --- */
	--transition-fast: 150ms ease;
	--transition-base: 250ms ease;
	--transition-slow: 400ms ease;

	/* --- Header Height (used for scroll offset) --- */
	--header-height: 80px;
}

/* ==========================================================================
   SECTION 2: RESET & BASE
   ========================================================================== */

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

html {
	font-size: 16px;
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: var(--font-primary);
	font-size: var(--text-base);
	font-weight: var(--fw-regular);
	line-height: var(--leading-normal);
	color: var(--color-text-dark);
	background-color: var(--color-cream);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

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

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

ul,
ol {
	list-style: none;
}

button,
input,
select,
textarea {
	font: inherit;
	border: none;
	background: none;
	outline: none;
}

button {
	cursor: pointer;
}

/* ==========================================================================
   SECTION 3: LAYOUT UTILITIES
   ========================================================================== */

.container {
	width: 100%;
	max-width: var(--container-max);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--container-pad);
	padding-right: var(--container-pad);
}

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

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

.section {
	padding-top: var(--space-16);
	padding-bottom: var(--space-16);
}

.section--sm {
	padding-top: var(--space-10);
	padding-bottom: var(--space-10);
}

.section--lg {
	padding-top: var(--space-24);
	padding-bottom: var(--space-24);
}

/* ==========================================================================
   SECTION 4: TYPOGRAPHY
   ========================================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-primary);
	font-weight: var(--fw-bold);
	line-height: var(--leading-tight);
	color: var(--color-hub-navy);
}

h1 {
	font-size: clamp(var(--text-4xl), 6vw, var(--text-6xl));
}

h2 {
	font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
}

h3 {
	font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
}

h4 {
	font-size: clamp(var(--text-xl), 2.5vw, var(--text-3xl));
}

h5 {
	font-size: var(--text-xl);
}

h6 {
	font-size: var(--text-lg);
}

p {
	line-height: var(--leading-relaxed);
	color: var(--color-text-mid);
	margin-bottom: var(--space-4);
}

p:last-child {
	margin-bottom: 0;
}

strong {
	font-weight: var(--fw-bold);
	color: var(--color-hub-navy);
}

em {
	font-style: italic;
}

/* Monospace — for emails, technical data */
.mono,
a[href^="mailto"] {
	font-family: var(--font-mono);
	font-size: var(--text-sm);
	letter-spacing: 0.02em;
}

/* Section eyebrow label */
.eyebrow {
	display: block;
	font-size: var(--text-sm);
	font-weight: var(--fw-semibold);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: var(--space-3);
	color: var(--color-text-light);
}

/* Section title */
.section-title {
	font-size: clamp(var(--text-3xl), 4vw, var(--text-4xl));
	font-weight: var(--fw-bold);
	color: var(--color-hub-navy);
	text-align: center;
	margin-bottom: var(--space-4);
}

.section-subtitle {
	font-size: var(--text-lg);
	color: var(--color-text-mid);
	text-align: center;
	max-width: 640px;
	margin: 0 auto var(--space-12);
	line-height: var(--leading-relaxed);
}

/* Breadcrumb */
.breadcrumb {
	font-size: var(--text-sm);
	color: var(--color-text-light);
	margin-bottom: var(--space-8);
}

.breadcrumb a {
	color: var(--color-text-light);
	transition: color var(--transition-fast);
}

.breadcrumb a:hover {
	color: var(--color-hub-navy);
}

.breadcrumb span {
	margin: 0 var(--space-2);
}

/* ==========================================================================
   SECTION 5: BUTTONS
   ========================================================================== */

.btn {
	display: inline-flex;
	align-items: center;
	gap: var(--space-2);
	padding: var(--space-3) var(--space-6);
	border-radius: var(--radius-sm);
	font-size: var(--text-base);
	font-weight: var(--fw-semibold);
	line-height: 1;
	text-decoration: none;
	transition: background-color var(--transition-base),
		transform var(--transition-fast),
		box-shadow var(--transition-base);
	cursor: pointer;
	white-space: nowrap;
}

.btn:hover {
	transform: translateY(-1px);
	box-shadow: var(--shadow-md);
}

.btn:active {
	transform: translateY(0);
}

/* Arrow chevron on buttons */
.btn::after {
	content: '›';
	font-size: 1.2em;
	line-height: 1;
}

/* Hub — Navy */
.btn--navy {
	background-color: var(--color-hub-navy);
	color: var(--color-white);
}

.btn--navy:hover {
	background-color: #002a5c;
	color: var(--color-white);
}

/* Leadership — Sky Blue */
.btn--blue {
	background-color: var(--color-leadership-blue);
	color: var(--color-white);
}

.btn--blue:hover {
	background-color: #1479a8;
	color: var(--color-white);
}

/* Household — Amber */
.btn--amber {
	background-color: var(--color-household-amber);
	color: var(--color-white);
}

.btn--amber:hover {
	background-color: #d4820f;
	color: var(--color-white);
}

/* Aquatics — Green */
.btn--green {
	background-color: var(--color-aquatics-green);
	color: var(--color-white);
}

.btn--green:hover {
	background-color: #2e8024;
	color: var(--color-white);
}

/* Ghost / outline button */
.btn--ghost {
	background-color: transparent;
	color: var(--color-hub-navy);
	border: 2px solid var(--color-hub-navy);
}

.btn--ghost:hover {
	background-color: var(--color-hub-navy);
	color: var(--color-white);
}

/* ==========================================================================
   SECTION 6: SITE HEADER & NAVIGATION
   ========================================================================== */

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background-color: var(--color-hub-navy);
	height: var(--header-height);
	display: flex;
	align-items: center;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.site-header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
}

/* Logo */
.site-logo {
	display: flex;
	align-items: center;
	text-decoration: none;
	flex-shrink: 0;
}

/* Full header logo pill image — width is auto so pill proportions hold */
.site-logo__header-img {
	height: 56px;
	width: auto;
	display: block;
}

/* Legacy: circular icon + wordmark combo no longer used */
.site-logo img:not(.site-logo__header-img) {
	width: 56px;
	height: 56px;
	border-radius: var(--radius-full);
	object-fit: cover;
}

.site-logo__wordmark {
	display: none;
	/* Wordmark is now baked into BoSlottCom_HeaderLogo.png */
}

/* Primary Navigation */
.primary-nav {
	display: flex;
	align-items: center;
}

.primary-nav ul {
	display: flex;
	align-items: center;
	gap: var(--space-8);
	list-style: none;
}

.primary-nav a {
	font-size: var(--text-base);
	font-weight: var(--fw-medium);
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
	padding: var(--space-2) 0;
	border-bottom: 2px solid transparent;
	transition: color var(--transition-fast),
		border-color var(--transition-fast);
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"],
.primary-nav a.current-menu-item {
	color: var(--color-white);
	border-bottom-color: var(--color-cream);
}

/* Remove all Spoke-specific nav color overrides —
   every link uses the same universal highlight style above */

/* Mobile hamburger toggle */
.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	padding: var(--space-2);
	cursor: pointer;
}

.nav-toggle span {
	display: block;
	width: 26px;
	height: 2px;
	background-color: var(--color-white);
	border-radius: 2px;
	transition: transform var(--transition-base), opacity var(--transition-base);
}

/* ==========================================================================
   SECTION 7: PAGE HERO BANNERS
   ========================================================================== */

.page-hero {
	position: relative;
	min-height: 380px;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.page-hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.page-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(105deg,
			rgba(0, 25, 60, 0.70) 0%,
			rgba(0, 25, 60, 0.30) 60%,
			transparent 100%);
}

.page-hero__content {
	position: relative;
	z-index: 2;
	padding: var(--space-12) 0;
	max-width: 520px;
}

.page-hero__title {
	font-size: clamp(var(--text-4xl), 7vw, var(--text-6xl));
	font-weight: var(--fw-bold);
	color: var(--color-white);
	line-height: var(--leading-tight);
	margin-bottom: var(--space-4);
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.page-hero__subtitle {
	font-size: clamp(var(--text-base), 2.5vw, var(--text-xl));
	color: rgba(255, 255, 255, 0.90);
	line-height: var(--leading-snug);
	margin-bottom: var(--space-8);
}

.page-hero__subtitle strong {
	color: var(--color-white);
	font-weight: var(--fw-semibold);
}

.page-hero__mascot {
	position: absolute;
	right: 5%;
	bottom: 0;
	width: clamp(200px, 35%, 380px);
	z-index: 3;
}

.page-hero__mascot img {
	width: 100%;
	height: auto;
	border-radius: var(--radius-full);
	box-shadow: var(--shadow-xl);
}

/* Hero color overlays per page */
.page-hero--home {
	background-color: var(--color-hub-navy);
	min-height: 460px;
}

.page-hero--leadership {
	background-color: #1d3a2a;
}

.page-hero--household {
	background-color: #3a2a10;
}

.page-hero--aquatics {
	background-color: #0e2a38;
}

.page-hero--contact {
	background-color: #1a2e44;
}

.page-hero--about {
	background-color: #0e1e38;
}

/* ==========================================================================
   SECTION 7B: HOME PAGE — HERO & SPOKES LAYOUT
   ========================================================================== */

.home-hero {
	width: 100%;
	overflow: hidden;
	/* Texture is set inline in front-page.php on this element directly */
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: var(--color-cream);
}

.home-hero__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 480px;
}

/* Left column — transparent; inherits the full-section texture from .home-hero */
.home-hero__left {
	position: relative;
	display: flex;
	align-items: center;
	overflow: hidden;
	min-height: 480px;
}

.home-hero__text {
	position: relative;
	z-index: 2;
	padding: var(--space-16) var(--space-12);
	max-width: 560px;
	width: 100%;
}

.home-hero__title {
	font-size: clamp(var(--text-2xl), 3.2vw, var(--text-4xl));
	font-weight: var(--fw-bold);
	color: var(--color-hub-navy);
	/* Navy on beige — strong contrast */
	line-height: var(--leading-tight);
	margin-bottom: var(--space-5);
}

.home-hero__subtitle {
	font-size: clamp(var(--text-base), 2vw, var(--text-xl));
	color: var(--color-text-mid);
	/* Dark gray on beige */
	line-height: var(--leading-snug);
	margin-bottom: var(--space-8);
}

.home-hero__cta {
	font-size: var(--text-lg);
	padding: var(--space-4) var(--space-8);
	background-color: var(--color-hub-navy);
	border: 2px solid transparent;
}

.home-hero__cta:hover {
	background-color: #002a5c;
}

/* Right column — transparent, shares full-section heroBanner texture */
.home-hero__right {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: var(--space-4);
	padding: var(--space-12) var(--space-8);
}

/*
 * Circle image stack:
 * heroImage_background.png is a circular PNG — it defines its own shape.
 * We do NOT clip it inside a border-radius div (that caused the dark bleed).
 * Instead both images are stacked via position:absolute in a relative wrapper.
 */
.home-hero__circle {
	position: relative;
	width: clamp(260px, 36vw, 400px);
	height: clamp(260px, 36vw, 400px);
	display: flex;
	align-items: center;
	justify-content: center;
	/* No background-color, no border-radius, no overflow:hidden, no box-shadow */
}

/* Single hero image — no stacking needed */
.home-hero__mascot-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.home-hero__brand-label {
	font-size: var(--text-xl);
	font-weight: var(--fw-bold);
	color: var(--color-hub-navy);
	/* Navy on beige — matches left column text */
	letter-spacing: 0.01em;
}

/* =======================================================
   SINGLE POST PAGE
   ======================================================= */

/* ── Single hero ──────────────────────────────────────── */
.single-hero .home-hero__left-overlay {
	display: block;
	position: absolute;
	inset: 0;
	background: linear-gradient(108deg,
			rgba(0, 25, 60, 0.72) 0%,
			rgba(0, 25, 60, 0.55) 55%,
			rgba(0, 25, 60, 0.10) 100%);
	z-index: 1;
}

.single-hero .home-hero__title {
	color: var(--color-white);
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
	font-size: clamp(var(--text-xl), 2.8vw, var(--text-4xl));
}

.single-hero .home-hero__subtitle {
	color: rgba(255, 255, 255, 0.90);
}

.single-hero .breadcrumb,
.single-hero .breadcrumb a {
	color: rgba(255, 255, 255, 0.70);
}

.single-hero .breadcrumb a:hover {
	color: var(--color-white);
}

.single-hero .eyebrow {
	color: rgba(255, 255, 255, 0.85);
}

/* ── Hero circle — post featured image ────────────────── */
.single-hero__right {
	display: flex;
	align-items: center;
	justify-content: center;
}

.single-hero__circle {
	width: clamp(240px, 32vw, 420px);
	height: clamp(240px, 32vw, 420px);
	border-radius: var(--radius-full);
	overflow: hidden;
	border: 5px solid rgba(255, 255, 255, 0.25);
	box-shadow: 0 8px 40px rgba(0, 25, 60, 0.35);
	flex-shrink: 0;
}

.single-hero__circle-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* ── Single body wrapper ──────────────────────────────── */
.single-body {
	padding: var(--space-10) 0 var(--space-16);
}

/* ── Two-column layout ────────────────────────────────── */
.single-layout {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: var(--space-12);
	align-items: start;
	margin-top: var(--space-6);
}

/* ── Article ──────────────────────────────────────────── */
.single-article {
	background: var(--color-white);
	border-radius: var(--radius-lg);
	box-shadow: 0 2px 16px rgba(0, 25, 60, 0.07);
	overflow: hidden;
}

.single-article__header {
	padding: var(--space-8) var(--space-8) var(--space-6);
	border-bottom: 1px solid rgba(0, 25, 60, 0.08);
}

.single-article__title {
	font-size: var(--text-3xl);
	font-weight: var(--fw-bold);
	color: var(--color-hub-navy);
	line-height: var(--leading-snug);
	margin: 0 0 var(--space-3);
}

.single-article__byline {
	font-size: var(--text-sm);
	color: var(--color-text-light);
	margin: 0 0 var(--space-4);
}

.single-article__spoke-tag {
	display: inline-block;
	font-size: var(--text-xs);
	font-weight: var(--fw-bold);
	letter-spacing: 0.10em;
	text-transform: uppercase;
	padding: var(--space-1) var(--space-4);
	border-radius: var(--radius-sm);
}

/* ── Post content ─────────────────────────────────────── */
.single-article__content {
	padding: var(--space-8);
}

/* Typography within post content */
.entry-content h2 {
	font-size: var(--text-2xl);
	font-weight: var(--fw-bold);
	color: var(--color-hub-navy);
	margin: var(--space-8) 0 var(--space-4);
	line-height: var(--leading-snug);
}

.entry-content h3 {
	font-size: var(--text-xl);
	font-weight: var(--fw-bold);
	color: var(--color-hub-navy);
	margin: var(--space-6) 0 var(--space-3);
}

.entry-content p {
	font-size: var(--text-base);
	color: var(--color-text-mid);
	line-height: var(--leading-relaxed);
	margin: 0 0 var(--space-5);
}

.entry-content strong {
	color: var(--color-hub-navy);
	font-weight: var(--fw-bold);
}

.entry-content ul,
.entry-content ol {
	padding-left: var(--space-6);
	margin: 0 0 var(--space-5);
}

.entry-content li {
	font-size: var(--text-base);
	color: var(--color-text-mid);
	line-height: var(--leading-relaxed);
	margin-bottom: var(--space-2);
}

.entry-content blockquote {
	border-left: 4px solid var(--color-hub-navy);
	margin: var(--space-6) 0;
	padding: var(--space-4) var(--space-6);
	background: rgba(0, 25, 60, 0.04);
	border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.entry-content blockquote p {
	font-size: var(--text-lg);
	font-style: italic;
	color: var(--color-hub-navy);
	margin: 0;
}

/* Images within post content — full width with caption */
.entry-content img {
	max-width: 100%;
	height: auto;
	border-radius: var(--radius-md);
	display: block;
	margin: var(--space-6) 0;
}

.entry-content .wp-caption {
	max-width: 100%;
}

.entry-content .wp-caption-text {
	font-size: var(--text-sm);
	color: var(--color-text-light);
	text-align: center;
	margin-top: var(--space-2);
	font-style: italic;
}

/* Inline mascot + text layout (matches mockup side-by-side sections) */
.entry-content figure.alignleft {
	float: left;
	margin: 0 var(--space-6) var(--space-4) 0;
	max-width: 160px;
	text-align: center;
}

.entry-content figure.alignright {
	float: right;
	margin: 0 0 var(--space-4) var(--space-6);
	max-width: 160px;
	text-align: center;
}

.entry-content figure.alignleft img,
.entry-content figure.alignright img {
	border-radius: var(--radius-full);
	margin: 0 auto var(--space-2);
}

.entry-content::after {
	content: '';
	display: table;
	clear: both;
}

/* ── Article footer: tags ─────────────────────────────── */
.single-article__footer {
	padding: var(--space-5) var(--space-8);
	border-top: 1px solid rgba(0, 25, 60, 0.08);
	background: rgba(0, 25, 60, 0.02);
}

.single-article__tags {
	display: flex;
	align-items: center;
	gap: var(--space-2);
	flex-wrap: wrap;
	font-size: var(--text-sm);
	color: var(--color-text-light);
}

.single-article__tags a {
	color: var(--color-hub-navy);
	text-decoration: none;
	font-weight: var(--fw-medium);
}

.single-article__tags a:hover {
	text-decoration: underline;
}

/* ── Prev / Next post navigation ─────────────────────── */
.single-post-nav {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-4);
	margin-top: var(--space-8);
}

.single-post-nav__item {
	background: var(--color-white);
	border-radius: var(--radius-lg);
	padding: var(--space-5) var(--space-6);
	text-decoration: none;
	box-shadow: 0 2px 12px rgba(0, 25, 60, 0.07);
	display: flex;
	flex-direction: column;
	gap: var(--space-2);
	transition: box-shadow var(--transition-base), transform var(--transition-base);
	border: 2px solid transparent;
}

.single-post-nav__item:hover {
	box-shadow: 0 6px 20px rgba(0, 25, 60, 0.12);
	transform: translateY(-2px);
	border-color: var(--color-hub-navy);
}

.single-post-nav__item--next {
	text-align: right;
}

.single-post-nav__dir {
	font-size: var(--text-xs);
	font-weight: var(--fw-bold);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--color-hub-navy);
}

.single-post-nav__title {
	font-size: var(--text-sm);
	font-weight: var(--fw-medium);
	color: var(--color-text-mid);
	line-height: var(--leading-snug);
}

/* ── Sidebar: system mark card ────────────────────────── */
.sidebar-meet-steady__system-mark {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--space-2);
	margin: var(--space-2) 0;
}

.sidebar-meet-steady__system-mark img {
	width: 140px;
	height: 140px;
	object-fit: contain;
}

.sidebar-meet-steady__system-tagline {
	font-size: var(--text-sm);
	font-weight: var(--fw-bold);
	color: rgba(255, 255, 255, 0.85);
	text-align: center;
	margin: 0;
	font-style: italic;
}

/* ── Sidebar: spoke grid ──────────────────────────────── */
.sidebar-widget--spoke-grid {
	background: var(--color-white);
}

.sidebar-spoke-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-3) var(--space-2);
	margin-top: var(--space-2);
}

.sidebar-spoke-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--space-1);
	text-decoration: none;
	text-align: center;
}

.sidebar-spoke-item__circle {
	width: 64px;
	height: 64px;
	border-radius: var(--radius-full);
	overflow: hidden;
	border: 2px solid rgba(0, 25, 60, 0.12);
	transition: border-color var(--transition-fast),
		transform var(--transition-fast);
}

.sidebar-spoke-item:hover .sidebar-spoke-item__circle {
	border-color: var(--color-hub-navy);
	transform: translateY(-2px);
}

.sidebar-spoke-item__circle img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.sidebar-spoke-item__label {
	font-size: 10px;
	font-weight: var(--fw-medium);
	color: var(--color-text-mid);
	line-height: 1.3;
}

/* ── Single responsive ────────────────────────────────── */
@media (max-width: 1024px) {
	.single-layout {
		grid-template-columns: 1fr 260px;
		gap: var(--space-8);
	}
}

@media (max-width: 768px) {
	.single-layout {
		grid-template-columns: 1fr;
	}

	.single-sidebar {
		order: -1;
	}

	.single-hero__circle {
		width: 180px;
		height: 180px;
	}

	.single-article__header,
	.single-article__content {
		padding: var(--space-5);
	}

	.single-post-nav {
		grid-template-columns: 1fr;
	}

	.single-post-nav__item--next {
		text-align: left;
	}
}

/* Blog Roll Page
   ======================================================= */

/* ── Blog hero carousel ───────────────────────────────── */

.blog-hero-carousel {
	position: relative;
	width: 100%;
	/* Height matches the home-hero section height */
	height: clamp(420px, 55vw, 620px);
	overflow: hidden;
}

/* ALL slides sit absolutely in the same position — opacity toggles visibility */
.blog-hero-slide {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.6s ease;
	/* Replicate home-hero__inner layout inside each slide */
}

.blog-hero-slide.is-active {
	opacity: 1;
	pointer-events: auto;
}

/* Slides contain home-hero__inner — make it fill slide height */
.blog-hero-slide .home-hero__inner {
	height: 100%;
}

.blog-hero-slide .home-hero__left,
.blog-hero-slide .home-hero__right {
	height: 100%;
}

/* Post featured image in hero right column */
.blog-hero__featured-img {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.blog-hero__featured-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Dot navigation */
.blog-hero-dots {
	position: absolute;
	bottom: var(--space-5);
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: var(--space-3);
	z-index: 10;
}

.blog-hero-dot {
	width: 10px;
	height: 10px;
	border-radius: var(--radius-full);
	background: rgba(255, 255, 255, 0.45);
	border: none;
	cursor: pointer;
	padding: 0;
	transition: background var(--transition-fast),
		transform var(--transition-fast);
}

.blog-hero-dot.is-active,
.blog-hero-dot:hover {
	background: var(--color-white);
	transform: scale(1.3);
}

/* ── Blog hero ────────────────────────────────────────── */

/* Override: blog-hero defers height to .blog-hero-carousel.
   Remove the min-height from home-hero__inner for this page
   so the carousel's fixed height is the sole source of truth. */
.blog-hero {
	overflow: hidden;
	padding: 0;
}

.blog-hero .home-hero__inner {
	min-height: 0;
	height: 100%;
}

.blog-hero .home-hero__left {
	min-height: 0;
}

.blog-hero .home-hero__left-overlay {
	display: block;
	position: absolute;
	inset: 0;
	background: linear-gradient(108deg,
			rgba(0, 25, 60, 0.72) 0%,
			rgba(0, 25, 60, 0.55) 55%,
			rgba(0, 25, 60, 0.10) 100%);
	z-index: 1;
}

.blog-hero .home-hero__title {
	color: var(--color-white);
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
	font-size: clamp(var(--text-2xl), 3.2vw, var(--text-4xl));
}

.blog-hero .home-hero__subtitle {
	color: rgba(255, 255, 255, 0.90);
}

.blog-hero .breadcrumb,
.blog-hero .breadcrumb a {
	color: rgba(255, 255, 255, 0.70);
}

.blog-hero .eyebrow {
	color: var(--color-white);
	opacity: 0.80;
}

/* ── Blog body wrapper ────────────────────────────────── */
.blog-body {
	padding: var(--space-10) 0 var(--space-16);
}

/* ── Two-column layout: posts left, sidebar right ─────── */
.blog-layout {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: var(--space-12);
	align-items: start;
	margin-top: var(--space-6);
}

/* ── Post grid ────────────────────────────────────────── */
.blog-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--space-8);
}

/* ── Blog card ────────────────────────────────────────── */
.blog-card {
	background: var(--color-white);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(0, 25, 60, 0.08);
	display: flex;
	flex-direction: column;
	transition: box-shadow var(--transition-base),
		transform var(--transition-base);
}

.blog-card:hover {
	box-shadow: 0 6px 24px rgba(0, 25, 60, 0.14);
	transform: translateY(-3px);
}

/* Card top image — full width, fixed aspect ratio */
.blog-card__img-link {
	display: block;
	text-decoration: none;
	overflow: hidden;
	border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.blog-card__img-top {
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: var(--color-cream);
}

.blog-card__img-top img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.blog-card:hover .blog-card__img-top img {
	transform: scale(1.04);
}

/* Card body */
.blog-card__body {
	padding: var(--space-4) var(--space-5) var(--space-6);
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: var(--space-2);
}

/* Spoke label tag */
.blog-card__spoke-tag {
	font-size: var(--text-xs);
	font-weight: var(--fw-bold);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: var(--space-1) var(--space-3);
	border-radius: var(--radius-sm);
	display: inline-block;
	width: fit-content;
}

/* Title */
.blog-card__title {
	font-size: var(--text-base);
	font-weight: var(--fw-bold);
	color: var(--color-hub-navy);
	line-height: var(--leading-snug);
	margin: 0;
}

.blog-card__title a {
	color: inherit;
	text-decoration: none;
}

.blog-card__title a:hover {
	color: var(--color-leadership-blue);
}

/* Excerpt */
.blog-card__excerpt {
	font-size: var(--text-sm);
	color: var(--color-text-mid);
	line-height: var(--leading-relaxed);
	flex: 1;
	margin: 0;
}

/* CTA button */
.blog-card__btn {
	margin-top: var(--space-3);
	font-size: var(--text-sm);
	padding: var(--space-2) var(--space-4);
	align-self: flex-start;
}

/* ── Pagination ───────────────────────────────────────── */
.blog-pagination {
	display: flex;
	align-items: center;
	gap: var(--space-2);
	flex-wrap: wrap;
	margin-top: var(--space-10);
	padding-top: var(--space-6);
	border-top: 1px solid rgba(0, 25, 60, 0.10);
}

.blog-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 var(--space-3);
	border-radius: var(--radius-md);
	background: var(--color-white);
	color: var(--color-hub-navy);
	font-family: var(--font-base);
	font-weight: var(--fw-medium);
	font-size: var(--text-sm);
	text-decoration: none;
	border: 2px solid rgba(0, 25, 60, 0.15);
	transition: background var(--transition-fast),
		color var(--transition-fast),
		border-color var(--transition-fast),
		transform var(--transition-fast);
}

.blog-pagination .page-numbers:hover {
	background: var(--color-hub-navy);
	color: var(--color-white);
	border-color: var(--color-hub-navy);
	transform: translateY(-2px);
}

.blog-pagination .page-numbers.current {
	background: var(--color-hub-navy);
	color: var(--color-white);
	border-color: var(--color-hub-navy);
	font-weight: var(--fw-bold);
	cursor: default;
	transform: none;
}

.blog-pagination .page-numbers.dots {
	background: transparent;
	border-color: transparent;
	color: var(--color-text-light);
	cursor: default;
	pointer-events: none;
}

/* Prev / Next get a wider pill treatment */
.blog-pagination .prev.page-numbers,
.blog-pagination .next.page-numbers {
	padding: 0 var(--space-5);
	font-weight: var(--fw-bold);
	letter-spacing: 0.02em;
}

/* ── Empty state ──────────────────────────────────────── */
.blog-empty {
	text-align: center;
	padding: var(--space-16) var(--space-8);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--space-4);
}

.blog-empty__img {
	width: 160px;
	height: 160px;
	border-radius: var(--radius-full);
	object-fit: cover;
	border: 3px solid var(--color-cream);
}

/* ── Sidebar ──────────────────────────────────────────── */
.blog-sidebar {
	display: flex;
	flex-direction: column;
	gap: var(--space-6);
	position: sticky;
	top: calc(var(--header-height, 80px) + var(--space-6));
}

/* Sidebar widget base */
.sidebar-widget {
	background: var(--color-white);
	border-radius: var(--radius-lg);
	padding: var(--space-5);
	box-shadow: 0 2px 12px rgba(0, 25, 60, 0.07);
}

.sidebar-widget__title {
	font-size: var(--text-base);
	font-weight: var(--fw-bold);
	color: var(--color-hub-navy);
	margin-bottom: var(--space-4);
}

/* Filter checkboxes */
.filter-checkboxes {
	display: flex;
	flex-direction: column;
	gap: var(--space-3);
}

.filter-check {
	display: flex;
	align-items: center;
	gap: var(--space-2);
	cursor: pointer;
	user-select: none;
}

.filter-check input[type="checkbox"] {
	display: none;
}

.filter-check__box {
	width: 18px;
	height: 18px;
	border-radius: var(--radius-sm);
	border: 2px solid rgba(0, 25, 60, 0.25);
	background: var(--color-white);
	flex-shrink: 0;
	position: relative;
	transition: background var(--transition-fast), border-color var(--transition-fast);
}

/* Checkmark */
.filter-check__box::after {
	content: '';
	position: absolute;
	top: 2px;
	left: 5px;
	width: 5px;
	height: 9px;
	border: 2px solid white;
	border-top: none;
	border-left: none;
	transform: rotate(45deg);
	opacity: 0;
	transition: opacity var(--transition-fast);
}

.filter-check input:checked~.filter-check__box::after {
	opacity: 1;
}

.filter-check--blue input:checked~.filter-check__box {
	background: var(--color-leadership-blue);
	border-color: var(--color-leadership-blue);
}

.filter-check--amber input:checked~.filter-check__box {
	background: var(--color-household-amber);
	border-color: var(--color-household-amber);
}

.filter-check--green input:checked~.filter-check__box {
	background: var(--color-aquatics-green);
	border-color: var(--color-aquatics-green);
}

.filter-check__label {
	font-size: var(--text-sm);
	font-weight: var(--fw-medium);
	color: var(--color-hub-navy);
	flex: 1;
}

.filter-check__icon {
	width: 28px;
	height: 28px;
	border-radius: var(--radius-full);
	object-fit: cover;
}

/* Meet Steady card */
.sidebar-widget--meet-steady {
	background: var(--color-hub-navy);
	color: var(--color-white);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--space-3);
}

.sidebar-meet-steady__intro {
	font-size: var(--text-sm);
	font-weight: var(--fw-bold);
	color: var(--color-white);
	margin: 0;
	line-height: var(--leading-snug);
}

.sidebar-meet-steady__img {
	width: 120px;
	height: 120px;
	border-radius: var(--radius-full);
	object-fit: cover;
	border: 3px solid rgba(255, 255, 255, 0.20);
}

.sidebar-meet-steady__icons {
	display: flex;
	gap: var(--space-2);
	justify-content: center;
}

.sidebar-meet-steady__spoke-icon {
	width: 32px;
	height: 32px;
	border-radius: var(--radius-full);
	object-fit: cover;
	border: 2px solid rgba(255, 255, 255, 0.20);
}

.sidebar-meet-steady__label {
	font-size: var(--text-sm);
	font-weight: var(--fw-bold);
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
	letter-spacing: 0.03em;
}

/* Follow widget */
.sidebar-widget--follow {
	background: var(--color-white);
}

.sidebar-follow__label {
	font-size: var(--text-sm);
	color: var(--color-text-mid);
	margin-bottom: var(--space-3);
}

/* ── Blog responsive ──────────────────────────────────── */
@media (max-width: 1024px) {
	.blog-layout {
		grid-template-columns: 1fr 260px;
		gap: var(--space-8);
	}
}

@media (max-width: 768px) {
	.blog-layout {
		grid-template-columns: 1fr;
	}

	.blog-sidebar {
		position: static;
		order: -1;
	}

	.blog-grid {
		grid-template-columns: 1fr;
	}
}

/* Contact hero — uses household amber background.
   Same overlay/text treatment as other illustrated heroes. */
.contact-hero .home-hero__left-overlay {
	display: block;
	position: absolute;
	inset: 0;
	background: linear-gradient(108deg,
			rgba(0, 25, 60, 0.72) 0%,
			rgba(0, 25, 60, 0.55) 55%,
			rgba(0, 25, 60, 0.10) 100%);
	z-index: 1;
}

.contact-hero .home-hero__title {
	color: var(--color-white);
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.contact-hero .home-hero__subtitle {
	color: rgba(255, 255, 255, 0.90);
}

.contact-hero .breadcrumb,
.contact-hero .breadcrumb a {
	color: rgba(255, 255, 255, 0.70);
}

.contact-hero .breadcrumb a:hover {
	color: var(--color-white);
}

/* ── Contact Intro Strip (3-column) ───────────────────────────── */

.contact-intro__grid {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: start;
	gap: var(--space-10) var(--space-12);
}

.contact-intro__heading {
	font-size: var(--text-2xl);
	font-weight: var(--fw-bold);
	color: var(--color-hub-navy);
	margin-bottom: var(--space-3);
}

.contact-intro__col--right {
	text-align: left;
}

.contact-intro__center {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--space-3);
	padding-top: var(--space-2);
}

.contact-intro__mark {
	width: clamp(160px, 22vw, 240px);
	height: auto;
}

.contact-intro__tagline {
	font-size: var(--text-lg);
	font-weight: var(--fw-bold);
	color: var(--color-hub-navy);
	text-align: center;
	margin: 0;
}

/* ── Email pill ───────────────────────────────────────────────── */

.contact-email-pill {
	display: inline-block;
	background-color: var(--color-hub-navy);
	color: var(--color-white);
	font-family: 'Courier New', Courier, monospace;
	font-size: var(--text-base);
	padding: var(--space-3) var(--space-5);
	border-radius: var(--radius-md);
	text-decoration: none;
	margin: var(--space-3) 0;
	transition: background-color var(--transition-fast);
}

.contact-email-pill:hover {
	background-color: var(--color-navy-mid);
	color: var(--color-white);
}

.contact-response-note {
	font-size: var(--text-sm);
	color: var(--color-text-light);
	margin: var(--space-1) 0 var(--space-4);
}

.contact-follow-note {
	font-size: var(--text-sm);
	color: var(--color-text-light);
	margin-top: var(--space-3);
}

/* ── Contact social icons ─────────────────────────────────────── */

.contact-social-icons {
	display: flex;
	align-items: center;
	gap: var(--space-3);
	margin: var(--space-2) 0;
}

.contact-social-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: var(--radius-full);
	background-color: var(--color-hub-navy);
	color: var(--color-white);
	text-decoration: none;
	transition: background-color var(--transition-fast),
		transform var(--transition-fast);
}

.contact-social-icon:hover {
	background-color: var(--color-navy-mid);
	transform: translateY(-2px);
}

.contact-social-icon svg {
	width: 18px;
	height: 18px;
	fill: var(--color-white);
}

/* ── Contact form section ─────────────────────────────────────── */

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-12) var(--space-16);
	align-items: start;
}

.contact-form-wrap h2,
.contact-direct h2 {
	font-size: var(--text-2xl);
	font-weight: var(--fw-bold);
	color: var(--color-hub-navy);
	margin-bottom: var(--space-5);
}

.contact-direct {
	padding-top: var(--space-2);
}

/* ── Contact form submit button ───────────────────────────────── */

.contact-form__submit {
	margin-top: var(--space-2);
	padding: var(--space-3) var(--space-8);
	font-size: var(--text-base);
}

/* ── Form status message ──────────────────────────────────────── */

.contact-form__status {
	margin-top: var(--space-4);
	padding: var(--space-3) var(--space-5);
	border-radius: var(--radius-md);
	font-size: var(--text-base);
}

.contact-form__status.is-success {
	background-color: rgba(60, 160, 48, 0.12);
	color: #2a7a20;
	border: 1px solid rgba(60, 160, 48, 0.3);
}

.contact-form__status.is-error {
	background-color: rgba(200, 50, 50, 0.10);
	color: #8b1a1a;
	border: 1px solid rgba(200, 50, 50, 0.25);
}

/* ── Contact responsive ───────────────────────────────────────── */

@media (max-width: 1024px) {
	.contact-intro__grid {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto auto;
	}

	.contact-intro__center {
		grid-column: 1 / -1;
		order: -1;
	}
}

@media (max-width: 768px) {
	.contact-intro__grid {
		grid-template-columns: 1fr;
	}

	.contact-intro__center {
		order: 0;
	}

	.contact-intro__col--right {
		text-align: center;
	}

	.contact-social-icons {
		justify-content: center;
	}

	.contact-grid {
		grid-template-columns: 1fr;
		gap: var(--space-10);
	}
}

/* Aquatics hero — same overlay treatment as other spoke pages.
   Bright pool/mountain illustrated scene; overlay makes left
   text legible while water and landscape show through right. */
.aquatics-hero .home-hero__left-overlay {
	display: block;
	position: absolute;
	inset: 0;
	background: linear-gradient(108deg,
			rgba(0, 25, 60, 0.72) 0%,
			rgba(0, 25, 60, 0.55) 55%,
			rgba(0, 25, 60, 0.10) 100%);
	z-index: 1;
}

.aquatics-hero .home-hero__title {
	color: var(--color-white);
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.aquatics-hero .home-hero__title span {
	color: var(--color-aquatics-green);
}

.aquatics-hero .home-hero__subtitle {
	color: rgba(255, 255, 255, 0.90);
}

.aquatics-hero .breadcrumb,
.aquatics-hero .breadcrumb a {
	color: rgba(255, 255, 255, 0.70);
}

.aquatics-hero .breadcrumb a:hover {
	color: var(--color-white);
}

.aquatics-hero .eyebrow {
	color: var(--color-aquatics-green);
}

/* Household hero — same overlay treatment as Leadership/About.
   Warm amber illustrated landscape; overlay makes left text legible
   while the home scene shows through on the right. */
.household-hero .home-hero__left-overlay {
	display: block;
	position: absolute;
	inset: 0;
	background: linear-gradient(108deg,
			rgba(0, 25, 60, 0.72) 0%,
			rgba(0, 25, 60, 0.55) 55%,
			rgba(0, 25, 60, 0.10) 100%);
	z-index: 1;
}

.household-hero .home-hero__title {
	color: var(--color-white);
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.household-hero .home-hero__title span {
	color: var(--color-household-amber);
}

.household-hero .home-hero__subtitle {
	color: rgba(255, 255, 255, 0.90);
}

.household-hero .breadcrumb,
.household-hero .breadcrumb a {
	color: rgba(255, 255, 255, 0.70);
}

.household-hero .breadcrumb a:hover {
	color: var(--color-white);
}

.household-hero .eyebrow {
	color: var(--color-household-amber);
}

/* About hero — same overlay treatment as Leadership.
   Coastal landscape is bright; overlay makes left text legible
   while the beach still shows through on the right. */
.about-hero .home-hero__left-overlay {
	display: block;
	position: absolute;
	inset: 0;
	background: linear-gradient(108deg,
			rgba(0, 25, 60, 0.72) 0%,
			rgba(0, 25, 60, 0.55) 55%,
			rgba(0, 25, 60, 0.10) 100%);
	z-index: 1;
}

.about-hero .home-hero__title {
	color: var(--color-white);
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.about-hero .home-hero__subtitle {
	color: rgba(255, 255, 255, 0.90);
}

.about-hero .breadcrumb,
.about-hero .breadcrumb a {
	color: rgba(255, 255, 255, 0.70);
}

.about-hero .breadcrumb a:hover {
	color: var(--color-white);
}

/* Leadership hero — re-enable overlay on left column.
   The illustrated mountain background is bright, so text needs
   a dark gradient behind it for legibility. */
.leadership-hero .home-hero__left-overlay {
	display: block;
	position: absolute;
	inset: 0;
	background: linear-gradient(108deg,
			rgba(0, 25, 60, 0.72) 0%,
			rgba(0, 25, 60, 0.55) 55%,
			rgba(0, 25, 60, 0.10) 100%);
	z-index: 1;
}

/* On leadership hero the title and subtitle sit on the dark overlay —
   restore white text color for this hero only */
.leadership-hero .home-hero__title {
	color: var(--color-white);
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.leadership-hero .home-hero__title span {
	color: var(--color-leadership-blue);
}

.leadership-hero .home-hero__subtitle {
	color: rgba(255, 255, 255, 0.90);
}

.leadership-hero .breadcrumb,
.leadership-hero .breadcrumb a {
	color: rgba(255, 255, 255, 0.70);
}

.leadership-hero .breadcrumb a:hover {
	color: var(--color-white);
}

.leadership-hero .eyebrow {
	color: var(--color-leadership-blue);
}

.home-spokes__top-row {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: var(--space-8) var(--space-12);
	margin-bottom: var(--space-10);
}

.home-spokes__hub {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--space-3);
}

.home-spokes__hub .hub-node {
	width: 110px;
	height: 110px;
	border-radius: var(--radius-full);
	overflow: hidden;
	box-shadow: var(--shadow-xl);
	border: 3px solid rgba(0, 25, 60, 0.12);
}

.home-spokes__hub .hub-node img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-spokes__hub-label {
	font-size: var(--text-base);
	font-weight: var(--fw-bold);
	color: var(--color-hub-navy);
}

.home-spokes__bottom-row {
	display: flex;
	justify-content: center;
}

.home-spokes__bottom-row .spoke-card {
	max-width: 280px;
	width: 100%;
}

@media (max-width: 900px) {
	.home-hero__inner {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.home-hero__left {
		min-height: 380px;
	}

	.home-hero__text {
		padding: var(--space-12) var(--space-6);
		max-width: 100%;
	}

	.home-hero__right {
		padding: var(--space-10) var(--space-6);
	}

	.home-spokes__top-row {
		grid-template-columns: 1fr;
		gap: var(--space-8);
		justify-items: center;
	}

	.home-spokes__hub {
		order: -1;
	}
}

@media (max-width: 768px) {

	/* Center hero text content */
	.home-hero__left {
		min-height: auto;
	}

	.home-hero__text {
		padding: var(--space-10) var(--space-5);
		text-align: center;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.home-hero__title {
		text-align: center;
	}

	.home-hero__subtitle {
		text-align: center;
	}

	/* Center mascot circle */
	.home-hero__right {
		padding: var(--space-8) var(--space-5);
		align-items: center;
	}

	.home-hero__circle {
		width: clamp(220px, 72vw, 320px);
		height: clamp(220px, 72vw, 320px);
	}

	.home-hero__brand-label {
		text-align: center;
	}
}

/* ==========================================================================
   SECTION 8: CARDS & FEATURE BLOCKS
   ========================================================================== */

/* Three-column feature grid */
.feature-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-6);
	margin-top: var(--space-10);
}

.feature-card {
	background-color: var(--color-white);
	border-radius: var(--radius-md);
	padding: var(--space-8) var(--space-6);
	box-shadow: var(--shadow-sm);
	transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.feature-card:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-2px);
}

.feature-card__icon {
	width: 64px;
	height: 64px;
	border-radius: var(--radius-full);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: var(--space-5);
}

.feature-card__icon img {
	width: 40px;
	height: 40px;
	object-fit: contain;
}

.feature-card__title {
	font-size: var(--text-xl);
	font-weight: var(--fw-bold);
	color: var(--color-hub-navy);
	margin-bottom: var(--space-3);
}

.feature-card__text {
	font-size: var(--text-base);
	color: var(--color-text-mid);
	line-height: var(--leading-relaxed);
	margin-bottom: 0;
}

/* Feature card color themes */
.feature-card--blue {
	border-top: 4px solid var(--color-leadership-blue);
}

.feature-card--blue .feature-card__icon {
	background-color: rgba(25, 150, 200, 0.12);
}

.feature-card--blue .feature-card__title {
	color: var(--color-leadership-blue);
}

.feature-card--amber {
	border-top: 4px solid var(--color-household-amber);
}

.feature-card--amber .feature-card__icon {
	background-color: rgba(240, 150, 40, 0.12);
}

.feature-card--amber .feature-card__title {
	color: var(--color-household-amber);
}

.feature-card--green {
	border-top: 4px solid var(--color-aquatics-green);
}

.feature-card--green .feature-card__icon {
	background-color: rgba(60, 160, 48, 0.12);
}

.feature-card--green .feature-card__title {
	color: var(--color-aquatics-green);
}

.feature-card--navy {
	border-top: 4px solid var(--color-hub-navy);
}

.feature-card--navy .feature-card__icon {
	background-color: rgba(0, 25, 60, 0.10);
}

/* Two-column content + mascot layout */
.content-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-16);
	align-items: center;
}

.content-split--reverse {
	direction: rtl;
}

.content-split--reverse>* {
	direction: ltr;
}

.content-split__text h2 {
	margin-bottom: var(--space-5);
}

.content-split__text p {
	margin-bottom: var(--space-4);
}

.content-split__text ul {
	list-style: disc;
	padding-left: var(--space-6);
	margin-bottom: var(--space-6);
}

.content-split__text ul li {
	color: var(--color-text-mid);
	line-height: var(--leading-relaxed);
	margin-bottom: var(--space-2);
}

.content-split__media {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: var(--space-4);
}

.content-split__media img {
	width: 100%;
	max-width: 320px;
	border-radius: var(--radius-full);
	box-shadow: var(--shadow-lg);
}

.content-split__media-label {
	font-size: var(--text-lg);
	font-weight: var(--fw-bold);
	color: var(--color-hub-navy);
}

.content-split__media-desc {
	font-size: var(--text-sm);
	color: var(--color-text-mid);
	max-width: 260px;
	text-align: center;
}

/* ==========================================================================
   SECTION 9: SPOKE HUB CARDS (Home page domain links)
   ========================================================================== */

.spoke-hub {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-8);
	align-items: start;
	margin-top: var(--space-12);
}

.spoke-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: var(--space-4);
}

.spoke-card__img-wrap {
	width: 200px;
	height: 200px;
	border-radius: var(--radius-full);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.spoke-card:hover .spoke-card__img-wrap {
	transform: scale(1.04);
	box-shadow: var(--shadow-xl);
}

.spoke-card__img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.spoke-card__title {
	font-size: var(--text-xl);
	font-weight: var(--fw-bold);
}

.spoke-card--leadership .spoke-card__title {
	color: var(--color-leadership-blue);
}

.spoke-card--household .spoke-card__title {
	color: var(--color-household-amber);
}

.spoke-card--aquatics .spoke-card__title {
	color: var(--color-aquatics-green);
}

.spoke-card__desc {
	font-size: var(--text-sm);
	color: var(--color-text-mid);
	line-height: var(--leading-relaxed);
	max-width: 240px;
}

/* Hub-and-spoke connector diagram */
.hub-spoke-diagram {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--space-4);
	position: relative;
}

.hub-node {
	width: 120px;
	height: 120px;
	border-radius: var(--radius-full);
	overflow: hidden;
	box-shadow: var(--shadow-xl);
	z-index: 2;
}

.hub-node img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ==========================================================================
   SECTION 10: ABOUT PAGE — HUB-AND-SPOKE TABLE
   ========================================================================== */

.spoke-table {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-4);
	margin-top: var(--space-8);
}

.spoke-table__col {
	border-radius: var(--radius-md);
	padding: var(--space-6);
	border-top: 4px solid;
}

.spoke-table__col--blue {
	border-top-color: var(--color-leadership-blue);
	background-color: rgba(25, 150, 200, 0.06);
}

.spoke-table__col--amber {
	border-top-color: var(--color-household-amber);
	background-color: rgba(240, 150, 40, 0.06);
}

.spoke-table__col--green {
	border-top-color: var(--color-aquatics-green);
	background-color: rgba(60, 160, 48, 0.06);
}

.spoke-table__head {
	font-size: var(--text-base);
	font-weight: var(--fw-bold);
	margin-bottom: var(--space-4);
}

.spoke-table__col--blue .spoke-table__head {
	color: var(--color-leadership-blue);
}

.spoke-table__col--amber .spoke-table__head {
	color: var(--color-household-amber);
}

.spoke-table__col--green .spoke-table__head {
	color: var(--color-aquatics-green);
}

.spoke-table__body {
	font-size: var(--text-sm);
	color: var(--color-text-mid);
	line-height: var(--leading-relaxed);
}

.spoke-table__body ul {
	list-style: disc;
	padding-left: var(--space-5);
	margin: var(--space-3) 0;
}

.spoke-table__body ul li {
	margin-bottom: var(--space-2);
}

/* Foundation checklist */
.foundation-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: var(--space-3);
}

.foundation-list li {
	display: flex;
	align-items: flex-start;
	gap: var(--space-3);
	font-size: var(--text-base);
	color: var(--color-text-mid);
	line-height: var(--leading-normal);
}

.foundation-list li::before {
	content: '✓';
	color: var(--color-aquatics-green);
	font-weight: var(--fw-bold);
	font-size: var(--text-lg);
	flex-shrink: 0;
	margin-top: -1px;
}

/* ==========================================================================
   SECTION 11: CONTACT FORM
   ========================================================================== */

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-16);
	align-items: start;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: var(--space-4);
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-4);
}

.form-field {
	display: flex;
	flex-direction: column;
	gap: var(--space-2);
}

.form-field label {
	font-size: var(--text-sm);
	font-weight: var(--fw-semibold);
	color: var(--color-hub-navy);
}

.form-field input,
.form-field textarea,
.form-field select {
	width: 100%;
	padding: var(--space-3) var(--space-4);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	font-size: var(--text-base);
	color: var(--color-text-dark);
	background-color: var(--color-white);
	transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
	border-color: var(--color-hub-navy);
	box-shadow: 0 0 0 3px rgba(0, 25, 60, 0.12);
	outline: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
	color: var(--color-text-light);
}

.form-field textarea {
	min-height: 140px;
	resize: vertical;
}

/* Contact sidebar */
.contact-sidebar {
	display: flex;
	flex-direction: column;
	gap: var(--space-8);
}

.contact-email-btn {
	display: block;
	width: 100%;
	padding: var(--space-4);
	background-color: var(--color-hub-navy);
	color: var(--color-white);
	text-align: center;
	border-radius: var(--radius-sm);
	font-family: var(--font-mono);
	font-size: var(--text-sm);
	font-weight: var(--fw-semibold);
	letter-spacing: 0.02em;
	transition: background-color var(--transition-fast);
}

.contact-email-btn:hover {
	background-color: #002a5c;
	color: var(--color-white);
}

.contact-response-note {
	font-size: var(--text-sm);
	color: var(--color-text-light);
	margin-top: var(--space-2);
}

/* Social icons row */
.social-row {
	display: flex;
	align-items: center;
	gap: var(--space-4);
}

.social-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: var(--radius-full);
	background-color: var(--color-hub-navy);
	color: var(--color-white);
	font-size: var(--text-lg);
	transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.social-icon:hover {
	background-color: var(--color-leadership-blue);
	transform: scale(1.08);
	color: var(--color-white);
}

.social-icon svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

/* ==========================================================================
   SECTION 12: MAXIM BANNER
   ========================================================================== */

.maxim-banner {
	background-color: var(--color-hub-navy);
	padding: var(--space-8) 0;
	text-align: center;
}

.maxim-banner__text {
	font-size: clamp(var(--text-base), 2vw, var(--text-xl));
	font-style: italic;
	color: rgba(255, 255, 255, 0.85);
	font-weight: var(--fw-medium);
	letter-spacing: 0.01em;
}

.maxim-banner__text strong {
	color: var(--color-white);
	font-style: normal;
}

/* ==========================================================================
   SECTION 13: SITE FOOTER
   ========================================================================== */

.site-footer {
	background: linear-gradient(180deg,
			var(--color-hub-navy) 0%,
			#000E22 100%);
	color: rgba(255, 255, 255, 0.80);
	padding-top: 0;
}

/* Footer top — logo + tagline band */
.footer-top {
	background-color: var(--color-hub-navy);
	padding: var(--space-10) 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-top__inner {
	display: flex;
	align-items: center;
	gap: var(--space-6);
}

.footer-top__logo {
	width: 72px;
	height: 72px;
	border-radius: var(--radius-full);
	flex-shrink: 0;
}

.footer-top__brand h2 {
	font-size: var(--text-3xl);
	font-weight: var(--fw-bold);
	color: var(--color-white);
	margin-bottom: var(--space-2);
}

.footer-top__brand p {
	font-size: var(--text-base);
	color: rgba(255, 255, 255, 0.70);
	max-width: 560px;
	line-height: var(--leading-normal);
	margin: 0;
}

/* Footer main — three columns */
.footer-main {
	padding: var(--space-12) 0;
}

.footer-cols {
	display: grid;
	grid-template-columns: 1fr 2fr 1fr;
	gap: var(--space-12);
}

.footer-col h4 {
	font-size: var(--text-base);
	font-weight: var(--fw-bold);
	color: var(--color-white);
	margin-bottom: var(--space-5);
	letter-spacing: 0.02em;
}

/* Footer Navigation column */
.footer-nav {
	display: flex;
	flex-direction: column;
	gap: var(--space-3);
}

.footer-nav a {
	font-size: var(--text-base);
	color: rgba(255, 255, 255, 0.75);
	transition: color var(--transition-fast);
}

.footer-nav a:hover {
	color: var(--color-white);
}

/* Footer Domains column */
.footer-domains {
	display: flex;
	flex-direction: column;
	gap: var(--space-4);
}

.footer-domain-item {
	display: flex;
	align-items: center;
	gap: var(--space-3);
	font-size: var(--text-base);
	color: rgba(255, 255, 255, 0.80);
	font-weight: var(--fw-medium);
}

.footer-domain-item img {
	width: 32px;
	height: 32px;
	border-radius: var(--radius-full);
	object-fit: cover;
	flex-shrink: 0;
}

.footer-domain-item span strong {
	color: var(--color-white);
	font-weight: var(--fw-bold);
}

.footer-domain-item span em {
	font-style: normal;
	opacity: 0.8;
}

.footer-integrated-mark {
	width: 180px;
	height: auto;
	margin: var(--space-6) auto 0;
	display: block;
}

/* Footer Socials column */
.footer-socials {
	display: flex;
	flex-direction: column;
	gap: var(--space-4);
}

.footer-social-icons {
	display: flex;
	gap: var(--space-3);
}

.footer-email {
	font-family: var(--font-mono);
	font-size: var(--text-sm);
	color: rgba(255, 255, 255, 0.75);
	transition: color var(--transition-fast);
}

.footer-email:hover {
	color: var(--color-white);
}

.footer-legal-links {
	display: flex;
	flex-direction: column;
	gap: var(--space-2);
	margin-top: var(--space-4);
	padding-top: var(--space-4);
	border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-legal-links a {
	font-size: var(--text-sm);
	color: rgba(255, 255, 255, 0.60);
	transition: color var(--transition-fast);
}

.footer-legal-links a:hover {
	color: var(--color-white);
}

/* Footer maxim stripe */
.footer-maxim {
	padding: var(--space-5) 0;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	text-align: center;
	font-size: var(--text-base);
	font-style: italic;
	color: rgba(255, 255, 255, 0.65);
	letter-spacing: 0.02em;
}

/* Footer bottom bar */
.footer-bottom {
	background-color: var(--color-navy-dark);
	padding: var(--space-4) 0;
}

.footer-bottom__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: var(--space-4);
}

.footer-copyright {
	font-size: var(--text-sm);
	color: rgba(255, 255, 255, 0.50);
}

.footer-bottom-links {
	display: flex;
	gap: var(--space-6);
}

.footer-bottom-links a {
	font-size: var(--text-sm);
	color: rgba(255, 255, 255, 0.50);
	transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
	color: var(--color-white);
}

/* ==========================================================================
   SECTION 14: BACKGROUND / SECTION VARIANTS
   ========================================================================== */

.bg-white {
	background-color: var(--color-white);
}

.bg-cream {
	background-color: var(--color-cream);
}

.bg-cream-lt {
	background-color: var(--color-cream-light);
}

.bg-navy {
	background-color: var(--color-hub-navy);
	color: var(--color-white);
}

.bg-blue-lt {
	background-color: rgba(25, 150, 200, 0.06);
}

.bg-amber-lt {
	background-color: rgba(240, 150, 40, 0.08);
}

.bg-green-lt {
	background-color: rgba(60, 160, 48, 0.06);
}

/* ── Homepage texture backgrounds ─────────────────────────────────
   Three custom texture PNGs from the BoSlott design assets.
   Referenced by front-page.php sections.
   ────────────────────────────────────────────────────────────────── */

/* Hero banner LEFT side — warm watercolor behind headline text */
.bg-hero-banner {
	background-image: url('assets/images/boSlottCom_homePage_heroBanner_background.png');
	background-size: cover;
	background-position: center left;
	background-repeat: no-repeat;
}

/* Body/content sections — cream paper texture behind spokes + engine */
.bg-body-texture {
	background-image: url('assets/images/boSlottCom_homePage_body_background.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: var(--color-cream);
}

/* Hero image RIGHT side — circular parchment behind SteadyIntegrated */
.hero-image-bg {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-image-bg__circle {
	position: relative;
	width: clamp(300px, 42vw, 440px);
	height: clamp(300px, 42vw, 440px);
	border-radius: var(--radius-full);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow-xl);
}

.hero-image-bg__circle::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url('assets/images/boSlottCom_homePage_heroImage_background.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 0;
}

.hero-image-bg__circle img {
	position: relative;
	z-index: 1;
	width: 88%;
	height: 88%;
	object-fit: contain;
}

/* Textured/watercolor overlay (used on footer and some sections) */
.bg-texture {
	position: relative;
}

.bg-texture::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	pointer-events: none;
	z-index: 0;
}

.bg-texture>* {
	position: relative;
	z-index: 1;
}

/* ==========================================================================
   SECTION 15: ACCESSIBILITY & UTILITIES
   ========================================================================== */

/* Skip to content link */
.skip-link {
	position: absolute;
	top: -100%;
	left: var(--space-4);
	background: var(--color-hub-navy);
	color: var(--color-white);
	padding: var(--space-3) var(--space-6);
	border-radius: var(--radius-sm);
	font-weight: var(--fw-semibold);
	z-index: 9999;
	transition: top var(--transition-fast);
}

.skip-link:focus {
	top: var(--space-4);
}

/* Screen reader only */
.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;
}

/* Text utilities */
.text-center {
	text-align: center;
}

.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

.text-navy {
	color: var(--color-hub-navy);
}

.text-blue {
	color: var(--color-leadership-blue);
}

.text-amber {
	color: var(--color-household-amber);
}

.text-green {
	color: var(--color-aquatics-green);
}

.text-white {
	color: var(--color-white);
}

.text-muted {
	color: var(--color-text-light);
}

/* Display */
.d-flex {
	display: flex;
}

.d-grid {
	display: grid;
}

.d-block {
	display: block;
}

.d-none {
	display: none;
}

/* Divider */
.divider {
	border: none;
	border-top: 1px solid var(--color-border);
	margin: var(--space-8) 0;
}

/* ==========================================================================
   SECTION 16: RESPONSIVE — TABLET (max 1024px)
   ========================================================================== */

@media (max-width: 1024px) {

	.feature-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.spoke-hub {
		grid-template-columns: 1fr;
		max-width: 480px;
		margin-left: auto;
		margin-right: auto;
	}

	.content-split {
		grid-template-columns: 1fr;
		gap: var(--space-10);
	}

	.content-split--reverse {
		direction: ltr;
	}

	.contact-grid {
		grid-template-columns: 1fr;
		gap: var(--space-10);
	}

	.spoke-table {
		grid-template-columns: 1fr;
	}

	.footer-cols {
		grid-template-columns: 1fr 1fr;
		text-align: center;
	}

	.footer-nav {
		align-items: center;
	}

	.footer-domains {
		align-items: center;
	}

	.footer-domain-item {
		justify-content: center;
	}

	.footer-social-icons {
		justify-content: center;
	}

	.footer-legal-links {
		align-items: center;
	}

	.footer-integrated-mark {
		margin-left: auto;
		margin-right: auto;
	}

	.footer-top__inner {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.footer-top__brand p {
		margin: 0 auto;
	}

	.footer-bottom__inner {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.footer-bottom-links {
		justify-content: center;
	}

	.page-hero__mascot {
		width: clamp(160px, 28%, 280px);
	}
}

/* ==========================================================================
   SECTION 17: RESPONSIVE — MOBILE (max 768px)
   ========================================================================== */

@media (max-width: 768px) {

	:root {
		--header-height: 64px;
	}

	/* Navigation collapse */
	.nav-toggle {
		display: flex;
	}

	.primary-nav {
		position: fixed;
		top: var(--header-height);
		left: 0;
		right: 0;
		background-color: var(--color-hub-navy);
		padding: var(--space-6);
		transform: translateY(-100%);
		opacity: 0;
		pointer-events: none;
		transition: transform var(--transition-base), opacity var(--transition-base);
		z-index: 999;
		box-shadow: var(--shadow-lg);
	}

	.primary-nav.is-open {
		transform: translateY(0);
		opacity: 1;
		pointer-events: auto;
	}

	.primary-nav ul {
		flex-direction: column;
		align-items: flex-start;
		gap: var(--space-5);
	}

	.primary-nav a {
		font-size: var(--text-lg);
	}

	/* Layout */
	.feature-grid {
		grid-template-columns: 1fr;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.footer-cols {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.footer-nav {
		align-items: center;
	}

	.footer-domains {
		align-items: center;
	}

	.footer-domain-item {
		justify-content: center;
	}

	.footer-social-icons {
		justify-content: center;
	}

	.footer-legal-links {
		align-items: center;
	}

	.footer-integrated-mark {
		margin-left: auto;
		margin-right: auto;
	}

	.footer-bottom__inner {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.footer-bottom-links {
		justify-content: center;
	}

	.footer-top__inner {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.footer-top__brand p {
		margin: 0 auto;
	}

	/* Hero */
	.page-hero {
		min-height: auto;
		padding: var(--space-16) 0 var(--space-10);
	}

	.page-hero__mascot {
		position: static;
		width: 220px;
		margin: var(--space-8) auto 0;
	}

	.page-hero .container {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.page-hero__content {
		max-width: 100%;
		padding: 0;
	}
}

/* ==========================================================================
   SECTION 18: PRINT
   ========================================================================== */

@media print {

	.site-header,
	.site-footer,
	.nav-toggle,
	.btn {
		display: none !important;
	}

	body {
		color: #000;
		background: #fff;
		font-size: 12pt;
	}

	h1,
	h2,
	h3 {
		color: #000;
	}

	a {
		text-decoration: underline;
	}
}
