:root {
	--ink: #151515;
	--soft-ink: #4b4b4b;
	--muted: #787878;
	--paper: #ffffff;
	--mist: #f6f6f4;
	--stone: #e7e4df;
	--line: rgba(21, 21, 21, 0.14);
	--red: #c8192e;
	--gold: #b99a54;
	--shadow: 0 2rem 5rem rgba(21, 21, 21, 0.12);
	font-family: Helvetica, Arial, sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--ink);
	background: var(--paper);
}

a {
	color: inherit;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding: 1rem clamp(1rem, 4vw, 4.5rem);
	background: rgba(255, 255, 255, 1);
	border-bottom: 1px solid var(--line);
	backdrop-filter: blur(18px);
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	text-decoration: none;
}

.brand img {
	width: clamp(10rem, 19vw, 14.5rem);
}

.brand span {
	padding-left: 0.65rem;
	border-left: 1px solid var(--line);
	color: var(--muted);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	margin-top: 12px;
}

nav {
	display: flex;
	align-items: center;
	gap: clamp(0.85rem, 2vw, 1.5rem);
	font-size: 0.86rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

nav a,
.text-link,
.site-footer a,
.brand-card a {
	text-decoration: none;
	border-bottom: 1px solid currentColor;
}

.hero {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(22rem, 1.05fr);
	align-items: center;
	gap: clamp(2rem, 5vw, 5.5rem);
	min-height: calc(100vh - 5.4rem);
	padding: clamp(3rem, 8vw, 7rem) clamp(1rem, 4vw, 4.5rem);
	background:
		radial-gradient(circle at 88% 18%, rgba(200, 25, 46, 0.08), transparent 23rem),
		linear-gradient(125deg, #ffffff 0%, #f7f7f5 52%, #ece8e2 100%);
}

.hero-copy {
	max-width: 45rem;
}

.eyebrow,
.section-kicker {
	margin: 0 0 1.25rem;
	color: var(--red);
	font-size: clamp(0.83rem, 1vw, 0.96rem);
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: lowercase;
}

h1,
h2,
p {
	margin-top: 0;
}

h1,
h2 {
	font-weight: 300;
	letter-spacing: -0.055em;
}

h1 {
	margin-bottom: 1.35rem;
	font-size: clamp(3.6rem, 8.5vw, 8.8rem);
	line-height: 0.86;
}

h2 {
	margin-bottom: 1.25rem;
	font-size: clamp(2.4rem, 5.6vw, 5.9rem);
	line-height: 0.92;
}

.lede,
.about p,
.contact-copy p,
.brand-card p {
	color: var(--soft-ink);
	font-size: clamp(1.05rem, 1.4vw, 1.25rem);
	line-height: 1.65;
}

.actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	margin-top: 1.75rem;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3.15rem;
	padding: 0.9rem 1.35rem;
	border: 1px solid var(--ink);
	border-radius: 999rem;
	font: inherit;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.11em;
	text-decoration: none;
	text-transform: uppercase;
	cursor: pointer;
	transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
	transform: translateY(-1px);
}

.button.primary {
	color: var(--paper);
	background: var(--ink);
}

.button.secondary {
	color: var(--ink);
	background: transparent;
}

.hero-media {
	position: relative;
	min-height: clamp(25rem, 50vw, 42rem);
}

.hero-image {
	position: absolute;
	object-fit: cover;
	box-shadow: var(--shadow);
}

.hero-image-a {
	top: 0;
	right: 12%;
	width: min(58%, 28rem);
	border-radius: 999rem 999rem 2rem 2rem;
}

.hero-image-b {
	bottom: 0;
	left: 0;
	width: min(62%, 30rem);
	border-radius: 2rem;
}

.about,
.brands,
.contact-section {
	padding: clamp(3.2rem, 8vw, 7.5rem) clamp(1rem, 4vw, 4.5rem);
}

.about {
	display: grid;
	grid-template-columns: minmax(10rem, 0.35fr) minmax(0, 0.65fr);
	gap: clamp(2rem, 5vw, 5rem);
	background: var(--paper);
}

.about div:last-child {
	max-width: 62rem;
}

.brands {
	background: var(--mist);
}

.section-heading {
	max-width: 68rem;
	margin-bottom: clamp(2rem, 5vw, 4rem);
}

.brand-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(1rem, 3vw, 2rem);
}

.brand-card {
	display: grid;
	align-content: start;
	gap: 1.25rem;
	min-height: 24rem;
	padding: clamp(1.5rem, 4vw, 3rem);
	background: var(--paper);
	border: 1px solid var(--line);
	box-shadow: 0 1.25rem 3rem rgba(21, 21, 21, 0.07);
}

.brand-card.dark {
	color: var(--paper);
	background: var(--ink);
}

.brand-logo {
	max-height: 4rem;
	width: auto;
	margin-bottom: 1rem;
}

.ecopots-logo {
	max-width: 13rem;
}

.cosapots-logo {
	max-width: 12rem;
}

.brand-card.dark p {
	color: rgba(255, 255, 255, 0.78);
}

.brand-card a {
	justify-self: start;
	align-self: end;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.contact-section {
	display: grid;
	grid-template-columns: minmax(0, 0.88fr) minmax(20rem, 0.72fr);
	gap: clamp(2rem, 5vw, 5rem);
	background:
		radial-gradient(circle at 4% 20%, rgba(185, 154, 84, 0.18), transparent 22rem),
		var(--stone);
}

.contact-copy {
	max-width: 46rem;
}

.lead-form {
	display: grid;
	gap: 1rem;
	padding: clamp(1.25rem, 3vw, 2rem);
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(255, 255, 255, 0.62);
	box-shadow: var(--shadow);
}

.form-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

label {
	display: grid;
	gap: 0.42rem;
}

label span {
	color: var(--soft-ink);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

input,
select,
textarea {
	width: 100%;
	border: 1px solid var(--line);
	border-radius: 0;
	padding: 0.88rem 0.95rem;
	color: var(--ink);
	background: var(--paper);
	font: inherit;
}

textarea {
	resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
	outline: 2px solid rgba(200, 25, 46, 0.22);
	border-color: var(--red);
}

.trap {
	position: absolute;
	left: -10000px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.form-status {
	min-height: 1.5rem;
	margin: 0;
	color: var(--soft-ink);
}

.site-footer {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 1.5rem;
	padding: 2rem clamp(1rem, 4vw, 4.5rem);
	background: var(--paper);
	border-top: 1px solid var(--line);
}

.site-footer img {
	width: 11rem;
	margin-bottom: 0.75rem;
}

.site-footer p {
	margin: 0.25rem 0;
	color: var(--muted);
}

@media (max-width: 900px) {
	.site-header {
		align-items: flex-start;
		flex-direction: column;
	}

	nav {
		width: 100%;
		justify-content: space-between;
	}

	.hero,
	.about,
	.brands,
	.contact-section,
	.brand-grid {
		grid-template-columns: 1fr;
	}

	.hero {
		min-height: auto;
	}

	.hero-media {
		min-height: 27rem;
	}

	.form-row {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 560px) {
	nav {
		font-size: 0.74rem;
	}

	h1 {
		font-size: clamp(3rem, 18vw, 4.7rem);
	}

	.hero-image-a {
		right: 0;
		width: 68%;
	}

	.hero-image-b {
		width: 72%;
	}

	.site-footer {
		align-items: flex-start;
		flex-direction: column;
	}
}
