/* Homepage — design from trishul_agencies_homepage.html; scoped to .page-home */

.page-home {
	--lux-navy: #2e4158;
	--lux-navy-dark: #1a2535;
	--lux-navy-mid: #3d5472;
	--lux-white: #ffffff;
	--lux-off-white: #f7f5f2;
	--lux-warm-gray: #e8e4df;
	--lux-text-muted: #8a8580;
	--lux-gold: #c9a96e;
	--lux-gold-light: #e8d5b0;
	--lux-body: #5a6a7a;
	--lux-body-soft: #7a8a9a;

	font-family: Jost, system-ui, sans-serif;
	color: var(--lux-navy);
	background: var(--lux-white);
}

.page-home main {
	line-height: 1.66;
}

.page-home .font-lux-serif {
	font-family: 'Cormorant Garamond', Georgia, serif;
}

/* ——— Hero (video retained) ——— */
.page-home .ta-lux-hero {
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	align-items: flex-end;
	padding: 0 0 4.5rem;
}

@media (min-width: 576px) {
	.page-home .ta-lux-hero {
		padding-bottom: 5rem;
	}
}

.page-home .ta-lux-hero .hero-video {
	filter: brightness(0.82);
}

/* Top stays clear so the fixed navbar sits over clean video — no “frosted bar” */
.page-home .ta-lux-hero .hero-overlay {
	background: linear-gradient(
		to bottom,
		rgba(20, 32, 47, 0) 0%,
		rgba(20, 32, 47, 0.06) 22%,
		rgba(20, 32, 47, 0.2) 45%,
		rgba(20, 32, 47, 0.68) 78%,
		rgba(15, 24, 38, 0.9) 100%
	);
}

.page-home .ta-lux-hero__content {
	z-index: 2;
	width: 100%;
	padding-left: max(1.25rem, 4vw);
	padding-right: max(1.25rem, 4vw);
	padding-bottom: 0;
}

.page-home .ta-lux-hero__inner {
	max-width: 700px;
	animation: ta-lux-fade-up 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.page-home .ta-lux-hero__eyebrow {
	font-size: 0.625rem;
	font-weight: 300;
	letter-spacing: 0.35em;
	text-transform: uppercase;
	color: var(--lux-gold-light);
	margin-bottom: 1.25rem;
	display: flex;
	align-items: center;
	gap: 0.875rem;
	animation: ta-lux-fade-up 1.2s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.page-home .ta-lux-hero__eyebrow::before {
	content: '';
	width: 36px;
	height: 1px;
	background: var(--lux-gold);
	flex-shrink: 0;
}

.page-home .ta-lux-hero__headline {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: clamp(2.75rem, 7vw, 5.5rem);
	font-weight: 300;
	line-height: 1.05;
	color: var(--lux-white);
	letter-spacing: -0.01em;
	margin-bottom: 1.5rem;
	animation: ta-lux-fade-up 1.2s 0.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.page-home .ta-lux-hero__headline em {
	font-style: italic;
	font-weight: 300;
	color: var(--lux-gold-light);
}

.page-home .ta-lux-hero__sub {
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.7);
	max-width: 30rem;
	margin-bottom: 0;
	padding-bottom: 2.25rem;
	letter-spacing: 0.02em;
	animation: ta-lux-fade-up 1.2s 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.page-home .ta-lux-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1.5rem;
	margin-top: 0.25rem;
	animation: ta-lux-fade-up 1.2s 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.page-home .ta-lux-btn-primary {
	font-size: 0.6875rem;
	font-weight: 400;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	background: var(--lux-white);
	color: var(--lux-navy);
	border: none;
	padding: 1.2rem 2.75rem;
	line-height: 1.35;
	text-decoration: none;
	display: inline-block;
	transition: background 0.2s ease, color 0.2s ease;
}

.page-home .ta-lux-btn-primary:hover {
	background: var(--lux-gold-light);
	color: var(--lux-navy);
}

.page-home .ta-lux-btn-ghost {
	font-size: 0.6875rem;
	font-weight: 400;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	background: transparent;
	color: rgba(255, 255, 255, 0.75);
	border: 1px solid rgba(255, 255, 255, 0.3);
	/* Match visual height to primary (1px border) */
	padding: calc(1.2rem - 1px) 2.65rem;
	line-height: 1.35;
	text-decoration: none;
	display: inline-block;
	transition: border-color 0.2s ease, color 0.2s ease;
}

.page-home .ta-lux-btn-ghost:hover {
	border-color: rgba(255, 255, 255, 0.7);
	color: var(--lux-white);
}

.page-home .ta-lux-hero__scroll {
	position: absolute;
	bottom: 2rem;
	right: max(1rem, 4vw);
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.625rem;
	pointer-events: none;
	animation: ta-lux-fade-up 1.4s 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.page-home .ta-lux-hero__scroll span {
	font-size: 0.5625rem;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.4);
	writing-mode: vertical-rl;
}

.page-home .ta-lux-scroll-line {
	width: 1px;
	height: 48px;
	background: rgba(255, 255, 255, 0.25);
	position: relative;
	overflow: hidden;
}

.page-home .ta-lux-scroll-line::after {
	content: '';
	position: absolute;
	top: -100%;
	left: 0;
	width: 1px;
	height: 100%;
	background: var(--lux-gold);
	animation: ta-lux-scroll-down 2s ease-in-out infinite;
}

@keyframes ta-lux-fade-up {
	from {
		opacity: 0;
		transform: translateY(36px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes ta-lux-scroll-down {
	0% {
		top: -100%;
	}
	50%,
	100% {
		top: 100%;
	}
}

@media (max-width: 575.98px) {
	.page-home .ta-lux-hero__scroll {
		display: none;
	}
}

/* ——— Stats ——— */
.page-home .ta-lux-stats {
	background: var(--lux-navy);
	padding: 2.35rem max(1.25rem, 4vw);
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0;
}

.page-home .ta-lux-stat {
	flex: 1;
	min-width: 140px;
	max-width: 240px;
	text-align: center;
	padding: 0.35rem 1.5rem 0.5rem;
	border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.page-home .ta-lux-stat:last-child {
	border-right: none;
}

.page-home .ta-lux-stat__num {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: clamp(2.85rem, 6.5vw, 4.25rem);
	font-weight: 700;
	color: #ffffff;
	letter-spacing: -0.02em;
	line-height: 1.05;
	text-shadow: 0 0.15rem 1.75rem rgba(0, 0, 0, 0.22);
	font-variant-numeric: tabular-nums;
}

.page-home .ta-lux-stat__value {
	display: inline-block;
	min-width: 0.6em;
	transition: transform 0.35s ease;
}

.page-home .ta-lux-stats.is-stats-active .ta-lux-stat__value {
	animation: ta-lux-stat-pop 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.page-home .ta-lux-stat:nth-child(1) .ta-lux-stat__value {
	animation-delay: 0.05s;
}

.page-home .ta-lux-stat:nth-child(2) .ta-lux-stat__value {
	animation-delay: 0.12s;
}

.page-home .ta-lux-stat:nth-child(3) .ta-lux-stat__value {
	animation-delay: 0.19s;
}

.page-home .ta-lux-stat:nth-child(4) .ta-lux-stat__value {
	animation-delay: 0.26s;
}

@keyframes ta-lux-stat-pop {
	from {
		opacity: 0.65;
		transform: translateY(10px) scale(0.96);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.page-home .ta-lux-stat__label {
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.58);
	margin-top: 0.65rem;
	line-height: 1.35;
}

@media (max-width: 600px) {
	.page-home .ta-lux-stat {
		min-width: 45%;
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		padding: 1rem;
	}
}

/* ——— Section labels ——— */
.page-home .ta-lux-section-label {
	font-size: 0.6875rem;
	font-weight: 400;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--lux-gold);
	margin-bottom: 1rem;
}

.page-home .ta-lux-section-title {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: clamp(2rem, 3.8vw, 3rem);
	font-weight: 400;
	color: var(--lux-navy);
	line-height: 1.2;
}

/* ——— About ——— */
.page-home .ta-lux-about {
	padding: clamp(4rem, 12vw, 7.5rem) max(1.25rem, 4vw);
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(3rem, 8vw, 5rem);
	align-items: center;
}

.page-home .ta-lux-about__title {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: clamp(1.75rem, 3.5vw, 2.875rem);
	font-weight: 400;
	line-height: 1.2;
	color: var(--lux-navy);
	margin-bottom: 1.75rem;
}

.page-home .ta-lux-about__body {
	font-size: 0.9375rem;
	font-weight: 300;
	line-height: 1.82;
	color: var(--lux-body);
	margin-top: 0;
	margin-bottom: 1.35rem;
	padding-top: 0.1em;
	padding-bottom: 0.1em;
}

.page-home .ta-lux-about__link {
	font-size: 0.6875rem;
	font-weight: 400;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--lux-navy);
	text-decoration: none;
	border-bottom: 1px solid var(--lux-navy);
	padding-bottom: 2px;
	transition: color 0.2s ease, border-color 0.2s ease;
}

.page-home .ta-lux-about__link:hover {
	color: var(--lux-gold);
	border-color: var(--lux-gold);
}

.page-home .ta-lux-about__visual {
	position: relative;
}

.page-home .ta-lux-about__img-main {
	width: 100%;
	aspect-ratio: 4 / 5;
	background: var(--lux-navy);
	position: relative;
	overflow: hidden;
}

.page-home .ta-lux-about__img-inner {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #2e4158 0%, #1a2b40 50%, #3d5472 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.page-home .ta-lux-about__img-inner svg {
	opacity: 0.12;
}

.page-home .ta-lux-about__tag {
	position: absolute;
	top: 2rem;
	right: -1.25rem;
	background: var(--lux-white);
	padding: 1rem 1.25rem;
	border-left: 3px solid var(--lux-gold);
	box-shadow: 0 0.5rem 2rem rgba(46, 65, 88, 0.12);
}

.page-home .ta-lux-about__tag p {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 1.75rem;
	font-weight: 500;
	color: var(--lux-navy-mid);
	line-height: 1;
	margin: 0;
}

.page-home .ta-lux-about__tag span {
	font-size: 0.5625rem;
	font-weight: 300;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--lux-text-muted);
}

.page-home .ta-lux-about__accent {
	position: absolute;
	bottom: -2rem;
	left: -2rem;
	width: 55%;
	aspect-ratio: 1;
	background: var(--lux-off-white);
	border: 6px solid var(--lux-white);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.page-home .ta-lux-about__accent-inner {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(201, 169, 110, 0.15), rgba(46, 65, 88, 0.12));
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (max-width: 900px) {
	.page-home .ta-lux-about {
		grid-template-columns: 1fr;
	}

	.page-home .ta-lux-about__tag {
		right: 0;
	}
}

/* ——— Products grid ——— */
.page-home .ta-lux-products {
	padding: clamp(4rem, 10vw, 6.25rem) max(1.25rem, 4vw);
	background: var(--lux-off-white);
}

.page-home .ta-lux-products__header {
	text-align: center;
	margin-bottom: 4rem;
}

.page-home .ta-lux-products__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2px;
	max-width: 1200px;
	margin: 0 auto;
}

.page-home .ta-lux-product-card {
	background: var(--lux-white);
	padding: 2.75rem 2rem 2.25rem;
	position: relative;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	transition: background 0.35s ease;
}

.page-home .ta-lux-product-card::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--lux-navy);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.35s ease;
}

.page-home .ta-lux-product-card:hover {
	background: var(--lux-navy);
}

.page-home .ta-lux-product-card:hover::before {
	transform: scaleX(1);
}

.page-home .ta-lux-product-card__num {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 1.0625rem;
	font-weight: 600;
	color: var(--lux-navy);
	letter-spacing: 0.14em;
	margin-bottom: 1.25rem;
	line-height: 1;
	transition: color 0.35s ease;
}

.page-home .ta-lux-product-card__icon {
	width: 48px;
	height: 48px;
	border: 1px solid var(--lux-warm-gray);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.35rem;
	flex-shrink: 0;
	transition:
		color 0.35s ease,
		border-color 0.35s ease;
	color: var(--lux-navy);
}

.page-home .ta-lux-product-card__title {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--lux-navy);
	margin-bottom: 0.625rem;
	transition: color 0.35s ease;
	line-height: 1.2;
}

.page-home .ta-lux-product-card__body {
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.65;
	color: var(--lux-body);
	transition: color 0.35s ease;
	margin-top: 0;
	padding-top: 0;
	padding-bottom: 0;
	flex-grow: 1;
}

.page-home .ta-lux-product-card__arrow {
	margin-top: auto;
	padding-top: 1.5rem;
	font-size: 1.25rem;
	line-height: 1;
	color: var(--lux-navy);
	opacity: 0.45;
	flex-shrink: 0;
	transition:
		opacity 0.35s ease,
		color 0.35s ease;
}

.page-home .ta-lux-product-card:hover .ta-lux-product-card__num {
	color: var(--lux-gold-light);
}

.page-home .ta-lux-product-card:hover .ta-lux-product-card__icon {
	color: var(--lux-gold-light);
	border-color: rgba(255, 255, 255, 0.15);
}

.page-home .ta-lux-product-card:hover .ta-lux-product-card__title {
	color: var(--lux-white);
}

.page-home .ta-lux-product-card:hover .ta-lux-product-card__body {
	color: rgba(255, 255, 255, 0.92);
	font-weight: 500;
}

.page-home .ta-lux-product-card:hover .ta-lux-product-card__arrow {
	color: var(--lux-gold-light);
	opacity: 1;
}

.page-home .ta-lux-products__cta {
	text-align: center;
	margin-top: 3.25rem;
}

.page-home .ta-lux-btn-outline {
	font-size: 0.6875rem;
	font-weight: 400;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	background: transparent;
	color: var(--lux-navy);
	border: 1px solid var(--lux-navy);
	padding: 0.9375rem 2.75rem;
	text-decoration: none;
	display: inline-block;
	transition:
		background 0.2s ease,
		color 0.2s ease;
}

.page-home .ta-lux-btn-outline:hover {
	background: var(--lux-navy);
	color: var(--lux-white);
}

@media (max-width: 900px) {
	.page-home .ta-lux-products__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.page-home .ta-lux-products__grid {
		grid-template-columns: 1fr;
	}
}

/* ——— Why ——— */
.page-home .ta-lux-why {
	padding: clamp(4rem, 12vw, 7.5rem) max(1.25rem, 4vw);
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: clamp(3rem, 8vw, 6.25rem);
	align-items: start;
}

.page-home .ta-lux-why__sticky {
	position: sticky;
	top: 6rem;
}

.page-home .ta-lux-why__intro {
	font-size: 0.875rem;
	font-weight: 300;
	line-height: 1.8;
	color: var(--lux-body-soft);
	margin-top: 1.25rem;
}

.page-home .ta-lux-why-point {
	padding: 2rem 0;
	border-bottom: 1px solid var(--lux-warm-gray);
	display: grid;
	grid-template-columns: 40px 1fr;
	gap: 1.5rem;
	align-items: start;
}

.page-home .ta-lux-why-point:first-of-type {
	border-top: 1px solid var(--lux-warm-gray);
}

.page-home .ta-lux-why-point__num {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 0.8125rem;
	font-weight: 500;
	color: var(--lux-navy-mid);
	padding-top: 3px;
}

.page-home .ta-lux-why-point__title {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 1.25rem;
	font-weight: 500;
	color: var(--lux-navy);
	margin-bottom: 0.5rem;
}

.page-home .ta-lux-why-point__body {
	font-size: 0.875rem;
	font-weight: 300;
	line-height: 1.78;
	color: var(--lux-body-soft);
	margin: 0;
	padding-top: 0.2em;
	padding-bottom: 0.35em;
}

@media (max-width: 900px) {
	.page-home .ta-lux-why {
		grid-template-columns: 1fr;
	}

	.page-home .ta-lux-why__sticky {
		position: static;
	}
}

/* ——— Gallery ——— */
.page-home .ta-lux-gallery {
	padding: clamp(4rem, 10vw, 6.25rem) max(1.25rem, 4vw);
	background: var(--lux-navy);
}

.page-home .ta-lux-gallery .ta-lux-section-label {
	color: var(--lux-gold-light);
}

.page-home .ta-lux-gallery .ta-lux-section-title {
	color: var(--lux-white);
}

.page-home .ta-lux-gallery__header {
	text-align: center;
	margin-bottom: 4rem;
}

.page-home .ta-lux-gallery__grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr;
	grid-template-rows: auto auto;
	gap: 4px;
	max-width: 1200px;
	margin: 0 auto;
}

.page-home .ta-lux-gallery__cell {
	position: relative;
	overflow: hidden;
}

.page-home .ta-lux-gallery__inner {
	width: 100%;
	padding-top: 75%;
	position: relative;
	overflow: hidden;
	transition: transform 0.5s ease;
}

.page-home .ta-lux-gallery__cell:hover .ta-lux-gallery__inner {
	transform: scale(1.03);
}

.page-home .ta-lux-gallery__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: transform 0.5s ease;
}

.page-home .ta-lux-gallery__cell:hover .ta-lux-gallery__bg {
	transform: scale(1.05);
}

.page-home .ta-lux-gallery__label {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 1.25rem 1.25rem 1rem;
	background: linear-gradient(to top, rgba(15, 24, 38, 0.85), transparent);
	font-size: 0.6875rem;
	font-weight: 300;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.75);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.page-home .ta-lux-gallery__cell:hover .ta-lux-gallery__label {
	opacity: 1;
}

.page-home .ta-lux-gallery__cell--hero {
	grid-column: 1;
	grid-row: 1 / 3;
}

.page-home .ta-lux-gallery__cell--hero .ta-lux-gallery__inner {
	padding-top: 0;
	height: 100%;
	min-height: 400px;
}

@media (max-width: 900px) {
	.page-home .ta-lux-gallery__grid {
		grid-template-columns: 1fr 1fr;
	}

	.page-home .ta-lux-gallery__cell--hero {
		grid-column: auto;
		grid-row: auto;
	}

	.page-home .ta-lux-gallery__cell--hero .ta-lux-gallery__inner {
		min-height: 0;
		padding-top: 80%;
		height: auto;
	}
}

@media (max-width: 600px) {
	.page-home .ta-lux-gallery__grid {
		grid-template-columns: 1fr;
	}
}

/* ——— CTA strip ——— */
.page-home .ta-lux-cta {
	padding: clamp(4rem, 10vw, 6.25rem) max(1.25rem, 4vw);
	background: var(--lux-off-white);
	text-align: center;
}

.page-home .ta-lux-cta__title {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: clamp(2rem, 4vw, 3.375rem);
	font-weight: 300;
	color: var(--lux-navy);
	line-height: 1.2;
	margin-bottom: 1rem;
}

.page-home .ta-lux-cta__title em {
	font-style: italic;
	color: var(--lux-navy-mid);
}

.page-home .ta-lux-cta__body {
	font-size: 1rem;
	font-weight: 300;
	color: var(--lux-body-soft);
	margin-bottom: 2.75rem;
	max-width: 29rem;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.75;
	padding-top: 0.25em;
	padding-bottom: 0.35em;
}

.page-home .ta-lux-cta__actions {
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.page-home .ta-lux-btn-filled {
	font-size: 0.6875rem;
	font-weight: 400;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	background: var(--lux-navy);
	color: var(--lux-white);
	border: 1px solid var(--lux-navy);
	padding: 1rem 2.75rem;
	text-decoration: none;
	display: inline-block;
	transition: background 0.2s ease;
}

.page-home .ta-lux-btn-filled:hover {
	background: var(--lux-navy-dark);
	color: var(--lux-white);
}

/* ——— Footer lux ——— */
.site-footer.site-footer--lux {
	background: var(--lux-navy-dark);
	border-top: none;
	color: rgba(255, 255, 255, 0.55);
	margin-top: 0;
}

.site-footer.site-footer--lux .ta-lux-footer__wordmark {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 1.625rem;
	font-weight: 600;
	color: var(--lux-white);
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.site-footer.site-footer--lux .ta-lux-footer__tagline {
	font-size: 0.6875rem;
	font-weight: 400;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
	margin-top: 0.25rem;
	margin-bottom: 1.25rem;
}

.site-footer.site-footer--lux .ta-lux-footer__lead {
	font-size: 0.9375rem;
	font-weight: 400;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.58);
	margin-bottom: 1rem !important;
}

.site-footer.site-footer--lux .ta-lux-footer__credit {
	margin-top: 0.25rem;
	font-size: 0.8125rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	color: rgba(255, 255, 255, 0.88);
	line-height: 1.5;
}

.site-footer.site-footer--lux .ta-lux-footer__credit a {
	color: var(--lux-gold-light);
	font-weight: 600;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.2em;
}

.site-footer.site-footer--lux .ta-lux-footer__credit a:hover {
	color: var(--lux-white);
}

.site-footer.site-footer--lux .ta-lux-footer__col-title {
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
	margin-bottom: 1.25rem;
}

.site-footer.site-footer--lux ul.list-unstyled.small {
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.55;
}

.site-footer.site-footer--lux .ta-lux-footer__top > .row > div > .small {
	font-size: 1rem;
	line-height: 1.55;
}

.site-footer.site-footer--lux a {
	color: rgba(255, 255, 255, 0.68);
	text-decoration: none;
	transition: color 0.2s ease;
}

.site-footer.site-footer--lux a:hover {
	color: var(--lux-white);
}

.site-footer.site-footer--lux hr {
	border-color: rgba(255, 255, 255, 0.08);
	opacity: 1;
}

.site-footer.site-footer--lux .ta-lux-footer__bottom {
	font-size: 0.8125rem;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.38);
}

.site-footer.site-footer--lux .ta-lux-footer__bottom .ta-lux-footer__credit {
	margin-top: 0;
}

.site-footer.site-footer--lux .ta-lux-footer__top {
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer.site-footer--lux .ta-lux-footer__meta-label {
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.18em;
	color: rgba(255, 255, 255, 0.42);
}

.site-footer.site-footer--lux .ta-lux-footer__meta-value {
	color: rgba(255, 255, 255, 0.78);
	font-weight: 400;
}

/* ——— FAB on home ——— */
.page-home .fab-btn--call {
	background: var(--lux-navy);
}

.page-home .fab-btn--call:hover {
	background: var(--lux-navy-dark);
	color: #fff;
}

/* Gallery placeholder textures (reference mockup) */
.page-home .ta-lux-gallery__bg--bath {
	background-color: #1e3248;
	background-image: repeating-linear-gradient(
		45deg,
		rgba(255, 255, 255, 0.02) 0,
		rgba(255, 255, 255, 0.02) 1px,
		transparent 1px,
		transparent 30px
	);
}

.page-home .ta-lux-gallery__bg--kitchen {
	background-color: #2a4060;
	background-image: repeating-linear-gradient(
		0deg,
		rgba(255, 255, 255, 0.03) 0,
		rgba(255, 255, 255, 0.03) 1px,
		transparent 1px,
		transparent 20px
	);
}

.page-home .ta-lux-gallery__bg--living {
	background-color: #243850;
	background-image: repeating-linear-gradient(
		90deg,
		rgba(255, 255, 255, 0.03) 0,
		rgba(255, 255, 255, 0.03) 1px,
		transparent 1px,
		transparent 20px
	);
}

.page-home .ta-lux-gallery__bg--outdoor {
	background-color: #354e68;
	background-image: repeating-linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.03) 0,
		rgba(255, 255, 255, 0.03) 1px,
		transparent 1px,
		transparent 25px
	);
}

.page-home .ta-lux-gallery__bg--featured {
	background-color: #1c2e42;
	background-image: repeating-linear-gradient(
		45deg,
		rgba(201, 169, 110, 0.06) 0,
		rgba(201, 169, 110, 0.06) 1px,
		transparent 1px,
		transparent 25px
	);
}

@media (prefers-reduced-motion: reduce) {
	.page-home .ta-lux-stats.is-stats-active .ta-lux-stat__value {
		animation: none;
	}
}
