/* ============================================================
   LEMED SPA — Service Detail Pages
   Shared layout for all 4 service categories
   ============================================================ */


/* ===== Base ===== */

body {
	background: #0a0a0c;
	overflow-x: hidden;
}

body.is-preload .svc-banner__content,
body.is-preload .svc-nav {
	opacity: 0;
}


/* ===== Fade-In ===== */

.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 ===== */

.svc-nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 1.5rem 2.5rem;
	z-index: 100;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: opacity 1s ease 0.5s;
}

.svc-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;
}

.svc-nav__back:hover {
	color: #C5A55A;
}

.svc-nav__links {
	display: flex;
	gap: 1.5rem;
}

.svc-nav__link {
	font-family: 'Inter', sans-serif;
	font-size: 0.6rem;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.12rem;
	color: rgba(255, 255, 255, 0.35);
	text-decoration: none;
	border-bottom: none !important;
	transition: color 0.3s ease;
}

.svc-nav__link:hover {
	color: rgba(255, 255, 255, 0.7);
}

.svc-nav__link--active {
	color: #C5A55A;
}


/* ===== Banner ===== */

.svc-banner {
	position: relative;
	height: 50vh;
	min-height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-attachment: fixed;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

.svc-banner__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		to bottom,
		rgba(10, 10, 12, 0.5) 0%,
		rgba(10, 10, 12, 0.3) 50%,
		rgba(10, 10, 12, 0.85) 100%
	);
}

.svc-banner__content {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 2rem;
	transition: opacity 1.5s ease 0.3s;
}

.svc-banner__content h1 {
	font-family: 'Playfair Display', serif;
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 400;
	letter-spacing: 0.3rem;
	text-transform: uppercase;
	margin-bottom: 0.75rem;
}

.svc-banner__content p {
	font-family: 'Inter', sans-serif;
	font-size: clamp(0.75rem, 1.3vw, 0.9rem);
	font-weight: 200;
	letter-spacing: 0.15rem;
	color: rgba(255, 255, 255, 0.55);
	line-height: 1.7;
	max-width: 500px;
	margin: 0 auto;
}


/* ===== Content Sections ===== */

.svc-section {
	padding: 5rem 2rem;
	background: #0a0a0c;
}

.svc-section--dark {
	background: #070709;
}

.svc-container {
	max-width: 900px;
	margin: 0 auto;
}


/* ===== Label ===== */

.svc-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: 1rem;
}


/* ===== Treatment List ===== */

.svc-treatments {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.svc-treatment {
	padding: 2rem 2.25rem;
	border: 1px solid rgba(197, 165, 90, 0.12);
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.015);
	transition: border-color 0.3s ease;
}

.svc-treatment:hover {
	border-color: rgba(197, 165, 90, 0.3);
}

.svc-treatment h3 {
	font-family: 'Inter', sans-serif;
	font-size: 0.85rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
	margin-bottom: 0.5rem;
}

.svc-treatment p {
	font-size: 0.8rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.55);
	margin-bottom: 0;
}

.svc-treatment__tag {
	display: inline-block;
	margin-top: 0.75rem;
	font-family: 'Inter', sans-serif;
	font-size: 0.55rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.12rem;
	color: rgba(197, 165, 90, 0.7);
	padding: 0.3rem 0.75rem;
	border: 1px solid rgba(197, 165, 90, 0.2);
	border-radius: 2px;
}


/* ===== Intro Text ===== */

.svc-intro {
	margin-bottom: 3rem;
}

.svc-intro h2 {
	font-family: 'Playfair Display', serif;
	font-size: clamp(1.3rem, 2.5vw, 1.75rem);
	font-weight: 400;
	text-transform: none;
	letter-spacing: 0.03rem;
	margin-bottom: 1.25rem;
}

.svc-intro h2 em {
	color: #C5A55A;
}

.svc-intro p {
	font-size: 0.9rem;
	line-height: 1.9;
	color: rgba(255, 255, 255, 0.6);
}


/* ===== CTA ===== */

.svc-cta {
	padding: 5rem 2rem;
	background: #070709;
	text-align: center;
}

.svc-cta h2 {
	font-family: 'Playfair Display', serif;
	font-size: clamp(1.3rem, 2.5vw, 1.75rem);
	font-weight: 400;
	text-transform: none;
	letter-spacing: 0.05rem;
	margin-bottom: 0.75rem;
}

.svc-cta h2 em {
	color: #C5A55A;
}

.svc-cta p {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.55);
	max-width: 450px;
	margin: 0 auto 2rem;
	line-height: 1.8;
}

.svc-cta__buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}


/* ===== Footer ===== */

.svc-footer {
	padding: 2.5rem 2rem;
	text-align: center;
	background: #050507;
}

.svc-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;
}

.svc-footer a {
	color: rgba(197, 165, 90, 0.5);
	border-bottom: none;
}

.svc-footer a:hover {
	color: #C5A55A;
}


/* ===== Responsive ===== */

@media screen and (max-width: 768px) {
	.svc-nav__links {
		display: none;
	}

	.svc-treatment {
		padding: 1.5rem;
	}
}

@media screen and (max-width: 640px) {
	.svc-section {
		padding: 3.5rem 1.5rem;
	}

	.svc-banner {
		height: 45vh;
		background-attachment: scroll;
	}

	.svc-cta__buttons {
		flex-direction: column;
		align-items: center;
	}
}
