:root {
	--ink: #172b35;
	--muted: #65757b;
	--paper: #fafbf8;
	--line: #dce3df;
	--green: #123e38;
	--lime: #d7ed81;
	--sage: #e7ecdf;
	--serif: 'Playfair Display', Georgia, serif;
	--sans: 'DM Sans', system-ui, sans-serif;
}
* { box-sizing: border-box; }
body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font: 16px/1.6 var(--sans);
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.nav {
	max-width: 1440px;
	margin: auto;
	min-height: 106px;
	padding: 24px 6%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--line);
	gap: 24px;
}
.brand {
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 700;
	letter-spacing: 2px;
}
.brand-icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--green) url('/favicon.svg') center / cover;
	flex-shrink: 0;
}
.brand-small {
	display: block;
	font-size: 10px;
	letter-spacing: 2.4px;
	line-height: 1.2;
}
.nav nav, .nav-actions {
	display: flex;
	align-items: center;
	gap: 28px;
	font-size: 14px;
}
main { max-width: 1440px; margin: auto; min-height: 55vh; }
.hero {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: 60px;
	padding: 76px 6% 66px;
	overflow: hidden;
}
.eyebrow {
	font-size: 12px;
	letter-spacing: 2px;
	font-weight: 600;
	text-transform: uppercase;
}
.hero h1 {
	font: 500 clamp(40px, 4.5vw, 66px)/1.12 var(--serif);
	letter-spacing: -1.7px;
	margin: 25px 0;
}
.hero h1 em { color: #65836f; }
.hero p { max-width: 425px; color: var(--muted); line-height: 1.9; }
.button {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 18px;
	background: var(--green);
	border: 1px solid var(--green);
	color: white;
	padding: 15px 25px;
	border-radius: 5px;
	font-weight: 500;
	margin-top: 8px;
}
.button:hover { background: #20594f; }
.hero-notes {
	display: flex;
	gap: 24px;
	font-size: 12px;
	margin-top: 34px;
	color: var(--muted);
}
.hero-art {
	position: relative;
	min-height: 410px;
	margin-top: 10px;
	background: radial-gradient(ellipse, #e6eed7 0%, transparent 69%);
}
.art-sheet {
	position: absolute;
	width: 51%;
	background: white;
	box-shadow: 0 18px 32px #142d3525;
	padding: 10px 10px 0;
	border-radius: 2px;
	overflow: hidden;
}
.art-sheet img,
.art-sheet video {
	width: 100%;
	height: 270px;
	object-fit: cover;
	display: block;
}
.art-sheet > span {
	display: block;
	font-family: var(--serif);
	padding: 8px 4px 15px;
	font-size: 14px;
}
.art-sheet.blank {
	min-height: 220px;
	background: #f4f6ef;
	display: grid;
	place-items: end;
}
.sheet-0 { top: 28px; left: 3%; transform: rotate(-12deg); }
.sheet-1 { top: 70px; left: 44%; transform: rotate(10deg); }
.sheet-2 { top: 150px; left: 24%; transform: rotate(-1deg); width: 46%; }
.sheet-2 img { height: 225px; }
.art-stamp {
	position: absolute;
	right: -1%;
	top: -12px;
	border: 1px solid var(--green);
	border-radius: 50%;
	height: 95px;
	width: 95px;
	text-align: center;
	font-size: 11px;
	line-height: 1.35;
	padding-top: 22px;
	transform: rotate(16deg);
	background: var(--lime);
}
.collection { padding: 46px 6% 65px; }
.section-heading {
	display: flex;
	justify-content: space-between;
	align-items: end;
	margin-bottom: 35px;
}
.section-heading > a { font-size: 14px; border-bottom: 1px solid var(--ink); }
h2 { font: 500 36px/1.25 var(--serif); margin: 13px 0 18px; }
.wall {
	columns: 3;
	column-gap: 22px;
}
.tile {
	break-inside: avoid;
	display: block;
	margin-bottom: 22px;
}
.tile img,
.tile video {
	width: 100%;
	display: block;
	border-radius: 7px;
	background: #e1e7e0;
}
.tile span {
	display: block;
	margin-top: 10px;
	font: 500 18px var(--serif);
}
.friends {
	max-width: 1230px;
	margin: 0 auto 70px;
	padding: 45px;
	background: var(--sage);
	border-radius: 12px;
}
.friends-lead { max-width: 560px; color: var(--muted); line-height: 1.8; }
.friend-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
	margin-top: 28px;
}
.friend {
	background: #fffef6;
	padding: 28px;
	border-radius: 8px;
	border: 1px solid var(--line);
	position: relative;
	min-height: 180px;
}
.friend-mark {
	position: absolute;
	right: 22px;
	top: 22px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--green);
	color: var(--lime);
	font: italic 28px/48px var(--serif);
	text-align: center;
	letter-spacing: -3px;
	padding-right: 4px;
}
.friend h3 { font: 500 28px var(--serif); margin: 18px 0 8px; }
.friend p { color: var(--muted); margin: 0 0 18px; }
.friend-go { font-size: 14px; border-bottom: 1px solid var(--ink); }
.page-title { font: 500 52px/1.2 var(--serif); margin: 20px 0 20px; }
.narrow { padding: 55px 6% 40px; max-width: 720px; }
.lead { color: var(--muted); line-height: 1.9; }
.err { color: #8a3b2f; }
.sheet-form {
	background: white;
	padding: 28px;
	border-radius: 8px;
	box-shadow: 0 18px 32px #142d3520;
	margin-top: 20px;
}
label { display: grid; gap: 7px; margin-bottom: 18px; }
input {
	padding: 12px;
	border: 1px solid var(--line);
	background: white;
	border-radius: 5px;
	color: var(--ink);
}
.hp { position: absolute; left: -9999px; }
.detail {
	padding: 55px 6% 80px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 70px;
}
.back { font-size: 14px; color: var(--muted); }
.detail-image {
	margin-top: 25px;
	background: #e2e9dd;
	border-radius: 8px;
	padding: 30px;
}
.detail-image img,
.detail-image video { width: 100%; max-height: 650px; object-fit: contain; }
.detail-copy { padding-top: 50px; }
.detail h1 { font: 500 48px/1.2 var(--serif); margin: 20px 0; }
.description { font-size: 17px; line-height: 1.9; color: var(--muted); }
.subtle { color: var(--muted); font-size: 14px; }
.empty { padding: 50px 0; color: var(--muted); }
.pager-meta { margin: 8px 0 0; color: var(--muted); font-size: 14px; }
.pager {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	margin: 36px 0 4px;
}
.pager a, .pager span {
	min-width: 40px;
	height: 40px;
	padding: 0 14px;
	display: grid;
	place-items: center;
	border: 1px solid var(--line);
	border-radius: 999px;
	font-size: 13px;
}
.pager a.on, .pager a:hover {
	background: var(--green);
	color: var(--lime);
	border-color: var(--green);
}
.pager .off { color: var(--muted); }
footer {
	background: #edf0ea;
	padding: 45px 6%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	font-size: 14px;
}
footer p { margin: 0; }
footer div { display: flex; gap: 25px; flex-wrap: wrap; }
footer small { color: var(--muted); }
a:focus-visible, button:focus-visible { outline: 3px solid #bd7546; outline-offset: 4px; }
@media (max-width: 900px) {
	.hero, .detail { grid-template-columns: 1fr; padding: 40px 5%; gap: 28px; }
	.friend-grid, .wall { columns: 2; grid-template-columns: 1fr 1fr; }
	.wall { display: block; }
	.hero-art { min-height: 340px; }
	.friends { margin: 0 20px 40px; padding: 28px; }
	.nav { flex-wrap: wrap; padding: 20px 5%; }
}
@media (max-width: 600px) {
	.wall { columns: 1; }
	.friend-grid { grid-template-columns: 1fr; }
	.hero h1 { font-size: 40px; }
	.page-title { font-size: 36px; }
	footer { grid-template-columns: 1fr; }
}
