/* Page-specific styling */
.hero {
	position: relative;
	background: linear-gradient(180deg, var(--fantasy), var(--linen));
	overflow: hidden;
	min-height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

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

.hero__video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	/* Slightly richer video for more presence */
	filter: saturate(0.9) contrast(1.02) brightness(1.02);
}

.hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: none;
}

.hero__inner {
	display: grid;
	gap: var(--space-3);
	position: relative;
	z-index: 2;
}

.hero__eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.18em;
	font-size: var(--text-xs);
	color: rgba(92, 84, 76, 0.8);
	text-shadow: 0 1px 8px rgba(247, 243, 237, 0.7);
}

.hero__claim {
	max-width: 48rem;
	color: rgba(92, 84, 76, 0.95);
	text-shadow: 0 2px 16px rgba(247, 243, 237, 0.65);
}

.hero__intro {
	max-width: 44rem;
	font-size: var(--text-lg);
	color: rgba(92, 84, 76, 0.9);
	text-shadow: 0 1px 12px rgba(247, 243, 237, 0.7);
}

.editorial {
	background: #EFD8D6;
	color: #2a2a2a;
}

.editorial .container {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: var(--space-8);
	align-items: start;
}

.editorial__label {
	font-size: var(--text-sm);
	color: rgba(42, 42, 42, 0.5);
	text-transform: none;
	letter-spacing: 0.02em;
}

.editorial__content {
	display: flex;
	flex-direction: column;
	gap: var(--space-3);
}

.editorial__content h2 {
	color: #2a2a2a;
	font-size: var(--text-2xl);
	font-weight: var(--font-weight-light);
	line-height: 1.3;
}

.editorial__text {
	font-size: var(--text-md);
	color: rgba(42, 42, 42, 0.75);
	line-height: 1.8;
}

@media (max-width: 900px) {
	.editorial .container {
		grid-template-columns: 1fr;
		gap: var(--space-4);
	}
}

.teasers {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--space-4);
}

.teaser-card {
	padding: var(--space-4);
	border: 1px solid rgba(126, 116, 106, 0.15);
	background: #ffffff60;
	display: grid;
	gap: var(--space-2);
}

.teaser-card__title {
	font-size: var(--text-xl);
}

.teaser-card__link {
	font-size: var(--text-sm);
	letter-spacing: 0.04em;
}

@media (max-width: 900px) {
	.hero {
		padding: var(--space-7) 0 var(--space-6);
	}

	.teasers {
		grid-template-columns: 1fr;
	}
}

/* Boutique page */
.boutique-intro {
	background: var(--linen);
}

.boutique-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: var(--space-5);
}

.quiet-card {
	border: 1px solid rgba(126, 116, 106, 0.15);
	background: #ffffff60;
	padding: var(--space-4);
}

/* Labels page */
.label-list {
	display: grid;
	gap: var(--space-5);
}

.label-item {
	display: grid;
	gap: var(--space-2);
	border-bottom: 1px solid rgba(126, 116, 106, 0.12);
	padding-bottom: var(--space-4);
}

.label-item:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.label-meta {
	font-size: var(--text-sm);
	color: rgba(126, 116, 106, 0.7);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

/* Materials page */
.materials-grid {
	display: grid;
	gap: var(--space-4);
}

.material-block {
	display: grid;
	gap: var(--space-2);
	padding: var(--space-4);
	background: var(--linen);
	border: 1px solid rgba(126, 116, 106, 0.12);
}

/* Two-column layout */
.section--boutique {
	background: var(--linen);
}

.two-column {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-6);
	align-items: center;
}

.two-column__text {
	display: flex;
	flex-direction: column;
	gap: var(--space-3);
}

.two-column__image img {
	width: 100%;
	height: auto;
	display: block;
}

@media (max-width: 900px) {
	.two-column {
		grid-template-columns: 1fr;
		gap: var(--space-4);
	}
}

/* Insights page */
.insights {
	background: var(--linen);
}

/* Contact page */
.contact-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--space-4);
}

.contact-card {
	padding: var(--space-4);
	border: 1px solid rgba(126, 116, 106, 0.12);
	background: #ffffff60;
}

/* Partners Logo Carousel */
.partners {
	padding: var(--space-5) 0;
	overflow: hidden;
	background: var(--linen);
}

.partners__track {
	display: flex;
	width: fit-content;
	animation: scroll 40s linear infinite;
}

@keyframes scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

.partners__logos {
	display: flex;
	align-items: center;
	gap: var(--space-8);
	padding: 0 calc(var(--space-8) / 2);
}

.partners__logos img {
	height: 80px;
	width: 160px;
	object-fit: contain;
	flex-shrink: 0;
}

/* Gallery Section - Slideshow */
.gallery {
	background: var(--fantasy);
	padding: 0;
	overflow: hidden;
	position: relative;
}

.gallery__slideshow {
	width: 100%;
	overflow: hidden;
}

.gallery__track {
	display: flex;
	gap: 1rem;
	animation: slideshow 45s linear infinite;
}

.gallery__slide {
	width: calc(50vw - 0.5rem);
	height: 75vh;
	object-fit: cover;
	object-position: center center;
	flex-shrink: 0;
}

/* 9 images + 2 duplicates = 11 images, each slide is 50vw + 0.5rem gap */
/* We scroll through 9 images worth, then it resets seamlessly */
@keyframes slideshow {
	0% { transform: translateX(0); }
	100% { transform: translateX(calc(-450vw - 4.5rem)); }
}

@media (max-width: 900px) {
	.boutique-grid,
	.contact-grid {
		grid-template-columns: 1fr;
	}
	
	.partners__logos img {
		height: 45px;
	}
	
	.gallery__slide {
		width: 100vw;
		height: 50vh;
	}
	
	.gallery__track {
		gap: 0;
	}
	
	@keyframes slideshow {
		0% { transform: translateX(0); }
		100% { transform: translateX(-900vw); }
	}
	
	.gallery__grid {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
		gap: var(--space-3);
	}
	
	.gallery__item {
		height: 300px;
	}
}

/* Footer */
.site-footer {
	padding: var(--space-6) 0 var(--space-4);
	background: var(--fantasy);
	border-top: 1px solid rgba(126, 116, 106, 0.1);
}

.footer__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--space-5);
	text-align: center;
}

.footer__brand {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--space-2);
}

.footer__logo {
	height: 72px;
	width: auto;
}

.footer__tagline {
	font-size: var(--text-lg);
	color: var(--sand-dune);
	letter-spacing: 0.05em;
	font-style: italic;
}

.footer__social {
	display: flex;
	justify-content: center;
}

.footer__instagram {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: var(--sand-dune);
	text-decoration: none;
	font-size: var(--text-md);
	transition: color 0.3s ease;
}

.footer__instagram:hover {
	color: #c13584;
}

.footer__instagram svg {
	width: 24px;
	height: 24px;
}

.footer__legal {
	display: flex;
	gap: var(--space-5);
}

.footer__legal a {
	color: rgba(126, 116, 106, 0.7);
	text-decoration: none;
	font-size: var(--text-sm);
	letter-spacing: 0.03em;
	transition: color 0.3s ease;
}

.footer__legal a:hover {
	color: var(--sand-dune);
}

.footer__bottom {
	margin-top: var(--space-5);
	padding-top: var(--space-3);
	border-top: 1px solid rgba(126, 116, 106, 0.1);
	text-align: center;
	display: flex;
	justify-content: center;
}

.footer__bottom p {
	font-size: var(--text-xs);
	color: rgba(126, 116, 106, 0.6);
	letter-spacing: 0.02em;
	max-width: none;
}

@media (max-width: 600px) {
	.footer__legal {
		flex-direction: column;
		gap: var(--space-2);
	}
}
