*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--cream:      #f7f3ee;
	--warm-white: #fdfaf6;
	--green-dark: #3a5a40;
	--green-mid:  #588157;
	--green-light:#a3b18a;
	--bark:       #8c6e4f;
	--text-dark:  #2c2c2c;
	--text-mid:   #5a5a50;
	--text-light: #8a8a7e;
}

html {
	font-size: 16px;
}

body {
	background-color: var(--cream);
	color: var(--text-dark);
	font-family: 'Georgia', 'Times New Roman', serif;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.page {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 100vh;
	width: 100%;
	padding: 3rem 1.5rem;
}

/* ── Header ── */

.site-header {
	width: 100%;
	max-width: 640px;
	text-align: center;
	margin-bottom: 3.5rem;
}

.logo {
	display: inline-block;
	letter-spacing: 0.18em;
	font-size: 1.05rem;
	text-transform: uppercase;
}

.logo-nordic {
	color: var(--green-dark);
	font-weight: 700;
}

.logo-loofah {
	color: var(--bark);
	font-weight: 400;
	margin-left: 0.35em;
}

/* ── Main ── */

.main-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	max-width: 560px;
	width: 100%;
}

.leaf-motif {
	color: var(--green-light);
	width: 80px;
	height: 80px;
	margin-bottom: 2.5rem;
	opacity: 0.85;
}

.leaf-motif svg {
	width: 100%;
	height: 100%;
}

h1 {
	font-size: clamp(1.75rem, 4vw, 2.4rem);
	font-weight: 400;
	color: var(--green-dark);
	line-height: 1.25;
	margin-bottom: 1.25rem;
	letter-spacing: -0.01em;
}

.tagline {
	font-size: 1.05rem;
	color: var(--text-mid);
	line-height: 1.7;
	max-width: 420px;
	margin-bottom: 2.5rem;
}

.divider {
	width: 48px;
	height: 2px;
	background: var(--green-light);
	border-radius: 2px;
	margin-bottom: 2.5rem;
}

.body-text {
	font-family: 'Helvetica Neue', Arial, sans-serif;
	font-size: 0.95rem;
	color: var(--text-mid);
	line-height: 1.8;
	margin-bottom: 2rem;
}

.body-text strong {
	color: var(--text-dark);
	font-weight: 600;
}

.contact-link {
	display: inline-block;
	font-family: 'Helvetica Neue', Arial, sans-serif;
	font-size: 0.875rem;
	color: var(--green-mid);
	text-decoration: none;
	letter-spacing: 0.04em;
	border-bottom: 1px solid var(--green-light);
	padding-bottom: 2px;
	transition: color 0.2s, border-color 0.2s;
}

.contact-link:hover {
	color: var(--green-dark);
	border-color: var(--green-mid);
}

/* ── Footer ── */

.site-footer {
	margin-top: 4rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--green-light);
	width: 100%;
	max-width: 640px;
	text-align: center;
}

.site-footer p {
	font-family: 'Helvetica Neue', Arial, sans-serif;
	font-size: 0.78rem;
	color: var(--text-light);
	letter-spacing: 0.03em;
}

/* ── Responsive ── */

@media (max-width: 480px) {
	.page {
		padding: 2rem 1.25rem;
	}

	.leaf-motif {
		width: 64px;
		height: 64px;
	}

	h1 {
		font-size: 1.6rem;
	}
}
