:root {
	--ldg-background: #050c18;
	--ldg-surface: #fffdf8;
	--ldg-text: #1f2933;
	--ldg-accent: #a6844a;
	--ldg-accent-dark: #7d4a28;
	--ldg-border: #e7dccb;
	--ldg-max-width: 1360px;
	--ldg-content-max-width: calc(var(--ldg-max-width) + 2.35rem);
	--ldg-content-padding-x: clamp(0.75rem, 2vw, 1.5rem);
	--ldg-section-max-width: calc(var(--ldg-max-width) + 5.5rem);
	--ldg-section-padding-x: 0.02rem;
	--ldg-site-header-offset: 8.5rem;
	--ldg-shadow: 0 18px 50px rgba(31, 41, 51, 0.08);
	--ldg-font-display: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
	--ldg-font-body: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
	--ldg-font-serif: "Playfair Display", Georgia, serif;
	--ldg-brand-gold: #a6844a;
	--ldg-brand-white: #f1f2f4;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	overflow-x: clip;
	overscroll-behavior-x: none;
}

body {
	margin: 0;
	font-family: var(--ldg-font-body);
	background: var(--ldg-background);
	color: var(--ldg-text);
	line-height: 1.6;
	overflow-x: clip;
	width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 500;
}

a {
	color: var(--ldg-accent-dark);
	text-decoration: none;
}

a:hover,
a:focus {
	color: var(--ldg-accent);
}

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

.ldg-shell {
	width: min(100% - (2 * var(--ldg-content-padding-x)), var(--ldg-content-max-width));
	margin: 0 auto;
}

.ldg-shell--content {
	--ldg-content-max-width: calc(var(--ldg-max-width) + 2.35rem);
	--ldg-content-padding-x: clamp(0.75rem, 2vw, 1.5rem);
}

.ldg-shell--section {
	--ldg-content-max-width: calc(var(--ldg-max-width) + 5.5rem);
	--ldg-content-padding-x: 0.02rem;
}

.site-main {
	padding-bottom: 4rem;
}

.site-page-section {
	padding: 0 0 4rem;
}

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

.ldg-empty-page {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: calc(100vh - 7rem);
	padding-bottom: 0;
	overflow: hidden;
}

.ldg-empty-page__media,
.ldg-empty-page__overlay {
	position: absolute;
	inset: 0;
}

.ldg-empty-page__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.34) saturate(0.78);
}

.ldg-empty-page__overlay {
	background:
		linear-gradient(180deg, rgba(5, 12, 24, 0.22) 0%, rgba(5, 12, 24, 0.78) 100%),
		linear-gradient(120deg, rgba(5, 12, 24, 0.74) 0%, rgba(5, 12, 24, 0.24) 48%, rgba(5, 12, 24, 0.68) 100%);
}

.ldg-empty-page__inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.ldg-empty-page__copy {
	max-width: 42rem;
}

.ldg-empty-page__eyebrow {
	margin: 0 0 0.9rem;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--ldg-brand-gold);
}

.ldg-empty-page__title {
	margin: 0;
	max-width: 18ch;
	font-family: var(--ldg-font-serif);
	font-size: clamp(2rem, 5vw, 3.5rem);
	line-height: 1.05;
	color: var(--ldg-brand-white);
}

.ldg-empty-page__description {
	margin: 1rem auto 0;
	max-width: 34rem;
	font-size: 1rem;
	line-height: 1.8;
	color: rgba(241, 242, 244, 0.78);
}

@media (max-width: 780px) {
	:root {
		--ldg-content-padding-x: clamp(1rem, 5vw, 1.35rem);
	}

	.ldg-shell--content,
	.ldg-shell--section {
		--ldg-content-padding-x: clamp(1rem, 5vw, 1.35rem);
	}
}
