/**
 * Luxury hero — dark grid, serif headline, gold CTAs
 */

/* Header styles: see header-brand.css (same on all pages) */

/* Hero section */
.hero--luxury {
	position: relative;
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: #080f18;
	background: linear-gradient(180deg, #060d15 0%, var(--color-primary) 40%, #0a1628 100%);
	color: #ffffff;
	overflow: hidden;
	text-align: center;
	padding: 7rem 1.5rem 5rem;
}

/* Subtle grid pattern */
.hero__grid-pattern {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: radial-gradient(ellipse 80% 70% at 50% 45%, black 20%, transparent 75%);
	-webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 45%, black 20%, transparent 75%);
	pointer-events: none;
}

/* Soft gold ambient glow */
.hero__glow {
	position: absolute;
	top: 35%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: min(600px, 80vw);
	height: 280px;
	background: radial-gradient(ellipse, rgba(201, 162, 39, 0.12) 0%, transparent 70%);
	pointer-events: none;
}

.hero__inner {
	position: relative;
	z-index: 2;
	width: min(100%, 900px);
	margin: 0 auto;
}

/* Eyebrow */
.hero--luxury .hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	margin: 0 0 2.5rem;
	font-family: var(--font-sans);
	font-size: 0.65rem;
	font-weight: 600;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
	background: none;
	border: none;
	padding: 0;
}

.hero__eyebrow-line {
	display: block;
	width: 32px;
	height: 1px;
	background: var(--color-accent-gold);
	flex-shrink: 0;
}

/* Title — elegant serif */
.hero--luxury .hero__title {
	font-family: "Playfair Display", var(--font-serif), Georgia, serif;
	font-size: clamp(2.5rem, 7vw, 4.5rem);
	font-weight: 400;
	line-height: 1.15;
	margin: 0 0 2rem;
	letter-spacing: -0.02em;
	color: #ffffff;
	text-shadow: none;
}

.hero__title-line {
	display: block;
}

.hero__title-line--accent {
	color: var(--color-accent-gold);
	font-style: italic;
	font-weight: 400;
	margin: 0.15em 0;
}

.hero__title-line--accent em {
	font-style: italic;
}

/* Lead text */
.hero--luxury .hero__lead {
	font-family: "Plus Jakarta Sans", var(--font-sans), sans-serif;
	font-size: clamp(0.9rem, 1.8vw, 1rem);
	line-height: 1.85;
	color: rgba(255, 255, 255, 0.5);
	max-width: 520px;
	margin: 0 auto 2.75rem;
	opacity: 1;
	text-shadow: none;
}

/* CTA buttons — sharp corners */
.hero--luxury .hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	justify-content: center;
	align-items: stretch;
}

.hero--luxury .btn--hero-primary,
.hero--luxury .btn--hero-outline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 1rem 2rem;
	min-width: 200px;
	font-family: var(--font-sans);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	border-radius: 0;
	transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.hero--luxury .btn--hero-primary {
	background: var(--color-accent-gold);
	color: var(--color-primary);
	border: 1px solid var(--color-accent-gold);
	box-shadow: none;
}

.hero--luxury .btn--hero-primary:hover {
	background: var(--color-accent-gold-light);
	border-color: var(--color-accent-gold-light);
	color: var(--color-primary);
	transform: none;
}

.hero--luxury .btn--hero-outline {
	background: transparent;
	color: var(--color-accent-gold);
	border: 1px solid var(--color-accent-gold);
	margin-left: -1px;
}

.hero--luxury .btn--hero-outline:hover {
	background: rgba(201, 162, 39, 0.1);
	color: var(--color-accent-gold-light);
	border-color: var(--color-accent-gold-light);
}

/* Scroll indicator */
.hero__scroll {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	text-decoration: none;
	color: rgba(255, 255, 255, 0.35);
	transition: color 0.25s ease;
}

.hero__scroll:hover {
	color: var(--color-accent-gold);
}

.hero__scroll-line {
	display: block;
	width: 1px;
	height: 40px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), transparent);
	animation: heroScrollLine 2s ease infinite;
}

.hero__scroll-text {
	font-size: 0.6rem;
	font-weight: 600;
	letter-spacing: 0.25em;
	text-transform: uppercase;
}

@keyframes heroScrollLine {
	0%, 100% { opacity: 0.4; transform: scaleY(0.6); transform-origin: top; }
	50% { opacity: 1; transform: scaleY(1); }
}

/* Hide old modern hero pieces if any leak */
.hero--luxury .hero__bg,
.hero--luxury .hero__panel,
.hero--luxury .hero__overlay {
	display: none !important;
}

/* Animation on load */
.hero--luxury [data-animate] {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero--luxury [data-animate].is-visible {
	opacity: 1;
	transform: none;
}

.hero--luxury .hero__eyebrow { transition-delay: 0.1s; }
.hero--luxury .hero__title { transition-delay: 0.2s; }
.hero--luxury .hero__lead { transition-delay: 0.35s; }
.hero--luxury .hero__actions { transition-delay: 0.5s; }

@media (max-width: 640px) {
	.hero--luxury {
		padding: 6rem 1.25rem 4.5rem;
	}

	.hero--luxury .hero__actions {
		flex-direction: column;
		width: 100%;
		max-width: 320px;
		margin: 0 auto;
	}

	.hero--luxury .btn--hero-primary,
	.hero--luxury .btn--hero-outline {
		width: 100%;
		min-width: 0;
		margin-left: 0;
	}

	.hero--luxury .btn--hero-outline {
		margin-top: -1px;
	}

	.hero__eyebrow {
		flex-direction: column;
		gap: 0.75rem;
		letter-spacing: 0.2em;
	}
}
