/* Header */
.lw-header {
	position: relative;
	z-index: 100;
	background: var(--lw-coal);
	color: #fff;
	border-bottom: 1px solid rgb(255 255 255 / 12%);
}

.lw-header__inner {
	display: grid;
	grid-template-columns: minmax(10rem, 1fr) auto;
	grid-template-rows: auto auto;
	column-gap: clamp(2rem, 5vw, 5rem);
	row-gap: 0.65rem;
	align-items: center;
	min-height: 7rem;
	padding-block: 0.75rem;
}

.lw-header__brand {
	grid-column: 1;
	grid-row: 1 / 3;
	justify-self: start;
	width: clamp(9rem, 12vw, 11rem);
	aspect-ratio: 3943 / 1065;
	text-decoration: none;
}

.lw-header__logo {
	display: block;
	width: 100%;
	height: auto;
}

.lw-header__social {
	grid-column: 2;
	grid-row: 1;
	justify-self: end;
}

.lw-header__social-list {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.lw-header__social-item {
	margin: 0;
	padding: 0;
}

.lw-header__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.8rem;
	height: 1.8rem;
	border: 1px solid rgb(255 255 255 / 42%);
	border-radius: 50%;
	color: #fff;
	text-decoration: none;
	opacity: 0.78;
	transition: border-color var(--lw-ease), opacity var(--lw-ease), transform var(--lw-ease);
}

.lw-header__social-link:hover,
.lw-header__social-link:focus-visible {
	border-color: rgb(255 255 255 / 88%);
	opacity: 1;
	transform: translateY(-1px);
}

.lw-header__social-icon {
	display: block;
	width: 0.85rem;
	height: 0.85rem;
}

.lw-header__social-icon svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: currentColor;
}

.lw-header__social-link--instagram .lw-header__social-icon svg {
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
}

.lw-header__social-link--instagram .lw-header__social-dot {
	fill: currentColor;
	stroke: none;
}

.lw-nav {
	grid-column: 2;
	grid-row: 2;
	justify-self: end;
}

.lw-nav__list {
	display: flex;
	align-items: center;
	gap: clamp(1.25rem, 2.5vw, 2.25rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

.lw-nav__item {
	margin: 0;
	padding: 0;
}

.lw-nav__link {
	position: relative;
	display: inline-flex;
	color: #fff;
	text-decoration: none;
	font-size: 0.82rem;
	font-weight: 650;
	line-height: 1.2;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.lw-nav__link::after {
	content: "";
	position: absolute;
	right: 100%;
	bottom: -0.3rem;
	left: 0;
	height: 1px;
	background: currentColor;
	transition: right var(--lw-ease);
}

.lw-nav__link:hover::after,
.lw-nav__link:focus-visible::after,
.lw-nav__link[aria-current="page"]::after {
	right: 0;
}

.lw-menu-toggle {
	display: none;
	border: 0;
	background: transparent;
	color: inherit;
}

.lw-menu-toggle__icon {
	display: inline-flex;
	flex-direction: column;
	gap: 0.25rem;
}

.lw-menu-toggle__icon span {
	display: block;
	width: 1.4rem;
	height: 2px;
	background: currentColor;
	transition: opacity var(--lw-ease), transform var(--lw-ease);
}

.lw-menu-toggle[aria-expanded="true"] .lw-menu-toggle__icon span:first-child {
	transform: translateY(6px) rotate(45deg);
}

.lw-menu-toggle[aria-expanded="true"] .lw-menu-toggle__icon span:nth-child(2) {
	opacity: 0;
}

.lw-menu-toggle[aria-expanded="true"] .lw-menu-toggle__icon span:last-child {
	transform: translateY(-6px) rotate(-45deg);
}

.lw-menu-toggle__label,
.lw-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Buttons and actions */
.lw-button {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	min-height: 3.25rem;
	padding: 0.8rem 1.25rem;
	background: var(--lw-red);
	color: #fff;
	text-decoration: none;
	font-weight: 750;
	border-radius: var(--lw-radius);
	transition: background var(--lw-ease), transform var(--lw-ease);
}

.lw-button:hover {
	background: var(--lw-red-dark);
	transform: translateY(-2px);
}

.lw-button--small {
	min-height: 2.7rem;
	padding: 0.6rem 1rem;
}

.lw-actions {
	display: flex;
	align-items: center;
	gap: 1.4rem;
	flex-wrap: wrap;
}

.lw-text-link {
	font-weight: 750;
	text-decoration-thickness: 1px;
}

/* Hero */
.lw-hero {
	position: relative;
	isolation: isolate;
	min-height: clamp(38rem, calc(100svh - 7rem), 52rem);
	overflow: hidden;
	background: var(--lw-coal);
	color: #fff;
}

.lw-hero::after {
	content: "";
	position: absolute;
	z-index: -1;
	inset: 0;
	background:
		linear-gradient(90deg, rgb(5 12 18 / 88%) 0%, rgb(7 15 22 / 70%) 38%, rgb(8 16 23 / 20%) 72%),
		linear-gradient(0deg, rgb(4 10 15 / 52%) 0%, transparent 42%);
}

.lw-hero__media {
	position: absolute;
	z-index: -2;
	inset: 0;
}

.lw-hero__media .lw-picture,
.lw-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lw-hero__content {
	display: grid;
	grid-template-rows: 1fr auto;
	align-items: center;
	min-height: inherit;
	padding-block: clamp(4rem, 8vh, 7rem) clamp(2.5rem, 5vh, 4rem);
}

.lw-hero__copy {
	max-width: 37rem;
}

.lw-hero .lw-eyebrow {
	margin-bottom: 0.85rem;
	color: #fff;
	font-size: clamp(0.85rem, 1.25vw, 1.05rem);
	font-weight: 500;
	letter-spacing: 0.04em;
}

.lw-hero h1 {
	max-width: 9ch;
	margin: 0 0 1.35rem;
	padding: 0;
	color: var(--lw-red);
	font-size: clamp(4.5rem, 8vw, 7rem);
	font-weight: 800;
	line-height: 0.86;
	letter-spacing: -0.055em;
	text-transform: uppercase;
}

.lw-hero__lead {
	max-width: 31rem;
	margin: 0;
	color: rgb(255 255 255 / 90%);
	font-size: clamp(1rem, 1.45vw, 1.2rem);
	line-height: 1.55;
}

.lw-hero__cta {
	display: inline-grid;
	grid-template-columns: 2.25rem auto;
	align-items: center;
	justify-self: start;
	gap: 0.65rem;
	min-height: 3.25rem;
	padding: 0.45rem 1rem 0.45rem 0.45rem;
	border-radius: 0 0 0.75rem;
	background: #fff;
	color: var(--lw-ink);
	font-size: 0.8rem;
	font-weight: 650;
	line-height: 1.15;
	text-decoration: none;
}

.lw-hero__cta-icon {
	display: grid;
	place-items: center;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 50%;
	background: var(--lw-coal);
	color: #fff;
	font-size: 1.25rem;
	transition: transform var(--lw-ease);
}

.lw-hero__cta:hover .lw-hero__cta-icon,
.lw-hero__cta:focus-visible .lw-hero__cta-icon {
	transform: translateX(0.2rem);
}

/* Spaces */
.lw-spaces {
	position: relative;
	z-index: 2;
	display: grid;
	align-items: center;
	min-height: clamp(29rem, 54svh, 36rem);
	padding-block: clamp(2.75rem, 4vw, 4rem);
	background: var(--lw-coal);
	color: #fff;
}

.lw-spaces__layout {
	display: grid;
	grid-template-columns: minmax(13rem, 0.9fr) minmax(0, 2.4fr);
	gap: clamp(1.5rem, 3vw, 3.5rem);
	align-items: start;
}

.lw-spaces__intro {
	padding: 0 0 2rem;
}

.lw-spaces__intro h2 {
	max-width: 12ch;
	margin: 0 0 1.5rem;
	padding: 0;
	color: #fff;
	font-size: clamp(2rem, 3.2vw, 3.35rem);
	font-weight: 650;
	line-height: 1.04;
}

.lw-spaces__intro h2::after {
	content: "";
	display: block;
	width: 5rem;
	height: 2px;
	margin-top: 1.25rem;
	background: var(--lw-red);
}

.lw-spaces__intro > p {
	max-width: 27rem;
	margin-bottom: 2rem;
	color: rgb(255 255 255 / 76%);
}

.lw-spaces__all {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	color: #fff;
	font-size: 0.78rem;
	font-weight: 750;
	letter-spacing: 0.04em;
	text-decoration: none;
	text-transform: uppercase;
}

.lw-spaces__all-icon {
	display: grid;
	place-items: center;
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	background: #fff;
	color: var(--lw-coal);
	font-size: 1.1rem;
	transition: transform var(--lw-ease);
}

.lw-spaces__all:hover .lw-spaces__all-icon,
.lw-spaces__all:focus-visible .lw-spaces__all-icon {
	transform: translateX(0.2rem);
}

.lw-space-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(0.85rem, 1.4vw, 1.25rem);
}

.lw-space-card {
	min-width: 0;
}

.lw-space-card__link {
	display: block;
	min-height: 100%;
	border-radius: 1.25rem;
	overflow: hidden;
	background: transparent;
	color: #fff;
	text-decoration: none;
	transform: translateY(0) scale(1);
	transition: transform 220ms ease, box-shadow 220ms ease;
}

.lw-space-card__link:hover,
.lw-space-card__link:focus-visible {
	box-shadow: 0 1.5rem 3rem rgb(0 0 0 / 28%);
	transform: translateY(-0.3rem) scale(1.025);
}

.lw-space-card__title {
	margin: 0;
	padding: 0.9rem 0.5rem 0;
	color: #fff;
	font-size: clamp(0.72rem, 0.85vw, 0.82rem);
	font-weight: 750;
	letter-spacing: 0.06em;
	line-height: 1.15;
	text-align: center;
	text-transform: uppercase;
}

.lw-space-card__media {
	height: clamp(24rem, 46svh, 30rem);
	overflow: hidden;
	border-radius: 1.25rem;
}

.lw-space-card__media > * {
	height: 100%;
	transition: transform 0.5s ease;
}

.lw-space-card__media .lw-picture,
.lw-space-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lw-space-card:hover .lw-space-card__media > * {
	transform: scale(1.025);
}

.lw-space-card__media .lw-media-placeholder {
	min-height: 100%;
	background:
		linear-gradient(145deg, rgb(237 28 36 / 22%), transparent 42%),
		linear-gradient(25deg, #18242d, #53616a);
	color: rgb(255 255 255 / 65%);
}

/* Shared benefits */
.lw-benefits {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding-block: clamp(1.35rem, 2.2vw, 2rem);
	background: var(--lw-coal);
	color: #fff;
	border-top: 1px solid rgb(255 255 255 / 10%);
	border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.lw-benefits::before,
.lw-benefits::after {
	content: "";
	position: absolute;
	z-index: -1;
	top: 50%;
	width: clamp(7rem, 10vw, 10rem);
	aspect-ratio: 1;
	border: clamp(0.8rem, 1.25vw, 1.2rem) solid var(--lw-red);
	border-radius: 50%;
	transform: translateY(-50%);
	opacity: 0.86;
}

.lw-benefits::before { left: clamp(-7.5rem, -6vw, -4.75rem); }
.lw-benefits::after { right: clamp(-7.5rem, -6vw, -4.75rem); }

.lw-benefits__title {
	margin: 0 0 1rem;
	color: #a3a9ae;
	font-size: 0.72rem;
	font-weight: 750;
	letter-spacing: 0.16em;
	line-height: 1.2;
	text-align: center;
	text-transform: uppercase;
}

.lw-benefits__grid {
	display: grid;
	grid-template-columns: repeat(8, minmax(0, 1fr));
	gap: clamp(0.65rem, 1.25vw, 1.25rem);
	max-width: 72rem;
	margin: 0 auto;
	padding: 0;
	list-style: none;
}

.lw-benefit {
	display: grid;
	justify-items: center;
	align-content: start;
	gap: 0.55rem;
	min-width: 0;
	text-align: center;
}

.lw-benefit__icon {
	display: block;
	width: clamp(2.5rem, 3.5vw, 3.25rem);
	height: clamp(2.5rem, 3.5vw, 3.25rem);
	transition: transform 200ms ease;
}

.lw-benefit span {
	max-width: 9rem;
	font-size: clamp(0.68rem, 0.8vw, 0.78rem);
	font-weight: 700;
	line-height: 1.2;
}

.lw-benefit:hover .lw-benefit__icon {
	transform: translateY(-0.18rem) scale(1.05);
}

/* Locations */
.lw-locations {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: 160px 0 clamp(3rem, 3.5vw, 3.75rem);
}

.lw-locations::before {
	content: "";
	position: absolute;
	z-index: -1;
	right: clamp(-10rem, -7vw, -5rem);
	top: clamp(-5rem, -3vw, -2rem);
	width: clamp(18rem, 30vw, 31rem);
	aspect-ratio: 1;
	border: clamp(1.5rem, 3vw, 3rem) solid rgb(237 28 36 / 9%);
	border-radius: 50%;
}

.lw-locations::after {
	content: "";
	position: absolute;
	z-index: -1;
	left: clamp(-11rem, -8vw, -6rem);
	bottom: clamp(-8rem, -5vw, -4rem);
	width: clamp(16rem, 26vw, 27rem);
	aspect-ratio: 1;
	border: clamp(1.35rem, 2.6vw, 2.6rem) solid rgb(237 28 36 / 7%);
	border-radius: 50%;
}

.lw-locations .lw-section-heading {
	display: grid;
	gap: clamp(1rem, 1.5vw, 1.35rem);
	max-width: none;
	margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
}

.lw-locations .lw-eyebrow {
	margin-bottom: 0;
	color: var(--lw-red);
	font-size: clamp(1.4rem, 2.6vw, 2.2rem);
	font-weight: 900;
	letter-spacing: -0.045em;
	line-height: 0.9;
}

.lw-locations .lw-section-heading h2 {
	max-width: none;
	margin-bottom: 0;
	font-size: clamp(2.35rem, 3.25vw, 3.25rem);
	line-height: 1;
}

.lw-locations .lw-section-heading > p:last-child {
	margin-bottom: 0.2rem;
}

.lw-location-grid {
	display: grid;
	grid-template-columns: minmax(0, 4.6fr) minmax(0, 7.4fr);
	gap: clamp(1rem, 1.5vw, 1.5rem);
	align-items: center;
}

.lw-location-card {
	position: relative;
	z-index: 0;
	min-width: 0;
	background: #fff;
	box-shadow: var(--lw-shadow);
	transform-origin: center;
	transition: transform 220ms ease, box-shadow 220ms ease;
}

.lw-location-card:hover,
.lw-location-card:focus-within {
	z-index: 2;
	box-shadow: 0 1.5rem 3rem rgb(8 18 26 / 20%);
	transform: translateY(-0.3rem) scale(1.025);
}

.lw-location-grid__secondary {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1rem, 1.5vw, 1.5rem);
	align-items: start;
}

.lw-location-grid__secondary .lw-location-card__link {
	height: auto;
}

.lw-location-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none;
}

.lw-location-card__media {
	height: auto;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.lw-location-card__media picture,
.lw-location-card__media img {
	display: block;
	width: 100%;
	height: 100%;
}

.lw-location-card__media img {
	object-fit: cover;
}

.lw-location-card--featured .lw-location-card__media {
	height: auto;
	aspect-ratio: 10 / 9;
}

.lw-location-card--featured .lw-location-card__media img {
	object-position: center 88%;
}

.lw-location-card--montes-urales .lw-location-card__media img {
	object-position: center 68%;
}

.lw-location-card--metepec .lw-location-card__media img {
	object-position: 68% center;
}

.lw-location-card__body {
	position: relative;
	flex: 1;
	padding: 0.85rem;
}

.lw-location-card__body > p {
	margin-bottom: 0.2rem;
	color: var(--lw-muted);
	font-size: 0.82rem;
}

.lw-location-card h3 {
	margin-bottom: 0.45rem;
	font-size: 1.25rem;
	line-height: 1.1;
}

.lw-location-card dl {
	display: flex;
	gap: 1rem;
	margin: 0.35rem 0 0;
}

.lw-location-card dl div {
	display: grid;
}

.lw-location-card dt {
	font-size: 0.68rem;
	color: var(--lw-muted);
}

.lw-location-card dd {
	margin: 0;
	font-weight: 700;
	font-size: 0.78rem;
	line-height: 1.3;
}

.lw-card-arrow {
	position: absolute;
	right: 1rem;
	top: 1rem;
	color: var(--lw-red);
	font-size: 1.5rem;
}

.lw-location-card__fallback {
	display: flex;
	position: relative;
	flex-direction: column;
	justify-content: flex-end;
	width: 100%;
	height: 100%;
	padding: 0.9rem;
	min-height: 100%;
	overflow: hidden;
	background: var(--lw-coal);
	color: #fff;
}

.lw-location-card__fallback::before {
	content: "QRO";
	position: absolute;
	z-index: 0;
	right: -0.08em;
	bottom: -0.28em;
	color: rgb(237 28 36 / 72%);
	font-size: clamp(4.5rem, 8vw, 8rem);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.08em;
}

.lw-location-card__fallback span,
.lw-location-card__fallback strong {
	position: relative;
	z-index: 1;
}

.lw-location-card__fallback span {
	font-size: 0.65rem;
	font-weight: 800;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.lw-location-card__fallback strong {
	font-size: 1rem;
}

.lw-data-note {
	margin: 1.25rem 0 0;
	font-size: 0.75rem;
	color: var(--lw-muted);
}

/* Community */
.lw-community {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	display: grid;
	grid-template-columns: minmax(22rem, 0.9fr) minmax(24rem, 1.1fr);
	gap: clamp(2.5rem, 6vw, 7rem);
	align-items: center;
	padding: clamp(2.5rem, 4vw, 4.5rem) max(1rem, calc((100vw - var(--lw-container)) / 2));
	background: var(--lw-coal);
	color: #fff;
}

.lw-community::after {
	content: "";
	position: absolute;
	z-index: 2;
	top: 0;
	right: 0;
	bottom: 0;
	width: clamp(0.35rem, 0.7vw, 0.75rem);
	background: var(--lw-red);
}

.lw-community__media {
	width: min(100%, 34rem);
	aspect-ratio: 4 / 5;
	justify-self: end;
	overflow: hidden;
	border-radius: 0 0 5rem 0;
	margin-top: clamp(-5.5rem, -5vw, -3.5rem);
	margin-bottom: 0;
	box-shadow: 0 2rem 4rem rgb(7 15 22 / 28%);
}

.lw-community__media .lw-picture,
.lw-community__media picture,
.lw-community__media img,
.lw-community__media .lw-media-placeholder {
	width: 100%;
	height: 100%;
}

.lw-community__media picture {
	display: block;
}

.lw-community__media img {
	object-fit: cover;
	object-position: center 58%;
}

.lw-community__media .lw-media-placeholder {
	background:
		linear-gradient(145deg, rgb(237 28 36 / 24%), transparent 48%),
		linear-gradient(25deg, #18242d, #53616a);
	color: rgb(255 255 255 / 72%);
}

.lw-community__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0 clamp(1rem, 3vw, 3rem) 0 0;
}

.lw-community__content .lw-eyebrow {
	margin-bottom: 0.75rem;
	font-size: clamp(1.05rem, 1.8vw, 1.5rem);
	font-weight: 900;
	letter-spacing: -0.035em;
	line-height: 0.95;
}

.lw-community__content h2 {
	max-width: 18ch;
	margin-bottom: 1rem;
	color: #fff;
	font-size: clamp(2.25rem, 3.4vw, 3.25rem);
}

.lw-community__content p:not(.lw-eyebrow) {
	color: #c7c7c7;
	font-size: clamp(1rem, 1.25vw, 1.1rem);
	max-width: 37rem;
}

.lw-community__content .lw-text-link {
	margin-top: 0.75rem;
	color: #fff;
}

.lw-value-list {
	list-style: none;
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--lw-line);
}

.lw-value-list li {
	display: grid;
	grid-template-columns: 4rem 1fr 1.4fr;
	gap: 2rem;
	align-items: baseline;
	padding: 1.6rem 0;
	border-bottom: 1px solid var(--lw-line);
}

.lw-value-list li > span {
	color: var(--lw-red);
	font-size: 0.78rem;
}

.lw-value-list h3,
.lw-value-list p {
	margin: 0;
}

.lw-value-list p {
	color: var(--lw-muted);
}

/* Posts */
.lw-post-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

.lw-post-grid a {
	text-decoration: none;
}

.lw-post-grid img {
	aspect-ratio: 16 / 10;
	object-fit: cover;
	margin-bottom: 1rem;
}

/* Final CTA */
.lw-final-cta {
	position: relative;
	overflow: hidden;
	background: var(--lw-coal);
	color: #fff;
	padding-block: clamp(2.5rem, 4vw, 4rem);
}

.lw-final-cta::after {
	content: "";
	position: absolute;
	right: -5rem;
	bottom: -9rem;
	width: 21rem;
	aspect-ratio: 1;
	border: 2.15rem solid var(--lw-red);
	border-radius: 50%;
}

.lw-final-cta__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: end;
	gap: 2rem;
}

.lw-final-cta h2 {
	max-width: 16ch;
	margin-bottom: 1rem;
	padding: 0;
	color: var(--lw-red);
	font-size: clamp(2.5rem, 4vw, 4.25rem);
	font-weight: 800;
	line-height: 0.88;
	letter-spacing: -0.06em;
	text-transform: uppercase;
}

.lw-final-cta--merged {
	background: var(--lw-coal);
	border-top: 0;
}

.lw-final-cta--merged::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: clamp(0.35rem, 0.7vw, 0.75rem);
	background: var(--lw-red);
}

.lw-final-cta--merged h2 {
	max-width: 18ch;
}

.lw-final-cta--merged .lw-eyebrow {
	margin-bottom: 1.2rem;
	font-size: clamp(1rem, 1.6vw, 1.4rem);
	font-weight: 900;
	letter-spacing: 0.04em;
}

.lw-final-cta .lw-button {
	border: 0;
	cursor: pointer;
	font: inherit;
	font-weight: 750;
}

.lw-final-cta p:not(.lw-eyebrow) {
	color: #c7c7c7;
}

.lw-text-link--light {
	color: #fff;
}

/* WhatsApp selector */
.lw-wa-widget {
	position: fixed;
	z-index: 120;
	right: clamp(1rem, 2vw, 1.75rem);
	bottom: clamp(1rem, 2vw, 1.75rem);
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 0.75rem;
}

.lw-wa-widget__menu {
	display: none;
	min-width: min(19rem, calc(100vw - 2rem));
	max-height: min(31rem, calc(100vh - 7rem));
	padding: 0.6rem;
	overflow-y: auto;
	background: #fff;
	border: 1px solid rgb(7 15 22 / 10%);
	border-radius: 1rem;
	box-shadow: 0 1.25rem 3rem rgb(7 15 22 / 24%);
}

.lw-wa-widget.is-open .lw-wa-widget__menu {
	display: grid;
}

.lw-wa-widget__option {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.72rem 0.9rem;
	color: var(--lw-coal);
	font-size: 0.9rem;
	font-weight: 750;
	text-decoration: none;
	border-radius: 0.65rem;
}

.lw-wa-widget__option::after {
	content: "→";
	color: var(--lw-red);
}

.lw-wa-widget__option:hover,
.lw-wa-widget__option:focus-visible {
	background: var(--lw-soft);
}

.lw-wa-widget__toggle {
	display: grid;
	place-items: center;
	width: 3.75rem;
	aspect-ratio: 1;
	padding: 0.9rem;
	border: 0;
	border-radius: 50%;
	background: #25d366;
	box-shadow: 0 0.9rem 2rem rgb(7 15 22 / 22%);
	cursor: pointer;
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.lw-wa-widget__toggle:hover,
.lw-wa-widget__toggle:focus-visible {
	box-shadow: 0 1rem 2.25rem rgb(7 15 22 / 30%);
	transform: translateY(-0.15rem) scale(1.04);
}

.lw-wa-widget__icon {
	display: block;
	width: 100%;
	height: 100%;
}

/* Footer */
.lw-footer {
	padding: 4rem 0 1.5rem;
	background: #0d0d0d;
	color: #ddd;
}

.lw-footer__grid {
	display: grid;
	grid-template-columns: 1.3fr repeat(3, 1fr);
	gap: 2.5rem;
}

.lw-logo--light {
	color: #fff;
}

.lw-footer h2 {
	font-size: 0.78rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #fff;
}

.lw-footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.lw-footer li + li {
	margin-top: 0.5rem;
}

.lw-footer a {
	text-decoration: none;
}

.lw-footer__bottom {
	display: flex;
	justify-content: space-between;
	margin-top: 3rem;
	padding-top: 1.25rem;
	border-top: 1px solid #333;
	font-size: 0.75rem;
	color: #888;
}

@media (max-width: 60rem) {
	.lw-benefits__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		row-gap: 1.25rem;
	}

	.lw-locations .lw-section-heading {
		grid-template-columns: 1fr;
	}

	.lw-locations .lw-section-heading h2 {
		margin-bottom: 0.75rem;
	}

	.lw-location-grid {
		grid-template-columns: 1fr;
	}

	.lw-location-grid__secondary {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lw-location-card--featured .lw-location-card__media {
		height: auto;
		aspect-ratio: 16 / 10;
	}

	.lw-location-card__media {
		height: clamp(11rem, 24vw, 15rem);
	}

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

@media (max-width: 48rem) {
	.lw-locations {
		padding-top: 5rem;
	}

	.lw-header__inner {
		grid-template-columns: minmax(0, 1fr) auto;
		grid-template-rows: auto;
		column-gap: 1rem;
		min-height: 5.5rem;
		padding-block: 0.5rem;
	}

	.lw-header__brand {
		width: 7.75rem;
		grid-column: 1;
		grid-row: 1;
	}

	.lw-header__social {
		display: none;
	}

	.lw-menu-toggle {
		display: block;
		grid-column: 2;
		grid-row: 1;
		justify-self: end;
		width: auto;
		padding: 0.5rem;
	}

	.lw-nav {
		display: none;
		position: absolute;
		inset: 5.5rem 0 auto;
		background: #fff;
		padding: 2rem;
		box-shadow: var(--lw-shadow);
		align-items: stretch;
		flex-direction: column;
	}

	.lw-nav.is-open {
		display: flex;
	}

	.lw-nav__list {
		flex-direction: column;
	}

	.lw-nav__link {
		color: var(--lw-coal);
	}

	.lw-nav .lw-button {
		width: 100%;
	}

	.lw-hero__grid,
	.lw-community,
	.lw-final-cta__inner {
		grid-template-columns: 1fr;
	}

	.lw-community {
		height: auto;
		min-height: auto;
		gap: 0;
		padding: 0;
	}

	.lw-community__media {
		width: 100%;
		max-height: none;
		aspect-ratio: 4 / 3;
		justify-self: stretch;
		border-radius: 0;
		margin: 0;
		box-shadow: none;
	}

	.lw-community__content {
		padding: clamp(2.5rem, 8vw, 4rem) max(1rem, calc((100vw - var(--lw-container)) / 2));
	}

	.lw-community__content h2 {
		max-width: 14ch;
	}

	.lw-hero h1 {
		font-size: clamp(3.4rem, 12vw, 4.5rem);
	}

	.lw-hero__content {
		padding-block: 4rem 2rem;
	}

	.lw-hero__copy {
		align-self: center;
	}

	.lw-hero__lead {
		max-width: 28rem;
	}

	.lw-spaces__layout {
		grid-template-columns: 1fr;
	}

	.lw-spaces {
		display: block;
		min-height: auto;
		padding-block: clamp(4rem, 9vw, 5.5rem);
	}

	.lw-spaces__intro {
		padding-bottom: 0;
	}

	.lw-spaces__intro h2 {
		max-width: 15ch;
	}

	.lw-space-grid {
		margin-top: 0;
	}

	.lw-space-card__media {
		height: auto;
		aspect-ratio: 4 / 5;
	}

	.lw-location-grid__secondary {
		grid-template-columns: 82% 82% 82% 82% 82% 82%;
		margin-inline: -1rem;
		padding-inline: 1rem;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
	}

	.lw-location-grid__secondary::-webkit-scrollbar {
		display: none;
	}

	.lw-location-grid__secondary .lw-location-card {
		scroll-snap-align: start;
	}

	.lw-value-list li {
		grid-template-columns: 2rem 1fr;
	}

	.lw-value-list p {
		grid-column: 2;
	}

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

	.lw-final-cta::after {
		opacity: 0.35;
	}

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

@media (max-width: 30rem) {
	.lw-benefits__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lw-header__brand {
		width: 7.25rem;
	}

	.lw-hero {
		min-height: max(36rem, calc(100svh - 5.5rem));
	}

	.lw-hero::after {
		background:
			linear-gradient(90deg, rgb(5 12 18 / 86%) 0%, rgb(7 15 22 / 58%) 64%, rgb(8 16 23 / 18%) 100%),
			linear-gradient(0deg, rgb(4 10 15 / 62%) 0%, transparent 52%);
	}

	.lw-spaces {
		padding-block: 4rem;
	}

	.lw-space-grid {
		grid-template-columns: 82% 82% 82%;
		margin-inline: -1rem;
		padding-inline: 1rem;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
	}

	.lw-space-grid::-webkit-scrollbar {
		display: none;
	}

	.lw-space-card {
		scroll-snap-align: start;
	}

	.lw-space-card__media {
		aspect-ratio: 4 / 5;
	}

	.lw-final-cta h2 {
		font-size: clamp(2.8rem, 12vw, 3.8rem);
	}
}
