:root {
	--text: #ffffff;
	--dark: #111111;
	--light: #f7f5f0;
	--max-width: 1400px;

	--heading: #1c1c1c;
	--body: #5f5f5f;
	--accent: #667a63;

	--radius: 20px;
	--border: rgba(0, 0, 0, 0.08);

	--shadow: 0 10px 30px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.03);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', sans-serif;
	background: var(--light);
	color: var(--body);
}

h3 {
	font-size: 0.85rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;

	color: var(--accent);

	margin-bottom: 1.5rem;
}

/* body text */
p {
	font-size: 1.05rem;
	line-height: 1.8;

	color: var(--body);

	max-width: 75ch;
	margin-bottom: 1.25rem;
}

/* =========================
   HEADER
========================= */

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;

	padding: 32px 48px;
	padding-bottom: 64px !important;

	display: flex;
	justify-content: space-between;
	align-items: center;

	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.logo {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	font-size: clamp(1rem, 1.75vw, 1.9rem);
	font-weight: 600;
	letter-spacing: 0.14em;
	white-space: nowrap;
	color: white;
	cursor: pointer;
	text-decoration: none;
}

.logo img {
	max-height: 32px;
}

.nav {
	display: flex;
	gap: 2rem;
}

.nav a {
	color: white;
	text-decoration: none;
	font-size: clamp(1rem, 1.75vw, 1.9rem);
	letter-spacing: 0.05em;
}

section {
	padding: 8rem 3rem;
}

section p:last-child {
	margin-bottom: 0;
}

section div:last-child {
	margin-bottom: 0;
}

.section-label {
	font-size: 1.1rem;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	margin-bottom: 1rem;
	color: var(--accent);
	font-weight: bold;
}

.section-inner {
	width: min(var(--max-width), calc(100% - 14vw));
	margin: 0 auto;
}

/* =========================
   LEAD STATEMENT (hero text)
========================= */

.section-lead {
	font-size: clamp(1.2rem, 2.2vw, 2rem);
	line-height: 1.5;
	font-weight: 300;
	letter-spacing: -0.01em;

	margin-bottom: 3rem;

	max-width: 70ch;
}

/* =========================
   SECTION BLOCKS
========================= */

.section-block {
	margin-bottom: 4.5rem;
	margin: 0 5%;
}

.section-block p:last-child {
	margin-bottom: 0;
}

/* =========================
   SPACING SYSTEM
========================= */

.section-block + .section-block {
	margin-top: 2rem;
}

.label {
	display: inline-block;

	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;

	color: var(--accent);

	margin-bottom: 0.75rem;
}

.btn {
	display: inline-flex;
	align-items: center;

	padding: 0.9rem 0;

	font-size: 0.85rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;

	color: var(--accent);
	background: transparent;

	border: none;
	border-bottom: 1px solid rgba(102, 122, 99, 0.4);

	cursor: pointer;

	transition: all 0.25s ease;
}

.btn:hover {
	border-bottom-color: var(--accent);
	transform: translateY(-1px);
}

/* =========================
   FOOTER
========================= */

footer {
	margin-top: auto;
	background: #111;
	color: white;

	padding: 80px 7vw;

	display: flex;
	align-items: center;
	gap: 2rem;
	flex-wrap: nowrap;
	overflow: hidden;
}

footer .footer-logo {
	max-width: 70px;
	margin-bottom: 0;
	flex: 0 0 auto;
}

footer .footer-logo img {
	width: 100%;
	height: auto;
	display: block;
}

footer .footer-content {
	flex: 1 1 auto;
	min-width: 0;
	overflow: visible;
}

footer h3 {
	margin-bottom: 0.5rem;
	font-weight: bold;
}

footer p {
	opacity: 0.85;
	line-height: 1.8;
	color: var(--light);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {
	.section-inner {
		width: calc(100% - 2rem);
	}

	section {
		padding: 5rem 2rem;
	}

	.site-header {
		padding: 24px;
	}

	.nav {
		gap: 1rem;
		font-size: 0.8rem;
	}
}

@media (max-width: 768px) {
	.section-inner {
		width: calc(100% - 2rem);
	}

	section {
		padding: 3rem 1rem;
	}

	.site-header {
		padding: 24px;
	}

	.site-header .logo {
		font-size: 1.2rem;
	}
	.nav a {
		font-size: 1rem;

	.nav {
		gap: 1rem;
		font-size: 0.8rem;
	}

	.section-lead {
		font-size: 1.25rem;
		margin-bottom: 2rem;
	}

	.section-inner {
		width: calc(100% - 2rem);
	}
}

@media (max-width: 680px) {
	section {
		padding-top: 5rem;
	}

	.logo img {
		max-height: 25px;
	}

	.nav {
		margin-top: -.5rem;
	}

	footer {
		/* keep logo and text on the same row on small screens */
		flex-direction: row;
		align-items: center;
		padding: 48px 4vw;
		gap: 1rem;
	}

	footer .footer-logo {
		width: auto;
		max-width: 70px;
		margin-bottom: 0;
	}

	footer .footer-content {
		width: auto;
		min-width: 0;
	}
	.site-header {
		flex-direction: column;
		align-items: flex-start;
		padding-bottom: 64px !important;
		gap: 1rem;
		background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0));
	}
}
