/**
 * Luxxery Homepage — Luxury Editorial Design System
 */

/* ─── Tokens ─── */
:root {
	--lx-black: #0a0a0a;
	--lx-charcoal: #141414;
	--lx-graphite: #1e1e1e;
	--lx-cream: #f7f3ed;
	--lx-ivory: #faf8f4;
	--lx-white: #ffffff;
	--lx-gold: #c9a962;
	--lx-gold-light: #dfc88a;
	--lx-gold-dark: #a8894a;
	--lx-muted: #6e6860;
	--lx-border: rgba(10, 10, 10, 0.1);
	--lx-border-light: rgba(255, 255, 255, 0.12);

	--lx-serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
	--lx-sans: "Outfit", "Helvetica Neue", sans-serif;

	--lx-wrap: min(1320px, 90vw);
	--lx-header-h: 88px;
	--lx-ease: cubic-bezier(0.22, 1, 0.36, 1);
	--lx-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
	--lx-duration: 0.5s;
	--lx-radius-sm: 6px;
	--lx-radius-md: 12px;
	--lx-radius-lg: 20px;
	--lx-radius-pill: 999px;
	--lx-shadow-soft: 0 4px 24px rgba(10, 10, 10, 0.06);
	--lx-shadow-lift: 0 16px 48px rgba(10, 10, 10, 0.1);
	--lx-shadow-gold: 0 12px 40px rgba(201, 169, 98, 0.22);
	--lx-glass: rgba(255, 255, 255, 0.06);
	--lx-glass-border: rgba(255, 255, 255, 0.1);

	--lx-logo-url: url('https://luxxery.com/wp-content/uploads/2021/12/logo.png');
	--lx-bg-areas: url('https://luxxery.com/wp-content/uploads/2026/06/luxxery-hero.webp');
	--lx-bg-cta: url('https://luxxery.com/wp-content/uploads/2026/06/bg.webp');
	--lx-bg-finance: url('https://luxxery.com/wp-content/uploads/2021/06/bg-int-4.jpg');
}

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

html { scroll-behavior: smooth; }

body.lx-page {
	margin: 0;
	font-family: var(--lx-sans);
	font-size: 16px;
	line-height: 1.65;
	color: var(--lx-black);
	background: var(--lx-ivory);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

body.lx-page::selection {
	background: rgba(201, 169, 98, 0.35);
	color: var(--lx-black);
}

body.lx-page.lx-nav-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
address { font-style: normal; }

.lx-wrap { width: var(--lx-wrap); margin-inline: auto; }
.lx-section { padding-block: clamp(5rem, 12vw, 9rem); }

.lx-sr-only {
	position: absolute;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0,0,0,0);
	border: 0;
}

.lx-skip {
	position: absolute; top: -100%; left: 1rem; z-index: 9999;
	padding: 0.75rem 1.25rem;
	background: var(--lx-gold); color: var(--lx-black);
	font-weight: 600; font-size: 0.875rem;
}
.lx-skip:focus { top: 1rem; }

/* ─── Typography ─── */
.lx-kicker {
	display: inline-flex;
	align-items: center;
	gap: 0.625rem;
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--lx-gold-dark);
	margin: 0 0 1.25rem;
}
.lx-kicker::before {
	content: "";
	width: 1.75rem;
	height: 1px;
	background: linear-gradient(90deg, var(--lx-gold), transparent);
	flex-shrink: 0;
}
.lx-kicker--light { color: var(--lx-gold-light); }
.lx-kicker--light::before {
	background: linear-gradient(90deg, var(--lx-gold-light), transparent);
}

.lx-display {
	font-family: var(--lx-serif);
	font-size: clamp(2.5rem, 5.5vw, 4.25rem);
	font-weight: 400;
	line-height: 1.08;
	letter-spacing: -0.02em;
	margin: 0;
}
.lx-display em {
	font-style: italic;
	font-weight: 400;
	color: var(--lx-gold-dark);
}
.lx-display--light { color: var(--lx-white); }
.lx-display--light em { color: var(--lx-gold-light); }

.lx-prose p {
	margin: 0 0 1.35rem;
	color: var(--lx-muted);
	font-size: 1.0625rem;
	line-height: 1.75;
}
.lx-prose a {
	color: var(--lx-gold-dark);
	text-decoration: underline;
	text-underline-offset: 4px;
	transition: color var(--lx-duration) var(--lx-ease);
}
.lx-prose a:hover { color: var(--lx-black); }

.lx-link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--lx-black);
	transition: gap var(--lx-duration) var(--lx-ease), color var(--lx-duration) var(--lx-ease);
}
.lx-link-arrow::after {
	content: "";
	width: 2.5rem; height: 1px;
	background: currentColor;
	transition: width var(--lx-duration) var(--lx-ease);
}
.lx-link-arrow:hover { gap: 1.125rem; color: var(--lx-gold-dark); }
.lx-link-arrow:hover::after { width: 3.5rem; }
.lx-link-arrow--light { color: rgba(255,255,255,0.85); }
.lx-link-arrow--light:hover { color: var(--lx-gold-light); }

/* ─── Buttons ─── */
.lx-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 1rem 2rem;
	font-family: var(--lx-sans);
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	border: 1px solid transparent;
	border-radius: var(--lx-radius-sm);
	cursor: pointer;
	transition: all var(--lx-duration) var(--lx-ease);
	white-space: nowrap;
	position: relative;
	overflow: hidden;
	isolation: isolate;
}
.lx-btn--sm { padding: 0.75rem 1.5rem; }
.lx-btn--lg { padding: 1.125rem 2.5rem; font-size: 0.75rem; }
.lx-btn--block { width: 100%; }

.lx-btn--gold {
	background: linear-gradient(135deg, var(--lx-gold) 0%, var(--lx-gold-dark) 100%);
	color: var(--lx-black);
	border-color: transparent;
}
.lx-btn--gold::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.28) 50%, transparent 60%);
	transform: translateX(-120%);
	transition: transform 0.65s var(--lx-ease);
	z-index: -1;
}
.lx-btn--gold:hover {
	background: linear-gradient(135deg, var(--lx-gold-light) 0%, var(--lx-gold) 100%);
	transform: translateY(-2px);
	box-shadow: var(--lx-shadow-gold);
}
.lx-btn--gold:hover::before {
	transform: translateX(120%);
}

.lx-btn--dark {
	background: var(--lx-black);
	color: var(--lx-white);
	border-color: var(--lx-black);
}
.lx-btn--dark:hover {
	background: var(--lx-graphite);
	transform: translateY(-2px);
}

.lx-btn--ghost {
	background: transparent;
	color: var(--lx-white);
	border-color: rgba(255,255,255,0.35);
}
.lx-btn--ghost:hover {
	border-color: var(--lx-white);
	background: rgba(255,255,255,0.08);
}

.lx-btn--outline {
	background: transparent;
	color: var(--lx-white);
	border-color: rgba(255,255,255,0.4);
}
.lx-btn--outline:hover {
	background: var(--lx-white);
	color: var(--lx-black);
}

/* ═══════════════════════════════════════
   HEADER & NAVIGATION
   ═══════════════════════════════════════ */
.lx-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 1000;
	height: var(--lx-header-h);
	background: rgba(10, 10, 10, 0.2);
	backdrop-filter: blur(8px) saturate(140%);
	-webkit-backdrop-filter: blur(8px) saturate(140%);
	transition: background var(--lx-duration) var(--lx-ease),
	            backdrop-filter var(--lx-duration) var(--lx-ease),
	            border-color var(--lx-duration) var(--lx-ease),
	            box-shadow var(--lx-duration) var(--lx-ease);
}
.lx-header::after {
	content: "";
	position: absolute;
	bottom: 0; left: 0; right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(201,169,98,0.4), transparent);
	opacity: 0;
	transition: opacity var(--lx-duration) var(--lx-ease);
}
.lx-header.is-scrolled {
	background: rgba(10, 10, 10, 0.88);
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	border-bottom: 1px solid var(--lx-border-light);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}
.lx-header.is-scrolled::after { opacity: 1; }

.lx-header__bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
	gap: 1.5rem;
}

/* Logo */
.lx-logo {
	display: flex;
	align-items: center;
	gap: 0.875rem;
	flex-shrink: 0;
}
.lx-logo__img {
	height: 44px;
	width: auto;
	max-width: 180px;
	object-fit: contain;
	display: block;
	transition: opacity var(--lx-duration) var(--lx-ease);
}

.lx-logo:has(.lx-logo__img) .lx-logo__mark,
.lx-logo:has(.lx-logo__img) .lx-logo__text {
	display: none;
}

/* White logo on dark surfaces */
.lx-header .lx-logo__img,
.lx-logo--drawer .lx-logo__img,
.lx-logo--footer .lx-logo__img {
	filter: brightness(0) invert(1);
}

.lx-logo--drawer .lx-logo__img { height: 36px; max-width: 150px; }
.lx-logo--footer .lx-logo__img { height: 40px; }

/* Desktop Nav */
.lx-nav { display: none; }

@media (min-width: 1200px) {
	.lx-nav { display: block; flex: 1; padding-inline: 2rem; }

	.lx-nav__list {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 0.125rem;
	}

	.lx-nav__link {
		display: flex;
		align-items: center;
		gap: 0.35rem;
		padding: 0.625rem 0.875rem;
		font-size: 0.6875rem;
		font-weight: 500;
		letter-spacing: 0.12em;
		text-transform: uppercase;
		color: rgba(255,255,255,0.82);
		transition: color var(--lx-duration) var(--lx-ease);
		position: relative;
	}
	.lx-nav__link::after {
		content: "";
		position: absolute;
		bottom: 0.25rem; left: 0.875rem; right: 0.875rem;
		height: 1px;
		background: var(--lx-gold);
		transform: scaleX(0);
		transition: transform var(--lx-duration) var(--lx-ease);
	}
	.lx-nav__item:hover > .lx-nav__link,
	.lx-nav__item.is-open > .lx-nav__link {
		color: var(--lx-white);
	}
	.lx-nav__item:hover > .lx-nav__link::after,
	.lx-nav__item.is-open > .lx-nav__link::after {
		transform: scaleX(1);
	}

	.lx-nav__chevron { opacity: 0.5; transition: transform var(--lx-duration) var(--lx-ease); }
	.lx-nav__item.is-open .lx-nav__chevron { transform: rotate(180deg); }

	/* Dropdown */
	.lx-dropdown {
		position: absolute;
		top: calc(100% + 0.5rem);
		left: 50%;
		transform: translateX(-50%) translateY(8px);
		min-width: 260px;
		padding: 0.75rem 0;
		background: var(--lx-charcoal);
		border: 1px solid var(--lx-border-light);
		box-shadow: 0 24px 64px rgba(0,0,0,0.5);
		opacity: 0;
		visibility: hidden;
		transition: all var(--lx-duration) var(--lx-ease);
	}
	.lx-nav__item.is-open .lx-dropdown {
		opacity: 1;
		visibility: visible;
		transform: translateX(-50%) translateY(0);
	}
	.lx-dropdown a {
		display: block;
		padding: 0.625rem 1.5rem;
		font-size: 0.8125rem;
		color: rgba(255,255,255,0.7);
		transition: all 0.25s var(--lx-ease);
	}
	.lx-dropdown a:hover {
		color: var(--lx-gold-light);
		padding-left: 1.75rem;
		background: rgba(201,169,98,0.06);
	}

	/* Mega Menu */
	.lx-nav__item { position: relative; }

	.lx-mega {
		position: fixed;
		top: var(--lx-header-h);
		left: 0; right: 0;
		padding: 2.5rem 0 3rem;
		background: rgba(14, 14, 14, 0.97);
		backdrop-filter: blur(24px);
		border-bottom: 1px solid var(--lx-border-light);
		box-shadow: 0 32px 80px rgba(0,0,0,0.4);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-8px);
		transition: all var(--lx-duration) var(--lx-ease);
	}
	.lx-nav__item--mega.is-open .lx-mega {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.lx-mega__inner {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 2.5rem;
	}

	.lx-mega__title {
		display: block;
		font-family: var(--lx-serif);
		font-size: 1.25rem;
		color: var(--lx-white);
		margin-bottom: 1.25rem;
		padding-bottom: 0.75rem;
		border-bottom: 1px solid var(--lx-border-light);
		transition: color 0.25s;
	}
	.lx-mega__title:hover { color: var(--lx-gold-light); }

	.lx-mega__links li { margin-bottom: 0.25rem; }
	.lx-mega__links a {
		display: block;
		padding: 0.4rem 0;
		font-size: 0.8125rem;
		color: rgba(255,255,255,0.55);
		transition: all 0.25s var(--lx-ease);
	}
	.lx-mega__links a:hover {
		color: var(--lx-gold-light);
		padding-left: 0.5rem;
	}
}

/* Header Actions */
.lx-header__actions {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-shrink: 0;
}

.lx-header__phone {
	display: none;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.2);
	color: var(--lx-white);
	transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.lx-header__phone:hover {
	color: var(--lx-gold-light);
	border-color: var(--lx-gold);
	background: rgba(201,169,98,0.1);
}
.lx-header__phone svg { display: block; flex-shrink: 0; }
.lx-header__phone-label,
.lx-header__phone-num { display: none; }

@media (min-width: 768px) {
	.lx-header__phone { display: flex; }
}

.lx-header__cta { display: none; }
@media (min-width: 992px) {
	.lx-header__cta { display: inline-flex; }
}

/* Burger */
.lx-burger {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 6px;
	width: 48px; height: 48px;
	padding: 12px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255,255,255,0.2);
	border-radius: var(--lx-radius-sm);
	cursor: pointer;
	transition: border-color 0.25s, background 0.25s;
}
.lx-burger:hover {
	border-color: rgba(201, 169, 98, 0.55);
	background: rgba(201, 169, 98, 0.08);
}
.lx-burger span {
	display: block;
	height: 1px;
	background: var(--lx-white);
	transition: all 0.35s var(--lx-ease);
}
.lx-burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lx-burger.is-active span:nth-child(2) { opacity: 0; }
.lx-burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 1200px) {
	.lx-burger { display: none; }
}

/* Mobile Drawer */
.lx-drawer {
	position: fixed;
	inset: 0;
	z-index: 1100;
	pointer-events: none;
}
.lx-drawer.is-open { pointer-events: auto; }

.lx-drawer__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.6);
	opacity: 0;
	transition: opacity 0.4s var(--lx-ease);
}
.lx-drawer.is-open .lx-drawer__backdrop { opacity: 1; }

.lx-drawer__panel {
	position: absolute;
	top: 0; right: 0;
	width: min(420px, 100vw);
	height: 100%;
	height: 100dvh;
	background: var(--lx-charcoal);
	border-left: 1px solid var(--lx-border-light);
	transform: translateX(100%);
	transition: transform 0.45s var(--lx-ease);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	padding-bottom: env(safe-area-inset-bottom, 0);
}
.lx-drawer.is-open .lx-drawer__panel { transform: translateX(0); }

.lx-drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.25rem 1.5rem;
	border-bottom: 1px solid var(--lx-border-light);
	flex-shrink: 0;
}

.lx-drawer__brand { flex: 1; min-width: 0; }

.lx-drawer__contact {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.875rem 1.5rem;
	background: rgba(255,255,255,0.03);
	border-bottom: 1px solid var(--lx-border-light);
	flex-shrink: 0;
}

.lx-drawer__phone {
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--lx-gold-light);
	letter-spacing: 0.04em;
	min-height: 44px;
	display: inline-flex;
	align-items: center;
}
.lx-drawer__phone:hover { color: var(--lx-white); }

.lx-drawer__address {
	font-size: 0.6875rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.45);
}

.lx-drawer__close {
	background: none;
	border: none;
	color: var(--lx-white);
	cursor: pointer;
	padding: 0.5rem;
	min-width: 44px;
	min-height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.lx-drawer__nav {
	flex: 1;
	overflow-y: auto;
	padding: 1rem 0;
}

.lx-drawer__link,
.lx-drawer__toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	min-height: 52px;
	padding: 0.875rem 1.5rem;
	font-size: 0.9375rem;
	font-weight: 500;
	color: var(--lx-white);
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	transition: background 0.25s;
}
.lx-drawer__link:hover,
.lx-drawer__toggle:hover { background: rgba(255,255,255,0.04); }

.lx-drawer__toggle svg { transition: transform 0.3s var(--lx-ease); flex-shrink: 0; }
.lx-drawer__item.is-expanded .lx-drawer__toggle svg { transform: rotate(180deg); }

.lx-drawer__sub {
	padding: 0 1.5rem 0.75rem 1.5rem;
	border-bottom: 1px solid var(--lx-border-light);
	max-height: 60vh;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
.lx-drawer__sub[hidden] { display: none; }

.lx-drawer__sub:not([hidden]) {
	animation: lx-drawer-sub-in 0.35s var(--lx-ease);
}

@keyframes lx-drawer-sub-in {
	from { opacity: 0; transform: translateY(-6px); }
	to { opacity: 1; transform: translateY(0); }
}
.lx-drawer__overview {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--lx-gold);
	margin-bottom: 1rem;
}
.lx-drawer__group-title {
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.4);
	margin: 1rem 0 0.5rem;
}
.lx-drawer__sub ul li a {
	display: flex;
	align-items: center;
	padding: 0.625rem 0;
	min-height: 44px;
	font-size: 0.875rem;
	color: rgba(255,255,255,0.65);
}
.lx-drawer__sub ul li a:hover { color: var(--lx-gold-light); }

.lx-drawer__foot {
	padding: 1.5rem 1.75rem;
	border-top: 1px solid var(--lx-border-light);
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.lx-main { padding-top: 0; }

.lx-hero {
	position: relative;
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
}

.lx-hero__bg {
	position: absolute;
	inset: 0;
	will-change: transform;
	overflow: hidden;
}

.lx-hero__video,
.lx-hero__poster {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.lx-hero__video {
	z-index: 1;
}

.lx-hero__poster {
	z-index: 0;
}

.lx-hero.is-video-ready .lx-hero__poster {
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.6s var(--lx-ease);
}

.lx-hero.is-video-fallback .lx-hero__video {
	display: none;
}

.lx-hero__veil {
	position: absolute;
	inset: 0;
	z-index: 2;
	background:
		linear-gradient(180deg, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0.15) 40%, rgba(10,10,10,0.75) 100%),
		linear-gradient(90deg, rgba(10,10,10,0.7) 0%, transparent 55%);
}

.lx-hero__grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 4rem;
	align-items: end;
	padding-block: calc(var(--lx-header-h) + 4rem) 5rem;
	width: var(--lx-wrap);
	margin-inline: auto;
}

.lx-hero__copy { max-width: 680px; }

.lx-hero__copy .lx-kicker {
	padding: 0.5rem 1.125rem 0.5rem 0.875rem;
	background: var(--lx-glass);
	backdrop-filter: blur(16px) saturate(160%);
	-webkit-backdrop-filter: blur(16px) saturate(160%);
	border: 1px solid var(--lx-glass-border);
	border-radius: var(--lx-radius-pill);
	color: rgba(255, 255, 255, 0.9);
	animation: lx-fade-up 0.9s var(--lx-ease-out) both;
}
.lx-hero__copy .lx-kicker::before {
	background: linear-gradient(90deg, var(--lx-gold-light), transparent);
}

.lx-hero__title {
	font-family: var(--lx-serif);
	font-size: clamp(2.75rem, 6vw, 5rem);
	font-weight: 400;
	line-height: 1.02;
	letter-spacing: -0.03em;
	color: var(--lx-white);
	margin: 0 0 1rem;
	animation: lx-fade-up 0.9s var(--lx-ease-out) 0.1s both;
}
.lx-hero__title em {
	font-style: italic;
	background: linear-gradient(120deg, var(--lx-gold-light) 0%, #f0dfa0 45%, var(--lx-gold) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.lx-hero__lead {
	font-family: var(--lx-serif);
	font-size: clamp(1.25rem, 2.5vw, 1.75rem);
	font-style: italic;
	color: rgba(255,255,255,0.75);
	margin: 0 0 1.25rem;
	animation: lx-fade-up 0.9s var(--lx-ease-out) 0.2s both;
}

.lx-hero__address {
	font-size: 0.875rem;
	color: rgba(255,255,255,0.55);
	margin: 0 0 2.5rem;
	letter-spacing: 0.02em;
	animation: lx-fade-up 0.9s var(--lx-ease-out) 0.28s both;
}

.lx-hero__btns {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	animation: lx-fade-up 0.9s var(--lx-ease-out) 0.36s both;
}

.lx-hero__aside {
	display: flex;
	flex-direction: column;
	gap: 0;
	border-left: 1px solid rgba(255,255,255,0.15);
	padding-left: 2.5rem;
	animation: lx-fade-up 0.9s var(--lx-ease-out) 0.45s both;
}

.lx-hero__stat {
	display: flex;
	align-items: flex-start;
	gap: 1.25rem;
	padding: 1.5rem 0;
	border-bottom: 1px solid rgba(255,255,255,0.08);
}
.lx-hero__stat:last-child { border-bottom: none; }

.lx-hero__stat-num {
	font-family: var(--lx-serif);
	font-size: 1.125rem;
	color: var(--lx-gold);
	flex-shrink: 0;
	width: 2rem;
}
.lx-hero__stat-label {
	font-size: 0.8125rem;
	line-height: 1.5;
	color: rgba(255,255,255,0.65);
	letter-spacing: 0.02em;
}

.lx-hero__scroll-hint {
	position: absolute;
	bottom: 2rem;
	right: 5vw;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.5625rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.4);
	animation: lx-bounce-hint 2.4s ease-in-out infinite;
}
.lx-hero__scroll-hint svg {
	opacity: 0.6;
}

@keyframes lx-fade-up {
	from {
		opacity: 0;
		transform: translateY(24px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes lx-bounce-hint {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(6px); }
}

/* Marquee */
.lx-marquee {
	position: relative;
	background: var(--lx-charcoal);
	border-block: 1px solid rgba(255,255,255,0.07);
	overflow: hidden;
	padding: 1rem 0;
}
.lx-marquee::before,
.lx-marquee::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: clamp(48px, 8vw, 120px);
	z-index: 2;
	pointer-events: none;
}
.lx-marquee::before {
	left: 0;
	background: linear-gradient(90deg, var(--lx-charcoal) 20%, transparent);
}
.lx-marquee::after {
	right: 0;
	background: linear-gradient(-90deg, var(--lx-charcoal) 20%, transparent);
}
.lx-marquee__track {
	display: flex;
	align-items: center;
	gap: 2rem;
	width: max-content;
	animation: lx-marquee 40s linear infinite;
}
.lx-marquee__track span {
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.45);
	white-space: nowrap;
}
.lx-marquee__dot {
	width: 4px; height: 4px;
	background: var(--lx-gold);
	border-radius: 50%;
	flex-shrink: 0;
}
@keyframes lx-marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════
   WELCOME
   ═══════════════════════════════════════ */
.lx-welcome { background: var(--lx-cream); }

.lx-welcome__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(3rem, 8vw, 7rem);
	align-items: center;
}

.lx-welcome__visual { position: relative; }

.lx-welcome__frame {
	position: relative;
	overflow: hidden;
}
.lx-welcome__frame::before {
	content: "";
	position: absolute;
	inset: 1.5rem;
	border: 1px solid rgba(201,169,98,0.35);
	z-index: 1;
	pointer-events: none;
}
.lx-welcome__frame img {
	width: 100%;
	aspect-ratio: 4/5;
	object-fit: cover;
	transition: transform 1s var(--lx-ease);
}
.lx-welcome__frame:hover img {
	transform: scale(1.04);
}

.lx-welcome__quote {
	position: absolute;
	bottom: -2rem;
	right: -2rem;
	max-width: 320px;
	margin: 0;
	padding: 2rem;
	background: rgba(10, 10, 10, 0.92);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	color: var(--lx-white);
	box-shadow: var(--lx-shadow-lift);
}
.lx-welcome__quote blockquote { margin: 0; }
.lx-welcome__quote p {
	font-family: var(--lx-serif);
	font-size: 1.125rem;
	font-style: italic;
	line-height: 1.55;
	margin: 0;
	color: rgba(255,255,255,0.85);
}
.lx-welcome__quote::before {
	content: "";
	position: absolute;
	top: 0; left: 0;
	width: 3px; height: 100%;
	background: var(--lx-gold);
}

/* ═══════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════ */
.lx-section-head { margin-bottom: 3.5rem; max-width: 640px; }
.lx-services .lx-section-head { margin-bottom: 2.5rem; }
.lx-section-head--split {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	max-width: none;
	gap: 2rem;
}

/* ═══════════════════════════════════════
   SERVICES — Editorial Clean Grid
   ═══════════════════════════════════════ */
.lx-services {
	background: #fff;
}
.lx-services .lx-section-head { margin-bottom: 3rem; }

.lx-services__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
}

/* Thin vertical separator between cards */
.lx-svc + .lx-svc {
	border-left: 1px solid var(--lx-border);
}

/* Card */
.lx-svc {
	display: flex;
	flex-direction: column;
	background: #fff;
	padding-bottom: 2.5rem;
}

/* Image area */
.lx-svc__img {
	position: relative;
	display: block;
	overflow: hidden;
	background: var(--lx-ivory);
}
.lx-svc__img img {
	width: 100%;
	aspect-ratio: 3/4;
	object-fit: cover;
	display: block;
	transition: transform 0.8s var(--lx-ease);
}
.lx-svc:hover .lx-svc__img img {
	transform: scale(1.04);
}

/* Thin gold accent line at bottom of image on hover */
.lx-svc__img::after {
	content: "";
	position: absolute;
	bottom: 0; left: 0;
	height: 2px;
	width: 0;
	background: var(--lx-gold);
	transition: width 0.55s var(--lx-ease);
}
.lx-svc:hover .lx-svc__img::after {
	width: 100%;
}

/* Card body */
.lx-svc__body {
	padding: 1.5rem 1.75rem 0;
	display: flex;
	flex-direction: column;
	flex: 1;
}

/* Number + category tag row */
.lx-svc__meta {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.875rem;
}

.lx-svc__index {
	font-family: var(--lx-serif);
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.18em;
	color: rgba(10,10,10,0.28);
}

.lx-svc__cat {
	font-size: 0.625rem;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--lx-gold-dark);
	border: 1px solid rgba(201,169,98,0.45);
	border-radius: 2rem;
	padding: 0.2em 0.75em;
	line-height: 1.6;
}

/* Title */
.lx-svc__title {
	font-family: var(--lx-serif);
	font-size: clamp(1.375rem, 1.6vw, 1.75rem);
	font-weight: 400;
	color: var(--lx-black);
	line-height: 1.15;
	margin: 0 0 1.25rem;
}
.lx-svc__title a {
	color: inherit;
	transition: color 0.25s;
}
.lx-svc__title a:hover { color: var(--lx-gold-dark); }

/* Gold divider */
.lx-svc__rule {
	width: 2rem;
	height: 1px;
	background: var(--lx-gold);
	border: none;
	margin: 0 0 1.125rem;
	transition: width 0.4s var(--lx-ease);
}
.lx-svc:hover .lx-svc__rule { width: 3.5rem; }

/* Sub-procedure links */
.lx-svc__links {
	display: flex;
	flex-direction: column;
	margin: 0 0 1.5rem;
	flex: 1;
}
.lx-svc__links li {
	display: flex;
	align-items: center;
}
.lx-svc__links a {
	display: block;
	width: 100%;
	padding: 0.4rem 0;
	font-size: 0.8rem;
	color: #888;
	border-bottom: 1px solid rgba(10,10,10,0.06);
	transition: color 0.2s, padding-left 0.2s;
}
.lx-svc__links li:last-child a { border-bottom: none; }
.lx-svc__links a:hover {
	color: var(--lx-black);
	padding-left: 0.375rem;
}

/* "View All" CTA */
.lx-svc .lx-link-arrow {
	margin-top: auto;
	font-size: 0.75rem;
	letter-spacing: 0.14em;
}

/* Suite */
.lx-suite {
	position: relative;
	min-height: 560px;
	display: flex;
	align-items: center;
}
.lx-suite__bg {
	position: absolute;
	inset: 0;
}
.lx-suite__bg img {
	width: 100%; height: 100%;
	object-fit: cover;
}
.lx-suite__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.6) 100%);
}
.lx-suite__content {
	position: relative;
	z-index: 2;
	max-width: 560px;
}
.lx-suite__text {
	font-size: 1.0625rem;
	line-height: 1.75;
	color: rgba(255,255,255,0.65);
	margin: 1.5rem 0 2.5rem;
}

/* Doctor */
.lx-doctor { background: var(--lx-white); }

.lx-doctor__grid {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: clamp(3rem, 7vw, 6rem);
	align-items: center;
}

.lx-doctor__photo-wrap { position: relative; }

.lx-doctor__photo {
	width: 100%;
	aspect-ratio: 4/5;
	object-fit: cover;
	object-position: top center;
}

.lx-doctor__accent {
	position: absolute;
	bottom: -1.5rem;
	right: -1.5rem;
	width: 60%;
	height: 60%;
	border: 1px solid var(--lx-gold);
	z-index: -1;
}

.lx-doctor__role {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--lx-gold-dark);
	margin: 0.75rem 0 1.75rem;
}

.lx-creds {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin: 0 0 2.5rem;
}
.lx-creds li {
	padding: 0.625rem 1.125rem;
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border: 1px solid var(--lx-border);
	border-radius: var(--lx-radius-pill);
	color: var(--lx-muted);
	background: var(--lx-ivory);
	transition: border-color 0.3s var(--lx-ease), color 0.3s var(--lx-ease);
}
.lx-creds li:hover {
	border-color: var(--lx-gold);
	color: var(--lx-gold-dark);
}

/* Testimonial */
.lx-testimonial {
	background: var(--lx-cream);
	text-align: center;
}
.lx-testimonial__inner { max-width: 820px; margin-inline: auto; }

.lx-testimonial__mark {
	font-family: var(--lx-serif);
	font-size: clamp(6rem, 15vw, 10rem);
	line-height: 0.6;
	color: var(--lx-gold);
	opacity: 0.35;
	margin: 0 0 -1rem;
}

.lx-testimonial__quote { margin: 0 0 2.5rem; border: none; padding: 0; }
.lx-testimonial__quote p {
	font-family: var(--lx-serif);
	font-size: clamp(1.5rem, 3.5vw, 2.25rem);
	font-style: italic;
	line-height: 1.45;
	color: var(--lx-black);
	margin: 0 0 1.5rem;
}
.lx-testimonial__quote cite {
	font-style: normal;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--lx-gold-dark);
}

/* Journal / Blog */
.lx-journal { background: var(--lx-white); }

.lx-journal__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	background: transparent;
}

.lx-post a {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 0;
	background: var(--lx-white);
	border: 1px solid var(--lx-border);
	border-radius: var(--lx-radius-sm);
	overflow: hidden;
	transition: background 0.4s var(--lx-ease), transform 0.4s var(--lx-ease), box-shadow 0.4s var(--lx-ease), border-color 0.4s var(--lx-ease);
}
.lx-post a:hover {
	background: var(--lx-white);
	transform: translateY(-3px);
	box-shadow: var(--lx-shadow-soft);
	border-color: rgba(201, 169, 98, 0.35);
}

.lx-post__media {
	display: block;
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--lx-cream);
}

.lx-post__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s var(--lx-ease);
}

.lx-post a:hover .lx-post__img {
	transform: scale(1.04);
}

.lx-post__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 2rem 2.5rem 2.5rem;
}

.lx-post__num {
	font-family: var(--lx-serif);
	font-size: 0.875rem;
	color: var(--lx-gold);
	margin-bottom: 1.25rem;
}
.lx-post__title {
	font-family: var(--lx-serif);
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.3;
	margin: 0 0 auto;
	padding-bottom: 1.5rem;
	transition: color 0.3s;
}
.lx-post a:hover .lx-post__title { color: var(--lx-gold-dark); }

/* Social / Instagram */
.lx-social {
	border-top: 1px solid var(--lx-border);
	background: var(--lx-ivory);
	text-align: center;
}

.lx-social--instagram {
	opacity: 1 !important;
	transform: none !important;
}

.lx-social__head {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	margin-bottom: clamp(2rem, 4vw, 2.5rem);
}

.lx-social__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 50%;
	border: 1px solid rgba(201, 169, 98, 0.35);
	color: var(--lx-gold-dark);
	background: rgba(201, 169, 98, 0.08);
}

.lx-social__title {
	margin: 0;
}

.lx-social__feed {
	width: 100%;
	min-height: 280px;
}

.lx-social__feed [class*="elfsight-app-"] {
	width: 100%;
	min-height: 280px;
}

.lx-social__follow {
	margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

/* Elfsight — keep feed visible, hide duplicate widget header only */
.lx-social__feed .eapps-instagram-feed,
.lx-social__feed .eapps-instagram-feed-posts-grid {
	background: transparent !important;
}

.lx-social__feed .eapps-instagram-feed-posts-item-image {
	border-radius: var(--lx-radius-sm);
}

/* CTA */
.lx-cta { padding-bottom: clamp(5rem, 10vw, 8rem); }

.lx-cta__panel {
	position: relative;
	background: var(--lx-bg-cta) center / cover no-repeat;
	padding: clamp(3rem, 8vw, 5rem);
	text-align: center;
	overflow: hidden;
	border-radius: var(--lx-radius-md);
	border: 1px solid rgba(255, 255, 255, 0.08);
}
.lx-cta__panel::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(10, 10, 10, 0.72);
	pointer-events: none;
}
.lx-cta__panel::after { display: none; }
.lx-cta__copy,
.lx-cta__actions,
.lx-cta__note {
	position: relative;
	z-index: 1;
}
.lx-cta__copy p {
	max-width: 480px;
	margin: 1.25rem auto 2.5rem;
	color: rgba(255,255,255,0.6);
	font-size: 1.0625rem;
}
.lx-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
	margin-bottom: 2rem;
}
.lx-cta__note a {
	font-size: 0.875rem;
	color: var(--lx-gold);
	text-decoration: underline;
	text-underline-offset: 4px;
}
.lx-cta__note a:hover { color: var(--lx-gold-light); }

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.lx-footer {
	background: var(--lx-charcoal);
	color: rgba(255,255,255,0.6);
}

.lx-footer__top {
	display: grid;
	grid-template-columns: 1.1fr 2fr;
	gap: 4rem;
	padding-block: 4rem 3rem;
}

.lx-footer__desc {
	font-size: 0.9375rem;
	line-height: 1.7;
	margin: 1.5rem 0;
	max-width: 280px;
}

.lx-footer__address {
	font-size: 0.875rem;
	line-height: 1.7;
	margin-bottom: 0.75rem;
}

.lx-footer__phone {
	font-size: 1.125rem;
	font-weight: 500;
	color: var(--lx-gold-light);
	letter-spacing: 0.04em;
}
.lx-footer__phone:hover { color: var(--lx-white); }

.lx-footer__cols {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.lx-footer__title {
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--lx-white);
	margin: 0 0 1.25rem;
}

.lx-footer__col li { margin-bottom: 0.5rem; }
.lx-footer__col a {
	font-size: 0.875rem;
	color: rgba(255,255,255,0.5);
	transition: color 0.25s, padding-left 0.25s;
}
.lx-footer__col a:hover {
	color: var(--lx-gold-light);
	padding-left: 0.25rem;
}

.lx-footer__bottom {
	padding-block: 2rem 2.5rem;
	border-top: 1px solid var(--lx-border-light);
}

.lx-footer__legal {
	font-size: 0.75rem;
	line-height: 1.65;
	color: rgba(255,255,255,0.35);
	margin: 0 0 1.5rem;
	max-width: 900px;
}

.lx-footer__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	font-size: 0.8125rem;
}
.lx-footer__meta p { margin: 0; }

.lx-footer__links {
	display: flex;
	gap: 1.5rem;
}
.lx-footer__links a {
	color: rgba(255,255,255,0.45);
	font-size: 0.8125rem;
}
.lx-footer__links a:hover { color: var(--lx-gold-light); }

/* Sticky mobile CTA */
.lx-sticky-cta {
	position: fixed;
	bottom: 0; left: 0; right: 0;
	z-index: 900;
	display: flex;
	background: rgba(10, 10, 10, 0.92);
	backdrop-filter: blur(16px) saturate(160%);
	-webkit-backdrop-filter: blur(16px) saturate(160%);
	border-top: 1px solid var(--lx-border-light);
	transform: translateY(100%);
	transition: transform 0.4s var(--lx-ease);
}
.lx-sticky-cta.is-visible { transform: translateY(0); }

.lx-sticky-cta__item {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 1rem;
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--lx-white);
	border-right: 1px solid var(--lx-border-light);
}
.lx-sticky-cta__item:last-child { border-right: none; }
.lx-sticky-cta__item--primary {
	background: var(--lx-gold);
	color: var(--lx-black);
	flex: 1.3;
}

@media (min-width: 768px) {
	.lx-sticky-cta { display: none; }
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1100px) {
	.lx-services__grid,
	.lx-journal__grid {
		grid-template-columns: repeat(2, 1fr);
	}
	/* services 2-col on tablet */

	.lx-doctor__grid,
	.lx-welcome__grid {
		grid-template-columns: 1fr;
	}

	.lx-hero__grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.lx-hero__aside {
		border-left: none;
		border-top: 1px solid rgba(255,255,255,0.12);
		padding-left: 0;
		padding-top: 1.5rem;
		flex-direction: row;
		flex-wrap: wrap;
	}
	.lx-hero__stat {
		flex: 1;
		min-width: 200px;
		border-bottom: none;
		padding: 0.75rem 0;
	}

	.lx-welcome__quote {
		position: relative;
		bottom: auto; right: auto;
		margin-top: 1.5rem;
		max-width: none;
	}

	.lx-doctor__accent { display: none; }

	.lx-footer__top { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
	.lx-services__grid,
	.lx-journal__grid,
	.lx-footer__cols {
		grid-template-columns: 1fr;
	}
	/* services 1-col on mobile */
	.lx-svc + .lx-svc { border-left: none; border-top: 1px solid var(--lx-border); }

	.lx-hero__btns,
	.lx-cta__actions {
		flex-direction: column;
	}
	.lx-hero__btns .lx-btn,
	.lx-cta__actions .lx-btn {
		width: 100%;
	}

	.lx-section-head--split {
		flex-direction: column;
		align-items: flex-start;
	}

	.lx-hero__scroll-hint { display: none; }
}

/* Scroll reveal */
.lx-reveal {
	opacity: 0;
	transform: translateY(32px);
	transition: opacity 0.8s var(--lx-ease), transform 0.8s var(--lx-ease);
}
.lx-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.lx-reveal-child {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.65s var(--lx-ease-out), transform 0.65s var(--lx-ease-out);
}
.lx-reveal.is-visible .lx-reveal-child,
.lx-reveal-child.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.lx-section-head--center {
	text-align: center;
	margin-inline: auto;
}

.lx-section-sub {
	max-width: 640px;
	margin: 1.25rem auto 0;
	color: var(--lx-muted);
	font-size: 1.0625rem;
	line-height: 1.75;
}

.lx-section-head--center .lx-section-sub {
	margin-inline: auto;
}

/* ─── Trust Bar ─── */
.lx-trust {
	background: linear-gradient(135deg, #1a1712 0%, var(--lx-charcoal) 100%);
	border-block: 1px solid rgba(255,255,255,0.07);
	padding: 2rem 0;
}

.lx-trust__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

.lx-trust__item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding-right: 1rem;
	border-right: 1px solid var(--lx-border-light);
}
.lx-trust__item:last-child { border-right: none; }

.lx-trust__icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	color: var(--lx-gold);
	background: rgba(201, 169, 98, 0.08);
	border: 1px solid rgba(201, 169, 98, 0.22);
	transition: background 0.35s var(--lx-ease), transform 0.35s var(--lx-ease);
}
.lx-trust__item:hover .lx-trust__icon {
	background: rgba(201, 169, 98, 0.15);
	transform: scale(1.06);
}

.lx-trust__title {
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--lx-white);
	margin: 0 0 0.35rem;
}

.lx-trust__text {
	font-size: 0.8125rem;
	line-height: 1.5;
	color: rgba(255,255,255,0.5);
	margin: 0;
}

/* ─── Popular Procedures ─── */
.lx-procs { background: var(--lx-white); }

.lx-procs__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	background: transparent;
	margin-bottom: 2.5rem;
}

.lx-proc-card {
	background: var(--lx-white);
	padding: 2rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	border: 1px solid var(--lx-border);
	border-radius: var(--lx-radius-md);
	box-shadow: var(--lx-shadow-soft);
	transition: background var(--lx-duration) var(--lx-ease),
	            transform var(--lx-duration) var(--lx-ease),
	            box-shadow var(--lx-duration) var(--lx-ease),
	            border-color var(--lx-duration) var(--lx-ease);
}
.lx-proc-card:hover {
	background: var(--lx-cream);
	transform: translateY(-4px);
	box-shadow: var(--lx-shadow-lift);
	border-color: rgba(201, 169, 98, 0.35);
}

.lx-proc-card__title {
	font-family: var(--lx-serif);
	font-size: 1.375rem;
	font-weight: 500;
	margin: 0;
	line-height: 1.25;
}
.lx-proc-card__title a {
	transition: color 0.25s;
}
.lx-proc-card__title a:hover { color: var(--lx-gold-dark); }

.lx-proc-card p {
	margin: 0;
	font-size: 0.9375rem;
	color: var(--lx-muted);
	line-height: 1.65;
	flex: 1;
}

.lx-procs__all {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
}

.lx-btn--outline-dark {
	background: transparent;
	color: var(--lx-black);
	border-color: var(--lx-black);
}
.lx-btn--outline-dark:hover {
	background: var(--lx-black);
	color: var(--lx-white);
}

/* ─── Pillars ─── */
.lx-pillars { background: var(--lx-cream); }

.lx-pillars__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.lx-pillar {
	padding: 2.5rem 2rem;
	background: var(--lx-white);
	border: 1px solid var(--lx-border);
	border-radius: var(--lx-radius-md);
	box-shadow: var(--lx-shadow-soft);
	transition: border-color var(--lx-duration) var(--lx-ease),
	            transform var(--lx-duration) var(--lx-ease),
	            box-shadow var(--lx-duration) var(--lx-ease);
}
.lx-pillar:hover {
	border-color: rgba(201, 169, 98, 0.5);
	transform: translateY(-6px);
	box-shadow: var(--lx-shadow-lift);
}

.lx-pillar__num {
	display: block;
	font-family: var(--lx-serif);
	font-size: 1.5rem;
	color: var(--lx-gold);
	margin-bottom: 1.25rem;
}

.lx-pillar__title {
	font-family: var(--lx-serif);
	font-size: 1.5rem;
	font-weight: 500;
	margin: 0 0 0.75rem;
}

.lx-pillar p {
	margin: 0;
	font-size: 0.9375rem;
	color: var(--lx-muted);
	line-height: 1.7;
}

/* ─── Gallery Preview ─── */
.lx-gallery { background: var(--lx-white); }

.lx-gallery__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(3rem, 6vw, 5rem);
	align-items: center;
}

.lx-gallery__collage {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}
.lx-gallery__collage img {
	aspect-ratio: 3/4;
	object-fit: cover;
	width: 100%;
	border-radius: var(--lx-radius-sm);
	transition: transform 0.7s var(--lx-ease), box-shadow 0.7s var(--lx-ease);
}
.lx-gallery__collage img:hover {
	transform: scale(1.03);
	box-shadow: var(--lx-shadow-lift);
}
.lx-gallery__collage img:last-child {
	margin-top: 2rem;
}

.lx-gallery__text {
	font-size: 1rem;
	color: var(--lx-muted);
	line-height: 1.75;
	margin: 1.25rem 0 2rem;
}

/* ─── Steps ─── */
.lx-steps { background: var(--lx-cream); }

.lx-steps__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	list-style: none;
	margin: 0 0 3rem;
	padding: 0;
	counter-reset: none;
}

.lx-step {
	position: relative;
	padding: 2rem;
	background: var(--lx-white);
	border-top: 2px solid var(--lx-gold);
	border-radius: 0 0 var(--lx-radius-md) var(--lx-radius-md);
	box-shadow: var(--lx-shadow-soft);
	transition: transform 0.4s var(--lx-ease), box-shadow 0.4s var(--lx-ease);
}
.lx-step:hover {
	transform: translateY(-3px);
	box-shadow: var(--lx-shadow-lift);
}

.lx-step__num {
	display: block;
	font-family: var(--lx-serif);
	font-size: 0.875rem;
	color: var(--lx-gold);
	margin-bottom: 1rem;
}

.lx-step__title {
	font-family: var(--lx-serif);
	font-size: 1.375rem;
	font-weight: 500;
	margin: 0 0 0.75rem;
}

.lx-step p {
	margin: 0;
	font-size: 0.9375rem;
	color: var(--lx-muted);
	line-height: 1.65;
}
.lx-step a {
	color: var(--lx-gold-dark);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.lx-steps__cta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 2rem;
}

/* ─── Service Areas ─── */
.lx-areas {
	position: relative;
	background: var(--lx-bg-areas) center / cover no-repeat;
	color: rgba(255,255,255,0.75);
}
.lx-areas::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(10, 10, 10, 0.68);
	pointer-events: none;
}
.lx-areas__inner {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 4rem;
	align-items: start;
	position: relative;
	z-index: 1;
}

.lx-areas__intro {
	font-size: 1rem;
	line-height: 1.75;
	margin-top: 1.25rem;
}
.lx-areas__intro strong { color: var(--lx-white); }

.lx-areas .lx-display { color: var(--lx-white); }
.lx-areas .lx-display em { color: var(--lx-gold-light); }

.lx-areas__list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.625rem;
}

.lx-areas__list li {
	padding: 0.5rem 1rem;
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	border: 1px solid var(--lx-border-light);
	border-radius: var(--lx-radius-pill);
	color: rgba(255,255,255,0.7);
	background: rgba(255, 255, 255, 0.03);
	transition: all 0.25s var(--lx-ease);
}
.lx-areas__list li:hover {
	border-color: var(--lx-gold);
	color: var(--lx-gold-light);
	background: rgba(201, 169, 98, 0.1);
	transform: translateY(-2px);
}

/* ─── FAQ ─── */
.lx-faq { background: var(--lx-white); }

.lx-faq__grid {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: clamp(2rem, 5vw, 5rem);
	align-items: start;
}

.lx-faq__intro {
	position: relative;
	align-self: stretch;
}

.lx-faq__intro-inner {
	position: sticky;
	top: calc(var(--lx-header-h) + 2rem);
	z-index: 2;
}

.lx-faq__intro p {
	color: var(--lx-muted);
	margin: 0 0 1.5rem;
	line-height: 1.7;
}

.lx-faq__list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	border: none;
}

.lx-faq__item {
	border: 1px solid var(--lx-border);
	border-radius: var(--lx-radius-md);
	overflow: hidden;
	background: var(--lx-ivory);
	transition: border-color 0.35s var(--lx-ease), box-shadow 0.35s var(--lx-ease), background 0.35s var(--lx-ease);
}
.lx-faq__item:last-child { border-bottom: 1px solid var(--lx-border); }
.lx-faq__item[open] {
	border-color: rgba(201, 169, 98, 0.4);
	box-shadow: var(--lx-shadow-soft);
	background: var(--lx-white);
}

.lx-faq__item summary {
	padding: 1.25rem 1.5rem;
	font-family: var(--lx-serif);
	font-size: 1.125rem;
	font-weight: 500;
	cursor: pointer;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	transition: color 0.25s, background 0.25s;
}
.lx-faq__item summary::-webkit-details-marker { display: none; }
.lx-faq__item summary::after {
	content: "+";
	font-family: var(--lx-sans);
	font-size: 1.25rem;
	font-weight: 300;
	color: var(--lx-gold);
	flex-shrink: 0;
	transition: transform 0.3s var(--lx-ease);
}
.lx-faq__item[open] summary::after {
	transform: rotate(45deg);
}
.lx-faq__item summary:hover {
	background: var(--lx-cream);
	color: var(--lx-gold-dark);
}

.lx-faq__answer {
	padding: 0 1.5rem 1.25rem;
}
.lx-faq__answer p {
	margin: 0;
	font-size: 0.9375rem;
	color: var(--lx-muted);
	line-height: 1.75;
}
.lx-faq__answer a {
	color: var(--lx-gold-dark);
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* ─── Finance Band ─── */
.lx-finance { padding-block: 0 clamp(5rem, 10vw, 7rem); }

.lx-finance__band {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	background: var(--lx-bg-finance) center / cover no-repeat;
	padding: clamp(2.5rem, 5vw, 3.5rem);
	border-left: 3px solid var(--lx-gold);
	border-radius: 0 var(--lx-radius-md) var(--lx-radius-md) 0;
	box-shadow: var(--lx-shadow-lift);
	overflow: hidden;
}
.lx-finance__band::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(10, 10, 10, 0.74);
	pointer-events: none;
}
.lx-finance__copy,
.lx-finance__actions {
	position: relative;
	z-index: 1;
}

.lx-finance__copy p {
	margin: 0.75rem 0 0;
	color: rgba(255,255,255,0.6);
	max-width: 480px;
}

.lx-finance__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

/* ─── Fine tuning ─── */
.lx-welcome { padding-top: clamp(4rem, 10vw, 7rem); }

.lx-hero__veil {
	background:
	linear-gradient(180deg, rgba(10,10,10,0.25) 0%, rgba(10,10,10,0.06) 45%, rgba(10,10,10,0.58) 100%),
	linear-gradient(95deg, rgba(10,10,10,0.52) 0%, rgba(10,10,10,0.14) 50%, rgba(10,10,10,0.38) 100%);
}

.lx-testimonial__quote { border: none; }

@media (max-width: 1100px) {
	.lx-trust__grid { grid-template-columns: repeat(2, 1fr); }
	.lx-trust__item:nth-child(2) { border-right: none; }
	.lx-trust__item { border-right: none; border-bottom: 1px solid var(--lx-border-light); padding-bottom: 1.5rem; }
	.lx-procs__grid,
	.lx-pillars__grid,
	.lx-steps__list { grid-template-columns: repeat(2, 1fr); }
	.lx-faq__grid,
	.lx-gallery__grid,
	.lx-areas__inner { grid-template-columns: 1fr; }
	.lx-faq__intro-inner {
		position: static;
	}
}

@media (max-width: 640px) {
	.lx-trust__grid,
	.lx-procs__grid,
	.lx-pillars__grid,
	.lx-steps__list { grid-template-columns: 1fr; }
	.lx-finance__band { flex-direction: column; align-items: flex-start; }
	.lx-finance__actions { width: 100%; flex-direction: column; }
	.lx-finance__actions .lx-btn { width: 100%; }
}

.admin-bar .lx-header { top: 32px; }
.admin-bar .lx-faq__intro-inner { top: calc(var(--lx-header-h) + 32px + 2rem); }
@media (max-width: 782px) {
	.admin-bar .lx-header { top: 46px; }
	.admin-bar .lx-faq__intro-inner { top: calc(var(--lx-header-h) + 46px + 2rem); }
}

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

	.lx-reveal,
	.lx-reveal-child {
		opacity: 1;
		transform: none;
	}

	.lx-hero__bg img {
		animation: none;
	}
}
