:root {
	--bg: #f6f5f2;
	--panel: #fcfbf8;
	--panel-strong: #f1eee8;
	--panel-border: #ddd7cd;
	--text: #191714;
	--muted: #5f5a54;
	--accent: #7a3f2c;
	--accent-strong: #613123;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: Manrope, "Segoe UI", sans-serif;
	background: var(--bg);
	color: var(--text);
	line-height: 1.55;
}

a {
	color: #2f2f2f;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

.wrap {
	width: min(1080px, 92%);
	margin: 0 auto;
}

.site-header {
	padding: 1.1rem 0 0.9rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid var(--panel-border);
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	font-weight: 800;
	color: var(--text);
}

.brand-mark {
	width: 2rem;
	height: 2rem;
	border-radius: 0.55rem;
	display: grid;
	place-items: center;
	background: var(--text);
	color: var(--panel);
}

.nav a {
	font-weight: 600;
	border-bottom: 1px solid transparent;
	transition: border-color 180ms ease;
	margin-left: 1.2rem;
}

.nav a:hover {
	border-bottom-color: var(--text);
	text-decoration: none;
}

.hero {
	padding: clamp(2.2rem, 4vw, 4rem) 0 1.6rem;
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: clamp(1.2rem, 3vw, 2.4rem);
	align-items: start;
}

.hero-copy {
	max-width: 62ch;
}

.eyebrow {
	color: var(--accent);
	text-transform: uppercase;
	letter-spacing: 0.09em;
	font-size: 0.75rem;
	font-weight: 700;
	margin: 0;
}

.hero h1 {
	margin: 0.55rem 0 0;
	font-family: Newsreader, Georgia, serif;
	font-size: clamp(2.1rem, 4.4vw, 4rem);
	line-height: 1.03;
	letter-spacing: -0.02em;
}

.lede {
	margin: 1rem 0 0;
	color: var(--muted);
	max-width: 58ch;
	font-size: clamp(1rem, 1.2vw, 1.1rem);
}

.actions {
	margin-top: 1.5rem;
	display: flex;
	gap: 0.8rem;
	flex-wrap: wrap;
}

.btn {
	display: inline-block;
	padding: 0.72rem 1.02rem;
	border-radius: 0.6rem;
	border: 1px solid var(--panel-border);
	font-weight: 700;
	transition:
		transform 160ms ease,
		border-color 160ms ease,
		background-color 160ms ease;
}

.btn.primary {
	background: var(--accent);
	color: var(--panel);
	border-color: var(--accent);
}

.btn.primary:hover {
	background: var(--accent-strong);
	border-color: var(--accent-strong);
	transform: translateY(-1px);
	text-decoration: none;
}

.btn.ghost {
	background: transparent;
	color: var(--text);
}

.btn.ghost:hover {
	text-decoration: none;
	border-color: #bdb6aa;
	background: #f2efe9;
	transform: translateY(-1px);
}

.hero-panel {
	background: var(--panel-strong);
	border: 1px solid var(--panel-border);
	border-radius: 0.9rem;
	padding: 1rem 1rem 1rem 1.1rem;
}

.panel-label {
	margin: 0;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--muted);
	font-weight: 700;
}

.panel-roast {
	margin: 0.72rem 0 0;
	font-family: Newsreader, Georgia, serif;
	font-size: clamp(1.2rem, 1.8vw, 1.5rem);
	line-height: 1.25;
}

.panel-points {
	margin: 0.9rem 0 0;
	padding-left: 1rem;
}

.panel-points li {
	margin-top: 0.35rem;
	color: var(--muted);
}

.details {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.2rem;
	padding: 0.9rem 0 2.1rem;
}

.detail {
	padding-top: 0.8rem;
	border-top: 1px solid var(--panel-border);
}

.detail h2 {
	margin: 0;
	font-size: 1.04rem;
}

.detail p {
	margin: 0.55rem 0 0;
	color: var(--muted);
}

.legal {
	padding: 0.5rem 0 2.4rem;
}

.legal h1 {
	margin-bottom: 0.5rem;
}

.meta {
	margin: 0;
	color: var(--muted);
}

.legal section {
	margin-top: 1.2rem;
	padding: 1rem;
	border-radius: 0.7rem;
	border: 1px solid var(--panel-border);
	background: #faf8f4;
}

.legal h2 {
	margin: 0 0 0.55rem;
	font-size: 1.05rem;
}

.legal p {
	margin: 0.5rem 0;
	color: #3e3e3e;
}

.legal ul {
	margin: 0.55rem 0 0;
	padding-left: 1.2rem;
}

.site-footer {
	border-top: 1px solid var(--panel-border);
	padding: 1.1rem 0 1.6rem;
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	color: var(--muted);
}

@media (max-width: 780px) {
	.hero {
		grid-template-columns: 1fr;
	}

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