/* Dave Portnoy Section */
.section-dave {
	position: relative;
	height: 876px;
	overflow: hidden;
	background: linear-gradient(to bottom, var(--color-green-wine) 115px, var(--color-cream) 115px);
}

/* Image wrapper: slightly inset from top/bottom per Figma (inset: 0.3% 0 0.59% 0) */
.section-dave__bg {
	position: absolute;
	top: 0.3%;
	left: 0;
	right: 0;
	bottom: 0.59%;
	overflow: hidden;
	pointer-events: none;
}

/* Image: cover the wrapper, anchored right-top — shows Dave's face on the right */
.section-dave__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: right top;
}

.section-dave__content {
	position: absolute;
	left: 8.86%;
	top: 32.96%;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.section-dave__title {
	font-family: var(--font-heading);
	font-size: clamp(48px, 6.67vw, 96px);
	font-weight: bold;
	line-height: 0.95;
	color: var(--color-gold);
	text-align: center;
}

.section-dave__text {
	font-family: var(--font-body);
	font-size: clamp(14px, 1.58vw, 22px);
	line-height: normal;
	color: var(--color-gold-dark, #b28e56);
	text-align: center;
	max-width: 470px;
}

@media (max-width: 768px) {
	.section-dave {
		height: auto;
		background: var(--color-cream);
		overflow: visible;
		display: flex;
		flex-direction: column;
	}

	.section-dave__bg {
		position: relative;
		top: auto;
		bottom: auto;
		left: auto;
		right: auto;
		overflow: visible;
		order: 2;
	}

	.section-dave__image {
		position: relative;
		inset: auto;
		width: 100%;
		height: auto;
		object-fit: contain;
		object-position: center top;
		display: block;
		margin-bottom: -20px;
	}

	.section-dave__content {
		position: relative;
		left: auto;
		right: auto;
		top: auto;
		transform: none;
		width: 100%;
		padding: 48px 30px 0;
		align-items: center;
		order: 1;
	}

	.section-dave__title { font-size: 48px; }
	.section-dave__text { font-size: 16px; }
}
