/**
 * Lodge Lakes — Elevation layer (v4.3)
 * Cinematic motion, typography, and UX polish over the core system.
 */

/* ==========================================================================
   Elevated tokens
   ========================================================================== */

:root {
	--ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
	--ease-out-soft: cubic-bezier(0.22, 1, 0.36, 1);
	--duration-reveal: 0.9s;
	--duration-ui: 0.35s;
	--color-mist: rgba(244, 239, 231, 0.06);
	--color-line-gold: rgba(180, 154, 92, 0.45);
	--shadow-hero: 0 24px 80px rgba(0, 0, 0, 0.35);
	--shadow-panel: 0 20px 60px rgba(15, 51, 40, 0.12);
}

/* ==========================================================================
   Reveal system
   ========================================================================== */

[data-reveal] {
	opacity: 0;
	transform: translate3d(0, 28px, 0);
	transition:
		opacity var(--duration-reveal) var(--ease-out-expo),
		transform var(--duration-reveal) var(--ease-out-expo);
	will-change: opacity, transform;
}

[data-reveal].is-revealed {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }
[data-reveal-delay="5"] { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
	[data-reveal] {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.editorial-hero__photo,
	.luxe-destination__photo,
	.editorial-hero__scroll-line {
		animation: none !important;
		transform: none !important;
	}
}

/* ==========================================================================
   Global polish
   ========================================================================== */

body {
	background-color: #f1ebe1;
	background-image:
		radial-gradient(ellipse 120% 60% at 50% -10%, rgba(180, 154, 92, 0.07), transparent 55%),
		linear-gradient(180deg, #f4efe7 0%, #efe7da 100%);
}

::selection {
	background: rgba(22, 63, 50, 0.88);
	color: #fffcf7;
}

.btn {
	letter-spacing: 0.04em;
	transition:
		transform var(--duration-ui) var(--ease-out-soft),
		background var(--duration-ui) var(--ease-out-soft),
		border-color var(--duration-ui) var(--ease-out-soft),
		box-shadow var(--duration-ui) var(--ease-out-soft),
		color var(--duration-ui) var(--ease-out-soft);
}

.btn--primary {
	box-shadow: 0 10px 28px rgba(15, 51, 40, 0.22);
}

.btn--primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 36px rgba(15, 51, 40, 0.28);
}

.btn--primary:active {
	transform: translateY(0);
}

.btn--xl {
	padding: 1.2rem 2.4rem;
	min-height: 3.85rem;
	font-size: 0.9375rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.luxe-heading,
.editorial-title,
.lake-sales__title,
.page-header__title,
.catch-reports-archive__title {
	text-wrap: balance;
}

.luxe-lead,
.editorial-lead,
.page-header__intro,
.lake-sales__intro {
	text-wrap: pretty;
}

/* ==========================================================================
   Cinematic hero
   ========================================================================== */

.editorial-hero {
	isolation: isolate;
}

.editorial-hero__media {
	transform: scale(1.04);
	transition: transform 8s var(--ease-out-soft);
}

.editorial-hero.is-settled .editorial-hero__media {
	transform: scale(1);
}

.editorial-hero__photo {
	filter: saturate(1.05) contrast(1.04);
	animation: ll-hero-drift 28s var(--ease-out-soft) infinite alternate;
}

@keyframes ll-hero-drift {
	from { transform: scale(1.02) translate3d(0, 0, 0); }
	to { transform: scale(1.08) translate3d(-1.5%, -1%, 0); }
}

.editorial-hero__overlay {
	background:
		linear-gradient(105deg, rgba(10, 28, 22, 0.88) 0%, rgba(15, 51, 40, 0.55) 38%, rgba(15, 51, 40, 0.18) 68%, rgba(15, 51, 40, 0.08) 100%),
		linear-gradient(to top, rgba(8, 22, 18, 0.92) 0%, rgba(15, 51, 40, 0.35) 42%, transparent 72%),
		radial-gradient(ellipse 70% 50% at 70% 40%, rgba(180, 154, 92, 0.12), transparent 60%);
}

.editorial-hero__overlay::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to bottom, rgba(255, 252, 247, 0.04), transparent 18%),
		repeating-linear-gradient(
			0deg,
			transparent,
			transparent 2px,
			rgba(0, 0, 0, 0.015) 2px,
			rgba(0, 0, 0, 0.015) 3px
		);
	pointer-events: none;
	mix-blend-mode: soft-light;
}

.editorial-hero__content {
	padding-block: calc(var(--header-height) + 5rem) clamp(5rem, 12vw, 8rem);
}

.editorial-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.6875rem;
	letter-spacing: 0.2em;
	color: var(--color-bronze-light);
}

.editorial-hero__eyebrow::before {
	content: "";
	width: 2rem;
	height: 1px;
	background: var(--color-line-gold);
}

.editorial-hero__title {
	font-size: clamp(3rem, 8vw, 6.25rem);
	line-height: 0.98;
	max-width: 11ch;
	letter-spacing: -0.03em;
	text-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
}

.editorial-hero__subtitle {
	font-size: clamp(1.125rem, 2.2vw, 1.375rem);
	line-height: 1.65;
	max-width: 36rem;
	color: rgba(255, 252, 247, 0.9);
}

.editorial-hero__actions {
	flex-direction: row;
	flex-wrap: wrap;
	max-width: none;
	gap: 0.85rem;
}

.editorial-hero__actions .btn {
	min-width: min(100%, 14rem);
}

.editorial-hero__scroll {
	bottom: clamp(1.5rem, 4vw, 2.5rem);
	opacity: 0.85;
	transition: opacity var(--duration-ui) var(--ease-out-soft), transform var(--duration-ui) var(--ease-out-soft);
}

.editorial-hero__scroll:hover {
	opacity: 1;
	transform: translateY(3px);
	color: var(--color-white);
}

.editorial-hero__scroll-line {
	animation: ll-scroll-pulse 2.2s var(--ease-out-soft) infinite;
}

@keyframes ll-scroll-pulse {
	0%, 100% { transform: scaleY(1); opacity: 0.55; }
	50% { transform: scaleY(0.65); opacity: 1; }
}

/* ==========================================================================
   Fact bar — floating instrument panel
   ========================================================================== */

.luxe-facts {
	position: relative;
	z-index: 6;
	margin-top: clamp(-5.5rem, -10vw, -3.75rem);
	background: transparent;
}

.luxe-facts__panel {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0;
	background: linear-gradient(180deg, #12362c 0%, var(--color-green-deep) 100%);
	border: 1px solid rgba(180, 154, 92, 0.28);
	box-shadow: var(--shadow-panel);
	overflow: hidden;
}

.luxe-facts__item {
	padding: 1.35rem 1.25rem;
	border-right: 1px solid rgba(255, 252, 247, 0.08);
	border-bottom: 1px solid rgba(255, 252, 247, 0.08);
}

.luxe-facts__item:nth-child(2n) {
	border-right: none;
}

.luxe-facts__label {
	font-size: 0.6875rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 252, 247, 0.55);
	margin: 0 0 0.4rem;
}

.luxe-facts__value {
	font-family: var(--font-display);
	font-size: clamp(1.75rem, 3vw, 2.35rem);
	line-height: 1;
	color: var(--color-white);
	margin: 0;
	letter-spacing: -0.02em;
}

@media (min-width: 900px) {
	.luxe-facts__panel {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.luxe-facts__item {
		border-bottom: none;
		padding: 1.6rem 1.5rem;
	}

	.luxe-facts__item:nth-child(2n) {
		border-right: 1px solid rgba(255, 252, 247, 0.08);
	}

	.luxe-facts__item:last-child {
		border-right: none;
	}
}

/* ==========================================================================
   Intro / glance
   ========================================================================== */

.luxe-intro__grid {
	align-items: stretch;
}

.luxe-glance {
	background: rgba(255, 252, 247, 0.92);
	border: 1px solid rgba(188, 172, 142, 0.55);
	box-shadow: var(--shadow-panel);
	backdrop-filter: blur(8px);
}

.luxe-glance__title {
	letter-spacing: 0.16em;
}

.luxe-glance__list li {
	padding-block: 0.85rem;
	border-bottom: 1px solid rgba(188, 172, 142, 0.35);
	transition: background var(--duration-ui) var(--ease-out-soft), padding-left var(--duration-ui) var(--ease-out-soft);
}

.luxe-glance__list li:hover {
	background: rgba(180, 154, 92, 0.06);
	padding-left: 0.35rem;
}

.luxe-glance__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 1.25rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-size: 0.8125rem;
	color: var(--color-forest);
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: color var(--duration-ui) var(--ease-out-soft), border-color var(--duration-ui) var(--ease-out-soft), gap var(--duration-ui) var(--ease-out-soft);
}

.luxe-glance__cta:hover {
	color: var(--color-bronze);
	border-color: var(--color-bronze);
	gap: 0.75rem;
}

.luxe-pullquote {
	position: relative;
	padding-left: 1.25rem;
	border-left: 2px solid var(--color-bronze);
}

.luxe-pullquote p {
	font-family: var(--font-display);
	font-size: clamp(1.35rem, 2.4vw, 1.75rem);
	font-style: italic;
	line-height: 1.35;
	color: rgba(255, 252, 247, 0.92);
}

/* ==========================================================================
   Destination lakes
   ========================================================================== */

.luxe-destination__media {
	overflow: hidden;
}

.luxe-destination__photo {
	transition: transform 1.1s var(--ease-out-expo), filter 0.6s var(--ease-out-soft);
	filter: saturate(1.04) contrast(1.03);
}

.luxe-destination:hover .luxe-destination__photo {
	transform: scale(1.04);
}

.luxe-destination__panel {
	background: rgba(255, 252, 247, 0.96);
	border: 1px solid rgba(188, 172, 142, 0.45);
	box-shadow: var(--shadow-panel);
}

.luxe-destination__badge {
	backdrop-filter: blur(10px);
	background: rgba(8, 22, 18, 0.72);
	border: 1px solid rgba(180, 154, 92, 0.35);
}

.luxe-destination__stats {
	border-top: 1px solid rgba(188, 172, 142, 0.4);
	padding-top: 1rem;
}

.luxe-destination__stat dt {
	font-size: 0.6875rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-charcoal-muted);
}

.luxe-destination__stat dd {
	font-family: var(--font-display);
	font-size: 1.25rem;
	color: var(--color-forest);
}

/* ==========================================================================
   Fish / catches
   ========================================================================== */

.luxe-fish__statement-media {
	transform: scale(1.03);
}

.luxe-fish__featured-value {
	font-size: clamp(2.75rem, 7vw, 5rem);
	letter-spacing: -0.03em;
	text-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.luxe-catch {
	overflow: hidden;
	isolation: isolate;
}

.luxe-catch__media img {
	transition: transform 0.9s var(--ease-out-expo), filter 0.5s ease;
}

.luxe-catch:hover .luxe-catch__media img {
	transform: scale(1.06);
	filter: saturate(1.08) contrast(1.04);
}

.luxe-catch__banner {
	background: linear-gradient(to top, rgba(8, 22, 18, 0.92) 0%, rgba(8, 22, 18, 0.35) 70%, transparent 100%);
}

/* ==========================================================================
   Package / voices / enquiry
   ========================================================================== */

.luxe-package__card {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(180, 154, 92, 0.35);
	box-shadow: var(--shadow-panel);
	background:
		radial-gradient(ellipse at top right, rgba(180, 154, 92, 0.1), transparent 45%),
		var(--color-white);
}

.luxe-package__card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--color-bronze), var(--color-bronze-light), transparent);
}

.luxe-package__price-value {
	background: linear-gradient(180deg, var(--color-forest) 0%, #0f3328 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.testimonial-card {
	position: relative;
	transition: transform var(--duration-ui) var(--ease-out-soft), border-color var(--duration-ui) var(--ease-out-soft);
}

.testimonial-card:hover {
	transform: translateY(-4px);
	border-color: rgba(180, 154, 92, 0.55);
}

.testimonial-card__quote {
	font-size: clamp(1.2rem, 2vw, 1.4rem);
}

.luxe-enquiry__form-card,
.concierge-panel__form,
.contact-form-wrap,
.enquiry-form--panel {
	box-shadow: var(--shadow-panel);
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea,
.availability-module input,
.availability-module select,
.availability-module textarea {
	transition: border-color var(--duration-ui) var(--ease-out-soft), box-shadow var(--duration-ui) var(--ease-out-soft), background var(--duration-ui) var(--ease-out-soft);
}

.enquiry-form input:hover,
.enquiry-form select:hover,
.enquiry-form textarea:hover {
	border-color: rgba(180, 154, 92, 0.55);
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
	border-color: var(--color-bronze);
	box-shadow: 0 0 0 3px rgba(180, 154, 92, 0.18);
}

.luxe-timeline__step {
	position: relative;
}

.luxe-timeline__num {
	font-family: var(--font-display);
	color: var(--color-bronze-light);
}

/* ==========================================================================
   Lake sales / accommodation / catch archive
   ========================================================================== */

body.has-lake-hero {
	padding-top: 0;
}

body.has-lake-hero .site-header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 300;
	background: transparent;
	border-bottom: 1px solid rgba(255, 252, 247, 0.08);
	box-shadow: none;
}

body.has-lake-hero .site-header.is-scrolled {
	position: fixed;
	background: rgba(10, 28, 22, 0.92);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom-color: rgba(255, 252, 247, 0.06);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

body.has-lake-hero .site-wordmark__name,
body.has-lake-hero .site-nav__link,
body.has-lake-hero .site-nav__dropdown-toggle,
body.has-lake-hero .site-header__phone,
body.has-lake-hero .site-header__phone span {
	color: var(--color-white);
}

body.has-lake-hero .site-wordmark__tagline {
	color: var(--color-bronze-light);
}

body.has-lake-hero .site-header__toggle-bar {
	background: var(--color-white);
}

.lake-sales__hero {
	position: relative;
	min-height: min(88vh, 820px);
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	isolation: isolate;
}

.lake-sales__hero-photo {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 45%;
	filter: saturate(1.06) contrast(1.04);
	animation: ll-hero-drift 28s var(--ease-out-soft) infinite alternate;
}

.lake-sales__hero-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(105deg, rgba(10, 28, 22, 0.88) 0%, rgba(15, 51, 40, 0.5) 42%, rgba(15, 51, 40, 0.16) 72%, transparent 100%),
		linear-gradient(to top, rgba(8, 22, 18, 0.92) 0%, rgba(15, 51, 40, 0.35) 45%, transparent 75%),
		radial-gradient(ellipse 60% 45% at 75% 35%, rgba(180, 154, 92, 0.14), transparent 60%);
}

.lake-sales__breadcrumbs--hero {
	margin-bottom: var(--space-lg);
}

.lake-sales__breadcrumbs--hero .breadcrumbs,
.lake-sales__breadcrumbs--hero .breadcrumbs__item,
.lake-sales__breadcrumbs--hero .breadcrumbs a {
	color: rgba(255, 252, 247, 0.72);
}

.lake-sales__breadcrumbs--hero .breadcrumbs__current {
	color: var(--color-bronze-light);
}

.lake-sales__hero-inner {
	position: relative;
	z-index: 2;
	padding-block: calc(var(--header-height) + 4rem) clamp(3.5rem, 8vw, 5.5rem);
	width: 100%;
}

.lake-sales__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	letter-spacing: 0.18em;
	color: var(--color-bronze-light);
}

.lake-sales__eyebrow::before {
	content: "";
	width: 2rem;
	height: 1px;
	background: var(--color-line-gold);
}

.lake-sales__title {
	font-size: clamp(2.75rem, 6vw, 4.75rem);
	letter-spacing: -0.03em;
	text-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
	max-width: 14ch;
}

.lake-sales__intro {
	max-width: 36rem;
	font-size: clamp(1.0625rem, 2vw, 1.25rem);
	color: rgba(255, 252, 247, 0.9);
}

.lake-sales__hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
}

.lake-sales__section h2 {
	font-family: var(--font-display);
	font-size: clamp(1.85rem, 3vw, 2.5rem);
	letter-spacing: -0.02em;
	color: var(--color-forest);
}

.lake-sales__lead {
	font-family: var(--font-display);
	font-size: clamp(1.25rem, 2.2vw, 1.55rem);
	font-style: italic;
	line-height: 1.4;
	color: var(--color-forest-mid);
}

.lake-sales__facts {
	background: var(--color-green-deep);
	border-bottom: 1px solid rgba(180, 154, 92, 0.25);
}

.lake-sales__facts-list li strong {
	display: block;
	font-size: 0.6875rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 252, 247, 0.55);
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.lake-sales__facts-list li span {
	font-family: var(--font-display);
	font-size: 1.25rem;
	color: var(--color-white);
}

.lake-sales__enquiry-card {
	position: sticky;
	top: calc(var(--header-height) + 1rem);
	border: 1px solid rgba(180, 154, 92, 0.35);
	background:
		radial-gradient(ellipse at top left, rgba(180, 154, 92, 0.08), transparent 50%),
		var(--color-white);
	box-shadow: var(--shadow-panel);
}

.accommodation-hero-photo__img,
.accommodation-venue__img {
	transition: transform 1s var(--ease-out-expo), filter 0.5s ease;
}

.accommodation-venue:hover .accommodation-venue__img,
.accommodation-hero-photo:hover .accommodation-hero-photo__img {
	transform: scale(1.03);
	filter: saturate(1.06);
}

.accommodation-venue {
	overflow: hidden;
	transition: transform var(--duration-ui) var(--ease-out-soft), box-shadow var(--duration-ui) var(--ease-out-soft);
}

.accommodation-venue:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-panel);
}

.catch-reports-archive__hero {
	position: relative;
	background:
		radial-gradient(ellipse at top right, rgba(180, 154, 92, 0.12), transparent 45%),
		linear-gradient(180deg, #12362c 0%, var(--color-green-deep) 100%);
	color: var(--color-white);
	padding-block: clamp(4rem, 10vw, 6.5rem);
}

.catch-reports-archive__eyebrow {
	color: var(--color-bronze-light);
	letter-spacing: 0.18em;
}

.catch-reports-archive__title {
	color: var(--color-white);
	font-size: clamp(2.5rem, 5vw, 4rem);
}

.catch-reports-archive__intro {
	color: rgba(255, 252, 247, 0.8);
	max-width: 40rem;
}

.catch-reports-archive__filter {
	transition: background var(--duration-ui) var(--ease-out-soft), color var(--duration-ui) var(--ease-out-soft), border-color var(--duration-ui) var(--ease-out-soft);
}

.catch-reports-archive__filter.is-active,
.catch-reports-archive__filter:hover {
	border-color: var(--color-bronze);
	color: var(--color-forest);
}

.catch-reports-archive__featured {
	overflow: hidden;
	border: 1px solid rgba(188, 172, 142, 0.4);
	box-shadow: var(--shadow-panel);
}

.page-header {
	position: relative;
	overflow: hidden;
}

.page-header::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(180, 154, 92, 0.45), transparent);
}

.page-header__title {
	font-size: clamp(2.4rem, 5vw, 4rem);
	letter-spacing: -0.025em;
}

.contact-sla {
	background: rgba(255, 252, 247, 0.9);
	box-shadow: 0 8px 30px rgba(15, 51, 40, 0.06);
}

.contact-map-embed {
	box-shadow: inset 0 0 0 1px rgba(188, 172, 142, 0.35);
}

/* ==========================================================================
   FAQ / CTA / sticky
   ========================================================================== */

.homepage-faq__item {
	border: 1px solid rgba(188, 172, 142, 0.45);
	background: rgba(255, 252, 247, 0.85);
	transition: border-color var(--duration-ui) var(--ease-out-soft), box-shadow var(--duration-ui) var(--ease-out-soft);
}

.homepage-faq__item[open],
.homepage-faq__item:hover {
	border-color: rgba(180, 154, 92, 0.55);
	box-shadow: 0 10px 30px rgba(15, 51, 40, 0.06);
}

.homepage-faq__question {
	cursor: pointer;
	font-weight: 600;
}

.cta-section--editorial .cta-section__title {
	font-size: clamp(2.4rem, 5vw, 4rem);
	letter-spacing: -0.03em;
}

.mobile-sticky-cta {
	backdrop-filter: blur(12px);
	background: rgba(255, 252, 247, 0.94);
	border-top: 1px solid rgba(188, 172, 142, 0.55);
}

.mobile-sticky-cta__btn--primary {
	letter-spacing: 0.05em;
	text-transform: uppercase;
	font-size: 0.8125rem;
}

/* ==========================================================================
   Header refinement on editorial pages
   ========================================================================== */

body.has-editorial-hero .site-header {
	transition: background var(--duration-ui) var(--ease-out-soft), box-shadow var(--duration-ui) var(--ease-out-soft), border-color var(--duration-ui) var(--ease-out-soft);
}

body.has-editorial-hero .site-header.is-scrolled {
	background: rgba(10, 28, 22, 0.92);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
}

body.has-editorial-hero .site-header__cta.btn--primary {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* ==========================================================================
   Week cards / stay
   ========================================================================== */

.luxe-week__card {
	border: 1px solid rgba(188, 172, 142, 0.4);
	background: rgba(255, 252, 247, 0.88);
	transition: transform var(--duration-ui) var(--ease-out-soft), border-color var(--duration-ui) var(--ease-out-soft), box-shadow var(--duration-ui) var(--ease-out-soft);
}

.luxe-week__card:hover {
	transform: translateY(-4px);
	border-color: rgba(180, 154, 92, 0.5);
	box-shadow: var(--shadow-panel);
}

.luxe-week__num {
	font-family: var(--font-display);
	color: var(--color-bronze);
}

.luxe-stay__panel {
	backdrop-filter: blur(10px);
	background: rgba(255, 252, 247, 0.92);
	border: 1px solid rgba(188, 172, 142, 0.45);
	box-shadow: var(--shadow-panel);
}

.luxe-stay__quote {
	font-family: var(--font-display);
	font-style: italic;
	font-size: clamp(1.25rem, 2.2vw, 1.6rem);
	border-left: 2px solid var(--color-bronze);
	padding-left: 1.25rem;
}

/* ==========================================================================
   Availability concierge
   ========================================================================== */

.availability-placeholder--concierge {
	background:
		radial-gradient(ellipse at top left, rgba(180, 154, 92, 0.1), transparent 50%),
		var(--color-cream);
	border: 1px solid rgba(180, 154, 92, 0.28);
}

.concierge-panel__step-num {
	font-family: var(--font-display);
	color: var(--color-bronze);
}

/* ==========================================================================
   Footer quiet luxury
   ========================================================================== */

.site-footer {
	background:
		radial-gradient(ellipse at top, rgba(180, 154, 92, 0.08), transparent 40%),
		linear-gradient(180deg, #12362c 0%, #0c241d 100%);
}

.site-footer a {
	transition: color var(--duration-ui) var(--ease-out-soft);
}

/* ==========================================================================
   Utility: gold rule under section heads
   ========================================================================== */

.luxe-section-head .luxe-heading--center::after,
.editorial-intro--center .editorial-title::after {
	content: "";
	display: block;
	width: 3rem;
	height: 1px;
	margin: 1.25rem auto 0;
	background: linear-gradient(90deg, transparent, var(--color-bronze), transparent);
}

/* ==========================================================================
   Elevated page headers
   ========================================================================== */

.page-header--elevated {
	position: relative;
	overflow: hidden;
	padding-block: clamp(4.5rem, 10vw, 7rem);
	background:
		radial-gradient(ellipse at top right, rgba(180, 154, 92, 0.14), transparent 45%),
		linear-gradient(165deg, #12362c 0%, var(--color-green-deep) 55%, #0c241d 100%);
}

.page-header--elevated::before {
	content: "";
	position: absolute;
	inset: 0;
	opacity: 0.04;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cpath d='M0 60c20-10 40-10 60 0s40 10 60 0' fill='none' stroke='%23fff' stroke-width='0.5'/%3E%3C/svg%3E");
	background-size: 160px 160px;
	pointer-events: none;
}

.page-header--elevated .page-header__title {
	font-size: clamp(2.6rem, 5.5vw, 4.25rem);
	letter-spacing: -0.03em;
	max-width: 16ch;
}

.page-header--elevated .page-header__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	letter-spacing: 0.18em;
}

.page-header--elevated .page-header__eyebrow::before {
	content: "";
	width: 1.75rem;
	height: 1px;
	background: var(--color-line-gold);
}

.accommodation-hero-photo {
	margin-top: -1.5rem;
	position: relative;
	z-index: 2;
}

.accommodation-hero-photo__img {
	width: 100%;
	max-height: min(52vh, 520px);
	object-fit: cover;
	border: 1px solid rgba(188, 172, 142, 0.4);
	box-shadow: var(--shadow-panel);
}

.accommodation-compare {
	gap: clamp(1.5rem, 4vw, 2.5rem);
}

.accommodation-venue {
	border: 1px solid rgba(188, 172, 142, 0.45);
	background: rgba(255, 252, 247, 0.94);
	box-shadow: var(--shadow-panel);
}

.accommodation-venue__media {
	overflow: hidden;
}

.luxe-planning__point {
	transition: transform var(--duration-ui) var(--ease-out-soft), border-color var(--duration-ui) var(--ease-out-soft);
}

.luxe-planning__points[data-reveal].is-revealed .luxe-planning__point:hover {
	transform: translateX(4px);
}

.concierge-panel--luxury {
	border: 1px solid rgba(180, 154, 92, 0.28);
	overflow: hidden;
}

.concierge-panel__guide {
	background:
		radial-gradient(ellipse at top left, rgba(180, 154, 92, 0.12), transparent 50%),
		linear-gradient(180deg, #12362c 0%, var(--color-green-deep) 100%);
}

.availability-trust {
	margin-top: var(--space-3xl);
	padding: clamp(1.75rem, 4vw, 2.5rem);
	border: 1px solid rgba(188, 172, 142, 0.45);
	background: rgba(255, 252, 247, 0.92);
	box-shadow: var(--shadow-panel);
}

.availability-trust h2 {
	font-family: var(--font-display);
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	color: var(--color-forest);
	margin: 0 0 var(--space-md);
}

/* Soft chapter separators on home */
.home-magazine > section + section {
	scroll-margin-top: calc(var(--header-height) + 1rem);
}

.luxe-heading,
.editorial-title,
.luxe-statement__title {
	letter-spacing: -0.025em;
}

.luxe-statement__title {
	font-family: var(--font-display);
	font-size: clamp(2.5rem, 6vw, 4.5rem);
	line-height: 1.02;
	text-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

/* Beat home-luxe desaturation on cinematic surfaces */
.home-magazine .editorial-hero__photo,
.lake-sales__hero-photo {
	filter: saturate(1.06) contrast(1.05) brightness(0.98);
}

.home-magazine .editorial-hero__actions {
	flex-direction: row;
	flex-wrap: wrap;
	max-width: none;
}

/* ==========================================================================
   Homepage rhythm — fewer dark chapters, clearer breath
   ========================================================================== */

.home-magazine .luxe-lakes {
	background:
		radial-gradient(ellipse at top, rgba(180, 154, 92, 0.06), transparent 40%),
		linear-gradient(180deg, #f7f2e9 0%, var(--color-cream) 100%);
	padding-top: clamp(4.5rem, 9vw, 7.5rem);
	padding-bottom: clamp(5rem, 10vw, 8rem);
}

.home-magazine .luxe-destination {
	margin-top: clamp(3.5rem, 8vw, 6.5rem);
}

@media (min-width: 1020px) {
	.home-magazine .luxe-destination__media {
		min-height: 700px;
	}

	.home-magazine .luxe-destination__panel {
		box-shadow: 0 32px 80px rgba(15, 51, 40, 0.18);
	}
}

/* Fish: one cinematic open, then cream proof band */
.home-magazine .luxe-fish__body {
	background:
		radial-gradient(ellipse at top, rgba(180, 154, 92, 0.08), transparent 45%),
		linear-gradient(180deg, #f4efe7 0%, #efe7da 100%);
	overflow: visible;
}

.home-magazine .luxe-fish__body::before {
	opacity: 0.45;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='48' viewBox='0 0 80 48'%3E%3Cg fill='none' stroke='%230f3328' stroke-opacity='0.04' stroke-width='1'%3E%3Cpath d='M0 48c0-13.3 9-24 20-24s20 10.7 20 24'/%3E%3Cpath d='M40 48c0-13.3 9-24 20-24s20 10.7 20 24'/%3E%3C/g%3E%3C/svg%3E");
}

.home-magazine .luxe-fish__records {
	border-bottom-color: rgba(180, 154, 92, 0.35);
}

.home-magazine .luxe-fish__record-value {
	color: var(--color-forest);
}

.home-magazine .luxe-fish__record-label,
.home-magazine .luxe-fish__recent-label {
	color: var(--color-charcoal-muted);
}

.home-magazine .luxe-fish__intro {
	color: var(--color-charcoal-soft);
}

.home-magazine .luxe-catch {
	border-color: rgba(188, 172, 142, 0.45);
	box-shadow: var(--shadow-panel);
	background: var(--color-white);
}

/* FAQ stays cream after enquiry — no second dark wall before footer */
.home-magazine .homepage-faq {
	background:
		radial-gradient(ellipse at top, rgba(180, 154, 92, 0.07), transparent 40%),
		linear-gradient(180deg, #f7f2e9 0%, var(--color-cream) 100%);
}

.home-magazine .homepage-faq::before {
	opacity: 0.5;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='48' viewBox='0 0 80 48'%3E%3Cg fill='none' stroke='%230f3328' stroke-opacity='0.04' stroke-width='1'%3E%3Cpath d='M0 48c0-13.3 9-24 20-24s20 10.7 20 24'/%3E%3Cpath d='M40 48c0-13.3 9-24 20-24s20 10.7 20 24'/%3E%3C/g%3E%3C/svg%3E");
}

.home-magazine .homepage-faq .editorial-eyebrow {
	color: var(--color-bronze);
}

.home-magazine .homepage-faq .editorial-title {
	color: var(--color-forest);
}

.home-magazine .homepage-faq .editorial-lead {
	color: var(--color-charcoal-soft);
}

.home-magazine .homepage-faq__item {
	background: rgba(255, 252, 247, 0.92);
	border-color: rgba(188, 172, 142, 0.45);
}

.home-magazine .homepage-faq__item[open],
.home-magazine .homepage-faq__item:hover {
	border-color: rgba(180, 154, 92, 0.55);
	background: var(--color-white);
	box-shadow: 0 10px 30px rgba(15, 51, 40, 0.06);
}

.home-magazine .homepage-faq__question {
	color: var(--color-forest);
}

.home-magazine .homepage-faq__answer {
	color: var(--color-charcoal-soft);
}

.home-magazine .homepage-faq__answer p {
	color: var(--color-charcoal-soft);
}

.home-magazine .homepage-faq__question::after {
	color: var(--color-bronze);
}

.home-magazine .homepage-faq__footer .btn--secondary {
	background: transparent;
	color: var(--color-forest);
	border: 1px solid rgba(22, 63, 50, 0.28);
}

.home-magazine .homepage-faq__footer .btn--secondary:hover {
	border-color: var(--color-bronze);
	color: var(--color-bronze);
	background: rgba(180, 154, 92, 0.08);
}

/* Package price must read on the dark header */
.home-magazine .luxe-package__price {
	justify-content: center;
}

.home-magazine .luxe-package__price-label,
.home-magazine .luxe-package__price-note {
	color: rgba(255, 252, 247, 0.7);
}

.home-magazine .luxe-package__price-value {
	background: none;
	-webkit-background-clip: unset;
	background-clip: unset;
	color: var(--color-bronze-light);
}

.home-magazine .luxe-package__headline {
	color: rgba(255, 252, 247, 0.88);
	font-size: 1rem;
	font-family: var(--font-body);
	font-weight: 600;
	letter-spacing: 0.04em;
}

/* Voices breathe more after package */
.home-magazine .luxe-voices {
	padding-block: clamp(4.5rem, 9vw, 7rem);
	background: linear-gradient(180deg, var(--color-cream) 0%, #f7f2e9 100%);
}

/* Soft seam between intro dark and lakes cream */
.home-magazine .luxe-intro {
	padding-bottom: clamp(5rem, 10vw, 8rem);
}

.home-magazine .luxe-intro__scrim {
	background:
		linear-gradient(to right, rgba(8, 24, 18, 0.94) 0%, rgba(10, 30, 22, 0.88) 48%, rgba(15, 51, 40, 0.78) 100%),
		linear-gradient(to bottom, rgba(8, 24, 18, 0.45) 0%, transparent 28%, transparent 62%, rgba(8, 24, 18, 0.55) 100%);
}

/* Planning as quiet closer before FAQ */
.home-magazine .luxe-planning {
	background: var(--color-white);
	border-top: 1px solid rgba(188, 172, 142, 0.35);
}
