:root {
	--bg: #f7f8f7;
	--surface: #ffffff;
	--surface-soft: #eef3f0;
	--ink: #17201d;
	--muted: #5b6862;
	--line: #dce4df;
	--teal: #0b6f69;
	--teal-dark: #074f4a;
	--amber: #d6972a;
	--coral: #bf5b4b;
	--shadow: 0 24px 70px rgba(22, 32, 29, 0.12);
	--radius: 8px;
	--container: 1180px;
	--font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--ink);
	font-family: var(--font);
	font-size: 16px;
	line-height: 1.6;
}

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

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

a:hover {
	color: var(--teal);
}

.container {
	width: min(calc(100% - 40px), var(--container));
	margin-inline: auto;
}

.narrow {
	max-width: 820px;
}

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

.skip-link:focus {
	position: fixed;
	z-index: 1000;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	padding: 10px 14px;
	clip: auto;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.site-header {
	position: sticky;
	z-index: 50;
	top: 0;
	background: rgba(247, 248, 247, 0.88);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid rgba(220, 228, 223, 0.8);
}

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

.brand,
.footer-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-weight: 800;
}

.brand-mark {
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	flex: 0 0 42px;
	border-radius: 8px;
	background: var(--teal);
	color: #fff;
	font-weight: 800;
}

.brand-text {
	display: grid;
	line-height: 1.15;
}

.brand-text small {
	color: var(--muted);
	font-size: 12px;
	font-weight: 600;
}

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

.menu {
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.menu a {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 0 14px;
	border-radius: 8px;
	color: var(--muted);
	font-weight: 700;
	font-size: 14px;
}

.menu a:hover,
.menu .current-menu-item > a {
	background: var(--surface-soft);
	color: var(--ink);
}

.header-cta,
.button,
.contact-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 18px;
	border: 1px solid transparent;
	border-radius: 8px;
	font-weight: 800;
	font-size: 14px;
	line-height: 1;
}

.header-cta,
.button-primary,
.contact-link {
	background: var(--teal);
	color: #fff;
	box-shadow: 0 14px 36px rgba(11, 111, 105, 0.22);
}

.header-cta:hover,
.button-primary:hover,
.contact-link:hover {
	background: var(--teal-dark);
	color: #fff;
}

.button-secondary {
	border-color: rgba(255, 255, 255, 0.35);
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover {
	background: rgba(255, 255, 255, 0.16);
	color: #fff;
}

.nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: var(--surface);
}

.nav-toggle span:not(.screen-reader-text) {
	display: block;
	width: 18px;
	height: 2px;
	margin: 4px auto;
	background: var(--ink);
}

.hero-section {
	position: relative;
	display: grid;
	align-items: end;
	min-height: clamp(640px, 92vh, 860px);
	overflow: hidden;
	color: #fff;
}

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

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

.hero-overlay {
	background:
		linear-gradient(90deg, rgba(8, 14, 13, 0.9) 0%, rgba(8, 14, 13, 0.72) 36%, rgba(8, 14, 13, 0.22) 100%),
		linear-gradient(0deg, rgba(8, 14, 13, 0.82) 0%, rgba(8, 14, 13, 0.05) 46%);
}

.hero-content {
	position: relative;
	z-index: 1;
	padding: 132px 0 72px;
}

.eyebrow {
	margin: 0 0 14px;
	color: var(--amber);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}

.hero-content h1,
.page-hero h1 {
	max-width: 790px;
	margin: 0;
	font-size: clamp(42px, 7vw, 78px);
	line-height: 0.98;
	letter-spacing: 0;
}

.hero-lead {
	max-width: 650px;
	margin: 24px 0 0;
	color: rgba(255, 255, 255, 0.84);
	font-size: clamp(18px, 2vw, 22px);
}

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

.hero-metrics {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	width: min(100%, 780px);
	margin-top: 64px;
}

.hero-metrics div {
	min-height: 112px;
	padding: 20px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(12px);
}

.hero-metrics strong,
.hero-metrics span {
	display: block;
}

.hero-metrics strong {
	font-size: 24px;
	line-height: 1.2;
}

.hero-metrics span {
	margin-top: 8px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 14px;
}

.section {
	padding: 92px 0;
}

.intro-band {
	padding: 44px 0;
	background: var(--surface);
	border-bottom: 1px solid var(--line);
}

.intro-grid,
.split-section,
.contact-grid,
.process-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
	gap: 56px;
	align-items: start;
}

.intro-grid h2,
.section-heading h2,
.split-section h2,
.contact-grid h2 {
	margin: 0;
	font-size: clamp(30px, 4vw, 48px);
	line-height: 1.08;
	letter-spacing: 0;
}

.intro-grid > p,
.split-section p,
.contact-grid p {
	margin: 0;
	color: var(--muted);
	font-size: 18px;
}

.section-heading {
	max-width: 760px;
	margin: 0 auto 38px;
	text-align: center;
}

.section-heading.align-start {
	margin-inline: 0;
	text-align: left;
}

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

.service-card {
	min-height: 260px;
	padding: 28px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: var(--surface);
	box-shadow: 0 10px 34px rgba(22, 32, 29, 0.05);
}

.icon-badge {
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 8px;
	background: #edf7f5;
	color: var(--teal);
	font-weight: 900;
}

.service-card h3,
.timeline-item h3,
.contact-panel h3 {
	margin: 22px 0 10px;
	font-size: 22px;
	line-height: 1.2;
}

.service-card p,
.timeline-item p,
.proof-list span,
.contact-panel p,
.contact-panel span {
	margin: 0;
	color: var(--muted);
}

.muted-section {
	background: #eaf0ed;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.timeline {
	display: grid;
	gap: 14px;
}

.timeline-item {
	position: relative;
	padding: 22px 22px 22px 74px;
	border: 1px solid rgba(11, 111, 105, 0.14);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.68);
}

.timeline-item span {
	position: absolute;
	top: 22px;
	left: 22px;
	display: inline-grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 8px;
	background: var(--teal);
	color: #fff;
	font-weight: 900;
}

.timeline-item h3 {
	margin-top: 0;
}

.proof-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.proof-list div {
	min-height: 130px;
	padding: 22px;
	border-left: 4px solid var(--teal);
	border-radius: 8px;
	background: var(--surface);
	box-shadow: 0 14px 34px rgba(22, 32, 29, 0.06);
}

.proof-list strong,
.proof-list span {
	display: block;
}

.proof-list strong {
	margin-bottom: 8px;
}

.contact-band {
	background: #101816;
	color: #fff;
}

.contact-grid p {
	color: rgba(255, 255, 255, 0.76);
}

.contact-panel {
	padding: 30px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.08);
	box-shadow: var(--shadow);
}

.contact-panel h3 {
	margin-top: 0;
}

.contact-panel p,
.contact-panel span {
	display: block;
	color: rgba(255, 255, 255, 0.72);
}

.contact-link {
	width: 100%;
	margin: 24px 0 18px;
}

.page-hero {
	padding: 120px 0 72px;
	background: #101816;
	color: #fff;
}

.page-hero p {
	max-width: 680px;
	color: rgba(255, 255, 255, 0.76);
}

.content-area {
	padding: 42px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: var(--surface);
	box-shadow: 0 20px 54px rgba(22, 32, 29, 0.08);
}

.content-area h2,
.content-area h3 {
	line-height: 1.18;
}

.content-area h2 {
	margin-top: 0;
	font-size: 34px;
}

.content-area h3 {
	margin-top: 34px;
	font-size: 22px;
}

.content-area a {
	color: var(--teal);
	font-weight: 800;
}

.content-area ul,
.content-area ol {
	padding-left: 22px;
}

.post-summary {
	padding-bottom: 24px;
	margin-bottom: 24px;
	border-bottom: 1px solid var(--line);
}

.site-footer {
	padding: 58px 0 24px;
	background: #0f1513;
	color: #fff;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
	gap: 30px;
}

.site-footer h2 {
	margin: 0 0 16px;
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 0;
}

.site-footer p,
.site-footer li {
	color: rgba(255, 255, 255, 0.68);
}

.site-footer ul {
	display: grid;
	gap: 10px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.site-footer a:hover {
	color: #fff;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	padding-top: 28px;
	margin-top: 38px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.62);
	font-size: 14px;
}

.footer-bottom p {
	margin: 0;
}

@media (max-width: 980px) {
	.header-inner {
		grid-template-columns: auto auto;
		justify-content: space-between;
	}

	.nav-toggle {
		display: inline-block;
	}

	.primary-nav {
		position: absolute;
		inset: 76px 20px auto;
		display: none;
		padding: 14px;
		border: 1px solid var(--line);
		border-radius: 8px;
		background: var(--surface);
		box-shadow: var(--shadow);
	}

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

	.menu {
		display: grid;
		gap: 4px;
	}

	.menu a {
		width: 100%;
	}

	.header-cta {
		display: none;
	}

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

	.intro-grid,
	.split-section,
	.contact-grid,
	.process-layout {
		grid-template-columns: 1fr;
		gap: 30px;
	}
}

@media (max-width: 680px) {
	.container {
		width: min(calc(100% - 28px), var(--container));
	}

	.hero-section {
		min-height: auto;
	}

	.hero-content {
		padding: 118px 0 44px;
	}

	.hero-content h1,
	.page-hero h1 {
		font-size: 40px;
	}

	.hero-actions,
	.button {
		width: 100%;
	}

	.hero-metrics,
	.service-grid,
	.proof-list,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.section {
		padding: 64px 0;
	}

	.intro-band {
		padding: 34px 0;
	}

	.service-card,
	.content-area,
	.contact-panel {
		padding: 22px;
	}

	.page-hero {
		padding: 104px 0 54px;
	}

	.footer-bottom {
		display: grid;
	}
}
