/**
 * Nzele Homepage Layout & Editorial Stylesheet
 * Quiet Luxury, Museum-Quality Visual Presentation
 */

/* ==========================================================================
   1. Global UI & Buttons overrides (Link-based CTAs)
   ========================================================================== */

/* Subtly animated editorial text links */
.nzle-link-cta {
	display: inline-flex;
	align-items: center;
	font-family: var(--nzle-font-body);
	font-size: 0.75rem; /* 12px */
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: var(--nzle-letter-spacing-extra-wide);
	color: var(--nzle-black);
	text-decoration: none;
	position: relative;
	padding-bottom: var(--nzle-space-xs);
	transition: var(--nzle-transition-default);
}

.nzle-link-cta::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: var(--nzle-black);
	transform: scaleX(1);
	transform-origin: bottom left;
	transition: transform var(--nzle-transition-duration) var(--nzle-transition-easing),
				background-color var(--nzle-transition-duration) var(--nzle-transition-easing);
}

.nzle-link-cta:hover {
	color: var(--nzle-accent);
}

.nzle-link-cta:hover::after {
	background-color: var(--nzle-accent);
	transform: scaleX(0.7);
}

/* Light text variants on dark hero/backgrounds */
.nzle-link-cta-light {
	color: var(--nzle-white);
}

.nzle-link-cta-light::after {
	background-color: var(--nzle-white);
}

/* Base button replacements if buttons are strictly needed, styled with thin borders */
.nzle-btn-editorial {
	display: inline-block;
	font-family: var(--nzle-font-body);
	font-size: 0.75rem;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: var(--nzle-letter-spacing-wide);
	padding: 12px 28px;
	border: 1px solid var(--nzle-black);
	border-radius: 0; /* Pure geometric layout */
	background-color: transparent;
	color: var(--nzle-black);
	transition: var(--nzle-transition-default);
}

.nzle-btn-editorial:hover {
	border-color: var(--nzle-accent);
	color: var(--nzle-accent);
}

.nzle-btn-editorial-light {
	border-color: var(--nzle-white);
	color: var(--nzle-white);
}

.nzle-btn-editorial-light:hover {
	border-color: var(--nzle-accent);
	color: var(--nzle-accent);
}

/* ==========================================================================
   2. Homepage Hero Section (Immersive Art-Driven Layout)
   ========================================================================== */

.nzle-section-hero {
	min-height: 85vh;
	display: flex;
	align-items: center;
	position: relative;
	background-color: var(--nzle-bg-primary); /* Soft museum off-white background */
	padding: calc(var(--nzle-space-xl) + 48px) 0 var(--nzle-space-xl) 0; /* Clear header overlay offset */
	box-sizing: border-box;
	border-bottom: 1px solid var(--nzle-border);
}

.nzle-hero-split-grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr; /* Spacious text column, elegant artwork display */
	gap: var(--nzle-space-xxl);
	align-items: center;
	width: 100%;
}

.nzle-hero-left {
	display: flex;
	flex-direction: column;
}

.nzle-hero-content {
	max-width: 600px;
}

.nzle-hero-title {
	color: var(--nzle-black);
	font-size: clamp(2.4rem, 5vw, 4.5rem); /* Proportional scaling for split layout */
	line-height: 1.15;
	font-weight: 300;
	margin-bottom: var(--nzle-space-md);
}

.nzle-hero-description {
	color: var(--nzle-text-secondary);
	font-size: 1.025rem;
	line-height: 1.75;
	font-weight: 300;
	margin-bottom: var(--nzle-space-xl);
	max-width: 480px;
	letter-spacing: 0.02em;
}

.nzle-hero-right {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.nzle-hero-artwork-frame {
	width: 100%;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.05); /* Soft premium drop shadow */
	background-color: var(--nzle-bg-secondary);
	position: relative;
}

.nzle-hero-artwork-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 1.5s var(--nzle-transition-easing);
}

.nzle-hero-artwork-frame:hover .nzle-hero-artwork-img {
	transform: scale(1.03); /* Subtle luxury scale feedback */
}

@media (max-width: 991px) {
	.nzle-hero-split-grid {
		grid-template-columns: 1fr;
		gap: var(--nzle-space-xl);
	}
	.nzle-hero-right {
		justify-content: flex-start;
		margin-top: var(--nzle-space-md);
	}
	.nzle-hero-artwork-frame {
		max-width: 450px;
	}
}

/* ==========================================================================
   3. Why Nzele Section (Clean Editorial Statement, No Cards)
   ========================================================================== */

.nzle-section-why {
	padding: var(--nzle-space-display) 0;
	background-color: var(--nzle-bg-primary);
}

.nzle-why-narrative {
	max-width: 900px;
	margin-bottom: var(--nzle-space-xxl);
}

.nzle-why-label {
	font-family: var(--nzle-font-body);
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: var(--nzle-letter-spacing-extra-wide);
	color: var(--nzle-accent);
	margin-bottom: var(--nzle-space-md);
	display: block;
}

.nzle-why-headline {
	font-family: var(--nzle-font-headings);
	font-size: clamp(2rem, 4.5vw, 3.25rem);
	line-height: 1.2;
	font-weight: 300;
	color: var(--nzle-text-primary);
	margin: 0;
}

/* Value pillars presented frameless with generous vertical gaps */
.nzle-why-pillars {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--nzle-space-xxl);
	margin-top: var(--nzle-space-xxl);
}

@media (max-width: 991px) {
	.nzle-why-pillars {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--nzle-space-xl);
	}
}

@media (max-width: 768px) {
	.nzle-why-pillars {
		grid-template-columns: 1fr;
		gap: var(--nzle-space-lg);
	}
}

.nzle-pillar {
	display: flex;
	flex-direction: column;
	gap: var(--nzle-space-sm);
}

.nzle-pillar-title {
	font-family: var(--nzle-font-headings);
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--nzle-text-primary);
	margin: 0;
}

.nzle-pillar-desc {
	font-family: var(--nzle-font-body);
	font-size: 0.9rem;
	line-height: 1.7;
	color: var(--nzle-text-secondary);
	font-weight: 300;
	margin: 0;
}

/* ==========================================================================
   4. Featured Artworks Gallery (Card-Free Spacing)
   ========================================================================== */

.nzle-section-artworks {
	padding: var(--nzle-space-display) 0;
	background-color: var(--nzle-bg-secondary);
}

.nzle-section-header-editorial {
	margin-bottom: var(--nzle-space-xxl);
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

@media (max-width: 768px) {
	.nzle-section-header-editorial {
		flex-direction: column;
		align-items: flex-start;
		gap: var(--nzle-space-sm);
	}
}

.nzle-section-title-editorial {
	font-family: var(--nzle-font-headings);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 300;
	color: var(--nzle-text-primary);
	margin: 0 0 var(--nzle-space-xs) 0;
}

.nzle-section-desc-editorial {
	font-family: var(--nzle-font-body);
	font-size: 0.95rem;
	color: var(--nzle-text-secondary);
	font-weight: 300;
	margin: 0;
	max-width: 500px;
}

/* Grids layout without borders or cards */
.nzle-artworks-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--nzle-space-xl) var(--nzle-space-lg);
}

@media (max-width: 991px) {
	.nzle-artworks-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.nzle-artworks-grid {
		grid-template-columns: 1fr;
		gap: var(--nzle-space-xl);
	}
}

/* Frameless Card block (no border, overflow handling image zoom) */
.nzle-artwork-item {
	display: flex;
	flex-direction: column;
	gap: var(--nzle-space-sm);
}

.nzle-artwork-image-container {
	position: relative;
	overflow: hidden;
	background-color: var(--nzle-bg-primary);
	/* Maintain exact aspect ratio to prevent artwork distortion */
	aspect-ratio: 4 / 5;
}

.nzle-artwork-image-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1.2s var(--nzle-transition-easing);
}

.nzle-artwork-item:hover .nzle-artwork-image-container img {
	transform: scale(1.04);
}

.nzle-artwork-meta {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.nzle-artwork-artist {
	font-family: var(--nzle-font-body);
	font-size: 0.7rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: var(--nzle-letter-spacing-wide);
	color: var(--nzle-text-secondary);
}

.nzle-artwork-title {
	font-family: var(--nzle-font-headings);
	font-size: 1.15rem;
	font-weight: 400;
	font-style: italic; /* Italic artwork titles signal high cultural style */
	color: var(--nzle-text-primary);
	margin: 0;
}

.nzle-artwork-medium {
	font-family: var(--nzle-font-body);
	font-size: 0.75rem;
	font-weight: 300;
	color: #666666;
}

.nzle-artwork-price {
	font-family: var(--nzle-font-body);
	font-size: 0.8rem;
	font-weight: 500;
	color: var(--nzle-text-primary);
	margin-top: 2px;
}

/* ==========================================================================
   5. Featured Artists Section (Portrait-Driven Layout)
   ========================================================================== */

.nzle-section-artists {
	padding: var(--nzle-space-display) 0;
	background-color: var(--nzle-bg-primary);
}

.nzle-artists-row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--nzle-space-xxl);
}

@media (max-width: 768px) {
	.nzle-artists-row {
		grid-template-columns: 1fr;
		gap: var(--nzle-space-xl);
	}
}

.nzle-artist-showcase {
	display: flex;
	flex-direction: column;
	gap: var(--nzle-space-md);
}

.nzle-artist-portrait {
	width: 100%;
	aspect-ratio: 16 / 10; /* Landscape wide display */
	overflow: hidden;
	background-color: var(--nzle-border);
}

.nzle-artist-portrait img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1.2s var(--nzle-transition-easing);
}

.nzle-artist-showcase:hover .nzle-artist-portrait img {
	transform: scale(1.03);
}

.nzle-artist-details {
	display: flex;
	flex-direction: column;
	gap: var(--nzle-space-xs);
}

.nzle-artist-name {
	font-family: var(--nzle-font-headings);
	font-size: 1.85rem;
	font-weight: 300;
	color: var(--nzle-text-primary);
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.nzle-artist-bio {
	font-family: var(--nzle-font-body);
	font-size: 0.9rem;
	line-height: 1.65;
	color: var(--nzle-text-secondary);
	font-weight: 300;
	margin: 0;
	max-width: 450px;
}

/* ==========================================================================
   6. Collector / Artist CTA Panels
   ========================================================================== */

.nzle-section-collector-cta,
.nzle-section-artist-cta {
	padding: var(--nzle-space-display) 0;
	background-color: var(--nzle-bg-secondary);
	border-top: 1px solid var(--nzle-border);
}

.nzle-section-collector-cta {
	background-color: var(--nzle-bg-primary); /* Alternating neutral shade */
}

.nzle-cta-panel {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.nzle-cta-heading {
	font-family: var(--nzle-font-headings);
	font-size: clamp(2.2rem, 5vw, 3.5rem);
	font-weight: 300;
	color: var(--nzle-text-primary);
	margin-bottom: var(--nzle-space-sm);
}

.nzle-cta-sub {
	font-family: var(--nzle-font-body);
	font-size: 1rem;
	line-height: 1.7;
	color: var(--nzle-text-secondary);
	font-weight: 300;
	margin-bottom: var(--nzle-space-xl);
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}
