.hero--section {
	padding-top: clamp(48px, 7vw, 96px);
	padding-bottom: clamp(64px, 8vw, 96px);
}

/* ── Headline ─────────────────────────────────────────── */
.hero--headline {
	margin: 0 0 30px;
}

.hero--headline em {
	color: var(--theme-accent);
	font-style: normal;
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

/* ── Grid ─────────────────────────────────────────────── */
.hero--grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(28px, 5vw, 80px);
	align-items: center;
}

@media (min-width: 821px) {
	.hero--grid {
		grid-template-columns: 2fr 3fr;
	}
}

/* ── Copy column ──────────────────────────────────────── */
.hero--copy {
	max-width: 560px;
}

.hero--body p {
	font-size: 19px;
	line-height: 1.55;
	color: var(--theme-ink-soft);
	max-width: 56ch;
	margin: 28px 0 0;
}

.hero--body p:first-child {
	margin-top: 0;
}

/* ── Actions ──────────────────────────────────────────── */
.hero--actions {
	margin-top: 36px;
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	align-items: center;
}

.hero--cta {
	padding: 14px 22px;
	border-radius: 999px;
	background: var(--theme-ink);
	color: var(--theme-bg);
	border: 1px solid var(--theme-ink);
	font-family: var(--theme-sans);
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.hero--cta:hover {
	background: var(--theme-accent);
	border-color: var(--theme-accent);
	color: var(--theme-on-accent);
	transform: translateY(-1px);
}

.hero--cta-ghost {
	display: inline-flex;
	align-items: center;
	padding: 14px 2px;
	font-family: var(--theme-sans);
	font-size: 14px;
	font-weight: 500;
	color: var(--theme-ink);
	text-decoration: none;
	transition: color .2s ease;
}

.hero--cta-ghost:hover {
	color: var(--theme-accent);
}

/* ── Media column ─────────────────────────────────────── */
.hero--media {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.hero--image {
	position: relative;
	border-radius: var(--theme-radius-lg);
	overflow: hidden;
	background: var(--theme-bg-soft);
	box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .18);
}

@media (max-width: 820px) {
	.hero--media {
		max-width: 480px;
		margin-left: auto;
		margin-right: auto;
	}
}

.hero--credit {
	margin: 0;
	font-family: var(--theme-sans);
	font-size: 12px;
	font-style: italic;
	color: var(--theme-muted);
	line-height: 1.4;
}
