.promise--section {
	background: var(--theme-bg-soft);
}

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

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

/* ── Copy column ──────────────────────────────────────── */
.promise--eyebrow {
	display: block;
	margin-bottom: 14px;
}

.promise--headline {
	max-width: 18ch;
	margin: 0;
}

.promise--headline em {
	color: var(--theme-accent);
	font-style: normal;
}

.promise--body {
	margin: 22px 0 0;
}

.promise--body p {
	margin: 0 0 1em;
}

.promise--body p:last-child {
	margin-bottom: 0;
}

.promise--actions {
	margin-top: 32px;
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	align-items: center;
}

.promise--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;
}

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

.promise--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;
}

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

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

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

.promise--video-frame {
	position: relative;
	border-radius: var(--theme-radius-lg);
	overflow: hidden;
	background: var(--theme-bg-dark);
	box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .25);
	cursor: pointer;
}

.promise--video {
	display: block;
	width: 100%;
	height: auto;
}

.promise--video-frame::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, .35), transparent 50%);
	pointer-events: none;
	transition: opacity .25s ease;
	z-index: 1;
}

.promise--video-frame.is-playing::after {
	opacity: 0;
}

.promise--video-play {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 84px;
	height: 84px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .92);
	display: flex;
	align-items: center;
	justify-content: center;
	border: 0;
	cursor: pointer;
	color: var(--theme-ink);
	z-index: 2;
	transition: transform .2s ease, background .2s ease, opacity .25s ease;
}

.promise--video-play:hover {
	transform: translate(-50%, -50%) scale(1.06);
	background: #fff;
}

.promise--video-play svg {
	width: 24px;
	height: 24px;
	margin-left: 3px;
}

.promise--video-frame.is-playing .promise--video-play {
	opacity: 0;
	pointer-events: none;
}

.promise--video-meta {
	position: absolute;
	left: 18px;
	bottom: 18px;
	font-family: var(--theme-sans);
	font-size: 12px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .85);
	z-index: 2;
	pointer-events: none;
	transition: opacity .25s ease;
}

.promise--video-frame.is-playing .promise--video-meta {
	opacity: 0;
}

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