/* Homepage layout refresh — brand colours only: #004B96, #32B4E9, #ffffff */

@import url('photo-lightbox.css');

.home-2026 {
	--home-navy: #004B96;
	--home-sky: #32B4E9;
	--home-white: #ffffff;
	--home-text-muted: #4E4852;
	--home-radius: 12px;
	--home-shadow: 0 0.35em 2em rgba(0, 75, 150, 0.12);
	--home-max: 72rem;
	--home-gap: clamp(1.25rem, 3vw, 2.5rem);
	--home-hero-overlay: rgba(4, 18, 36, 0.42);
	--home-hero-glass: rgba(6, 28, 54, 0.58);
	--home-hero-glass-edge: rgba(255, 255, 255, 0.14);
	--home-hero-glass-highlight: rgba(50, 180, 233, 0.35);
	--home-hero-text: rgba(255, 255, 255, 0.92);
	--home-hero-text-soft: rgba(255, 255, 255, 0.72);
}

/* Navigation replaced by floating training dock on homepage */
body.home-2026 #header nav#nav {
	display: none;
}

/* Disable Spectral preload overlay and slow banner entrance animations */
body.home-2026 #banner:after {
	display: none;
}

body.home-2026.is-preload #banner h2,
body.home-2026.is-preload #banner .more,
body.home-2026.is-preload #banner:after {
	opacity: 1;
	transform: none;
	transition: none;
}

body.home-2026 #banner h1,
body.home-2026 #banner h2,
body.home-2026 #banner .more {
	transition: none;
}

/* Spectral sets body strong/b to #fff — reset on pale home surfaces */
.home-2026 .home-training-details strong,
.home-2026 .home-training-details b,
.home-2026 .home-partners .home-card__body strong,
.home-2026 .home-partners .home-card__body b,
.home-2026 .home-partners .home-card__meta strong,
.home-2026 .home-partners .home-card__meta b {
	color: var(--home-navy);
}

/* —— Hero page background (HTML img + data-cms-img="hero-banner-bg") —— */
.home-2026 #page-wrapper {
	position: relative;
	isolation: isolate;
}

.home-2026 .home-hero__page-bg {
	position: fixed;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	overflow: hidden;
}

.home-2026 .home-hero__page-bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(4, 18, 36, 0.58) 0%,
		rgba(4, 18, 36, 0.22) 42%,
		rgba(4, 18, 36, 0.48) 100%
	);
	z-index: 1;
}

.home-2026 .home-hero__page-bg img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.home-2026 #banner {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	height: auto;
	min-height: calc(100svh - var(--training-dock-height, 6.75rem));
	min-height: calc(100dvh - var(--training-dock-height, 6.75rem));
	overflow: visible;
	box-sizing: border-box;
	padding:
		clamp(5.5rem, 9vw, 7rem)
		clamp(1.25rem, 4vw, 2.5rem)
		clamp(0.65rem, 1.75vh, 1rem);
}

.home-2026 #banner .inner.home-hero {
	flex: 0 1 auto;
	width: 100%;
	max-width: var(--home-max);
	margin: auto;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: clamp(1.5rem, 3vw, 2.25rem);
}

.home-2026 .home-hero__stage {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: clamp(1.25rem, 4vw, 3rem);
	align-items: center;
}

.home-2026 .home-hero__intro {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
	gap: clamp(0.85rem, 2vw, 1.15rem);
	max-width: 34rem;
}

.home-2026 .home-hero__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
	gap: clamp(1rem, 2.5vw, 1.5rem);
}

.home-2026 #banner .home-hero__logo,
.home-2026 #banner .bannerlogo.home-hero__logo {
	width: min(100%, 17.5rem) !important;
	max-width: 19rem;
	height: auto;
	margin: 0;
}

.home-2026 #banner h1 {
	max-width: 18em;
	margin: 0;
	font-size: clamp(1.2rem, 2.1vw, 1.55rem);
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: 0.06em;
	text-align: left;
	text-wrap: balance;
}

/* Hero ribbon — dark glass tiles over banner photography */
.home-2026 .home-hero__ribbon {
	--ribbon-btn-height: 2.4rem;
	--ribbon-btn-font: 0.75rem;
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
	grid-template-rows: auto auto;
	align-items: stretch;
	width: 100%;
	background: var(--home-hero-glass);
	backdrop-filter: blur(20px) saturate(1.15);
	-webkit-backdrop-filter: blur(20px) saturate(1.15);
	border-radius: calc(var(--home-radius) + 2px);
	border: 1px solid var(--home-hero-glass-edge);
	box-shadow:
		inset 0 1px 0 var(--home-hero-glass-highlight),
		0 1.25rem 3rem rgba(0, 0, 0, 0.3);
	overflow: hidden;
}

.home-2026 .home-hero__ribbon-tile {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.4rem;
	padding: 1.05rem 1.2rem 1.1rem;
	min-width: 0;
	position: relative;
}

.home-2026 .home-hero__ribbon-tile--spotlight {
	grid-column: 1;
	grid-row: 1 / -1;
	align-self: stretch;
}

.home-2026 .home-hero__ribbon-tile--spotlight::after {
	content: '';
	position: absolute;
	right: 0;
	top: 1.1rem;
	bottom: 1.1rem;
	width: 1px;
	background: linear-gradient(180deg, transparent, var(--home-hero-glass-edge), transparent);
	pointer-events: none;
}

.home-2026 .home-hero__ribbon-tile--offers {
	grid-column: 2;
	grid-row: 1;
}

.home-2026 .home-hero__ribbon-truck {
	grid-column: 2;
	grid-row: 2;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 0 1rem 0.85rem;
	margin: 0;
	min-width: 0;
}

.home-2026 .home-hero__ribbon-truck .movingtruck {
	width: 100%;
	max-width: 15rem;
	max-height: 9rem;
	height: auto;
	object-fit: contain;
	object-position: bottom center;
}

.home-2026 #banner .home-hero__ribbon-title {
	display: block;
	padding: 0;
	font-size: clamp(1rem, 1.35vw, 1.12rem);
	transform: none;
	opacity: 1;
}

.home-2026 #banner .home-hero__ribbon-title::before,
.home-2026 #banner .home-hero__ribbon-title::after {
	display: none !important;
	content: none;
	width: 0;
	height: 0;
}

.home-2026 .home-hero__ribbon-eyebrow {
	margin: 0;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--home-sky);
}

.home-2026 .home-hero__ribbon-title {
	margin: 0;
	font-size: clamp(1rem, 1.35vw, 1.12rem);
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.3;
	text-transform: uppercase;
	color: var(--home-hero-text);
	text-wrap: balance;
}

.home-2026 .home-hero__ribbon-title--compact {
	font-size: 1rem;
}

.home-2026 .home-hero__ribbon-text,
.home-2026 .home-hero__ribbon-copy {
	margin: 0;
	flex: 1;
	font-size: clamp(0.86rem, 1.1vw, 0.94rem);
	line-height: 1.5;
	color: var(--home-hero-text-soft);
	text-transform: none;
	letter-spacing: normal;
}

.home-2026 .home-hero__ribbon-copy a {
	color: #fff;
	font-weight: 600;
	font-style: normal;
	text-decoration: underline;
	text-underline-offset: 0.15em;
	text-decoration-color: rgba(50, 180, 233, 0.55);
}

.home-2026 .home-hero__ribbon-copy a:hover {
	color: var(--home-sky);
}

.home-2026 .home-hero__ribbon-cta-wrap {
	margin-top: 0.1rem;
}

.home-2026 .home-hero__ribbon-cta-wrap[hidden] {
	display: none !important;
}

.home-2026 .home-hero__ribbon-actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: stretch;
	gap: 0.5rem;
	margin-top: auto;
	width: 100%;
}

.home-2026 .home-hero__ribbon-actions .home-hero__ribbon-cta {
	margin-top: 0;
	width: 100%;
}

.home-2026 .home-hero__ribbon-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: auto;
	min-height: var(--ribbon-btn-height);
	padding: 0 0.85rem;
	border: 1px solid transparent;
	border-radius: 6px;
	background: var(--home-sky);
	color: #fff !important;
	font-size: var(--ribbon-btn-font);
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.2;
	text-decoration: none;
	text-transform: uppercase;
	box-shadow: none;
	height: auto !important;
	white-space: normal;
	text-align: center;
	text-wrap: balance;
	box-sizing: border-box;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.home-2026 .home-hero__ribbon-cta-wrap .home-hero__ribbon-cta {
	width: 100%;
}

.home-2026 .home-hero__ribbon-cta:hover {
	background: #fff;
	color: var(--home-navy) !important;
}

.home-2026 .home-hero__ribbon-cta--theory-mini {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.32);
	color: var(--home-hero-text) !important;
	text-transform: none;
	letter-spacing: normal;
	font-weight: 600;
}

.home-2026 .home-hero__ribbon-cta--theory-mini:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.5);
	color: #fff !important;
}

.home-2026 .home-hero__ribbon-tile--offers .home-hero__ribbon-eyebrow {
	color: rgba(255, 255, 255, 0.5);
}

.home-2026 .home-hero__ribbon-tile--offers .home-hero__ribbon-copy {
	font-size: clamp(0.84rem, 1vw, 0.92rem);
}

.home-2026 .home-hero__highlights {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	width: 100%;
}

.home-2026 .home-recent-passes {
	margin: 0;
}

.home-2026 .home-passes-strip {
	background: var(--home-white);
	border-top: 1px solid rgba(0, 75, 150, 0.08);
	padding: clamp(0.85rem, 2vw, 1.15rem) clamp(1.25rem, 4vw, 2em) clamp(1rem, 2vw, 1.35rem);
}

.home-2026 .home-passes-strip .home-recent-passes__inner {
	max-width: var(--home-max);
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}

.home-2026 .home-passes-strip__header {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.35rem 0.75rem;
	margin: 0;
	padding: 0;
}

.home-2026 .home-passes-strip .home-recent-passes__label {
	display: inline;
	margin: 0;
	font-size: 0.74rem;
}

.home-2026 .home-passes-strip__title {
	margin: 0;
	font-size: clamp(1rem, 1.5vw, 1.15rem);
	font-weight: 700;
	letter-spacing: 0.06em;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--home-navy);
}

.home-2026 .home-passes-strip .home-passes-scroller {
	--pass-gap: 0.55rem;
	margin: 0;
}

.home-2026 .home-passes-strip .home-passes-scroller__btn {
	width: 2rem;
	height: 2rem;
	border-width: 1px;
}

.home-2026 .home-passes-strip .home-passes-scroller__track {
	padding: 0;
}

.home-2026 .home-passes-strip .home-passes-scroller__track img {
	height: clamp(14rem, 36cqi, 20rem);
	border-width: 1px;
	border-color: rgba(0, 75, 150, 0.12);
	box-shadow: none;
}

.home-2026 .home-recent-passes__card {
	display: flex;
	flex-direction: column;
	gap: 0.65em;
	margin: 0;
	padding: 1rem 1.1rem 1.05rem;
	background: var(--home-white);
	box-shadow: var(--home-shadow);
	border-radius: var(--home-radius);
	border: 1px solid rgba(0, 75, 150, 0.08);
	border-left: 4px solid var(--home-sky);
	text-align: left;
	box-sizing: border-box;
	overflow: hidden;
	max-width: 100%;
}

.home-2026 .home-recent-passes__header {
	margin: 0 0 0.35em;
	padding: 0 0 0.65em;
	border-bottom: 1px solid rgba(0, 75, 150, 0.1);
}

.home-2026 .home-recent-passes__label {
	display: block;
	margin: 0 0 0.35em;
	padding: 0;
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-align: left;
	text-transform: uppercase;
	color: var(--home-sky);
	background: transparent;
	border-radius: 0;
}

.home-2026 .home-recent-passes__header h2 {
	font-size: 0.95rem;
	letter-spacing: 0.05em;
	line-height: 1.2;
	margin: 0;
	padding: 0;
	color: var(--home-navy);
	text-transform: uppercase;
}

/* Horizontal passes scroller — 3 visible on desktop, 1 on mobile */
.home-2026 .home-passes-scroller {
	--pass-gap: 0.65rem;
	--pass-visible: 3;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0;
	max-width: 100%;
	overflow: hidden;
}

.home-2026 .home-passes-scroller__btn {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	padding: 0;
	border: 2px solid rgba(0, 75, 150, 0.2);
	border-radius: 50%;
	background: var(--home-white);
	color: var(--home-navy);
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.home-2026 .home-passes-scroller__btn:hover:not(:disabled) {
	background: var(--home-navy);
	border-color: var(--home-navy);
	color: #fff;
}

.home-2026 .home-passes-scroller__btn:disabled {
	opacity: 0.35;
	cursor: default;
}

.home-2026 .home-passes-scroller__viewport {
	flex: 1;
	min-width: 0;
	max-width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
	scrollbar-color: var(--home-sky, #32b4e9) rgba(0, 75, 150, 0.08);
	container-type: inline-size;
}

.home-2026 .home-passes-scroller__viewport:focus {
	outline: 2px solid var(--home-sky, #32b4e9);
	outline-offset: 2px;
}

.home-2026 .home-passes-scroller__viewport::-webkit-scrollbar {
	height: 6px;
}

.home-2026 .home-passes-scroller__viewport::-webkit-scrollbar-thumb {
	background: var(--home-sky, #32b4e9);
	border-radius: 3px;
}

.home-2026 .home-passes-scroller__track {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	gap: var(--pass-gap);
	list-style: none;
	margin: 0;
	padding: 0.15rem 0 0.5rem;
	width: max-content;
	max-width: none;
}

.home-2026 .home-passes-scroller__track li {
	flex: 0 0 calc((100cqi - (var(--pass-visible) - 1) * var(--pass-gap)) / var(--pass-visible));
	width: calc((100cqi - (var(--pass-visible) - 1) * var(--pass-gap)) / var(--pass-visible));
	scroll-snap-align: start;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.home-2026 .home-passes-scroller__track img {
	display: block;
	width: 100%;
	height: clamp(12rem, 38cqi, 16.5rem);
	object-fit: cover;
	object-position: center top;
	border-radius: calc(var(--home-radius, 12px) - 4px);
	border: 2px solid rgba(0, 75, 150, 0.14);
	box-shadow: 0 0.2em 0.9em rgba(0, 75, 150, 0.12);
	cursor: zoom-in;
}

.home-2026 .home-passes-scroller__track img:focus-visible {
	outline: 2px solid #004b96;
	outline-offset: 3px;
}

@media screen and (max-width: 736px) {
	.home-2026 .home-passes-scroller {
		--pass-visible: 1;
	}
}

/* Fallback when container queries are unavailable */
@supports not (width: 100cqi) {
	.home-2026 .home-passes-scroller__track li {
		flex: 0 0 var(--pass-item-width, 7.5rem);
		width: var(--pass-item-width, 7.5rem);
	}
}

.home-2026 .flexi-plan-spotlight__card {
	border-radius: var(--home-radius);
	max-width: none;
	width: 100%;
}

.home-2026 #banner .more {
	display: none;
}

/* —— Section shell —— */
.home-2026 .home-section {
	padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 4vw, 2em);
}

.home-2026 .home-section__inner {
	max-width: var(--home-max);
	margin: 0 auto;
}

.home-2026 .home-section__lead {
	font-size: 1.05em;
	line-height: 1.65;
	max-width: 42em;
	margin-left: auto;
	margin-right: auto;
}

/* —— Career progression —— */
.home-2026 .home-partners {
	background: var(--home-white);
	padding-top: clamp(1.5rem, 3vw, 2.5rem);
}

.home-2026 .home-partners__header {
	max-width: var(--home-max);
	margin: 0 auto;
	padding: 0 clamp(1.25rem, 4vw, 2em) clamp(1.75rem, 3vw, 2.5rem);
	text-align: center;
}

.home-2026 .home-partners__header h2 {
	color: var(--home-navy);
	font-size: 1.35em;
	letter-spacing: 0.1em;
	line-height: 1.25;
	margin: 0 0 0.75em;
	text-transform: uppercase;
	text-wrap: balance;
}

.home-2026 .home-partners__header p {
	color: var(--home-text-muted);
	font-size: 1.05em;
	line-height: 1.65;
	max-width: 44em;
	margin: 0 auto;
	text-transform: none;
	letter-spacing: normal;
}

.home-2026 .home-partners__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	align-items: stretch;
	gap: var(--home-gap);
	max-width: var(--home-max);
	margin: 0 auto;
	padding: 0 clamp(1.25rem, 4vw, 2em) clamp(3rem, 6vw, 4rem);
}

.home-2026 .home-partners .home-card {
	height: 100%;
}

.home-2026 .home-partners__promo {
	margin: 0;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 0;
	border-radius: calc(var(--home-radius) * 1.35);
	overflow: hidden;
	box-shadow: var(--home-shadow);
	border: 1px solid rgba(0, 75, 150, 0.08);
	background: var(--home-white);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-2026 .home-partners__promo:hover {
	transform: translateY(-2px);
	box-shadow: 0 0.5em 2.5em rgba(0, 75, 150, 0.16);
}

.home-2026 .home-partners__promo img {
	width: 100%;
	height: 100%;
	min-height: 0;
	object-fit: contain;
	display: block;
	border-radius: calc(var(--home-radius) * 1.35);
}

.home-2026 .home-card {
	display: flex;
	flex-direction: column;
	background: var(--home-white);
	border-radius: var(--home-radius);
	overflow: hidden;
	box-shadow: var(--home-shadow);
	border: 1px solid rgba(0, 75, 150, 0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-2026 .home-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 0.5em 2.5em rgba(0, 75, 150, 0.16);
}

.home-2026 .home-card__media {
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--home-navy);
}

.home-2026 .home-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.home-2026 .home-card__body {
	padding: 1.5em 1.75em 1.75em;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.75em;
}

.home-2026 .home-card__body h2,
.home-2026 .home-card__body h3 {
	color: var(--home-navy);
	font-size: 1.15em;
	letter-spacing: 0.06em;
	line-height: 1.3;
	text-transform: uppercase;
	margin: 0;
	display: block;
	width: 100%;
	text-wrap: balance;
}

.home-2026 .home-card__body p {
	color: var(--home-text-muted);
	text-transform: none;
	letter-spacing: normal;
	margin: 0;
	flex: 1;
	line-height: 1.55;
}

.home-2026 .home-card__body .button {
	align-self: flex-start;
	margin-top: 0.25em;
}

.home-2026 .home-partners .home-card__body {
	min-height: 0;
}

.home-2026 .home-partners .home-card__actions {
	width: 100%;
	margin-top: auto;
	padding-top: 0.25em;
}

.home-2026 .home-partners .home-card__actions .button {
	align-self: stretch;
	width: 100%;
	max-width: none;
	height: auto;
	min-height: 3.125em;
	line-height: 1.35;
	padding: 0.85em 1.1em;
	white-space: normal;
	overflow: visible;
	text-overflow: unset;
	box-sizing: border-box;
	text-wrap: balance;
}

/* —— About / intro (white section; overrides Spectral .style1 light-on-light-blue) —— */
.home-2026 .home-about.wrapper.style1 {
	background: var(--home-white);
	color: var(--home-text-muted);
}

.home-2026 .home-about .inner {
	max-width: var(--home-max);
}

.home-2026 .home-about .home-about__copy header.major {
	margin-bottom: 0;
}

.home-2026 .home-about .home-about__copy header.major h2 {
	color: var(--home-navy);
	border-bottom-color: var(--home-sky);
}

.home-2026 .home-about .home-about__copy header.major p,
.home-2026 .home-about .home-about__copy p {
	color: var(--home-text-muted);
	text-transform: none;
	letter-spacing: normal;
}

.home-2026 .home-about .home-about__copy strong {
	color: var(--home-navy);
}

.home-2026 .home-about .home-about__tagline {
	color: var(--home-text-muted);
}

.home-2026 .home-about__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--home-gap);
	align-items: start;
	text-align: left;
}

.home-2026 .home-about__copy header.major {
	text-align: left;
}

.home-2026 .home-about__copy header.major h2 {
	text-align: left;
	display: block;
	width: 100%;
	max-width: none;
	letter-spacing: 0.08em;
	line-height: 1.25;
	text-wrap: balance;
}

.home-2026 .home-about__copy p {
	text-align: left;
	max-width: none;
}

.home-2026 .home-about__media {
	display: flex;
	flex-direction: column;
	gap: 1.25em;
}

.home-2026 .home-about__media img {
	width: 100%;
	border-radius: var(--home-radius);
	margin-bottom: 0;
	box-shadow: var(--home-shadow);
}

.home-2026 .home-about__tagline {
	font-style: italic;
	margin: 0;
	text-align: center;
}

.home-2026 .home-about__video {
	width: 100%;
	border-radius: var(--home-radius);
	overflow: hidden;
	box-shadow: var(--home-shadow);
}

.home-2026 .home-about__video video {
	width: 100%;
	height: auto;
	display: block;
	vertical-align: middle;
}

/* —— Reasons grid (replaces stacked spotlights) —— */
.home-2026 .home-reasons {
	background: var(--home-navy);
	color: var(--home-white);
	padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 4vw, 2em);
}

.home-2026 .home-reasons__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--home-gap);
	max-width: var(--home-max);
	margin: 0 auto;
}

.home-2026 .home-reason {
	display: grid;
	grid-template-columns: minmax(0, 38%) 1fr;
	background: rgba(255, 255, 255, 0.06);
	border-radius: var(--home-radius);
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.home-2026 .home-reason:nth-child(5) {
	grid-column: 1 / -1;
	grid-template-columns: minmax(0, 32%) 1fr;
	max-width: none;
	margin: 0;
	width: 100%;
}

.home-2026 .home-reason__image {
	min-height: 12rem;
}

.home-2026 .home-reason__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.home-2026 .home-reason__content {
	padding: 1.5em 1.75em;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.home-2026 .home-reason__content h2 {
	font-size: 1em;
	margin: 0 0 0.5em;
	color: var(--home-white);
	display: block;
	width: 100%;
	letter-spacing: 0.06em;
	line-height: 1.3;
	text-wrap: balance;
}

.home-2026 .home-reason__content p {
	margin: 0;
	font-size: 0.95em;
	line-height: 1.55;
	text-transform: none;
	letter-spacing: normal;
	color: rgba(255, 255, 255, 0.88);
}

.home-2026 .home-reason__content a {
	color: var(--home-sky, #32b4e9);
	text-decoration: underline;
	text-underline-offset: 0.12em;
}

.home-2026 .home-reason__content a:hover {
	color: #fff;
}

/* —— Theory4All (navy section, solid white content panel) —— */
.home-2026 .home-theory {
	background: var(--home-navy);
	color: #fff;
}

.home-2026 .home-theory .inner {
	max-width: var(--home-max);
}

.home-2026 .home-theory__panel header.major {
	margin-bottom: 1.5em;
}

.home-2026 .home-theory__panel header.major h2,
.home-2026 .home-refresher__panel header.major h2 {
	display: block;
	width: 100%;
	max-width: none;
	letter-spacing: 0.08em;
	line-height: 1.25;
	text-wrap: balance;
}

.home-2026 .home-theory__panel {
	background: var(--home-white);
	color: var(--home-text-muted);
	border-radius: var(--home-radius);
	padding: 2em 2.25em;
	box-shadow: var(--home-shadow);
}

.home-2026 .home-theory__panel header.major h2 {
	color: var(--home-navy);
	border-bottom-color: var(--home-sky);
}

.home-2026 .home-theory__panel header.major p {
	color: var(--home-text-muted);
	text-transform: none;
	letter-spacing: normal;
}

.home-2026 .home-theory__panel header.major strong {
	color: var(--home-navy);
}

.home-2026 .home-theory__panel .homepageimage {
	max-width: 280px;
	width: 100%;
	height: auto;
	margin-bottom: 1em;
}

.home-2026 .home-theory__panel .button.primary {
	display: inline-block;
	width: 100%;
	max-width: 22em;
	margin-top: 0.75em;
	background-color: var(--home-sky) !important;
	color: #fff !important;
	border: 0;
	box-shadow: none !important;
	font-weight: 600;
	letter-spacing: 0.06em;
	height: auto;
	line-height: 1.2;
	padding: 0.9em 1.5em;
	white-space: normal;
	text-align: center;
}

.home-2026 .home-theory__panel .button.primary:hover {
	background-color: var(--home-navy) !important;
	color: #fff !important;
}

/* —— Refresher (photo background; readable navy panel — not white-on-white) —— */
.home-2026 .home-refresher .inner {
	max-width: var(--home-max);
}

.home-2026 .home-refresher__panel {
	max-width: 48rem;
	margin-left: auto;
	margin-right: auto;
	background: rgba(0, 75, 150, 0.94);
	border-radius: var(--home-radius);
	padding: 2.25em 2.5em;
	border: 1px solid rgba(255, 255, 255, 0.15);
	box-shadow: var(--home-shadow);
	color: rgba(255, 255, 255, 0.92);
}

.home-2026 .home-refresher__panel header.major {
	margin-bottom: 0;
}

.home-2026 .home-refresher__panel header.major h2 {
	color: #fff;
	border-bottom-color: rgba(255, 255, 255, 0.35);
}

.home-2026 .home-refresher__panel header.major p,
.home-2026 .home-refresher__panel p {
	color: rgba(255, 255, 255, 0.92);
	text-transform: none;
	letter-spacing: normal;
}

.home-2026 .home-refresher__panel a {
	display: inline-block;
	margin-top: 0.5em;
	font-weight: 600;
	color: var(--home-sky);
	text-decoration: underline;
	text-underline-offset: 0.2em;
}

.home-2026 .home-refresher__panel a:hover {
	color: #fff;
}

/* —— Google reviews —— */
.home-2026 .home-reviews-block .inner {
	max-width: var(--home-max);
	width: 100%;
	text-align: center;
}

.home-2026 .home-reviews-block header.major p {
	text-transform: none;
	letter-spacing: normal;
}

.home-2026 .home-reviews {
	width: min(100%, 42rem);
	margin: 0 auto;
	border-radius: var(--home-radius);
	box-shadow: var(--home-shadow);
}

/* —— Footer layout (override Spectral #cta flex + 70% header width) —— */
.home-2026 #footer #cta .inner.home-footer__inner {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1.5rem, 3vw, 2.5rem);
	align-items: start;
	text-align: left;
	max-width: var(--home-max);
	width: 100%;
}

/* Spectral caps #cta at 45em and squeezes headers to 70% — disable on home footer */
.home-2026 #footer #cta .inner {
	max-width: var(--home-max);
}

.home-2026 #footer #cta .inner header {
	width: auto;
	padding-right: 0;
}

.home-2026 #footer #cta .home-footer__column h2 {
	font-size: 0.95em;
	margin: 0 0 0.85em;
	padding: 0;
	border: 0;
	letter-spacing: 0.12em;
	line-height: 1.35;
	color: #fff;
	text-transform: uppercase;
	text-wrap: balance;
}

.home-2026 #footer #cta .home-footer__column p {
	margin: 0 0 0.75em;
	font-size: 0.9em;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.82);
	text-transform: none;
	letter-spacing: normal;
}

.home-2026 #footer #cta .home-footer__column p:last-child {
	margin-bottom: 0;
}

.home-2026 #footer #cta .home-footer__links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.home-2026 #footer #cta .home-footer__links li {
	margin: 0 0 0.45em;
	padding: 0;
	border: 0;
	line-height: 1.45;
}

.home-2026 #footer #cta .home-footer__links a,
.home-2026 #footer #cta .home-footer__column p a {
	color: rgba(255, 255, 255, 0.88);
	border-bottom-color: rgba(255, 255, 255, 0.35);
	font-size: 0.9em;
	text-transform: none;
	letter-spacing: normal;
}

.home-2026 #footer #cta .home-footer__links a:hover,
.home-2026 #footer #cta .home-footer__column p a:hover {
	color: #fff;
	border-bottom-color: transparent;
}

.home-2026 #footer #cta .home-footer__cta.actions.stacked {
	grid-column: 1 / -1;
	justify-self: center;
	width: 100%;
	max-width: 20em;
	margin: 0.5em 0 0;
	padding: 0;
}

.home-2026 #footer .icons {
	margin-top: 1.5em;
}

/* —— Flexi-plan promo card —— */
.home-2026 .flexi-plan-spotlight__card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.25em;
	margin: 0;
	padding: 1.15em 1.5em;
	background: #fff;
	box-shadow: 0 0.4em 2.5em rgba(0, 0, 0, 0.2);
	border-left: 4px solid #004B96;
	text-align: left;
	box-sizing: border-box;
}

.home-2026 .flexi-plan-spotlight__content {
	flex: 1 1 auto;
	min-width: 0;
}

.home-2026 .flexi-plan-spotlight__content h2 {
	font-size: 1.1em;
	letter-spacing: 0.05em;
	line-height: 1.3;
	margin: 0 0 0.35em 0;
	color: #004B96;
	text-transform: uppercase;
	display: block;
	width: 100%;
	text-wrap: balance;
}

.home-2026 .flexi-plan-spotlight__content p {
	margin: 0;
	font-size: 0.9em;
	line-height: 1.45;
	color: #555;
	text-transform: none;
	letter-spacing: normal;
}

.home-2026 .flexi-plan-spotlight__label {
	display: inline-block;
	margin: 0 0 0.35em 0;
	padding: 0.2em 0.55em;
	font-size: 0.65em;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #fff;
	background: #32B4E9;
	border-radius: 3px;
}

.home-2026 .flexi-plan-spotlight__card .button {
	flex-shrink: 0;
	white-space: nowrap;
	margin: 0;
}

.home-2026 .frame-snow {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	min-height: 100vh;
	padding: 0;
	margin: 0;
	color: #fff;
	pointer-events: none;
	z-index: 9999;
}

/* —— Responsive —— */
@media screen and (max-width: 1200px) and (min-width: 981px) {
	.home-2026 .home-reason {
		grid-template-columns: 1fr;
	}

	.home-2026 .home-reason:nth-child(5) {
		grid-template-columns: 1fr;
	}

	.home-2026 .home-reason__image {
		max-height: 14rem;
	}
}

@media screen and (max-width: 980px) {
	.home-2026 .home-about__grid {
		grid-template-columns: 1fr;
	}

	.home-2026 .home-about__copy header.major,
	.home-2026 .home-about__copy header.major h2,
	.home-2026 .home-about__copy p {
		text-align: center;
	}

	.home-2026 #footer #cta .inner.home-footer__inner {
		grid-template-columns: 1fr;
	}

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

	.home-2026 .home-partners__promo {
		grid-column: 1 / -1;
		max-width: 22rem;
		margin: 0 auto;
		width: 100%;
		height: auto;
		min-height: 0;
	}

	.home-2026 .home-partners__promo img {
		height: auto;
	}
}

@media screen and (max-width: 736px) {
	.home-2026 .home-partners__grid {
		grid-template-columns: 1fr;
	}
}

@media screen and (max-width: 900px) {
	.home-2026 .home-hero__ribbon {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
		gap: 0;
		background: transparent;
		border: 0;
		box-shadow: none;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
		overflow: visible;
	}

	.home-2026 .home-hero__ribbon-tile {
		background: var(--home-hero-glass);
		backdrop-filter: blur(20px) saturate(1.15);
		-webkit-backdrop-filter: blur(20px) saturate(1.15);
		border-radius: calc(var(--home-radius) + 2px);
		border: 1px solid var(--home-hero-glass-edge);
		box-shadow:
			inset 0 1px 0 var(--home-hero-glass-highlight),
			0 1rem 2.5rem rgba(0, 0, 0, 0.28);
	}

	.home-2026 .home-hero__ribbon-tile--spotlight,
	.home-2026 .home-hero__ribbon-tile--offers,
	.home-2026 .home-hero__ribbon-truck {
		grid-column: 1;
		grid-row: auto;
	}

	.home-2026 .home-hero__ribbon-tile--spotlight::after {
		display: none;
	}

	.home-2026 .home-hero__ribbon-tile + .home-hero__ribbon-tile {
		margin-top: 0.65rem;
	}

	.home-2026 .home-hero__ribbon-truck {
		margin-top: 0.65rem;
		padding: 0.5rem 1rem 0.85rem;
		background: var(--home-hero-glass);
		backdrop-filter: blur(20px) saturate(1.15);
		-webkit-backdrop-filter: blur(20px) saturate(1.15);
		border-radius: calc(var(--home-radius) + 2px);
		border: 1px solid var(--home-hero-glass-edge);
		box-shadow:
			inset 0 1px 0 var(--home-hero-glass-highlight),
			0 1rem 2.5rem rgba(0, 0, 0, 0.28);
	}

	.home-2026 .home-hero__ribbon-truck .movingtruck {
		max-width: 17rem;
		max-height: 8.5rem;
	}

	.home-2026 .home-hero__ribbon-cta,
	.home-2026 .home-hero__ribbon-cta--theory-mini {
		width: 100%;
		box-sizing: border-box;
		white-space: normal;
		text-align: center;
	}

	.home-2026 .home-hero__ribbon-actions {
		grid-template-columns: 1fr;
	}

	.home-2026 .home-hero__intro,
	.home-2026 .home-hero__content {
		align-items: center;
		text-align: center;
	}

	.home-2026 #banner h1 {
		text-align: center;
		max-width: min(36em, 95vw);
	}
}

@media screen and (max-width: 736px) {
	.home-2026 #banner {
		padding-top: 5.5rem;
		padding-bottom: 1.25rem;
	}

	.home-2026 #banner h1 {
		letter-spacing: 0.05em;
		font-size: 1.2rem;
	}

	.home-2026 #banner .home-hero__logo,
	.home-2026 #banner .bannerlogo.home-hero__logo {
		width: min(100%, 14.5rem) !important;
	}

	.home-2026 .home-hero__ribbon-actions {
		grid-template-columns: 1fr;
	}

	.home-2026 #banner .more {
		display: none;
	}
}

@media only screen and (max-width: 700px) {
	.home-2026 .santa-image {
		width: 70%;
		max-width: 420px;
	}
}


/* Snow, modal, responsive image utilities (homepage) */
.home-2026 .snow {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	position: absolute;
	left: 20%;
	top: 0;
	z-index: 2;
	animation-name: fall;
	animation-duration: 10s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}

.home-2026 .snow svg {
	width: 100%;
	height: auto;
}

.home-2026 .frame-background {
	background-color: #5892b0;
	width: 100%;
	height: 100%;
	min-height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

.home-2026 .wrap-snowman {
	position: absolute;
	bottom: 0;
	width: 20%;
	height: auto;
	left: 20%;
}

.home-2026 .wrap-snowman svg {
	width: 100%;
	height: auto;
}

.home-2026 .frame-background::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 80px;
	border-radius: 50%;
	background-color: #fff;
	bottom: -50px;
	left: 0;
	z-index: 3;
}

.home-2026 .frame-background::after {
	content: '';
	position: absolute;
	width: 80%;
	height: 200px;
	border-radius: 50%;
	background-color: #fff;
	bottom: -120px;
	right: -100px;
	z-index: 3;
	transform: rotate(-7deg);
}

@keyframes fall {
	0% { top: -50px; opacity: 0; }
	1% { top: -50px; opacity: 1; }
	80% { top: calc(100% + 150px); opacity: 1; }
	81% { top: calc(100% + 150px); opacity: 0; }
	100% { top: -50px; opacity: 0; }
}

.home-2026 #myImg {
	border-radius: 5px;
	cursor: pointer;
	transition: 0.3s;
}

.home-2026 #myImg:hover {
	opacity: 0.7;
}

.home-2026 .modal {
	display: none;
	text-align: center;
	position: fixed;
	z-index: 1;
	padding-top: 100px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.9);
}

.home-2026 .modal-content {
	margin: auto;
	display: block;
	width: 80%;
	max-width: 700px;
}

.home-2026 #caption {
	margin: auto;
	display: block;
	width: 80%;
	max-width: 700px;
	text-align: center;
	color: #ccc;
	padding: 10px 0;
	height: 150px;
}

.home-2026 .modal-content,
.home-2026 #caption {
	animation-name: home-zoom;
	animation-duration: 0.6s;
}

@keyframes home-zoom {
	from { transform: scale(0); }
	to { transform: scale(1); }
}

.home-2026 .close {
	position: absolute;
	top: 15px;
	right: 35px;
	color: #f1f1f1;
	font-size: 40px;
	font-weight: bold;
	transition: 0.3s;
}

.home-2026 .close:hover,
.home-2026 .close:focus {
	color: #bbb;
	text-decoration: none;
	cursor: pointer;
}

@media only screen and (max-width: 700px) {
	.home-2026 .modal-content {
		width: 100%;
	}
}

.home-2026 .picture-container {
	display: flex;
	justify-content: center;
}

@media (max-width: 768px) {
	.home-2026 .mobile-image { display: block; }
	.home-2026 .desktop-image { display: none; }
}

@media (min-width: 769px) {
	.home-2026 .mobile-image { display: none; }
	.home-2026 .desktop-image { display: block; }
}
