:root {
	--clay: #6b3f2a;
	--ink: #2b221c;
	--paper: #f3ece1;
	--linen: #e6dccb;
	--moss: #5c6b52;
	--rust: #a45a3a;
	--muted: #7a6d60;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: Georgia, "Iowan Old Style", "Palatino Linotype", Palatino, serif;
	line-height: 1.55;
	font-size: 18px;
}

a { color: var(--clay); }
a:hover { color: var(--rust); }
img { max-width: 100%; height: auto; display: block; }

.wrap { width: min(1080px, calc(100% - 2.4rem)); margin: 0 auto; }

header.site {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 1.5rem;
	padding: 1.4rem 0 1.1rem;
	border-bottom: 1px solid #d7cbb8;
}
.brand {
	text-decoration: none;
	color: var(--ink);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-size: 0.92rem;
}
.brand small {
	display: block;
	letter-spacing: 0.18em;
	color: var(--muted);
	font-size: 0.62rem;
	margin-top: 0.25rem;
}
nav a {
	text-decoration: none;
	margin-left: 1.1rem;
	font-size: 0.92rem;
	color: var(--ink);
}
nav a[aria-current="page"] { border-bottom: 1px solid var(--clay); }

.hero {
	margin: 1.6rem 0 2.4rem;
}
.hero img { width: 100%; max-height: 520px; object-fit: cover; }
.hero figcaption {
	font-size: 0.85rem;
	color: var(--muted);
	margin-top: 0.55rem;
}

h1 { font-weight: 500; font-size: clamp(2rem, 4vw, 3.1rem); line-height: 1.15; margin: 0 0 0.6rem; }
h2 { font-weight: 500; font-size: 1.55rem; margin: 2rem 0 0.6rem; }
.lede { font-size: 1.15rem; max-width: 38rem; color: #43362d; }

.grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1.2rem;
	margin: 1.6rem 0 2.4rem;
}
.card {
	background: var(--linen);
	padding: 0 0 1rem;
}
.card img { width: 100%; height: 240px; object-fit: cover; }
.card h3 { margin: 0.8rem 1rem 0.2rem; font-size: 1.1rem; font-weight: 500; }
.card p { margin: 0 1rem; color: var(--muted); font-size: 0.95rem; }

.split {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 2rem;
	align-items: start;
	margin: 2rem 0 3rem;
}
.split img { width: 100%; }
table { width: 100%; border-collapse: collapse; }
th, td { text-align: left; padding: 0.55rem 0; border-bottom: 1px solid #d7cbb8; vertical-align: top; }
th { color: var(--muted); font-weight: 500; width: 38%; }

.note {
	background: #efe4d4;
	padding: 1rem 1.2rem;
	margin: 1.4rem 0;
}

footer.site {
	border-top: 1px solid #d7cbb8;
	padding: 1.6rem 0 2.4rem;
	color: var(--muted);
	font-size: 0.92rem;
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
}

@media (max-width: 720px) {
	header.site { flex-direction: column; align-items: flex-start; }
	nav a { margin: 0 0.9rem 0 0; }
	.split { grid-template-columns: 1fr; }
}
