@charset "utf-8";

:root {
	--paper: #f6f3ea;
	--ink: #252923;
	--muted: #757a6e;
	--green: #314f3d;
}

* {
	box-sizing: border-box;
}

html,
body {
	width: 100%;
	min-height: 100%;
}

body {
	margin: 0;
	color: var(--ink);
	background: var(--paper);
	font-family: Inter, Arial, Helvetica, sans-serif;
	overflow-x: hidden;
}

a {
	color: inherit;
}

img {
	display: block;
}

.page-shell {
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 720px;
	overflow: hidden;
	background: var(--paper);
}

.accent {
	position: absolute;
	pointer-events: none;
	user-select: none;
}

.accent--sage {
	left: max(calc((100vw - 1920px) / 2 - 320px), -320px);
	top: 400px;
	width: 980px;
	height: 980px;
}

.accent--gold {
	right: max(calc((100vw - 1920px) / 2 - 290px), -290px);
	top: -360px;
	width: 850px;
	height: 850px;
}

.site-header {
	position: absolute;
	z-index: 3;
	top: 38px;
	left: max(calc((100vw - 1920px) / 2 + 70px), 36px);
	right: max(calc((100vw - 1920px) / 2 + 70px), 36px);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
}

.brand img {
	width: 42px;
	height: 42px;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 36px;
}

.site-nav a {
	font-size: 14px;
	line-height: 1.3;
	text-underline-offset: 2px;
}

.hero {
	position: relative;
	z-index: 1;
	width: min(100%, 1920px);
	height: 100%;
	margin: 0 auto;
}

.hero__phone {
	position: absolute;
	top: 80px;
	left: 5.8333%;
	width: 28.0729%;
	max-width: 539px;
}

.hero__phone img {
	width: 100%;
	height: auto;
}

.hero__content {
	position: absolute;
	z-index: 2;
	top: 215px;
	left: 48.4375%;
}

.hero__eyebrow {
	margin: 0 0 64px;
	color: var(--muted);
	font-size: 11px;
	font-weight: 700;
	line-height: 1.25;
}

.hero h1 {
	margin: 0;
	font-size: 62px;
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: 0;
}

.hero__description {
	margin: 32px 0 0;
	color: var(--muted);
	font-size: 26px;
	font-weight: 400;
	line-height: 1.12;
}

.hero__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 11px;
	width: 220px;
	height: 58px;
	margin-top: 73px;
	border-radius: 29px;
	color: #fffdf8;
	background: var(--green);
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	transition: opacity 160ms ease, transform 160ms ease;
}

.hero__cta:hover,
.hero__cta:focus-visible {
	opacity: .9;
	transform: translateY(-2px);
}

@media (max-width: 1200px) and (min-width: 761px) {
	.site-header {
		left: 32px;
		right: 32px;
	}

	.hero__content {
		left: 48%;
	}

	.hero h1 {
		font-size: 50px;
	}

	.hero__description {
		font-size: 20px;
	}
}

@media (max-width: 760px) {
	.page-shell {
		height: auto;
		min-height: 100vh;
		padding: 24px 20px 0;
	}

	.accent--sage {
		left: -420px;
		top: 650px;
		width: 760px;
		height: 760px;
	}

	.accent--gold {
		right: -390px;
		top: -400px;
		width: 680px;
		height: 680px;
	}

	.site-header {
		position: relative;
		top: auto;
		left: auto;
		right: auto;
		align-items: flex-start;
	}

	.brand {
		gap: 10px;
		font-size: 20px;
	}

	.brand img {
		width: 36px;
		height: 36px;
	}

	.site-nav {
		flex-direction: column;
		align-items: flex-end;
		gap: 6px;
	}

	.site-nav a {
		font-size: 12px;
	}

	.hero {
		height: auto;
	}

	.hero__content {
		position: relative;
		top: auto;
		left: auto;
		margin-top: 76px;
	}

	.hero__eyebrow {
		margin-bottom: 28px;
	}

	.hero h1 {
		font-size: 42px;
		line-height: 1.08;
	}

	.hero__description {
		margin-top: 24px;
		font-size: 19px;
		line-height: 1.35;
	}

	.hero__description br {
		display: none;
	}

	.hero__cta {
		width: 190px;
		height: 52px;
		margin-top: 36px;
		font-size: 16px;
	}

	.hero__phone {
		position: relative;
		top: auto;
		left: auto;
		width: min(92%, 460px);
		margin: 56px auto -24px;
	}
}
