.html-sitemap-page {
	--hs-bg: #f6f1ea;
	--hs-ink: #3d2b1f;
	--hs-accent: #c4a574;
	--hs-muted: rgba(61, 43, 31, 0.65);
	background: var(--hs-bg);
	color: var(--hs-ink);
}

.html-sitemap-hero {
	padding: 120px 20px 40px;
	background:
		radial-gradient(ellipse 70% 55% at 12% 20%, rgba(196, 165, 116, 0.18), transparent 55%),
		linear-gradient(160deg, #1a1410 0%, #2c2118 55%, #1a1410 100%);
	color: #fff;
}

.html-sitemap-hero__inner {
	max-width: 1100px;
	margin: 0 auto;
}

.html-sitemap-hero__eyebrow {
	display: inline-block;
	font-family: var(--wp--preset--font-family--sans, "Manrope", sans-serif);
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--hs-accent);
	border-bottom: 2px solid var(--hs-accent);
	padding-bottom: 6px;
	margin-bottom: 16px;
}

.html-sitemap-hero__title {
	font-family: var(--wp--preset--font-family--serif, "Literata", serif);
	font-size: clamp(2.2rem, 4vw, 3.4rem);
	line-height: 1.15;
	margin: 0 0 14px;
	font-weight: 700;
}

.html-sitemap-hero__lead {
	font-family: var(--wp--preset--font-family--sans, "Manrope", sans-serif);
	font-size: 1.0625rem;
	line-height: 1.6;
	max-width: 640px;
	margin: 0;
	color: rgba(255, 255, 255, 0.88);
}

.html-sitemap {
	max-width: 1180px;
	margin: 0 auto;
	padding: 40px 20px 100px;
}

.html-sitemap__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.html-sitemap__card {
	background: #fff;
	border: 1px solid rgba(196, 165, 116, 0.18);
	border-radius: 22px;
	padding: 24px 22px 20px;
	box-shadow: 0 14px 36px rgba(61, 43, 31, 0.05);
}

.html-sitemap__heading {
	font-family: var(--wp--preset--font-family--serif, "Literata", serif);
	font-size: 1.35rem;
	font-weight: 700;
	margin: 0 0 16px;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(61, 43, 31, 0.08);
	color: var(--hs-ink);
}

.html-sitemap__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 8px;
}

.html-sitemap__list a {
	display: block;
	font-family: var(--wp--preset--font-family--sans, "Manrope", sans-serif);
	font-size: 0.9375rem;
	line-height: 1.4;
	color: var(--hs-ink);
	text-decoration: none;
	padding: 8px 10px;
	border-radius: 10px;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.html-sitemap__list a:hover,
.html-sitemap__list a:focus-visible {
	background: rgba(196, 165, 116, 0.14);
	color: #6f5230;
	outline: none;
}

@media (max-width: 991px) {
	.html-sitemap__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
}

@media (max-width: 640px) {
	.html-sitemap-hero {
		padding: 96px 16px 24px;
	}

	.html-sitemap-hero__title {
		font-size: 1.75rem;
		margin-bottom: 8px;
	}

	.html-sitemap-hero__lead {
		font-size: 0.9rem;
		line-height: 1.45;
	}

	.html-sitemap {
		padding: 16px 12px 64px;
	}

	.html-sitemap__grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.html-sitemap__card {
		padding: 16px 14px 12px;
		border-radius: 16px;
	}

	.html-sitemap__heading {
		font-size: 1.15rem;
		margin-bottom: 10px;
		padding-bottom: 8px;
	}

	.html-sitemap__list {
		gap: 4px;
	}

	.html-sitemap__list a {
		font-size: 0.875rem;
		padding: 7px 8px;
	}
}
