/* ============================================================
   LEMED SPA — Our Results Page
   Gallery, testimonials, before/after
   ============================================================ */


/* ===== Base ===== */

body {
	background: #0a0a0c;
	overflow-x: hidden;
}

body.is-preload .results-banner__content,
body.is-preload .results-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 ===== */

.results-nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 1.5rem 2.5rem;
	z-index: 100;
	transition: opacity 1s ease 0.5s;
}

.results-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;
}

.results-nav__back:hover {
	color: #C5A55A;
}


/* ===== Banner ===== */

.results-banner {
	position: relative;
	height: 70vh;
	min-height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-attachment: fixed;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

.results-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.8) 100%
	);
}

.results-banner__content {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 2rem;
	transition: opacity 1.5s ease 0.3s;
}

.results-banner__content h1 {
	font-family: 'Playfair Display', serif;
	font-size: clamp(2.5rem, 6vw, 4rem);
	font-weight: 400;
	letter-spacing: 0.35rem;
	text-transform: uppercase;
	margin-bottom: 1rem;
}

.results-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;
}


/* ===== Sections ===== */

.results-section {
	padding: 5rem 2rem;
	background: #0a0a0c;
}

.results-section--dark {
	background: #070709;
}

.results-container {
	max-width: 1100px;
	margin: 0 auto;
}


/* ===== Label ===== */

.results-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;
}


/* ===== Section Header ===== */

.results-header {
	text-align: center;
	margin-bottom: 3.5rem;
}

.results-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;
	margin-bottom: 1rem;
}

.results-header h2 em {
	color: #C5A55A;
}

.results-header p {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.55);
	max-width: 550px;
	margin: 0 auto;
	line-height: 1.8;
}


/* ===== Rating Cards ===== */

.results-ratings {
	display: flex;
	justify-content: center;
	gap: 2.5rem;
	flex-wrap: wrap;
}

.results-rating {
	text-align: center;
	padding: 2.5rem 3rem;
	border: 1px solid rgba(197, 165, 90, 0.15);
	border-radius: 2px;
	min-width: 220px;
	background: rgba(255, 255, 255, 0.015);
}

.results-rating__stars {
	font-size: 1.25rem;
	color: #C5A55A;
	letter-spacing: 0.15em;
	margin-bottom: 0.75rem;
}

.results-rating__score {
	font-family: 'Playfair Display', serif;
	font-size: 3rem;
	color: #ffffff;
	line-height: 1;
	margin-bottom: 0.5rem;
}

.results-rating__source {
	font-family: 'Inter', sans-serif;
	font-size: 0.6rem;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: rgba(255, 255, 255, 0.4);
	margin-bottom: 1rem;
}

.results-rating__link {
	font-family: 'Inter', sans-serif;
	font-size: 0.65rem;
	font-weight: 500;
	color: #C5A55A;
	border-bottom: none !important;
	transition: color 0.3s ease;
}

.results-rating__link:hover {
	color: #d4b76e;
}


/* ===== Treatment Gallery ===== */

.results-gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

.results-gallery__item {
	position: relative;
	overflow: hidden;
	border-radius: 2px;
	cursor: pointer;
}

.results-gallery__item img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	transition: transform 0.6s ease, filter 0.6s ease;
}

.results-gallery__item:hover img {
	transform: scale(1.08);
	filter: brightness(0.7);
}

.results-gallery__overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 1.25rem;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.4s ease, transform 0.4s ease;
}

.results-gallery__item:hover .results-gallery__overlay {
	opacity: 1;
	transform: translateY(0);
}

.results-gallery__overlay span {
	font-family: 'Inter', sans-serif;
	font-size: 0.7rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.12rem;
	color: #C5A55A;
}


/* ===== Testimonials ===== */

.results-testimonials {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

.results-testimonial {
	padding: 2rem 2.25rem;
	background: rgba(255, 255, 255, 0.02);
	border-left: 3px solid #C5A55A;
	border-radius: 0 2px 2px 0;
}

.results-testimonial p {
	font-family: 'Playfair Display', serif;
	font-size: 0.85rem;
	font-style: italic;
	line-height: 1.9;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 1.25rem;
}

.results-testimonial cite {
	display: flex;
	flex-direction: column;
	font-style: normal;
}

.results-testimonial__name {
	font-family: 'Inter', sans-serif;
	font-size: 0.75rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.8);
}

.results-testimonial__source {
	font-family: 'Inter', sans-serif;
	font-size: 0.6rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: rgba(197, 165, 90, 0.6);
	margin-top: 2px;
}


/* ===== Celebrity Clients ===== */

.results-celebrities {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.results-celebrity {
	display: block;
	padding: 2.5rem 2rem;
	border: 1px solid rgba(197, 165, 90, 0.15);
	border-radius: 2px;
	text-align: center;
	text-decoration: none;
	border-bottom: none;
	background: rgba(255, 255, 255, 0.015);
	transition: all 0.3s ease;
}

.results-celebrity:hover {
	border-color: rgba(197, 165, 90, 0.4);
	background: rgba(197, 165, 90, 0.04);
	transform: translateY(-3px);
}

.results-celebrity__icon {
	margin-bottom: 1rem;
}

.results-celebrity__icon .icon {
	font-size: 2rem;
	color: rgba(197, 165, 90, 0.5);
}

.results-celebrity__icon .icon:before {
	font-size: 2rem;
}

.results-celebrity:hover .results-celebrity__icon .icon {
	color: #C5A55A;
}

.results-celebrity h3 {
	font-family: 'Playfair Display', serif;
	font-size: 1.1rem;
	font-weight: 400;
	text-transform: none;
	letter-spacing: 0.02rem;
	margin-bottom: 0.5rem;
	color: #fff;
}

.results-celebrity p {
	font-size: 0.75rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.45);
	margin-bottom: 1rem;
}

.results-celebrity__link {
	font-family: 'Inter', sans-serif;
	font-size: 0.6rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
	color: #C5A55A;
}

@media screen and (max-width: 968px) {
	.results-celebrities {
		grid-template-columns: 1fr;
		max-width: 400px;
		margin: 0 auto;
	}
}


/* ===== Coming Soon Cards ===== */

.results-coming-soon {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}

.results-coming-soon__card {
	padding: 3rem 2.5rem;
	border: 1px solid rgba(197, 165, 90, 0.15);
	border-radius: 2px;
	text-align: center;
	background: rgba(255, 255, 255, 0.015);
}

.results-coming-soon__card .icon {
	font-size: 2rem;
	color: rgba(197, 165, 90, 0.4);
	margin-bottom: 1.25rem;
}

.results-coming-soon__card .icon:before {
	font-size: 2rem;
}

.results-coming-soon__card h3 {
	font-family: 'Inter', sans-serif;
	font-size: 0.85rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
	margin-bottom: 0.75rem;
}

.results-coming-soon__card p {
	font-size: 0.8rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 1.25rem;
}

.results-coming-soon__tag {
	display: inline-block;
	font-family: 'Inter', sans-serif;
	font-size: 0.55rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.15rem;
	color: #C5A55A;
	padding: 0.4rem 1rem;
	border: 1px solid rgba(197, 165, 90, 0.3);
	border-radius: 2px;
}


/* ===== CTA ===== */

.results-cta {
	padding: 6rem 2rem;
	background: #070709;
	text-align: center;
}

.results-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;
}

.results-cta h2 em {
	color: #C5A55A;
}

.results-cta p {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.6);
	max-width: 500px;
	margin: 0 auto 2.5rem;
	line-height: 1.8;
}

.results-cta__buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}


/* ===== Footer ===== */

.results-footer {
	padding: 2.5rem 2rem;
	text-align: center;
	background: #050507;
}

.results-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;
}

.results-footer a {
	color: rgba(197, 165, 90, 0.5);
	border-bottom: none;
}

.results-footer a:hover {
	color: #C5A55A;
}


/* ===== Responsive ===== */

@media screen and (max-width: 968px) {
	.results-testimonials {
		grid-template-columns: 1fr;
	}

	.results-coming-soon {
		grid-template-columns: 1fr;
	}
}

@media screen and (max-width: 640px) {
	.results-section {
		padding: 3.5rem 1.5rem;
	}

	.results-gallery {
		grid-template-columns: repeat(2, 1fr);
	}

	.results-rating {
		padding: 1.75rem 2rem;
		min-width: 160px;
	}

	.results-rating__score {
		font-size: 2.25rem;
	}

	.results-banner {
		height: 60vh;
		background-attachment: scroll;
	}

	.results-testimonial {
		padding: 1.5rem;
	}

	.results-cta__buttons {
		flex-direction: column;
		align-items: center;
	}
}
