:root {
	--pcp-ink: #151915;
	--pcp-field: #496154;
	--pcp-shade: #79938a;
	--pcp-copper: #b66f45;
	--pcp-mist: #e8f0ec;
	--pcp-cloud: #f6f5f0;
	--pcp-white: #fff;
	--pcp-line: rgba(21, 25, 21, 0.14);
	--pcp-shadow: 0 24px 70px rgba(21, 25, 21, 0.16);
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: var(--pcp-cloud);
	color: var(--pcp-ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.6;
	letter-spacing: 0;
}

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

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

.site-shell {
	width: min(100% - 40px, 1160px);
	margin-inline: auto;
}

.site-shell.narrow {
	width: min(100% - 40px, 820px);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(246, 245, 240, 0.94);
	border-bottom: 1px solid var(--pcp-line);
	backdrop-filter: blur(16px);
}

.header-inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 24px;
	min-height: 76px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
}

.brand-mark {
	display: grid;
	width: 46px;
	height: 46px;
	place-items: center;
	border-radius: 8px;
	background: var(--pcp-ink);
	color: var(--pcp-white);
}

.brand-icon {
	width: 32px;
	height: 32px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 4;
}

.brand-text {
	display: grid;
	gap: 0;
}

.brand-text strong {
	font-size: 16px;
	line-height: 1.2;
}

.brand-text small {
	color: var(--pcp-field);
	font-size: 12px;
}

.menu,
.footer-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-nav {
	justify-self: end;
}

.menu a {
	color: var(--pcp-ink);
	font-size: 14px;
	font-weight: 650;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 20px;
	border: 0;
	border-radius: 8px;
	font-weight: 750;
	line-height: 1;
	transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

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

.button-primary:hover {
	background: var(--pcp-field);
}

.button-secondary {
	background: rgba(255, 255, 255, 0.14);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
	color: var(--pcp-white);
}

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

.button-dark:hover {
	background: var(--pcp-ink);
}

.home-hero {
	position: relative;
	isolation: isolate;
	min-height: min(760px, calc(100svh - 124px));
	display: grid;
	align-items: end;
	overflow: hidden;
	background: var(--pcp-ink);
}

.hero-media {
	position: absolute;
	inset: 0;
	z-index: -2;
}

.hero-media::after {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(90deg, rgba(21, 25, 21, 0.82), rgba(21, 25, 21, 0.42) 58%, rgba(21, 25, 21, 0.12));
}

.hero-media-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-hero-inner {
	padding-block: 96px;
	color: var(--pcp-white);
}

.home-hero h1,
.page-hero h1,
.project-hero h1,
.service-hero h1 {
	max-width: 860px;
	margin: 0;
	font-size: clamp(44px, 8vw, 88px);
	line-height: 0.96;
	letter-spacing: 0;
}

.lede {
	max-width: 720px;
	margin: 22px 0 0;
	font-size: 20px;
	line-height: 1.55;
}

.eyebrow {
	margin: 0 0 14px;
	color: var(--pcp-copper);
	font-size: 13px;
	font-weight: 850;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 30px;
}

.content-section,
.page-hero,
.project-hero,
.service-hero {
	padding-block: 88px;
}

.page-hero {
	background: var(--pcp-mist);
}

.project-hero {
	background: var(--pcp-ink);
	color: var(--pcp-white);
}

.service-hero {
	background: var(--pcp-cloud);
}

.page-hero-grid,
.project-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
	gap: 48px;
	align-items: center;
}

.page-hero-media,
.project-hero-media {
	margin: 0;
}

.page-hero-media img,
.project-hero-media img {
	width: 100%;
	border-radius: 8px;
	object-fit: cover;
	box-shadow: var(--pcp-shadow);
}

.page-hero-media img {
	aspect-ratio: 4 / 3;
}

.project-hero-media img {
	aspect-ratio: 16 / 11;
}

.project-hero .lede {
	color: rgba(255, 255, 255, 0.78);
}

.split-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
	gap: 48px;
	align-items: center;
}

.split-hero img {
	aspect-ratio: 4 / 3;
	width: 100%;
	border-radius: 8px;
	object-fit: cover;
	box-shadow: var(--pcp-shadow);
}

.section-heading {
	margin-bottom: 30px;
}

.section-heading > p:not(.eyebrow) {
	max-width: 680px;
	margin: 12px 0 0;
	color: rgba(21, 25, 21, 0.72);
	font-size: 18px;
}

.section-heading h2 {
	max-width: 760px;
	margin: 0;
	font-size: clamp(30px, 5vw, 54px);
	line-height: 1.03;
	letter-spacing: 0;
}

.feature-band {
	background: var(--pcp-white);
}

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

.feature-grid article,
.content-card,
.project-facts {
	border: 1px solid var(--pcp-line);
	border-radius: 8px;
	background: var(--pcp-white);
}

.feature-grid article {
	padding: 26px;
}

.feature-grid h2,
.feature-grid h3,
.content-card h2,
.content-card h3,
.project-facts h2 {
	margin: 0 0 10px;
	line-height: 1.15;
	letter-spacing: 0;
}

.feature-grid p,
.content-card p,
.project-facts p {
	margin: 0;
	color: rgba(21, 25, 21, 0.74);
}

.content-card {
	overflow: hidden;
	transition: transform 160ms ease, box-shadow 160ms ease;
}

.content-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--pcp-shadow);
}

.content-card img,
.media-placeholder {
	aspect-ratio: 4 / 3;
	width: 100%;
	object-fit: cover;
	background: linear-gradient(135deg, var(--pcp-mist), #d8e0d9);
}

.card-body,
.content-card > a {
	display: grid;
	gap: 12px;
}

.card-body {
	padding: 20px;
}

.service-preview-grid .content-card img {
	aspect-ratio: 16 / 11;
}

.card-meta {
	min-height: 20px;
	color: var(--pcp-copper) !important;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.project-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 44px;
	align-items: start;
}

.project-scope {
	margin-top: 42px;
}

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

.project-scope-grid article {
	min-height: 76px;
	padding: 16px 18px;
	border: 1px solid var(--pcp-line);
	border-left: 4px solid var(--pcp-copper);
	border-radius: 8px;
	background: var(--pcp-white);
}

.project-scope-grid p {
	margin: 0;
	color: rgba(21, 25, 21, 0.78);
	font-weight: 700;
	line-height: 1.35;
}

.project-gallery-section {
	background: var(--pcp-white);
}

.project-gallery-section:nth-of-type(even) {
	background: var(--pcp-cloud);
}

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

.project-gallery-item,
.page-media-item {
	overflow: hidden;
	margin: 0;
	border: 1px solid var(--pcp-line);
	border-radius: 8px;
	background: var(--pcp-white);
}

.project-gallery-item-large {
	grid-column: span 2;
	grid-row: span 2;
}

.project-gallery-item img,
.page-media-item img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.project-gallery-item-large img {
	aspect-ratio: 16 / 11;
}

.project-gallery-item figcaption {
	padding: 10px 12px;
	color: rgba(21, 25, 21, 0.68);
	font-size: 12px;
	line-height: 1.35;
}

.page-image-section {
	padding-top: 0;
}

.prose > *:first-child {
	margin-top: 0;
}

.prose a {
	color: var(--pcp-field);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.project-facts {
	position: sticky;
	top: 100px;
	padding: 24px;
}

.project-facts p + p {
	margin-top: 18px;
}

.project-facts a {
	color: var(--pcp-field);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.project-facts a:hover,
.project-facts a:focus {
	color: var(--pcp-copper);
}

.product-band {
	background: var(--pcp-mist);
}

.product-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
	gap: 46px;
	align-items: center;
}

.product-layout h2 {
	margin: 0;
	font-size: clamp(32px, 5vw, 58px);
	line-height: 1.03;
	letter-spacing: 0;
}

.product-layout p:not(.eyebrow) {
	max-width: 620px;
	margin: 18px 0 26px;
	color: rgba(21, 25, 21, 0.76);
	font-size: 18px;
}

.product-image-stack {
	display: grid;
	gap: 16px;
}

.product-image-stack > img {
	aspect-ratio: 16 / 10;
	width: 100%;
	border-radius: 8px;
	object-fit: cover;
	box-shadow: var(--pcp-shadow);
}

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

.mini-card-grid article {
	overflow: hidden;
	border: 1px solid var(--pcp-line);
	border-radius: 8px;
	background: var(--pcp-white);
}

.mini-card-grid img {
	aspect-ratio: 4 / 3;
	width: 100%;
	object-fit: cover;
}

.mini-card-grid h3 {
	min-height: 54px;
	margin: 0;
	padding: 12px;
	font-size: 15px;
	line-height: 1.2;
	letter-spacing: 0;
}

.site-footer {
	background: var(--pcp-ink);
	color: var(--pcp-white);
}

.footer-cta {
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-cta-inner,
.footer-main {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	padding-block: 38px;
}

.footer-cta h2 {
	margin: 0;
	font-size: clamp(28px, 4vw, 44px);
	line-height: 1.05;
	letter-spacing: 0;
}

.footer-main p {
	max-width: 620px;
	color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 900px) {
	.header-inner {
		grid-template-columns: 1fr auto;
	}

	.primary-nav {
		grid-column: 1 / -1;
		justify-self: start;
		padding-bottom: 16px;
	}

	.split-hero,
	.feature-grid,
	.post-grid,
	.page-hero-grid,
	.project-hero-grid,
	.project-layout,
	.product-layout {
		grid-template-columns: 1fr;
	}

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

	.project-facts {
		position: static;
	}
}

@media (max-width: 640px) {
	.site-shell,
	.site-shell.narrow {
		width: min(100% - 28px, 1160px);
	}

	.header-inner {
		min-height: auto;
		padding-block: 14px;
	}

	.header-inner > .button {
		display: none;
	}

	.home-hero-inner,
	.content-section,
	.page-hero,
	.service-hero {
		padding-block: 56px;
	}

	.home-hero h1,
	.page-hero h1,
	.project-hero h1,
	.service-hero h1 {
		font-size: 42px;
	}

	.lede {
		font-size: 18px;
	}

	.mini-card-grid {
		grid-template-columns: 1fr;
	}

	.project-scope-grid,
	.project-gallery-grid,
	.page-media-grid {
		grid-template-columns: 1fr;
	}

	.project-gallery-item-large {
		grid-column: auto;
		grid-row: auto;
	}

	.footer-cta-inner,
	.footer-main {
		display: grid;
	}
}
