.demo-1 {
	--color-text: #fff;
	--color-bg: #000;
	--color-link: #fff;
	--color-link-hover: #ffd700;
	--color-info: #ffd700;
	--color-title: #fff;
	--color-subtitle: #fff;
	--color-subtitle-bg: rgba(255, 215, 0, 0.14);
	--color-accent: #ffd700;
}

.content__title {
	font-family: 'Playfair Display', serif;
	font-size: clamp(4rem, 11vw, 10rem);
	font-weight: normal;
	color: var(--color-title);
	text-align: center;
	margin: 0;
	line-height: 0.9;
	pointer-events: none;
	text-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
}

.content__subtitle {
	font-size: 0.9rem;
	background: var(--color-subtitle-bg);
	color: var(--color-subtitle);
	padding: 0.7rem 1rem;
	line-height: 1;
	margin: 1rem 0 0;
	letter-spacing: 0.24em;
	text-indent: 0.24em;
	font-weight: bold;
	text-transform: uppercase;
	border: 1px solid rgba(255, 215, 0, 0.24);
	border-radius: 999px;
	backdrop-filter: blur(10px);
	box-shadow: 0 18px 60px rgba(255, 215, 0, 0.08);
}

.hero-kicker {
	margin: 0 0 1rem;
	color: var(--color-accent);
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.hero-actions {
	display: flex;
	gap: 0.85rem;
	justify-content: center;
	margin-top: 1.5rem;
	flex-wrap: wrap;
}

.hero-actions a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0.75rem 1.15rem;
	border-radius: 8px;
	color: #000;
	background: #ffd700;
	font-weight: 700;
	transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.hero-actions a:hover {
	color: #000;
	background: #ffd700;
	transform: translateY(-2px);
}

@media screen and (max-width: 55em) {
	.content__title {
		font-size: 3.6rem;
	}
	.content__subtitle {
		font-size: 0.75rem;
		letter-spacing: 0.12em;
		text-indent: 0.12em;
	}
}
