/**
 * So Lash homepage styles
 */

.home .so-lash-main {
	padding: 0;
	max-width: none;
}

.so-lash-home {
	overflow: hidden;
}

.so-lash-home-eyebrow {
	margin: 0 0 12px;
	font-family: var(--so-lash-font-sans);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--so-lash-accent);
}

.so-lash-home-eyebrow--light {
	color: rgba(255, 255, 255, 0.9);
}

.so-lash-home-title {
	margin: 0 0 20px;
	font-family: var(--so-lash-font-serif);
	font-size: clamp(1.75rem, 3.5vw, 2.75rem);
	font-weight: 500;
	line-height: 1.2;
	color: var(--so-lash-black);
}

.so-lash-home-title--light {
	color: var(--so-lash-white);
}

.so-lash-home-subtitle {
	max-width: 640px;
	margin: 0 auto 40px;
	text-align: center;
	color: var(--so-lash-text-muted);
}

/* Hero slider */
.so-lash-home-hero {
	position: relative;
	height: clamp(320px, 55vw, 620px);
	overflow: hidden;
	background: #111;
}

.so-lash-home-hero__slide {
	position: absolute;
	inset: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 0;
	transition: opacity 1.2s ease;
}

.so-lash-home-hero__slide.is-active {
	opacity: 1;
}

/* About */
.so-lash-home-about {
	padding: 80px 0;
	background: #F5F5F5;
}

.so-lash-home-about__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 48px;
	align-items: center;
}

.so-lash-home-about__content {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 0;
}

.so-lash-home-about__media {
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: var(--so-lash-btn-radius);
	overflow: hidden;
}

.so-lash-home-about__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.so-lash-home-split__media {
	width: 100%;
	max-height: 380px;
	aspect-ratio: 4 / 3;
	border-radius: var(--so-lash-btn-radius);
	overflow: hidden;
}

.so-lash-home-split__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.so-lash-home-final__media img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 12px;
}

.so-lash-home-about__content p {
	line-height: 1.8;
}

.so-lash-home-stats {
	display: flex;
	gap: 48px;
	margin-top: 32px;
}

.so-lash-home-stat__number {
	margin: 0;
	font-family: var(--so-lash-font-serif);
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	line-height: 1;
	color: var(--so-lash-accent);
}

.so-lash-home-stat__suffix {
	font-size: 0.65em;
}

.so-lash-home-stat__label {
	margin: 8px 0 0;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.18em;
	color: var(--so-lash-accent);
}

.so-lash-home-services__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	width: 100%;
	margin-top: 36px;
}

.so-lash-home-service {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 140px;
	padding: 24px 16px;
	background: var(--so-lash-cream);
	text-align: center;
	border-radius: var(--so-lash-btn-radius);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.so-lash-home-service:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
	color: var(--so-lash-text);
}

.so-lash-home-service img {
	width: 56px;
	height: 56px;
	object-fit: contain;
}

.so-lash-home-service span {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.2em;
}

/* CTA blocks */
.so-lash-home-cta {
	position: relative;
	padding: 72px 0;
}

.so-lash-home-cta--light {
	background: var(--so-lash-page-bg);
}

.so-lash-home-cta--image {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	color: var(--so-lash-white);
}

.so-lash-home-cta__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
}

.so-lash-home-cta__inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.so-lash-home-cta__inner--center {
	flex-direction: column;
	text-align: center;
}

.so-lash-home-cta--image p {
	max-width: 720px;
	margin: 0 0 24px;
	color: rgba(255, 255, 255, 0.9);
}

/* Split section */
.so-lash-home-split {
	padding: 80px 0;
	background: var(--so-lash-page-bg);
}

.so-lash-home-split__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 48px;
	align-items: center;
}

.so-lash-home-split__content p {
	color: var(--so-lash-text-muted);
	line-height: 1.8;
}

.so-lash-home-rating {
	display: flex;
	align-items: baseline;
	gap: 16px;
	margin-top: 24px;
}

.so-lash-home-rating strong {
	font-family: var(--so-lash-font-serif);
	font-size: 2rem;
	color: var(--so-lash-black);
}

.so-lash-home-rating span {
	font-size: 14px;
	color: var(--so-lash-text-muted);
}

/* Quality banner */
.so-lash-home-quality {
	position: relative;
	padding: 100px 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	color: var(--so-lash-white);
}

.so-lash-home-quality__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
}

.so-lash-home-quality__content {
	position: relative;
	z-index: 1;
	max-width: 760px;
}

.so-lash-home-quality__content p {
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.8;
}

/* Testimonials */
.so-lash-home-testimonials {
	padding: 80px 0;
	background: var(--so-lash-page-bg);
	text-align: center;
}

.so-lash-home-testimonials__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	text-align: left;
}

.so-lash-home-testimonial {
	margin: 0;
	padding: 28px;
	background: var(--so-lash-cream);
	border-left: 3px solid var(--so-lash-accent);
}

.so-lash-home-testimonial p {
	margin: 0 0 16px;
	font-style: italic;
	color: var(--so-lash-text-muted);
	line-height: 1.7;
}

.so-lash-home-testimonial cite {
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	color: var(--so-lash-black);
}

/* Final about */
.so-lash-home-final {
	padding: 80px 0;
	background: var(--so-lash-page-bg);
}

.so-lash-home-final__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

.so-lash-home-final__content p {
	color: var(--so-lash-text-muted);
	margin-bottom: 24px;
}

/* Responsive */
@media (max-width: 992px) {
	.so-lash-home-about__grid,
	.so-lash-home-split__grid,
	.so-lash-home-final__grid {
		grid-template-columns: 1fr;
	}

	.so-lash-home-services__grid {
		margin-top: 28px;
	}

	.so-lash-home-testimonials__grid {
		grid-template-columns: 1fr;
	}

	.so-lash-home-cta__inner {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 640px) {
	.so-lash-home-about,
	.so-lash-home-split,
	.so-lash-home-testimonials,
	.so-lash-home-final {
		padding: 56px 0;
	}

	.so-lash-home-stats {
		gap: 32px;
	}
}
