:root {
	--launch-ink: var(--wp--preset--color--ink, #163b3a);
	--launch-brand: var(--wp--preset--color--brand, #1c7773);
	--launch-accent: var(--wp--preset--color--accent, #e88461);
	--launch-cream: var(--wp--preset--color--cream, #f6f2ea);
	--launch-white: #fff;
	--launch-muted: #657674;
	--launch-border: rgba(22, 59, 58, 0.14);
	--launch-shadow: 0 24px 70px rgba(22, 59, 58, 0.14);
	--launch-radius-sm: 12px;
	--launch-radius: 24px;
	--launch-radius-lg: 40px;
	--launch-container: min(1240px, calc(100vw - 40px));
	--launch-reading: min(760px, calc(100vw - 40px));
	--launch-font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--launch-font-serif: Georgia, "Times New Roman", serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--launch-ink);
	background: var(--launch-white);
	font-family: var(--launch-font-sans);
	font-size: 17px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

body.launch-menu-is-open {
	overflow: hidden;
}

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

a {
	color: var(--launch-brand);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

a:hover {
	color: var(--launch-ink);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0;
	color: var(--launch-ink);
	font-family: var(--launch-font-serif);
	font-weight: 500;
	line-height: 1.08;
	letter-spacing: -0.035em;
}

h1 {
	font-size: clamp(2.65rem, 5.4vw, 5rem);
}

h2 {
	font-size: clamp(2.1rem, 4vw, 3.8rem);
}

h3 {
	font-size: clamp(1.35rem, 2vw, 1.85rem);
}

p {
	margin: 0 0 1.35rem;
}

svg {
	width: 1.25em;
	height: 1.25em;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

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

.launch-skip-link {
	position: fixed;
	z-index: 10000;
	top: 12px;
	left: 12px;
	padding: 10px 16px;
	transform: translateY(-150%);
	color: var(--launch-white);
	background: var(--launch-ink);
	border-radius: 8px;
}

.launch-skip-link:focus {
	transform: none;
}

.launch-container {
	width: var(--launch-container);
	margin-right: auto;
	margin-left: auto;
}

.launch-main {
	min-height: 60vh;
}

.launch-utility {
	color: rgba(255, 255, 255, 0.84);
	background: var(--launch-ink);
	font-size: 0.78rem;
	font-weight: 650;
	letter-spacing: 0.04em;
}

.launch-utility__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 38px;
	gap: 24px;
}

.launch-utility p {
	margin: 0;
	text-transform: uppercase;
}

.launch-announcement {
	display: grid;
	flex: 1 1 auto;
	min-width: 0;
	max-width: 680px;
	text-transform: uppercase;
}

.launch-announcement__item {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	overflow: hidden;
	color: inherit;
	gap: 8px;
	grid-area: 1 / 1;
	opacity: 0;
	pointer-events: none;
	text-decoration: none;
	text-overflow: ellipsis;
	transition: opacity 420ms ease;
	white-space: nowrap;
}

.launch-announcement__item.is-active {
	opacity: 1;
	pointer-events: auto;
}

.launch-announcement__item:hover {
	color: var(--launch-white);
}

.launch-utility__details {
	display: flex;
	align-items: center;
	gap: 22px;
}

.launch-utility__hours {
	white-space: nowrap;
}

.launch-utility__details a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--launch-white);
	text-decoration: none;
}

.launch-utility__address {
	max-width: min(440px, 36vw);
}

.launch-utility__address span {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.launch-header {
	position: relative;
	z-index: 500;
	width: 100%;
}

.has-launch-sticky-header .launch-header {
	position: sticky;
	top: 0;
}

.launch-nav-wrap {
	background: rgba(255, 255, 255, 0.97);
	border-bottom: 1px solid transparent;
	transition: box-shadow 180ms ease, border-color 180ms ease;
	backdrop-filter: blur(18px);
}

.launch-header.is-scrolled .launch-nav-wrap {
	border-bottom-color: var(--launch-border);
	box-shadow: 0 12px 35px rgba(22, 59, 58, 0.08);
}

.launch-nav {
	display: grid;
	grid-template-columns: minmax(180px, 270px) 1fr auto;
	align-items: center;
	min-height: 86px;
	gap: 30px;
}

.launch-brand img,
.custom-logo {
	width: auto;
	max-width: min(245px, 36vw);
	max-height: 64px;
}

.launch-brand__text {
	color: var(--launch-ink);
	font-family: var(--launch-font-serif);
	font-size: 1.6rem;
	font-weight: 600;
	text-decoration: none;
}

.launch-primary-menu,
.launch-primary-menu ul,
.launch-footer ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.launch-primary-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(12px, 1.8vw, 28px);
}

.launch-primary-menu > li {
	position: relative;
	display: flex;
	align-items: center;
}

.launch-primary-menu > li > a {
	padding: 30px 0;
	color: var(--launch-ink);
	font-size: 0.91rem;
	font-weight: 750;
	text-decoration: none;
}

.launch-primary-menu > li > a::after {
	position: absolute;
	right: 0;
	bottom: 19px;
	left: 0;
	height: 2px;
	content: "";
	background: var(--launch-accent);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 160ms ease;
}

.launch-primary-menu > li:hover > a::after,
.launch-primary-menu > .current-menu-item > a::after,
.launch-primary-menu > .current-menu-ancestor > a::after {
	transform: scaleX(1);
}

.launch-submenu-toggle {
	display: inline-grid;
	width: 28px;
	height: 38px;
	padding: 0;
	margin-left: -4px;
	color: var(--launch-ink);
	background: transparent;
	border: 0;
	cursor: pointer;
	place-items: center;
}

.launch-primary-menu .launch-mega-menu {
	position: absolute;
	top: calc(100% - 3px);
	left: 50%;
	display: grid;
	width: min(720px, calc(100vw - 48px));
	padding: 26px 28px 30px;
	visibility: hidden;
	background: var(--launch-white);
	border: 1px solid var(--launch-border);
	border-radius: 0 0 var(--launch-radius) var(--launch-radius);
	box-shadow: var(--launch-shadow);
	gap: 22px;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	opacity: 0;
	transform: translate(-50%, 12px);
	transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.launch-primary-menu > li:hover > .launch-mega-menu,
.launch-primary-menu > li:focus-within > .launch-mega-menu,
.launch-primary-menu > li.is-submenu-open > .launch-mega-menu {
	visibility: visible;
	opacity: 1;
	transform: translate(-50%, 0);
}

.launch-mega-menu > li {
	min-width: 0;
}

.launch-mega-menu > li > a {
	display: block;
	padding-bottom: 10px;
	margin-bottom: 10px;
	color: var(--launch-ink);
	border-bottom: 1px solid var(--launch-border);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.09em;
	text-decoration: none;
	text-transform: uppercase;
}

.launch-mega-menu .sub-menu a {
	display: block;
	padding: 6px 0;
	color: var(--launch-muted);
	font-size: 0.9rem;
	font-weight: 600;
	line-height: 1.35;
	text-decoration: none;
}

.launch-mega-menu .sub-menu a:hover {
	color: var(--launch-brand);
	transform: translateX(2px);
}

.launch-header-actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.launch-header-phone {
	display: inline-flex;
	align-items: center;
	width: auto;
	height: 44px;
	padding: 0 12px;
	color: var(--launch-ink);
	border: 1px solid var(--launch-border);
	border-radius: 999px;
	gap: 7px;
	font-size: 0.76rem;
	font-weight: 800;
	text-decoration: none;
	white-space: nowrap;
}

.launch-header-phone:hover {
	color: var(--launch-brand);
	border-color: var(--launch-brand);
}

.launch-header-phone svg {
	width: 18px;
	height: 18px;
}

.launch-header-actions > .launch-button {
	min-height: 44px;
	padding: 9px 15px;
	gap: 7px;
	font-size: 0.8rem;
	white-space: nowrap;
}

.launch-header-actions > .launch-button svg {
	width: 18px;
	height: 18px;
}

.launch-button,
.wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 12px 24px;
	gap: 9px;
	border: 2px solid transparent;
	border-radius: 999px;
	font-family: var(--launch-font-sans);
	font-size: 0.9rem;
	font-weight: 800;
	line-height: 1.1;
	text-decoration: none;
	transition: transform 150ms ease, background 150ms ease, color 150ms ease, box-shadow 150ms ease;
}

.launch-button:hover,
.wp-block-button__link:hover {
	transform: translateY(-2px);
}

.launch-button--primary,
.is-style-fill > .wp-block-button__link {
	color: var(--launch-white);
	background: var(--launch-brand);
	box-shadow: 0 10px 24px rgba(28, 119, 115, 0.2);
}

.launch-button--primary:hover,
.is-style-fill > .wp-block-button__link:hover {
	color: var(--launch-white);
	background: var(--launch-ink);
}

.launch-button--outline,
.is-style-outline > .wp-block-button__link {
	color: var(--launch-ink);
	background: transparent;
	border-color: currentColor;
}

.launch-menu-toggle {
	display: none;
	width: 46px;
	height: 46px;
	padding: 0;
	color: var(--launch-ink);
	background: transparent;
	border: 1px solid var(--launch-border);
	border-radius: 50%;
	cursor: pointer;
	place-items: center;
}

.launch-menu-toggle__close {
	display: none;
}

.launch-menu-toggle[aria-expanded="true"] .launch-menu-toggle__open {
	display: none;
}

.launch-menu-toggle[aria-expanded="true"] .launch-menu-toggle__close {
	display: inline-flex;
}

.launch-entry__content > * {
	margin-block-start: 0;
}

.launch-entry__content > *:not(.alignfull):not(.alignwide) {
	width: var(--launch-reading);
	margin-right: auto;
	margin-left: auto;
}

.launch-entry__content > .alignwide {
	width: var(--launch-container);
	margin-right: auto;
	margin-left: auto;
}

/*
 * Keep section content constrained even when it is rendered inside a reusable
 * HTML module instead of a native Gutenberg Group block.
 */
.launch-entry__content .alignwide,
.launch-entry__content .launch-section__inner {
	width: var(--launch-container);
	max-width: 100%;
	margin-right: auto;
	margin-left: auto;
}

.launch-entry__content > .alignfull {
	width: 100%;
}

.launch-entry__content > * + * {
	margin-block-start: 1.5rem;
}

.launch-entry__content > .wp-block-group,
.launch-entry__content > .wp-block-cover {
	margin-block-start: 0;
}

.launch-section {
	padding: clamp(76px, 9vw, 132px) 0;
}

.launch-section--compact {
	padding: clamp(54px, 7vw, 86px) 0;
}

.launch-section--cream {
	background: var(--launch-cream);
}

.launch-section--ink {
	color: rgba(255, 255, 255, 0.9);
	background: var(--launch-ink);
}

.launch-section--ink h1,
.launch-section--ink h2,
.launch-section--ink h3,
.launch-section--ink h4,
.launch-section--ink h5,
.launch-section--ink h6,
.launch-section--ink a {
	color: var(--launch-white);
}

.launch-section--ink p:not(.launch-kicker) {
	color: rgba(255, 255, 255, 0.9);
}

.launch-section--ink .launch-kicker {
	color: #f3bd72;
}

.launch-section--ink .wp-block-button:not(.is-style-outline) > .wp-block-button__link,
.launch-section--ink .launch-button:not(.launch-button--outline) {
	color: var(--launch-ink);
	background: var(--launch-white);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.launch-section--ink .wp-block-button:not(.is-style-outline) > .wp-block-button__link:hover,
.launch-section--ink .launch-button:not(.launch-button--outline):hover {
	color: var(--launch-white);
	background: var(--launch-brand);
}

.launch-section--ink .wp-block-button.is-style-outline > .wp-block-button__link,
.launch-section--ink .launch-button--outline {
	color: var(--launch-white);
	background: transparent;
	border-color: rgba(255, 255, 255, 0.88);
}

.launch-section--ink .wp-block-button.is-style-outline > .wp-block-button__link:hover,
.launch-section--ink .launch-button--outline:hover {
	color: var(--launch-ink);
	background: var(--launch-white);
}

.launch-kicker {
	margin-bottom: 16px;
	color: var(--launch-brand);
	font-size: 0.78rem;
	font-weight: 850;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.launch-section-heading {
	max-width: 760px;
	margin-bottom: clamp(34px, 5vw, 64px);
}

.launch-section-heading > :last-child {
	margin-bottom: 0;
}

.launch-lede {
	max-width: 700px;
	color: var(--launch-muted);
	font-size: clamp(1.08rem, 1.5vw, 1.3rem);
	line-height: 1.6;
}

.launch-button-row,
.wp-block-buttons {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}

.launch-hero {
	position: relative;
	display: grid;
	min-height: min(680px, calc(100vh - 124px));
	overflow: hidden;
	color: var(--launch-white);
	background: var(--launch-ink);
	isolation: isolate;
	place-items: end start;
}

.launch-hero::before {
	position: absolute;
	z-index: 0;
	inset: 0;
	content: "";
	background-image: var(--launch-hero-image, linear-gradient(135deg, #1c7773, #163b3a));
	background-position: center;
	background-size: cover;
}

.launch-hero::after {
	position: absolute;
	z-index: 1;
	inset: 0;
	content: "";
	background:
		linear-gradient(90deg, rgba(11, 37, 36, 0.92) 0%, rgba(11, 37, 36, 0.7) 42%, rgba(11, 37, 36, 0.12) 76%),
		linear-gradient(0deg, rgba(11, 37, 36, 0.46), transparent 52%);
}

.launch-hero__inner {
	position: relative;
	z-index: 2;
	width: var(--launch-container);
	padding: clamp(70px, 8vw, 118px) 0 clamp(68px, 8vw, 100px);
	margin: 0 auto;
}

.launch-hero__content {
	max-width: 760px;
}

.launch-hero h1 {
	max-width: 850px;
	margin-bottom: 24px;
	color: var(--launch-white);
	text-wrap: balance;
}

.launch-hero p:not(.launch-kicker) {
	max-width: 650px;
	margin-bottom: 30px;
	color: rgba(255, 255, 255, 0.83);
	font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

.launch-hero .launch-kicker {
	color: #b7e5df;
}

.launch-hero .wp-block-button.is-style-fill > .wp-block-button__link {
	color: var(--launch-ink);
	background: var(--launch-white);
}

.launch-hero .wp-block-button.is-style-outline > .wp-block-button__link {
	color: var(--launch-white);
}

.launch-trust-strip {
	position: relative;
	z-index: 2;
	width: var(--launch-container);
	padding: 20px 26px;
	margin: -34px auto 0;
	background: var(--launch-white);
	border: 1px solid var(--launch-border);
	border-radius: var(--launch-radius);
	box-shadow: var(--launch-shadow);
}

.launch-trust-strip .wp-block-columns {
	margin-bottom: 0;
}

.launch-trust-strip p {
	margin: 0;
	color: var(--launch-ink);
	font-size: 0.88rem;
	font-weight: 750;
	text-align: center;
}

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

.launch-card {
	position: relative;
	min-height: 260px;
	padding: 30px;
	overflow: hidden;
	background: var(--launch-white);
	border: 1px solid var(--launch-border);
	border-radius: var(--launch-radius);
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.launch-card:hover {
	box-shadow: 0 24px 55px rgba(22, 59, 58, 0.12);
	transform: translateY(-5px);
}

.launch-card h3 {
	margin-bottom: 12px;
}

.launch-card p {
	color: var(--launch-muted);
	font-size: 0.96rem;
}

.launch-card a {
	font-weight: 800;
	text-decoration: none;
}

.launch-card__number {
	display: inline-grid;
	width: 46px;
	height: 46px;
	margin-bottom: 38px;
	color: var(--launch-white);
	background: var(--launch-brand);
	border-radius: 50%;
	font-weight: 850;
	place-items: center;
}

.launch-feature-grid {
	display: grid;
	align-items: center;
	gap: clamp(36px, 7vw, 90px);
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.launch-feature-grid--reverse > :first-child {
	order: 2;
}

.launch-feature-image,
.launch-feature-grid .wp-block-image img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--launch-radius-lg);
	box-shadow: var(--launch-shadow);
}

.launch-check-list {
	padding: 0;
	margin: 25px 0 0;
	list-style: none;
}

.launch-check-list li {
	position: relative;
	padding: 12px 0 12px 34px;
	border-bottom: 1px solid var(--launch-border);
	font-weight: 650;
}

.launch-check-list li::before {
	position: absolute;
	top: 13px;
	left: 0;
	display: grid;
	width: 22px;
	height: 22px;
	content: "✓";
	color: var(--launch-white);
	background: var(--launch-brand);
	border-radius: 50%;
	font-size: 0.72rem;
	place-items: center;
}

.launch-photo-grid {
	display: grid;
	gap: 16px;
	grid-template-columns: 1.35fr 0.65fr;
}

.launch-photo-grid figure {
	margin: 0;
}

.launch-photo-grid img {
	width: 100%;
	height: 100%;
	min-height: 280px;
	object-fit: cover;
	border-radius: var(--launch-radius);
}

.launch-photo-grid > :first-child {
	grid-row: span 2;
}

.launch-quote {
	padding: clamp(28px, 4vw, 48px);
	background: var(--launch-cream);
	border-radius: var(--launch-radius);
}

.launch-quote blockquote {
	margin: 0;
	font-family: var(--launch-font-serif);
	font-size: clamp(1.35rem, 2.4vw, 2rem);
	line-height: 1.35;
}

.launch-quote cite {
	display: block;
	margin-top: 24px;
	color: var(--launch-muted);
	font-family: var(--launch-font-sans);
	font-size: 0.85rem;
	font-style: normal;
	font-weight: 800;
}

.launch-cta-panel {
	display: grid;
	align-items: center;
	padding: clamp(36px, 6vw, 76px);
	color: rgba(255, 255, 255, 0.82);
	background: var(--launch-brand);
	border-radius: var(--launch-radius-lg);
	gap: 30px;
	grid-template-columns: 1fr auto;
}

.launch-cta-panel h2 {
	max-width: 740px;
	margin-bottom: 12px;
	color: var(--launch-white);
}

.launch-cta-panel p {
	max-width: 680px;
	margin-bottom: 0;
}

.launch-cta-panel .wp-block-button__link,
.launch-cta-panel .launch-button {
	color: var(--launch-ink);
	background: var(--launch-white);
}

.launch-page-header {
	padding: clamp(70px, 10vw, 126px) 0;
	background: var(--launch-cream);
}

.launch-page-header h1 {
	max-width: 900px;
	margin: 0;
}

.launch-content {
	padding: 80px 0;
}

.launch-empty-state {
	padding: clamp(90px, 14vw, 180px) 0;
	text-align: center;
}

.launch-empty-state p {
	max-width: 600px;
	margin-right: auto;
	margin-left: auto;
}

.launch-empty-state .launch-button-row {
	justify-content: center;
}

.launch-contact-band {
	padding: clamp(58px, 8vw, 104px) 0;
	background: var(--launch-white);
}

.launch-contact-band__inner {
	display: grid;
	align-items: start;
	gap: clamp(38px, 7vw, 96px);
	grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
}

.launch-contact-band__copy {
	position: sticky;
	top: 170px;
}

.launch-contact-band__copy h2 {
	max-width: 620px;
	margin-bottom: 18px;
}

.launch-contact-band__copy > p:not(.launch-kicker) {
	max-width: 560px;
	color: var(--launch-muted);
}

.launch-contact-band__phone a {
	display: inline-flex;
	margin-top: 14px;
	color: var(--launch-brand);
	font-weight: 850;
	text-decoration: none;
}

.launch-contact-band__form {
	padding: clamp(28px, 4vw, 48px);
	background: var(--launch-cream);
	border: 1px solid var(--launch-border);
	border-radius: 28px;
	box-shadow: 0 24px 70px rgba(18, 45, 45, 0.09);
}

.launch-contact-band__form .nf-form-fields-required {
	margin-bottom: 22px;
	color: var(--launch-muted);
	font-size: 0.86rem;
}

.launch-contact-band__form .nf-field-label label {
	color: var(--launch-ink);
	font-size: 0.94rem;
	font-weight: 800;
}

.launch-contact-band__form input:not([type="button"]):not([type="submit"]),
.launch-contact-band__form textarea,
.launch-contact-band__form select {
	width: 100%;
	padding: 13px 14px;
	color: var(--launch-ink);
	background: var(--launch-white);
	border: 1px solid var(--launch-border);
	border-radius: 10px;
}

.launch-contact-band__form input[type="button"],
.launch-contact-band__form input[type="submit"] {
	min-height: 50px;
	padding: 12px 24px;
	color: var(--launch-white);
	background: var(--launch-brand);
	border: 0;
	border-radius: 999px;
	font-weight: 850;
	cursor: pointer;
}

.launch-membership-callout {
	position: relative;
	overflow: hidden;
	padding: clamp(34px, 5vw, 58px) 0;
	color: var(--launch-white);
	background: var(--launch-brand);
}

.launch-membership-callout::after {
	position: absolute;
	top: -180px;
	right: -100px;
	width: 420px;
	height: 420px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 50%;
	box-shadow: 0 0 0 46px rgba(255, 255, 255, 0.05), 0 0 0 92px rgba(255, 255, 255, 0.04);
	content: "";
	pointer-events: none;
}

.launch-membership-callout__inner {
	position: relative;
	z-index: 1;
	display: grid;
	align-items: center;
	gap: clamp(24px, 5vw, 70px);
	grid-template-columns: minmax(0, 1fr) auto;
}

.launch-membership-callout h2,
.launch-membership-callout p {
	color: inherit;
}

.launch-membership-callout h2 {
	max-width: 820px;
	margin-bottom: 10px;
}

.launch-membership-callout p {
	max-width: 760px;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.82);
}

.launch-membership-callout .launch-kicker {
	margin-bottom: 10px;
	color: rgba(255, 255, 255, 0.72);
}

.launch-button--light {
	color: var(--launch-brand);
	background: var(--launch-white);
}

.launch-button--light:hover {
	color: var(--launch-brand);
	transform: translateY(-1px);
}

.launch-footer {
	padding: 74px 0 30px;
	color: rgba(255, 255, 255, 0.7);
	background: var(--launch-ink);
}

.launch-footer__grid {
	display: grid;
	padding-bottom: 54px;
	gap: 60px;
	grid-template-columns: 1.4fr 1fr 1fr;
}

.launch-footer h2 {
	margin-bottom: 18px;
	color: var(--launch-white);
	font-family: var(--launch-font-sans);
	font-size: 0.76rem;
	font-weight: 850;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.launch-footer p {
	max-width: 430px;
}

.launch-footer a {
	display: block;
	padding: 3px 0;
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
}

.launch-footer__brand {
	max-width: 260px;
	margin-bottom: 22px;
	filter: brightness(0) invert(1);
}

.launch-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 26px;
	border-top: 1px solid rgba(255, 255, 255, 0.13);
	gap: 24px;
	font-size: 0.78rem;
}

.launch-footer__bottom p {
	margin: 0;
}

.launch-footer__bottom ul {
	display: flex;
	gap: 18px;
}

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

.launch-mobile-menu {
	display: none;
}

@media (max-width: 1120px) {
	body.launch-menu-is-open .launch-nav-wrap {
		-webkit-backdrop-filter: none;
		backdrop-filter: none;
	}

	body.launch-menu-is-open .launch-mobile-cta {
		display: none;
	}

	.launch-nav {
		grid-template-columns: minmax(170px, 1fr) auto auto;
	}

	.launch-menu-toggle {
		display: grid;
		order: 2;
	}

	.launch-header-actions {
		order: 3;
	}

	.launch-primary-nav {
		position: fixed;
		z-index: 9998;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		display: block;
		padding: 0;
		overflow: hidden;
		visibility: hidden;
		background: rgba(0, 39, 57, 0.3);
		opacity: 0;
		pointer-events: none;
		transition: opacity 220ms ease, visibility 220ms ease;
	}

	.launch-primary-nav.is-open {
		visibility: visible;
		opacity: 1;
		pointer-events: auto;
	}

	.launch-primary-menu {
		display: none;
	}

	.launch-mobile-menu {
		position: absolute;
		inset: 0 0 0 auto;
		display: grid;
		width: min(100%, 580px);
		height: 100%;
		color: var(--launch-ink);
		background: #fff;
		box-shadow: -20px 0 60px rgba(0, 39, 57, 0.16);
		grid-template-columns: 72px minmax(0, 1fr);
		opacity: 0;
		transform: translateX(100%);
		transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1), opacity 200ms ease;
	}

	.launch-primary-nav.is-open .launch-mobile-menu {
		opacity: 1;
		transform: translateX(0);
	}

	.launch-mobile-menu__rail {
		position: relative;
		z-index: 2;
		padding-top: 22px;
		background: #f7f7f7;
		border-right: 1px solid rgba(0, 39, 57, 0.06);
		text-align: center;
	}

	.launch-mobile-menu__close {
		display: inline-grid;
		width: 46px;
		height: 46px;
		padding: 0;
		color: var(--launch-ink);
		background: #fff;
		border: 0;
		border-radius: 50%;
		place-items: center;
		cursor: pointer;
	}

	.launch-mobile-menu__close svg {
		width: 22px;
		height: 22px;
	}

	.launch-mobile-menu__body {
		position: relative;
		min-width: 0;
		height: 100%;
		overflow: hidden;
		background: #fff;
	}

	.launch-mobile-menu__panels {
		position: absolute;
		inset: 0 0 126px;
		overflow: hidden;
	}

	.launch-mobile-menu__panel {
		position: absolute;
		inset: 0;
		padding: 30px clamp(26px, 6vw, 48px) 40px;
		overflow-x: hidden;
		overflow-y: auto;
		visibility: hidden;
		opacity: 0;
		transform: translateX(100%);
		transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), opacity 180ms ease, visibility 260ms ease;
	}

	.launch-mobile-menu__panel.is-active {
		z-index: 2;
		visibility: visible;
		opacity: 1;
		transform: translateX(0);
	}

	.launch-mobile-menu__panel.is-before {
		visibility: hidden;
		opacity: 0;
		transform: translateX(-18%);
	}

	.launch-mobile-menu__panel-header {
		margin-bottom: 22px;
		padding-bottom: 18px;
		border-bottom: 1px solid var(--launch-border);
	}

	.launch-mobile-menu__back {
		display: inline-flex;
		align-items: center;
		padding: 8px 0;
		color: var(--launch-muted);
		background: transparent;
		border: 0;
		gap: 12px;
		font: inherit;
		font-size: 1rem;
		cursor: pointer;
	}

	.launch-mobile-menu__back span:first-child {
		font-size: 1.8rem;
		font-weight: 300;
		line-height: 0.7;
	}

	.launch-mobile-menu__panel h2 {
		margin: 0 0 12px;
		color: var(--launch-ink);
		font-family: var(--launch-font-sans);
		font-size: 0.78rem;
		font-weight: 850;
		letter-spacing: 0.14em;
		text-transform: uppercase;
	}

	.launch-mobile-menu__view-all {
		display: inline-flex;
		margin-bottom: 22px;
		padding: 8px 0;
		color: var(--launch-brand);
		font-size: 0.9rem;
		font-weight: 750;
		text-decoration: none;
	}

	.launch-mobile-menu__list {
		margin: 0;
		padding: 0;
		list-style: none;
	}

	.launch-mobile-menu__item {
		margin: 0;
		padding: 0;
		border-bottom: 1px solid rgba(0, 39, 57, 0.08);
	}

	.launch-mobile-menu__item:last-child {
		border-bottom: 0;
	}

	.launch-mobile-menu__link,
	.launch-mobile-menu__drill {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		min-height: 64px;
		padding: 12px 0;
		color: var(--launch-ink);
		background: transparent;
		border: 0;
		gap: 20px;
		font: inherit;
		font-size: clamp(1.08rem, 3.8vw, 1.35rem);
		font-weight: 650;
		line-height: 1.25;
		text-align: left;
		text-decoration: none;
		cursor: pointer;
	}

	.launch-mobile-menu__drill span:last-child {
		flex: 0 0 auto;
		font-size: 1.75rem;
		font-weight: 300;
	}

	.launch-mobile-menu__item.is-current > .launch-mobile-menu__link,
	.launch-mobile-menu__item.is-current > .launch-mobile-menu__drill {
		color: var(--launch-brand);
	}

	.launch-mobile-menu__footer {
		position: absolute;
		z-index: 4;
		right: clamp(26px, 6vw, 48px);
		bottom: 22px;
		left: clamp(26px, 6vw, 48px);
		background: #fff;
		border-top: 1px solid var(--launch-border);
	}

	.launch-mobile-menu__footer a {
		display: flex;
		align-items: center;
		min-height: 48px;
		padding: 10px 0;
		color: var(--launch-ink);
		border-bottom: 1px solid var(--launch-border);
		gap: 10px;
		font-size: 0.86rem;
		font-weight: 750;
		text-decoration: none;
	}

	.launch-mobile-menu__footer a:last-child {
		color: var(--launch-brand);
		border-bottom: 0;
	}

	.launch-mobile-menu__footer svg {
		flex: 0 0 18px;
		width: 18px;
		height: 18px;
	}

	body.admin-bar .launch-primary-nav {
		top: 32px;
	}
}

@media (max-width: 960px) {
	.launch-header-actions .launch-header-phone {
		flex: 0 0 48px;
		width: 48px;
		min-width: 48px;
		height: 48px;
		min-height: 48px;
		padding: 0;
		border-radius: var(--launch-radius-sm, 12px);
		justify-content: center;
	}

	.launch-header-actions .launch-header-phone svg {
		flex: 0 0 20px;
		width: 20px;
		height: 20px;
	}

	.launch-header-phone__label {
		display: none;
	}
}

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

	.launch-utility__details > span {
		display: none;
	}

	.launch-nav {
		min-height: 76px;
		gap: 10px;
	}

	.launch-brand img,
	.custom-logo {
		max-width: min(190px, 42vw);
		max-height: 54px;
	}

	.launch-header-actions .launch-button {
		display: none;
	}

	body.admin-bar .launch-primary-nav {
		top: 46px;
	}

	.launch-feature-grid {
		grid-template-columns: 1fr;
	}

	.launch-feature-grid--reverse > :first-child {
		order: 0;
	}

	.launch-card-grid {
		grid-template-columns: 1fr 1fr;
	}

	.launch-cta-panel {
		grid-template-columns: 1fr;
	}

	.launch-membership-callout__inner {
		align-items: start;
		grid-template-columns: 1fr;
	}

	.launch-contact-band__inner {
		grid-template-columns: 1fr;
	}

	.launch-contact-band__copy {
		position: static;
	}

	.launch-footer__grid {
		grid-template-columns: 1fr 1fr;
	}

	.launch-footer__grid > :first-child {
		grid-column: 1 / -1;
	}

	.launch-mobile-cta {
		position: fixed;
		z-index: 600;
		right: 10px;
		bottom: max(10px, env(safe-area-inset-bottom));
		left: 10px;
		display: grid;
		padding: 6px;
		background: var(--launch-white);
		border: 1px solid var(--launch-border);
		border-radius: 18px;
		box-shadow: 0 18px 48px rgba(22, 59, 58, 0.2);
		grid-template-columns: 1fr 1fr 1.2fr;
	}

	.launch-mobile-cta a {
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: 50px;
		padding: 7px 8px;
		color: var(--launch-ink);
		gap: 6px;
		font-size: 0.74rem;
		font-weight: 850;
		text-align: center;
		text-decoration: none;
	}

	.launch-mobile-cta a:last-child {
		color: var(--launch-white);
		background: var(--launch-brand);
		border-radius: 13px;
	}

	.launch-mobile-cta--contact {
		padding: 5px;
		background: var(--launch-brand);
		border-color: transparent;
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.launch-mobile-cta--contact a,
	.launch-mobile-cta--contact a:last-child {
		flex-direction: column;
		min-width: 0;
		min-height: 54px;
		padding: 6px 3px;
		color: var(--launch-white);
		background: transparent;
		border-right: 1px solid rgba(255, 255, 255, 0.24);
		border-radius: 0;
		gap: 3px;
		font-size: 0.68rem;
		letter-spacing: 0.02em;
	}

	.launch-mobile-cta--contact a:last-child {
		border-right: 0;
	}

	.launch-mobile-cta--contact svg {
		width: 21px;
		height: 21px;
	}

	body.has-launch-mobile-cta {
		padding-bottom: calc(78px + env(safe-area-inset-bottom));
	}
}

@media (max-width: 600px) {
	:root {
		--launch-container: min(100% - 28px, 1240px);
		--launch-reading: min(100% - 28px, 760px);
	}

	.launch-utility__inner {
		justify-content: center;
	}

	.launch-announcement {
		max-width: 100%;
		text-align: center;
	}

	.launch-announcement__item {
		justify-content: center;
	}

	.launch-utility__details {
		gap: 14px;
	}

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

	.launch-primary-menu .launch-mega-menu {
		grid-template-columns: 1fr;
	}

	.launch-hero {
		min-height: 620px;
	}

	.launch-hero::after {
		background: linear-gradient(0deg, rgba(11, 37, 36, 0.95) 0%, rgba(11, 37, 36, 0.7) 64%, rgba(11, 37, 36, 0.32) 100%);
	}

	.launch-hero__inner {
		padding-top: 110px;
	}

	.launch-trust-strip {
		padding: 20px;
		margin-top: -20px;
	}

	.launch-trust-strip .wp-block-columns {
		gap: 12px;
	}

	.launch-card-grid {
		grid-template-columns: 1fr;
	}

	.launch-photo-grid {
		grid-template-columns: 1fr;
	}

	.launch-photo-grid > :first-child {
		grid-row: auto;
	}

	.launch-footer__grid {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.launch-footer__grid > :first-child {
		grid-column: auto;
	}

	.launch-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 600px) {
	.launch-announcement {
		display: none;
	}

	.launch-utility__inner {
		justify-content: center;
	}

	.launch-utility__details {
		display: flex;
		justify-content: center;
		width: 100%;
	}

	.launch-utility__details > a:not(.launch-utility__address),
	.launch-utility__details > span {
		display: none;
	}

	.launch-utility__address {
		max-width: calc(100vw - 32px);
		font-size: 0.78rem;
	}
}

@media (max-width: 380px) {
	.launch-mobile-cta--contact a,
	.launch-mobile-cta--contact a:last-child {
		font-size: 0.62rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
