/* Finishes Section */
.home-finishes {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 80px 40px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
}

.home-finishes__container {
	position: relative;
    z-index: 2;
    max-width: 1140px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.home-finishes__image-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.home-finishes__image-frame {
	position: relative;
	padding: 40px;
	border-radius: 4px;
}

.home-finishes__image-frame::before {
	content: '';
	position: absolute;
	top: 20px;
	left: 20px;
	right: 20px;
	bottom: 20px;
	border-radius: 2px;
	pointer-events: none;
}

.home-finishes__image {
	display: block;
	width: 100%;
	max-width: 500px;
	height: auto;
	border-radius: 4px;
}

.home-finishes__content {
	color: #fff;
	padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.home-finishes__title {
	font-family: 'Arches';
	font-size: 3.5rem;
	font-weight: 300;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	margin: 0 0 15px 0;
	line-height: 1.2;
	color: #fff;
    text-align: center;
}

.home-finishes__subtitle {
	font-family: 'Rota', sans-serif;
	font-size: 1.1rem;
	font-weight: 300;
	letter-spacing: 0.02em;
	margin: 0 0 10px 0;
	color: #fff;
	opacity: 0.9;
}

.home-finishes__divider {
	width: 1px;
	height: 80px;
	background: rgba(255, 255, 255, 0.3);
	margin: 10px 0;
}

.home-finishes__description {
	font-family: 'Cormorant Infant', serif;
	font-size: 1.2rem;
	font-weight: 300;
	line-height: 1.8;
	margin: 0;
	color: #fff;
	opacity: 0.95;
	text-align: center;
}

/* Responsive Design */
@media (max-width: 1200px) {
	.home-finishes__container {
		gap: 60px;
	}

	.home-finishes__title {
		font-size: 3rem;
	}

	.home-finishes__subtitle {
		font-size: 1rem;
	}

	.home-finishes__description {
		font-size: 1.1rem;
	}
}

@media (max-width: 1024px) {
	.home-finishes {
		padding: 60px 30px;
		min-height: auto;
	}

	.home-finishes__container {
		grid-template-columns: 1fr;
		gap: 50px;
		text-align: center;
	}

	.home-finishes__image-frame {
		padding: 30px;
	}

	.home-finishes__image {
		max-width: 400px;
	}

	.home-finishes__content {
		padding: 0;
	}

	.home-finishes__divider {
		margin: 30px auto;
	}
}

@media (max-width: 768px) {
	.home-finishes {
		padding: 40px 20px;
	}

	.home-finishes__container {
		gap: 40px;
	}

	.home-finishes__image-frame {
		padding: 20px;
	}

	.home-finishes__image {
		max-width: 350px;
	}

	.home-finishes__title {
		font-size: 2.2rem;
		margin-bottom: 12px;
	}

	.home-finishes__subtitle {
		font-size: 0.9rem;
		margin-bottom: 30px;
	}

	.home-finishes__divider {
		height: 60px;
		margin: 25px auto;
	}

	.home-finishes__description {
		font-size: 1rem;
		line-height: 1.7;
	}
}

@media (max-width: 480px) {
	.home-finishes {
		padding: 30px 15px;
	}

	.home-finishes__container {
		gap: 30px;
	}

	.home-finishes__image-frame {
		padding: 15px;
		border-width: 1px;
	}

	.home-finishes__image-frame::before {
		top: 10px;
		left: 10px;
		right: 10px;
		bottom: 10px;
	}

	.home-finishes__image {
		max-width: 280px;
	}

	.home-finishes__title {
		font-size: 1.8rem;
	}

	.home-finishes__subtitle {
		font-size: 0.85rem;
	}

	.home-finishes__divider {
		height: 50px;
		margin: 20px auto;
	}

	.home-finishes__description {
		font-size: 0.95rem;
	}
}
