:root {
	--pmw-ink: #13201c;
	--pmw-muted: #52615c;
	--pmw-line: #d7e1dd;
	--pmw-bg: #f7faf8;
	--pmw-surface: #ffffff;
	--pmw-soft: #e9f3ee;
	--pmw-primary: #136f63;
	--pmw-primary-dark: #0b4f47;
	--pmw-accent: #d86c2f;
	--pmw-focus: #2254d1;
	--pmw-shadow: 0 18px 45px rgba(19, 32, 28, 0.09);
	--pmw-radius: 8px;
	--pmw-max: 1180px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--pmw-bg);
	color: var(--pmw-ink);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	font-size: 18px;
	line-height: 1.6;
}

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

a {
	color: var(--pmw-primary-dark);
	text-underline-offset: 0.16em;
	text-decoration-thickness: 0.08em;
}

a:hover {
	color: var(--pmw-accent);
}

:focus-visible {
	outline: 3px solid var(--pmw-focus);
	outline-offset: 4px;
}

.screen-reader-text,
.skip-link:not(:focus) {
	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;
	top: 1rem;
	left: 1rem;
	z-index: 1000;
	padding: 0.75rem 1rem;
	background: var(--pmw-ink);
	color: #ffffff;
	border-radius: var(--pmw-radius);
}

.content-wrap {
	width: min(100% - 2rem, var(--pmw-max));
	margin-inline: auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(247, 250, 248, 0.94);
	border-bottom: 1px solid var(--pmw-line);
	backdrop-filter: blur(12px);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.25rem;
	width: min(100% - 2rem, var(--pmw-max));
	min-height: 76px;
	margin-inline: auto;
}

.site-branding {
	min-width: 0;
}

.site-title {
	color: var(--pmw-ink);
	font-size: 1.15rem;
	font-weight: 800;
	text-decoration: none;
}

.site-description {
	margin: 0.1rem 0 0;
	color: var(--pmw-muted);
	font-size: 0.88rem;
}

.primary-nav ul,
.footer-nav ul {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-nav a,
.footer-nav a {
	color: var(--pmw-ink);
	font-size: 0.95rem;
	font-weight: 700;
	text-decoration: none;
}

.primary-nav a:hover,
.footer-nav a:hover {
	color: var(--pmw-primary);
}

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

.menu-toggle__bars,
.menu-toggle__bars::before,
.menu-toggle__bars::after {
	display: block;
	width: 20px;
	height: 2px;
	margin-inline: auto;
	background: var(--pmw-ink);
	content: "";
}

.menu-toggle__bars::before {
	transform: translateY(-7px);
}

.menu-toggle__bars::after {
	transform: translateY(5px);
}

.hero {
	background:
		linear-gradient(110deg, rgba(19, 32, 28, 0.88), rgba(19, 32, 28, 0.52)),
		linear-gradient(135deg, #0d332e, #176e63 55%, #f4b36b);
	color: #ffffff;
}

.page-hero {
	background:
		linear-gradient(110deg, rgba(19, 32, 28, 0.9), rgba(19, 32, 28, 0.62)),
		linear-gradient(135deg, #0d332e, #176e63 60%, #d86c2f);
	color: #ffffff;
}

.hero__content {
	min-height: 680px;
	padding-block: clamp(5rem, 12vw, 9rem);
	display: grid;
	align-content: center;
}

.page-hero--compact .content-wrap {
	padding-block: 5.5rem;
}

.page-hero .eyebrow {
	color: #ffbf81;
}

.eyebrow {
	margin: 0 0 0.8rem;
	color: var(--pmw-accent);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.hero .eyebrow {
	color: #ffbf81;
}

h1,
h2,
h3 {
	margin: 0;
	line-height: 1.08;
	letter-spacing: 0;
}

h1 {
	max-width: 820px;
	font-size: 5rem;
}

h2 {
	max-width: 820px;
	font-size: 3.2rem;
}

h3 {
	font-size: 1.28rem;
}

.hero__lede {
	max-width: 720px;
	margin: 1.3rem 0 0;
	color: rgba(255, 255, 255, 0.88);
	font-size: 1.3rem;
}

.hero__actions,
.cta-panel {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	flex-wrap: wrap;
	margin-top: 2rem;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0.72rem 1.05rem;
	border: 2px solid transparent;
	border-radius: var(--pmw-radius);
	font-size: 0.95rem;
	font-weight: 800;
	text-decoration: none;
}

.button--primary {
	background: var(--pmw-accent);
	color: #ffffff;
}

.button--primary:hover {
	background: #b95220;
	color: #ffffff;
}

.button--secondary {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.58);
	color: #ffffff;
}

.button--secondary:hover {
	background: #ffffff;
	color: var(--pmw-ink);
}

.section {
	padding-block: clamp(4rem, 8vw, 7rem);
}

.section--muted {
	background: var(--pmw-soft);
	border-block: 1px solid var(--pmw-line);
}

.section__intro {
	display: grid;
	gap: 0.7rem;
	margin-bottom: 2rem;
}

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

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

.case-study-list,
.faq-list {
	display: grid;
	gap: 1rem;
}

.service-card,
.detail-item,
.contact-panel,
.feature-card,
.pricing-card,
.case-study-card,
.faq-item,
.post-card,
.entry,
.cta-panel {
	background: var(--pmw-surface);
	border: 1px solid var(--pmw-line);
	border-radius: var(--pmw-radius);
	box-shadow: var(--pmw-shadow);
}

.service-card {
	padding: clamp(1.1rem, 2.5vw, 1.6rem);
}

.feature-card,
.pricing-card,
.case-study-card,
.faq-item {
	padding: clamp(1.2rem, 3vw, 1.8rem);
}

.feature-card h2,
.pricing-card h2,
.case-study-card h2 {
	font-size: 1.65rem;
}

.pricing-card--featured {
	border-color: var(--pmw-primary);
	box-shadow: 0 18px 45px rgba(19, 111, 99, 0.18);
}

.faq-item summary {
	cursor: pointer;
	color: var(--pmw-ink);
	font-size: 1.08rem;
	font-weight: 800;
}

.faq-item p {
	margin-bottom: 0;
}

.detail-list {
	display: grid;
	gap: 1rem;
}

.detail-item {
	display: grid;
	grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
	gap: 1.25rem;
	align-items: start;
	padding: clamp(1.2rem, 3vw, 1.8rem);
}

.detail-item h2 {
	font-size: 1.65rem;
}

.service-card p,
.detail-item p,
.contact-panel p,
.feature-card p,
.pricing-card p,
.case-study-card p,
.faq-item p,
.text-stack p,
.entry p,
.post-card p,
.site-footer p {
	color: var(--pmw-muted);
}

.split {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
	gap: clamp(2rem, 6vw, 5rem);
	align-items: start;
}

.steps {
	display: grid;
	gap: 0.9rem;
	padding: 0;
	margin: 0;
	list-style: none;
	counter-reset: steps;
}

.steps li {
	position: relative;
	padding: 1rem 1rem 1rem 3.6rem;
	background: var(--pmw-surface);
	border: 1px solid var(--pmw-line);
	border-radius: var(--pmw-radius);
	counter-increment: steps;
}

.steps li::before {
	position: absolute;
	top: 1rem;
	left: 1rem;
	display: grid;
	place-items: center;
	width: 1.8rem;
	height: 1.8rem;
	background: var(--pmw-primary);
	color: #ffffff;
	border-radius: 50%;
	font-size: 0.9rem;
	font-weight: 800;
	content: counter(steps);
}

.steps strong {
	display: block;
	color: var(--pmw-ink);
}

.cta-panel {
	justify-content: space-between;
	padding: clamp(1.4rem, 4vw, 2rem);
	margin-top: 0;
}

.cta-panel h2 {
	font-size: 2.5rem;
}

.entry {
	margin-block: clamp(2rem, 6vw, 5rem);
	padding: clamp(1.25rem, 4vw, 3rem);
}

.entry-header {
	margin-bottom: 1.5rem;
}

.entry-meta {
	margin: 0 0 0.35rem;
	color: var(--pmw-muted);
	font-size: 0.92rem;
}

.entry-content > * {
	max-width: 760px;
}

.entry-content > .alignwide {
	max-width: 100%;
}

.contact-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
	gap: 1rem;
	align-items: start;
}

.audit-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
	gap: 1rem;
	align-items: start;
}

.audit-copy {
	position: sticky;
	top: 104px;
}

.audit-copy h2 {
	font-size: 2.5rem;
}

.audit-copy p {
	color: var(--pmw-muted);
}

.contact-panel {
	padding: clamp(1.2rem, 3vw, 1.8rem);
}

.contact-panel--main {
	min-height: 320px;
}

.contact-panel h2 {
	font-size: 1.65rem;
}

.check-list {
	display: grid;
	gap: 0.65rem;
	padding: 0;
	margin: 1rem 0 0;
	list-style: none;
}

.check-list li {
	position: relative;
	padding-left: 1.7rem;
	color: var(--pmw-muted);
}

.check-list li::before {
	position: absolute;
	top: 0.55em;
	left: 0;
	width: 0.7rem;
	height: 0.7rem;
	background: var(--pmw-primary);
	border-radius: 50%;
	content: "";
}

.archive-layout {
	padding-block: clamp(2rem, 6vw, 5rem);
}

.page-header {
	margin-bottom: 2rem;
}

.post-list {
	display: grid;
	gap: 1rem;
}

.post-card {
	display: grid;
	grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
	overflow: hidden;
}

.post-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.post-card__body {
	padding: 1.25rem;
}

.post-card h2 {
	font-size: 1.8rem;
}

.post-card h2 a {
	color: var(--pmw-ink);
	text-decoration: none;
}

.nav-links {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
	margin-top: 2rem;
}

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	min-height: 42px;
	padding: 0.3rem 0.75rem;
	background: var(--pmw-surface);
	border: 1px solid var(--pmw-line);
	border-radius: var(--pmw-radius);
	text-decoration: none;
}

.page-numbers.current {
	background: var(--pmw-primary);
	color: #ffffff;
}

.search-form {
	display: flex;
	gap: 0.6rem;
	flex-wrap: wrap;
}

.audit-form {
	padding: clamp(1.2rem, 3vw, 1.8rem);
	background: var(--pmw-surface);
	border: 1px solid var(--pmw-line);
	border-radius: var(--pmw-radius);
	box-shadow: var(--pmw-shadow);
}

.form-field {
	display: grid;
	gap: 0.35rem;
	margin: 0 0 1rem;
}

.form-field label {
	color: var(--pmw-ink);
	font-size: 0.95rem;
	font-weight: 800;
}

.form-field input,
.form-field textarea {
	width: 100%;
	padding: 0.8rem 0.9rem;
	color: var(--pmw-ink);
	background: #ffffff;
	border: 1px solid var(--pmw-line);
	border-radius: var(--pmw-radius);
	font: inherit;
}

.form-field textarea {
	resize: vertical;
}

.form-notice {
	margin: 0 0 1rem;
	padding: 0.8rem 0.9rem;
	background: var(--pmw-soft);
	border: 1px solid var(--pmw-primary);
	border-radius: var(--pmw-radius);
	color: var(--pmw-primary-dark);
	font-weight: 800;
}

.form-notice--error {
	background: #fff2ec;
	border-color: var(--pmw-accent);
	color: #8f350f;
}

.search-field {
	min-height: 48px;
	padding: 0.7rem 0.85rem;
	border: 1px solid var(--pmw-line);
	border-radius: var(--pmw-radius);
	font: inherit;
}

.search-submit {
	min-height: 48px;
	padding: 0.7rem 1rem;
	background: var(--pmw-primary);
	color: #ffffff;
	border: 0;
	border-radius: var(--pmw-radius);
	font: inherit;
	font-weight: 800;
}

.site-footer {
	background: var(--pmw-ink);
	color: #ffffff;
}

.site-footer__inner {
	display: grid;
	grid-template-columns: 1.2fr auto;
	gap: 1.5rem;
	width: min(100% - 2rem, var(--pmw-max));
	margin-inline: auto;
	padding-block: 2rem;
}

.site-footer p,
.site-footer a {
	color: rgba(255, 255, 255, 0.82);
}

.footer-brand {
	margin: 0;
	color: #ffffff;
	font-weight: 800;
}

.footer-meta {
	grid-column: 1 / -1;
	margin: 0;
	font-size: 0.9rem;
}

@media (max-width: 820px) {
	h1 {
		font-size: 3.4rem;
	}

	h2 {
		font-size: 2.35rem;
	}

	.hero__lede {
		font-size: 1.18rem;
	}

	.cta-panel h2 {
		font-size: 2rem;
	}

	.site-header__inner {
		flex-wrap: wrap;
		padding-block: 0.75rem;
	}

	.menu-toggle {
		display: inline-grid;
		place-items: center;
		margin-left: auto;
	}

	.primary-nav {
		display: none;
		width: 100%;
	}

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

	.primary-nav ul {
		display: grid;
		gap: 0.25rem;
		padding-block: 0.8rem;
	}

	.primary-nav a {
		display: block;
		padding: 0.65rem 0;
	}

	.hero__content {
		min-height: 560px;
	}

	.service-grid,
	.feature-columns,
	.pricing-grid,
	.detail-item,
	.contact-layout,
	.audit-layout,
	.split,
	.post-card,
	.site-footer__inner {
		grid-template-columns: 1fr;
	}

	.audit-copy {
		position: static;
	}

	.post-card__media img {
		aspect-ratio: 16 / 9;
	}
}

@media (max-width: 520px) {
	body {
		font-size: 16px;
	}

	h1 {
		font-size: 2.55rem;
	}

	h2 {
		font-size: 2rem;
	}

	.content-wrap,
	.site-header__inner,
	.site-footer__inner {
		width: min(100% - 1.25rem, var(--pmw-max));
	}

	.hero__actions,
	.cta-panel {
		align-items: stretch;
	}

	.button {
		width: 100%;
	}
}
