:root {
	--bg: #05070a;
	--bg-soft: #081018;
	--panel: #0f1821;
	--panel-strong: #15222c;
	--text: #edf4fb;
	--muted: #aebdca;
	--soft: #d6e2ec;
	--line: rgba(255, 255, 255, .105);
	--blue: #16a9ef;
	--blue-deep: #087ac3;
	--blue-soft: rgba(22, 169, 239, .13);
	--white: #f7fafc;
	--ink: #111820;
	--ink-muted: #5e6a75;
	--shadow: 0 24px 70px rgba(0, 0, 0, .24);
	--radius: 18px;
	--container: 1160px;
	--ease: cubic-bezier(.2, .7, .2, 1);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background:
		linear-gradient(90deg, rgba(22, 169, 239, .026), transparent 24%, transparent 78%, rgba(22, 169, 239, .018)),
		var(--bg);
	color: var(--text);
	font-family: "DM Sans", Arial, sans-serif;
	font-size: 15px;
	line-height: 1.66;
	text-rendering: optimizeLegibility;
}

body.nav-open {
	overflow: hidden;
}

body.nav-open::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: 98;
	background: rgba(0, 0, 0, .48);
	backdrop-filter: blur(6px);
	opacity: 1;
	transition: opacity .36s var(--ease);
}

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

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

p {
	margin: 0 0 1rem;
	color: var(--muted);
	font-weight: 400;
}

h1,
h2,
h3 {
	margin: 0;
	color: var(--text);
	line-height: 1;
	letter-spacing: 0;
}

h1,
h2 {
	font-family: "DM Sans", Arial, sans-serif;
	font-weight: 750;
}

h1 {
	font-size: clamp(2.45rem, 5vw, 4.7rem);
	max-width: 740px;
}

h2 {
	font-size: clamp(1.65rem, 3.2vw, 2.95rem);
}

h3 {
	font-size: 1.05rem;
	line-height: 1.2;
	font-weight: 700;
}

h1 + p:not(.eyebrow) {
	margin-top: 18px;
}

h2 + p:not(.eyebrow) {
	margin-top: 16px;
}

h3 + p:not(.eyebrow) {
	margin-top: 10px;
}

.container {
	width: min(100% - 56px, var(--container));
	margin-inline: auto;
}

.narrow {
	max-width: 820px;
}

.text-nowrap {
	white-space: nowrap;
}

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

.skip-link:focus {
	z-index: 999;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	padding: 10px 14px;
	background: var(--blue);
	color: #00131f;
	clip: auto;
}

.site-header {
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(5, 7, 10, .78), rgba(5, 7, 10, .42));
	backdrop-filter: blur(18px);
	border-bottom: 1px solid transparent;
	transition: border-color .3s ease, background .3s ease, min-height .3s ease;
}

.site-header.is-scrolled {
	background: rgba(5, 7, 10, .86);
	border-color: var(--line);
}

.header-inner {
	display: flex;
	align-items: center;
	gap: 28px;
	min-height: 76px;
}

.site-logo {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
}

.site-logo img {
	width: 158px;
	max-height: 52px;
	object-fit: contain;
}

.primary-nav {
	margin-left: auto;
}

.mobile-nav-cta {
	display: none;
}

.menu {
	display: flex;
	align-items: center;
	gap: 22px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.menu a,
.footer-nav a,
.footer-social a {
	color: rgba(245, 249, 255, .78);
	font-size: .83rem;
	font-weight: 600;
	transition: color .25s ease, border-color .25s ease, background .25s ease;
}

.menu a:hover,
.footer-nav a:hover,
.footer-social a:hover {
	color: var(--text);
}

.menu .current-menu-item > a,
.menu .current_page_item > a,
.menu .current-menu-ancestor > a,
.menu .is-active > a,
.menu a[aria-current="page"] {
	color: var(--blue);
}

.primary-nav .menu a {
	position: relative;
}

.primary-nav .menu a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -9px;
	height: 1px;
	background: var(--blue);
	opacity: 0;
	transform: scaleX(.45);
	transition: opacity .3s var(--ease), transform .3s var(--ease);
}

.primary-nav .menu a:hover::after,
.primary-nav .menu .current-menu-item > a::after,
.primary-nav .menu .current_page_item > a::after,
.primary-nav .menu .current-menu-ancestor > a::after,
.primary-nav .menu .is-active > a::after,
.primary-nav .menu a[aria-current="page"]::after {
	opacity: 1;
	transform: scaleX(1);
}

.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 12px 22px;
	border: 1px solid var(--blue);
	border-radius: 999px;
	background: linear-gradient(135deg, var(--blue), var(--blue-deep));
	color: #00131f;
	font-weight: 750;
	box-shadow: 0 12px 30px rgba(22, 169, 239, .18);
	cursor: pointer;
	overflow: hidden;
	isolation: isolate;
	transition: transform .45s var(--ease), box-shadow .45s var(--ease), background .45s var(--ease), border-color .45s var(--ease), color .45s var(--ease);
}

.btn::after {
	content: "";
	position: absolute;
	inset: -1px;
	z-index: -1;
	background:
		linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, .46) 43%, transparent 64%),
		linear-gradient(135deg, #42c7ff, var(--blue));
	opacity: 0;
	transform: translateX(-42%);
	transition: opacity .45s var(--ease), transform .7s var(--ease);
}

.btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 22px 48px rgba(22, 169, 239, .28);
}

.btn:hover::after {
	opacity: 1;
	transform: translateX(0);
}

.btn-outline {
	background: rgba(255, 255, 255, .04);
	color: var(--text);
	box-shadow: none;
}

.btn-ghost {
	background: transparent;
	color: var(--text);
	border-color: var(--line);
	box-shadow: none;
}

.btn-small {
	min-height: 42px;
	padding: 9px 18px;
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: rgba(255, 255, 255, .05);
}

.menu-toggle span:not(.screen-reader-text) {
	display: block;
	width: 19px;
	height: 2px;
	margin: 4px auto;
	background: var(--text);
}

.hero {
	position: relative;
	min-height: 92svh;
	padding: 128px 0 84px;
	overflow: hidden;
	background: var(--bg);
}

.hero-bg-motion {
	position: absolute;
	inset: -2%;
	z-index: 0;
	background: url("../img/optimized/hero-still.webp") center / cover no-repeat;
	transform: none;
}

.hero-bg-motion video,
.hero-bg-still {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-bg-motion video {
	z-index: 1;
	opacity: 1;
	transition: opacity .72s ease;
}

.hero-bg-still {
	z-index: 0;
	opacity: 0;
	transition: opacity 1.15s ease;
}

.hero-bg-blackout {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: block;
	background: #030507;
	opacity: 0;
	pointer-events: none;
	transition: opacity .72s ease;
}

.hero-bg-motion.is-fading-to-black .hero-bg-blackout {
	opacity: 1;
}

.hero-bg-motion.is-video-complete video {
	opacity: 0;
}

.hero-bg-motion.is-still-visible .hero-bg-still {
	opacity: 1;
}

.hero-bg-motion.is-still-visible .hero-bg-blackout {
	opacity: 0;
	transition-duration: 1.15s;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(90deg, rgba(5, 7, 10, .88) 0%, rgba(5, 7, 10, .58) 48%, rgba(5, 7, 10, .74) 100%),
		linear-gradient(0deg, rgba(5, 7, 10, .92), transparent 42%, rgba(5, 7, 10, .34));
	pointer-events: none;
}

.hero::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	z-index: 1;
	height: 190px;
	background: linear-gradient(0deg, var(--bg), transparent);
	pointer-events: none;
}

.hero-grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(330px, .7fr);
	align-items: center;
	gap: 48px;
}

.hero-copy p {
	max-width: 560px;
	font-size: 1rem;
}

.hero-copy h1 {
	max-width: 760px;
	font-size: 3rem;
	line-height: 1.02;
}

.hero-copy > .eyebrow {
	max-width: 590px;
	margin-bottom: 18px;
	color: #67c9f6;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.45;
	text-transform: none;
}

.hero-eyebrow-line {
	display: block;
}

.eyebrow {
	margin-bottom: 12px;
	color: var(--blue);
	font-size: .72rem;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 30px;
}

.hero-media {
	position: relative;
	min-height: 430px;
}

.hero-media::before {
	content: "";
	position: absolute;
	z-index: -1;
	inset: 11% 2% 7% 16%;
	background:
		radial-gradient(circle at 56% 42%, rgba(22, 169, 239, .14), transparent 58%),
		linear-gradient(135deg, rgba(255, 255, 255, .08), transparent 48%);
	border: 1px solid rgba(255, 255, 255, .08);
	border-left-color: rgba(22, 169, 239, .24);
	opacity: .74;
}

.hero-media img {
	display: block;
	width: min(72%, 340px);
	height: 430px;
	margin: 0 auto;
	object-fit: contain;
	padding: 10px 18px;
	background:
		radial-gradient(circle at 50% 40%, rgba(22, 169, 239, .08), transparent 54%);
	border-radius: 0;
	box-shadow: none;
}

.hero-feature-strip {
	grid-column: 1 / -1;
	position: relative;
	z-index: 3;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	margin-top: 4px;
	background: rgba(255, 255, 255, .1);
	box-shadow: 0 22px 58px rgba(0, 0, 0, .2);
	backdrop-filter: blur(16px);
	border-radius: var(--radius);
	overflow: hidden;
}

.hero-feature-strip article {
	min-height: 148px;
	padding: 22px;
	background: rgba(5, 18, 27, .58);
	transition: background .35s var(--ease), transform .35s var(--ease);
}

.hero-feature-strip article:hover {
	background: rgba(8, 36, 52, .78);
	transform: translateY(-4px);
}

.hero-feature-strip span {
	display: block;
	margin-bottom: 22px;
	color: var(--blue);
	font-size: .78rem;
	font-weight: 800;
}

.hero-feature-strip h2 {
	max-width: 220px;
	font-size: 1.05rem;
	line-height: 1.16;
}

.hero-feature-strip p {
	max-width: 290px;
	margin-top: 10px;
	font-size: .86rem;
	line-height: 1.5;
}

.floating-proof,
.warranty-card {
	border: 1px solid rgba(255, 255, 255, .12);
	border-left: 2px solid var(--blue);
	border-radius: 16px;
	background: rgba(5, 10, 15, .7);
	box-shadow: 0 18px 44px rgba(0, 0, 0, .2);
	backdrop-filter: blur(14px);
}

.floating-proof {
	position: absolute;
	left: 0;
	bottom: 34px;
	width: 210px;
	padding: 16px 18px;
}

.floating-proof strong,
.warranty-card strong {
	display: block;
	color: var(--text);
	font-size: 1.18rem;
	line-height: 1.1;
}

.floating-proof span,
.warranty-card span {
	color: var(--muted);
}

.logo-motion-section {
	position: relative;
	padding: 38px 0;
	border-top: 1px solid rgba(255, 255, 255, .08);
	border-bottom: 1px solid rgba(255, 255, 255, .08);
	background:
		linear-gradient(90deg, rgba(5, 7, 10, .98), rgba(8, 20, 29, .94)),
		var(--bg);
	overflow: hidden;
}

.logo-motion-section::before {
	content: "";
	position: absolute;
	inset: -40% 16% auto auto;
	width: 360px;
	aspect-ratio: 1;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(22, 169, 239, .24), transparent 64%);
	filter: blur(12px);
	pointer-events: none;
}

.logo-motion-grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, .95fr) minmax(280px, 420px);
	align-items: center;
	gap: 42px;
}

.logo-motion-copy h2 {
	max-width: 540px;
	font-size: clamp(1.35rem, 2vw, 2rem);
	line-height: 1.12;
}

.logo-motion-card {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 184px;
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 22px;
	background: rgba(255, 255, 255, .045);
	box-shadow: 0 24px 70px rgba(0, 0, 0, .24);
	overflow: hidden;
}

.logo-motion-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, transparent, rgba(22, 169, 239, .12), transparent);
	opacity: .8;
}

.logo-motion-card img,
.logo-motion-lottie,
.logo-draw-svg {
	position: relative;
	z-index: 1;
	width: min(100%, 330px);
}

.logo-motion-card img {
	height: auto;
	opacity: 0;
	filter: drop-shadow(0 12px 28px rgba(22, 169, 239, .18));
	transition: opacity .75s var(--ease);
}

.logo-motion-card.is-complete img {
	opacity: 1;
}

.logo-motion-lottie {
	position: absolute;
	inset: 50% auto auto 50%;
	height: 130px;
	transform: translate(-50%, -50%);
	opacity: .2;
}

.logo-draw-svg {
	position: absolute;
	inset: 50% auto auto 50%;
	width: min(100%, 365px);
	height: 126px;
	color: #fff;
	transform: translate(-50%, -50%);
	filter: drop-shadow(0 14px 30px rgba(22, 169, 239, .14));
}

.logo-draw-svg path {
	stroke-dasharray: 1000;
	stroke-dashoffset: 1000;
}

.logo-draw-mark path {
	stroke-width: 17;
}

.logo-draw-word path {
	stroke-width: 9;
}

.logo-draw-usa {
	color: var(--blue);
}

.logo-draw-usa path {
	stroke-width: 4;
}

.logo-motion-card.is-drawing .logo-draw-mark path {
	animation: logoStrokeDraw .8s cubic-bezier(.19, 1, .22, 1) forwards;
}

.logo-motion-card.is-drawing .logo-draw-mark path:nth-child(2) {
	animation-delay: .12s;
}

.logo-motion-card.is-drawing .logo-draw-mark path:nth-child(3) {
	animation-delay: .24s;
}

.logo-motion-card.is-drawing .logo-draw-mark path:nth-child(4) {
	animation-delay: .34s;
}

.logo-motion-card.is-drawing .logo-draw-word path {
	animation: logoStrokeDraw .72s cubic-bezier(.19, 1, .22, 1) forwards;
	animation-delay: .74s;
}

.logo-motion-card.is-drawing .logo-draw-word path:nth-child(2) {
	animation-delay: .82s;
}

.logo-motion-card.is-drawing .logo-draw-word path:nth-child(3) {
	animation-delay: .9s;
}

.logo-motion-card.is-drawing .logo-draw-word path:nth-child(4) {
	animation-delay: 1.02s;
}

.logo-motion-card.is-drawing .logo-draw-word path:nth-child(5) {
	animation-delay: 1.14s;
}

.logo-motion-card.is-drawing .logo-draw-word path:nth-child(6) {
	animation-delay: 1.26s;
}

.logo-motion-card.is-drawing .logo-draw-word path:nth-child(7) {
	animation-delay: 1.38s;
}

.logo-motion-card.is-drawing .logo-draw-usa path {
	animation: logoStrokeDraw .55s cubic-bezier(.19, 1, .22, 1) forwards;
	animation-delay: 1.62s;
}

.logo-motion-card.is-drawing .logo-draw-usa path:nth-child(2) {
	animation-delay: 1.74s;
}

.logo-motion-card.is-complete .logo-draw-svg {
	opacity: 0;
	transition: opacity .55s var(--ease);
}

.logo-motion-lottie.is-static {
	display: none;
}

@keyframes logoStrokeDraw {
	to {
		stroke-dashoffset: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.logo-motion-lottie {
		display: none;
	}

	.logo-draw-svg {
		display: none;
	}

	.logo-motion-card img {
		opacity: 1;
	}
}

.section {
	position: relative;
	padding: 82px 0;
}

[id] {
	scroll-margin-top: 96px;
}

.section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	width: min(100% - 40px, var(--container));
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .1), transparent);
	transform: translateX(-50%);
	pointer-events: none;
}

.section-heading {
	display: grid;
	grid-template-columns: minmax(120px, .22fr) minmax(0, .78fr);
	align-items: start;
	gap: 40px;
	margin-bottom: 40px;
	padding-bottom: 16px;
	border-bottom: 0;
}

.section-heading h2 {
	max-width: 760px;
	line-height: 1.08;
}

.light-section,
.factory-section,
.stats-band,
.faq-section,
.catalog-section,
.contact-overview {
	background:
		linear-gradient(120deg, rgba(22, 169, 239, .06), transparent 42%),
		var(--white);
	color: var(--ink);
}

.light-section h1,
.light-section h2,
.light-section h3,
.factory-section h1,
.factory-section h2,
.factory-section h3,
.stats-band h1,
.stats-band h2,
.stats-band h3,
.faq-section h1,
.faq-section h2,
.faq-section h3,
.catalog-section h1,
.catalog-section h2,
.catalog-section h3,
.contact-overview h1,
.contact-overview h2,
.contact-overview h3 {
	color: var(--ink);
}

.light-section p:not(.eyebrow),
.factory-section p:not(.eyebrow),
.stats-band p:not(.eyebrow),
.faq-section p:not(.eyebrow),
.catalog-section p:not(.eyebrow),
.contact-overview p:not(.eyebrow) {
	color: var(--ink-muted);
}

.models-section {
	margin-top: 0;
	padding-top: 86px;
	padding-bottom: 76px;
	background:
		linear-gradient(90deg, transparent, rgba(22, 169, 239, .035), transparent),
		linear-gradient(180deg, #05070a, #071019 48%, #05070a);
}

.models-section .section-heading {
	display: block;
}

.models-section .section-heading h2 {
	max-width: 1160px;
	margin-top: 14px;
	font-size: clamp(1.65rem, 2vw, 1.75rem);
	line-height: 1.08;
	text-wrap: balance;
}

.models-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
	align-items: stretch;
}

.models-grid > .model-card:nth-last-child(2):nth-child(4n + 1) {
	grid-column: 2;
}

.model-card {
	position: relative;
	isolation: isolate;
	display: grid;
	grid-template-rows: 280px auto;
	min-height: 438px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, .035);
	box-shadow: 0 20px 54px rgba(0, 0, 0, .16);
	padding: 18px;
	transition: transform .45s var(--ease), border-color .45s var(--ease), background .45s var(--ease);
}

.model-card::after {
	content: "";
	position: absolute;
	z-index: -1;
	inset: 0;
	background: linear-gradient(0deg, rgba(5, 7, 10, .86), rgba(5, 7, 10, .34));
	opacity: .58;
	pointer-events: none;
}

.model-card-background {
	position: absolute;
	z-index: -2;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .3;
	transition: opacity .55s var(--ease), transform .55s var(--ease);
}

.model-card:nth-child(2),
.model-card:nth-child(5) {
	transform: none;
}

.model-image {
	display: grid;
	place-items: center;
	height: 100%;
	padding-bottom: 18px;
}

.model-image img {
	width: 100%;
	height: 250px;
	object-fit: contain;
	padding: 0 18px;
	background: transparent;
	filter: drop-shadow(0 22px 34px rgba(0, 0, 0, .28));
	transition: transform .65s var(--ease), filter .65s var(--ease);
}

.model-shell-plan {
	position: relative;
	display: block;
	width: 126px;
	height: 238px;
	border: 3px solid rgba(139, 221, 255, .78);
	border-radius: 34px 24px 34px 24px;
	background: linear-gradient(155deg, #63c9f4, #168ed0 56%, #0872b3);
	box-shadow:
		inset 0 0 0 8px rgba(255, 255, 255, .16),
		inset 0 -28px 44px rgba(0, 67, 112, .2),
		0 24px 40px rgba(0, 0, 0, .28);
	transform: rotate(2deg);
	transition: transform .65s var(--ease), filter .65s var(--ease);
}

.model-shell-plan::before,
.model-shell-plan i,
.model-shell-plan b {
	content: "";
	position: absolute;
	display: block;
	box-sizing: border-box;
}

.model-shell-plan::before {
	inset: 17px 17px auto;
	height: 54px;
	border: 2px solid rgba(255, 255, 255, .42);
	border-radius: 17px 12px;
	background: rgba(198, 240, 255, .18);
}

.model-shell-plan i {
	top: 78px;
	left: 19px;
	width: 88px;
	height: 2px;
	background: rgba(255, 255, 255, .46);
	box-shadow: 0 9px rgba(255, 255, 255, .32), 0 18px rgba(255, 255, 255, .2);
}

.model-shell-plan b {
	right: 18px;
	bottom: 20px;
	width: 38px;
	height: 78px;
	border-left: 2px solid rgba(255, 255, 255, .3);
	border-radius: 50%;
}

.model-shell-plan-naples {
	width: 140px;
	border-radius: 46% 54% 43% 57% / 18% 21% 79% 82%;
	transform: rotate(-2deg);
}

.model-shell-plan-naples::before {
	border-radius: 50% 48% 44% 56%;
}

.model-card:hover .model-shell-plan {
	filter: saturate(1.08) drop-shadow(0 24px 34px rgba(22, 169, 239, .14));
	transform: translateY(-10px) rotate(2deg) scale(1.025);
}

.model-card:hover .model-shell-plan-naples {
	transform: translateY(-10px) rotate(-2deg) scale(1.025);
}

.model-card:hover {
	border-color: rgba(22, 169, 239, .42);
	transform: translateY(-8px);
	background: rgba(255, 255, 255, .06);
}

.model-card:hover .model-card-background {
	opacity: .42;
	transform: scale(1.035);
}

.model-card:hover .model-image img {
	transform: translateY(-10px) scale(1.025);
	filter: drop-shadow(0 32px 48px rgba(22, 169, 239, .13));
}

.model-card.is-reveal:not(:hover) {
	opacity: 1;
	transform: none;
}

.model-card.is-featured {
	grid-column: auto;
	min-height: 438px;
	display: grid;
	grid-template-columns: none;
	grid-template-rows: 280px auto;
	align-items: stretch;
	padding: 18px;
	border-color: rgba(22, 169, 239, .24);
}

.model-card.is-featured::before {
	display: none;
}

.model-card.is-featured::after {
	inset: 0;
	opacity: .34;
}

.model-card.is-featured .model-image img {
	height: 250px;
	padding-bottom: 0;
	transform: none;
}

.model-card.is-spa .model-image img {
	width: 88%;
	height: 226px;
}

.model-card.is-featured .model-content {
	position: relative;
	max-width: none;
}

.model-card.is-featured h3 {
	font-size: 1.05rem;
}

.model-content {
	position: relative;
	display: flex;
	flex-direction: column;
	left: auto;
	right: auto;
	bottom: auto;
	align-self: stretch;
	padding: 18px 0 0;
	border: 0;
	border-top: 1px solid rgba(255, 255, 255, .12);
	background: transparent;
	backdrop-filter: none;
}

.visual-story {
	position: relative;
	min-height: auto;
	display: grid;
	align-items: center;
	margin-top: 0;
	padding: 86px 0;
	overflow: hidden;
	background:
		linear-gradient(120deg, rgba(22, 169, 239, .055), transparent 38%),
		var(--white);
	color: var(--ink);
}

.visual-story::before {
	display: none;
}

.visual-story::after {
	display: none;
}

.visual-story-bg {
	display: none;
}

.visual-story-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, .82fr) minmax(420px, 1fr);
	align-items: center;
	gap: 68px;
}

.visual-story-copy {
	max-width: 620px;
}

.visual-story-copy h2 {
	max-width: 620px;
	color: var(--ink);
}

.visual-story-copy p:not(.eyebrow) {
	max-width: 530px;
	color: var(--ink-muted);
}

.visual-story-signature {
	display: inline-flex;
	align-items: center;
	gap: 0;
	margin-top: 22px;
	padding: 4px;
	border: 1px solid rgba(17, 24, 32, .08);
	border-radius: 999px;
	background: #fff;
	box-shadow: 0 18px 42px rgba(17, 24, 32, .08);
}

.visual-story-signature span {
	position: relative;
	padding: 9px 14px;
	color: rgba(17, 24, 32, .72);
	font-size: .72rem;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.visual-story-signature span + span::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 1px;
	height: 16px;
	background: rgba(17, 24, 32, .12);
	transform: translateY(-50%);
}

.visual-story-media {
	position: relative;
	margin: 0;
	overflow: visible;
	border-radius: var(--radius);
	background: #dbeaf2;
	box-shadow: 0 28px 70px rgba(17, 24, 32, .14);
}

.visual-story-media img {
	display: block;
	width: 100%;
	aspect-ratio: 1.18 / 1;
	object-fit: cover;
	border-radius: inherit;
}

.visual-story-media figcaption {
	position: absolute;
	left: 18px;
	bottom: 18px;
	padding: 9px 12px;
	border-radius: 999px;
	background: rgba(5, 7, 10, .72);
	color: var(--text);
	font-size: .82rem;
	font-weight: 700;
	backdrop-filter: blur(10px);
}

.architect-seal {
	position: absolute;
	right: -30px;
	top: 42px;
	z-index: 2;
	display: grid;
	place-items: center;
	width: 112px;
	height: 112px;
	border-radius: 50%;
	background:
		radial-gradient(circle at 32% 24%, rgba(255, 255, 255, .42), transparent 34%),
		linear-gradient(145deg, #25bfff 0%, var(--blue) 58%, #067cbd 100%);
	box-shadow:
		0 24px 48px rgba(17, 24, 32, .2),
		0 16px 34px rgba(22, 169, 239, .28),
		inset 0 1px 0 rgba(255, 255, 255, .46);
	transform: rotate(-7deg);
}

.architect-seal::before {
	content: "";
	position: absolute;
	inset: 7px;
	z-index: -1;
	border-radius: inherit;
	background: rgba(255, 255, 255, .16);
	border: 1px solid rgba(255, 255, 255, .34);
}

.architect-seal::after {
	content: "";
	position: absolute;
	right: -1px;
	bottom: -1px;
	width: 44px;
	height: 44px;
	border-radius: 100% 0 100% 0;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, .9) 0%, rgba(205, 241, 255, .92) 38%, rgba(5, 123, 187, .9) 100%);
	box-shadow:
		-9px -9px 20px rgba(255, 255, 255, .18),
		-12px -10px 20px rgba(5, 77, 116, .24);
	transform: rotate(5deg);
	transform-origin: right bottom;
}

.architect-seal-icon {
	display: grid;
	place-items: center;
	width: 68px;
	height: 68px;
	border-radius: 50%;
	color: #fff;
}

.architect-seal-icon svg {
	width: 54px;
	height: 54px;
	fill: currentColor;
}

.dream-section {
	position: relative;
	display: grid;
	align-items: center;
	min-height: 60svh;
	overflow: hidden;
	background: #05070a;
}

.dream-section::before,
.dream-section::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	z-index: 2;
	height: 110px;
	pointer-events: none;
}

.dream-section::before {
	top: -1px;
	background: linear-gradient(180deg, var(--bg), transparent);
}

.dream-section::after {
	bottom: -1px;
	background: linear-gradient(0deg, var(--bg), transparent);
}

.dream-bg {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(5, 7, 10, .92), rgba(5, 7, 10, .46) 48%, rgba(5, 7, 10, .2)),
		linear-gradient(0deg, rgba(5, 7, 10, .84), transparent 46%, rgba(5, 7, 10, .58)),
		url("../img/br-miami-bg.jpg") center / cover no-repeat;
	transform: scale(1.02);
}

.dream-content {
	position: relative;
	z-index: 3;
	max-width: var(--container);
}

.dream-content h2 {
	max-width: 680px;
	font-size: clamp(1.9rem, 3.8vw, 3.7rem);
	line-height: 1.04;
}

.dream-content p:not(.eyebrow) {
	max-width: 520px;
	margin: 20px 0 28px;
	color: rgba(245, 249, 255, .78);
	font-size: 1rem;
}

.lifestyle-gallery {
	overflow: hidden;
	background:
		linear-gradient(180deg, var(--white) 0%, #eef6fa 54%, var(--white) 100%);
	color: var(--ink);
}

.lifestyle-gallery h2,
.lifestyle-gallery h3 {
	color: var(--ink);
}

.lifestyle-gallery::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 22%;
	height: 52%;
	background:
		radial-gradient(circle at 16% 34%, rgba(22, 169, 239, .08), transparent 34%),
		radial-gradient(circle at 82% 66%, rgba(255, 255, 255, .055), transparent 29%);
	pointer-events: none;
}

.lifestyle-heading {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: .45fr .9fr;
	align-items: end;
	gap: 44px;
	margin-bottom: 48px;
}

.lifestyle-heading h2 {
	max-width: 680px;
}

.lifestyle-grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1.2fr .78fr;
	grid-template-rows: repeat(2, minmax(230px, 1fr));
	gap: 18px;
	align-items: stretch;
}

.lifestyle-item {
	position: relative;
	min-height: 250px;
	margin: 0;
	overflow: hidden;
	background: var(--panel);
	border-radius: var(--radius);
}

.lifestyle-item.is-large {
	grid-row: span 2;
	min-height: 540px;
	transform: none;
}

.lifestyle-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.03);
	transition: transform .8s var(--ease), filter .8s var(--ease);
}

.lifestyle-item::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(5, 7, 10, .58), transparent 52%);
}

.lifestyle-item figcaption {
	position: absolute;
	z-index: 2;
	left: 22px;
	bottom: 20px;
	color: var(--text);
	font-weight: 700;
}

.lifestyle-item:hover img {
	transform: scale(1.075);
	filter: saturate(1.08);
}

.model-content p {
	min-height: 4.5em;
	font-size: .86rem;
	line-height: 1.5;
}

.model-content a,
.text-link {
	color: var(--blue);
	font-weight: 800;
}

.model-content a {
	margin-top: auto;
}

.contact-section {
	padding: 112px 0;
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(4, 9, 15, .74), rgba(4, 9, 15, .46) 48%, rgba(4, 9, 15, .16)),
		var(--contact-bg, linear-gradient(120deg, rgba(22, 169, 239, .06), transparent 44%)) center / cover no-repeat,
		#071019;
}

.contact-section-home {
	background:
		linear-gradient(90deg, rgba(4, 9, 15, .74), rgba(4, 9, 15, .46) 48%, rgba(4, 9, 15, .16)),
		var(--contact-bg) center / cover no-repeat,
		#071019;
}

.contact-panel {
	display: grid;
	grid-template-columns: minmax(280px, .78fr) minmax(420px, 1fr);
	gap: clamp(52px, 7vw, 96px);
	align-items: center;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	backdrop-filter: none;
}

.contact-panel > .contact-copy {
	align-self: center;
	max-width: 520px;
	padding: 0;
	border-left: 0;
	background: transparent;
}

.contact-panel h2 {
	color: #fff;
}

.contact-panel p:not(.eyebrow) {
	color: rgba(245, 249, 255, .78);
}

.contact-form {
	padding: 0;
	border: 0;
	border-radius: var(--radius);
	background: transparent;
	box-shadow: none;
	backdrop-filter: none;
}

.contact-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px 18px;
}

.contact-form-cf7 {
	display: block;
}

.contact-panel > .contact-form {
	justify-self: end;
	width: 100%;
	max-width: 640px;
	padding: 34px;
	border: 1px solid rgba(255, 255, 255, .48);
	border-radius: calc(var(--radius) + 4px);
	background: rgba(255, 255, 255, .97);
	box-shadow: 0 30px 80px rgba(4, 9, 15, .28);
}

.contact-form-cf7 .wpcf7-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px 18px;
}

.contact-form label,
.contact-form-cf7 .wpcf7-form label {
	display: grid;
	gap: 7px;
	color: var(--ink);
	font-size: .86rem;
	font-weight: 700;
}

.contact-form input,
.contact-form textarea,
.contact-form select,
.contact-form .wpcf7-form-control:not(.wpcf7-submit) {
	width: 100%;
	border: 1px solid rgba(17, 24, 32, .13);
	border-radius: 14px;
	background: #fff;
	color: var(--ink);
	font: inherit;
	padding: 12px 14px;
	outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.contact-form .wpcf7-form-control:not(.wpcf7-submit):focus {
	border-color: var(--blue);
	box-shadow: 0 0 0 3px rgba(22, 169, 239, .12);
}

.contact-form button,
.contact-form input[type="submit"],
.wpcf7-submit {
	font-family: inherit;
}

.contact-form .wpcf7-form-control-wrap {
	display: block;
}

.contact-form .wpcf7-submit {
	width: 100%;
	border: 0;
	cursor: pointer;
	text-align: center;
}

.contact-form .wpcf7-not-valid-tip {
	margin-top: 6px;
	color: #f48c8c;
	font-size: .78rem;
	font-weight: 700;
}

.contact-form .wpcf7-response-output {
	grid-column: 1 / -1;
	margin: 2px 0 0;
	padding: 12px 14px;
	border-radius: 12px;
	color: var(--text);
	font-size: .84rem;
}

.contact-overview-grid {
	display: grid;
	grid-template-columns: minmax(0, .82fr) minmax(360px, 1fr);
	gap: 56px;
	align-items: start;
}

.contact-methods {
	display: grid;
	gap: 14px;
}

.contact-methods a {
	display: grid;
	gap: 5px;
	padding: 22px;
	border: 1px solid rgba(17, 24, 32, .1);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, .68);
	box-shadow: 0 18px 42px rgba(17, 24, 32, .06);
	transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}

.contact-methods a:hover {
	transform: translateY(-4px);
	border-color: rgba(22, 169, 239, .34);
	box-shadow: 0 24px 54px rgba(17, 24, 32, .09);
}

.contact-methods span {
	color: var(--blue-deep);
	font-size: .74rem;
	font-weight: 800;
	text-transform: uppercase;
}

.contact-methods strong {
	color: var(--ink);
	font-size: 1.05rem;
	line-height: 1.35;
}

.form-full,
.form-status {
	grid-column: 1 / -1;
}

.form-status {
	min-height: 1.2em;
	margin: 0;
	color: var(--blue);
}

.hp-field {
	position: absolute;
	left: -9999px;
}

.factory-grid,
.split-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 72px;
}

.factory-section {
	overflow: hidden;
	padding-top: 74px;
	padding-bottom: 74px;
}

.factory-section::after {
	display: none;
}

.factory-media {
	position: relative;
}

.factory-media::before {
	display: none;
}

.factory-media img,
.split-grid > img {
	position: relative;
	width: 100%;
	border-radius: var(--radius);
	box-shadow: 0 24px 60px rgba(0, 0, 0, .14);
}

.warranty-card {
	margin-top: 26px;
	padding: 22px;
}

.stats-band {
	overflow: hidden;
}

.stats-band::after {
	content: "";
	position: absolute;
	left: 8%;
	bottom: -170px;
	width: min(45vw, 520px);
	aspect-ratio: 1 / 2;
	background: url("../img/optimized/pool-x-line.webp") center / contain no-repeat;
	opacity: .045;
	pointer-events: none;
}

.stats-grid {
	display: grid;
	grid-template-columns: .72fr 1.28fr;
	gap: 34px;
	align-items: stretch;
}

.stats-grid > div:first-child h2 {
	color: var(--blue);
	font-size: clamp(3rem, 8.2vw, 6.4rem);
	font-weight: 800;
	line-height: .9;
}

.what-card h2 {
	max-width: 760px;
	color: var(--ink);
	font-size: clamp(1.8rem, 3.4vw, 3rem);
	line-height: 1.06;
}

.what-card p {
	max-width: 720px;
	margin-top: 18px;
}

.what-card,
.benefits-grid article,
.blog-card,
.catalog-card {
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, .035);
}

.what-card {
	padding: 34px 38px;
	border-color: rgba(17, 24, 32, .09);
	background: rgba(255, 255, 255, .82);
	box-shadow: 0 22px 54px rgba(17, 24, 32, .06);
}

.faq-grid {
	display: grid;
	grid-template-columns: .75fr 1.25fr;
	gap: 48px;
}

.faq-list {
	display: grid;
	gap: 12px;
}

.faq-item {
	border: 1px solid rgba(17, 24, 32, .08);
	border-radius: 16px;
	background: rgba(255, 255, 255, .88);
	overflow: hidden;
	box-shadow: 0 16px 38px rgba(17, 24, 32, .045);
	transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}

.faq-item:last-child {
	border-bottom: 1px solid rgba(17, 24, 32, .08);
}

.faq-item button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	width: 100%;
	padding: 20px 22px;
	border: 0;
	background: transparent;
	color: var(--ink);
	font: inherit;
	font-weight: 700;
	text-align: left;
	cursor: pointer;
}

.faq-item.is-open {
	border-color: rgba(22, 169, 239, .26);
	background: #fff;
	box-shadow: 0 20px 46px rgba(17, 24, 32, .07);
}

.faq-item i {
	position: relative;
	flex: 0 0 18px;
	width: 18px;
	height: 18px;
}

.faq-item i::before,
.faq-item i::after {
	content: "";
	position: absolute;
	top: 8px;
	left: 0;
	width: 18px;
	height: 2px;
	background: var(--blue);
	transition: opacity .24s ease, transform .32s var(--ease);
}

.faq-item i::after {
	transform: rotate(90deg);
}

.faq-item button[aria-expanded="true"] i::after {
	opacity: 0;
	transform: rotate(0deg);
}

.faq-answer {
	display: grid;
	grid-template-rows: 0fr;
	transform: translateY(-4px);
	opacity: 0;
	transition: grid-template-rows .42s var(--ease), opacity .32s ease, transform .42s var(--ease);
}

.faq-item.is-open .faq-answer {
	grid-template-rows: 1fr;
	transform: translateY(0);
	opacity: 1;
}

.faq-answer-inner {
	min-height: 0;
	overflow: hidden;
	padding: 0 22px;
	transition: padding-bottom .42s var(--ease);
}

.faq-item.is-open .faq-answer-inner {
	padding-bottom: 22px;
}

.faq-answer p {
	margin: 0;
	color: var(--ink-muted);
}

.home .faq-grid {
	grid-template-columns: 1fr;
	max-width: 860px;
	text-align: center;
}

.home .faq-list {
	text-align: left;
}

.home .faq-grid > div:first-child {
	max-width: 620px;
	margin-inline: auto;
}

.home .faq-grid > div:first-child .eyebrow {
	margin-inline: auto;
}

.home .contact-section {
	background:
		linear-gradient(90deg, rgba(4, 9, 15, .74), rgba(4, 9, 15, .46) 48%, rgba(4, 9, 15, .16)),
		var(--contact-bg) center / cover no-repeat,
		#071019;
}

.home .contact-panel {
	grid-template-columns: minmax(280px, .78fr) minmax(420px, 1fr);
	align-items: center;
	gap: clamp(52px, 7vw, 96px);
	border: 0;
	background: transparent;
	box-shadow: none;
	backdrop-filter: none;
}

.home .contact-panel > .contact-copy {
	align-self: center;
	max-width: 520px;
	padding: 0;
	border-left: 0;
	background: transparent;
}

.home .contact-panel h2 {
	color: #fff;
}

.home .contact-panel p:not(.eyebrow) {
	color: rgba(245, 249, 255, .78);
}

.contact-highlights {
	display: grid;
	gap: 12px;
	margin-top: 30px;
}

.contact-highlights span {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #fff;
	font-weight: 750;
}

.contact-highlights span::before {
	content: "";
	flex: 0 0 8px;
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: var(--blue);
	box-shadow: 0 0 0 5px rgba(22, 169, 239, .12);
}

.home .contact-form {
	padding: 34px;
	border: 1px solid rgba(255, 255, 255, .48);
	background: rgba(255, 255, 255, .97);
	box-shadow: 0 30px 80px rgba(4, 9, 15, .28);
	backdrop-filter: none;
}

.home .contact-form label {
	color: var(--ink);
}

.home .contact-form-cf7 .wpcf7-form label {
	color: var(--ink);
}

.home .contact-form input,
.home .contact-form textarea,
.home .contact-form .wpcf7-form-control:not(.wpcf7-submit) {
	border-color: rgba(17, 24, 32, .13);
	background: #fff;
	color: var(--ink);
}

.home .visual-story {
	margin-bottom: -4px;
}

.home .factory-section {
	display: grid;
	align-items: center;
	min-height: 620px;
	padding: 110px 0;
	background:
		linear-gradient(90deg, rgba(5, 7, 10, .9), rgba(5, 7, 10, .62) 48%, rgba(5, 7, 10, .28)),
		url("../img/br-key-west-bg.jpg") center / cover no-repeat;
	color: var(--text);
}

.home .factory-section::before {
	display: none;
}

.home .factory-section.is-reveal {
	opacity: 1;
	transform: none;
}

.home .factory-section + .faq-section.is-reveal {
	opacity: 1;
	transform: none;
}

.home .factory-grid {
	grid-template-columns: minmax(360px, .75fr) minmax(0, .25fr);
	gap: 32px;
}

.home .factory-media {
	display: none;
}

.home .factory-copy {
	max-width: 620px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	text-shadow: 0 2px 22px rgba(0, 0, 0, .5);
}

.home .factory-section h2 {
	margin-bottom: 24px;
	color: var(--text);
}

.home .factory-section p:not(.eyebrow) {
	color: rgba(245, 249, 255, .76);
}

.home .factory-section .warranty-card {
	margin-top: 34px;
	padding: 0;
	border: 0;
	border-left: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	backdrop-filter: none;
}

.home .factory-section .warranty-card strong {
	margin-bottom: 10px;
	color: var(--text);
}

.home .factory-section .warranty-card span {
	display: block;
	color: rgba(245, 249, 255, .74);
}

.home .hero-media::before {
	display: none;
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 38px;
	align-items: stretch;
}

.blog-card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	overflow: visible;
	padding: 14px;
	border-color: rgba(255, 255, 255, .1);
}

.blog-card > div {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 18px 4px 4px;
}

.blog-card h3 {
	min-height: 4.45em;
}

.blog-card p {
	flex: 1;
}

.blog-image,
.blog-image img,
.blog-card > img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	background: var(--panel-strong);
	border-radius: 14px;
}

.blog-card,
.catalog-card,
.benefits-grid article {
	transition: transform .45s var(--ease), border-color .45s var(--ease), color .45s var(--ease);
}

.blog-card:hover,
.catalog-card:hover,
.benefits-grid article:hover {
	transform: translateY(-6px);
	border-color: rgba(22, 169, 239, .34);
}

.blog-card h3 a:hover {
	color: var(--blue);
}

.site-footer {
	padding: 82px 0 28px;
	border-top: 1px solid var(--line);
	background:
		linear-gradient(180deg, #05080c, #020304 72%),
		#030507;
}

.footer-grid {
	display: grid;
	grid-template-columns: minmax(230px, 1.15fr) minmax(160px, .72fr) minmax(300px, 1.35fr) minmax(220px, .92fr);
	gap: 42px;
	align-items: start;
}

.footer-brand img {
	width: 180px;
	margin-bottom: 18px;
}

.footer-brand p {
	max-width: 320px;
	font-size: .94rem;
}

.footer-title {
	margin: 0 0 18px;
	color: var(--text);
	font-size: .72rem;
	font-weight: 800;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.footer-nav,
.footer-contact,
.footer-social {
	display: grid;
	align-content: start;
	gap: 14px;
	font-style: normal;
}

.footer-nav .menu {
	display: grid;
	gap: 11px;
	width: auto;
	margin: 0;
}

.footer-nav .menu a,
.footer-nav > a {
	display: inline-flex;
	width: fit-content;
	padding: 0;
	line-height: 1.25;
}

.footer-nav .menu a::after {
	display: none;
}

.footer-contact strong {
	display: block;
	margin-bottom: 3px;
	color: var(--text);
	font-size: .78rem;
	line-height: 1.25;
}

.footer-contact-item {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr);
	align-items: start;
	gap: 12px;
	color: var(--muted);
	line-height: 1.45;
}

.footer-contact-phone {
	align-items: center;
	min-height: 34px;
}

.footer-contact-phone > span:last-child {
	display: flex;
	align-items: center;
	min-height: 34px;
	color: var(--text);
	font-weight: 800;
	line-height: 1;
}

.footer-contact span,
.footer-contact a,
.safety-link {
	color: var(--muted);
}

.footer-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border: 1px solid rgba(22, 169, 239, .28);
	border-radius: 50%;
	background: rgba(22, 169, 239, .08);
	color: var(--blue);
}

.footer-icon svg,
.footer-social-list svg {
	width: 15px;
	height: 15px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.75;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.footer-social-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.footer-social-list a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 50%;
	background: rgba(255, 255, 255, .045);
	color: rgba(245, 249, 255, .82);
	transition: transform .28s var(--ease), border-color .28s ease, background .28s ease, color .28s ease;
}

.footer-social-list a:hover,
.footer-contact-item:hover .footer-icon {
	border-color: rgba(22, 169, 239, .5);
	background: rgba(22, 169, 239, .12);
	color: var(--text);
}

.footer-social-list a:hover {
	transform: translateY(-2px);
}

.footer-quote-cta {
	display: grid;
	gap: 6px;
	width: min(100%, 260px);
	margin-top: 10px;
	padding: 18px;
	border: 1px solid rgba(22, 169, 239, .52);
	border-radius: 18px;
	background: linear-gradient(135deg, var(--blue), var(--blue-deep));
	color: #00131f;
	text-decoration: none;
	box-shadow: 0 18px 40px rgba(22, 169, 239, .18);
	transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.footer-quote-cta span {
	font-size: .72rem;
	font-weight: 900;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.footer-quote-cta strong {
	color: #00131f;
	font-size: 1.02rem;
	line-height: 1.18;
}

.footer-quote-cta:hover {
	transform: translateY(-3px);
	box-shadow: 0 24px 54px rgba(22, 169, 239, .24);
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-top: 52px;
	padding-top: 24px;
	border-top: 1px solid var(--line);
}

.footer-bottom p {
	margin: 0;
	font-size: .88rem;
}

.footer-credit {
	flex: 0 0 auto;
	color: var(--muted);
	font-size: .88rem;
}

.footer-credit a {
	color: var(--blue);
	font-weight: 850;
	text-decoration: none;
}

.footer-credit a:hover {
	color: var(--text);
}

.page-hero {
	position: relative;
	display: grid;
	align-items: center;
	min-height: 0;
	height: clamp(430px, 56svh, 590px);
	padding: 118px 0 64px;
	overflow: hidden;
	background: var(--bg-soft);
}

.page-hero.compact {
	min-height: 0;
	height: clamp(430px, 56svh, 590px);
	padding: 118px 0 64px;
	background:
		linear-gradient(90deg, rgba(5, 7, 10, .94), rgba(5, 7, 10, .78) 48%, rgba(5, 7, 10, .82)),
		radial-gradient(circle at 75% 10%, rgba(22, 169, 239, .12), transparent 28%),
		url("../img/br-key-west-bg.jpg") center / cover no-repeat,
		linear-gradient(145deg, #05070a, #0b141d);
}

.page-hero::after {
	display: none;
}

.image-hero::after {
	display: none;
}

.image-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(5, 7, 10, .88), rgba(5, 7, 10, .5), rgba(5, 7, 10, .72)),
		var(--hero-image) center / cover no-repeat;
}

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

.page-hero h1 {
	max-width: 900px;
	font-size: clamp(1.9rem, 2.8vw, 2.85rem);
	line-height: 1.05;
}

.page-hero.image-hero h1 {
	max-width: 900px;
}

.builders-hero::before {
	background:
		linear-gradient(90deg, rgba(5, 7, 10, .9), rgba(5, 7, 10, .54), rgba(5, 7, 10, .78)),
		var(--hero-image) center 54% / cover no-repeat;
}

.dealers-hero::before {
	background:
		linear-gradient(90deg, rgba(5, 7, 10, .88), rgba(5, 7, 10, .44), rgba(5, 7, 10, .7)),
		var(--hero-image) center 58% / cover no-repeat;
}

.page-hero p {
	max-width: 650px;
	font-size: 1rem;
}

.split-section {
	background:
		linear-gradient(120deg, rgba(22, 169, 239, .055), transparent 40%),
		var(--white);
	color: var(--ink);
}

.split-section h2,
.split-section h3 {
	color: var(--ink);
}

.split-section p:not(.eyebrow) {
	color: var(--ink-muted);
}

.split-grid.reverse {
	grid-template-columns: .92fr 1.08fr;
}

.feature-list {
	display: grid;
	gap: 10px;
	margin-top: 24px;
}

.feature-list h3 {
	color: var(--blue);
	margin-top: 10px;
}

.benefits-section {
	background:
		linear-gradient(180deg, #070b10, #09141d);
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 34px;
}

.benefits-grid article {
	padding: 24px;
}

.benefit-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	margin-bottom: 18px;
	border: 1px solid rgba(22, 169, 239, .34);
	border-radius: 50%;
	background: rgba(22, 169, 239, .1);
	color: var(--blue);
}

.benefit-icon svg {
	width: 21px;
	height: 21px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.content-feature p,
.content-area p {
	font-size: 1.02rem;
}

.who-pillars-section {
	background:
		linear-gradient(120deg, rgba(22, 169, 239, .055), transparent 42%),
		var(--white);
	color: var(--ink);
}

.who-pillars-section h2 {
	color: var(--ink);
}

.who-pillars-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.who-pillars-grid article {
	overflow: hidden;
	border: 1px solid rgba(17, 24, 32, .08);
	border-radius: var(--radius);
	background: #fff;
	box-shadow: 0 22px 58px rgba(17, 24, 32, .08);
}

.who-pillars-grid img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	background: #edf4fb;
}

.who-pillars-grid article:first-child img {
	object-fit: contain;
	padding: 20px;
}

.who-pillars-grid article > div {
	padding: 24px;
}

.who-pillars-grid h3 {
	color: var(--ink);
	font-size: 1.35rem;
}

.who-pillars-grid p:not(.eyebrow) {
	color: var(--ink-muted);
}

.catalog-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 24px;
	counter-reset: catalog;
}

.catalog-card {
	position: relative;
	display: grid;
	align-content: space-between;
	min-height: 166px;
	padding: 22px;
	border-color: rgba(17, 24, 32, .09);
	background: rgba(255, 255, 255, .72);
	counter-increment: catalog;
	overflow: hidden;
}

.catalog-card::before {
	content: "0" counter(catalog);
	position: absolute;
	top: 22px;
	right: 22px;
	color: rgba(17, 24, 32, .18);
	font-size: .78rem;
	font-weight: 700;
}

.catalog-card::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 40px;
	width: 44px;
	height: 1px;
	background: var(--blue);
	transition: width .45s var(--ease);
}

.catalog-card span {
	font-family: "DM Sans", Arial, sans-serif;
	font-weight: 800;
	font-size: 1.45rem;
	line-height: 1.05;
	color: var(--ink);
}

.is-reveal {
	opacity: .9;
	transform: translateY(22px);
	transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.is-reveal.is-visible {
	opacity: 1;
	transform: none;
}

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

	.is-reveal {
		opacity: 1;
		transform: none;
	}

	.hero-bg-motion {
		animation: none;
		transform: scale(1.02);
		will-change: auto;
	}
}

.catalog-card strong {
	color: var(--blue);
	font-size: .9rem;
}

.catalog-card:hover::after {
	width: 78px;
}

.catalog-showcase {
	padding-top: 78px;
	background:
		linear-gradient(180deg, var(--bg), #071019 48%, #05070a);
}

.catalog-showcase-list {
	display: grid;
	gap: 1px;
	background: rgba(255, 255, 255, .08);
}

.catalog-showcase-item {
	position: relative;
	min-height: 570px;
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(5, 7, 10, .94), rgba(5, 7, 10, .58), rgba(5, 7, 10, .86)),
		var(--catalog-bg) center / cover no-repeat;
}

.catalog-showcase-item::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(0deg, rgba(5, 7, 10, .9), transparent 32%, rgba(5, 7, 10, .72)),
		radial-gradient(circle at 72% 44%, rgba(22, 169, 239, .18), transparent 28%);
}

.catalog-showcase-inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(280px, .72fr) minmax(360px, 1fr);
	align-items: center;
	min-height: 570px;
	gap: 52px;
}

.catalog-showcase-copy {
	max-width: 440px;
	padding: 32px 0 32px 28px;
	border-left: 2px solid var(--blue);
	background: linear-gradient(90deg, rgba(5, 7, 10, .58), transparent);
}

.catalog-showcase-copy h3 {
	font-size: clamp(1.9rem, 3.8vw, 3.6rem);
	font-weight: 800;
}

.catalog-showcase-copy p:not(.eyebrow) {
	max-width: 360px;
	margin-top: 14px;
}

.catalog-showcase-inner img {
	justify-self: center;
	width: auto;
	max-width: min(46vw, 500px);
	max-height: 610px;
	object-fit: contain;
	filter: drop-shadow(0 42px 80px rgba(0, 0, 0, .36));
	transform: translateY(42px);
}

.catalog-showcase-item:nth-child(even) .catalog-showcase-inner {
	grid-template-columns: minmax(360px, 1fr) minmax(280px, .72fr);
}

.catalog-showcase-item:nth-child(even) .catalog-showcase-copy {
	order: 2;
}

.catalog-showcase-item:nth-child(even) img {
	order: 1;
	transform: translateY(42px) rotate(-2deg);
}

.catalog-hero {
	height: clamp(430px, 56svh, 590px);
}

.catalog-designer {
	position: relative;
	padding: 58px 0 86px;
	background:
		radial-gradient(circle at 14% 18%, rgba(22, 169, 239, .22), transparent 28%),
		radial-gradient(circle at 82% 4%, rgba(22, 169, 239, .14), transparent 32%),
		linear-gradient(180deg, #06111a 0%, #071722 52%, #04090f 100%);
	overflow: hidden;
}

.catalog-designer::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, .04), transparent 18%),
		linear-gradient(90deg, rgba(255, 255, 255, .04), transparent 28%, rgba(255, 255, 255, .03));
	pointer-events: none;
}

.catalog-designer-grid {
	position: relative;
	display: grid;
	gap: 22px;
	max-width: 1120px;
}

.catalog-flow-intro {
	display: block;
	max-width: 760px;
	color: var(--text);
}

.catalog-flow-intro h2 {
	max-width: 660px;
	margin-top: 10px;
	color: var(--text);
	font-size: clamp(1.65rem, 2.65vw, 2.62rem);
	line-height: 1.06;
}

.catalog-flow-intro p:not(.eyebrow) {
	max-width: 420px;
	margin-top: 18px;
	color: rgba(245, 249, 255, .72);
	font-size: .98rem;
}

.catalog-flow-intro .eyebrow {
	color: var(--blue);
}

.catalog-flow {
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 28px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .94)),
		#fff;
	box-shadow: 0 42px 100px rgba(0, 0, 0, .34);
	overflow: hidden;
	transition: transform .7s var(--ease), box-shadow .7s var(--ease);
}

.catalog-flow.is-transitioning {
	box-shadow: 0 36px 92px rgba(17, 24, 32, .145);
}

.catalog-flow-header {
	position: relative;
	z-index: 5;
	top: auto;
	background: rgba(255, 255, 255, .92);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid rgba(17, 24, 32, .08);
}

.catalog-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	padding: 10px 12px 9px;
	background: transparent;
}

.catalog-steps button {
	display: grid;
	grid-template-columns: 34px 1fr;
	align-items: center;
	gap: 10px;
	justify-items: start;
	padding: 11px 12px;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: rgba(17, 24, 32, .52);
	font: inherit;
	font-size: .78rem;
	font-weight: 800;
	cursor: pointer;
	transition: color .35s var(--ease), background .35s var(--ease);
}

.catalog-steps span {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border: 1px solid rgba(17, 24, 32, .12);
	border-radius: 50%;
	background: #f7fafc;
	color: var(--ink);
	transition: border-color .35s var(--ease), background .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease);
}

.catalog-progress {
	height: 3px;
	margin: 0 20px;
	border-radius: 999px;
	background: #e8eef4;
	overflow: hidden;
}

.catalog-progress span {
	display: block;
	width: 25%;
	height: 100%;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--blue), var(--blue-deep));
	box-shadow: 0 8px 18px rgba(22, 169, 239, .24);
	transition: width .55s cubic-bezier(.19, 1, .22, 1);
}

.catalog-steps button.is-active {
	color: var(--blue-deep);
	background: rgba(22, 169, 239, .09);
}

.catalog-steps button.is-complete {
	color: var(--ink);
}

.catalog-steps button.is-active span {
	border-color: var(--blue);
	background: var(--blue);
	color: #00131f;
	box-shadow: 0 12px 26px rgba(22, 169, 239, .26);
}

.catalog-live-selection {
	display: grid;
	grid-template-columns: 104px minmax(0, 1fr);
	align-items: center;
	gap: 16px;
	padding: 14px 24px 16px;
	color: var(--ink);
}

.catalog-live-selection[hidden] {
	display: none;
}

.catalog-live-selection img {
	width: 104px;
	height: 70px;
	object-fit: contain;
	border: 0;
	background: transparent;
	filter: drop-shadow(0 12px 18px rgba(17, 24, 32, .12));
}

.catalog-live-selection img[hidden] + div {
	grid-column: 1 / -1;
}

.catalog-live-selection span {
	display: block;
	margin-bottom: 3px;
	color: var(--blue-deep);
	font-size: .68rem;
	font-weight: 850;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.catalog-live-selection strong {
	display: block;
	color: var(--ink);
	font-size: 1.18rem;
	line-height: 1.08;
}

.catalog-live-selection p {
	margin: 6px 0 0;
	color: var(--ink-muted);
	font-size: .88rem;
}

.catalog-panel {
	display: none;
	min-height: 520px;
	padding: 34px 42px 0;
	color: var(--ink);
	opacity: 0;
	transform: translateY(6px);
}

.catalog-panel.is-active {
	display: block;
	animation: catalogStepIn .78s cubic-bezier(.19, 1, .22, 1) both;
}

.catalog-panel.is-exiting {
	display: block;
	pointer-events: none;
	animation: catalogStepOut .22s ease both;
}

.catalog-panel-heading {
	max-width: 680px;
	margin-bottom: 26px;
}

.catalog-panel-heading h2 {
	margin-top: 8px;
	color: var(--ink);
	font-size: clamp(1.65rem, 2.5vw, 2.55rem);
	line-height: 1.06;
}

.catalog-panel-heading p:not(.eyebrow) {
	max-width: 560px;
	margin-top: 16px;
	color: var(--ink-muted);
}

.catalog-model-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.catalog-model-option,
.catalog-size-option,
.catalog-color-option {
	border: 1px solid rgba(17, 24, 32, .1);
	border-radius: 22px;
	background: #fff;
	color: var(--ink);
	font: inherit;
	text-align: left;
	cursor: pointer;
	transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}

.catalog-model-option {
	display: grid;
	grid-template-columns: 86px 1fr;
	align-items: center;
	gap: 12px 14px;
	min-height: 126px;
	padding: 15px;
	text-align: left;
	overflow: hidden;
}

.catalog-model-option img {
	grid-row: span 3;
	width: 100%;
	height: 76px;
	object-fit: contain;
	filter: drop-shadow(0 12px 18px rgba(17, 24, 32, .1));
}

.catalog-model-option .catalog-model-plan {
	position: relative;
	grid-row: span 3;
	display: grid;
	place-items: center;
	width: 100%;
	height: 76px;
	border: 1px solid rgba(22, 169, 239, .18);
	border-radius: 16px;
	background: linear-gradient(145deg, #f8fcff, #e9f5fc);
	overflow: hidden;
}

.catalog-model-plan::before,
.catalog-model-plan i {
	content: "";
	display: block;
	width: 58px;
	height: 34px;
	border: 3px solid rgba(8, 122, 195, .68);
	border-radius: 14px 7px 14px 7px;
	transform: rotate(-5deg);
}

.catalog-model-plan i {
	position: absolute;
	width: 38px;
	height: 18px;
	border-width: 1px;
	border-color: rgba(22, 169, 239, .46);
	transform: rotate(-5deg);
}

.catalog-model-plan-naples::before,
.catalog-model-plan-naples i {
	border-radius: 45% 55% 48% 52%;
	transform: rotate(2deg);
}

.catalog-selection-box > div:only-child {
	grid-column: 1 / -1;
}

.catalog-model-option span,
.catalog-size-option strong,
.catalog-color-option strong {
	display: block;
	font-weight: 850;
}

.catalog-model-option strong {
	color: var(--blue-deep);
	font-size: .78rem;
}

.catalog-model-option em {
	display: block;
	color: var(--ink-muted);
	font-size: .78rem;
	font-style: normal;
	line-height: 1.35;
}

.catalog-model-option:hover,
.catalog-size-option:hover,
.catalog-color-option:hover,
.catalog-model-option.is-selected,
.catalog-size-option.is-selected,
.catalog-color-option.is-selected {
	border-color: rgba(22, 169, 239, .72);
	box-shadow: 0 18px 46px rgba(17, 24, 32, .12);
	transform: translateY(-3px);
}

.catalog-size-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.catalog-size-option {
	position: relative;
	min-height: 94px;
	padding: 20px;
	overflow: hidden;
}

.catalog-size-option::after {
	content: "";
	position: absolute;
	inset: auto 18px 14px 18px;
	height: 1px;
	background: linear-gradient(90deg, var(--blue), transparent);
	opacity: 0;
	transition: opacity .3s var(--ease);
}

.catalog-size-option:hover::after,
.catalog-size-option.is-selected::after {
	opacity: 1;
}

.catalog-size-option span {
	display: block;
	margin-top: 8px;
	color: var(--ink-muted);
	font-size: .9rem;
}

.catalog-color-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 300px));
	gap: 14px;
}

.catalog-color-option {
	display: grid;
	grid-template-columns: 56px 1fr;
	align-items: center;
	gap: 14px;
	min-height: 104px;
	padding: 20px;
}

.catalog-swatch {
	grid-row: span 2;
	width: 54px;
	height: 54px;
	border: 1px solid rgba(17, 24, 32, .1);
	border-radius: 50%;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
}

.catalog-swatch.is-blue {
	background:
		radial-gradient(circle at 30% 24%, rgba(255, 255, 255, .7), transparent 34%),
		linear-gradient(135deg, #8fe7ff, #16a9ef 52%, #067cbd);
}

.catalog-swatch.is-white {
	background:
		radial-gradient(circle at 30% 24%, #fff, transparent 42%),
		linear-gradient(135deg, #fff, #e7eef3);
}

.catalog-color-option small {
	display: block;
	margin-top: 4px;
	color: var(--ink-muted);
	font-size: .8rem;
	line-height: 1.3;
}

.catalog-selection-box {
	display: grid;
	grid-template-columns: 104px 1fr;
	align-items: center;
	gap: 16px;
	margin-bottom: 24px;
	padding: 18px;
	border: 1px solid rgba(22, 169, 239, .28);
	border-radius: 22px;
	background:
		linear-gradient(135deg, rgba(22, 169, 239, .13), rgba(255, 255, 255, .9)),
		#e8f4fd;
	color: var(--ink);
}

.catalog-selection-box img {
	width: 104px;
	height: 76px;
	object-fit: contain;
	background: transparent;
	filter: drop-shadow(0 12px 18px rgba(17, 24, 32, .12));
}

.catalog-selection-box div {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 14px;
}

.catalog-selection-box strong {
	width: 100%;
	color: var(--blue-deep);
	font-size: .74rem;
	text-transform: uppercase;
}

.catalog-selection-box span {
	font-size: .9rem;
}

.catalog-quote-spec {
	display: inline-flex;
	margin: -8px 0 22px;
	color: var(--blue-deep);
	font-size: .86rem;
	font-weight: 850;
	text-decoration: none;
}

.catalog-quote-spec[hidden] {
	display: none;
}

.catalog-quote-form {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	border-color: rgba(17, 24, 32, .08);
	background: #fff;
	box-shadow: none;
}

.catalog-quote-layout {
	display: grid;
	grid-template-columns: minmax(260px, .72fr) minmax(0, 1fr);
	gap: 34px;
	align-items: start;
}

.catalog-quote-summary {
	position: sticky;
	top: 238px;
	padding: 24px;
	border: 1px solid rgba(17, 24, 32, .08);
	border-radius: 24px;
	background: #f7fafc;
}

.catalog-quote-summary h2 {
	color: var(--ink);
	font-size: clamp(1.5rem, 2vw, 2.25rem);
	line-height: 1.08;
}

.catalog-quote-summary > p:not(.eyebrow) {
	color: var(--ink-muted);
	font-size: .94rem;
}

.catalog-quote-form label {
	color: var(--ink);
}

.catalog-quote-form.contact-form-cf7 .wpcf7-form label {
	color: var(--ink);
}

.catalog-quote-form input,
.catalog-quote-form textarea,
.catalog-quote-form .wpcf7-form-control:not(.wpcf7-submit) {
	border-color: rgba(17, 24, 32, .13);
	background: #f7fafc;
	color: var(--ink);
}

.catalog-quote-form input:focus,
.catalog-quote-form textarea:focus,
.catalog-quote-form .wpcf7-form-control:not(.wpcf7-submit):focus {
	background: #fff;
}

.catalog-panel[data-catalog-step="quote"] {
	padding-bottom: 42px;
}

.contact-form input.wpcf7-submit.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	border: 1px solid var(--blue);
	border-radius: 999px;
	background: linear-gradient(135deg, var(--blue), var(--blue-deep));
	color: #00131f;
	font-weight: 750;
	box-shadow: 0 12px 30px rgba(22, 169, 239, .18);
	appearance: none;
}

.catalog-model-preview {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, .36fr);
	gap: 14px;
	margin-bottom: 24px;
	padding: 14px;
	border: 1px solid rgba(17, 24, 32, .08);
	border-radius: 26px;
	background: #071019;
	color: var(--ink);
	overflow: hidden;
}

.catalog-model-preview[hidden] {
	display: none;
}

.catalog-preview-stage {
	position: relative;
	min-width: 0;
	height: 380px;
	border-radius: 18px;
	background: #071019;
	overflow: hidden;
}

.catalog-preview-stage > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity .24s var(--ease), transform .45s var(--ease);
}

.catalog-preview-stage > img.is-changing {
	opacity: .3;
}

.catalog-preview-controls {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 14px;
	pointer-events: none;
}

.catalog-preview-arrow {
	display: grid;
	width: 44px;
	height: 44px;
	padding: 0;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, .28);
	border-radius: 50%;
	background: rgba(5, 7, 10, .72);
	box-shadow: 0 10px 26px rgba(5, 7, 10, .2);
	color: #fff;
	font: inherit;
	font-size: 1.2rem;
	cursor: pointer;
	pointer-events: auto;
	transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}

.catalog-preview-arrow:hover,
.catalog-preview-arrow:focus-visible {
	border-color: var(--blue);
	background: var(--blue);
	transform: scale(1.06);
}

.catalog-preview-arrow[hidden] {
	display: none;
}

.catalog-preview-sidebar {
	display: flex;
	min-width: 0;
	max-height: 380px;
	flex-direction: column;
	gap: 10px;
}

.catalog-preview-copy {
	padding: 6px 4px 14px;
	border-bottom: 1px solid rgba(255, 255, 255, .14);
	color: var(--text);
}

.catalog-preview-copy h3 {
	color: var(--text);
	font-size: clamp(1.25rem, 2vw, 1.9rem);
	line-height: 1.08;
}

.catalog-preview-copy p:not(.eyebrow) {
	margin-top: 8px;
	color: rgba(245, 249, 255, .76);
	font-size: .86rem;
	line-height: 1.45;
}

.catalog-gallery-toolbar {
	display: flex;
	min-height: 30px;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	color: rgba(245, 249, 255, .66);
	font-size: .72rem;
	font-weight: 750;
	text-transform: uppercase;
}

.catalog-gallery-toolbar[hidden] {
	display: none;
}

.catalog-gallery-toolbar > div {
	display: flex;
	gap: 6px;
}

.catalog-gallery-toolbar button {
	display: grid;
	width: 28px;
	height: 28px;
	padding: 0;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 50%;
	background: rgba(255, 255, 255, .06);
	color: #fff;
	font: inherit;
	cursor: pointer;
	transition: border-color .25s var(--ease), background .25s var(--ease), opacity .25s var(--ease);
}

.catalog-gallery-toolbar button:hover:not(:disabled),
.catalog-gallery-toolbar button:focus-visible {
	border-color: var(--blue);
	background: rgba(22, 169, 239, .2);
}

.catalog-gallery-toolbar button:disabled {
	opacity: .32;
	cursor: default;
}

.catalog-gallery {
	display: grid;
	min-height: 0;
	flex: 1;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-auto-rows: 74px;
	align-content: start;
	gap: 8px;
	overflow: auto;
	scrollbar-width: none;
}

.catalog-gallery::-webkit-scrollbar {
	display: none;
}

.catalog-gallery-item {
	display: block;
	height: 74px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 12px;
	background: #0d1821;
	cursor: pointer;
	overflow: hidden;
	opacity: .72;
	transition: opacity .3s var(--ease), transform .3s var(--ease);
}

.catalog-gallery-item.is-selected {
	opacity: 1;
	outline: 2px solid var(--blue);
	outline-offset: -2px;
}

.catalog-gallery img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 11px;
	box-shadow: 0 12px 28px rgba(17, 24, 32, .1);
	transition: transform .45s var(--ease), filter .45s var(--ease);
}

.catalog-gallery-item:hover img {
	transform: scale(1.035);
	filter: saturate(1.05);
}

.catalog-step-footer,
.catalog-panel-actions {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	align-items: center;
	justify-content: center;
	justify-items: center;
	gap: 16px;
	margin: 28px -42px 0;
	padding: 20px 42px;
	border-top: 1px solid rgba(17, 24, 32, .08);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, .82), #fff 42%),
		#fff;
	backdrop-filter: blur(16px);
	position: sticky;
	bottom: 0;
	z-index: 4;
}

.catalog-step-footer span {
	justify-self: start;
	max-width: 360px;
	color: var(--ink-muted);
	font-size: .86rem;
	line-height: 1.45;
}

.catalog-back {
	display: inline-flex;
	justify-self: start;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 10px 16px;
	border: 1px solid rgba(17, 24, 32, .12);
	border-radius: 999px;
	background: #fff;
	color: var(--ink-muted);
	font: inherit;
	font-size: .82rem;
	font-weight: 850;
	cursor: pointer;
	transition: color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}

.catalog-back:hover {
	color: var(--blue-deep);
	border-color: rgba(22, 169, 239, .42);
	transform: translateY(-2px);
}

.catalog-next {
	grid-column: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-width: 220px;
	min-height: 54px;
	padding: 14px 28px;
	border-color: var(--blue-deep);
	background: linear-gradient(135deg, var(--blue), var(--blue-deep));
	color: #fff;
	font-family: "DM Sans", Arial, sans-serif;
	font-size: .92rem;
	font-weight: 850;
	box-shadow: 0 18px 44px rgba(22, 169, 239, .28);
	transition: transform .35s var(--ease), box-shadow .35s var(--ease), filter .35s var(--ease), opacity .25s var(--ease);
}

.catalog-next::after {
	content: "\2192";
	position: static;
	inset: auto;
	z-index: auto;
	display: inline-block;
	width: auto;
	height: auto;
	background: none;
	color: #fff;
	font-size: 1.15rem;
	line-height: 1;
	opacity: 1;
	transform: translateY(-1px);
	transition: transform .35s var(--ease);
}

.catalog-next:hover:not(:disabled) {
	transform: translateY(-2px);
	box-shadow: 0 24px 54px rgba(22, 169, 239, .34);
	filter: saturate(1.05);
}

.catalog-next:hover:not(:disabled)::after {
	transform: translate(4px, -1px);
}

.catalog-next:disabled {
	opacity: .46;
	cursor: not-allowed;
	border-color: rgba(17, 24, 32, .12);
	background: #d7e3ea;
	color: rgba(17, 24, 32, .62);
	box-shadow: none;
}

.catalog-next:disabled::after {
	color: rgba(17, 24, 32, .62);
}

@keyframes catalogStepIn {
	0% {
		opacity: 0;
		transform: translateY(8px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes catalogStepOut {
	to {
		opacity: 0;
		transform: translateY(-4px);
	}
}

.single-post .page-hero {
	height: clamp(430px, 56svh, 590px);
}

.single-media {
	margin-top: -54px;
}

.single-media img {
	width: 100%;
	max-height: 620px;
	object-fit: cover;
	border-radius: 0;
	box-shadow: var(--shadow);
}

.content-area {
	color: var(--muted);
}

.content-area a {
	color: var(--blue);
	text-decoration: underline;
	text-underline-offset: 3px;
}

@media (max-width: 1020px) {
	.header-cta {
		display: none;
	}

	.menu-toggle {
		display: block;
		margin-left: auto;
	}

	.primary-nav {
		position: fixed;
		inset: 0 0 0 auto;
		z-index: 101;
		display: flex;
		flex-direction: column;
		width: min(82vw, 360px);
		padding: 96px 24px 28px;
		background:
			linear-gradient(180deg, rgba(7, 16, 25, .98), rgba(4, 9, 15, .98)),
			#05070a;
		border-left: 1px solid rgba(255, 255, 255, .12);
		box-shadow: -32px 0 70px rgba(0, 0, 0, .34);
		opacity: 0;
		pointer-events: none;
		transform: translateX(100%);
		transition: transform .42s cubic-bezier(.19, 1, .22, 1), opacity .28s ease;
	}

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

	.menu {
		align-items: stretch;
		flex-direction: column;
		gap: 4px;
		width: 100%;
		margin: 0;
	}

	.menu a {
		display: block;
		padding: 11px 0;
		color: rgba(245, 249, 255, .78);
		font-size: 14px;
		font-weight: 700;
	}

	.mobile-nav-cta {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		min-height: 46px;
		margin: 22px 0 0;
		padding: 12px 18px;
		border: 1px solid var(--blue);
		border-radius: 999px;
		color: var(--text);
		font-size: 14px;
		font-weight: 800;
	}

	.primary-nav .menu a::after {
		bottom: 6px;
		right: auto;
		width: 36px;
	}

	.nav-open .menu-toggle {
		position: fixed;
		z-index: 102;
		top: 18px;
		right: 18px;
		background: rgba(255, 255, 255, .09);
	}

	.hero-grid,
	.logo-motion-grid,
	.contact-panel,
	.contact-overview-grid,
	.factory-grid,
	.lifestyle-heading,
	.lifestyle-grid,
	.split-grid,
	.split-grid.reverse,
	.stats-grid,
	.visual-story-grid,
	.faq-grid {
		grid-template-columns: 1fr;
	}

	.contact-form,
	.contact-form-cf7 .wpcf7-form,
	.catalog-quote-form {
		grid-template-columns: 1fr;
	}

	.home .contact-panel {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.home .contact-form-cf7 .wpcf7-form {
		grid-template-columns: 1fr;
	}

	.logo-motion-grid {
		gap: 24px;
	}

	.logo-motion-card {
		min-height: 160px;
	}

	.hero-media {
		min-height: 360px;
	}

	.hero-media img {
		width: min(64vw, 320px);
		height: min(56vw, 360px);
		border-radius: 0;
	}

	.hero-feature-strip {
		grid-template-columns: 1fr;
		margin-top: 8px;
	}

	.hero-feature-strip article {
		min-height: auto;
	}

	.page-hero::after,
	.factory-section::after,
	.stats-band::after {
		opacity: .12;
	}

	.floating-proof {
		left: 22px;
		bottom: 22px;
	}

	.models-grid,
	.blog-grid,
	.benefits-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.models-grid > .model-card:nth-last-child(2):nth-child(4n + 1) {
		grid-column: auto;
	}

	.model-card.is-featured {
		grid-column: auto;
		grid-template-columns: none;
	}

	.catalog-showcase-inner,
	.catalog-showcase-item:nth-child(even) .catalog-showcase-inner {
		grid-template-columns: 1fr;
		gap: 20px;
		padding-top: 70px;
	}

	.catalog-designer-grid {
		max-width: 900px;
	}

	.catalog-flow-intro,
	.catalog-live-selection,
	.catalog-model-preview,
	.catalog-quote-layout {
		grid-template-columns: 1fr;
	}

	.catalog-flow-intro p:not(.eyebrow) {
		justify-self: start;
	}

	.catalog-quote-summary {
		position: static;
	}

	.catalog-showcase-item:nth-child(even) .catalog-showcase-copy,
	.catalog-showcase-item:nth-child(even) img {
		order: initial;
	}

	.catalog-showcase-inner img {
		max-width: min(80vw, 400px);
		max-height: 500px;
	}

	.catalog-model-grid,
	.catalog-gallery {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.catalog-model-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.catalog-preview-stage,
	.catalog-gallery {
		max-height: none;
	}

	.catalog-preview-stage {
		height: 300px;
	}

	.catalog-preview-sidebar {
		max-height: none;
	}

	.visual-story-product {
		min-height: 420px;
	}

	.visual-story-product img {
		left: 50%;
		width: min(82vw, 430px);
		transform: translate(-50%, -42%) rotate(2deg);
	}

	.architect-seal {
		right: 18px;
		top: -34px;
	}

	.lifestyle-item.is-large {
		grid-row: auto;
		min-height: 420px;
		transform: none;
	}

	.catalog-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

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

@media (max-width: 680px) {
	.hero-bg-motion video {
		display: none;
	}

	.hero-bg-still {
		opacity: 1;
	}

	.container {
		width: min(100% - 28px, var(--container));
	}

	.header-inner {
		min-height: 72px;
	}

	.site-logo img {
		width: 142px;
	}

	.hero,
	.page-hero {
		padding-top: 116px;
	}

	.catalog-hero {
		height: clamp(390px, 54svh, 520px);
	}

	.hero {
		min-height: auto;
		padding-bottom: 72px;
	}

	.hero-copy p {
		font-size: .98rem;
	}

	.hero-copy p:not(.eyebrow) {
		max-width: 34ch;
	}

	.hero-copy h1 {
		max-width: 12ch;
		font-size: clamp(1.9rem, 8.5vw, 2.34rem);
		line-height: 1.04;
		overflow-wrap: anywhere;
	}

	.hero-eyebrow-line {
		display: inline;
	}

	.hero-media,
	.hero-feature-strip {
		display: none;
	}

	h1 {
		max-width: 100%;
		font-size: clamp(1.95rem, 8.7vw, 2.55rem);
		overflow-wrap: anywhere;
	}

	.page-hero h1 {
		font-size: clamp(2rem, 9.8vw, 2.9rem);
	}

	h2 {
		max-width: 100%;
		font-size: clamp(1.45rem, 7vw, 2rem);
		overflow-wrap: anywhere;
	}

	.models-section .section-heading h2 {
		font-size: 1.5rem;
		line-height: 1.12;
	}

	.section {
		padding: 62px 0;
	}

	.section-heading {
		display: block;
	}

	.hero-actions,
	.contact-form {
		display: grid;
		grid-template-columns: 1fr;
	}

	.contact-form-cf7 {
		display: block;
	}

	.contact-form-cf7 .wpcf7-form {
		grid-template-columns: 1fr;
	}

	.models-grid,
	.blog-grid,
	.benefits-grid,
	.catalog-grid,
	.who-pillars-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.model-card.is-featured {
		grid-column: auto;
		min-height: 360px;
		padding: 16px;
	}

	.model-card.is-featured::before {
		display: none;
	}

	.model-card::after {
		inset: 0;
		opacity: .28;
	}

	.model-card.is-featured .model-image img {
		height: 190px;
		transform: none;
	}

	.model-card.is-featured .model-content {
		position: relative;
		left: auto;
		right: auto;
		bottom: auto;
		background: transparent;
	}

	.catalog-showcase-item {
		min-height: 650px;
	}

	.catalog-showcase-inner,
	.catalog-showcase-item:nth-child(even) .catalog-showcase-inner {
		min-height: 650px;
		padding-top: 54px;
	}

	.catalog-designer {
		padding: 34px 0 58px;
	}

	.catalog-steps {
		grid-template-columns: repeat(2, 1fr);
		padding: 8px;
	}

	.catalog-steps button {
		grid-template-columns: 30px 1fr;
		padding: 9px 10px;
	}

	.catalog-steps span {
		width: 30px;
		height: 30px;
	}

	.catalog-live-selection {
		padding: 16px;
		gap: 14px;
	}

	.catalog-live-selection img {
		width: 96px;
		height: 68px;
	}

	.catalog-panel {
		min-height: auto;
		padding: 24px 18px 126px;
		transform: none;
	}

	.catalog-panel.is-active {
		animation: none;
		opacity: 1;
		transform: none;
	}

	.catalog-panel.is-active[data-catalog-step="model"] {
		display: flex;
		flex-direction: column;
	}

	.catalog-panel[data-catalog-step="quote"] {
		padding-bottom: 24px;
	}

	.catalog-panel-heading p:not(.eyebrow) {
		max-width: 31ch;
	}

	.catalog-model-grid,
	.catalog-size-grid,
	.catalog-color-grid,
	.catalog-gallery,
	.catalog-quote-form {
		grid-template-columns: 1fr;
	}

	.catalog-model-preview {
		order: 3;
		padding: 10px;
	}

	.catalog-panel[data-catalog-step="model"] .catalog-panel-heading {
		order: 1;
	}

	.catalog-panel[data-catalog-step="model"] .catalog-model-grid {
		order: 2;
	}

	.catalog-panel[data-catalog-step="model"] .catalog-step-footer {
		order: 4;
	}

	.catalog-preview-stage {
		height: 240px;
	}

	.catalog-step-footer,
	.catalog-panel-actions {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		position: fixed;
		z-index: 80;
		right: 14px;
		bottom: 12px;
		left: 14px;
		max-width: 430px;
		margin: 0 auto;
		padding: 10px;
		border: 1px solid rgba(17, 24, 32, .08);
		border-radius: 22px;
		background: rgba(255, 255, 255, .94);
		box-shadow: 0 20px 54px rgba(5, 7, 10, .22);
		backdrop-filter: blur(18px);
	}

	.catalog-step-footer span {
		display: none;
	}

	.catalog-next {
		width: 100%;
		min-width: 0;
		min-height: 50px;
	}

	.catalog-step-footer .catalog-back {
		min-height: 38px;
		border-color: transparent;
		background: transparent;
	}

	.catalog-preview-copy {
		padding: 8px 4px 14px;
	}

	.catalog-preview-sidebar {
		gap: 10px;
	}

	.catalog-preview-sidebar .catalog-gallery {
		display: flex;
		gap: 10px;
		overflow-x: auto;
		overflow-y: hidden;
		scroll-snap-type: x proximity;
	}

	.catalog-preview-sidebar .catalog-gallery-item {
		min-width: 112px;
		flex: 0 0 112px;
		height: 72px;
		scroll-snap-align: start;
	}

	.catalog-preview-arrow {
		width: 40px;
		height: 40px;
	}

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

	.site-footer {
		text-align: center;
	}

	.footer-grid {
		justify-items: center;
	}

	.footer-brand,
	.footer-column,
	.footer-social {
		display: grid;
		justify-items: center;
		width: 100%;
	}

	.footer-brand img,
	.footer-brand p {
		margin-inline: auto;
	}

	.footer-nav,
	.footer-nav .menu,
	.footer-contact {
		justify-items: center;
	}

	.footer-contact {
		width: min(100%, 340px);
	}

	.footer-contact-item {
		grid-template-columns: 1fr;
		justify-items: center;
		text-align: center;
	}

	.footer-contact-phone {
		grid-template-columns: 34px auto;
		justify-content: center;
		justify-items: initial;
		text-align: left;
	}

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

	.footer-quote-cta {
		margin-inline: auto;
		text-align: center;
	}

	.catalog-model-option {
		grid-template-columns: 88px 1fr;
		min-height: 108px;
		text-align: left;
	}

	.catalog-model-option em {
		min-height: 0;
	}

	.catalog-model-option img {
		grid-row: span 3;
		height: 78px;
	}

	.catalog-selection-box {
		grid-template-columns: 1fr;
	}

	.catalog-color-grid {
		max-width: none;
	}

	.catalog-showcase-copy {
		padding: 24px 0 24px 18px;
	}

	.catalog-showcase-copy h3 {
		font-size: clamp(1.9rem, 11vw, 3rem);
	}

	.catalog-showcase-inner img {
		max-width: min(92vw, 330px);
		max-height: 430px;
		transform: translateY(24px);
	}

	.visual-story {
		min-height: auto;
		padding: 74px 0 88px;
	}

	.visual-story-signature {
		width: 100%;
		justify-content: center;
	}

	.visual-story-signature span {
		flex: 1;
		padding-inline: 8px;
		text-align: center;
	}

	.architect-seal {
		right: 14px;
		top: -30px;
		width: 86px;
		height: 86px;
	}

	.architect-seal-icon svg {
		width: 42px;
		height: 42px;
	}

	.dream-section {
		min-height: 620px;
	}

	.dream-bg {
		background:
			linear-gradient(90deg, rgba(5, 7, 10, .86), rgba(5, 7, 10, .58)),
			linear-gradient(0deg, rgba(5, 7, 10, .86), transparent 48%, rgba(5, 7, 10, .5)),
			url("../img/br-miami-bg.jpg") center / cover no-repeat;
	}

	.dream-content h2 {
		font-size: clamp(2rem, 10vw, 3.3rem);
	}

	.visual-story-product {
		min-height: 340px;
	}

	.visual-story-product img {
		width: min(92vw, 330px);
	}

	.lifestyle-heading {
		gap: 10px;
		margin-bottom: 26px;
	}

	.lifestyle-item,
	.lifestyle-item.is-large {
		min-height: 260px;
	}

	.model-card:nth-child(2),
	.model-card:nth-child(5) {
		transform: none;
	}

	.model-card {
		grid-template-rows: 215px auto;
		min-height: 360px;
		padding: 16px;
	}

	.model-card.is-featured {
		grid-template-rows: 215px auto;
		min-height: 360px;
	}

	.model-image img {
		height: 190px;
	}

	.model-card.is-spa .model-image img {
		width: 82%;
		height: 174px;
	}

	.model-image {
		padding-bottom: 14px;
	}

	.model-shell-plan {
		width: 100px;
		height: 178px;
	}

	.model-shell-plan-naples {
		width: 110px;
	}

	.model-content p {
		min-height: 0;
	}

	.contact-panel {
		padding: 0;
	}

	.contact-panel > .contact-copy {
		padding: 0 4px;
		backdrop-filter: none;
	}

	.contact-form {
		padding: 0;
		background: transparent;
	}

	.contact-panel > .contact-form,
	.home .contact-panel > .contact-form {
		max-width: none;
		padding: 22px;
		border-radius: 20px;
		background: rgba(255, 255, 255, .98);
	}

	.contact-section {
		padding: 76px 0;
	}

	.form-full,
	.form-status {
		grid-column: auto;
	}

	.factory-media::before {
		inset: 24px -10px -10px 24px;
	}

	.page-hero,
	.page-hero.compact {
		height: clamp(360px, 52svh, 460px);
		padding-bottom: 46px;
	}

	.what-card {
		padding-left: 22px;
	}

	.home .factory-section {
		min-height: auto;
		padding: 74px 0;
		background:
			linear-gradient(180deg, rgba(5, 7, 10, .88), rgba(5, 7, 10, .72)),
			url("../img/br-key-west-bg.jpg") center / cover no-repeat;
	}

	.home .factory-grid {
		grid-template-columns: 1fr;
	}

	.home .factory-copy {
		padding: 0;
	}

	.home .contact-panel {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.home .contact-panel > .contact-copy {
		padding: 0;
	}

	.contact-highlights {
		margin-top: 20px;
	}
}
