/* Homepage — "Before the Bottle" landing */
.section-homepage {
	position: relative;
	width: 100%;
	min-height: calc(100vh - var(--header-height));
	display: flex;
	align-items: flex-start;
	justify-content: center;
	overflow: hidden;
	background: var(--color-cream);
}

/* Radial gold glow background */
.section-homepage::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 70% 80% at 50% 50%, #f2ca49 0%, transparent 70%);
	opacity: 0.45;
	pointer-events: none;
	z-index: 0;
}

.section-homepage__content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 100px;
	padding: 150px 50px;
	max-width: 1105px;
	text-align: center;
}

.section-homepage__text {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.section-homepage__title {
	font-family: var(--font-heading);
	font-size: 92px;
	line-height: 100px;
	color: var(--color-black);
	text-transform: uppercase;
	margin-bottom: 25px;
}

.section-homepage__body {
	font-family: var(--font-heading-reg);
	font-size: 24px;
	line-height: 36px;
	color: var(--color-black);
	text-transform: uppercase;
	max-width: 1036px;
}

.section-homepage__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 387px;
	height: 74px;
	border: 3px solid var(--color-black);
	border-radius: 40px;
	font-family: var(--font-heading-reg);
	font-size: 37px;
	color: var(--color-black);
	text-transform: uppercase;
	text-decoration: none;
	transition: background 0.2s, color 0.2s;
}

.section-homepage__cta:hover {
	background: var(--color-black);
	color: var(--color-cream);
}

/* Wine illustration — bottom right */
.section-homepage__illustration {
	position: absolute;
	right: 50px;
	bottom: 50px;
	width: 342px;
	height: 383px;
	z-index: 0;
	pointer-events: none;
}

.section-homepage__illustration img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Mobile */
@media (max-width: 768px) {
	.section-homepage {
		min-height: auto;
	}

	.section-homepage__content {
		padding: 100px 50px;
		gap: 80px;
	}

	.section-homepage__title {
		font-size: 70px;
		line-height: 80px;
	}

	.section-homepage__body {
		font-size: 20px;
		line-height: 30px;
	}

	.section-homepage__cta {
		width: 387px;
		max-width: 100%;
		height: 74px;
		font-size: 37px;
	}

	.section-homepage__illustration {
		display: none;
	}
}

@media (max-width: 480px) {
	.section-homepage__content {
		padding: 60px 24px;
		gap: 60px;
	}

	.section-homepage__title {
		font-size: 48px;
		line-height: 56px;
	}

	.section-homepage__body {
		font-size: 16px;
		line-height: 26px;
	}

	.section-homepage__cta {
		width: 300px;
		height: 60px;
		font-size: 28px;
	}
}
