.home-page {
	overflow-x: hidden;
}

.home-hero {
	position: relative;
	height: 90vh;
	display: flex;
	align-items: center;
	justify-content: center;
}
.home-hero-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.home-hero-overlay {
	position: absolute;
	inset: 0;
	background: rgba(42, 35, 32, 0.55);
}
.home-hero-content {
	position: relative;
	max-width: 55ch;
	text-align: center;
	color: var(--color-text-inverse);
	display: flex;
	flex-direction: column;
	gap: var(--space-2);
}
.home-hero-content h1 {
	margin-bottom: 0;
}
.home-hero-content p {
    color: #fff;
}
.home-concept-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--space-3);
	margin-top: var(--space-4);
}
.home-concept-item {
	min-width: 0;
	text-align: center;
	padding: var(--space-3);
	border-top: 1px solid var(--color-accent-gold);
}

.home-culinary-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-4);
	align-items: center;
}
.home-culinary-text {
	min-width: 0;
	max-width: 60ch;
}
.home-culinary-image img {
	width: 100%;
}

.home-events-intro {
	max-width: 60ch;
	margin: 0 auto var(--space-4);
	text-align: center;
}
.home-events-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: var(--space-3);
}
.home-event-card {
	min-width: 0;
	text-align: center;
}

.home-music-text {
	max-width: 55ch;
	margin: 0 auto;
    color: #fff;
	text-align: center;
}

.home-interior-image {
	width: 100%;
	max-height: 500px;
	object-fit: cover;
}
.home-interior-text {
	max-width: 65ch;
	margin: 0 auto;
	text-align: center;
}

.home-audience-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--space-3);
}
.home-audience-item {
	min-width: 0;
	text-align: center;
}

.home-testimonial-slider {
	position: relative;
	max-width: 60ch;
	margin: 0 auto;
	text-align: center;
}
.home-testimonial {
	display: none;
}
.home-testimonial.active {
	display: block;
}

.home-cta {
	display: flex;
	justify-content: center;
}
.home-cta-card {
	background: var(--color-surface-contrast);
	padding: var(--space-4);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-soft);
	max-width: 500px;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: var(--space-2);
}

@media (max-width: 1000px) {
	.home-concept-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.home-events-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.home-culinary-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 600px) {
	.home-concept-grid {
		grid-template-columns: 1fr;
	}
	.home-events-grid {
		grid-template-columns: 1fr;
	}
	.home-audience-grid {
		grid-template-columns: 1fr;
	}
	.home-hero {
		height: 80vh;
	}
}
