/* =========================================================
   HANSEN LANDSCAPE
   Global site stylesheet
   ========================================================= */

/* =========================================================
   VARIABLES
   ========================================================= */

:root {
	--green-950: #0b271b;
	--green-900: #123b29;
	--green-800: #175137;
	--green-700: #1f6947;
	--green-500: #6f956f;

	--sage-200: #dce6d8;
	--sage-100: #edf3ea;

	--cream: #f7f4ec;
	--sand: #d3c2a2;
	--charcoal: #222824;
	--white: #ffffff;

	--border: rgba(18, 59, 41, 0.16);
	--shadow: 0 12px 35px rgba(11, 39, 27, 0.12);

	--content-width: 1240px;
}


/* =========================================================
   RESET AND BASE STYLES
   ========================================================= */

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	overflow-x: clip;
	color: var(--charcoal);
	background: var(--cream);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.6;
}

h1,
h2,
h3,
h4,
p,
figure,
blockquote {
	margin-top: 0;
}

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

a {
	color: inherit;
}

button,
input,
select,
textarea {
	font: inherit;
}

button {
	color: inherit;
}

iframe {
	max-width: 100%;
}

body.nav-is-open {
	overflow: hidden;
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.skip-link {
	position: fixed;
	z-index: 10000;
	top: 12px;
	left: 12px;
	padding: 10px 16px;
	border-radius: 4px;
	background: var(--white);
	color: var(--green-950);
	font-weight: 700;
	text-decoration: none;
	box-shadow: var(--shadow);
	transform: translateY(-200%);
	transition: transform 160ms ease;
}

.skip-link:focus {
	transform: translateY(0);
}

.primary-nav a:focus-visible,
.site-logo:focus-visible,
.footer-logo:focus-visible,
.footer-links a:focus-visible,
.home-hero__scroll:focus-visible {
	outline: 3px solid #f4cf72;
	outline-offset: 4px;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
	position: absolute;
	z-index: 1000;
	top: 0;
	left: 0;
	width: 100%;
	color: var(--white);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: min(calc(100% - 48px), var(--content-width));
	margin: 0 auto;
	padding: 20px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}


/* =========================================================
   LOGO
   ========================================================= */

.site-logo {
	position: relative;
	z-index: 2;
	display: block;
	flex: 0 0 auto;
	width: clamp(150px, 18vw, 220px);
	text-decoration: none;
}

.site-logo img {
	width: 100%;
}


/* =========================================================
   PRIMARY NAVIGATION
   ========================================================= */

.primary-nav {
	display: flex;
	align-items: center;
	gap: clamp(18px, 2.5vw, 34px);
	font-family: Georgia, "Times New Roman", serif;
}

.primary-nav a {
	position: relative;
	font-size: 0.93rem;
	font-weight: 700;
	text-decoration: none;
}

.primary-nav > a:not(.nav-cta)::after {
	position: absolute;
	right: 0;
	bottom: -8px;
	left: 0;
	height: 2px;
	background: var(--white);
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 180ms ease;
}

.primary-nav > a:not(.nav-cta):hover::after,
.primary-nav > a:not(.nav-cta):focus-visible::after,
.primary-nav > a:not(.nav-cta).is-active::after {
	transform: scaleX(1);
	transform-origin: left;
}

.nav-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 9px 18px;
	border: 1px solid var(--white);
	border-radius: 999px;
	text-align: center;
	transition:
		background-color 180ms ease,
		color 180ms ease,
		transform 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
	background: var(--white);
	color: var(--green-950);
}

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

.nav-toggle {
	display: none;
}

/* Interior pages use a solid green header. */

body:not([data-page="home"]) .site-header {
	position: relative;
	background: var(--green-900);
}


/* =========================================================
   SHARED LAYOUT
   ========================================================= */

.section {
	padding: clamp(72px, 9vw, 130px) 24px;
}

.section-shell {
	width: min(100%, var(--content-width));
	margin-inline: auto;
}

.section-eyebrow {
	margin: 0 0 16px;
	color: var(--green-700);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	line-height: 1.3;
	text-transform: uppercase;
}

.section-eyebrow--light {
	color: #d8e6d4;
}

.section-heading {
	margin-bottom: clamp(38px, 6vw, 70px);
}

.section-heading--split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 0.65fr);
	gap: clamp(40px, 8vw, 120px);
	align-items: end;
}

/*
 * Shared serif heading typography.
 * This includes all major Services page headings.
 */

.section-heading h2,
.home-intro h2,
.featured-project h2,
.experience-callout h2,
.home-cta h2,
.services-overview__heading h1,
.services-overview__heading h2,
.service-group__heading h2,
.service-guarantee h2,
.services-cta h2 {
	margin: 0;
	color: var(--green-950);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2.3rem, 4.5vw, 4.5rem);
	font-weight: 400;
	letter-spacing: -0.04em;
	line-height: 1.02;
	text-wrap: balance;
}

.section-heading p {
	margin: 0 0 18px;
}

.large-copy {
	color: var(--green-900);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.35rem, 2.1vw, 1.8rem);
	line-height: 1.4;
}


/* =========================================================
   TEXT LINKS
   ========================================================= */

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--green-800);
	font-weight: 800;
	text-decoration: none;
}

.text-link span {
	transition: transform 180ms ease;
}

.text-link:hover span {
	transform: translateX(5px);
}

.text-link--light {
	color: var(--white);
}


/* =========================================================
   BUTTONS
   ========================================================= */

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 12px 25px;
	border: 2px solid transparent;
	border-radius: 999px;
	font-size: 0.92rem;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition:
		background-color 180ms ease,
		border-color 180ms ease,
		color 180ms ease,
		box-shadow 180ms ease,
		transform 180ms ease;
}

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

.button:focus-visible,
.text-link:focus-visible {
	outline: 3px solid #f4cf72;
	outline-offset: 4px;
}

.button--light {
	border-color: var(--white);
	background: var(--white);
	color: var(--green-950);
}

.button--light:hover {
	border-color: var(--sage-200);
	background: var(--sage-200);
}

.button--outline {
	border-color: rgba(18, 59, 41, 0.2);
	background: rgba(18, 59, 41, 0.12);
	color: var(--white);
	backdrop-filter: blur(8px);
}

.button--outline:hover {
	border-color: var(--green-800);
	background: var(--green-800);
	color: var(--white);
}

.button--green {
	border-color: var(--green-800);
	background: var(--green-800);
	color: var(--white);
}

.button--green:hover {
	border-color: var(--green-950);
	background: var(--green-950);
}


/* =========================================================
   HOME VIDEO HERO
   ========================================================= */

.home-hero {
	position: relative;
	display: grid;
	align-items: center;
	min-height: 780px;
	min-height: 100svh;
	padding: 150px clamp(24px, 6vw, 90px) 100px;
	overflow: hidden;
	isolation: isolate;
	background:
		linear-gradient(
			rgba(11, 39, 27, 0.54),
			rgba(11, 39, 27, 0.54)
		),
		url("/assets/images/hero-poster.jpg") center / cover no-repeat;
	color: var(--white);
}

.home-hero__media,
.home-hero__overlay {
	position: absolute;
	inset: 0;
}

.home-hero__media {
	z-index: -2;
	overflow: hidden;
	pointer-events: none;
}

.home-hero__media iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	width: max(100vw, 177.78vh);
	height: max(56.25vw, 100vh);
	min-width: 100%;
	min-height: 100%;
	border: 0;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.home-hero__overlay {
	z-index: -1;
	background:
		linear-gradient(
			90deg,
			rgba(5, 25, 16, 0.8) 0%,
			rgba(5, 25, 16, 0.48) 52%,
			rgba(5, 25, 16, 0.2) 100%
		),
		linear-gradient(
			0deg,
			rgba(5, 25, 16, 0.55) 0%,
			transparent 48%
		);
}

.home-hero__content {
	width: min(100%, 880px);
}

.home-hero__eyebrow {
	margin: 0 0 18px;
	color: #dbe8d7;
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.17em;
	text-transform: uppercase;
}

.home-hero h1 {
	max-width: 870px;
	margin: 0;
	color: var(--white);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(3.6rem, 7.7vw, 7.5rem);
	font-weight: 400;
	letter-spacing: -0.055em;
	line-height: 0.93;
	text-shadow: 0 3px 22px rgba(0, 0, 0, 0.34);
	text-wrap: balance;
}

.home-hero__intro {
	max-width: 700px;
	margin: 27px 0 0;
	color: rgba(255, 255, 255, 0.92);
	font-size: clamp(1.05rem, 1.6vw, 1.3rem);
	line-height: 1.6;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.home-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 35px;
}

.home-hero__scroll {
	position: absolute;
	right: clamp(24px, 6vw, 90px);
	bottom: 35px;
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--white);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-decoration: none;
	text-transform: uppercase;
}


/* =========================================================
   COMPANY INTRODUCTION
   ========================================================= */

.home-intro {
	background: var(--cream);
}

.home-intro__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
	gap: clamp(50px, 9vw, 150px);
	align-items: start;
}

.home-intro__copy p {
	margin: 0 0 20px;
}

.home-intro__copy .large-copy {
	color: var(--green-900);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.35rem, 2.1vw, 1.8rem);
	line-height: 1.4;
}

.home-intro__copy .text-link {
	margin-top: 12px;
}


/* =========================================================
   LARGE FEATURE IMAGE
   ========================================================= */

.home-feature-image {
	padding: 0 24px clamp(72px, 9vw, 130px);
	background: var(--cream);
}

.home-feature-image__figure {
	aspect-ratio: 16 / 8;
	margin: 0;
	overflow: hidden;
	border-radius: 4px;
	background: var(--sage-200);
}

.home-feature-image__figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/* =========================================================
   HOME SERVICE CARDS
   ========================================================= */

.home-services {
	background: var(--white);
}

.service-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(22px, 3vw, 40px);
}

.service-card {
	min-width: 0;
}

.service-card__image {
	display: block;
	aspect-ratio: 4 / 4.8;
	overflow: hidden;
	background: var(--sage-200);
}

.service-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 500ms ease;
}

.service-card:hover .service-card__image img {
	transform: scale(1.035);
}

.service-card__content {
	padding: 25px 4px 0;
}

.service-card__number {
	margin: 0 0 14px;
	color: var(--green-700);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.12em;
}

.service-card h3 {
	margin: 0 0 13px;
	color: var(--green-950);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.5rem, 2vw, 2rem);
	font-weight: 400;
	line-height: 1.15;
}

.service-card__content > p:not(.service-card__number) {
	margin: 0 0 16px;
}

.service-card__content > a {
	color: var(--green-800);
	font-weight: 800;
	text-decoration: none;
}

.service-card__content > a span {
	display: inline-block;
	margin-left: 6px;
	transition: transform 180ms ease;
}

.service-card__content > a:hover span {
	transform: translateX(5px);
}


/* =========================================================
   FEATURED PROJECT
   ========================================================= */

.featured-project {
	background: var(--sage-100);
}

.featured-project__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.75fr);
	gap: clamp(50px, 8vw, 120px);
	align-items: center;
}

.featured-project__image {
	aspect-ratio: 4 / 4.6;
	overflow: hidden;
	background: var(--sage-200);
}

.featured-project__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.featured-project__content > p:not(.section-eyebrow) {
	margin: 25px 0;
	font-size: 1.05rem;
}

.project-details {
	margin: 30px 0 35px;
	padding: 0;
	border-top: 1px solid var(--border);
	list-style: none;
}

.project-details li {
	display: grid;
	grid-template-columns: 90px minmax(0, 1fr);
	gap: 20px;
	padding: 14px 0;
	border-bottom: 1px solid var(--border);
}

.project-details span {
	color: var(--green-700);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.project-details strong {
	color: var(--green-950);
	font-weight: 700;
}


/* =========================================================
   EXPERIENCE CALLOUT
   ========================================================= */

.experience-callout {
	padding: clamp(80px, 10vw, 145px) 24px;
	background: var(--green-900);
	color: rgba(255, 255, 255, 0.84);
}

.experience-callout__grid {
	display: grid;
	grid-template-columns: minmax(250px, 0.65fr) minmax(0, 1fr);
	gap: clamp(50px, 10vw, 150px);
	align-items: start;
}

.experience-callout__value {
	margin: 0;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.35);
	color: #d8e6d4;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.4rem, 2.6vw, 2.3rem);
	line-height: 1.2;
}

.experience-callout h2 {
	color: var(--white);
}

.experience-callout__copy > p:not(.section-eyebrow) {
	max-width: 720px;
	margin: 26px 0;
	font-size: 1.08rem;
}


/* =========================================================
   FINAL HOME CTA
   ========================================================= */

.home-cta {
	background: var(--sand);
}

.home-cta__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 50px;
	align-items: center;
}

.home-cta__inner > div {
	max-width: 800px;
}

.home-cta h2 {
	font-size: clamp(2.4rem, 4.7vw, 4.8rem);
}

.home-cta__inner p:not(.section-eyebrow) {
	max-width: 650px;
	margin: 22px 0 0;
	font-size: 1.08rem;
}


/* =========================================================
   SERVICES PHOTO HERO
   ========================================================= */

.services-photo-hero {
	position: relative;
	width: 100%;
	height: clamp(24rem, 55vw, 48rem);
	overflow: hidden;
	background: var(--green-900);
}

.services-photo-hero img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}


/* =========================================================
   SERVICES OVERVIEW
   ========================================================= */

.service-details {
	background: var(--cream);
}

.service-details--first {
	padding-top: clamp(72px, 9vw, 130px);
}

/*
 * The Services overview uses a wider shell than other
 * sections without changing the rest of the website.
 */

.service-details--first > .section-shell {
	width: min(100%, 1440px);
}

.services-overview {
	display: grid;
	grid-template-columns:
		minmax(0, 1.2fr)
		minmax(420px, 0.9fr);
	gap: clamp(35px, 5vw, 70px);
	align-items: start;
}

.services-overview__heading {
	min-width: 0;
	max-width: 900px;
}

.services-overview__heading h1 {
	max-width: 14ch;
}

.services-overview__aside {
	min-width: 0;
	padding-top: 70px;
}

.services-overview__intro {
	width: 100%;
	max-width: 680px;
	margin: 0;
}

.services-overview__actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	width: 100%;
	margin-top: 35px;
}

.services-overview__actions .button {
	width: auto;
	min-width: 0;
	margin: 0;
	padding-right: 18px;
	padding-left: 18px;
}


/* =========================================================
   SERVICES GROUPS
   ========================================================= */

.service-group {
	margin-top: clamp(90px, 12vw, 170px);
	scroll-margin-top: 30px;
}

.service-group__heading {
	display: grid;
	grid-template-columns: 90px minmax(0, 1fr);
	gap: clamp(30px, 5vw, 70px);
	align-items: start;
	margin-bottom: clamp(40px, 6vw, 80px);
}


.service-group__number {
	margin: 0;
	color: rgba(18, 59, 41, 0.38);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(3rem, 6vw, 6rem);
	font-weight: 400;
	line-height: 0.9;
}

.service-group__heading > div {
	max-width: 900px;
}

.service-group__heading h2,
.services-overview__heading h2 {
	max-width: 18ch;
	margin-bottom: 22px;
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 400;
}

.service-group__heading > div > p:last-child {
	max-width: 720px;
	margin-bottom: 0;
}


/* =========================================================
   SERVICES ACCORDIONS
   ========================================================= */

.service-accordion {
	border-top: 1px solid var(--border);
}

.service-disclosure {
	border-bottom: 1px solid var(--border);
	scroll-margin-top: 30px;
}

.service-disclosure summary {
	display: grid;
	grid-template-columns: 50px minmax(0, 1fr) 30px;
	gap: 20px;
	align-items: center;
	padding: 30px 0;
	cursor: pointer;
	list-style: none;
}

.service-disclosure summary::-webkit-details-marker {
	display: none;
}

.service-disclosure summary::marker {
	content: "";
}

.service-disclosure summary:focus-visible {
	outline: 3px solid #f4cf72;
	outline-offset: 4px;
}

.service-disclosure__number {
	color: var(--green-700);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.12em;
}

.service-disclosure__heading {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.service-disclosure__heading strong {
	color: var(--green-950);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.5rem, 2vw, 2rem);
	font-weight: 400;
	line-height: 1.15;
}

.service-disclosure__heading small {
	color: rgba(34, 40, 36, 0.72);
	font-size: 0.95rem;
	line-height: 1.45;
}

.service-disclosure__icon {
	position: relative;
	width: 24px;
	height: 24px;
}

.service-disclosure__icon::before,
.service-disclosure__icon::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 20px;
	height: 2px;
	background: var(--green-800);
	content: "";
	transform: translate(-50%, -50%);
	transition: transform 180ms ease;
}

.service-disclosure__icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.service-disclosure[open] .service-disclosure__icon::after {
	transform: translate(-50%, -50%) rotate(0);
}

.service-disclosure__content {
	max-width: 760px;
	margin-left: 70px;
	padding: 0 0 45px;
}

.service-disclosure__content p {
	margin-bottom: 20px;
}

.service-feature-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 30px;
	margin: 25px 0;
	padding: 0;
	list-style: none;
}

.service-feature-list li {
	position: relative;
	padding-left: 22px;
}

.service-feature-list li::before {
	position: absolute;
	top: 0.65em;
	left: 0;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--green-500);
	content: "";
}

/* =========================================================
   IMAGE INSIDE EACH SERVICE ACCORDION
   ========================================================= */

/*
 * Reset the service group if you added the previous
 * two-column service-group CSS.
 */
.service-group {
	display: block;
}

/*
 * The accordion body contains:
 * 1. Text on the left
 * 2. One image on the right
 */
.service-disclosure__body {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.7fr);
	gap: clamp(35px, 5vw, 75px);
	align-items: start;
	padding: 5px 0 50px 70px;
}

/* Reset the old spacing because the body now handles it. */
.service-disclosure__body .service-disclosure__content {
	max-width: 760px;
	margin-left: 0;
	padding: 0;
}

/* Accordion image */
.service-disclosure__media {
	min-width: 0;
	margin: 0;
}

.service-disclosure__media img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 5;
	border-radius: 4px;
	object-fit: cover;
}

/*
 * Optional caption. Remove this rule and the figcaption
 * markup if you do not need captions.
 */
.service-disclosure__media figcaption {
	margin-top: 10px;
	color: rgba(34, 40, 36, 0.68);
	font-size: 0.8rem;
	line-height: 1.5;
}

/* Tablet and mobile */
@media (max-width: 900px) {
	.service-disclosure__body {
		grid-template-columns: 1fr;
		padding-left: 70px;
	}

	.service-disclosure__media {
		max-width: 680px;
	}

	.service-disclosure__media img {
		aspect-ratio: 16 / 10;
	}
}

@media (max-width: 600px) {
	.service-disclosure summary {
		grid-template-columns: 35px minmax(0, 1fr) 24px;
		gap: 12px;
	}

	.service-disclosure__body {
		gap: 28px;
		padding: 5px 0 38px;
	}

	.service-feature-list {
		grid-template-columns: 1fr;
	}
}

/* =========================================================
   SERVICE ACCORDION: TEXT + COLLAGE
   ========================================================= */

.service-disclosure__body {
	display: grid;
	grid-template-columns:
		minmax(0, 1fr)
		clamp(320px, 30vw, 500px);
	gap: clamp(35px, 5vw, 80px);
	align-items: start;
	padding: 5px 0 50px 70px;
}

/*
 * Override the original content rule:
 *
 * .service-disclosure__content {
 *     max-width: 760px;
 *     margin-left: 70px;
 *     padding: 0 0 45px;
 * }
 */
.service-disclosure__body > .service-disclosure__content {
	width: 100%;
	max-width: 760px;
	margin: 0;
	padding: 0;
}

.service-disclosure__media {
	width: 100%;
	min-width: 0;
	margin: 0;
}

.service-disclosure__media img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	border-radius: 4px;
	object-fit: cover;
}

.service-disclosure__media figcaption {
	margin-top: 10px;
	color: rgba(34, 40, 36, 0.68);
	font-size: 0.8rem;
	line-height: 1.5;
}

/* Stack the photo below the text on tablets. */
@media (max-width: 950px) {
	.service-disclosure__body {
		grid-template-columns: 1fr;
		padding-left: 70px;
	}

	.service-disclosure__media {
		max-width: 650px;
	}
}

/* Mobile layout */
@media (max-width: 600px) {
	.service-disclosure summary {
		grid-template-columns: 35px minmax(0, 1fr) 24px;
		gap: 12px;
	}

	.service-disclosure__body {
		gap: 28px;
		padding: 5px 0 38px;
	}

	.service-feature-list {
		grid-template-columns: 1fr;
	}

	.service-disclosure__media {
		max-width: none;
	}
}

/* =========================================================
   SERVICES GUARANTEE
   ========================================================= */

.service-guarantee {
	margin-top: clamp(90px, 12vw, 170px);
	padding: clamp(80px, 10vw, 145px) 24px;
	background: var(--green-900);
	color: rgba(255, 255, 255, 0.84);
}

.service-guarantee__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
	gap: clamp(50px, 9vw, 130px);
	align-items: start;
}

.service-guarantee h2 {
	max-width: 17ch;
	color: var(--white);
}

.service-guarantee__grid > div:last-child {
	max-width: 620px;
}

.service-guarantee__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px 24px;
	margin-top: 30px;
}


/* =========================================================
   SERVICES FINAL CTA
   ========================================================= */

.services-cta {
	background: var(--sand);
}

.services-cta__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 50px;
	align-items: center;
}

.services-cta__inner > div:first-child {
	max-width: 800px;
}

.services-cta__inner p:not(.section-eyebrow) {
	max-width: 650px;
	margin: 22px 0 0;
	font-size: 1.08rem;
}

.services-cta__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px 24px;
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */

/* Contact photograph */

.contact-photo-hero {
	position: relative;
	width: 100%;
	height: clamp(24rem, 55vw, 48rem);
	overflow: hidden;
	background: var(--green-900);
}

.contact-photo-hero img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}


/* Contact introduction */

.contact-intro {
	background: var(--cream);
}

.contact-intro__grid {
	display: grid;
	grid-template-columns:
		minmax(0, 1.15fr)
		minmax(320px, 0.7fr);
	gap: clamp(50px, 9vw, 140px);
	align-items: start;
}

.contact-intro__heading h1,
.contact-form-heading h2,
.contact-services h2,
.contact-thank-you h1 {
	margin: 0;
	color: var(--green-950);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2.3rem, 4.5vw, 4.5rem);
	font-weight: 400;
	letter-spacing: -0.04em;
	line-height: 1.02;
	text-wrap: balance;
}

.contact-intro__heading h1 {
	max-width: 13ch;
}

.contact-intro__copy {
	max-width: 600px;
}

.contact-intro__copy > p {
	margin-bottom: 22px;
}


/* Direct phone information */

.contact-direct {
	margin-top: 35px;
	padding-top: 24px;
	border-top: 1px solid var(--border);
}

.contact-direct__label {
	margin-bottom: 8px;
	color: var(--green-700);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.contact-direct__links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 25px;
}

.contact-direct__links a {
	color: var(--green-900);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.3rem, 2vw, 1.8rem);
	text-decoration-thickness: 1px;
	text-underline-offset: 5px;
}


/* Contact form section */

.contact-form-section {
	padding: clamp(80px, 10vw, 145px) 24px;
	background: var(--green-900);
	color: rgba(255, 255, 255, 0.88);
}

.contact-form-layout {
	display: grid;
	grid-template-columns:
		minmax(260px, 0.65fr)
		minmax(0, 1.2fr);
	gap: clamp(50px, 9vw, 140px);
	align-items: start;
}

.contact-form-heading {
	position: sticky;
	top: 40px;
}

.contact-form-heading h2 {
	max-width: 12ch;
	color: var(--white);
}

.contact-form-heading > p:last-child {
	max-width: 420px;
	margin: 25px 0 0;
}


/* Form */

.contact-form {
	display: grid;
	gap: 38px;
	width: 100%;
}

.contact-form__field {
	display: grid;
	gap: 10px;
}

.contact-form__field label,
.contact-form__fieldset legend {
	color: var(--white);
	font-size: 1rem;
	font-weight: 700;
}

.contact-form__field label span {
	color: #f4a49d;
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
	width: 100%;
	min-width: 0;
	padding: 12px 0;
	border: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.62);
	border-radius: 0;
	outline: 0;
	background: transparent;
	color: var(--white);
	font: inherit;
	transition:
		border-color 180ms ease,
		box-shadow 180ms ease;
}

.contact-form__field textarea {
	min-height: 180px;
	resize: vertical;
}

.contact-form__field select {
	padding-right: 35px;
	background-color: var(--green-900);
	cursor: pointer;
}

.contact-form__field select option {
	background: var(--white);
	color: var(--green-950);
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
	border-color: #f4cf72;
	box-shadow: 0 2px 0 #f4cf72;
}

.contact-form__field input:-webkit-autofill,
.contact-form__field input:-webkit-autofill:hover,
.contact-form__field input:-webkit-autofill:focus {
	-webkit-text-fill-color: var(--white);
	box-shadow: 0 0 0 1000px var(--green-900) inset;
}


/* Checkbox group */

.contact-form__fieldset {
	margin: 0;
	padding: 0;
	border: 0;
}

.contact-form__fieldset legend {
	margin-bottom: 18px;
}

.contact-form__checkboxes {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 30px;
}

.contact-form__checkbox {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	cursor: pointer;
}

.contact-form__checkbox input {
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	margin: 4px 0 0;
	accent-color: #f4cf72;
}


/* Form button */

.contact-form__submit {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 30px;
	padding-top: 10px;
}

.contact-form__button {
	min-width: 240px;
	border-color: #e7c66d;
	background: #e7c66d;
	color: var(--green-950);
}

.contact-form__button:hover {
	border-color: var(--white);
	background: var(--white);
}

.contact-form__privacy {
	max-width: 380px;
	margin: 0;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
}


/* Hidden spam trap */

.contact-form__honeypot {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}


/* Services CTA beneath the form */

.contact-services {
	background: var(--sand);
}

.contact-services__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 50px;
	align-items: center;
}

.contact-services__inner > div {
	max-width: 800px;
}


/* Thank-you page */

.contact-thank-you {
	display: grid;
	align-items: center;
	min-height: 70vh;
	background: var(--cream);
}

.contact-thank-you__inner {
	max-width: 950px;
}

.contact-thank-you h1 {
	max-width: 16ch;
}

.contact-thank-you .large-copy {
	max-width: 760px;
	margin: 30px 0 0;
}

.contact-thank-you__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 30px;
	margin-top: 40px;
}


/* Contact tablet */

@media screen and (max-width: 900px) {
	.contact-intro__grid,
	.contact-form-layout {
		grid-template-columns: 1fr;
	}

	.contact-form-heading {
		position: static;
	}

	.contact-form-heading h2 {
		max-width: 16ch;
	}

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


/* Contact phone */

@media screen and (max-width: 650px) {
	.contact-photo-hero {
		height: clamp(20rem, 75vw, 32rem);
	}

	.contact-form-section {
		padding: 72px 20px;
	}

	.contact-form {
		gap: 32px;
	}

	.contact-form__checkboxes {
		grid-template-columns: 1fr;
	}

	.contact-form__submit {
		align-items: stretch;
		flex-direction: column;
	}

	.contact-form__button {
		width: 100%;
		min-width: 0;
	}

	.contact-services__inner .button {
		width: 100%;
	}
}

.careful-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(100px, 140px));
	justify-content: center;
	gap: 1.25rem;
	margin-top: 2rem;
}

.careful-gallery__item {
	display: block;
	overflow: hidden;
	aspect-ratio: 100 / 71;
	background-color: #eee;
	border-radius: 0.25rem;
}

.careful-gallery__item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 200ms ease;
}

.careful-gallery__item:hover img,
.careful-gallery__item:focus-visible img {
	transform: scale(1.04);
}

.careful-gallery__item:focus-visible {
	outline: 3px solid currentColor;
	outline-offset: 4px;
}

@media (max-width: 480px) {
	.careful-gallery {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.75rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.careful-gallery__item img {
		transition: none;
	}

	.careful-gallery__item:hover img,
	.careful-gallery__item:focus-visible img {
		transform: none;
	}
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
	padding: 72px 24px 24px;
	background: var(--green-950);
	color: rgba(255, 255, 255, 0.82);
}

.site-footer__grid {
	display: grid;
	grid-template-columns:
		minmax(0, 1.5fr)
		repeat(2, minmax(180px, 0.5fr));
	gap: 60px;
	width: min(100%, var(--content-width));
	margin: 0 auto;
}

.site-footer__grid > div:first-child p {
	max-width: 480px;
}

.footer-logo {
	display: block;
	max-width: 190px;
	margin-bottom: 20px;
	text-decoration: none;
}

.footer-logo img {
	width: 100%;
}

.footer-heading {
	margin: 0 0 16px;
	color: var(--white);
	font-size: 1rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.footer-links {
	display: grid;
	gap: 9px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-links a {
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.footer-links a:hover {
	color: var(--white);
}

.site-footer__bottom {
	width: min(100%, var(--content-width));
	margin: 50px auto 0;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
	font-size: 0.85rem;
}

.site-footer__bottom p {
	margin-bottom: 0;
}


/* =========================================================
   TABLET
   ========================================================= */

@media screen and (max-width: 900px) {
	.section-heading--split,
	.home-intro__grid,
	.featured-project__grid,
	.experience-callout__grid,
	.service-guarantee__grid {
		grid-template-columns: 1fr;
	}

	.section-heading--split,
	.home-intro__grid {
		gap: 35px;
	}

	.service-card-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.featured-project__image {
		aspect-ratio: 16 / 10;
	}

	.home-cta__inner,
	.services-cta__inner {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.services-overview {
		grid-template-columns: 1fr;
		gap: 45px;
	}

	.services-overview__heading h1 {
		max-width: 14ch;
	}

	.services-overview__aside {
		padding-top: 0;
	}

	.services-overview__intro {
		max-width: 700px;
	}
}

@media screen and (min-width: 651px) and (max-width: 900px) {
	.service-card:last-child {
		grid-column: 1 / -1;
		width: calc(
			(100% - clamp(22px, 3vw, 40px)) / 2
		);
		justify-self: center;
	}
}


/* =========================================================
   MOBILE NAVIGATION
   ========================================================= */

@media screen and (max-width: 800px) {
	.site-header__inner {
		width: min(calc(100% - 32px), var(--content-width));
		padding: 15px 0;
	}

	.site-logo {
		width: clamp(140px, 42vw, 190px);
	}

	.nav-toggle {
		position: relative;
		z-index: 3;
		display: inline-flex;
		align-items: center;
		gap: 10px;
		min-height: 42px;
		padding: 9px 13px;
		border: 1px solid rgba(255, 255, 255, 0.7);
		border-radius: 999px;
		background: rgba(11, 39, 27, 0.72);
		color: var(--white);
		cursor: pointer;
		backdrop-filter: blur(8px);
	}

	.nav-toggle__label {
		font-size: 0.8rem;
		font-weight: 700;
	}

	.nav-toggle__icon {
		display: grid;
		gap: 4px;
		width: 20px;
	}

	.nav-toggle__icon span {
		display: block;
		width: 100%;
		height: 2px;
		background: currentColor;
		transition:
			transform 180ms ease,
			opacity 180ms ease;
	}

	.nav-toggle[aria-expanded="true"]
		.nav-toggle__icon span:nth-child(1) {
		transform: translateY(6px) rotate(45deg);
	}

	.nav-toggle[aria-expanded="true"]
		.nav-toggle__icon span:nth-child(2) {
		opacity: 0;
	}

	.nav-toggle[aria-expanded="true"]
		.nav-toggle__icon span:nth-child(3) {
		transform: translateY(-6px) rotate(-45deg);
	}

	.primary-nav {
		position: absolute;
		z-index: 2;
		top: 0;
		right: 0;
		left: 0;
		display: none;
		align-items: stretch;
		max-height: 100svh;
		padding: 105px 24px 30px;
		overflow-y: auto;
		background: var(--green-950);
		box-shadow: var(--shadow);
	}

	.primary-nav.is-open {
		display: grid;
		gap: 2px;
	}

	.primary-nav a {
		padding: 11px 0;
		font-size: 1rem;
	}

	.primary-nav > a:not(.nav-cta)::after {
		display: none;
	}

	.primary-nav > a:not(.nav-cta).is-active {
		color: #c9dbc5;
	}

	.nav-cta {
		margin-top: 10px;
		padding: 12px 18px !important;
	}

	.site-footer__grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}
}


/* =========================================================
   PHONE
   ========================================================= */

@media screen and (max-width: 650px) {
	.section {
		padding: 72px 20px;
	}

	/* Home hero */

	.home-hero {
		align-items: end;
		min-height: 700px;
		min-height: 92svh;
		padding: 125px 20px 72px;
	}

	.home-hero h1 {
		font-size: clamp(3.1rem, 15vw, 5rem);
	}

	.home-hero__intro {
		font-size: 1rem;
	}

	.home-hero__actions {
		flex-direction: column;
	}

	.home-hero__actions .button {
		width: 100%;
	}

	.home-hero__scroll {
		display: none;
	}

	.home-hero__media {
		display: none;
	}

	.home-hero__overlay {
		background:
			linear-gradient(
				0deg,
				rgba(5, 25, 16, 0.86) 0%,
				rgba(5, 25, 16, 0.5) 70%,
				rgba(5, 25, 16, 0.4) 100%
			);
	}

	/* Home feature image */

	.home-feature-image {
		padding: 0 20px 72px;
	}

	.home-feature-image__figure {
		aspect-ratio: 4 / 3;
	}

	/* Home service cards */

	.service-card-grid {
		grid-template-columns: 1fr;
		gap: 45px;
	}

	.service-card:last-child {
		grid-column: auto;
		width: auto;
	}

	.service-card__image {
		aspect-ratio: 4 / 3;
	}

	/* Featured project */

	.featured-project__image {
		aspect-ratio: 4 / 3;
	}

	.project-details li {
		grid-template-columns: 1fr;
		gap: 4px;
	}

	/* Services hero */

	.services-photo-hero {
		height: clamp(20rem, 75vw, 32rem);
	}

	/* Services overview */

	.services-overview {
		gap: 35px;
	}

	.services-overview__heading h1 {
		max-width: none;
	}

	.services-overview__actions {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
		margin-top: 28px;
	}

	.services-overview__actions .button {
		padding-right: 8px;
		padding-left: 8px;
		white-space: normal;
	}

	/* Service groups */

	.service-group {
		margin-top: 90px;
	}

	.service-group__heading {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.service-group__number {
		margin-bottom: 0;
	}

	.service-disclosure summary {
		grid-template-columns: 34px minmax(0, 1fr) 24px;
		gap: 12px;
		padding: 24px 0;
	}

	.service-disclosure__content {
		margin-left: 0;
		padding-bottom: 35px;
	}

	.service-feature-list {
		grid-template-columns: 1fr;
	}

	/* Final CTAs */

	.home-cta__inner .button {
		width: 100%;
	}

	.services-cta__actions {
		align-items: flex-start;
		flex-direction: column;
	}

	/* Footer */

	.site-footer {
		padding: 58px 20px 22px;
	}

	.site-footer__bottom {
		margin-top: 38px;
	}
}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media screen and (max-width: 390px) {
	.site-header__inner {
		width: calc(100% - 24px);
	}

	.site-logo {
		width: 135px;
	}

	.nav-toggle__label {
		display: none;
	}

	.nav-toggle {
		justify-content: center;
		width: 44px;
		height: 44px;
		padding: 0;
	}

	.home-hero {
		padding-right: 16px;
		padding-left: 16px;
	}

	.home-hero h1 {
		font-size: clamp(2.75rem, 15vw, 3.6rem);
	}

	.services-overview__actions {
		gap: 6px;
	}

	.services-overview__actions .button {
		padding-right: 5px;
		padding-left: 5px;
		font-size: 0.76rem;
	}
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.home-hero__media {
		display: none;
	}

	.skip-link,
	.button,
	.nav-cta,
	.nav-toggle__icon span,
	.text-link span,
	.service-card__image img,
	.service-card__content > a span,
	.primary-nav > a:not(.nav-cta)::after,
	.service-disclosure__icon::before,
	.service-disclosure__icon::after {
		transition: none;
	}

	.button:hover,
	.nav-cta:hover,
	.text-link:hover span,
	.service-card:hover .service-card__image img,
	.service-card__content > a:hover span {
		transform: none;
	}
}


/* =========================================================
   PRINT
   ========================================================= */

@media print {
	.site-header,
	.site-footer,
	.home-hero__media,
	.home-hero__scroll,
	.home-hero__actions,
	.home-cta,
	.services-photo-hero,
	.services-overview__actions,
	.services-cta {
		display: none !important;
	}

	body {
		color: #000000;
		background: #ffffff;
	}

	.home-hero {
		min-height: auto;
		padding: 40px 0;
		background: none;
		color: #000000;
	}

	.home-hero h1,
	.home-hero__eyebrow,
	.home-hero__intro {
		color: #000000;
		text-shadow: none;
	}

	.section {
		padding: 30px 0;
	}

	.service-disclosure__content {
		display: block;
	}

	a {
		color: #000000;
	}
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */

/*
 * The Contact page uses the classic Georgia typeface.
 * This is scoped to the Contact page only.
 */

body[data-page="contact"] {
	font-family: Georgia, "Times New Roman", serif;
}


/* =========================================================
   CONTACT PHOTO HERO
   ========================================================= */

.contact-photo-hero {
	position: relative;
	width: 100%;
	height: clamp(24rem, 55vw, 48rem);
	overflow: hidden;
	background: var(--green-900);
}

.contact-photo-hero::after {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			0deg,
			rgba(11, 39, 27, 0.22),
			rgba(11, 39, 27, 0.04)
		);
	content: "";
	pointer-events: none;
}

.contact-photo-hero img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}


/* =========================================================
   CONTACT INTRODUCTION
   ========================================================= */

.contact-intro {
	background: var(--cream);
}

.contact-intro__grid {
	display: grid;
	grid-template-columns:
		minmax(0, 1.15fr)
		minmax(320px, 0.7fr);
	gap: clamp(50px, 9vw, 140px);
	align-items: start;
}

.contact-intro__heading h1,
.contact-form-heading h2,
.contact-services h2,
.contact-thank-you h1 {
	margin: 0;
	color: var(--green-950);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2.3rem, 4.5vw, 4.5rem);
	font-weight: 400;
	letter-spacing: -0.04em;
	line-height: 1.02;
	text-wrap: balance;
}

.contact-intro__heading h1 {
	max-width: 13ch;
}

.contact-intro__copy {
	max-width: 620px;
}

.contact-intro__copy > p {
	margin-bottom: 22px;
}

.contact-intro__copy .large-copy {
	font-family: Georgia, "Times New Roman", serif;
}


/* =========================================================
   DIRECT PHONE INFORMATION
   ========================================================= */

.contact-direct {
	margin-top: 38px;
	padding: 28px 0 0;
	border-top: 1px solid var(--border);
}

.contact-direct__label {
	margin-bottom: 10px;
	color: var(--green-700);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.contact-direct__links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 28px;
}

.contact-direct__links a {
	color: var(--green-900);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.3rem, 2vw, 1.8rem);
	text-decoration-thickness: 1px;
	text-underline-offset: 5px;
}


/* =========================================================
   CONTACT FORM SECTION
   ========================================================= */

.contact-form-section {
	position: relative;
	padding: clamp(80px, 10vw, 145px) 24px;
	overflow: hidden;
	background: var(--green-900);
	color: rgba(255, 255, 255, 0.88);
}

.contact-form-section::before {
	position: absolute;
	top: -18rem;
	right: -14rem;
	width: 42rem;
	height: 42rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

.contact-form-layout {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns:
		minmax(260px, 0.65fr)
		minmax(0, 1.2fr);
	gap: clamp(50px, 8vw, 120px);
	align-items: start;
}

.contact-form-heading {
	position: sticky;
	top: 40px;
}

.contact-form-heading h2 {
	max-width: 12ch;
	color: var(--white);
}

.contact-form-heading > p:last-child {
	max-width: 420px;
	margin: 26px 0 0;
	color: rgba(255, 255, 255, 0.75);
}


/* =========================================================
   FORM CONTAINER
   ========================================================= */

.contact-form {
	display: grid;
	gap: 26px;
	width: 100%;
	padding: clamp(28px, 5vw, 60px);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.07);
	box-shadow: 0 24px 65px rgba(5, 25, 16, 0.24);
	backdrop-filter: blur(8px);
}


/* =========================================================
   FORM FIELDS
   ========================================================= */

.contact-form__field {
	display: grid;
	gap: 9px;
}

.contact-form__field label,
.contact-form__fieldset legend {
	color: var(--white);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.05rem;
	font-weight: 400;
}

.contact-form__field label span {
	color: #f4cf72;
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
	display: block;
	width: 100%;
	min-width: 0;
	margin: 0;
	padding: 15px 17px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 4px;
	outline: 0;
	background: rgba(255, 255, 255, 0.1);
	color: var(--white);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1rem;
	line-height: 1.45;
	box-shadow: none;
	transition:
		border-color 180ms ease,
		background-color 180ms ease,
		box-shadow 180ms ease;
	appearance: none;
}

.contact-form__field input:hover,
.contact-form__field select:hover,
.contact-form__field textarea:hover {
	border-color: rgba(255, 255, 255, 0.58);
	background: rgba(255, 255, 255, 0.13);
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
	border-color: #f4cf72;
	background: rgba(255, 255, 255, 0.15);
	box-shadow: 0 0 0 3px rgba(244, 207, 114, 0.18);
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
	color: rgba(255, 255, 255, 0.55);
	opacity: 1;
}

.contact-form__field textarea {
	min-height: 190px;
	resize: vertical;
}

.contact-form__field select {
	padding-right: 50px;
	background-image:
		linear-gradient(
			45deg,
			transparent 50%,
			rgba(255, 255, 255, 0.9) 50%
		),
		linear-gradient(
			135deg,
			rgba(255, 255, 255, 0.9) 50%,
			transparent 50%
		);
	background-position:
		calc(100% - 21px) 50%,
		calc(100% - 15px) 50%;
	background-size:
		6px 6px,
		6px 6px;
	background-repeat: no-repeat;
	cursor: pointer;
}

.contact-form__field select option {
	background: var(--white);
	color: var(--green-950);
}

.contact-form__field input:-webkit-autofill,
.contact-form__field input:-webkit-autofill:hover,
.contact-form__field input:-webkit-autofill:focus {
	-webkit-text-fill-color: var(--white);
	caret-color: var(--white);
	box-shadow:
		0 0 0 1000px var(--green-800) inset,
		0 0 0 3px rgba(244, 207, 114, 0.18);
}


/* =========================================================
   CHECKBOX GROUP
   ========================================================= */

.contact-form__fieldset {
	margin: 4px 0 0;
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 4px;
	background: rgba(5, 25, 16, 0.12);
}

.contact-form__fieldset legend {
	padding: 0 10px;
}

.contact-form__checkboxes {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 13px 24px;
}

.contact-form__checkbox {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 11px;
	min-width: 0;
	padding: 11px 12px;
	border: 1px solid transparent;
	border-radius: 3px;
	color: rgba(255, 255, 255, 0.9);
	font-family: Georgia, "Times New Roman", serif;
	cursor: pointer;
	transition:
		border-color 180ms ease,
		background-color 180ms ease;
}

.contact-form__checkbox:hover {
	border-color: rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.07);
}

.contact-form__checkbox input {
	flex: 0 0 auto;
	width: 19px;
	height: 19px;
	margin: 3px 0 0;
	accent-color: #f4cf72;
	cursor: pointer;
}


/* =========================================================
   FORM SUBMIT BUTTON
   ========================================================= */

.contact-form__submit {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 20px 28px;
	align-items: center;
	padding-top: 12px;
}

.contact-form__button {
	min-width: 230px;
	border-color: #e7c66d;
	background: #e7c66d;
	color: var(--green-950);
	font-family: Georgia, "Times New Roman", serif;
}

.contact-form__button:hover {
	border-color: var(--white);
	background: var(--white);
	color: var(--green-950);
}

.contact-form__privacy {
	max-width: 380px;
	margin: 0;
	color: rgba(255, 255, 255, 0.68);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 0.9rem;
}


/* =========================================================
   HIDDEN SPAM TRAP
   ========================================================= */

.contact-form__honeypot {
	position: absolute !important;
	left: -10000px !important;
	top: auto !important;
	width: 1px !important;
	height: 1px !important;
	margin: 0 !important;
	padding: 0 !important;
	overflow: hidden !important;
	clip: rect(0 0 0 0) !important;
	white-space: nowrap !important;
}


/* =========================================================
   SERVICES CTA BELOW FORM
   ========================================================= */

.contact-services {
	background: var(--sand);
}

.contact-services__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 50px;
	align-items: center;
}

.contact-services__inner > div {
	max-width: 800px;
}


/* =========================================================
   THANK-YOU PAGE
   ========================================================= */

.contact-thank-you {
	display: grid;
	align-items: center;
	min-height: 70vh;
	background: var(--cream);
}

.contact-thank-you__inner {
	max-width: 950px;
}

.contact-thank-you h1 {
	max-width: 16ch;
}

.contact-thank-you .large-copy {
	max-width: 760px;
	margin: 30px 0 0;
}

.contact-thank-you__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 30px;
	margin-top: 40px;
}


/* =========================================================
   CONTACT TABLET
   ========================================================= */

@media screen and (max-width: 900px) {
	.contact-intro__grid,
	.contact-form-layout {
		grid-template-columns: 1fr;
	}

	.contact-form-heading {
		position: static;
	}

	.contact-form-heading h2 {
		max-width: 16ch;
	}

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


/* =========================================================
   CONTACT PHONE
   ========================================================= */

@media screen and (max-width: 650px) {
	.contact-photo-hero {
		height: clamp(20rem, 75vw, 32rem);
	}

	.contact-form-section {
		padding: 72px 20px;
	}

	.contact-form {
		gap: 24px;
		padding: 24px 18px;
	}

	.contact-form__checkboxes {
		grid-template-columns: 1fr;
	}

	.contact-form__fieldset {
		padding: 18px 10px;
	}

	.contact-form__submit {
		grid-template-columns: 1fr;
	}

	.contact-form__button {
		width: 100%;
		min-width: 0;
	}

	.contact-services__inner .button {
		width: 100%;
	}
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */

/* Photo hero */

.about-photo-hero {
	position: relative;
	width: 100%;
	height: clamp(24rem, 55vw, 48rem);
	overflow: hidden;
	background: var(--green-900);
}

.about-photo-hero::after {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			0deg,
			rgba(11, 39, 27, 0.18),
			rgba(11, 39, 27, 0.02)
		);
	content: "";
	pointer-events: none;
}

.about-photo-hero img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}


/* Company philosophy */

.about-philosophy {
	background: var(--cream);
}

.about-philosophy__grid {
	display: grid;
	grid-template-columns:
		minmax(0, 1.15fr)
		minmax(320px, 0.7fr);
	gap: clamp(50px, 9vw, 140px);
	align-items: start;
}

.about-philosophy__heading h1,
.about-overview h2,
.about-testimonials h2,
.about-cta h2 {
	margin: 0;
	color: var(--green-950);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2.3rem, 4.5vw, 4.5rem);
	font-weight: 400;
	letter-spacing: -0.04em;
	line-height: 1.02;
	text-wrap: balance;
}

.about-philosophy__heading h1 {
	max-width: 13ch;
}

.about-philosophy__copy {
	max-width: 620px;
}

.about-philosophy__copy > p {
	margin-bottom: 22px;
}

.about-philosophy__copy .text-link {
	margin-top: 8px;
}


/* Company overview */

.about-overview {
	background: var(--sage-100);
}

.about-overview__grid {
	display: grid;
	grid-template-columns:
		minmax(0, 0.9fr)
		minmax(320px, 0.7fr);
	gap: clamp(50px, 8vw, 110px);
	align-items: center;
}

.about-overview__content {
	max-width: 760px;
}

.about-overview h2 {
	max-width: 14ch;
	margin-bottom: 30px;
}

.about-overview__content > p:not(.section-eyebrow) {
	margin-bottom: 22px;
}

.about-overview__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 18px 28px;
	margin-top: 36px;
}

.about-overview__image {
	aspect-ratio: 4 / 4.8;
	margin: 0;
	overflow: hidden;
	background: var(--sage-200);
}

.about-overview__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/* Team */

.about-team {
	background: var(--white);
}

.about-team__instruction {
	margin-top: 20px;
	color: var(--green-700);
	font-size: 0.9rem;
	font-weight: 700;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: clamp(32px, 4vw, 55px) clamp(18px, 3vw, 36px);
	align-items: start;
}

.team-member {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 0;
	color: var(--green-950);
	text-align: center;
	text-decoration: none;
}

.team-member__photo {
	display: block;
	width: clamp(105px, 10vw, 145px);
	aspect-ratio: 1;
	overflow: hidden;
	border: 4px solid var(--sage-100);
	border-radius: 50%;
	background: var(--sage-200);
	box-shadow: 0 10px 30px rgba(11, 39, 27, 0.1);
	transition:
		border-color 180ms ease,
		box-shadow 180ms ease,
		transform 180ms ease;
}

.team-member__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 350ms ease;
}

.team-member__name {
	display: block;
	margin-top: 14px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.2rem;
	line-height: 1.2;
}

.team-member__role {
	display: block;
	margin-top: 4px;
	color: var(--green-700);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.team-member:hover .team-member__photo {
	border-color: var(--green-500);
	box-shadow: 0 14px 35px rgba(11, 39, 27, 0.17);
	transform: translateY(-3px);
}

.team-member:hover .team-member__photo img {
	transform: scale(1.035);
}

.team-member:focus-visible {
	border-radius: 4px;
	outline: 3px solid #f4cf72;
	outline-offset: 8px;
}


/* Testimonials */

.about-testimonials {
	background: var(--green-900);
	color: rgba(255, 255, 255, 0.84);
}

.about-testimonials__heading {
	display: grid;
	grid-template-columns:
		minmax(0, 1fr)
		minmax(320px, 0.7fr);
	gap: clamp(50px, 9vw, 140px);
	align-items: end;
	margin-bottom: clamp(50px, 7vw, 90px);
}

.about-testimonials h2 {
	max-width: 15ch;
	color: var(--white);
}

.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-width: 0;
	min-height: 360px;
	margin: 0;
	padding: clamp(30px, 5vw, 60px);
	border-right: 1px solid rgba(255, 255, 255, 0.2);
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.025);
}

.testimonial-card blockquote {
	margin: 0;
}

.testimonial-card blockquote p {
	margin: 0;
	color: var(--white);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.3rem, 2vw, 1.8rem);
	font-weight: 400;
	line-height: 1.45;
}

.testimonial-card figcaption {
	display: flex;
	flex-direction: column;
	gap: 2px;
	margin-top: 40px;
}

.testimonial-card figcaption strong {
	color: var(--white);
	font-size: 0.95rem;
}

.testimonial-card figcaption span {
	color: #c8d9c3;
	font-size: 0.85rem;
}


/* Final CTA */

.about-cta {
	background: var(--sand);
}

.about-cta__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 50px;
	align-items: center;
}

.about-cta__inner > div {
	max-width: 800px;
}

.about-cta h2 {
	max-width: 16ch;
}

.about-cta__inner p:not(.section-eyebrow) {
	max-width: 650px;
	margin: 22px 0 0;
	font-size: 1.08rem;
}


/* About tablet */

@media screen and (max-width: 1000px) {
	.team-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media screen and (max-width: 900px) {
	.about-philosophy__grid,
	.about-overview__grid,
	.about-testimonials__heading {
		grid-template-columns: 1fr;
	}

	.about-overview__image {
		aspect-ratio: 16 / 10;
	}

	.about-cta__inner {
		grid-template-columns: 1fr;
		gap: 30px;
	}
}


/* About phone */

@media screen and (max-width: 650px) {
	.about-photo-hero {
		height: clamp(20rem, 75vw, 32rem);
	}

	.team-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 34px 14px;
	}

	.team-member__photo {
		width: clamp(88px, 25vw, 120px);
	}

	.testimonial-grid {
		grid-template-columns: 1fr;
	}

	.testimonial-card {
		min-height: 0;
	}

	.about-cta__inner .button {
		width: 100%;
	}
}


/* Very small phones */

@media screen and (max-width: 390px) {
	.team-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.team-member__photo {
		width: 115px;
	}
}

/* =========================================================
   INDIVIDUAL TEAM MEMBER PAGES
   ========================================================= */

/* Team member introduction */

.team-profile-hero {
	background: var(--cream);
}

.team-profile-hero__grid {
	display: grid;
	grid-template-columns:
		minmax(220px, 0.45fr)
		minmax(0, 1.25fr);
	gap: clamp(50px, 9vw, 140px);
	align-items: center;
}

.team-profile-hero__photo-column {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.team-profile-hero__photo {
	width: clamp(210px, 25vw, 330px);
	aspect-ratio: 1;
	margin: 0;
	overflow: hidden;
	border: 8px solid var(--sage-100);
	border-radius: 50%;
	background: var(--sage-200);
	box-shadow: 0 22px 60px rgba(11, 39, 27, 0.16);
}

.team-profile-hero__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.team-profile-hero__role {
	margin: 22px 0 0;
	color: var(--green-700);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.team-profile-hero__content {
	max-width: 850px;
}

.team-profile-hero__content h1,
.team-profile-philosophy h2,
.team-profile-commitment h2,
.team-profile-vision h2,
.team-profile-showyard h2 {
	margin: 0;
	color: var(--green-950);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2.3rem, 4.5vw, 4.5rem);
	font-weight: 400;
	letter-spacing: -0.04em;
	line-height: 1.02;
	text-wrap: balance;
}

.team-profile-hero__content h1 {
	font-size: clamp(3.2rem, 7vw, 7rem);
}

.team-profile-hero__intro {
	max-width: 730px;
	margin: 24px 0 18px;
	color: var(--green-900);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.4rem, 2.4vw, 2.1rem);
	line-height: 1.35;
}

.team-profile-hero__content > p:not(
	.section-eyebrow,
	.team-profile-hero__intro
) {
	max-width: 680px;
	margin-bottom: 25px;
}

.team-profile-hero__content .text-link {
	margin-top: 8px;
}


/* Contractor philosophy */

.team-profile-philosophy {
	background: var(--sage-100);
}

.team-profile-philosophy__grid {
	display: grid;
	grid-template-columns:
		minmax(0, 1fr)
		minmax(320px, 0.75fr);
	gap: clamp(50px, 9vw, 140px);
	align-items: start;
}

.team-profile-philosophy__heading h2 {
	max-width: 14ch;
}

.team-profile-philosophy__copy {
	max-width: 680px;
}

.team-profile-philosophy__copy > p {
	margin-bottom: 22px;
}


/* Featured Steve quote */

.team-profile-quote {
	padding: clamp(85px, 11vw, 160px) 24px;
	background: var(--green-900);
	color: var(--white);
}

.team-profile-quote blockquote {
	max-width: 1100px;
	margin: 0 auto;
}

.team-profile-quote blockquote > p {
	margin: 0 0 30px;
	color: var(--white);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.8rem, 3.8vw, 3.7rem);
	font-weight: 400;
	letter-spacing: -0.025em;
	line-height: 1.2;
	text-wrap: balance;
}

.team-profile-quote blockquote > p:last-of-type {
	color: #d8e6d4;
}

.team-profile-quote footer {
	display: flex;
	flex-direction: column;
	gap: 2px;
	margin-top: 45px;
	padding-top: 25px;
	border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.team-profile-quote footer strong {
	color: var(--white);
}

.team-profile-quote footer span {
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.9rem;
}


/* Hansen commitment */

.team-profile-commitment {
	background: var(--cream);
}

.team-profile-commitment__grid {
	display: grid;
	grid-template-columns: 120px minmax(0, 850px);
	gap: clamp(35px, 6vw, 80px);
	align-items: start;
	justify-content: center;
}

.team-profile-commitment__number {
	color: rgba(18, 59, 41, 0.34);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(4rem, 8vw, 8rem);
	font-weight: 400;
	line-height: 0.85;
}

.team-profile-commitment__content h2 {
	max-width: 15ch;
	margin-bottom: 30px;
}

.team-profile-commitment__content > p {
	max-width: 740px;
	margin-bottom: 22px;
}

.team-profile-commitment__content .button {
	margin-top: 15px;
}


/* Design philosophy */

.team-profile-vision {
	background: var(--sage-100);
}

.team-profile-vision__grid {
	display: grid;
	grid-template-columns:
		minmax(0, 0.9fr)
		minmax(320px, 0.7fr);
	gap: clamp(50px, 8vw, 110px);
	align-items: center;
}

.team-profile-vision__content {
	max-width: 760px;
}

.team-profile-vision__content h2 {
	max-width: 14ch;
	margin-bottom: 30px;
}

.team-profile-vision__content > p {
	margin-bottom: 22px;
}

.team-profile-vision__image {
	aspect-ratio: 4 / 4.8;
	margin: 0;
	overflow: hidden;
	background: var(--sage-200);
}

.team-profile-vision__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/* Castro Valley showyard */

.team-profile-showyard {
	background: var(--green-900);
	color: rgba(255, 255, 255, 0.84);
}

.team-profile-showyard__grid {
	display: grid;
	grid-template-columns:
		minmax(320px, 1.05fr)
		minmax(0, 0.8fr);
	gap: clamp(50px, 8vw, 110px);
	align-items: center;
}

.team-profile-showyard__image {
	aspect-ratio: 16 / 11;
	overflow: hidden;
	background: var(--green-800);
}

.team-profile-showyard__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Steve profile showyard video */

.team-profile-showyard__video {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: var(--green-950);
	box-shadow: 0 20px 55px rgba(5, 25, 16, 0.28);
}

.team-profile-showyard__video iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}
.team-profile-showyard__content h2 {
	max-width: 13ch;
	margin-bottom: 28px;
	color: var(--white);
}

.team-profile-showyard__content > p:not(.section-eyebrow) {
	margin-bottom: 22px;
}

.team-profile-showyard__quote {
	padding-left: 24px;
	border-left: 2px solid #f4cf72;
	color: var(--white);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.15rem, 1.8vw, 1.45rem);
	line-height: 1.5;
}

.team-profile-showyard__content .button {
	margin-top: 12px;
}


/* Team member navigation */

.team-profile-navigation {
	background: var(--white);
}

.team-profile-navigation__inner {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	border-top: 1px solid var(--border);
	border-left: 1px solid var(--border);
}

.team-profile-navigation__inner > a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 180px;
	padding: clamp(25px, 4vw, 50px);
	border-right: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	color: var(--green-950);
	text-decoration: none;
	transition:
		background-color 180ms ease,
		color 180ms ease;
}

.team-profile-navigation__inner > a:hover {
	background: var(--sage-100);
}

.team-profile-navigation__next {
	text-align: right;
}

.team-profile-navigation__inner strong {
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.4rem, 2.5vw, 2.3rem);
	font-weight: 400;
	line-height: 1.2;
}

.team-profile-navigation__inner strong span {
	display: inline-block;
	margin-left: 8px;
	transition: transform 180ms ease;
}

.team-profile-navigation__next:hover strong span {
	transform: translateX(5px);
}


/* Team profile tablet */

@media screen and (max-width: 900px) {
	.team-profile-hero__grid,
	.team-profile-philosophy__grid,
	.team-profile-vision__grid,
	.team-profile-showyard__grid {
		grid-template-columns: 1fr;
	}

	.team-profile-hero__photo-column {
		align-items: flex-start;
	}

	.team-profile-vision__image,
	.team-profile-showyard__image {
		aspect-ratio: 16 / 10;
	}

	.team-profile-showyard__image,
.team-profile-showyard__video {
	order: 2;
}

	.team-profile-showyard__content {
		order: 1;
	}
}


/* Team profile phone */

@media screen and (max-width: 650px) {
	.team-profile-hero__photo {
		width: 210px;
	}

	.team-profile-commitment__grid {
		grid-template-columns: 1fr;
		gap: 25px;
	}

	.team-profile-commitment__number {
		font-size: 4rem;
	}

	.team-profile-navigation__inner {
		grid-template-columns: 1fr;
	}

	.team-profile-navigation__next {
		text-align: left;
	}

	.team-profile-navigation__inner > a {
		min-height: 140px;
	}
}


/* Reduced motion */

@media (prefers-reduced-motion: reduce) {
	.team-profile-navigation__inner > a,
	.team-profile-navigation__inner strong span {
		transition: none;
	}

	.team-profile-navigation__next:hover strong span {
		transform: none;
	}
}


/* =========================================================
   SIMPLE TEAM MEMBER PROFILE SECTIONS
   ========================================================= */

/* Team member story */

.team-member-story {
	background: var(--sage-100);
}

.team-member-story__grid {
	display: grid;
	grid-template-columns:
		minmax(0, 1fr)
		minmax(320px, 0.75fr);
	gap: clamp(50px, 9vw, 140px);
	align-items: start;
}

.team-member-story__heading h2,
.team-member-interests h2 {
	margin: 0;
	color: var(--green-950);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2.3rem, 4.5vw, 4.5rem);
	font-weight: 400;
	letter-spacing: -0.04em;
	line-height: 1.02;
	text-wrap: balance;
}

.team-member-story__heading h2 {
	max-width: 13ch;
}

.team-member-story__content {
	max-width: 700px;
}

.team-member-story__content > p {
	margin-bottom: 22px;
}


/* Team member quote */

.team-member-quote {
	padding: clamp(85px, 11vw, 150px) 24px;
	background: var(--green-900);
	color: var(--white);
}

.team-member-quote blockquote {
	max-width: 1050px;
	margin: 0 auto;
}

.team-member-quote blockquote > p {
	margin: 0 0 28px;
	color: var(--white);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.7rem, 3.4vw, 3.3rem);
	font-weight: 400;
	letter-spacing: -0.025em;
	line-height: 1.22;
	text-wrap: balance;
}

.team-member-quote blockquote > p:last-of-type {
	color: #d8e6d4;
}

.team-member-quote footer {
	display: flex;
	flex-direction: column;
	gap: 2px;
	margin-top: 42px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.team-member-quote footer strong {
	color: var(--white);
}

.team-member-quote footer span {
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.9rem;
}


/* Team member interests */

.team-member-interests {
	background: var(--cream);
}

.team-member-interests__grid {
	display: grid;
	grid-template-columns:
		minmax(0, 0.75fr)
		minmax(320px, 1fr);
	gap: clamp(50px, 9vw, 140px);
	align-items: start;
}

.team-member-interests h2 {
	max-width: 12ch;
}

.team-member-interests__content {
	max-width: 760px;
}

.team-member-interests__content > p:first-child {
	max-width: 650px;
	margin-bottom: 30px;
}

.team-member-interest-list {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.team-member-interest-list li {
	padding: 10px 18px;
	border: 1px solid var(--border);
	border-radius: 999px;
	background: var(--white);
	color: var(--green-900);
	font-family: Georgia, "Times New Roman", serif;
	box-shadow: 0 5px 15px rgba(11, 39, 27, 0.05);
}

.team-member-interests__aside {
	margin: 35px 0 0;
	padding: 22px 25px;
	border-left: 3px solid var(--green-500);
	background: var(--sage-100);
	color: var(--green-900);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.1rem, 1.8vw, 1.35rem);
}


/* Simple team profile tablet */

@media screen and (max-width: 900px) {
	.team-member-story__grid,
	.team-member-interests__grid {
		grid-template-columns: 1fr;
	}
}


/* Simple team profile phone */

@media screen and (max-width: 650px) {
	.team-member-interest-list {
		gap: 9px;
	}

	.team-member-interest-list li {
		padding: 8px 14px;
	}

	.team-member-interests__aside {
		padding: 18px 20px;
	}
}