:root {
	--ink: #32261f;
	--muted: #75675c;
	--gold: #a77a40;
	--cream: #fbf7f1;
	--line: #e4d8ca;
}

* { box-sizing: border-box; }

html, body {
	margin: 0;
	min-height: 100%;
	max-width: 100%;
	overflow-x: hidden;
}

body {
	background: linear-gradient(135deg, #fffdf9, #efe1d2);
	color: var(--ink);
	font-family: "Manrope", Arial, sans-serif;
}

a { color: inherit; text-decoration: none; }

.section-topbar {
	padding: 10px 20px;
	background: #2d221b;
	color: #fffaf5;
	font-size: 9px;
	letter-spacing: .12em;
	text-align: center;
	text-transform: uppercase;
}

.section-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 18px max(24px, calc((100vw - 1280px) / 2));
	border-bottom: 1px solid var(--line);
	background: rgba(255, 253, 249, .94);
}

.section-header img {
	width: 130px;
	height: 52px;
	object-fit: contain;
	object-position: left center;
}

.section-header nav {
	display: flex;
	align-items: center;
	gap: 24px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.section-header nav a:hover { color: var(--gold); }

.section-page {
	min-height: calc(100vh - 128px);
	display: grid;
	place-items: center;
	padding: 60px 24px;
}

.section-page-card {
	position: relative;
	width: min(100%, 900px);
	overflow: hidden;
	padding: clamp(42px, 8vw, 90px);
	border: 1px solid rgba(157, 116, 68, .25);
	border-radius: 24px;
	background: rgba(255, 253, 249, .9);
	box-shadow: 0 28px 70px rgba(66, 44, 28, .11);
	text-align: center;
}

.section-page-card::before {
	content: "";
	position: absolute;
	top: -170px;
	right: -130px;
	width: 360px;
	aspect-ratio: 1;
	border-radius: 50%;
	background: rgba(205, 170, 124, .15);
}

.section-kicker {
	position: relative;
	margin: 0 0 14px;
	color: var(--gold);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .18em;
	text-transform: uppercase;
}

h1 {
	position: relative;
	margin: 0;
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: clamp(48px, 8vw, 78px);
	font-weight: 600;
	line-height: .95;
}

.section-description {
	position: relative;
	max-width: 600px;
	margin: 24px auto 0;
	color: var(--muted);
	font-size: 13px;
	line-height: 1.8;
}

.section-actions {
	position: relative;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 32px;
}

.section-button {
	min-height: 46px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 22px;
	border: 1px solid var(--ink);
	border-radius: 3px;
	background: var(--ink);
	color: white;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.section-button.secondary {
	background: transparent;
	color: var(--ink);
}

@media (max-width: 680px) {
	.section-header { padding: 13px 16px; }
	.section-header img { width: 108px; }
	.section-header nav a:not(:first-child) { display: none; }
	.section-page { padding: 30px 14px; }
	.section-page-card { padding: 52px 22px; border-radius: 18px; }
	.section-actions { flex-direction: column; }
	.section-button { width: 100%; }
}
