:root {
	--ink: #151917;
	--muted: #5d665f;
	--paper: #f4f6f2;
	--surface: #ffffff;
	--line: #d8ded8;
	--green: #2f6b49;
	--green-dark: #1f4d34;
	--signal: #d8e85a;
	--error: #9c2f2f;
	--shadow: 0 18px 50px rgba(21, 25, 23, 0.12);
	--ease-out: cubic-bezier(0.23, 1, 0.32, 1);
	--content: min(1180px, calc(100% - 40px));
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	overflow-x: clip;
}

body {
	margin: 0;
	overflow-x: clip;
	background: var(--paper);
	color: var(--ink);
	font-family: "Bahnschrift", "DIN Alternate", "Trebuchet MS", sans-serif;
	font-size: 17px;
	line-height: 1.6;
	letter-spacing: 0;
	-webkit-font-smoothing: antialiased;
}

body.nav-open {
	overflow: hidden;
}

img {
	display: block;
	max-width: 100%;
}

a {
	color: inherit;
	text-underline-offset: 0.22em;
}

button,
input,
select,
textarea {
	font: inherit;
	letter-spacing: 0;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

:focus-visible {
	outline: 3px solid var(--signal);
	outline-offset: 3px;
}

.skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 1000;
	padding: 10px 16px;
	background: var(--ink);
	color: #fff;
	transform: translateY(-150%);
	transition: transform 180ms var(--ease-out);
}

.skip-link:focus {
	transform: translateY(0);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	border-bottom: 1px solid transparent;
	background: rgba(244, 246, 242, 0.88);
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
	transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
	border-color: var(--line);
	box-shadow: 0 8px 24px rgba(21, 25, 23, 0.06);
}

.nav-shell {
	width: var(--content);
	height: 72px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	font-weight: 700;
	line-height: 1;
}

.brand img {
	width: 52px;
	height: 38px;
	object-fit: contain;
}

.brand span {
	font-size: 1.02rem;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 26px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.nav-links a {
	position: relative;
	font-size: 0.88rem;
	font-weight: 650;
	text-decoration: none;
}

.nav-links a:not(.nav-cta)::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -7px;
	width: 100%;
	height: 2px;
	background: var(--green);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 180ms var(--ease-out);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
	transform: scaleX(1);
	transform-origin: left;
}

.nav-cta,
.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 22px;
	border: 1px solid var(--green);
	border-radius: 6px;
	background: var(--green);
	color: #fff;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 140ms var(--ease-out);
}

.button:hover,
.nav-cta:hover {
	background: var(--green-dark);
	border-color: var(--green-dark);
}

.button:active,
.nav-cta:active,
.menu-toggle:active {
	transform: scale(0.97);
}

.button.secondary {
	background: transparent;
	color: var(--ink);
	border-color: var(--ink);
}

.button.secondary:hover {
	background: var(--ink);
	color: #fff;
}

.menu-toggle {
	display: none;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 1px solid var(--line);
	border-radius: 6px;
	background: var(--surface);
	cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
	content: "";
	display: block;
	width: 20px;
	height: 2px;
	margin: 4px auto;
	background: var(--ink);
	transition: transform 180ms var(--ease-out), opacity 180ms ease;
}

.nav-open .menu-toggle span {
	opacity: 0;
}

.nav-open .menu-toggle::before {
	transform: translateY(6px) rotate(45deg);
}

.nav-open .menu-toggle::after {
	transform: translateY(-6px) rotate(-45deg);
}

.hero {
	position: relative;
	min-height: min(760px, calc(100dvh - 72px));
	display: grid;
	align-items: end;
	overflow: hidden;
	background: #212925;
	color: #fff;
}

.hero-media,
.hero-media::after {
	position: absolute;
	inset: 0;
}

.hero-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 45%;
}

.hero-media::after {
	content: "";
	background: linear-gradient(90deg, rgba(13, 17, 15, 0.9) 0%, rgba(13, 17, 15, 0.62) 46%, rgba(13, 17, 15, 0.12) 82%);
}

.hero-content {
	position: relative;
	z-index: 1;
	width: var(--content);
	margin: 0 auto;
	padding: clamp(72px, 10vh, 112px) 0;
}

.eyebrow {
	margin: 0 0 16px;
	color: var(--signal);
	font-size: 0.78rem;
	font-weight: 750;
	text-transform: uppercase;
	letter-spacing: 0.12em;
}

.hero h1 {
	max-width: 820px;
	margin: 0;
	font-size: clamp(3rem, 7vw, 6.4rem);
	font-weight: 780;
	line-height: 0.98;
	letter-spacing: 0;
}

.hero-copy {
	max-width: 590px;
	margin: 24px 0 0;
	font-size: clamp(1.05rem, 1.7vw, 1.3rem);
	color: rgba(255, 255, 255, 0.86);
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 30px;
}

.hero .button.secondary {
	border-color: rgba(255, 255, 255, 0.75);
	color: #fff;
	background: rgba(10, 15, 12, 0.26);
}

.hero .button.secondary:hover {
	background: #fff;
	color: var(--ink);
}

.trust-bar {
	background: var(--ink);
	color: #fff;
}

.trust-grid {
	width: var(--content);
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.trust-item {
	min-height: 108px;
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 20px 28px;
	border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-item:first-child {
	padding-left: 0;
}

.trust-item:last-child {
	border-right: 0;
}

.trust-number {
	color: var(--signal);
	font-size: 1.9rem;
	font-weight: 750;
	line-height: 1;
}

.trust-item p {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.35;
}

.section {
	padding: clamp(76px, 10vw, 132px) 0;
}

.section-inner {
	width: var(--content);
	margin: 0 auto;
}

.section h2,
.legal-page h1,
.gallery-hero h1 {
	max-width: 780px;
	margin: 0 0 22px;
	font-size: clamp(2.25rem, 4.8vw, 4.8rem);
	font-weight: 760;
	line-height: 1.02;
	letter-spacing: 0;
}

.section-lead {
	max-width: 670px;
	margin: 0 0 48px;
	color: var(--muted);
	font-size: 1.12rem;
}

.services-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(44px, 8vw, 110px);
	align-items: start;
}

.service-list {
	margin: 0;
	padding: 0;
	list-style: none;
	border-top: 1px solid var(--line);
}

.service-list li {
	display: grid;
	grid-template-columns: 48px 1fr;
	gap: 12px;
	padding: 20px 0;
	border-bottom: 1px solid var(--line);
	font-size: 1.06rem;
	font-weight: 650;
}

.service-list span {
	color: var(--green);
	font-size: 0.78rem;
	font-weight: 750;
}

.projects-section {
	background: #e7ebe6;
}

.project-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 18px;
}

.project-card {
	position: relative;
	min-height: 440px;
	overflow: hidden;
	border-radius: 6px;
	background: #2d332f;
	color: #fff;
}

.project-card:nth-child(1),
.project-card:nth-child(4) {
	grid-column: span 7;
}

.project-card:nth-child(2),
.project-card:nth-child(3) {
	grid-column: span 5;
}

.project-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 600ms var(--ease-out);
}

.project-card::after {
	content: "";
	position: absolute;
	inset: 35% 0 0;
	background: linear-gradient(transparent, rgba(12, 15, 13, 0.9));
}

.project-card:hover img {
	transform: scale(1.035);
}

.project-copy {
	position: absolute;
	z-index: 1;
	left: 26px;
	right: 26px;
	bottom: 24px;
}

.project-copy h3 {
	margin: 0 0 5px;
	font-size: 1.42rem;
	line-height: 1.15;
}

.project-copy p {
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.9rem;
}

.projects-action {
	margin-top: 30px;
}

.about-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
	gap: clamp(50px, 9vw, 120px);
	align-items: center;
}

.owner-panel {
	padding: 38px;
	border-left: 4px solid var(--green);
	background: var(--surface);
	box-shadow: var(--shadow);
}

.owner-panel img {
	width: 96px;
	height: 70px;
	object-fit: contain;
	margin-bottom: 30px;
}

.owner-panel strong,
.owner-panel span {
	display: block;
}

.owner-panel strong {
	font-size: 1.2rem;
}

.owner-panel span {
	color: var(--muted);
}

.contact-section {
	background: var(--ink);
	color: #fff;
}

.contact-layout {
	display: grid;
	grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.15fr);
	gap: clamp(48px, 8vw, 104px);
}

.contact-section h2 {
	color: #fff;
}

.contact-details {
	display: grid;
	gap: 20px;
	margin-top: 38px;
}

.contact-details a,
.contact-details address {
	font-style: normal;
	color: rgba(255, 255, 255, 0.86);
}

.contact-details strong {
	display: block;
	margin-bottom: 2px;
	color: var(--signal);
	font-size: 0.76rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.contact-form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.field {
	display: grid;
	gap: 7px;
}

.field.full,
.form-actions,
.form-status,
.privacy-field {
	grid-column: 1 / -1;
}

.field label {
	font-size: 0.85rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.9);
}

.field input,
.field select,
.field textarea {
	width: 100%;
	min-height: 50px;
	padding: 12px 14px;
	border: 1px solid #667069;
	border-radius: 5px;
	background: #242a27;
	color: #fff;
}

.field textarea {
	min-height: 146px;
	resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
	color: #aab3ad;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
	border-color: var(--signal);
	outline: 2px solid transparent;
	box-shadow: 0 0 0 3px rgba(216, 232, 90, 0.22);
}

.math-field {
	max-width: 240px;
}

.math-field label span {
	color: var(--signal);
}

.button:disabled {
	cursor: wait;
	opacity: 0.55;
}

.privacy-field {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 0.83rem;
	color: rgba(255, 255, 255, 0.78);
}

.privacy-field input {
	width: 18px;
	height: 18px;
	margin: 3px 0 0;
	accent-color: var(--signal);
}

.honeypot {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
}

.form-actions {
	display: flex;
	align-items: center;
	gap: 16px;
}

.form-status {
	display: none;
	padding: 14px 16px;
	border-left: 3px solid var(--signal);
	background: rgba(255, 255, 255, 0.08);
}

.form-status.is-visible {
	display: block;
}

.form-status.is-error {
	border-color: #ff8d8d;
}

.site-footer {
	background: #0d100f;
	color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
	width: var(--content);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.2fr 0.8fr 0.8fr;
	gap: 56px;
	padding: 66px 0 42px;
}

.footer-brand img {
	width: 96px;
	height: 70px;
	object-fit: contain;
}

.footer-brand p {
	max-width: 380px;
	margin: 20px 0 0;
}

.footer-column h2 {
	margin: 0 0 16px;
	color: #fff;
	font-size: 1rem;
}

.footer-column ul {
	display: grid;
	gap: 9px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-column a {
	text-decoration-color: rgba(255, 255, 255, 0.3);
}

.footer-bottom {
	width: var(--content);
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	gap: 24px;
	padding: 24px 0 32px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 0.82rem;
}

.done-it {
	color: #fff;
}

.gallery-hero,
.legal-hero {
	padding: clamp(70px, 10vw, 126px) 0 54px;
	background: var(--ink);
	color: #fff;
}

.gallery-hero .section-inner p,
.legal-hero .section-inner p {
	max-width: 650px;
	margin: 0;
	color: rgba(255, 255, 255, 0.72);
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.gallery-item {
	margin: 0;
	overflow: hidden;
	border-radius: 5px;
	background: #dfe3df;
}

.gallery-item img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	transition: transform 600ms var(--ease-out);
}

.gallery-item:hover img {
	transform: scale(1.035);
}

.gallery-item figcaption {
	padding: 12px 14px;
	color: var(--muted);
	font-size: 0.82rem;
}

.legal-page {
	width: min(850px, calc(100% - 40px));
	margin: 0 auto;
	padding: 70px 0 110px;
}

.legal-page h2 {
	margin: 52px 0 14px;
	font-size: 1.55rem;
	line-height: 1.25;
}

.legal-page h3 {
	margin: 32px 0 10px;
	font-size: 1.12rem;
}

.legal-page p,
.legal-page ul {
	color: #343b37;
}

.legal-page address {
	font-style: normal;
}

[data-reveal] {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}

[data-reveal].is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 880px) {
	.menu-toggle {
		display: flex;
		flex: 0 0 46px;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

	.nav-links {
		position: fixed;
		top: 72px;
		left: 0;
		right: 0;
		height: calc(100dvh - 72px);
		padding: 32px 20px;
		background: var(--paper);
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		transform: translateX(100%);
		visibility: hidden;
		pointer-events: none;
		transition: transform 240ms var(--ease-out);
	}

	.nav-open .nav-links {
		transform: translateX(0);
		visibility: visible;
		pointer-events: auto;
	}

	.nav-links a {
		display: block;
		padding: 17px 4px;
		border-bottom: 1px solid var(--line);
		font-size: 1.1rem;
	}

	.nav-links .nav-cta {
		margin-top: 22px;
		border-bottom: 1px solid var(--green);
	}

	.hero {
		min-height: 680px;
	}

	.hero-media::after {
		background: linear-gradient(0deg, rgba(13, 17, 15, 0.94) 3%, rgba(13, 17, 15, 0.52) 68%, rgba(13, 17, 15, 0.2));
	}

	.trust-grid,
	.services-layout,
	.about-layout,
	.contact-layout {
		grid-template-columns: 1fr;
	}

	.trust-item {
		min-height: 84px;
		padding: 18px 0;
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.16);
	}

	.trust-item:last-child {
		border-bottom: 0;
	}

	.project-card:nth-child(n) {
		grid-column: span 6;
		min-height: 390px;
	}

	.footer-grid {
		grid-template-columns: 1.2fr 0.8fr;
	}

	.footer-brand {
		grid-column: 1 / -1;
	}

	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 620px) {
	:root {
		--content: calc(100% - 28px);
	}

	body {
		font-size: 16px;
	}

	.nav-shell {
		height: 64px;
	}

	.nav-links {
		top: 64px;
		height: calc(100dvh - 64px);
	}

	.brand img {
		width: 46px;
		height: 34px;
	}

	.hero {
		min-height: min(720px, calc(100dvh - 104px));
	}

	.hero-content {
		padding: 42px 0 34px;
	}

	.hero h1 {
		font-size: clamp(2.5rem, 12vw, 3.25rem);
	}

	.hero-copy {
		margin-top: 18px;
		font-size: 1rem;
	}

	.hero-actions {
		margin-top: 22px;
	}

	.hero-actions,
	.form-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.hero-actions .button,
	.form-actions .button {
		width: 100%;
	}

	.section {
		padding: 72px 0;
	}

	.section h2,
	.gallery-hero h1,
	.legal-hero h1 {
		font-size: 2.45rem;
	}

	.project-grid,
	.gallery-grid,
	.contact-form {
		grid-template-columns: 1fr;
	}

	.project-card:nth-child(n) {
		grid-column: auto;
		min-height: 350px;
	}

	.field,
	.field.full,
	.form-actions,
	.form-status,
	.privacy-field {
		grid-column: auto;
	}

	.math-field {
		max-width: none;
	}

	.owner-panel {
		padding: 28px;
	}

	.footer-grid {
		display: block;
		padding: 54px 0 26px;
		text-align: center;
	}

	.footer-brand img {
		margin: 0 auto;
	}

	.footer-brand p {
		margin: 16px auto 0;
	}

	.footer-column {
		margin-top: 28px;
	}

	.footer-column.secondary {
		display: none;
	}

	.footer-bottom {
		align-items: center;
		flex-direction: column;
		gap: 10px;
		text-align: center;
	}

	.done-it {
		display: inline-block;
		padding: 3px 8px;
		border-radius: 4px;
		animation: done-it-pulse 2.8s ease-in-out infinite;
	}
}

@keyframes done-it-pulse {
	0%, 100% { box-shadow: 0 0 0 rgba(216, 232, 90, 0); }
	50% { box-shadow: 0 0 18px rgba(216, 232, 90, 0.46); }
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	[data-reveal] {
		opacity: 1;
		transform: none;
	}

	.done-it {
		background: rgba(216, 232, 90, 0.12);
		box-shadow: 0 0 0 1px rgba(216, 232, 90, 0.35);
	}
}

@media print {
	.site-header,
	.site-footer {
		display: none;
	}
}