:root {
	--egh-ink: #121518;
	--egh-night: #171d27;
	--egh-night-soft: #212a37;
	--egh-cream: #f7f2e7;
	--egh-paper: #f5f0e6;
	--egh-paper-dark: #e8ddc7;
	--egh-brass: #c5a04d;
	--egh-brass-soft: rgba(197, 160, 77, 0.18);
	--egh-coral: #f36c51;
	--egh-teal: #2f8f98;
	--egh-slate: #667085;
	--egh-shadow: 0 24px 80px rgba(18, 21, 24, 0.14);
	--egh-shadow-soft: 0 12px 36px rgba(18, 21, 24, 0.08);
	--egh-radius: 24px;
	--egh-radius-small: 18px;
	--egh-content: 760px;
	--egh-wide: 1200px;
	--egh-transition: 220ms ease;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background:
		radial-gradient(circle at top left, rgba(243, 108, 81, 0.1), transparent 28rem),
		radial-gradient(circle at top right, rgba(47, 143, 152, 0.13), transparent 22rem),
		linear-gradient(180deg, #faf6ee 0%, var(--egh-paper) 100%);
	color: var(--egh-ink);
	font-family: "Space Grotesk", "Segoe UI", sans-serif;
	line-height: 1.7;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

a:hover,
a:focus-visible {
	color: var(--egh-coral);
}

button,
input,
textarea,
select {
	font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 0.75rem;
	font-family: "Cormorant Garamond", Georgia, serif;
	font-weight: 600;
	line-height: 1.05;
	letter-spacing: -0.02em;
}

h1 {
	font-size: clamp(3.5rem, 7vw, 6.1rem);
}

h2 {
	font-size: clamp(2.4rem, 4.2vw, 4rem);
}

h3 {
	font-size: clamp(1.5rem, 2.4vw, 2rem);
}

p,
ul,
ol,
blockquote {
	margin: 0 0 1.2rem;
}

ul,
ol {
	padding-left: 1.2rem;
}

.container {
	width: min(calc(100% - 2rem), var(--egh-wide));
	margin: 0 auto;
}

.site-shell {
	position: relative;
	overflow: clip;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	padding: 1rem 0;
	background: rgba(250, 246, 238, 0.72);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid transparent;
	transition: background var(--egh-transition), border-color var(--egh-transition), box-shadow var(--egh-transition);
}

.site-header.is-scrolled {
	background: rgba(247, 242, 231, 0.94);
	border-color: rgba(18, 21, 24, 0.08);
	box-shadow: 0 16px 40px rgba(18, 21, 24, 0.08);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
}

.site-branding {
	flex: 0 0 auto;
}

.site-logo-link,
.custom-logo-link {
	display: inline-flex;
	align-items: center;
}

.site-logo-link img,
.custom-logo {
	width: min(320px, 46vw);
	height: auto;
}

.site-navigation {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin-left: auto;
}

.menu {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 1.35rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.menu a {
	text-decoration: none;
	color: var(--egh-ink);
	font-size: 0.94rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.menu a:hover,
.menu a:focus-visible {
	color: var(--egh-coral);
}

.nav-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 0.25rem;
	width: 3rem;
	height: 3rem;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: var(--egh-night);
	color: var(--egh-cream);
}

.nav-toggle__line {
	display: block;
	width: 1.25rem;
	height: 2px;
	background: currentColor;
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.95rem 1.4rem;
	border: 1px solid var(--egh-night);
	border-radius: 999px;
	background: var(--egh-night);
	color: var(--egh-cream);
	font-weight: 700;
	text-decoration: none;
	box-shadow: var(--egh-shadow-soft);
	transition: transform var(--egh-transition), background var(--egh-transition), color var(--egh-transition), border-color var(--egh-transition);
}

.button:hover,
.button:focus-visible {
	transform: translateY(-2px);
	color: var(--egh-cream);
}

.button--ghost {
	background: transparent;
	color: var(--egh-night);
	border-color: rgba(18, 21, 24, 0.16);
	box-shadow: none;
}

.button--ghost:hover,
.button--ghost:focus-visible {
	color: var(--egh-night);
	border-color: var(--egh-brass);
	background: rgba(197, 160, 77, 0.08);
}

.header-cta {
	margin-left: 0.5rem;
	white-space: nowrap;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1rem;
	color: var(--egh-brass);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

.eyebrow::before {
	content: "";
	display: inline-block;
	width: 2rem;
	height: 1px;
	background: currentColor;
}

.hero-section,
.page-hero,
.guide-hero {
	position: relative;
	padding: clamp(4rem, 9vw, 7rem) 0 3rem;
}

.hero-grid,
.guide-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
	gap: clamp(1.5rem, 3vw, 3rem);
	align-items: center;
}

.hero-copy__lead {
	max-width: 42rem;
	font-size: clamp(1.05rem, 1.8vw, 1.3rem);
	color: rgba(18, 21, 24, 0.82);
}

.hero-copy p:last-of-type {
	margin-bottom: 1.8rem;
}

.hero-metrics {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.9rem;
	margin-top: 2rem;
}

.metric-card,
.guide-fact {
	padding: 1rem 1.1rem;
	border: 1px solid rgba(18, 21, 24, 0.08);
	border-radius: var(--egh-radius-small);
	background: rgba(255, 255, 255, 0.7);
	box-shadow: var(--egh-shadow-soft);
}

.metric-card__value {
	display: block;
	margin-bottom: 0.25rem;
	color: var(--egh-night);
	font-size: 1.7rem;
	font-weight: 700;
}

.metric-card__label,
.guide-fact span {
	color: var(--egh-slate);
	font-size: 0.9rem;
}

.hero-visual {
	position: relative;
	display: grid;
	gap: 1rem;
}

.hero-visual__panel {
	position: relative;
	overflow: hidden;
	border-radius: calc(var(--egh-radius) + 8px);
	box-shadow: var(--egh-shadow);
}

.hero-visual__panel--main {
	background: linear-gradient(135deg, var(--egh-night), #0f2946);
}

.hero-visual__panel--main img {
	width: 100%;
	aspect-ratio: 5 / 6;
	object-fit: cover;
}

.hero-visual__panel--accent {
	margin-left: auto;
	max-width: 82%;
	padding: 1.4rem;
	background: linear-gradient(135deg, rgba(23, 29, 39, 0.96), rgba(18, 21, 24, 0.88));
	color: var(--egh-cream);
}

.hero-visual__panel--accent ul {
	margin-bottom: 0;
	padding-left: 1rem;
}

.section {
	padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.section--soft {
	background: linear-gradient(180deg, rgba(197, 160, 77, 0.06), rgba(255, 255, 255, 0.15));
}

.section--dark {
	background:
		radial-gradient(circle at top left, rgba(197, 160, 77, 0.18), transparent 26rem),
		linear-gradient(135deg, var(--egh-night) 0%, #0d223c 100%);
	color: var(--egh-cream);
}

.section-heading {
	max-width: 48rem;
	margin-bottom: 2rem;
}

.feature-grid,
.process-steps,
.card-grid,
.site-footer__grid {
	display: grid;
	gap: 1.2rem;
}

.feature-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.process-step,
.guide-card,
.post-card,
.article-shell,
.editorial-content {
	border-radius: var(--egh-radius);
	box-shadow: var(--egh-shadow-soft);
}

.feature-card,
.process-step {
	padding: 1.5rem;
	border: 1px solid rgba(18, 21, 24, 0.08);
	background: rgba(255, 255, 255, 0.75);
}

.section--dark .process-step {
	border-color: rgba(247, 242, 231, 0.1);
	background: rgba(255, 255, 255, 0.06);
}

.process-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: 2rem;
	align-items: start;
}

.process-steps {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-step__number {
	display: inline-flex;
	margin-bottom: 1rem;
	color: var(--egh-brass);
	font-size: 0.88rem;
	font-weight: 700;
	letter-spacing: 0.18em;
}

.card-grid--guides {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid--posts {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.guide-card,
.post-card {
	overflow: hidden;
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid rgba(18, 21, 24, 0.08);
	transition: transform var(--egh-transition), box-shadow var(--egh-transition), border-color var(--egh-transition);
}

.guide-card:hover,
.guide-card:focus-within,
.post-card:hover,
.post-card:focus-within {
	transform: translateY(-5px);
	border-color: rgba(197, 160, 77, 0.55);
	box-shadow: 0 24px 60px rgba(18, 21, 24, 0.12);
}

.guide-card__image,
.post-card__image {
	display: block;
	overflow: hidden;
	background: var(--egh-night);
}

.guide-card__image img,
.post-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 400ms ease;
}

.guide-card:hover img,
.guide-card:focus-within img,
.post-card:hover img,
.post-card:focus-within img {
	transform: scale(1.03);
}

.guide-card__image img {
	aspect-ratio: 5 / 6;
}

.post-card__image img {
	aspect-ratio: 16 / 10;
}

.guide-card__body,
.post-card__body {
	padding: 1.25rem;
}

.guide-card__body h3,
.guide-card__body h2,
.post-card__body h3 {
	margin-bottom: 0.8rem;
}

.guide-card__body a,
.post-card__body a {
	text-decoration: none;
}

.guide-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 1.1rem;
}

.guide-card__meta span {
	display: inline-flex;
	padding: 0.42rem 0.7rem;
	border-radius: 999px;
	background: var(--egh-brass-soft);
	color: var(--egh-night);
	font-size: 0.8rem;
	font-weight: 600;
}

.article-shell,
.editorial-content {
	max-width: var(--egh-content);
	padding: clamp(1.5rem, 3vw, 2.3rem);
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid rgba(18, 21, 24, 0.08);
}

.article-shell--guide {
	max-width: 880px;
}

.article-shell > *:last-child,
.editorial-content > *:last-child {
	margin-bottom: 0;
}

.article-shell h2,
.article-shell h3,
.editorial-content h2,
.editorial-content h3 {
	margin-top: 2rem;
}

.article-shell blockquote,
.editorial-content blockquote {
	margin: 2rem 0;
	padding: 1.2rem 1.4rem;
	border-left: 3px solid var(--egh-brass);
	background: rgba(197, 160, 77, 0.08);
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 1.4rem;
}

.article-hero-media {
	margin-bottom: 1.8rem;
	overflow: hidden;
	border-radius: calc(var(--egh-radius) - 4px);
}

.article-hero-media img {
	width: 100%;
	height: auto;
}

.guide-facts {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.8rem;
	margin-top: 1.8rem;
}

.guide-fact strong {
	display: block;
	margin-top: 0.3rem;
	font-size: 1rem;
}

.guide-hero__media {
	overflow: hidden;
	border-radius: calc(var(--egh-radius) + 8px);
	box-shadow: var(--egh-shadow);
}

.guide-hero__media img {
	width: 100%;
	aspect-ratio: 5 / 6;
	object-fit: cover;
}

.archive-description,
.hero-copy__lead,
.feature-card p,
.process-step p,
.guide-card p,
.post-card p,
.article-shell p,
.editorial-content p,
.site-footer p,
.footer-notes li {
	color: rgba(18, 21, 24, 0.78);
}

.section--dark p,
.section--dark li,
.section--dark h2,
.section--dark h3 {
	color: var(--egh-cream);
}

.site-footer {
	padding: 3.5rem 0 2rem;
	background: linear-gradient(180deg, rgba(23, 29, 39, 0.98), rgba(13, 18, 24, 1));
	color: var(--egh-cream);
}

.site-footer__grid {
	grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.65fr) minmax(180px, 0.65fr) minmax(220px, 0.8fr);
	padding-bottom: 2rem;
	border-bottom: 1px solid rgba(247, 242, 231, 0.12);
}

.footer-column {
	min-width: 0;
}

.footer-column--brand {
	padding-right: 1rem;
}

.site-footer h2 {
	font-size: clamp(2rem, 3.2vw, 3.2rem);
}

.site-footer__button {
	margin-top: 1rem;
	background: var(--egh-brass);
	border-color: var(--egh-brass);
	color: var(--egh-ink);
	box-shadow: none;
}

.site-footer__button:hover,
.site-footer__button:focus-visible {
	color: var(--egh-ink);
	background: #d4b56a;
	border-color: #d4b56a;
}

.footer-links,
.footer-notes {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-links {
	display: grid;
	gap: 0.75rem;
}

.footer-links a {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	color: rgba(247, 242, 231, 0.84);
	font-size: 0.98rem;
	font-weight: 500;
	letter-spacing: 0.01em;
	text-decoration: none;
	text-transform: none;
}

.footer-links a::before {
	content: "";
	width: 0.55rem;
	height: 0.55rem;
	border-radius: 999px;
	background: rgba(197, 160, 77, 0.7);
	flex: 0 0 auto;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-notes li,
.site-footer__bottom p {
	color: rgba(247, 242, 231, 0.78);
}

.footer-notes {
	display: grid;
	gap: 0.9rem;
}

.footer-notes li {
	position: relative;
	padding-left: 1rem;
}

.footer-notes li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.72rem;
	width: 0.35rem;
	height: 0.35rem;
	border-radius: 999px;
	background: rgba(243, 108, 81, 0.75);
}

.site-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0.75rem 1.5rem;
	padding-top: 1.2rem;
	font-size: 0.92rem;
}

.wp-block-image img,
.wp-block-cover,
.wp-block-gallery {
	border-radius: calc(var(--egh-radius) - 6px);
}

.wp-block-button__link {
	border-radius: 999px;
}

.reveal-up {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-up.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

@media (max-width: 1080px) {
	.feature-grid,
	.process-steps,
	.card-grid--guides,
	.card-grid--posts {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.process-grid,
	.hero-grid,
	.guide-hero__grid,
	.site-footer__grid {
		grid-template-columns: 1fr;
	}

	.hero-visual__panel--accent {
		max-width: 100%;
	}
}

@media (max-width: 860px) {
	.site-header__inner {
		flex-wrap: wrap;
	}

	.nav-toggle {
		display: inline-flex;
		margin-left: auto;
	}

	.site-navigation {
		display: none;
		width: 100%;
		flex-direction: column;
		align-items: stretch;
		padding: 1rem 0 0.35rem;
		margin-left: 0;
	}

	.site-navigation.is-open {
		display: flex;
	}

	.menu--primary {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.8rem;
	}

	.header-cta {
		margin-left: 0;
	}

	.hero-metrics,
	.guide-facts {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	body {
		font-size: 0.98rem;
	}

	.container {
		width: min(calc(100% - 1.2rem), var(--egh-wide));
	}

	.hero-section,
	.page-hero,
	.guide-hero {
		padding-top: 3.2rem;
	}

	.feature-grid,
	.process-steps,
	.card-grid--guides,
	.card-grid--posts,
	.hero-metrics,
	.guide-facts {
		grid-template-columns: 1fr;
	}

	.article-shell,
	.editorial-content,
	.feature-card,
	.process-step,
	.guide-card__body,
	.post-card__body {
		padding: 1.2rem;
	}

	.button,
	.button--ghost {
		width: 100%;
	}
}

:root {
	--egh-ink: #070b12;
	--egh-night: #0b1220;
	--egh-night-soft: #111a2a;
	--egh-cream: #efe2cd;
	--egh-paper: #d9cbb4;
	--egh-paper-dark: #bca98b;
	--egh-brass: #caa15a;
	--egh-brass-soft: rgba(202, 161, 90, 0.16);
	--egh-coral: #d9b06c;
	--egh-slate: #9e978b;
	--egh-shadow: 0 28px 84px rgba(0, 0, 0, 0.44);
	--egh-shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.24);
}

body {
	background:
		radial-gradient(circle at top left, rgba(202, 161, 90, 0.16), transparent 24rem),
		radial-gradient(circle at top right, rgba(43, 63, 102, 0.28), transparent 24rem),
		linear-gradient(180deg, #060a11 0%, #09111b 45%, #0b1220 100%);
	color: var(--egh-cream);
}

a:hover,
a:focus-visible {
	color: var(--egh-brass);
}

.site-header {
	background: rgba(6, 10, 17, 0.86);
	border-bottom: 1px solid rgba(202, 161, 90, 0.16);
}

.site-header.is-scrolled {
	background: rgba(6, 10, 17, 0.96);
	border-color: rgba(202, 161, 90, 0.26);
	box-shadow: 0 20px 44px rgba(0, 0, 0, 0.32);
}

.site-logo-link img,
.custom-logo {
	filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.menu a {
	color: rgba(239, 226, 205, 0.82);
	font-size: 0.82rem;
	letter-spacing: 0.11em;
}

.menu a:hover,
.menu a:focus-visible {
	color: var(--egh-brass);
}

.nav-toggle {
	background: rgba(202, 161, 90, 0.14);
	color: var(--egh-cream);
	border: 1px solid rgba(202, 161, 90, 0.26);
}

.button {
	background: linear-gradient(180deg, #d6ae67 0%, #bb8e43 100%);
	border-color: rgba(214, 174, 103, 0.9);
	color: #0b1220;
	box-shadow: 0 14px 30px rgba(183, 131, 47, 0.2);
}

.button:hover,
.button:focus-visible {
	color: #0b1220;
	box-shadow: 0 18px 36px rgba(183, 131, 47, 0.28);
}

.button--ghost {
	background: transparent;
	color: var(--egh-cream);
	border-color: rgba(202, 161, 90, 0.34);
}

.button--ghost:hover,
.button--ghost:focus-visible {
	color: var(--egh-cream);
	border-color: rgba(214, 174, 103, 0.7);
	background: rgba(202, 161, 90, 0.1);
}

.eyebrow {
	color: var(--egh-brass);
}

.page-hero,
.guide-hero,
.hero-section {
	background:
		radial-gradient(circle at top left, rgba(202, 161, 90, 0.1), transparent 28rem),
		linear-gradient(180deg, rgba(11, 18, 32, 0.9), rgba(7, 11, 18, 0.96));
}

.hero-copy__lead,
.archive-description,
.feature-card p,
.process-step p,
.guide-card p,
.post-card p,
.article-shell p,
.editorial-content p,
.site-footer p,
.footer-notes li {
	color: rgba(239, 226, 205, 0.76);
}

.metric-card,
.guide-fact,
.feature-card,
.process-step,
.guide-card,
.post-card,
.article-shell,
.editorial-content {
	background: linear-gradient(180deg, rgba(13, 19, 32, 0.92), rgba(9, 14, 23, 0.96));
	border: 1px solid rgba(202, 161, 90, 0.16);
	box-shadow: var(--egh-shadow-soft);
}

.article-shell h2,
.article-shell h3,
.editorial-content h2,
.editorial-content h3,
.guide-card__body h2,
.guide-card__body h3,
.post-card__body h3,
.guide-fact strong,
.metric-card__value {
	color: var(--egh-cream);
}

.metric-card__label,
.guide-fact span,
.guide-card__meta span {
	color: rgba(239, 226, 205, 0.72);
}

.guide-card__meta span {
	background: rgba(202, 161, 90, 0.12);
}

.guide-card__body a,
.post-card__body a {
	color: var(--egh-cream);
}

.section--soft {
	background:
		radial-gradient(circle at top left, rgba(202, 161, 90, 0.08), transparent 24rem),
		linear-gradient(180deg, rgba(10, 15, 24, 0.92), rgba(7, 11, 18, 0.98));
}

.site-footer {
	background:
		linear-gradient(180deg, rgba(7, 11, 18, 0.96), rgba(4, 7, 12, 1)),
		radial-gradient(circle at top right, rgba(202, 161, 90, 0.08), transparent 18rem);
}

.footer-links a,
.footer-notes li,
.site-footer__bottom p {
	color: rgba(239, 226, 205, 0.72);
}

.site-footer__button:hover,
.site-footer__button:focus-visible {
	color: #0b1220;
}

.luxury-hero {
	position: relative;
	padding: clamp(2.5rem, 5vw, 4rem) 0 2.5rem;
}

.luxury-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(6, 10, 17, 0.95) 0%, rgba(6, 10, 17, 0.82) 38%, rgba(6, 10, 17, 0.44) 64%, rgba(6, 10, 17, 0.8) 100%),
		url("../images/hero-luxury.webp") center/cover no-repeat;
	border-bottom: 1px solid rgba(202, 161, 90, 0.16);
}

.luxury-hero .container {
	position: relative;
	z-index: 1;
}

.luxury-hero__frame {
	display: grid;
	grid-template-columns: minmax(0, 1.18fr) minmax(290px, 0.82fr);
	gap: clamp(1.5rem, 3vw, 3rem);
	align-items: end;
	min-height: clamp(520px, 70vh, 660px);
	padding: clamp(2rem, 4vw, 3.5rem) 0;
}

.luxury-hero__copy {
	max-width: 42rem;
}

.luxury-hero__copy h1 {
	max-width: 12ch;
	margin-bottom: 1.2rem;
	font-size: clamp(3.4rem, 6vw, 5.8rem);
	line-height: 0.98;
	text-transform: uppercase;
	letter-spacing: 0.01em;
}

.luxury-hero__copy p:not(.eyebrow) {
	max-width: 36rem;
	margin-bottom: 1.8rem;
	color: rgba(239, 226, 205, 0.82);
	font-size: clamp(1.03rem, 1.5vw, 1.24rem);
}

.luxury-hero__meta {
	display: grid;
	gap: 1rem;
	align-self: end;
}

.luxury-stat {
	padding: 1.15rem 1.2rem;
	border: 1px solid rgba(202, 161, 90, 0.2);
	border-radius: 18px;
	background: rgba(9, 14, 23, 0.78);
	backdrop-filter: blur(10px);
	box-shadow: var(--egh-shadow-soft);
}

.luxury-stat span {
	display: block;
	margin-bottom: 0.45rem;
	color: var(--egh-brass);
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.luxury-stat strong {
	display: block;
	color: var(--egh-cream);
	font-size: 1rem;
	line-height: 1.5;
}

.luxury-section {
	position: relative;
	padding: clamp(3.6rem, 7vw, 5.2rem) 0;
}

.luxury-section--first {
	padding-top: clamp(3rem, 6vw, 4rem);
}

.luxury-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0));
	pointer-events: none;
}

.section-intro {
	position: relative;
	z-index: 1;
	max-width: 48rem;
	margin-bottom: 2.2rem;
}

.section-intro--center {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.section-intro--center .eyebrow {
	justify-content: center;
}

.section-intro h2 {
	margin-bottom: 0;
}

.destination-grid,
.services-grid,
.framework-grid {
	display: grid;
	gap: 1rem;
	position: relative;
	z-index: 1;
}

.destination-grid {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.destination-card {
	overflow: hidden;
	border-radius: 16px;
	background: linear-gradient(180deg, rgba(13, 19, 32, 0.98), rgba(10, 15, 24, 0.98));
	border: 1px solid rgba(202, 161, 90, 0.22);
	box-shadow: var(--egh-shadow-soft);
	transition: transform var(--egh-transition), border-color var(--egh-transition), box-shadow var(--egh-transition);
}

.destination-card:hover,
.destination-card:focus-within {
	transform: translateY(-6px);
	border-color: rgba(214, 174, 103, 0.54);
	box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
}

.destination-card__image {
	display: block;
	overflow: hidden;
	border-bottom: 1px solid rgba(202, 161, 90, 0.16);
}

.destination-card__image img {
	width: 100%;
	aspect-ratio: 4 / 3.5;
	object-fit: cover;
	transition: transform 420ms ease;
}

.destination-card:hover .destination-card__image img,
.destination-card:focus-within .destination-card__image img {
	transform: scale(1.04);
}

.destination-card__body {
	padding: 1.15rem 1.1rem 1.2rem;
}

.destination-card__region {
	margin-bottom: 0.55rem;
	color: var(--egh-brass);
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.destination-card h3 {
	margin-bottom: 0.55rem;
	font-size: clamp(1.35rem, 1.5vw, 1.6rem);
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.destination-card h3 a,
.destination-card p {
	color: var(--egh-cream);
	text-decoration: none;
}

.destination-card p {
	margin-bottom: 1rem;
	color: rgba(239, 226, 205, 0.72);
	font-size: 0.95rem;
}

.destination-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--egh-brass);
	font-size: 0.84rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
}

.destination-card__cta::after {
	content: "\2192";
	font-size: 1rem;
}

.services-grid {
	grid-template-columns: repeat(5, minmax(0, 1fr));
	border-top: 1px solid rgba(202, 161, 90, 0.12);
	border-bottom: 1px solid rgba(202, 161, 90, 0.12);
}

.service-card {
	padding: 1.6rem 1.2rem 1.7rem;
	min-height: 100%;
	text-align: center;
	border-left: 1px solid rgba(202, 161, 90, 0.12);
}

.service-card:first-child {
	border-left: 0;
}

.service-card__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.2rem;
	height: 3.2rem;
	margin-bottom: 1rem;
	border: 1px solid rgba(202, 161, 90, 0.44);
	border-radius: 999px;
	color: var(--egh-brass);
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.service-card h3 {
	margin-bottom: 0.7rem;
	font-size: 1.2rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.service-card p {
	margin-bottom: 0;
	color: rgba(239, 226, 205, 0.72);
}

.insider-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr) minmax(280px, 0.72fr);
	gap: clamp(1.2rem, 2vw, 1.6rem);
	align-items: stretch;
	position: relative;
	z-index: 1;
}

.insider-media,
.insider-copy,
.benefits-card,
.framework-card {
	border-radius: 18px;
	background: linear-gradient(180deg, rgba(13, 19, 32, 0.96), rgba(9, 14, 23, 0.98));
	border: 1px solid rgba(202, 161, 90, 0.16);
	box-shadow: var(--egh-shadow-soft);
}

.insider-media {
	overflow: hidden;
}

.insider-media img {
	width: 100%;
	height: 100%;
	min-height: 100%;
	object-fit: cover;
	aspect-ratio: 4 / 5;
}

.insider-copy,
.benefits-card {
	padding: clamp(1.5rem, 2vw, 2rem);
}

.insider-copy p:not(.eyebrow),
.benefits-card li,
.framework-card p {
	color: rgba(239, 226, 205, 0.78);
}

.benefit-list {
	margin: 0 0 1.4rem;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.95rem;
}

.benefit-list li {
	position: relative;
	padding-left: 1.2rem;
	margin-bottom: 0;
}

.benefit-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.72rem;
	width: 0.45rem;
	height: 0.45rem;
	border-radius: 999px;
	background: var(--egh-brass);
	box-shadow: 0 0 0 4px rgba(202, 161, 90, 0.12);
}

.benefits-card__link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--egh-brass);
	font-weight: 700;
	text-decoration: none;
}

.benefits-card__link::after {
	content: "\2192";
}

.framework-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.framework-card {
	padding: 1.6rem;
}

.framework-card__eyebrow {
	margin-bottom: 0.9rem;
	color: var(--egh-brass);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.framework-card h3 {
	margin-bottom: 0.8rem;
	text-transform: uppercase;
}

.luxury-section--notes {
	padding-top: clamp(2.5rem, 5vw, 4rem);
}

.card-grid--posts .post-card {
	background: linear-gradient(180deg, rgba(13, 19, 32, 0.94), rgba(8, 12, 20, 0.98));
}

.post-card__body time,
.post-card__body .post-meta {
	color: rgba(239, 226, 205, 0.58);
}

.site-navigation.is-open {
	background: rgba(6, 10, 17, 0.98);
	border: 1px solid rgba(202, 161, 90, 0.18);
	border-radius: 16px;
	padding: 1rem;
}

@media (max-width: 1220px) {
	.destination-grid,
	.services-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.insider-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.benefits-card {
		grid-column: 1 / -1;
	}
}

@media (max-width: 980px) {
	.luxury-hero__frame,
	.framework-grid {
		grid-template-columns: 1fr;
	}

	.luxury-hero__copy h1 {
		max-width: 13ch;
	}

	.destination-grid,
	.services-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.services-grid {
		border-bottom: 0;
	}

	.service-card {
		border-left: 0;
		border-bottom: 1px solid rgba(202, 161, 90, 0.12);
	}

	.service-card:last-child {
		border-bottom: 0;
	}
}

@media (max-width: 860px) {
	.site-navigation {
		background: transparent;
	}

	.menu--primary {
		width: 100%;
	}

	.menu a {
		font-size: 0.88rem;
	}

	.header-cta {
		width: 100%;
	}

	.insider-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.luxury-hero {
		padding-top: 1.5rem;
	}

	.luxury-hero::before {
		background:
			linear-gradient(180deg, rgba(6, 10, 17, 0.92) 0%, rgba(6, 10, 17, 0.82) 38%, rgba(6, 10, 17, 0.95) 100%),
			url("../images/hero-luxury.webp") center/cover no-repeat;
	}

	.luxury-hero__frame {
		min-height: auto;
		padding: 2.5rem 0 1rem;
	}

	.luxury-hero__copy h1 {
		font-size: clamp(2.7rem, 15vw, 4rem);
	}

	.destination-grid,
	.services-grid,
	.framework-grid {
		grid-template-columns: 1fr;
	}

	.destination-card__image img {
		aspect-ratio: 16 / 10;
	}

	.service-card {
		border-left: 0;
	}

	.site-footer__grid {
		grid-template-columns: 1fr;
	}
}

body.home {
	background:
		radial-gradient(circle at top center, rgba(212, 175, 55, 0.12), transparent 26rem),
		linear-gradient(180deg, #0d0f13 0%, #121418 40%, #0e1014 100%);
	color: #e5e2e1;
}

body.home .site-header {
	background: rgba(13, 15, 19, 0.72);
	border-bottom: 1px solid rgba(212, 175, 55, 0.12);
	backdrop-filter: blur(20px);
}

body.home .site-header.is-scrolled {
	background: rgba(13, 15, 19, 0.92);
	border-color: rgba(212, 175, 55, 0.2);
}

body.home .menu a {
	color: rgba(229, 226, 225, 0.76);
}

body.home .menu a:hover,
body.home .menu a:focus-visible {
	color: #f2ca50;
}

body.home .header-cta {
	background: transparent;
	border-color: rgba(212, 175, 55, 0.28);
	color: #f2ca50;
	box-shadow: none;
}

body.home .header-cta:hover,
body.home .header-cta:focus-visible {
	background: rgba(212, 175, 55, 0.12);
	color: #f2ca50;
}

.stitch-home {
	position: relative;
	padding-bottom: clamp(4rem, 6vw, 6rem);
	font-family: "Manrope", "Space Grotesk", "Segoe UI", sans-serif;
}

.stitch-home h1,
.stitch-home h2,
.stitch-home h3 {
	font-family: "Noto Serif", "Cormorant Garamond", Georgia, serif;
}

.stitch-home__hero {
	position: relative;
	min-height: min(920px, 100vh);
	padding-top: 5.75rem;
	overflow: hidden;
}

.stitch-home__hero-media,
.stitch-home__hero-overlay {
	position: absolute;
	inset: 0;
}

.stitch-home__hero-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.62;
}

.stitch-home__hero-overlay {
	background:
		linear-gradient(180deg, rgba(13, 15, 19, 0.34) 0%, rgba(13, 15, 19, 0.58) 44%, rgba(13, 15, 19, 0.96) 100%),
		linear-gradient(90deg, rgba(13, 15, 19, 0.86) 0%, rgba(13, 15, 19, 0.26) 54%, rgba(13, 15, 19, 0.72) 100%);
}

.stitch-home__hero-inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	min-height: min(820px, calc(100vh - 5.75rem));
}

.stitch-home__hero-copy {
	max-width: 58rem;
	padding: 4rem 0 5.5rem;
}

.stitch-home__hero-copy h1 {
	margin-bottom: 1.5rem;
	font-size: clamp(3.5rem, 7vw, 6.7rem);
	line-height: 0.94;
	letter-spacing: -0.03em;
	color: #e5e2e1;
}

.stitch-home__hero-copy h1 span {
	color: #f2ca50;
	font-style: italic;
	font-weight: 400;
}

.stitch-home__hero-copy p {
	max-width: 46rem;
	margin-bottom: 2rem;
	color: rgba(208, 197, 175, 0.92);
	font-size: clamp(1.05rem, 1.4vw, 1.22rem);
	line-height: 1.8;
}

.stitch-home__hero-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem 1.25rem;
}

.stitch-home__primary-button {
	border-radius: 0.25rem;
	background: linear-gradient(135deg, #f2ca50 0%, #d4af37 100%);
	border-color: rgba(242, 202, 80, 0.8);
	color: #3c2f00;
	font-size: 0.88rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
}

.stitch-home__primary-button:hover,
.stitch-home__primary-button:focus-visible {
	color: #3c2f00;
	background: linear-gradient(135deg, #f7d46b 0%, #ddb545 100%);
}

.stitch-home__text-link {
	color: rgba(242, 202, 80, 0.9);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-decoration: none;
	text-transform: uppercase;
}

.stitch-home__text-link:hover,
.stitch-home__text-link:focus-visible {
	color: #ffe088;
}

.stitch-section {
	position: relative;
	padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.stitch-section--map {
	background:
		radial-gradient(circle at 72% 24%, rgba(212, 175, 55, 0.16), transparent 28rem),
		linear-gradient(180deg, #0b0d11 0%, #111317 100%);
}

.stitch-section__head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 1.5rem;
	margin-bottom: 2.25rem;
}

.stitch-section__head--center {
	justify-content: center;
	text-align: center;
}

.stitch-section__head h2 {
	margin-bottom: 0.45rem;
	font-size: clamp(2.4rem, 4vw, 3.6rem);
	color: #e5e2e1;
}

.stitch-section__head p {
	max-width: 42rem;
	margin-bottom: 0;
	color: rgba(208, 197, 175, 0.74);
}

.stitch-section__link {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	color: #f2ca50;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
}

.stitch-section__link::after {
	content: "\2192";
	font-size: 1rem;
}

.stitch-bento {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
}

.stitch-destination-card,
.stitch-sponsor-card,
.stitch-map-panel,
.stitch-kit-card {
	position: relative;
	overflow: hidden;
	background: #1c1b1b;
	border: 1px solid rgba(153, 144, 124, 0.14);
	border-radius: 0.3rem;
	box-shadow: 0 24px 50px rgba(0, 0, 0, 0.16);
}

.stitch-destination-card {
	min-height: 25rem;
}

.stitch-destination-card--featured {
	grid-column: span 2;
	min-height: 30rem;
}

.stitch-destination-card__media,
.stitch-destination-card__media img,
.stitch-destination-card__overlay {
	position: absolute;
	inset: 0;
}

.stitch-destination-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.82;
	transition: transform 700ms ease;
}

.stitch-destination-card:hover .stitch-destination-card__media img,
.stitch-destination-card:focus-within .stitch-destination-card__media img {
	transform: scale(1.05);
}

.stitch-destination-card__overlay {
	background: linear-gradient(180deg, rgba(19, 19, 19, 0.08) 0%, rgba(19, 19, 19, 0.26) 44%, rgba(19, 19, 19, 0.92) 100%);
}

.stitch-destination-card__content {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	padding: 2rem;
}

.stitch-destination-card__region {
	margin-bottom: 0.45rem;
	color: #f2ca50;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.stitch-destination-card h3 {
	margin-bottom: 0.55rem;
	font-size: clamp(2rem, 2.2vw, 3rem);
	color: #e5e2e1;
}

.stitch-destination-card h3 a,
.stitch-guide-list__item h3 a {
	text-decoration: none;
}

.stitch-destination-card p:last-child {
	max-width: 36rem;
	margin-bottom: 0;
	color: rgba(208, 197, 175, 0.8);
	font-size: 0.95rem;
}

.stitch-sponsor-card {
	grid-column: span 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 13rem;
	padding: 2.5rem;
	text-align: center;
	background:
		radial-gradient(circle at top right, rgba(212, 175, 55, 0.08), transparent 18rem),
		linear-gradient(180deg, #1c1b1b 0%, #151515 100%);
}

.stitch-sponsor-card__tag,
.stitch-kit-card__tag {
	position: absolute;
	top: 1rem;
	right: 1rem;
	margin-bottom: 0;
	color: rgba(153, 144, 124, 0.86);
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.stitch-sponsor-card h3 {
	margin-bottom: 0.65rem;
	font-size: clamp(1.7rem, 2vw, 2.3rem);
	color: #e5e2e1;
}

.stitch-sponsor-card p {
	max-width: 38rem;
	margin-bottom: 1.5rem;
	color: rgba(208, 197, 175, 0.78);
}

.stitch-home__secondary-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.95rem 1.6rem;
	border: 1px solid rgba(153, 144, 124, 0.24);
	border-radius: 0.25rem;
	color: #e5e2e1;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-decoration: none;
	text-transform: uppercase;
	transition: border-color var(--egh-transition), color var(--egh-transition), background var(--egh-transition);
}

.stitch-home__secondary-button:hover,
.stitch-home__secondary-button:focus-visible {
	background: rgba(242, 202, 80, 0.08);
	border-color: rgba(242, 202, 80, 0.34);
	color: #f2ca50;
}

.stitch-map-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(19rem, 0.9fr);
	gap: 2.25rem;
	align-items: center;
}

.stitch-map-panel {
	min-height: 32rem;
}

.stitch-map-panel img,
.stitch-map-panel__shade {
	position: absolute;
	inset: 0;
}

.stitch-map-panel img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.56;
	filter: saturate(0.7);
}

.stitch-map-panel__shade {
	background:
		radial-gradient(circle at center, rgba(242, 202, 80, 0.06), transparent 22rem),
		linear-gradient(180deg, rgba(11, 13, 17, 0.38) 0%, rgba(11, 13, 17, 0.7) 100%);
}

.stitch-map-controls {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	z-index: 2;
	display: grid;
	gap: 0.65rem;
}

.stitch-map-controls span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	background: rgba(57, 57, 57, 0.62);
	border: 1px solid rgba(153, 144, 124, 0.16);
	backdrop-filter: blur(12px);
	color: #e5e2e1;
	font-size: 1.4rem;
}

.stitch-map-pin {
	position: absolute;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	transform: translate(-50%, -50%);
}

.stitch-map-pin__dot {
	display: block;
	width: 0.95rem;
	height: 0.95rem;
	border-radius: 999px;
	background: #f2ca50;
	box-shadow: 0 0 18px rgba(233, 195, 73, 0.55);
}

.stitch-map-pin__label {
	margin-top: 0.7rem;
	padding: 0.45rem 0.75rem;
	background: rgba(57, 57, 57, 0.78);
	border: 1px solid rgba(153, 144, 124, 0.16);
	backdrop-filter: blur(10px);
	color: #e5e2e1;
	font-size: 0.74rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	white-space: nowrap;
}

.stitch-guide-list {
	display: grid;
	gap: 1.3rem;
}

.stitch-guide-list__item {
	padding-bottom: 1.1rem;
	border-bottom: 1px solid rgba(53, 53, 52, 1);
}

.stitch-guide-list__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 0.55rem;
}

.stitch-guide-list__item h3 {
	margin-bottom: 0;
	font-size: clamp(1.5rem, 1.8vw, 2rem);
	color: #e5e2e1;
}

.stitch-guide-list__item p {
	margin-bottom: 0;
	color: rgba(208, 197, 175, 0.76);
	font-size: 0.95rem;
}

.stitch-guide-list__icon {
	color: rgba(153, 144, 124, 0.84);
	font-size: 1.05rem;
}

.stitch-kit-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
}

.stitch-kit-card {
	display: flex;
	flex-direction: column;
	padding: 1.4rem;
	min-height: 100%;
	background: linear-gradient(180deg, #1c1b1b 0%, #151515 100%);
	transition: background var(--egh-transition), transform var(--egh-transition), border-color var(--egh-transition);
}

.stitch-kit-card:hover,
.stitch-kit-card:focus-within {
	transform: translateY(-4px);
	background: linear-gradient(180deg, #242424 0%, #191919 100%);
	border-color: rgba(242, 202, 80, 0.18);
}

.stitch-kit-card__image {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1;
	margin-bottom: 1.25rem;
	padding: 1rem;
	background: #0e0e0e;
}

.stitch-kit-card__image img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	filter: saturate(0.7) contrast(1.04);
}

.stitch-kit-card h3 {
	margin-bottom: 0.55rem;
	font-size: 1.28rem;
	color: #e5e2e1;
}

.stitch-kit-card p {
	flex: 1 1 auto;
	margin-bottom: 1rem;
	color: rgba(208, 197, 175, 0.76);
	font-size: 0.93rem;
}

.stitch-kit-card__link {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	color: #f2ca50;
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-decoration: none;
	text-transform: uppercase;
}

.stitch-kit-card__link::after {
	content: "\2197";
	font-size: 0.95rem;
}

.stitch-section--editorial .editorial-content {
	max-width: 56rem;
}

@media (max-width: 1180px) {
	.stitch-kit-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 980px) {
	.stitch-home__hero-copy {
		max-width: 44rem;
	}

	.stitch-home__hero-copy h1 {
		font-size: clamp(3rem, 9vw, 5.4rem);
	}

	.stitch-bento,
	.stitch-map-grid {
		grid-template-columns: 1fr;
	}

	.stitch-destination-card--featured,
	.stitch-sponsor-card {
		grid-column: auto;
	}

	.stitch-destination-card,
	.stitch-destination-card--featured,
	.stitch-sponsor-card {
		min-height: 24rem;
	}

	.stitch-sponsor-card {
		min-height: 15rem;
	}
}

@media (max-width: 860px) {
	body.home .site-navigation.is-open {
		background: rgba(13, 15, 19, 0.96);
		border-color: rgba(212, 175, 55, 0.18);
	}

	.stitch-section__head {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 640px) {
	.stitch-home__hero {
		min-height: auto;
		padding-top: 5rem;
	}

	.stitch-home__hero-inner {
		min-height: auto;
	}

	.stitch-home__hero-copy {
		padding: 3rem 0 4rem;
	}

	.stitch-home__hero-copy h1 {
		font-size: clamp(2.7rem, 14vw, 4.2rem);
	}

	.stitch-home__hero-actions {
		align-items: stretch;
	}

	.stitch-home__text-link {
		padding-left: 0.1rem;
	}

	.stitch-section {
		padding: 3.7rem 0;
	}

	.stitch-destination-card__content,
	.stitch-sponsor-card,
	.stitch-kit-card {
		padding: 1.35rem;
	}

	.stitch-map-panel {
		min-height: 24rem;
	}

	.stitch-map-pin__label {
		font-size: 0.67rem;
	}

	.stitch-kit-grid {
		grid-template-columns: 1fr;
	}
}
