:root {
	--ink: #202321;
	--ink-soft: #515651;
	--green: #72bd39;
	--green-dark: #4d8c21;
	--cream: #f5f3ed;
	--cream-2: #ebe8df;
	--white: #fff;
	--line: rgba(32, 35, 33, 0.14);
	--shadow: 0 24px 70px rgba(24, 28, 25, 0.14);
	--radius: 2px;
	--shell: min(1240px, calc(100vw - 48px));
	--font-sans: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--font-serif: "Cormorant Garamond", Georgia, serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--ink);
	background: var(--white);
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

body.menu-open {
	overflow: hidden;
}

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

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

button,
input,
textarea {
	font: inherit;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3 {
	line-height: 1.08;
	text-wrap: balance;
}

h1,
h2 {
	font-family: var(--font-serif);
	font-weight: 600;
}

h1 {
	font-size: clamp(3.2rem, 7vw, 7rem);
	letter-spacing: -0.04em;
}

h2 {
	font-size: clamp(2.5rem, 4.5vw, 4.6rem);
	letter-spacing: -0.025em;
}

h3 {
	font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.shell {
	width: var(--shell);
	margin-inline: auto;
}

.content-narrow {
	max-width: 800px;
}

.section {
	padding: clamp(80px, 10vw, 150px) 0;
}

.eyebrow {
	margin-bottom: 20px;
	color: var(--green-dark);
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link {
	position: fixed;
	z-index: 9999;
	top: 12px;
	left: 12px;
	padding: 10px 14px;
	color: var(--white);
	background: var(--ink);
	transform: translateY(-160%);
}

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

.button {
	display: inline-flex;
	min-height: 52px;
	align-items: center;
	justify-content: center;
	padding: 0 28px;
	border: 1px solid transparent;
	border-radius: var(--radius);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

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

.button-primary:hover,
.button-primary:focus-visible {
	background: #86d54a;
}

.button-dark {
	color: var(--white);
	background: var(--ink);
}

.button-dark:hover,
.button-dark:focus-visible {
	background: #343936;
}

.button-ghost {
	color: var(--white);
	border-color: rgba(255, 255, 255, 0.6);
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(8px);
}

.button-ghost:hover,
.button-ghost:focus-visible {
	color: var(--ink);
	background: var(--white);
}

.text-link {
	display: inline-block;
	padding-bottom: 4px;
	border-bottom: 1px solid currentColor;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.text-link:hover,
.text-link:focus-visible {
	color: var(--green-dark);
}

.site-header {
	position: fixed;
	z-index: 1000;
	top: 0;
	right: 0;
	left: 0;
	height: 92px;
	color: var(--ink);
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid rgba(32, 35, 33, 0.08);
	transition: height 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
	height: 76px;
	box-shadow: 0 12px 36px rgba(20, 24, 20, 0.08);
}

.header-inner {
	display: flex;
	height: 100%;
	align-items: center;
	gap: 38px;
}

.brand {
	display: flex;
	width: 206px;
	flex: 0 0 206px;
	align-items: center;
}

.brand img,
.custom-logo-link img {
	width: 206px;
	height: 66px;
	object-fit: contain;
	object-position: left center;
}

.primary-nav {
	margin-left: auto;
}

.primary-nav ul {
	display: flex;
	align-items: center;
	gap: 30px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-nav a {
	position: relative;
	display: block;
	padding: 8px 0;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

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

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav .current-menu-item > a::after,
.primary-nav .current_page_item > a::after {
	transform: scaleX(1);
	transform-origin: left;
}

.header-cta {
	display: inline-flex;
	min-height: 46px;
	align-items: center;
	padding: 0 20px;
	color: var(--white);
	background: var(--ink);
	font-size: 0.71rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.header-cta:hover,
.header-cta:focus-visible {
	background: var(--green-dark);
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 10px;
	border: 0;
	background: transparent;
}

.menu-toggle > span:not(.screen-reader-text) {
	display: block;
	width: 100%;
	height: 2px;
	margin: 5px 0;
	background: var(--ink);
	transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
	position: relative;
	display: grid;
	min-height: min(920px, 100svh);
	align-items: center;
	overflow: hidden;
	color: var(--white);
}

.hero-media,
.hero-shade {
	position: absolute;
	inset: 0;
}

.hero-media {
	background: url("../images/hero-kitchen.png") center / cover no-repeat;
	transform: scale(1.015);
	animation: hero-settle 1.6s ease-out forwards;
}

.hero-shade {
	background:
		linear-gradient(90deg, rgba(18, 22, 18, 0.82) 0%, rgba(18, 22, 18, 0.55) 38%, rgba(18, 22, 18, 0.08) 70%),
		linear-gradient(0deg, rgba(12, 15, 12, 0.32), transparent 44%);
}

@keyframes hero-settle {
	to { transform: scale(1); }
}

.hero-content {
	position: relative;
	z-index: 2;
	padding-top: 120px;
}

.hero-content .eyebrow {
	color: #a7e671;
}

.hero-content h1 {
	max-width: 830px;
	margin-bottom: 28px;
}

.hero-content > p:not(.eyebrow) {
	max-width: 660px;
	margin-bottom: 40px;
	color: rgba(255, 255, 255, 0.86);
	font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.hero-proof {
	position: absolute;
	z-index: 2;
	right: max(24px, calc((100vw - 1240px) / 2));
	bottom: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	color: var(--ink);
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(14px);
}

.hero-proof div {
	display: grid;
	min-width: 174px;
	padding: 24px 28px;
	border-left: 1px solid var(--line);
}

.hero-proof strong {
	font-family: var(--font-serif);
	font-size: 2.2rem;
	line-height: 1;
}

.hero-proof span {
	margin-top: 8px;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.intro-section {
	background: var(--white);
}

.split-intro {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.75fr);
	gap: clamp(50px, 10vw, 150px);
	align-items: end;
}

.split-intro h2 {
	max-width: 700px;
	margin-bottom: 0;
}

.lead-copy {
	padding-bottom: 10px;
	color: var(--ink-soft);
	font-size: 1.08rem;
}

.lead-copy p {
	margin-bottom: 28px;
}

.projects-section {
	background: var(--cream);
}

.section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 40px;
	margin-bottom: 48px;
}

.section-heading h2 {
	margin-bottom: 0;
}

.section-heading.centered {
	justify-content: center;
	text-align: center;
}

.project-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 26px;
}

.project-card h3 {
	margin: 16px 0 0;
	font-size: 1.15rem;
}

.reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.project-image {
	position: relative;
	display: block;
	aspect-ratio: 1.16;
	overflow: hidden;
	background: var(--cream-2);
}

.project-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.project-image:hover img,
.project-image:focus-visible img {
	transform: scale(1.045);
}

.project-arrow {
	position: absolute;
	right: 14px;
	bottom: 14px;
	display: grid;
	width: 46px;
	height: 46px;
	place-items: center;
	color: var(--white);
	background: rgba(32, 35, 33, 0.86);
	font-size: 1.2rem;
}

.project-meta {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	margin-top: 18px;
	color: var(--ink-soft);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.process-section {
	background: var(--white);
}

.process-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	padding: 0;
	margin: 70px 0 0;
	list-style: none;
}

.process-grid li {
	position: relative;
	padding: 32px 34px 20px;
	border-top: 1px solid var(--line);
	border-left: 1px solid var(--line);
}

.process-grid li:last-child {
	border-right: 1px solid var(--line);
}

.process-grid span {
	display: inline-block;
	margin-bottom: 70px;
	color: var(--green-dark);
	font-size: 0.74rem;
	font-weight: 700;
}

.process-grid h3 {
	margin-bottom: 14px;
}

.process-grid p {
	margin: 0;
	color: var(--ink-soft);
	font-size: 0.9rem;
}

.value-section {
	padding: 0;
	background: var(--ink);
}

.value-grid {
	display: grid;
	width: 100%;
	max-width: none;
	grid-template-columns: 1.08fr 0.92fr;
}

.value-image {
	min-height: 760px;
}

.value-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.value-copy {
	display: flex;
	max-width: 680px;
	flex-direction: column;
	justify-content: center;
	padding: clamp(70px, 8vw, 130px);
	color: var(--white);
}

.value-copy .eyebrow {
	color: #a7e671;
}

.value-copy > p:not(.eyebrow) {
	color: rgba(255, 255, 255, 0.72);
}

.check-list {
	display: grid;
	gap: 14px;
	padding: 0;
	margin: 28px 0 38px;
	list-style: none;
}

.check-list li {
	position: relative;
	padding-left: 30px;
}

.check-list li::before {
	position: absolute;
	left: 0;
	color: var(--green);
	content: "✓";
	font-weight: 700;
}

.value-copy .button {
	align-self: flex-start;
	color: var(--ink);
	background: var(--white);
}

.journal-section {
	background: var(--white);
}

.post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

.post-card {
	border: 1px solid var(--line);
	background: var(--white);
}

.post-card-image {
	display: block;
	aspect-ratio: 1.45;
	overflow: hidden;
	background: var(--cream);
}

.post-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 400ms ease;
}

.post-card:hover .post-card-image img {
	transform: scale(1.04);
}

.post-card-body {
	padding: 28px;
}

.post-date {
	margin-bottom: 12px;
	color: var(--green-dark);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.post-card h3 {
	margin-bottom: 14px;
}

.post-card-body > p:not(.post-date) {
	color: var(--ink-soft);
	font-size: 0.9rem;
}

.cta-band {
	padding: clamp(70px, 8vw, 110px) 0;
	color: var(--white);
	background: var(--ink);
}

.cta-band .eyebrow {
	color: #a7e671;
}

.cta-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 60px;
}

.cta-inner h2 {
	margin-bottom: 12px;
}

.cta-inner p {
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.7);
}

.cta-actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

.phone-link {
	font-size: 0.92rem;
	font-weight: 700;
	letter-spacing: 0.1em;
}

.page-hero,
.article-hero {
	padding: 190px 0 90px;
	background: var(--cream);
}

.page-hero h1,
.article-hero h1 {
	max-width: 1000px;
	margin-bottom: 18px;
	font-size: clamp(3.5rem, 7vw, 6.8rem);
}

.page-hero p:not(.eyebrow),
.article-excerpt {
	max-width: 720px;
	color: var(--ink-soft);
	font-size: 1.1rem;
}

.prose {
	font-size: 1.05rem;
}

.prose > * {
	max-width: 100%;
}

.prose h2,
.prose h3 {
	margin: 2.5em 0 0.65em;
}

.prose h2 {
	font-size: clamp(2rem, 4vw, 3.4rem);
}

.prose h3 {
	font-size: 1.45rem;
}

.prose p,
.prose li {
	color: var(--ink-soft);
}

.prose a {
	color: var(--green-dark);
	text-decoration: underline;
}

.prose img {
	width: 100%;
	margin: 42px 0;
}

.about-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
	gap: clamp(60px, 9vw, 130px);
	align-items: start;
}

.about-image {
	position: sticky;
	top: 120px;
}

.about-image img {
	width: 100%;
	aspect-ratio: 0.88;
	object-fit: cover;
}

.about-copy h2:first-child {
	margin-top: 0;
}

.about-values {
	padding: clamp(70px, 9vw, 120px) 0;
	color: var(--white);
	background: var(--ink);
}

.about-values-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.about-values-grid > div {
	padding: 16px 40px 16px 0;
	border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.about-values-grid > div + div {
	padding-left: 40px;
}

.about-values-grid > div:last-child {
	border-right: 0;
}

.about-values strong {
	display: block;
	margin-bottom: 26px;
	color: var(--green);
	font-family: var(--font-serif);
	font-size: clamp(3rem, 6vw, 5.5rem);
	line-height: 1;
}

.about-values h2 {
	margin-bottom: 12px;
	font-family: var(--font-sans);
	font-size: 1rem;
	letter-spacing: 0.04em;
}

.about-values p {
	margin: 0;
	color: rgba(255, 255, 255, 0.65);
	font-size: 0.88rem;
}

.contact-grid {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: clamp(60px, 10vw, 140px);
}

.contact-details h2 {
	margin-bottom: 30px;
	font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.contact-details address {
	margin-bottom: 26px;
	color: var(--ink-soft);
	font-style: normal;
}

.contact-details p {
	margin-bottom: 24px;
}

.contact-form-wrap {
	padding: clamp(30px, 5vw, 62px);
	background: var(--cream);
}

.contact-form {
	display: grid;
	gap: 22px;
}

.contact-form label {
	display: grid;
	gap: 8px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid rgba(32, 35, 33, 0.25);
	border-radius: 0;
	outline: none;
	background: var(--white);
	color: var(--ink);
	font-size: 0.95rem;
	font-weight: 400;
	letter-spacing: 0;
	text-transform: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-color: var(--green-dark);
	box-shadow: 0 0 0 3px rgba(114, 189, 57, 0.18);
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.consent {
	display: flex !important;
	align-items: start;
	gap: 10px !important;
	font-size: 0.72rem !important;
	font-weight: 500 !important;
	letter-spacing: 0 !important;
	line-height: 1.5;
	text-transform: none !important;
}

.consent input {
	width: 18px;
	margin-top: 2px;
}

.honeypot {
	position: absolute;
	left: -10000px;
}

.form-message {
	padding: 14px 18px;
	margin-bottom: 24px;
	border-left: 4px solid var(--green);
	background: #edf8e5;
}

.form-message.error {
	border-color: #b7392f;
	background: #fff0ee;
}

.project-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 42px;
}

.project-filters button {
	padding: 10px 17px;
	border: 1px solid var(--line);
	background: transparent;
	color: var(--ink);
	cursor: pointer;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.project-filters button:hover,
.project-filters button:focus-visible,
.project-filters button.is-active {
	color: var(--white);
	background: var(--ink);
}

[data-project-item].is-hidden {
	display: none;
}

.archive-grid {
	row-gap: 70px;
}

.project-single-hero {
	position: relative;
	display: grid;
	min-height: min(820px, 88svh);
	align-items: end;
	overflow: hidden;
	color: var(--white);
}

.project-single-image,
.project-single-overlay {
	position: absolute;
	inset: 0;
}

.project-single-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.project-single-overlay {
	background: linear-gradient(0deg, rgba(18, 22, 18, 0.8), rgba(18, 22, 18, 0.02) 70%);
}

.project-single-heading {
	position: relative;
	z-index: 2;
	padding-bottom: 70px;
}

.project-single-heading .eyebrow {
	color: #a7e671;
}

.project-single-heading h1 {
	max-width: 900px;
	margin-bottom: 22px;
	font-size: clamp(3.5rem, 7vw, 7rem);
}

.project-facts {
	display: flex;
	gap: 28px;
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.article-image {
	margin-top: 60px;
}

.article-image img {
	width: 100%;
	max-height: 720px;
	object-fit: cover;
}

.navigation.pagination {
	margin-top: 60px;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.page-numbers {
	display: grid;
	min-width: 42px;
	height: 42px;
	place-items: center;
	padding: 0 12px;
	border: 1px solid var(--line);
}

.page-numbers.current,
.page-numbers:hover {
	color: var(--white);
	background: var(--ink);
}

.site-footer {
	padding: 80px 0 24px;
	color: rgba(255, 255, 255, 0.72);
	background: #151816;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr 0.8fr;
	gap: 60px;
	padding-bottom: 70px;
}

.footer-logo {
	width: 230px;
	height: 90px;
	margin-bottom: 20px;
	object-fit: contain;
	object-position: left center;
	filter: brightness(0) invert(1);
}

.site-footer h2 {
	margin-bottom: 20px;
	color: var(--white);
	font-family: var(--font-sans);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.site-footer address {
	font-style: normal;
}

.site-footer a:hover,
.site-footer a:focus-visible {
	color: var(--green);
}

.social-links {
	display: grid;
	gap: 8px;
	margin-bottom: 26px;
}

.site-footer .text-link {
	font-size: 0.68rem;
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.74rem;
}

.footer-bottom p {
	margin: 0;
}

.footer-bottom ul {
	display: flex;
	gap: 20px;
	padding: 0;
	margin: 0;
	list-style: none;
}

@media (max-width: 1120px) {
	.primary-nav ul {
		gap: 18px;
	}

	.header-cta {
		display: none;
	}

	.hero-proof {
		right: 24px;
	}

	.value-copy {
		padding: 70px;
	}

	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 900px) {
	:root {
		--shell: min(100% - 36px, 760px);
	}

	.site-header,
	.site-header.is-scrolled {
		height: 74px;
	}

	.brand,
	.brand img,
	.custom-logo-link img {
		width: 170px;
		height: 56px;
	}

	.menu-toggle {
		display: block;
		margin-left: auto;
		cursor: pointer;
	}

	.menu-open .menu-toggle span:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}

	.menu-open .menu-toggle span:nth-child(2) {
		opacity: 0;
	}

	.menu-open .menu-toggle span:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}

	.primary-nav {
		position: fixed;
		top: 74px;
		right: 0;
		bottom: 0;
		left: 0;
		display: none;
		padding: 40px 24px;
		background: var(--white);
	}

	.menu-open .primary-nav {
		display: block;
	}

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

	.primary-nav a {
		padding: 15px 0;
		border-bottom: 1px solid var(--line);
		font-family: var(--font-serif);
		font-size: 2rem;
		font-weight: 600;
		letter-spacing: 0;
		text-transform: none;
	}

	.primary-nav a::after {
		display: none;
	}

	.hero {
		min-height: 820px;
		align-items: start;
	}

	.hero-content {
		padding-top: 170px;
	}

	.hero-shade {
		background: linear-gradient(90deg, rgba(18, 22, 18, 0.83), rgba(18, 22, 18, 0.28));
	}

	.hero-proof {
		right: 18px;
		left: 18px;
	}

	.hero-proof div {
		min-width: 0;
		padding: 18px;
	}

	.hero-proof strong {
		font-size: 1.7rem;
	}

	.split-intro,
	.value-grid,
	.contact-grid,
	.about-grid {
		grid-template-columns: 1fr;
	}

	.about-image {
		position: static;
	}

	.about-values-grid {
		grid-template-columns: 1fr;
	}

	.about-values-grid > div,
	.about-values-grid > div + div {
		padding: 28px 0;
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.16);
	}

	.about-values-grid > div:last-child {
		border-bottom: 0;
	}

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

	.process-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.process-grid li:nth-child(3) {
		border-top: 0;
	}

	.value-image {
		min-height: 580px;
	}

	.value-copy {
		max-width: 100%;
		padding: 80px 36px;
	}

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

	.cta-actions {
		align-items: flex-start;
	}
}

@media (max-width: 620px) {
	:root {
		--shell: calc(100vw - 28px);
	}

	.section {
		padding: 76px 0;
	}

	h1 {
		font-size: clamp(2.8rem, 14vw, 4.5rem);
	}

	h2 {
		font-size: clamp(2.35rem, 12vw, 3.6rem);
	}

	.hero {
		min-height: 780px;
	}

	.hero-media {
		background-position: 63% center;
	}

	.hero-content {
		padding-top: 138px;
	}

	.hero-content > p:not(.eyebrow) {
		font-size: 0.98rem;
	}

	.hero-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.hero-proof {
		grid-template-columns: repeat(3, 1fr);
	}

	.hero-proof div {
		padding: 14px 10px;
		text-align: center;
	}

	.hero-proof span {
		font-size: 0.55rem;
		line-height: 1.3;
	}

	.section-heading {
		align-items: flex-start;
		flex-direction: column;
	}

	.project-grid,
	.post-grid,
	.process-grid {
		grid-template-columns: 1fr;
	}

	.process-grid li,
	.process-grid li:nth-child(3) {
		border-top: 1px solid var(--line);
		border-right: 1px solid var(--line);
	}

	.process-grid span {
		margin-bottom: 30px;
	}

	.value-image {
		min-height: 420px;
	}

	.value-copy {
		padding: 68px 22px;
	}

	.page-hero,
	.article-hero {
		padding: 140px 0 65px;
	}

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

	.contact-form-wrap {
		padding: 28px 20px;
	}

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

	.footer-bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 14px;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		scroll-behavior: auto !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}
