/**
 * Lux Golf Simulator — Homepage sections
 */

/* Hide default WoodMart page title on custom homepage */
.lux-home .page-title,
.lux-home .wd-page-title {
	display: none;
}

.lux-home {
	overflow-x: hidden;
}

/* ── Hero (immersive / video variant only — not .lux-hero--pro) ── */
.lux-hero:not(.lux-hero--pro) {
	position: relative;
	min-height: clamp(520px, 85vh, 780px);
	display: flex;
	align-items: center;
	background: var(--lux-charcoal);
	color: var(--lux-white);
	overflow: hidden;
}

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

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

.lux-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		105deg,
		rgba(10, 10, 10, 0.92) 0%,
		rgba(10, 10, 10, 0.75) 45%,
		rgba(10, 10, 10, 0.35) 100%
	);
	z-index: 1;
}

.lux-hero__content {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: var(--lux-container);
	margin: 0 auto;
	padding: 4rem 1.5rem;
}

.lux-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--lux-gold);
	margin-bottom: 1.25rem;
}

.lux-hero__eyebrow::before {
	content: '';
	width: 32px;
	height: 1px;
	background: var(--lux-gold);
}

.lux-hero__title {
	font-size: clamp(2.25rem, 5.5vw, 3.75rem);
	font-weight: 700;
	line-height: 1.08;
	margin: 0 0 1.25rem;
	max-width: 14ch;
}

.lux-hero__subtitle {
	font-size: clamp(1rem, 2vw, 1.25rem);
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.78);
	max-width: 540px;
	margin: 0 0 2rem;
}

.lux-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 2.5rem;
}

.lux-hero__trust {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 1.75rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.lux-hero__trust-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.8125rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.7);
}

.lux-hero__trust-icon {
	color: var(--lux-gold);
	display: flex;
}

.lux-hero__trust-icon svg {
	width: 16px;
	height: 16px;
}

/* Placeholder hero background when no image uploaded */
.lux-hero__placeholder {
	background:
		linear-gradient(135deg, rgba(26, 92, 58, 0.3) 0%, transparent 50%),
		linear-gradient(225deg, rgba(201, 162, 39, 0.08) 0%, transparent 40%),
		repeating-linear-gradient(
			90deg,
			transparent,
			transparent 80px,
			rgba(255, 255, 255, 0.02) 80px,
			rgba(255, 255, 255, 0.02) 81px
		),
		var(--lux-gray-900);
}

/* ── Categories ── */
.lux-categories__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 1.25rem;
}

.lux-category-card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 220px;
	padding: 1.5rem;
	background: var(--lux-white);
	border: 1px solid var(--lux-gray-300);
	border-radius: var(--lux-radius-lg);
	text-decoration: none;
	color: inherit;
	overflow: hidden;
	transition: border-color var(--lux-transition), box-shadow var(--lux-transition), transform var(--lux-transition);
}

.lux-category-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(10, 10, 10, 0.04), transparent 60%);
	opacity: 0;
	transition: opacity var(--lux-transition);
}

.lux-category-card:hover {
	border-color: var(--lux-green);
	box-shadow: var(--lux-shadow-md);
	transform: translateY(-3px);
}

.lux-category-card:hover::before {
	opacity: 1;
}

.lux-category-card__icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--lux-green-muted);
	color: var(--lux-green);
	border-radius: var(--lux-radius-md);
	margin-bottom: auto;
	font-size: 1.25rem;
}

.lux-category-card__title {
	font-family: var(--lux-font-display);
	font-size: 1.125rem;
	font-weight: 600;
	margin: 0 0 0.375rem;
	position: relative;
}

.lux-category-card__desc {
	font-size: 0.875rem;
	color: var(--lux-gray-500);
	margin: 0;
	position: relative;
}

.lux-category-card--has-image {
	min-height: 260px;
	color: #fff;
	border: none;
}

.lux-category-card--has-image::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image: var(--lux-cat-bg);
	background-size: cover;
	background-position: center;
	z-index: 0;
	transition: transform 0.5s ease;
}

.lux-category-card--has-image:hover::after {
	transform: scale(1.05);
}

.lux-category-card--has-image::before {
	z-index: 1;
	background: linear-gradient(
		to top,
		rgba(6, 10, 8, 0.98) 0%,
		rgba(6, 10, 8, 0.92) 28%,
		rgba(6, 10, 8, 0.55) 52%,
		rgba(6, 10, 8, 0.2) 78%,
		rgba(6, 10, 8, 0.08) 100%
	);
	opacity: 1;
}

.lux-category-card--has-image .lux-category-card__icon {
	background: rgba(255, 255, 255, 0.18);
	color: #fff;
	backdrop-filter: blur(4px);
}

.lux-category-card--has-image .lux-category-card__title {
	color: #fff;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.65);
}

.lux-category-card--has-image .lux-category-card__desc {
	color: rgba(255, 255, 255, 0.95);
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
}

.lux-category-card--has-image .lux-category-card__count {
	color: var(--lux-gold);
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.lux-category-card--has-image .lux-category-card__arrow {
	color: rgba(255, 255, 255, 0.5);
}

.lux-category-card--has-image:hover {
	border-color: transparent;
}

.lux-category-card--has-image .lux-category-card__icon,
.lux-category-card--has-image .lux-category-card__title,
.lux-category-card--has-image .lux-category-card__desc,
.lux-category-card--has-image .lux-category-card__count,
.lux-category-card--has-image .lux-category-card__arrow {
	position: relative;
	z-index: 2;
}

.lux-category-card__icon svg {
	width: 28px;
	height: 28px;
}

.lux-category-card__count {
	display: block;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--lux-green);
	margin-top: 0.5rem;
	position: relative;
}

.lux-category-card__arrow {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	color: var(--lux-gray-300);
	transition: color var(--lux-transition), transform var(--lux-transition);
	z-index: 1;
}

.lux-category-card:hover .lux-category-card__arrow {
	color: var(--lux-green);
	transform: translateX(3px);
}

/* ── Products ── */
.lux-products__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1.5rem;
}

.lux-product-card {
	display: flex;
	flex-direction: column;
	background: var(--lux-white);
	border: 1px solid var(--lux-gray-300);
	border-radius: var(--lux-radius-lg);
	overflow: hidden;
	transition: box-shadow var(--lux-transition), transform var(--lux-transition);
}

.lux-product-card:hover {
	box-shadow: var(--lux-shadow-md);
	transform: translateY(-2px);
}

.lux-product-card__image-wrap {
	position: relative;
	aspect-ratio: 4 / 3;
	background: var(--lux-gray-100);
	overflow: hidden;
}

.lux-product-card__image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.lux-product-card:hover .lux-product-card__image-wrap img {
	transform: scale(1.04);
}

.lux-product-card__image-wrap .lux-branded-image {
	display: block;
	width: 100%;
	height: 100%;
	background: #f7f5ef;
	position: relative;
	overflow: hidden;
}

.lux-product-card__image-wrap .lux-branded-image__crop {
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.lux-product-card__image-wrap .lux-branded-image__photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 20%;
	transform: scale(1.06);
	transition: transform 0.4s ease;
}

.lux-product-card:hover .lux-branded-image__photo {
	transform: scale(1.1);
}

.lux-product-card__image-wrap .lux-branded-image__header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	min-height: 1.75rem;
	padding: 0.35rem 0.55rem;
	background: #faf9f6;
	border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.lux-product-card__image-wrap .lux-branded-image__logo {
	height: 1rem;
	width: auto;
	max-width: 7rem;
	object-fit: contain;
}

.lux-product-card__badges {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.375rem;
}

.lux-product-card__body {
	padding: 1.25rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.lux-product-card__title {
	font-family: var(--lux-font-display);
	font-size: 1rem;
	font-weight: 600;
	margin: 0 0 0.5rem;
	line-height: 1.35;
}

.lux-product-card__title a {
	color: var(--lux-black);
	text-decoration: none;
}

.lux-product-card__title a:hover {
	color: var(--lux-green);
}

.lux-product-card__rating {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
	font-size: 0.8125rem;
	color: var(--lux-gray-500);
}

.lux-product-card__price {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--lux-black);
	margin-bottom: 0.75rem;
}

.lux-product-card__price del {
	font-size: 0.875rem;
	font-weight: 400;
	color: var(--lux-gray-500);
	margin-right: 0.375rem;
}

.lux-product-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.375rem;
	margin-top: auto;
}

.lux-products__footer {
	text-align: center;
	margin-top: 2.5rem;
}

.lux-products__empty {
	text-align: center;
	padding: 3rem;
	background: var(--lux-white);
	border: 1px dashed var(--lux-gray-300);
	border-radius: var(--lux-radius-lg);
	color: var(--lux-gray-500);
}

/* ── Why Choose Us ── */
.lux-benefits__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 1.5rem;
}

.lux-benefit {
	padding: 1.75rem;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--lux-radius-lg);
	transition: background var(--lux-transition), border-color var(--lux-transition);
}

.lux-benefit:hover {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(201, 162, 39, 0.3);
}

.lux-benefit__icon {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(201, 162, 39, 0.12);
	color: var(--lux-gold);
	border-radius: var(--lux-radius-md);
	margin-bottom: 1rem;
}

.lux-benefit__icon svg {
	width: 22px;
	height: 22px;
}

.lux-benefit__title {
	font-family: var(--lux-font-display);
	font-size: 1.0625rem;
	font-weight: 600;
	margin: 0 0 0.5rem;
}

.lux-benefit__text {
	font-size: 0.875rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.6);
	margin: 0;
}

/* ── Buying Guide ── */
.lux-guides__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1.5rem;
}

.lux-guide-card {
	display: flex;
	flex-direction: column;
	background: var(--lux-white);
	border: 1px solid var(--lux-gray-300);
	border-radius: var(--lux-radius-lg);
	text-decoration: none;
	color: inherit;
	overflow: hidden;
	transition: border-color var(--lux-transition), box-shadow var(--lux-transition), transform var(--lux-transition);
}

.lux-guide-card:hover {
	border-color: var(--lux-green);
	box-shadow: var(--lux-shadow-md);
	transform: translateY(-3px);
}

.lux-guide-card__media {
	position: relative;
	aspect-ratio: 16 / 10;
	background: var(--lux-gray-100);
	overflow: hidden;
}

.lux-guide-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.45s ease;
}

.lux-guide-card:hover .lux-guide-card__media img {
	transform: scale(1.05);
}

.lux-guide-card__media::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(8, 12, 10, 0.55) 0%, transparent 55%);
	pointer-events: none;
}

.lux-guide-card__icon {
	position: absolute;
	top: 0.85rem;
	left: 0.85rem;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.95);
	color: var(--lux-green);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
	backdrop-filter: blur(6px);
}

.lux-guide-card__icon svg {
	width: 22px;
	height: 22px;
}

.lux-guide-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 1.35rem 1.5rem 1.5rem;
}

.lux-guide-card__title {
	font-family: var(--lux-font-display);
	font-size: 1.0625rem;
	font-weight: 600;
	margin: 0 0 0.625rem;
	color: var(--lux-black);
	line-height: 1.35;
}

.lux-guide-card__excerpt {
	font-size: 0.875rem;
	line-height: 1.6;
	color: var(--lux-gray-500);
	margin: 0 0 1rem;
	flex: 1;
}

.lux-guide-card__link {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--lux-green);
	margin-top: auto;
}

/* ── Testimonials ── */
.lux-testimonials__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 1.5rem;
}

.lux-testimonial {
	padding: 2rem;
	background: var(--lux-white);
	border: 1px solid var(--lux-gray-300);
	border-radius: var(--lux-radius-lg);
}

.lux-testimonial__stars {
	margin-bottom: 1rem;
}

.lux-testimonial__text {
	font-size: 1rem;
	line-height: 1.65;
	color: var(--lux-gray-700);
	margin: 0 0 1.5rem;
	font-style: italic;
}

.lux-testimonial__author {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.lux-testimonial__name {
	font-weight: 600;
	font-size: 0.9375rem;
	margin: 0;
	color: var(--lux-black);
}

.lux-testimonial__location {
	font-size: 0.8125rem;
	color: var(--lux-gray-500);
	margin: 0.125rem 0 0;
}

.lux-testimonial__verified {
	font-size: 0.6875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--lux-green);
}

/* ── Blog ── */
.lux-blog__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 1.5rem;
}

.lux-blog-card {
	display: flex;
	flex-direction: column;
	background: var(--lux-white);
	border: 1px solid var(--lux-gray-300);
	border-radius: var(--lux-radius-lg);
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: box-shadow var(--lux-transition);
}

.lux-blog-card:hover {
	box-shadow: var(--lux-shadow-md);
}

.lux-blog-card__image {
	aspect-ratio: 16 / 9;
	background: var(--lux-gray-100);
	overflow: hidden;
}

.lux-blog-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lux-blog-card__body {
	padding: 1.5rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.lux-blog-card__date {
	font-size: 0.75rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--lux-gray-500);
	margin-bottom: 0.5rem;
}

.lux-blog-card__title {
	font-family: var(--lux-font-display);
	font-size: 1.125rem;
	font-weight: 600;
	margin: 0 0 0.625rem;
	line-height: 1.35;
	color: var(--lux-black);
}

.lux-blog-card__excerpt {
	font-size: 0.875rem;
	line-height: 1.6;
	color: var(--lux-gray-500);
	margin: 0;
	flex: 1;
}

.lux-blog__placeholder {
	grid-column: 1 / -1;
	text-align: center;
	padding: 3rem;
	background: var(--lux-white);
	border: 1px dashed var(--lux-gray-300);
	border-radius: var(--lux-radius-lg);
}

/* ── CTA Banner ── */
.lux-cta {
	background: linear-gradient(135deg, var(--lux-green) 0%, #0f3d24 100%);
	color: var(--lux-white);
	text-align: center;
}

.lux-cta__inner {
	max-width: 640px;
	margin: 0 auto;
}

.lux-cta__title {
	font-size: clamp(1.5rem, 3vw, 2rem);
	margin: 0 0 1rem;
}

.lux-cta__text {
	font-size: 1.0625rem;
	line-height: 1.6;
	opacity: 0.9;
	margin: 0 0 1.75rem;
}

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

.lux-cta .lux-btn--secondary {
	border-color: rgba(255, 255, 255, 0.5);
}

/* ── Partners bar ── */
.lux-partners {
	padding: clamp(2rem, 4vw, 2.75rem) 0;
	background: linear-gradient(180deg, #0b0b0b 0%, #121212 100%);
	border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.lux-partners__head {
	text-align: center;
	margin-bottom: 1.75rem;
}

.lux-partners__label {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: var(--lux-gold);
	margin: 0 0 0.5rem;
}

.lux-partners__lead {
	margin: 0 auto;
	font-size: 0.9375rem;
	color: rgba(255, 255, 255, 0.62);
	max-width: 520px;
	line-height: 1.5;
}

.lux-partners__grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 0.75rem;
}

.lux-partners__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	min-height: 118px;
	padding: 1rem 0.65rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--lux-radius-lg);
	text-decoration: none;
	color: rgba(255, 255, 255, 0.92);
	text-align: center;
	transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.lux-partners__card:hover {
	background: rgba(26, 92, 58, 0.2);
	border-color: rgba(46, 204, 113, 0.4);
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
	color: #fff;
}

.lux-partners__logo-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 46px;
	padding: 0.55rem 0.65rem;
	background: #fff;
	border-radius: 10px;
	box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.08);
}

.lux-partners__logo {
	display: block;
	max-width: 100%;
	max-height: 36px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.lux-partners__card--has-logo {
	gap: 0.45rem;
}

.lux-partners__card--has-logo:hover .lux-partners__logo-wrap {
	box-shadow: inset 0 0 0 1px rgba(46, 204, 113, 0.35), 0 4px 14px rgba(0, 0, 0, 0.12);
}

.lux-partners__monogram {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 999px;
	font-size: 0.6875rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	background: linear-gradient(135deg, var(--lux-green) 0%, #0f3d24 100%);
	color: #fff;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
	flex-shrink: 0;
}

.lux-partners__card--trackman .lux-partners__monogram { background: linear-gradient(135deg, #e85d04 0%, #9a3412 100%); }
.lux-partners__card--foresight .lux-partners__monogram { background: linear-gradient(135deg, #2563eb 0%, #1e3a8a 100%); }
.lux-partners__card--skytrak .lux-partners__monogram { background: linear-gradient(135deg, #059669 0%, #065f46 100%); }
.lux-partners__card--garmin .lux-partners__monogram { background: linear-gradient(135deg, #0284c7 0%, #0c4a6e 100%); }
.lux-partners__card--uneekor .lux-partners__monogram { background: linear-gradient(135deg, #7c3aed 0%, #4c1d95 100%); }
.lux-partners__card--flightscope .lux-partners__monogram { background: linear-gradient(135deg, #dc2626 0%, #7f1d1d 100%); }
.lux-partners__card--gspro .lux-partners__monogram { background: linear-gradient(135deg, #16a34a 0%, #14532d 100%); }
.lux-partners__card--optoma .lux-partners__monogram,
.lux-partners__card--benq .lux-partners__monogram { background: linear-gradient(135deg, #475569 0%, #1e293b 100%); }

.lux-partners__name {
	font-family: var(--lux-font-display);
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1.25;
	word-break: break-word;
	hyphens: auto;
}

.lux-partners__count {
	font-size: 0.625rem;
	font-weight: 600;
	color: var(--lux-gold-light);
	line-height: 1.2;
	opacity: 0.9;
}

@media (max-width: 1100px) {
	.lux-partners__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.lux-partners__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 0.65rem;
	}

	.lux-partners__card {
		min-height: 108px;
		padding: 0.85rem 0.5rem;
	}
}

@media (max-width: 520px) {
	.lux-partners__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.lux-packages .lux-product-card {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(255, 255, 255, 0.1);
}

.lux-packages .lux-product-card__title a {
	color: var(--lux-white);
}

.lux-packages .lux-product-card__title a:hover {
	color: var(--lux-gold);
}

.lux-packages .lux-product-card__price {
	color: var(--lux-white);
}

.lux-packages .lux-product-card__price del {
	color: rgba(255, 255, 255, 0.45);
}

/* ── About section ── */
.lux-about {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 520px;
	background: var(--lux-white);
}

.lux-about__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(2.5rem, 5vw, 4.5rem);
	max-width: 640px;
	margin-left: auto;
}

.lux-about__eyebrow {
	font-size: 0.8125rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--lux-black);
	margin: 0 0 1rem;
}

.lux-about__title {
	font-size: clamp(1.5rem, 2.8vw, 2rem);
	font-weight: 700;
	line-height: 1.25;
	margin: 0 0 1.25rem;
	color: var(--lux-black);
}

.lux-about__text {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--lux-gray-700);
	margin: 0 0 2rem;
}

.lux-about__features {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.25rem 1.5rem;
	list-style: none;
	margin: 0 0 2rem;
	padding: 0;
}

.lux-about__feature {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0.65rem;
}

.lux-about__feature-icon {
	color: var(--lux-black);
	display: flex;
}

.lux-about__feature-label {
	font-size: 0.8125rem;
	font-weight: 700;
	line-height: 1.3;
}

.lux-about__cta {
	align-self: flex-start;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: 0.8125rem;
	margin-bottom: 1.25rem;
}

.lux-about__social-proof {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.875rem;
	color: var(--lux-gray-700);
}

.lux-about__social-proof p {
	margin: 0;
}

.lux-about__media {
	position: relative;
	min-height: 360px;
	background: var(--lux-gray-100);
}

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

/* ── Difference (3 pillars) ── */
.lux-difference {
	padding: var(--lux-section-padding) 0;
	background: var(--lux-black);
	color: var(--lux-white);
}

.lux-difference__header {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 2.5rem;
}

.lux-difference__title {
	font-size: clamp(1.375rem, 3vw, 1.875rem);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin: 0 0 0.75rem;
}

.lux-difference__subtitle {
	font-size: 1rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.75);
	margin: 0;
}

.lux-difference__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
}

.lux-difference-card {
	background: var(--lux-white);
	color: var(--lux-black);
	padding: 2rem 1.75rem;
	border-radius: var(--lux-radius-lg);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
	transition: transform var(--lux-transition), box-shadow var(--lux-transition);
}

.lux-difference-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
}

.lux-difference-card__icon {
	width: 56px;
	height: 56px;
	margin-bottom: 1.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	color: #fff;
	box-shadow: 0 8px 24px rgba(26, 92, 58, 0.28);
}

.lux-difference-card__icon svg {
	width: 28px;
	height: 28px;
}

.lux-difference-card--1 .lux-difference-card__icon {
	background: linear-gradient(135deg, #1a5c3a 0%, #0f3d24 100%);
}

.lux-difference-card--2 .lux-difference-card__icon {
	background: linear-gradient(135deg, #c9a227 0%, #9a7b1a 100%);
	box-shadow: 0 8px 24px rgba(201, 162, 39, 0.32);
}

.lux-difference-card--3 .lux-difference-card__icon {
	background: linear-gradient(135deg, #10b981 0%, #1a5c3a 100%);
	box-shadow: 0 8px 24px rgba(16, 185, 129, 0.28);
}

.lux-difference-card__title {
	font-size: 0.9375rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	margin: 0 0 0.875rem;
	line-height: 1.35;
}

.lux-difference-card__text {
	font-size: 0.875rem;
	line-height: 1.65;
	color: var(--lux-gray-700);
	margin: 0;
}

/* ── Blog section (GolfBays style) ── */
.lux-blog-section {
	padding: var(--lux-section-padding) 0;
	background: #f3f3f3;
}

.lux-blog-section__header {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 2.5rem;
}

.lux-blog-section__title {
	font-size: clamp(1.25rem, 2.5vw, 1.625rem);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	margin: 0 0 0.75rem;
}

.lux-blog-section__subtitle {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--lux-gray-700);
	margin: 0;
}

.lux-blog-section__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
}

.lux-blog-section__card {
	display: flex;
	flex-direction: column;
	background: var(--lux-white);
	border: 1px solid var(--lux-gray-300);
	border-radius: var(--lux-radius-lg);
	text-decoration: none;
	color: inherit;
	overflow: hidden;
	transition: box-shadow var(--lux-transition), transform var(--lux-transition);
}

.lux-blog-section__card:hover {
	box-shadow: var(--lux-shadow-md);
	transform: translateY(-3px);
}

.lux-blog-section__card-image {
	position: relative;
	aspect-ratio: 16 / 10;
	background: var(--lux-gray-100);
	overflow: hidden;
}

.lux-blog-section__card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.45s ease;
}

.lux-blog-section__card:hover .lux-blog-section__card-image img {
	transform: scale(1.05);
}

.lux-blog-section__card-image::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(8, 12, 10, 0.4) 0%, transparent 50%);
	pointer-events: none;
}

.lux-blog-section__card-icon {
	position: absolute;
	top: 0.85rem;
	left: 0.85rem;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 11px;
	background: rgba(255, 255, 255, 0.94);
	color: var(--lux-green);
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.lux-blog-section__card-icon svg {
	width: 20px;
	height: 20px;
}

.lux-blog-section__card-body {
	padding: 1.25rem 1.35rem 1.5rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.lux-blog-section__card-date {
	display: block;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--lux-green);
	margin-bottom: 0.5rem;
}

.lux-blog-section__card-title {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.4;
	margin: 0 0 0.75rem;
	color: var(--lux-black);
}

.lux-blog-section__card-excerpt {
	font-size: 0.875rem;
	line-height: 1.6;
	color: var(--lux-gray-700);
	margin: 0 0 1rem;
	flex: 1;
}

.lux-blog-section__read-more {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--lux-black);
	margin-top: auto;
}

/* ── FAQ ── */
.lux-faq {
	position: relative;
	padding: var(--lux-section-padding) 0;
	background: linear-gradient(180deg, #eef3ec 0%, #f3f3f3 42%, #f3f3f3 100%);
	overflow: hidden;
}

.lux-faq__fairway {
	position: absolute;
	inset: 0;
	pointer-events: none;
	opacity: 0.45;
	background:
		repeating-linear-gradient(
			90deg,
			transparent 0,
			transparent 78px,
			rgba(45, 90, 61, 0.06) 78px,
			rgba(45, 90, 61, 0.06) 80px
		),
		linear-gradient(180deg, rgba(45, 90, 61, 0.04) 0%, transparent 35%);
}

.lux-faq__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(260px, 380px) 1fr;
	gap: 3rem;
	align-items: start;
}

.lux-faq__logo {
	display: block;
	height: 40px;
	width: auto;
	margin-bottom: 1.5rem;
}

.lux-faq__title {
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 700;
	margin: 0 0 1rem;
	line-height: 1.15;
}

.lux-faq__lead {
	font-size: 1.0625rem;
	font-weight: 700;
	margin: 0 0 1.5rem;
}

.lux-faq__cta {
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: 0.8125rem;
}

.lux-faq__visual {
	margin: 2rem 0 0;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--lux-shadow-md);
	background: var(--lux-white);
}

.lux-faq__visual-main {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.lux-faq__visual-strip {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2px;
	background: var(--lux-gray-200);
}

.lux-faq__visual-strip img {
	display: block;
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
}

.lux-faq__list {
	border-top: 1px solid rgba(45, 90, 61, 0.15);
	background: rgba(255, 255, 255, 0.72);
	border-radius: 12px;
	padding: 0 1.25rem;
	box-shadow: var(--lux-shadow-sm);
	backdrop-filter: blur(6px);
}

.lux-faq__item {
	border-bottom: 1px solid var(--lux-gray-300);
	background: transparent;
}

.lux-faq__item:last-child {
	border-bottom: 0;
}

.lux-faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.1rem 0;
	font-size: 0.9375rem;
	font-weight: 700;
	cursor: pointer;
	list-style: none;
}

.lux-faq__question::-webkit-details-marker {
	display: none;
}

.lux-faq__question-text {
	flex: 1;
	padding-left: 1.35rem;
	position: relative;
}

.lux-faq__question-text::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.45em;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #2d5a3d;
	box-shadow: 0 0 0 3px rgba(45, 90, 61, 0.15);
}

.lux-faq__toggle {
	position: relative;
	flex-shrink: 0;
	width: 1.75rem;
	height: 1.75rem;
	border-radius: 50%;
	border: 1px solid var(--lux-gray-300);
	display: grid;
	place-items: center;
	transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.lux-faq__toggle::before,
.lux-faq__toggle::after {
	content: '';
	position: absolute;
	width: 10px;
	height: 2px;
	background: var(--lux-gray-600);
	border-radius: 1px;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.lux-faq__toggle::after {
	transform: rotate(90deg);
}

.lux-faq__item[open] .lux-faq__toggle {
	background: #2d5a3d;
	border-color: #2d5a3d;
	transform: rotate(180deg);
}

.lux-faq__item[open] .lux-faq__toggle::before,
.lux-faq__item[open] .lux-faq__toggle::after {
	background: var(--lux-white);
}

.lux-faq__item[open] .lux-faq__toggle::after {
	opacity: 0;
	transform: rotate(0deg);
}

.lux-faq__answer {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.35s ease;
}

.lux-faq__item[open] .lux-faq__answer {
	grid-template-rows: 1fr;
}

.lux-faq__answer > p {
	overflow: hidden;
	min-height: 0;
	margin: 0;
	padding: 0 0 0 1.35rem;
	font-size: 0.875rem;
	line-height: 1.65;
	color: var(--lux-gray-700);
	transition: padding 0.35s ease;
}

.lux-faq__item[open] .lux-faq__answer > p {
	padding-bottom: 1.1rem;
}

/* ── Need Assistance banner ── */
.lux-assistance {
	position: relative;
	padding: 3.5rem 0 4rem;
	background: #222;
	color: var(--lux-white);
	text-align: center;
	overflow: hidden;
}

.lux-assistance__ball {
	position: absolute;
	left: clamp(1rem, 8vw, 6rem);
	bottom: 2.5rem;
	opacity: 0.95;
	pointer-events: none;
}

.lux-assistance__inner {
	position: relative;
	z-index: 1;
}

.lux-assistance__title {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	margin: 0 0 0.5rem;
}

.lux-assistance__text {
	font-size: 1rem;
	opacity: 0.85;
	margin: 0 0 1.75rem;
}

.lux-assistance__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
}

.lux-assistance__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.75rem;
	border: 2px solid var(--lux-white);
	border-radius: 999px;
	color: var(--lux-white);
	text-decoration: none;
	font-size: 0.875rem;
	font-weight: 600;
	transition: background var(--lux-transition), color var(--lux-transition);
}

.lux-assistance__btn:hover {
	background: var(--lux-white);
	color: var(--lux-black);
}

.lux-assistance__grass {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 28px;
	background: linear-gradient(180deg, transparent, #1a5c3a 40%, #228b52 100%);
	clip-path: polygon(0 100%, 0 60%, 2% 40%, 4% 65%, 6% 35%, 8% 55%, 10% 30%, 12% 50%, 14% 25%, 16% 45%, 18% 20%, 20% 40%, 22% 15%, 24% 35%, 26% 10%, 28% 30%, 30% 5%, 32% 25%, 34% 0%, 36% 20%, 38% 0%, 40% 18%, 42% 0%, 44% 15%, 46% 0%, 48% 12%, 50% 0%, 52% 12%, 54% 0%, 56% 15%, 58% 0%, 60% 18%, 62% 0%, 64% 20%, 66% 0%, 68% 25%, 70% 5%, 72% 30%, 74% 10%, 76% 35%, 78% 15%, 80% 40%, 82% 20%, 84% 45%, 86% 25%, 88% 50%, 90% 30%, 92% 55%, 94% 35%, 96% 65%, 98% 40%, 100% 60%, 100% 100%);
}

/* ── Responsive ── */
@media (max-width: 768px) {
	.lux-hero {
		min-height: auto;
	}

	.lux-hero__content {
		padding: 3rem 1.25rem;
	}

	.lux-hero__trust {
		gap: 0.75rem 1.25rem;
	}

	.lux-trust-bar__list {
		gap: 0.75rem 1.5rem;
	}

	.lux-about {
		grid-template-columns: 1fr;
	}

	.lux-about__content {
		max-width: none;
		margin: 0;
		order: 2;
	}

	.lux-about__media {
		order: 1;
		min-height: 280px;
	}

	.lux-difference__grid,
	.lux-blog-section__grid {
		grid-template-columns: 1fr;
	}

	.lux-faq__grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.lux-assistance__ball {
		display: none;
	}
}
