/* ============================================================
   LEMED SPA — Ethos Page
   Parallax scroll, 6-tile grid, dark narrative layout
   ============================================================ */


/* ===== Base Overrides ===== */

body {
	background: #0a0a0c;
	overflow-x: hidden;
}

body.is-preload .ethos-banner__content,
body.is-preload .ethos-nav {
	opacity: 0;
}


/* ===== Fade-In Animations ===== */

.fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.is-visible {
	opacity: 1;
	transform: translateY(0);
}


/* ===== Navigation ===== */

.ethos-nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 1.5rem 2.5rem;
	z-index: 100;
	transition: opacity 1s ease 0.5s;
}

.ethos-nav__back {
	font-family: 'Inter', sans-serif;
	font-size: 0.75rem;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.15rem;
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
	border-bottom: none !important;
	transition: color 0.3s ease;
}

.ethos-nav__back:hover {
	color: #C5A55A;
}


/* ===== Banner / Hero ===== */

.ethos-banner {
	position: relative;
	height: 100vh;
	min-height: 600px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-attachment: fixed;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

.ethos-banner__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		to bottom,
		rgba(10, 10, 12, 0.4) 0%,
		rgba(10, 10, 12, 0.2) 50%,
		rgba(10, 10, 12, 0.7) 100%
	);
}

.ethos-banner__content {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 2rem;
	transition: opacity 1.5s ease 0.3s;
}

.ethos-banner__content h1 {
	font-family: 'Playfair Display', serif;
	font-size: clamp(2.5rem, 6vw, 4.5rem);
	font-weight: 400;
	letter-spacing: 0.4rem;
	text-transform: uppercase;
	margin-bottom: 1rem;
}

.ethos-banner__content p {
	font-family: 'Inter', sans-serif;
	font-size: clamp(0.8rem, 1.5vw, 1rem);
	font-weight: 200;
	letter-spacing: 0.2rem;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.8;
}

.ethos-banner__scroll {
	margin-top: 3rem;
	font-family: 'Inter', sans-serif;
	font-size: 0.65rem;
	text-transform: uppercase;
	letter-spacing: 0.2rem;
	color: rgba(197, 165, 90, 0.6);
	animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
	0%, 100% { opacity: 0.4; transform: translateY(0); }
	50% { opacity: 0.8; transform: translateY(5px); }
}


/* ===== Content Sections ===== */

.ethos-section {
	padding: 6rem 2rem;
	background: #0a0a0c;
}

.ethos-section--dark {
	background: #070709;
}

.ethos-container {
	max-width: 1100px;
	margin: 0 auto;
}


/* ===== Label / Eyebrow Text ===== */

.ethos-label {
	display: block;
	font-family: 'Inter', sans-serif;
	font-size: 0.65rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.2rem;
	color: #C5A55A;
	margin-bottom: 1.5rem;
}


/* ===== Split Layout (Text + Image) ===== */

.ethos-split {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 4rem;
	align-items: center;
}

.ethos-split--reverse {
	grid-template-columns: 1fr 1.2fr;
}

.ethos-split--reverse .ethos-split__text {
	order: 2;
}

.ethos-split--reverse .ethos-split__image {
	order: 1;
}

.ethos-split__text h2 {
	font-family: 'Playfair Display', serif;
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: 0.05rem;
	text-transform: none;
	margin-bottom: 1.5rem;
}

.ethos-split__text h2 em {
	color: #C5A55A;
}

.ethos-split__text p {
	font-size: 0.9rem;
	line-height: 1.9;
	color: rgba(255, 255, 255, 0.65);
}

.ethos-split__image img {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	border-radius: 2px;
}


/* ===== Parallax Sections ===== */

.ethos-parallax {
	position: relative;
	min-height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background-attachment: fixed;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

.ethos-parallax__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(10, 10, 12, 0.65);
}

.ethos-parallax__content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 700px;
	padding: 4rem 2rem;
}

.ethos-parallax__content h2 {
	font-family: 'Playfair Display', serif;
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	font-weight: 400;
	text-transform: none;
	letter-spacing: 0.05rem;
	margin-bottom: 1.25rem;
}

.ethos-parallax__content h2 em {
	color: #C5A55A;
}

.ethos-parallax__content p {
	font-size: 0.9rem;
	line-height: 1.9;
	color: rgba(255, 255, 255, 0.7);
}


/* ===== 6-Tile Grid ===== */

.ethos-tiles-header {
	text-align: center;
	margin-bottom: 4rem;
}

.ethos-tiles-header .ethos-label {
	margin-bottom: 1rem;
}

.ethos-tiles-header h2 {
	font-family: 'Playfair Display', serif;
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	font-weight: 400;
	text-transform: none;
	letter-spacing: 0.05rem;
}

.ethos-tiles-header h2 em {
	color: #C5A55A;
}

.ethos-tiles {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.ethos-tile {
	padding: 2.5rem 2rem;
	border: 1px solid rgba(197, 165, 90, 0.15);
	border-radius: 2px;
	text-align: center;
	transition: all 0.4s ease;
	background: rgba(255, 255, 255, 0.015);
}

.ethos-tile:hover {
	border-color: rgba(197, 165, 90, 0.4);
	background: rgba(197, 165, 90, 0.04);
	transform: translateY(-4px);
}

.ethos-tile__icon {
	display: block;
	font-size: 1.75rem;
	color: #C5A55A;
	margin-bottom: 1.25rem;
}

.ethos-tile__icon:before {
	font-size: 1.75rem;
}

.ethos-tile h3 {
	font-family: 'Inter', sans-serif;
	font-size: 0.8rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.12rem;
	margin-bottom: 0.75rem;
}

.ethos-tile p {
	font-size: 0.8rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.55);
	margin-bottom: 0;
}


/* ===== Heart-Shaped Brand Wordcloud ===== */

.ethos-heart-cloud {
	margin-top: 2rem;
	max-width: 650px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.ethos-heart-cloud img {
	width: 100%;
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}

@media screen and (max-width: 640px) {
	.ethos-heart-cloud {
		max-width: 95%;
	}
}


/* ===== CTA Section ===== */

.ethos-cta {
	padding: 6rem 2rem;
	background: #070709;
	text-align: center;
}

.ethos-cta h2 {
	font-family: 'Playfair Display', serif;
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	font-weight: 400;
	text-transform: none;
	letter-spacing: 0.05rem;
	margin-bottom: 1rem;
}

.ethos-cta h2 em {
	color: #C5A55A;
}

.ethos-cta p {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.6);
	max-width: 550px;
	margin: 0 auto 2.5rem;
	line-height: 1.8;
}

.ethos-cta__buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}


/* ===== Footer ===== */

.ethos-footer {
	padding: 2.5rem 2rem;
	text-align: center;
	background: #050507;
}

.ethos-footer p {
	font-family: 'Inter', sans-serif;
	font-size: 0.6rem;
	text-transform: uppercase;
	letter-spacing: 0.15rem;
	color: rgba(255, 255, 255, 0.35);
	margin: 0;
}

.ethos-footer a {
	color: rgba(197, 165, 90, 0.5);
	border-bottom: none;
}

.ethos-footer a:hover {
	color: #C5A55A;
}


/* ===== Responsive ===== */

@media screen and (max-width: 968px) {
	.ethos-split {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.ethos-split--reverse .ethos-split__text {
		order: 1;
	}

	.ethos-split--reverse .ethos-split__image {
		order: 2;
	}

	.ethos-split__text {
		text-align: center;
	}

	.ethos-tiles {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 640px) {
	.ethos-section {
		padding: 4rem 1.5rem;
	}

	.ethos-tiles {
		grid-template-columns: 1fr;
	}

	.ethos-tile {
		padding: 2rem 1.5rem;
	}

	.ethos-parallax {
		min-height: 50vh;
		background-attachment: scroll;
	}

	.ethos-banner {
		background-attachment: scroll;
	}

	.ethos-cta__buttons {
		flex-direction: column;
		align-items: center;
	}
}
