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

:root {
	--bg: #FAFAF8;
	--bg2: #F2F2EE;
	--text: #0D0D0D;
	--muted: #4A4A4A;
	--dim: #888;
	--pale: #C8C8C0;
	--border: #E2E2DC;
	--green: #5C8A00;
	--lime: #C5D930;
	--dark: #0D0D0D;
	--fh: 'Unbounded', sans-serif;
	--fl: 'Syne', sans-serif;
	--fb: 'DM Sans', sans-serif;
	--pad: clamp(24px, 6vw, 80px);
	--max: 1000px;
}

html {
	scroll-behavior: smooth
}

body {
	/*background: var(--bg);*/
	color: var(--text);
	font-family: var(--fb);
	font-weight: 400;
	line-height: 1.6;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased
}

a {
	color: inherit;
	text-decoration: none
}

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

/* Nav */
nav {
	position: sticky;
	top: 0;
	z-index: 200;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 18px var(--pad);
	background: rgba(250, 250, 248, .95);
	border-bottom: 1px solid transparent;
	backdrop-filter: blur(12px);
	transition: border-color .3s
}

nav.scrolled {
	border-bottom-color: var(--border)
}

.logo {
	font-family: var(--fl);
	font-weight: 800;
	font-size: 19px;
	letter-spacing: -.02em;
	color: var(--text)
}

.logo em {
	color: var(--green);
	font-style: normal
}

.nav-links {
	display: flex;
	gap: 28px;
	align-items: center
}

.nav-links a {
	font-size: 11px;
	letter-spacing: .09em;
	text-transform: uppercase;
	color: var(--dim);
	transition: color .2s
}

.nav-links a:hover,
.nav-links a.active {
	color: var(--text)
}

.nav-book {
	padding: 9px 20px;
	border: 1px solid var(--text);
	font-family: var(--fb);
	font-size: 11px;
	font-weight: 500;
	color: var(--text);
	letter-spacing: .03em;
	transition: background .2s, color .2s
}

.nav-book:hover {
	background: var(--text);
	color: var(--bg)
}

.hb {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	padding: 4px
}

.hb span {
	display: block;
	width: 22px;
	height: 1.5px;
	background: var(--text)
}

/* Mobile nav */
@media(max-width:680px) {
	.nav-page {
		display: none
	}

	.nav-links.open .nav-page {
		display: block
	}

	.hb {
		display: flex
	}

	.nav-links {
		gap: 16px
	}

	.nav-links.open {
		flex-direction: column;
		position: absolute;
		top: 57px;
		left: 0;
		right: 0;
		background: rgba(250, 250, 248, .98);
		padding: 20px var(--pad) 28px;
		border-bottom: 1px solid var(--border);
		gap: 20px
	}

	.nav-links.open .nav-book {
		display: none
	}
}

/* Footer */
footer {
	border-top: 1px solid var(--border);
	padding: 32px var(--pad);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px
}

.foot-logo {
	font-family: var(--fl);
	font-weight: 800;
	font-size: 17px
}

.foot-logo em {
	color: var(--green);
	font-style: normal
}

.foot-links {
	display: flex;
	gap: 24px
}

.foot-links a {
	font-size: 11px;
	color: var(--dim);
	letter-spacing: .08em;
	text-transform: uppercase;
	transition: color .2s
}

.foot-links a:hover {
	color: var(--text)
}

.foot-copy {
	font-size: 11px;
	color: var(--pale)
}

/* Utilities */
.wrap {
	max-width: var(--max);
	margin: 0 auto;
	padding: 0 var(--pad)
}

.rule {
	border: none;
	border-top: 1px solid var(--border)
}

.label {
	font-size: 12px;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--green);
	font-weight: 500
}

/* Animations */
@keyframes up {
	from {
		opacity: 0;
		transform: translateY(18px)
	}

	to {
		opacity: 1;
		transform: translateY(0)
	}
}

.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity .65s ease, transform .65s ease
}

.reveal.in {
	opacity: 1;
	transform: translateY(0)
}

.fade {
	opacity: 0;
	transform: translateY(12px);
	transition: opacity .6s ease, transform .6s ease
}

.fade.in {
	opacity: 1;
	transform: translateY(0)
}

/* Hero */
.hero {
	max-width: var(--max);
	margin: 0 auto;
	padding: clamp(64px, 9vw, 120px) var(--pad) clamp(56px, 7vw, 96px);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(40px, 6vw, 96px);
	align-items: end
}

.hero-eyebrow {
	font-size: 10px;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--green);
	font-weight: 500;
	margin-bottom: 20px;
	opacity: 0;
	animation: up .45s .05s forwards
}

.hero-h1 {
	font-family: var(--fh);
	font-size: clamp(28px, 4vw, 52px);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -.03em;
	color: var(--text);
	opacity: 0;
	animation: up .55s .12s forwards
}

.hero-h1 em {
	font-style: normal;
	color: var(--green)
}

.hero-rhs {
	opacity: 0;
	animation: up .55s .22s forwards;
	padding-bottom: 6px
}

.hero-rhs p {
	font-size: 15px;
	color: var(--muted);
	line-height: 1.85;
	font-weight: 300;
	margin-bottom: 16px
}

.hero-cta {
	margin-top: 32px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: flex-start
}

.btn-primary {
	display: inline-block;
	padding: 13px 28px;
	background: var(--text);
	color: var(--bg);
	font-family: var(--fb);
	font-weight: 500;
	font-size: 12px;
	letter-spacing: .03em;
	transition: all .2s
}

.btn-primary:hover {
	background: #222;
	transform: translate(-2px, -2px);
	box-shadow: 3px 3px 0 var(--lime)
}

.hero-sub-note {
	font-size: 11px;
	color: var(--pale);
	letter-spacing: .02em
}

/* Services */
.services {
	padding: clamp(60px, 7vw, 96px) 0;
	border-top: 1px solid var(--border)
}

.services .wrap {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: clamp(40px, 6vw, 80px)
}

.services-lhs .label {
	display: block;
	margin-bottom: 12px
}

.services-lhs p {
	font-size: 13px;
	color: var(--dim);
	line-height: 1.75;
	font-weight: 300;
	margin-top: 12px
}

.services-list {
	list-style: none
}

.services-list li {
	padding: 18px 0;
	border-bottom: 1px solid var(--border)
}

.services-list li:first-child {
	border-top: 1px solid var(--border)
}

.svc-name {
	font-size: 14px;
	color: var(--text);
	font-weight: 400;
	display: block;
	margin-bottom: 4px
}

.svc-desc {
	font-size: 13px;
	color: var(--dim);
	font-weight: 300;
	line-height: 1.65
}

/* Fit */
.fit {
	padding: clamp(60px, 7vw, 96px) 0;
	border-top: 1px solid var(--border);
	background: var(--bg2)
}

.fit .wrap {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: clamp(40px, 6vw, 80px)
}

.fit-lhs .label {
	display: block;
	margin-bottom: 12px
}

.fit-lhs p {
	font-size: 13px;
	color: var(--dim);
	line-height: 1.75;
	font-weight: 300;
	margin-top: 12px
}

.fit-rhs p {
	font-size: 15px;
	color: var(--muted);
	line-height: 1.85;
	font-weight: 300;
	margin-bottom: 16px
}

.fit-rhs p:last-child {
	margin-bottom: 0
}

.fit-rhs strong {
	color: var(--text);
	font-weight: 500
}

/* Cost comparison */
.cost {
	padding: clamp(60px, 7vw, 96px) 0;
	border-top: 1px solid var(--border)
}

.cost .wrap {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: clamp(40px, 6vw, 80px)
}

.cost-lhs .label {
	display: block;
	margin-bottom: 12px
}

.cost-lhs p {
	font-size: 13px;
	color: var(--dim);
	line-height: 1.75;
	font-weight: 300;
	margin-top: 12px
}

.cost-compare {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2px
}

.cost-col {
	padding: 28px 28px 32px
}

.cost-col.fulltime {
	background: var(--bg2);
	border: 1px solid var(--border)
}

.cost-col.fractional {
	background: var(--dark)
}

.cost-col-label {
	font-size: 9px;
	letter-spacing: .2em;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 6px
}

.cost-col.fulltime .cost-col-label {
	color: var(--dim)
}

.cost-col.fractional .cost-col-label {
	color: var(--lime)
}

.cost-col-heading {
	font-family: var(--fh);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: -.01em;
	margin-bottom: 24px;
	line-height: 1.3
}

.cost-col.fulltime .cost-col-heading {
	color: var(--text)
}

.cost-col.fractional .cost-col-heading {
	color: #FAFAF8
}

.cost-row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding: 12px 0;
	border-bottom: 1px solid;
	gap: 12px
}

.cost-col.fulltime .cost-row {
	border-color: var(--border)
}

.cost-col.fractional .cost-row {
	border-color: #1e1e1e
}

.cost-row-label {
	font-size: 13px;
	font-weight: 300;
	line-height: 1.4
}

.cost-col.fulltime .cost-row-label {
	color: var(--muted)
}

.cost-col.fractional .cost-row-label {
	color: #666
}

.cost-row-val {
	font-family: var(--fh);
	font-size: 12px;
	font-weight: 700;
	white-space: nowrap
}

.cost-col.fulltime .cost-row-val {
	color: var(--text)
}

.cost-col.fractional .cost-row-val {
	color: var(--lime)
}

.cost-total {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding-top: 20px;
	gap: 12px
}

.cost-total-label {
	font-size: 10px;
	letter-spacing: .1em;
	text-transform: uppercase;
	font-weight: 500
}

.cost-col.fulltime .cost-total-label {
	color: var(--dim)
}

.cost-col.fractional .cost-total-label {
	color: var(--lime)
}

.cost-total-val {
	font-family: var(--fh);
	font-size: clamp(20px, 2.2vw, 28px);
	font-weight: 900;
	letter-spacing: -.03em
}

.cost-col.fulltime .cost-total-val {
	color: var(--text)
}

.cost-col.fractional .cost-total-val {
	color: #FAFAF8
}

.cost-col-note {
	margin-top: 20px;
	font-size: 11px;
	font-weight: 300;
	font-style: italic;
	line-height: 1.6
}

.cost-col.fulltime .cost-col-note {
	color: var(--dim)
}

.cost-col.fractional .cost-col-note {
	color: #555
}

.cost-footnote {
	margin-top: 16px;
	font-size: 12px;
	color: var(--dim);
	font-weight: 300;
	line-height: 1.7;
	font-style: italic
}

/* CTA strip */
.cta-strip {
	padding: clamp(60px, 7vw, 96px) 0;
	border-top: 1px solid var(--border)
}

.cta-strip .wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
	flex-wrap: wrap
}

.cta-strip-copy h2 {
	font-family: var(--fh);
	font-size: clamp(15px, 2vw, 20px);
	font-weight: 800;
	letter-spacing: -.02em;
	line-height: 1.25;
	color: var(--text);
	margin-bottom: 8px
}

.cta-strip-copy p {
	font-size: 14px;
	color: var(--dim);
	max-width: 400px;
	line-height: 1.75;
	font-weight: 300
}

.cta-strip-action {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 8px;
	flex-shrink: 0
}

.cta-quiet {
	font-size: 11px;
	color: var(--pale);
	letter-spacing: .03em
}

/* About / shared page styles */
.page-top {
	max-width: var(--max);
	margin: 0 auto;
	padding: clamp(52px, 8vw, 96px) var(--pad) 0
}

.page-eyebrow {
	font-size: 10px;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--green);
	font-weight: 500;
	margin-bottom: 16px;
	opacity: 0;
	animation: up .45s .05s forwards
}

.page-title {
	font-family: var(--fh);
	font-size: clamp(24px, 3.5vw, 44px);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -.025em;
	color: var(--text);
	opacity: 0;
	animation: up .5s .12s forwards
}

.founder {
	max-width: var(--max);
	margin: 0 auto;
	padding: clamp(48px, 6vw, 72px) var(--pad)
}

.founder-inner {
	display: grid;
	grid-template-columns: 180px 1fr;
	gap: clamp(32px, 5vw, 64px);
	align-items: start
}

.photo-frame {
	width: 100%;
	aspect-ratio: 3/4;
	background: #EEEEE8;
	border: 1px solid var(--border);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	color: var(--pale)
}

.photo-frame svg {
	opacity: .35
}

.photo-frame span {
	font-size: 9px;
	letter-spacing: .12em;
	text-transform: uppercase
}

.photo-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	display: block
}

.photo-meta {
	margin-top: 14px
}

.founder-name {
	font-family: var(--fh);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: -.01em;
	color: var(--text)
}

.founder-role {
	font-size: 11px;
	color: var(--dim);
	margin-top: 2px
}

.founder-link {
	margin-top: 8px;
	font-size: 10px;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--green);
	border-bottom: 1px solid currentColor;
	padding-bottom: 1px;
	display: inline-block;
	transition: opacity .2s
}

.founder-link:hover {
	opacity: .65
}

.bio-col p {
	font-size: 15px;
	color: var(--muted);
	line-height: 1.9;
	font-weight: 300
}

.bio-col p+p {
	margin-top: 18px
}

.bio-col strong {
	color: var(--text);
	font-weight: 500
}

.bio-pullquote {
	margin-top: 32px;
	padding: 0 0 0 20px;
	border-left: 2px solid var(--lime)
}

.bio-pullquote p {
	font-family: var(--fh);
	font-size: 12px;
	font-weight: 700;
	color: var(--text);
	line-height: 1.7;
	letter-spacing: -.01em
}

.about-section {
	max-width: var(--max);
	margin: 0 auto;
	padding: clamp(48px, 6vw, 72px) var(--pad)
}

.section-label {
	font-size: 10px;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--green);
	font-weight: 500;
	margin-bottom: 18px;
	display: block
}

.section-heading {
	font-family: var(--fh);
	font-size: clamp(15px, 1.8vw, 20px);
	font-weight: 800;
	letter-spacing: -.02em;
	line-height: 1.25;
	color: var(--text);
	margin-bottom: 28px
}

.prose p {
	font-size: 15px;
	color: var(--muted);
	line-height: 1.9;
	font-weight: 300
}

.prose p+p {
	margin-top: 18px
}

.plain-list {
	list-style: none
}

.plain-list li {
	display: grid;
	grid-template-columns: 190px 1fr;
	gap: 24px;
	padding: 20px 0;
	border-bottom: 1px solid var(--border);
	font-size: 14px;
	color: var(--muted);
	line-height: 1.7;
	font-weight: 300
}

.plain-list li:first-child {
	border-top: 1px solid var(--border)
}

.li-label {
	font-family: var(--fh);
	font-size: 10px;
	font-weight: 800;
	color: var(--text);
	letter-spacing: -.01em;
	padding-top: 3px;
	line-height: 1.4
}

.about-cta {
	max-width: var(--max);
	margin: 0 auto;
	padding: clamp(48px, 6vw, 72px) var(--pad)
}

.about-cta-inner {
	border-top: 2px solid var(--text);
	padding-top: 36px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 32px;
	flex-wrap: wrap
}

.about-cta h2 {
	font-family: var(--fh);
	font-size: clamp(13px, 1.6vw, 18px);
	font-weight: 800;
	letter-spacing: -.02em;
	line-height: 1.3
}

.about-cta p {
	font-size: 13px;
	color: var(--dim);
	margin-top: 8px;
	max-width: 380px;
	line-height: 1.7;
	font-weight: 300
}

.btn-dark {
	display: inline-block;
	padding: 13px 26px;
	background: var(--text);
	color: var(--bg);
	font-family: var(--fb);
	font-weight: 500;
	font-size: 11px;
	letter-spacing: .03em;
	transition: background .2s;
	white-space: nowrap
}

.btn-dark:hover {
	background: #2A2A2A
}

/* Contact */
.contact-wrap {
	max-width: var(--max);
	margin: 0 auto;
	padding: clamp(52px, 8vw, 96px) var(--pad) clamp(64px, 8vw, 96px)
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(48px, 7vw, 96px);
	align-items: start;
	margin-top: 48px
}

.contact-lhs p {
	font-size: 15px;
	color: var(--muted);
	line-height: 1.85;
	font-weight: 300;
	margin-bottom: 16px
}

.contact-lhs strong {
	color: var(--text);
	font-weight: 500
}

.contact-detail {
	margin-top: 32px
}

.contact-detail a {
	font-size: 14px;
	color: var(--green);
	border-bottom: 1px solid currentColor;
	padding-bottom: 1px;
	transition: opacity .2s
}

.contact-detail a:hover {
	opacity: .7
}

.contact-detail p {
	font-size: 12px;
	color: var(--dim);
	margin-top: 8px;
	font-weight: 300;
	line-height: 1.6
}

.form-field {
	margin-bottom: 20px
}

.form-field label {
	display: block;
	font-size: 10px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--dim);
	margin-bottom: 7px;
	font-weight: 500
}

.form-field input,
.form-field textarea,
.form-field select {
	width: 100%;
	padding: 11px 14px;
	background: var(--bg2);
	border: 1px solid var(--border);
	font-family: var(--fb);
	font-size: 14px;
	color: var(--text);
	font-weight: 300;
	outline: none;
	transition: border-color .2s;
	-webkit-appearance: none;
	border-radius: 0
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
	border-color: var(--text)
}

.form-field textarea {
	resize: vertical;
	min-height: 120px;
	line-height: 1.6
}

.form-note {
	font-size: 11px;
	color: var(--pale);
	margin-top: 5px;
	line-height: 1.5
}

.btn-submit {
	width: 100%;
	padding: 14px;
	background: var(--text);
	color: var(--bg);
	font-family: var(--fb);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .04em;
	border: none;
	cursor: pointer;
	transition: background .2s
}

.btn-submit:hover {
	background: #222
}

/* Responsive */
@media(max-width:860px) {
	.hero {
		grid-template-columns: 1fr;
		gap: 32px
	}

	.services .wrap,
	.fit .wrap,
	.cost .wrap {
		grid-template-columns: 1fr;
		gap: 28px
	}

	.cost-compare {
		grid-template-columns: 1fr
	}

	.cta-strip .wrap {
		flex-direction: column;
		align-items: flex-start
	}

	.cta-strip-action {
		align-items: flex-start
	}

	.founder-inner {
		grid-template-columns: 1fr;
		gap: 28px
	}

	.plain-list li {
		grid-template-columns: 1fr;
		gap: 6px
	}

	.about-cta-inner {
		flex-direction: column;
		align-items: flex-start
	}

	.contact-grid {
		grid-template-columns: 1fr;
		gap: 40px
	}
}

.fsucc {
	display: none
}
