:root {
	--bg: #161412;
	--bg-deep: #0D0D0D;
	--border: #2A2520;
	/* --red: #F02828; */
	--red: #cc153f;
	--lift-red: #cc153f;
	--white: #f8f8f8;
	--cream: #F5F0E8;
	--ink: #161412;
	--display-font: "Bebas Neue", system-ui, sans-serif;
	--body-font: "Blinker", system-ui, sans-serif;

	/* Fluid type scale — clamp(min-rem, fluid, max-rem) */
	--fs-xs:  clamp(0.875rem, 0.85rem + 0.15vw, 1rem);     /* 14 → 16 */
	--fs-sm:  clamp(1rem, 0.95rem + 0.25vw, 1.125rem);     /* 16 → 18 */
	--fs-md:  clamp(1.125rem, 0.9rem + 1vw, 1.5rem);       /* 18 → 24 */
	--fs-lg:  clamp(1.5rem, 1rem + 1.5vw, 1.75rem);        /* 24 → 28 */
	--fs-xl:  clamp(1.25rem, 0.8rem + 2vw, 2rem);          /* 20 → 32 */
	--fs-2xl: clamp(2.25rem, 1.25rem + 4vw, 3.5rem);       /* 36 → 56 */
	--fs-3xl: clamp(3.5rem, 1rem + 8vw, 8rem);             /* 56 → 128 */
}

.lift-red { color: var(--lift-red); }
.lift-name { font-family: var(--display-font); font-weight: 700; text-transform: uppercase; white-space: nowrap; }

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

html,
body {
	margin: 0;
	padding: 0;
	background: var(--bg);
	color: var(--white);
	font-family: var(--body-font);
	scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
	display: none;
}

/* ---------- Top navbar ---------- */

.topbar {
	display: flex;
	align-items: stretch;
	gap: clamp(24px, 6vw, 96px);
	padding: 0 clamp(20px, 4vw, 56px);
	background: var(--bg);
	border-bottom: 1px solid var(--border);
	position: relative;
	min-height: calc(clamp(36px, 5vw, 56px) + clamp(24px, 3vw, 36px));
}


.topbar .brand {
	display: inline-flex;
	align-items: center;
	align-self: center;
	line-height: 0;
	flex-shrink: 0;
}

.topbar .logo {
	height: clamp(36px, 5vw, 56px);
	width: auto;
	display: block;
}

.topnav {
	flex: 1;
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	gap: clamp(12px, 2vw, 24px);
}

.topnav a {
	font-family: var(--display-font);
	font-weight: 400;
	font-size: var(--fs-xl);
	line-height: 1;
	letter-spacing: -0.03em;
	text-transform: uppercase;
	color: var(--white);
	text-decoration: none;
	white-space: nowrap;
	display: flex;
	align-items: center;
}

.topnav a:hover {
	color: var(--lift-red);
}

.topnav a.cta,
.topnav button.cta {
	font-family: var(--display-font);
	font-weight: 400;
	font-size: var(--fs-xl);
	line-height: 1;
	letter-spacing: -0.03em;
	text-transform: uppercase;
	white-space: nowrap;
	color: var(--lift-red);
	padding: 0 20px;
	background: none;
	border: none;
	cursor: pointer;
}

.topnav a.cta:hover,
.topnav button.cta:hover {
	color: var(--white);
	background: var(--lift-red);
}

.nav-dropdown {
	position: relative;
	display: flex;
	align-items: center;
}

.nav-dropdown-toggle {
	font-family: var(--display-font);
	font-weight: 400;
	font-size: var(--fs-xl);
	line-height: 1;
	letter-spacing: -0.03em;
	text-transform: uppercase;
	color: var(--white);
	background: none;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 6px;
	white-space: nowrap;
	padding: 0;
}

.nav-dropdown-toggle:hover {
	color: var(--lift-red);
}

.nav-dropdown-chevron {
	font-size: 0.6em;
	display: inline-block;
	line-height: 1;
	transform: rotate(180deg);
}

.nav-dropdown:hover .nav-dropdown-chevron,
.nav-dropdown.is-open .nav-dropdown-chevron {
	transform: rotate(0deg);
}

.nav-dropdown-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	min-width: 220px;
	background: var(--bg);
	border: 1px solid var(--border);
	border-top: none;
	border-radius: 0 0 8px 8px;
	padding: 8px 0;
	z-index: 100;
	flex-direction: column;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
	display: flex;
}

.nav-dropdown-item {
	font-family: var(--body-font);
	font-weight: 400;
	font-size: 0.9375rem;
	letter-spacing: 0;
	text-transform: none;
	color: var(--white);
	text-decoration: none;
	padding: 10px 20px;
	white-space: nowrap;
	display: block;
}

.nav-dropdown-item:hover {
	color: var(--lift-red);
}

.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 32px;
	height: 24px;
	padding: 0;
	background: transparent;
	border: 0;
	cursor: pointer;
	margin-left: auto;
	align-self: center;
}

.nav-toggle span {
	display: block;
	width: 100%;
	height: 3px;
	background: var(--white);
	border-radius: 2px;
	transition: transform 200ms ease, opacity 200ms ease;
	transform-origin: center;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(10.5px) rotate(45deg);
}

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

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-10.5px) rotate(-45deg);
}

/* ---------- Hero ---------- */

.hero {
	position: relative;
	overflow: hidden;
	background: var(--bg);
	display: flex;
	align-items: center;
}

.hero-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(32px, 6vw, 80px);
	padding: clamp(60px, 10vw, 120px) clamp(20px, 4vw, 50px);
	align-items: center;
}

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

.hero-title {
	margin: 0;
	font-family: var(--display-font);
	font-weight: 400;
	font-size: var(--fs-3xl);
	line-height: 1;
	letter-spacing: -0.03em;
	text-transform: uppercase;
	color: var(--white);
}

.hero-title .strike {
	position: relative;
	display: inline-block;
}

.hero-title .strike::after {
	content: "";
	position: absolute;
	top: 50%;
	left: -5%;
	transform: translateY(-50%);
	height: 12px;
	width: 0;
	background: var(--red);
	animation: strikethrough 350ms cubic-bezier(0.65, 0, 0.35, 1) 250ms forwards;
}

@keyframes strikethrough {
	to {
		width: 110%;
	}
}

.hero-learn-more {
	margin-top: 64px;
	font-family: var(--body-font);
	font-weight: 400;
	font-size: var(--fs-xl);
	line-height: 1;
	letter-spacing: -0.03em;
	color: var(--cream);
	text-decoration: none;
}

.hero-cta {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	max-width: 580px;
	width: 100%;
	margin-left: auto;
}

.hero-subtitle {
	margin: 0 0 32px 0;
	font-family: var(--display-font);
	font-weight: 400;
	font-size: var(--fs-2xl);
	line-height: 1;
	letter-spacing: -0.03em;
	text-transform: uppercase;
	color: var(--white);
	text-align: center;
}

.cta-form {
	background: #ffffff;
	color: var(--ink);
	border-radius: 16px;
	padding: 32px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.form-group label {
	font-family: var(--body-font);
	font-weight: 400;
	font-size: var(--fs-sm);
	color: var(--ink);
}

.form-group input {
	width: 100%;
	padding: 14px 16px;
	font-family: var(--body-font);
	font-size: var(--fs-sm);
	border: 1px solid #d0d0d0;
	border-radius: 8px;
	background: #ffffff;
	color: var(--ink);
	outline: none;
}

.form-group input:focus {
	border-color: var(--ink);
}

.form-group input::placeholder {
	color: #b0b0b0;
}

.submit-btn {
	width: 100%;
	padding: 16px;
	margin-top: 4px;
	font-family: var(--display-font);
	font-weight: 400;
	font-size: var(--fs-lg);
	letter-spacing: -0.03em;
	text-transform: uppercase;
	color: var(--white);
	background: var(--red);
	border: none;
	border-radius: 8px;
	cursor: pointer;
}

.submit-btn:hover {
	filter: brightness(0.95);
}

/* ---------- Ticker ---------- */

.ticker {
	position: relative;
	z-index: 3;
	margin-top: -64px;
	text-align: center;
}

.ticker-title {
	display: inline-block;
	margin: 0;
	padding: clamp(10px, 1.5vw, 16px) clamp(20px, 3vw, 40px);
	background: radial-gradient(ellipse at center, #2A2520 0%, #0D0D0D 100%);
	border: 1px solid var(--border);
	border-bottom: 0;
	border-radius: 20px 20px 0 0;
	font-family: var(--body-font);
	font-weight: 400;
	font-size: var(--fs-xl);
	line-height: 1;
	letter-spacing: -0.03em;
	color: var(--cream);
}

.ticker-strip {
	position: relative;
	height: clamp(80px, 12vw, 140px);
	overflow: hidden;
	background: radial-gradient(ellipse at center, #2A2520 0%, #0D0D0D 100%);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}

.ticker-strip::before,
.ticker-strip::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: clamp(40px, 8vw, 120px);
	z-index: 1;
	pointer-events: none;
}

.ticker-strip::before {
	left: 0;
	background: linear-gradient(to right, #0D0D0D, transparent);
}

.ticker-strip::after {
	right: 0;
	background: linear-gradient(to left, #0D0D0D, transparent);
}

.ticker-track {
	display: flex;
	align-items: center;
	height: 100%;
	gap: clamp(32px, 6vw, 80px);
	width: max-content;
	animation: ticker-scroll 40s linear infinite;
}


.ticker-logo {
	height: auto;
	max-height: clamp(28px, 5vw, 52px);
	width: auto;
	max-width: clamp(100px, 18vw, 180px);
	flex-shrink: 0;
	filter: grayscale(1) brightness(2.5);
	opacity: 0.75;
	transition: opacity 200ms ease, filter 200ms ease;
}

.ticker-logo:hover {
	opacity: 1;
	filter: grayscale(0) brightness(1);
}

@keyframes ticker-scroll {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

/* ---------- Speciality ---------- */

.speciality {
	position: relative;
	background: var(--bg-deep);
	padding: clamp(60px, 10vw, 120px) clamp(24px, 6vw, 80px);
	overflow: hidden;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(40px, 6vw, 80px);
	align-items: center;
}

.speciality::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(13, 13, 13, 0.45);
	z-index: 1;
}

.speciality-bg {
	position: absolute;
	inset: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(3, 1fr);
	gap: 4px;
}

.speciality-bg-photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(0.25) brightness(0.75);
}

.speciality-text {
	position: relative;
	z-index: 2;
}

.speciality-heading {
	margin: 0;
	font-family: var(--display-font);
	font-weight: 400;
	font-size: var(--fs-3xl);
	line-height: 1.05;
	letter-spacing: -0.03em;
	text-transform: uppercase;
	color: var(--white);
}

.speciality-body {
	margin: clamp(20px, 3vw, 36px) 0 0;
	font-family: var(--body-font);
	font-size: var(--fs-lg);
	line-height: 1.6;
	color: var(--white);
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.speciality-feature {
	position: relative;
	z-index: 2;
	margin: 0;
	border-radius: 4px;
	overflow: hidden;
	aspect-ratio: 3 / 4;
	order: -1;
}

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

.speciality-slideshow {
	position: relative;
	z-index: 2;
	margin: 0;
	border-radius: 4px;
	overflow: hidden;
	aspect-ratio: 3 / 4;
	order: -1;
}

.speciality-slideshow img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	opacity: 0;
	animation: ssSlide linear infinite;
}


@media (max-width: 1024px) {
	.speciality {
		grid-template-columns: 1fr;
	}
	.speciality-feature {
		aspect-ratio: 4 / 3;
	}
	.speciality-slideshow {
		aspect-ratio: 4 / 3;
		max-height: 280px;
	}
	.speciality-slideshow img.ss-mid {
		object-position: center 55%;
	}
}

.speciality-cta {
	display: inline-block;
	margin-top: clamp(24px, 3vw, 36px);
	padding: 16px 36px;
	font-family: var(--display-font);
	font-weight: 400;
	font-size: var(--fs-lg);
	letter-spacing: -0.03em;
	text-transform: uppercase;
	color: var(--white);
	background: var(--lift-red);
	border: none;
	border-radius: 8px;
	cursor: pointer;
}

.speciality-cta:hover {
	filter: brightness(1.1);
}

/* ---------- Modal ---------- */

.modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.7);
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.modal-overlay[hidden] {
	display: none;
}

.modal {
	position: relative;
	width: 100%;
	max-width: 480px;
	background: var(--bg-deep);
	border-radius: 16px;
	padding: clamp(28px, 5vw, 48px);
	border: 1px solid var(--border);
}

.modal-close {
	position: absolute;
	top: 16px;
	right: 16px;
	background: none;
	border: none;
	color: var(--white);
	font-size: 18px;
	cursor: pointer;
	opacity: 0.6;
	line-height: 1;
	padding: 4px 8px;
}

.modal-close:hover {
	opacity: 1;
}

.modal-heading {
	margin: 0 0 24px;
	font-family: var(--display-font);
	font-weight: 400;
	font-size: var(--fs-2xl);
	line-height: 1.05;
	letter-spacing: -0.03em;
	text-transform: uppercase;
	color: var(--white);
}

/* ---------- Testimonials ---------- */

.testimonials {
	background-color: var(--bg-deep);
	background-image: url("/dot-grid.svg");
	background-repeat: repeat;
	background-attachment: fixed;
	padding: 0 50px;
}

.testimonials-heading-wrap {
	position: sticky;
	top: 0;
	z-index: 5;
	padding: 32px 50px 24px;
	margin: 0 -50px;
	background-color: var(--bg-deep);
}

.testimonials-heading-wrap::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	height: 100px;
	background: linear-gradient(to bottom, var(--bg-deep), transparent);
	pointer-events: none;
}

.testimonials-ratings-wrap {
	position: relative;
}

.testimonials-fade-bottom {
	position: sticky;
	bottom: 0;
	height: 20px;
	margin: -20px 0 0;
	background-color: var(--bg-deep);
	pointer-events: none;
	z-index: 10;
}

.testimonials-fade-bottom::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 100%;
	height: 100px;
	background: linear-gradient(to bottom, transparent, var(--bg-deep));
	pointer-events: none;
}

.testimonials-list {
	max-width: 1280px;
	margin: 0 auto;
}

.testimonial {
	padding: 64px 0;
}


.testimonial-heading {
	margin: 0;
	font-family: var(--display-font);
	font-weight: 400;
	font-size: var(--fs-3xl);
	line-height: 1;
	letter-spacing: -0.03em;
	text-transform: uppercase;
	color: var(--white);
	text-align: center;
	text-shadow: 0 4px 12.9px rgba(245, 240, 232, 0.5);
}

.testimonial-heading .lift-red,
.ratings-heading .lift-red {
	color: var(--lift-red);
	text-shadow: 0 0 18px rgba(204, 21, 63, 0.9), 0 0 48px rgba(204, 21, 63, 0.55), 0 0 90px rgba(204, 21, 63, 0.25);
}

@media (max-width: 1024px) {
	.testimonial-heading,
	.ratings-heading {
		text-shadow: none;
	}
	.testimonial-heading .lift-red,
	.ratings-heading .lift-red {
		text-shadow: 0 0 8px rgba(204, 21, 63, 0.9);
	}
}

.testimonial-word {
	display: inline-block;
	transition: opacity 250ms ease;
}

.testimonial-word.is-fading {
	opacity: 0;
}

.testimonial-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.testimonial-content {
	display: flex;
	flex-direction: column;
	gap: 32px;
	font-family: var(--body-font);
	color: var(--white);
}

.testimonial-quote {
	margin: 0;
	font-size: var(--fs-xl);
	line-height: 1.3;
	letter-spacing: -0.02em;
}

.testimonial-quote::before { content: "\201C"; }
.testimonial-quote::after  { content: "\201D"; }

.testimonial-name {
	margin: 0;
	font-size: var(--fs-xl);
	line-height: 1;
}

.testimonial-read-more {
	align-self: flex-start;
	margin-top: 8px;
	font-size: var(--fs-md);
	line-height: 1;
	color: var(--white);
	text-decoration: none;
}

.testimonial-read-more:hover {
	color: var(--red);
}

.testimonial-photo {
	margin: 0;
	position: relative;
	z-index: 3;
}

.testimonial-photo img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 12px;
}

/* ---------- Google reviews cluster ---------- */

.ratings {
	background: var(--bg-deep);
	padding: 120px 50px 160px;
	position: relative;
	overflow: hidden;
}

.ratings-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	overflow: hidden;
}

.ratings-bg-layer {
	position: absolute;
	inset: -10% 0;
	will-change: transform;
}

.ghost-bubble {
	position: absolute;
	left: var(--x);
	top: var(--y);
	width: var(--size, 64px);
	height: var(--size, 64px);
	transform: translate(-50%, -50%);
	animation: ghost-float var(--dur, 9000ms) ease-in-out infinite;
	animation-delay: var(--delay, 0ms);
}

.ghost-bubble img {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid rgba(255, 255, 255, 0.06);
}

.ratings-bg-layer--far .ghost-bubble img {
	opacity: 0.28;
	filter: grayscale(0.6) brightness(0.55) blur(1.2px);
}

.ratings-bg-layer--near .ghost-bubble img {
	opacity: 0.42;
	filter: grayscale(0.4) brightness(0.7) blur(0.5px);
}

@keyframes ghost-float {
	0%, 100% { transform: translate(-50%, -50%) translateY(0); }
	50%      { transform: translate(-50%, -50%) translateY(-12px); }
}

@media (prefers-reduced-motion: reduce) {
	.ghost-bubble { animation: none; }
}

.ratings-heading,
.ratings-cluster {
	position: relative;
	z-index: 1;
}

.ratings-heading {
	margin: 0 auto 80px;
	max-width: 1280px;
	font-family: var(--display-font);
	font-weight: 400;
	font-size: var(--fs-3xl);
	line-height: 1;
	letter-spacing: -0.03em;
	text-transform: uppercase;
	color: var(--white);
	text-align: center;
	text-shadow: 0 4px 12.9px rgba(245, 240, 232, 0.5);
}

.ratings-cluster {
	position: relative;
	max-width: 1280px;
	margin: 0 auto;
	/* height set inline by Hugo template based on review count */
}

.review-bubble {
	position: absolute;
	left: var(--x);
	top: var(--y);
	width: 88px;
	height: 88px;
	transform: translate(-50%, -50%);
	animation: bubble-float var(--dur, 7000ms) ease-in-out infinite;
	animation-delay: var(--delay, 0ms);
}

@keyframes bubble-float {
	0%, 100% { transform: translate(-50%, -50%) translateY(0); }
	50%      { transform: translate(-50%, -50%) translateY(-10px); }
}

@media (prefers-reduced-motion: reduce) {
	.review-bubble { animation: none; }
}

.review-bubble:hover,
.review-bubble:focus-within {
	z-index: 20;
}

.review-pfp-wrap {
	width: 100%;
	height: 100%;
	transition: transform 250ms ease;
	transform: scale(1);
	will-change: transform;
}

.review-pfp {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--border);
	background: var(--border);
}

.review-card {
	position: absolute;
	bottom: calc(100% + 18px);
	left: 50%;
	width: var(--card-w, 320px);
	padding: 14px 18px;
	background: #ffffff;
	color: var(--ink);
	border-radius: 14px;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, 6px);
	transition: opacity 180ms ease, transform 180ms ease;
	font-family: var(--body-font);
	z-index: 30;
}

.review-card::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border: 9px solid transparent;
	border-top-color: #ffffff;
}

/* Card position variants applied by JS when default would overflow viewport. */
.review-card.flip-down {
	bottom: auto;
	top: calc(100% + 18px);
}

.review-card.flip-down::after {
	top: auto;
	bottom: 100%;
	border-top-color: transparent;
	border-bottom-color: #ffffff;
}

.review-card.anchor-left {
	left: 50%;
	transform: translate(calc(-50% + var(--anchor-shift, 0px)), 6px);
}

.review-card.anchor-left::after {
	left: calc(50% - var(--anchor-shift, 0px));
}

.review-bubble:hover .review-card,
.review-bubble:focus-within .review-card {
	opacity: 1;
	transform: translate(-50%, 0);
	pointer-events: auto;
}

.review-bubble:hover .review-card.anchor-left,
.review-bubble:focus-within .review-card.anchor-left {
	transform: translate(calc(-50% + var(--anchor-shift, 0px)), 0);
}

.review-card-head {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 12px;
	margin-bottom: 8px;
}

.review-card-name {
	font-size: var(--fs-xs);
	font-weight: 600;
	letter-spacing: -0.01em;
}

.review-card-stars {
	color: #FFB800;
	font-size: var(--fs-xs);
	letter-spacing: 1px;
	white-space: nowrap;
}

.review-card-body {
	margin: 0;
	font-size: var(--fs-xs);
	line-height: 1.45;
	color: #2A2520;
}

/* ---------- Mobile ---------- */

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

	.hero-title {
		font-size: clamp(4.5rem, 14vw, 7rem);
	}

	.hero-learn-more {
		display: none;
	}

	.hero-cta {
		margin-left: 0;
		max-width: none;
	}

	.nav-toggle {
		display: flex;
	}

	.topnav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 16px 0;
		background: var(--bg);
		border-bottom: 1px solid var(--border);
		z-index: 50;
	}

	.topbar {
		position: relative;
	}

	.topbar:has(.nav-toggle[aria-expanded="true"]) .topnav {
		display: flex;
	}

	.topnav a {
		padding: 14px 24px;
		font-size: var(--fs-xl);
		text-align: left;
	}

	.topnav a.cta,
	.topnav button.cta {
		padding: 14px 24px;
		width: 100%;
		text-align: left;
	}

	.nav-dropdown {
		display: block;
		width: 100%;
	}

	.nav-dropdown-toggle {
		padding: 14px 24px;
		width: 100%;
		font-size: var(--fs-xl);
		justify-content: space-between;
	}

	.nav-dropdown-menu {
		position: static;
		transform: none;
		min-width: 0;
		border: none;
		border-top: 1px solid var(--border);
		border-radius: 0;
		padding: 0;
		background: rgba(255,255,255,0.04);
	}

	.nav-dropdown-item {
		padding: 12px 24px 12px 40px;
		font-size: 1rem;
	}

	.testimonial-row {
		display: grid;
		grid-template-columns: 1fr;
		grid-template-rows: 1fr;
		gap: 0;
	}

	.testimonial-content {
		grid-column: 1;
		grid-row: 1;
		align-self: end;
		z-index: 4;
		padding: 20px;
		background: rgba(13, 13, 13, 0.78);
		border-radius: 0 0 12px 12px;
	}

	.testimonial-photo {
		grid-column: 1;
		grid-row: 1;
	}

	.testimonial-photo img {
		height: 100%;
		object-fit: cover;
	}

	.testimonials-heading-wrap {
		top: 0;
		padding-top: 72px;
	}

	.review-bubble:not(:nth-child(3n)) {
		display: none;
	}

	.review-bubble {
		width: 64px;
		height: 64px;
	}

	.review-bubble.is-open .review-card {
		opacity: 1;
		transform: translate(-50%, 0);
		pointer-events: auto;
	}

	.review-bubble.is-open .review-card.anchor-left {
		transform: translate(calc(-50% + var(--anchor-shift, 0px)), 0);
	}

	.review-card {
		max-width: calc(100vw - 24px);
	}
}

/* ---------- Footer ---------- */

.foot {
	background: #0a0a0a;
	border-top: 1px solid var(--border);
	color: var(--white);
}

.foot-inner {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: clamp(32px, 5vw, 64px);
	max-width: 1280px;
	margin: 0 auto;
	padding: clamp(48px, 8vw, 80px) clamp(24px, 6vw, 80px);
	align-items: start;
}

.foot-logo-link {
	display: inline-block;
}

.foot-logo {
	height: 48px;
	width: auto;
}

.foot-tagline {
	margin: 20px 0 0;
	font-family: var(--body-font);
	font-size: var(--fs-sm);
	line-height: 1.6;
	color: rgba(248, 248, 248, 0.55);
	max-width: 360px;
}

.foot-cta {
	display: inline-block;
	margin-top: 28px;
	padding: 14px 32px;
	font-family: var(--display-font);
	font-weight: 400;
	font-size: var(--fs-lg);
	letter-spacing: -0.03em;
	text-transform: uppercase;
	color: var(--white);
	background: var(--lift-red);
	border: none;
	border-radius: 8px;
	cursor: pointer;
}

.foot-cta:hover {
	filter: brightness(1.1);
}

.foot-social {
	display: flex;
	gap: 16px;
	margin-top: 24px;
}

.foot-social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(248, 248, 248, 0.1);
	color: rgba(248, 248, 248, 0.7);
	text-decoration: none;
	transition: background 200ms ease, color 200ms ease;
}

.foot-social-link:hover {
	background: var(--lift-red);
	color: var(--white);
}

.foot-cols {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(24px, 4vw, 48px);
}

.foot-col-heading {
	margin: 0 0 16px;
	font-family: var(--display-font);
	font-weight: 400;
	font-size: var(--fs-base);
	letter-spacing: -0.02em;
	text-transform: uppercase;
	color: rgba(248, 248, 248, 0.4);
}

.foot-col nav {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.foot-col {
	display: flex;
	flex-direction: column;
}

.foot-link {
	font-family: var(--body-font);
	font-size: var(--fs-sm);
	color: rgba(248, 248, 248, 0.7);
	text-decoration: none;
}

.foot-link:hover {
	color: var(--white);
}

.foot-col > .foot-link + .foot-link {
	border-top: 1px solid var(--border);
	padding-top: 10px;
	margin-top: 10px;
}

.foot-address {
	line-height: 1.5;
}

.foot-map {
	border-radius: 8px;
	overflow: hidden;
	height: 220px;
	border: 1px solid var(--border);
}

.foot-bar {
	border-top: 1px solid var(--border);
	padding: 20px clamp(24px, 6vw, 80px);
	max-width: 100%;
}

.foot-copy {
	margin: 0;
	font-family: var(--body-font);
	font-size: var(--fs-xs);
	color: rgba(248, 248, 248, 0.3);
	max-width: 1280px;
	margin: 0 auto;
}

@media (max-width: 900px) {
	.foot-inner {
		grid-template-columns: 1fr 1fr;
	}
	.foot-map {
		grid-column: 1 / -1;
	}
}

@media (max-width: 600px) {
	.foot-inner {
		grid-template-columns: 1fr;
	}
	.foot-tagline {
		max-width: 100%;
	}
	.foot-map {
		grid-column: auto;
	}
}

/* ---------- Book page ---------- */

.book-page {
	min-height: 100vh;
	padding-top: 80px;
	background: var(--bg-deep);
}

.book-hero {
	display: grid;
	grid-template-columns: 2fr 3fr;
	gap: clamp(24px, 4vw, 48px);
	align-items: center;
	max-width: 1100px;
	margin: 0 auto;
	padding: clamp(32px, 5vw, 64px) clamp(24px, 6vw, 80px);
}

.book-cover-wrap {
	flex-shrink: 0;
}

.book-cover {
	width: clamp(180px, 28vw, 360px);
	height: auto;
	display: block;
	border-radius: 6px;
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
}

.book-eyebrow {
	margin: 0 0 16px;
	font-family: var(--body-font);
	font-size: var(--fs-sm);
	color: rgba(248, 248, 248, 0.5);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.book-title {
	margin: 0 0 24px;
	font-family: var(--display-font);
	font-weight: 400;
	font-size: clamp(48px, 7vw, 96px);
	line-height: 1;
	letter-spacing: -0.03em;
	text-transform: uppercase;
	color: var(--white);
}

.book-body {
	margin: 0 0 36px;
	font-family: var(--body-font);
	font-size: var(--fs-lg);
	line-height: 1.6;
	color: rgba(248, 248, 248, 0.75);
	max-width: 540px;
}

.book-cta {
	display: inline-block;
	padding: 16px 36px;
	font-family: var(--display-font);
	font-weight: 400;
	font-size: var(--fs-lg);
	letter-spacing: -0.03em;
	text-transform: uppercase;
	color: var(--white);
	background: var(--lift-red);
	border-radius: 8px;
	text-decoration: none;
}

.book-cta:hover {
	filter: brightness(1.1);
}

@media (max-width: 1024px) {
	.book-hero {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.book-cover-wrap {
		display: flex;
		justify-content: center;
	}
	.book-body {
		max-width: 100%;
	}
}

/* ---------- Bio page ---------- */

.bio-page {
	min-height: 100vh;
	padding-top: 80px;
	background: var(--bg-deep);
}

.bio-hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(32px, 5vw, 72px);
	align-items: start;
	max-width: 1200px;
	margin: 0 auto;
	padding: clamp(48px, 7vw, 96px) clamp(24px, 6vw, 80px);
}

.bio-hero-photo {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	object-position: top;
	border-radius: 8px;
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
	display: block;
}

.bio-hero-text {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding-top: clamp(16px, 3vw, 40px);
}

.bio-name-row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
}

.bio-eyebrow {
	margin: 0 0 0.2em;
	font-family: var(--body-font);
	font-size: var(--fs-xs);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	line-height: 1.8;
	text-align: left;
	color: rgba(248, 248, 248, 0.4);
	flex-shrink: 0;
}

.bio-name {
	margin: 0;
	font-family: var(--display-font);
	font-weight: 400;
	font-size: clamp(48px, 6vw, 88px);
	line-height: 1;
	letter-spacing: -0.03em;
	text-transform: uppercase;
	color: var(--white);
}

.bio-intro {
	margin: 0;
	font-family: var(--body-font);
	font-size: var(--fs-lg);
	line-height: 1.6;
	color: rgba(248, 248, 248, 0.8);
}

.bio-body {
	max-width: 720px;
	margin: 0 auto;
	padding: 0 clamp(24px, 6vw, 80px) clamp(32px, 4vw, 48px);
}

.bio-body p {
	margin: 0 0 1.5em;
	font-family: var(--body-font);
	font-size: var(--fs-lg);
	line-height: 1.7;
	color: rgba(248, 248, 248, 0.8);
}

.bio-section-name {
	margin: 0 0 1em;
	font-family: var(--display-font);
	font-weight: 400;
	font-size: var(--fs-2xl);
	letter-spacing: -0.03em;
	text-transform: uppercase;
	color: var(--white);
	border-bottom: 1px solid var(--border);
	padding-bottom: 0.4em;
}

.bio-body + .bio-body {
	margin-top: clamp(32px, 5vw, 56px);
}

.bio-certs {
	margin: 0 0 1.5em;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.bio-certs li {
	font-family: var(--body-font);
	font-size: var(--fs-lg);
	line-height: 1.5;
	color: rgba(248, 248, 248, 0.8);
	padding-left: 20px;
	position: relative;
}

.bio-certs li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.6em;
	width: 8px;
	height: 2px;
	background: var(--lift-red);
}

.bio-cta-mid {
	position: relative;
	overflow: hidden;
	margin: 0 auto clamp(32px, 4vw, 48px);
	min-height: 520px;
	display: flex;
	align-items: center;
}

.bio-cta-mid-bg {
	position: absolute;
	inset: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(3, 1fr);
	gap: 4px;
}

.bio-cta-mid-photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(0.25) brightness(0.75);
}


.bio-cta-mid-content {
	position: relative;
	z-index: 2;
	width: 100%;
	padding: clamp(32px, 5vw, 56px) clamp(24px, 5vw, 64px);
	background: rgba(0, 0, 0, 0.7);
	display: flex;
	justify-content: center;
}

.bio-cta-mid-group {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 28px;
}

.bio-pull-quote {
	margin: 0;
	padding-left: 24px;
	border-left: 3px solid var(--lift-red);
	font-family: var(--display-font);
	font-weight: 400;
	font-size: var(--fs-2xl);
	letter-spacing: -0.03em;
	text-transform: uppercase;
	color: var(--white);
	font-style: normal;
}

.bio-cta-btn {
	display: inline-block;
	align-self: flex-start;
	padding: 16px 36px;
	font-family: var(--display-font);
	font-weight: 400;
	font-size: var(--fs-lg);
	letter-spacing: -0.03em;
	text-transform: uppercase;
	color: var(--white);
	background: var(--lift-red);
	border: none;
	border-radius: 8px;
	cursor: pointer;
}

.bio-cta-btn:hover {
	filter: brightness(1.1);
}

.bio-cta-banner {
	margin-top: clamp(32px, 5vw, 64px);
	padding: clamp(48px, 7vw, 96px) clamp(24px, 6vw, 80px);
	border-top: 1px solid var(--border);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 28px;
}

.bio-banner-heading {
	margin: 0;
	font-family: var(--display-font);
	font-weight: 400;
	font-size: var(--fs-2xl);
	letter-spacing: -0.03em;
	text-transform: uppercase;
	color: var(--white);
}

.bio-banner-form {
	width: 100%;
	max-width: 480px;
	text-align: left;
}

@media (max-width: 1024px) {
	.bio-hero {
		grid-template-columns: 1fr;
	}
	.bio-hero-photo {
		aspect-ratio: 3 / 2;
	}
	.bio-hero-text {
		padding-top: 0;
	}
}

/* ── Training pages (light layout) ─────────────────────── */

.training-page {
	background: #f5f2ee;
}

.training-hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 88vh;
}

.training-photo-col {
	background: #e0dbd5;
	display: flex;
	align-items: center;
}

.training-photo {
	width: 100%;
	height: auto;
	display: block;
}

.training-content {
	padding: clamp(48px, 6vw, 96px) clamp(40px, 5vw, 80px);
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: clamp(16px, 2vw, 24px);
}

.training-eyebrow {
	font-family: var(--body-font);
	font-size: var(--fs-lg);
	color: var(--lift-red);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.training-heading {
	font-family: var(--display-font);
	font-size: clamp(2rem, 4vw, 4.5rem);
	line-height: 1;
	letter-spacing: -0.02em;
	color: #0d0d0d;
}

.training-body {
	font-size: var(--fs-lg);
	line-height: 1.7;
	color: #2d2520;
	max-width: 460px;
}

.training-cta-btn {
	display: inline-block;
	align-self: flex-start;
	font-family: var(--display-font);
	font-weight: 400;
	font-size: var(--fs-xl);
	letter-spacing: -0.02em;
	text-transform: uppercase;
	line-height: 1;
	color: var(--white);
	background: var(--lift-red);
	border: none;
	padding: 14px 36px;
	border-radius: 4px;
	cursor: pointer;
}

.training-cta-btn:hover {
	background: #a8102f;
}

@media (max-width: 1024px) {
	.training-hero {
		grid-template-columns: 1fr;
		min-height: unset;
	}
	.training-photo-col {
		aspect-ratio: 4 / 3;
	}
}

/* ─── Blog list page ─────────────────────────────────────── */
.blog-list-page {
	background: var(--bg-deep);
	min-height: 100vh;
	padding-top: 80px;
}

.blog-list-header {
	max-width: 900px;
	margin: 0 auto;
	padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 48px) clamp(32px, 5vw, 48px);
	border-bottom: 1px solid var(--border);
}

.blog-list-heading {
	font-family: var(--display-font);
	font-size: clamp(3rem, 8vw, 6rem);
	line-height: 1;
	letter-spacing: -0.02em;
	color: var(--white);
	margin: 0 0 12px;
}

.blog-list-sub {
	font-size: var(--fs-lg);
	color: var(--muted);
	margin: 0;
}

.blog-grid {
	max-width: 900px;
	margin: 0 auto;
	padding: clamp(32px, 5vw, 48px) clamp(20px, 5vw, 48px) clamp(48px, 8vw, 96px);
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
}

.blog-card {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 0;
	border-bottom: 1px solid var(--border);
	text-decoration: none;
	color: var(--white);
	transition: background 0.15s;
	padding: 24px 0;
}

.blog-card:hover {
	background: rgba(255,255,255,0.03);
}

.blog-card:first-child {
	border-top: 1px solid var(--border);
}

.blog-card-img-wrap {
	width: 200px;
	aspect-ratio: 16/10;
	overflow: hidden;
	border-radius: 4px;
	flex-shrink: 0;
	align-self: center;
	margin-right: 28px;
}

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

.blog-card-body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 6px;
	padding-left: 28px;
}

.blog-card-date {
	font-family: var(--body-font);
	font-size: 0.8125rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--lift-red);
	margin: 0;
}

.blog-card-title {
	font-family: var(--display-font);
	font-size: clamp(1.4rem, 2.5vw, 1.75rem);
	line-height: 1.05;
	letter-spacing: -0.02em;
	color: #ffffff;
	margin: 0;
}

.blog-card-excerpt {
	font-size: var(--fs-base);
	line-height: 1.55;
	color: var(--muted);
	margin: 0;
}

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

.blog-card-read {
	font-family: var(--body-font);
	font-size: 0.875rem;
	color: var(--lift-red);
	margin-top: 4px;
}

@media (max-width: 640px) {
	.blog-card {
		grid-template-columns: 1fr;
	}
	.blog-card-img-wrap {
		width: 100%;
		margin-right: 0;
		margin-bottom: 16px;
	}
	.blog-card-body {
		padding-left: 0;
	}
	.blog-post-header {
		grid-template-columns: 1fr;
	}
	.blog-post-hero {
		order: -1;
	}
}

/* ─── Blog single post ───────────────────────────────────── */
.blog-post-page {
	background: var(--bg-deep);
	min-height: 100vh;
	padding-top: 80px;
}


.blog-post-article {
	max-width: 1100px;
	margin: 0 auto;
	padding: clamp(40px, 6vw, 72px) clamp(20px, 5vw, 48px);
}

.blog-post-body,
.blog-post-back {
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
}

.blog-post-header {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(24px, 4vw, 48px);
	align-items: center;
	margin-bottom: clamp(28px, 4vw, 48px);
	padding-bottom: 32px;
	border-bottom: 1px solid var(--border);
}

.blog-post-header-text {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.blog-post-date {
	font-family: var(--body-font);
	font-size: 0.8125rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--lift-red);
	margin: 0;
}

.blog-post-title {
	font-family: var(--display-font);
	font-size: clamp(2.8rem, 6vw, 5rem);
	line-height: 1.02;
	letter-spacing: -0.02em;
	color: var(--white);
	margin: 0;
}

.blog-post-hero {
	width: 100%;
}

.blog-post-hero-img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 6px;
}

.blog-post-body {
	font-size: var(--fs-lg);
	line-height: 1.75;
	color: #c8c3bc;
}

.blog-post-body p {
	margin: 0 0 1.4em;
}

.blog-post-body h2,
.blog-post-body h3 {
	font-family: var(--display-font);
	font-size: var(--fs-base);
	line-height: 1.05;
	letter-spacing: -0.02em;
	color: var(--white);
	margin: 1.2em 0 0.3em;
}

.blog-post-body h2 { font-size: clamp(2.5rem, 4vw, 3rem); }
.blog-post-body h3 { font-size: clamp(2rem, 3vw, 2.25rem); }

.blog-post-body ul,
.blog-post-body ol {
	padding-left: 1.5em;
	margin: 0 0 1.4em;
}

.blog-post-body li {
	margin-bottom: 0.4em;
}

.blog-post-body a {
	color: var(--lift-red);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.blog-post-body img {
	max-width: 100%;
	border-radius: 4px;
	margin: 1.5em 0;
}

.blog-post-back {
	margin-top: clamp(32px, 5vw, 56px);
	padding-top: 24px;
	border-top: 1px solid var(--border);
}

.blog-back-link {
	font-family: var(--body-font);
	font-size: var(--fs-base);
	color: var(--muted);
	text-decoration: none;
	transition: color 0.15s;
}

.blog-back-link:hover {
	color: var(--white);
}

.blog-post-cta {
	background: var(--bg);
	border-top: 1px solid var(--border);
	padding: clamp(40px, 6vw, 72px) clamp(20px, 5vw, 48px);
}

.blog-post-cta-inner {
	max-width: 720px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 28px;
}

.blog-post-cta-heading {
	font-family: var(--display-font);
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.02;
	letter-spacing: -0.02em;
	color: var(--white);
	margin: 0;
	text-align: center;
}

.blog-post-cta-form {
	width: 100%;
	max-width: 420px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.nav-active {
	color: var(--white) !important;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.form-success {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 32px 0;
}

.form-success-msg {
	font-family: var(--display-font);
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	letter-spacing: -0.02em;
	color: var(--white);
	margin: 0;
	text-align: center;
}

/* ─── Sticky mobile CTA ──────────────────────────────────── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 12px 16px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.sticky-cta-btn {
  display: block;
  width: 100%;
  font-family: var(--display-font);
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--lift-red);
  border: none;
  border-radius: 4px;
  padding: 14px;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .sticky-cta {
    display: block;
  }
  body {
    padding-bottom: 72px;
  }
}

@media (max-width: 1024px) {
	.speciality-bg,
	.bio-cta-mid-bg {
		grid-template-columns: repeat(3, 1fr);
		grid-template-rows: repeat(4, calc(100vw / 3));
		gap: 4px;
	}
	.bio-cta-mid {
		min-height: calc(100vw / 3 * 4);
	}
}

