:root {
	--color-ink: #1C1C1C;
	--color-paper: #FFFFFF;
	--color-green: #134D13;
	--color-teal: #094E67;
	--color-maroon: #620C23;

	--font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
	--max-width: 1140px;
}

* {
	box-sizing: border-box;
}

html, body {
	margin: 0;
	padding: 0;
}

body {
	font-family: var(--font-body);
	font-weight: 400;
	color: var(--color-ink);
	background: var(--color-paper);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
	font-weight: 600;
	line-height: 1.2;
	margin: 0 0 0.6em;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1em; }

a {
	color: var(--color-teal);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

.wrap {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 24px;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
}

/* Logo */

.logo {
	font-weight: 600;
	font-size: 1.25rem;
	letter-spacing: -1px;
	color: var(--color-ink);
}

.logo:hover {
	text-decoration: none;
}

.logo--small {
	font-size: 1.1rem;
}

.logo__short {
	display: none;
}

/* Header */

.site-header {
	border-bottom: 1px solid rgba(28, 28, 28, 0.08);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 20px;
	padding-bottom: 20px;
}

.nav {
	display: flex;
	gap: 28px;
}

.nav__link {
	color: var(--color-ink);
	font-weight: 400;
	position: relative;
}

.nav__link:hover {
	text-decoration: none;
	color: var(--color-teal);
}

.nav__link.is-active {
	color: var(--color-teal);
	font-weight: 600;
}

.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}

.nav-toggle span {
	width: 22px;
	height: 2px;
	background: var(--color-ink);
	display: block;
}

/* Buttons */

.btn {
	display: inline-block;
	padding: 14px 28px;
	border-radius: 999px;
	font-weight: 600;
	cursor: pointer;
	border: 1px solid transparent;
}

.btn--primary {
	background: var(--color-ink);
	color: var(--color-paper);
}

.btn--primary:hover {
	background: var(--color-teal);
	text-decoration: none;
}

.btn--outline {
	background: transparent;
	color: var(--color-paper);
	border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn--outline:hover {
	border-color: var(--color-paper);
	background: rgba(255, 255, 255, 0.08);
	text-decoration: none;
}

/* Icons */

.icon {
	width: 28px;
	height: 28px;
}

.icon--sm {
	width: 16px;
	height: 16px;
}

/* Sections */

.section {
	padding: 64px 0;
}

.section--alt {
	background: #F7F7F5;
}

.section--narrow {
	max-width: 760px;
}

.page-header {
	padding-bottom: 24px;
}

.hero {
	padding: 96px 0 64px;
	position: relative;
}

.hero__lead {
	font-size: 1.15rem;
	max-width: 640px;
	color: #444;
}

.hero--gradient {
	background: linear-gradient(135deg, #1C1C1C 0%, #14313a 60%, #0d3f4f 100%);
	color: var(--color-paper);
	overflow: hidden;
}

.hero--gradient .hero__lead {
	color: #D7DBDC;
}

.hero__decoration {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.hero__decoration svg {
	width: 100%;
	height: 100%;
}

.hero__inner {
	position: relative;
	z-index: 1;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin: 28px 0 12px;
}

.badge-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

.badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	border-radius: 999px;
	font-size: 0.85rem;
	font-weight: 600;
	background: rgba(255, 255, 255, 0.1);
	color: var(--color-paper);
	border: 1px solid rgba(255, 255, 255, 0.22);
}

.badge-row--dark .badge {
	background: #F7F7F5;
	color: var(--color-ink);
	border-color: rgba(28, 28, 28, 0.1);
}

.cta {
	text-align: center;
	background: var(--color-ink);
	color: var(--color-paper);
}

.cta h2 {
	color: var(--color-paper);
}

.cta .btn--primary {
	background: var(--color-paper);
	color: var(--color-ink);
}

.cta .btn--primary:hover {
	background: var(--color-teal);
	color: var(--color-paper);
}

/* Grid / cards */

.grid {
	display: grid;
	gap: 24px;
	margin: 32px 0;
}

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

.card {
	border: 1px solid rgba(28, 28, 28, 0.1);
	border-radius: 12px;
	padding: 28px;
}

.link-arrow {
	font-weight: 600;
}

.card--icon {
	border-top: 3px solid transparent;
}

.card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 14px;
	margin-bottom: 18px;
}

.card__icon .icon {
	width: 26px;
	height: 26px;
}

.card--teal { border-top-color: var(--color-teal); }
.card--teal .card__icon { background: rgba(9, 78, 103, 0.1); color: var(--color-teal); }

.card--green { border-top-color: var(--color-green); }
.card--green .card__icon { background: rgba(19, 77, 19, 0.1); color: var(--color-green); }

.card--maroon { border-top-color: var(--color-maroon); }
.card--maroon .card__icon { background: rgba(98, 12, 35, 0.1); color: var(--color-maroon); }

/* Services */

.service {
	display: flex;
	gap: 24px;
	align-items: flex-start;
	padding: 36px 0;
	border-bottom: 1px solid rgba(28, 28, 28, 0.08);
}

.service:last-child {
	border-bottom: none;
}

.service__icon {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 16px;
}

.service__icon .icon {
	width: 28px;
	height: 28px;
}

.service--teal .service__icon { background: rgba(9, 78, 103, 0.1); color: var(--color-teal); }
.service--green .service__icon { background: rgba(19, 77, 19, 0.1); color: var(--color-green); }
.service--maroon .service__icon { background: rgba(98, 12, 35, 0.1); color: var(--color-maroon); }

.service__body {
	flex: 1;
	min-width: 0;
}

.check-list {
	list-style: none;
	margin: 16px 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.check-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.95rem;
}

.service--teal .check-list .icon { color: var(--color-teal); }
.service--green .check-list .icon { color: var(--color-green); }
.service--maroon .check-list .icon { color: var(--color-maroon); }

.service__who {
	margin-top: 16px;
	font-size: 0.9rem;
	color: #666;
}

/* Process */

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

.process-list::before {
	content: '';
	position: absolute;
	top: 24px;
	left: 0;
	right: 0;
	height: 2px;
	background: rgba(28, 28, 28, 0.1);
	z-index: 0;
}

.process-step {
	display: flex;
	flex-direction: column;
	gap: 14px;
	position: relative;
	z-index: 1;
}

.process-step__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--color-ink);
	color: var(--color-paper);
}

.process-step__icon .icon {
	width: 22px;
	height: 22px;
}

.process-step h3 {
	font-size: 1.05rem;
	margin-bottom: 6px;
}

.process-step p {
	color: #555;
	font-size: 0.95rem;
	margin: 0;
}

/* Why grid */

.why-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 32px;
	margin-top: 32px;
}

.why-item {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.why-item__icon {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: rgba(28, 28, 28, 0.06);
	color: var(--color-ink);
}

.why-item__icon .icon {
	width: 22px;
	height: 22px;
}

.why-item h3 {
	font-size: 1.05rem;
	margin-bottom: 4px;
}

.why-item p {
	color: #555;
	font-size: 0.95rem;
	margin: 0;
}

/* FAQ */

.faq {
	margin-top: 28px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.faq-item {
	border: 1px solid rgba(28, 28, 28, 0.1);
	border-radius: 10px;
	padding: 18px 20px;
}

.faq-item summary {
	cursor: pointer;
	font-weight: 600;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary::after {
	content: '+';
	font-weight: 400;
	font-size: 1.4rem;
	color: var(--color-teal);
	flex: 0 0 auto;
}

.faq-item[open] summary::after {
	content: '\2212';
}

.faq-item p {
	margin: 14px 0 0;
	color: #555;
}

/* Cookie bar */

.cookie-bar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--color-ink);
	color: var(--color-paper);
	padding: 18px 0;
	z-index: 50;
	box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.2);
}

.cookie-bar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

.cookie-bar p {
	margin: 0;
	font-size: 0.9rem;
	color: #ddd;
	max-width: 640px;
}

.cookie-bar a {
	color: #fff;
}

.cookie-bar .btn--primary {
	background: var(--color-paper);
	color: var(--color-ink);
	flex: 0 0 auto;
	padding: 10px 22px;
}

.cookie-bar .btn--primary:hover {
	background: var(--color-teal);
	color: var(--color-paper);
}

/* Legal text */

.legal-text h2 {
	margin-top: 1.6em;
}

/* Forms */

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
	max-width: 620px;
}

.field-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.field label {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
}

.field-optional {
	font-weight: 400;
	color: #999;
}

.field input,
.field select,
.field textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid rgba(28, 28, 28, 0.2);
	border-radius: 8px;
	font-family: var(--font-body);
	font-size: 1rem;
	background: var(--color-paper);
	color: var(--color-ink);
}

.field select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231C1C1C' stroke-width='1.5' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	padding-right: 36px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
	outline: 2px solid var(--color-teal);
	outline-offset: 1px;
}

.field-error {
	color: var(--color-maroon);
	font-size: 0.9rem;
	margin: 6px 0 0;
}

.field--honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.form-notice {
	padding: 18px 20px;
	border-radius: 8px;
	background: #EEF6EE;
	color: var(--color-green);
	font-weight: 600;
}

/* Footer */

.site-footer {
	position: relative;
	overflow: hidden;
	margin-top: 48px;
	padding: 64px 0 32px;
	background: var(--color-ink);
	color: #D7DBDC;
}

.site-footer__decoration {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.site-footer__decoration svg {
	width: 100%;
	height: 100%;
}

.site-footer__inner {
	position: relative;
	z-index: 1;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
	gap: 32px;
	padding-bottom: 40px;
}

.site-footer__heading {
	color: var(--color-paper);
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 16px;
}

.site-footer__brand .logo {
	color: var(--color-paper);
}

.site-footer__brand p {
	color: #A8AEB0;
	margin: 8px 0 20px;
}

.site-footer__cta p {
	color: #A8AEB0;
	margin: 0 0 18px;
	font-size: 0.95rem;
}

.site-footer__nav {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.site-footer__nav a {
	color: #D7DBDC;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.site-footer__nav a:hover {
	color: var(--color-paper);
}

.dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	flex: 0 0 auto;
}

.dot--teal { background: #3BA6C9; }
.dot--green { background: #4CAF50; }
.dot--maroon { background: #E15C7A; }

.site-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	padding-top: 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__legal {
	color: #999;
	font-size: 0.85rem;
}

.site-footer__legal p {
	margin: 0 0 4px;
}

.site-footer__legal-nav {
	display: flex;
	gap: 20px;
}

.site-footer__legal-nav a {
	color: #999;
	font-size: 0.85rem;
}

.site-footer__legal-nav a:hover {
	color: var(--color-paper);
}

/* Responsive */

@media (max-width: 820px) {
	.grid--3 {
		grid-template-columns: 1fr;
	}

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

	.process-list::before {
		display: none;
	}

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

	.site-footer__brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 560px) {
	.field-row {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 720px) {
	.logo__full {
		display: none;
	}

	.logo__short {
		display: inline;
		font-size: 1.9rem;
	}

	.nav-toggle {
		display: flex;
	}

	.nav {
		display: none;
		flex-direction: column;
		width: 100%;
		gap: 0;
		border-top: 1px solid rgba(28, 28, 28, 0.08);
		margin-top: 16px;
	}

	.nav.is-open {
		display: flex;
	}

	.nav__link {
		padding: 14px 0;
		border-bottom: 1px solid rgba(28, 28, 28, 0.06);
	}

	.site-header__inner {
		flex-wrap: wrap;
	}

	.hero {
		padding: 56px 0 40px;
	}

	.section {
		padding: 48px 0;
	}

	.process-list {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.service {
		flex-direction: column;
		gap: 16px;
	}

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

	.site-footer__brand {
		grid-column: auto;
	}

	.site-footer__bottom {
		flex-direction: column;
		align-items: flex-start;
	}

	.cookie-bar__inner {
		flex-direction: column;
		align-items: stretch;
		text-align: center;
	}
}
