/*
 * PremiumNW theme stylesheet. Plain CSS only (no Tailwind) — every block's
 * markup in blocks/<name>/render.php pairs with the selectors below. Colors
 * and fonts alias the WP theme.json presets so Site Editor global-style
 * edits still propagate; layout/spacing values are authored directly.
 */

:root {
	--pnw-green-dark: var(--wp--preset--color--green-dark, #153629);
	--pnw-green-dark-2: var(--wp--preset--color--green-dark-2, #143528);
	--pnw-green-mid: var(--wp--preset--color--primary, #256a4d);
	--pnw-green-accent: var(--wp--preset--color--accent, #3e9e74);
	--pnw-green-soft: var(--wp--preset--color--secondary, #86c4a2);
	--pnw-green-tint: rgba(229, 240, 229, 0.7);
	--pnw-ink: var(--wp--preset--color--text, #172019);
	--pnw-ink-muted: var(--wp--preset--color--ink-muted, #6d6d6d);
	--pnw-cream: var(--wp--preset--color--cream, #fcfbf7);
	--pnw-stat-bg: var(--wp--preset--color--stat-bg, #f4f3ee);
	--pnw-border-soft: rgba(23, 32, 25, 0.12);
	--pnw-border-soft2: rgba(23, 32, 25, 0.2);
	--pnw-font-serif: var(--wp--preset--font-family--serif, 'Fraunces', serif);
	--pnw-font-sans: var(--wp--preset--font-family--primary, 'Hanken Grotesk', sans-serif);
}

/* ===== Reset ===== */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html {
	scroll-behavior: smooth;
}
body {
	font-family: var(--pnw-font-sans);
	color: var(--pnw-ink);
	background: #fff;
	-webkit-font-smoothing: antialiased;
}
img {
	display: block;
	max-width: 100%;
}
a {
	color: inherit;
	text-decoration: none;
}
button {
	font-family: inherit;
}

/* Neutralize WP's global-styles flow-layout gap (24px block-start margin on
   every direct child of a `layout:"default"` group, e.g. the <main> wrapper
   in templates/index.html) — our blocks manage their own spacing directly. */
:root :where(.is-layout-flow) > * {
	margin-block-start: 0;
	margin-block-end: 0;
}

/* ===== Shared: serif / eyebrow / buttons ===== */
.pnw-serif {
	font-family: var(--pnw-font-serif);
	font-variation-settings: 'SOFT' 0, 'WONK' 1;
}
.pnw-eyebrow {
	display: flex;
	align-items: center;
	gap: 9px;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 1.98px;
	text-transform: uppercase;
	color: var(--pnw-accent, var(--pnw-green-mid));
}
.pnw-divider {
	width: 19.5px;
	height: 0.75px;
	background: var(--pnw-accent, var(--pnw-green-accent));
	flex-shrink: 0;
}
.pnw-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	height: 40px;
	padding: 12px 20px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 14px;
	font-family: var(--pnw-font-sans);
	cursor: pointer;
	border: none;
	white-space: nowrap;
	transition: opacity 0.15s ease, background 0.15s ease;
}
.pnw-arrow {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}
.pnw-btn-primary {
	background: #fff;
	color: #111;
}
.pnw-btn-primary:hover {
	opacity: 0.9;
}
.pnw-chero__col .pnw-btn-primary {
	background: #111;
	color: #fff;
}
.pnw-btn-outline {
	background: transparent;
	color: var(--pnw-ink);
	border: 1px solid var(--pnw-border-soft2);
}
.pnw-btn-outline:hover {
	background: rgba(23, 32, 25, 0.05);
}
.pnw-btn-block {
	width: 100%;
}

/* ===== Top strip + nav (site-header block) ===== */
.pnw-top-strip {
	background: #F0E6DA;
	color: #172019;
	font-size: 14px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	backdrop-filter: blur(5px);
	border-bottom: 0.75px solid var(--pnw-border-soft);
}
.pnw-top-strip__dot {
	color: var(--pnw-accent, var(--pnw-green-soft));
}
.pnw-top-strip__phone {
	color: var(--pnw-accent, #6D6D6D);
}

.pnw-nav {
	position: relative;
	z-index: 50;
	background: rgba(252, 251, 247, 0.8);
	backdrop-filter: blur(8px);
	border-bottom: 0.75px solid var(--pnw-border-soft);
	box-shadow: 0 0.75px 1.5px rgba(23, 32, 25, 0.05);
}
/* JS-driven pin (see initStickyNav in index.js) — used instead of plain
   `position: sticky` since sticky was unreliable across test environments;
   fixed positioning + a height-matched placeholder avoids that entirely. */
.pnw-nav-placeholder {
	display: none;
}
.pnw-nav-placeholder.is-visible {
	display: block;
}
.pnw-nav__inner {
	max-width: 1440px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	padding: 12px 80px;
}
.pnw-nav__logo {
	grid-column: 1;
	justify-self: start;
}
.pnw-nav__logo img {
	height: 52px;
	width: auto;
}
.pnw-nav__links {
	grid-column: 2;
	display: flex;
	gap: 28px;
	justify-content: center;
}
.pnw-nav__links a {
	font-size: 14px;
	color: #3e433e;
}
.pnw-nav__links a:hover {
	color: var(--pnw-green-mid);
}
.pnw-nav__dropdown {
	position: relative;
}
.pnw-nav__dropdown-toggle {
	display: flex;
	align-items: center;
	gap: 4px;
	background: none;
	border: none;
	padding: 0;
	font: inherit;
	font-size: 14px;
	color: #3e433e;
	cursor: pointer;
}
.pnw-nav__dropdown-toggle:hover {
	color: var(--pnw-green-mid);
}
.pnw-nav__dropdown-caret {
	width: 14px;
	height: 14px;
	transition: transform 0.2s ease;
}
.pnw-nav__dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	margin-top: 12px;
	min-width: 200px;
	background: #fff;
	border: 1px solid var(--pnw-border-soft);
	border-radius: 8px;
	box-shadow: 0 12px 30px rgba(23, 32, 25, 0.12);
	padding: 8px;
	display: flex;
	flex-direction: column;
	opacity: 0;
	visibility: hidden;
	transform: translateY(4px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.pnw-nav__dropdown:hover .pnw-nav__dropdown-menu,
.pnw-nav__dropdown:focus-within .pnw-nav__dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.pnw-nav__dropdown:hover .pnw-nav__dropdown-caret,
.pnw-nav__dropdown:focus-within .pnw-nav__dropdown-caret {
	transform: rotate(180deg);
}
.pnw-nav__dropdown-menu a {
	padding: 8px 10px;
	font-size: 14px;
	border-radius: 6px;
	color: #3e433e;
}
.pnw-nav__dropdown-menu a:hover {
	background: rgba(37, 106, 77, 0.08);
	color: var(--pnw-green-mid);
}
.pnw-nav-mobile-services {
	display: flex;
	flex-direction: column;
}
.pnw-nav-mobile-services__label {
	display: block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: var(--pnw-ink-muted);
	padding: 16px 0 4px;
}
.pnw-nav__right {
	grid-column: 3;
	display: flex;
	align-items: center;
	gap: 16px;
	justify-self: end;
}
.pnw-nav__phone {
	display: flex;
	align-items: center;
	gap: 6px;
	font-weight: 600;
	font-size: 14px;
}
.pnw-nav__phone img {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
}
.pnw-nav-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
	color: var(--pnw-ink);
}
.pnw-nav-toggle svg {
	width: 26px;
	height: 26px;
}
.pnw-nav-toggle__close {
	display: none;
}
.pnw-nav-toggle[aria-expanded='true'] .pnw-nav-toggle__burger {
	display: none;
}
.pnw-nav-toggle[aria-expanded='true'] .pnw-nav-toggle__close {
	display: block;
}
.pnw-nav-mobile-panel {
	display: none;
	flex-direction: column;
	gap: 4px;
	padding: 8px 40px 20px;
	border-top: 1px solid var(--pnw-border-soft);
	background: var(--pnw-cream);
}
.pnw-nav-mobile-panel a {
	padding: 12px 0;
	font-size: 15px;
	font-weight: 500;
	text-align: center;
	border-bottom: 1px solid var(--pnw-border-soft);
}
.pnw-nav-mobile-panel.is-open {
	display: flex;
	text-align: center;
}
.pnw-nav-mobile-panel__phone {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 0 4px;
	font-weight: 600;
	font-size: 15px;
	border-bottom: none !important;
}
.pnw-nav-mobile-panel__phone img {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}
.pnw-nav-mobile-panel .pnw-btn {
	margin-top: 8px;
	justify-content: center;
}
.pnw-nav-overlay {
	position: fixed;
	inset: 0;
	background: rgba(23, 32, 25, 0.5);
	z-index: 40;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease, visibility 0.2s ease;
}
.pnw-nav-overlay.is-visible {
	opacity: 1;
	visibility: visible;
}
body.pnw-scroll-lock {
	overflow: hidden;
}

/* ===== Hero ===== */
.pnw-hero {
	position: relative;
	min-height: 820px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	background: #fff;
}
.pnw-hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0.4;
}
.pnw-hero__content {
	position: relative;
	z-index: 2;
	max-width: 1440px;
	margin: 0 auto;
	padding-top: 150px;
	text-align: center;
}
.pnw-hero__title {
	font-size: clamp(40px, 7vw, 72px);
	line-height: 1;
	letter-spacing: -2.16px;
	font-weight: 400; 
	color: #111;
}
.pnw-hero__title-accent {
	font-style: italic;
	color: var(--pnw-accent, #111111);
	font-weight: 400;
}
.pnw-hero__sub {
	max-width: 509px;
	margin: 24px auto 0;
	color: var(--pnw-ink-muted);
	font-size: 14px;
	line-height: 1.32;
}
.pnw-hero__ctas {
	display: flex;
	gap: 12px;
	justify-content: center;
	margin: 32px;
}
.pnw-hero__gallery-wrap {
	position: relative;
	z-index: 2;
	margin-top: 70px;
	display: flex;
	justify-content: center;
	overflow: visible;
}
.pnw-hero__gallery-viewport {
	width: 1280px;
	max-width: 100%;
	/* .is-center enlarges the active card purely via `transform: scale()` (see
	   .pnw-gcard.is-center) so its layout box never changes — but that means
	   this viewport's own intrinsic height doesn't account for the visual
	   overflow either, and .pnw-hero's `overflow: hidden` would clip it.
	   Reserving the scaled-up height here keeps the enlarged card fully visible. */
	min-height: 313px;
	overflow: visible;
	position: relative;
}

/* Hero coverflow gallery — JS drives the transform + is-center toggle on
   the front end; sizing/opacity transitions live here since they animate
   several properties together. Server-rendered as a static row so the
   block editor (which can't reach this front-end JS) still shows content. */
.pnw-gallery-track {
	display: flex;
	gap: 20px;
	align-items: center;
	justify-content: center;
	transition: transform 1.1s cubic-bezier(0.45, 0, 0.2, 1);
	will-change: transform;
}
.pnw-gcard {
	display: block;
	position: relative;
	width: 358px;
	height: 213px;
	border-radius: 6px;
	overflow: hidden;
	flex-shrink: 0;
	background-size: cover;
	background-position: center;
	transition: transform 1.1s cubic-bezier(0.45, 0, 0.2, 1), opacity 1.1s ease;
	opacity: 0.55;
	will-change: transform;
}
.pnw-gcard.is-center {
	transform: scale(1.469);
	z-index: 5;
	opacity: 1;
}
.pnw-gcard-caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 16px 16px 12px;
	font-family: 'Fraunces' ;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.55));
	color: #fff;
	font-size: 16px;
}
.pnw-gcard-caption svg {
	box-sizing: border-box;
	width: 32px;
	height: 32px;
	padding: 5px 6px;
	border-radius: 9999px;
	background: rgba(255, 255, 255, 0.1);
	flex-shrink: 0;
}

/* ===== Construction Hero ===== */
.pnw-chero {
	position: relative;
	overflow: hidden;
	background: var(--pnw-stat-bg);
}
.pnw-chero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0.16;
}
.pnw-chero__inner {
	position: relative;
	z-index: 1;
	max-width: 1440px;
	margin: 0 auto;
	padding: 96px 80px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
	gap: 64px;
	align-items: center;
}
.pnw-chero__title {
	line-height: 1;
	letter-spacing: -0.02em;
	font-weight: 500;
	display: flex;
	flex-direction: column;
	color: var(--pnw-accent, var(--pnw-ink));
}
.pnw-chero__title-caps {
	text-transform: uppercase;
	font-size: clamp(40px, 6vw, 72px);
}
.pnw-chero__title-italic {
	font-style: italic;
	font-weight: 600;
	font-size: clamp(38px, 5.6vw, 64px);
	max-width: 15ch;
	color: var(--pnw-accent, var(--pnw-green-accent));
}
.pnw-chero__lede {
	margin-top: 24px;
	max-width: 100%;
	color: var(--pnw-ink-muted);
	font-size: 16px;
	line-height: 1.6;
}
.pnw-chero__ctas {
	display: flex;
	flex-wrap: nowrap;
	gap: 12px;
	margin-top: 32px;
}

.pnw-chero__stats {
	display: flex;
	gap: 48px;
	flex-wrap: wrap;
	margin-top: 48px;
}
.pnw-chero__stat-value {
	display: block;
	font-size: 20px;
	font-weight: 500;
	color: var(--pnw-ink);
}
.pnw-chero__stat-label {
	display: block;
	margin-top: 2px;
	font-size: 14px;
	color: var(--pnw-ink-muted);
}
.pnw-chero__license {
	display: inline-block;
	margin-bottom: 16px;
	padding: 6px 10px;
	font-weight: 700;
	background: #F0E6DA;
	border-radius: 8px;
	font-size: 12px;
	color: var(--pnw-accent, var(--pnw-green-mid));
}
.pnw-chero__frame {
	position: relative;
	border-radius: 22px;
	overflow: hidden;
	aspect-ratio: 66 / 54;
	background: linear-gradient(155deg, var(--pnw-green-soft), var(--pnw-green-mid));
	background-size: cover;
	background-position: center;
	box-shadow: 0 34px 70px rgba(23, 32, 25, 0.18);
}

/* ===== Stats bar ===== */
.pnw-stats {
	background: #F0E6DA;
}
.pnw-stats__inner {
	max-width: 1440px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 80px;
	flex-wrap: wrap;
	gap: 16px;
}
.pnw-stats__item {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 14px;
	font-weight: 500;
}
.pnw-stats__icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

/* ===== About ===== */
.pnw-about {
	max-width: 1440px;
	margin: 0 auto;
	padding: 100px 80px;
	display: grid;
	grid-template-columns: 522px 1fr;
	-moz-column-gap: 128px;
	     column-gap: 128px;
	row-gap: 0;
	align-items: start;
}
.pnw-about__eyebrow {
	grid-column: 1 / -1;
	margin-bottom: 22px;
}
.pnw-about__img {
	width: 100%;
	height: 421px;
	border-radius: 8px;
	background-size: cover;
	background-position: center;
}
.pnw-about__text {
	padding-top: 0;
}
.pnw-about__copy {
	font-size: 32px;
	line-height: 1.3;
	letter-spacing: -0.32px;
}
.pnw-about__word {
	color: rgba(23, 32, 25, 0.4);
	transition: color 0.4s ease-out;
}
.pnw-about__word.is-revealed {
	color: #172019;
}
.pnw-about__copy-muted {
	color: rgba(23, 32, 25, 0.4);
}
.pnw-about__stats {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 42px;
	gap: 24px;
	flex-wrap: wrap;
}
.pnw-about__stat {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 130px;
}
.pnw-about__stat-num {
	font-size: 64px;
	line-height: 1.24;
	font-weight: 400;
}
.pnw-about__stat-label {
	font-size: 14px;
	color: var(--pnw-ink-muted);
}
.pnw-about__sep {
	width: 1px;
	align-self: stretch;
	background: rgba(23, 32, 25, 0.15);
}

/* ===== Services ===== */
.pnw-services {
	max-width: 1440px;
	margin: 0 auto;
	padding: 100px 80px;
}
.pnw-services__head {
	max-width: 630px;
	margin: 0 auto;
	text-align: left;
}
.pnw-services__head .pnw-eyebrow {
	justify-content: center;
}
.pnw-services__head h2 {
	font-size: 40px;
	letter-spacing: -0.4px;
	margin-top: 12px;
	font-weight:400;
}
.pnw-services__head p {
	font-size: 14px;
	color: var(--pnw-ink-muted);
	line-height: 1.4;
	margin-top: 12px;
}
.pnw-services__list {
	margin-top: 64px;
	display: flex;
	flex-direction: column;
}
.pnw-service-row {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 72px 24px 28px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	gap: 24px;
	border-radius: 8px;
	background: rgba(229, 240, 229, 0);
	transition: background 0.3s ease;
	z-index: 0;
}
.pnw-service-row:hover {
	background: #F1E6E6;
	z-index: 5;
}
.pnw-service-row__text {
	flex: 1 1 0%;
	min-width: 0;
}
.pnw-service-row__text h3 {
	font-size: 32px;
	letter-spacing: -0.32px;
	font-weight: 400;
}
.pnw-service-row__text p {
	font-size: 14px;
	color: var(--pnw-ink-muted);
	margin-top: 8px;
	max-width: 700px;
	line-height: 1.32;
}
/* Desktop: thumbnail is absolutely positioned and only revealed on hover.
   Below 1024px it switches to always-visible, stacked above the text —
   see the .pnw-service-thumb override in the 1024px breakpoint. */
.pnw-service-thumb {
	position: absolute;
	right: 120px;
	top: 50%;
	width: 320px;
	height: 240px;
	border-radius: 8px;
	overflow: hidden;
	transform: translateY(-50%) scale(0.85);
	opacity: 0;
	transition: opacity 0.3s ease, transform 0.3s ease;
	pointer-events: none;
	box-shadow: 0 20px 40px rgba(23, 32, 25, 0.18);
}
.pnw-service-thumb img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}
.pnw-service-row:hover .pnw-service-thumb {
	opacity: 1;
	transform: translateY(-50%) scale(1);
}
.pnw-service-arrow {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 1;
}
.pnw-service-arrow img {
	width: 27px;
	height: 27px;
}

/* ===== Projects (dark) ===== */
.pnw-projects {
	background: #fafafa;
	color: #172019;
	position: relative;
	overflow: hidden;
}
.pnw-projects__inner {
	max-width: 1440px;
	margin: 0 auto;
	padding: 100px 80px;
}
.pnw-projects__head {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 40px;
	flex-wrap: wrap;
	margin-bottom: 64px;
}
.pnw-projects__head .pnw-eyebrow {
	color: #172019;
}
.pnw-projects__head .pnw-divider {
	background: var(--pnw-accent, var(--pnw-green-accent));
}
.pnw-projects__title {
	font-size: 40px;
	line-height: 1.3;
	letter-spacing: -0.4px;
	max-width: 584px; 
	font-weight:400;
	margin-top: 16px;
}
.pnw-projects__tags {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: flex-start;
}
.pnw-projects__tags a {
	font-size: 18px;
	color: rgba(23, 32, 25, 0.32);
	font-family: Fraunces;
}
.pnw-projects__tags a.is-active {
	color: #172019;
	font-family: Fraunces;
}
.pnw-projects__tags a:hover {
	color: #172019;
}
.pnw-proj-row {
	display: flex;
	align-items: end;
	gap: 40px;
}
.pnw-proj-info {
	width: 260px;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
}
.pnw-proj-caption {
	display: flex;
	flex-direction: column;
	padding-bottom:15px;
	gap: 8px;
}
.pnw-proj-caption h4 {
	font-size: 24px;
	font-weight: 400;
	letter-spacing: -0.36px;
}
.pnw-proj-caption span {
	font-size: 16px;
	color: rgba(23, 32, 25, 0.6);
}
.pnw-proj-image-wrap {
	flex: 1;
	min-width: 0;
	position: relative;
}

.pnw-proj-scroll {
	overflow: hidden;
	position: relative;
}
.pnw-proj-track {
	display: flex;
	gap: 20px;
	width: -moz-max-content;
	width: max-content;
}
.pnw-proj-card {
	width: 627px;
	height: 348px;
	border-radius: 8px;
	flex-shrink: 0;
	background-size: cover;
	background-position: center;
}
.pnw-proj-controls {
	display: flex;
	gap: 12px;
	justify-content: flex-start;
	margin-top: 24px;
}
.pnw-proj-btn {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid rgba(23, 32, 25, 0.15);
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: opacity 0.15s ease;
}
.pnw-proj-btn .pnw-arrow {
	color: #172019;
}
.pnw-proj-btn:hover {
	opacity: 0.7;
}

/* ===== Process ===== */
.pnw-process {
	background: #FBF7F4;
	position: relative;
}
.pnw-process__inner {
	max-width: 1440px;
	margin: 0 auto;
	padding: 100px 80px 80px;
}
.pnw-process__head {
	max-width: 630px;
}
.pnw-process__head h2 {
	font-size: 40px;
	font-weight:400;
	letter-spacing: -0.4px;
	margin-top: 12px;
}
.pnw-process-track {
	position: relative;
	margin-top: 60px;
	display: flex;
	justify-content: space-between;
	height: 360px;
}
.pnw-process-line {
	position: absolute;
	top: 50%;
	left: 0;
	/* Stops at the last step's dot (each step is 244px wide) instead of
	   running the line's full width, so it doesn't continue under the
	   final card. */
	right: 244px;
	height: 1px;
	background: rgba(23, 32, 25, 0.2);
	transform: translateY(-50%);
}
.pnw-process-step {
	width: 244px;
	position: relative;
	height: 100%;
}
.pnw-dot {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--pnw-accent, var(--pnw-green-accent));
	border: 5px solid var(--pnw-stat-bg);
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0, -50%);
	z-index: 1;
}
.pnw-process-card {
	background: #fff;
	border: 1px solid var(--pnw-border-soft);
	border-radius: 8px;
	padding: 24px;
	position: absolute;
	left: 0;
	width: 244px;
}
.pnw-process-card .pnw-step-num {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 1px;
	color: var(--pnw-accent, var(--pnw-green-mid));
}
.pnw-process-card h3 {
	font-size: 18px;
	font-weight: 400;
	letter-spacing: -0.289px;
	margin: 8px 0;
}
.pnw-process-card p {
	font-size: 14px;
	color: var(--pnw-ink-muted);
	line-height: 1.32;
}
/* steps 1,3,5 sit above the line; steps 2,4 sit below it, matching the Figma zigzag */
.pnw-process-step:nth-child(even) .pnw-process-card {
	bottom: calc(50% + 5px);
}
.pnw-process-step:nth-child(odd) .pnw-process-card {
	top: calc(50% + 5px);
}

/* ===== What We Do (posts-driven index + card stack) ===== */
.pnw-wwd {
	max-width: 1440px;
	margin: 0 auto;
	padding: 100px 80px;
	display: grid;
	grid-template-columns: 5fr 6fr;
	gap: 100px;
	min-width: 0;
}
.pnw-wwd__intro {
	position: sticky;
	top: 24px;
	align-self: start;
}
.pnw-wwd__eyebrow {
	display: flex;
	align-items: center;
	gap: 14px;
	color: var(--pnw-accent, var(--pnw-green-mid));
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 1.98px;
	text-transform: uppercase;
}
.pnw-wwd__eyebrow::before {
	content: '';
	width: 19.5px;
	height: 0.75px;
	background: var(--pnw-accent, var(--pnw-green-accent));
	flex-shrink: 0;
}
.pnw-wwd__title {
	margin-top: 12px;
	max-width: 540px;
	font-weight: 400;
	font-size: clamp(32px, 3.6vw, 44px);
	line-height: 1.15;
	letter-spacing: -0.32px;
	color: var(--pnw-ink);
}
.pnw-wwd__index {
	list-style: none;
	margin-top: 44px;
}
.pnw-wwd__index li {
	display: flex;
	align-items: baseline;
	gap: 26px;
	padding: 19px 4px;
	font-family: 'Fraunces';
	border-top: 1px solid var(--pnw-border-soft);
	transition: padding-left 0.25s ease;
	cursor: pointer;
}
.pnw-wwd__index li:hover,
.pnw-wwd__index li.is-active {
	padding-left: 12px;
}
.pnw-wwd__num {
	font-size: 14px;
	color: var(--pnw-accent, var(--pnw-green-mid));
	min-width: 20px;
}
.pnw-wwd__name {
	font-size: 15px;
	color: var(--pnw-ink-muted);
	transition: color 0.2s ease;
}
.pnw-wwd__index li:hover .pnw-wwd__name,
.pnw-wwd__index li.is-active .pnw-wwd__name {
	color: var(--pnw-ink);
}
.pnw-wwd__cards {
	display: grid;
	gap: 26px;
	min-width: 0;
}
.pnw-wwd__card {
	position: relative;
	width: 520px;
	max-width: 100%;
	min-width: 0;
	justify-self: right;
	background: #fff;
	border: 1px solid var(--pnw-border-soft);
	border-radius: 8px;
	overflow: hidden;
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.pnw-wwd__card-link {
	position: absolute;
	inset: 0;
	z-index: 1;
}
.pnw-wwd__card:hover {
	box-shadow: 0 18px 40px rgba(23, 32, 25, 0.12);
	transform: translateY(-3px);
}
.pnw-wwd__media {
	overflow: hidden;
	background: var(--pnw-stat-bg);
}
.pnw-wwd__media img {
	display: block;
	width: 100%;
	height: 220px;
	-o-object-fit: cover;
	   object-fit: cover;
	transition: transform 0.5s ease;
}
.pnw-wwd__card:hover .pnw-wwd__media img {
	transform: scale(1.04);
}
.pnw-wwd__body {
	padding: 26px 28px 30px;
}
.pnw-wwd__head {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 16px;
}
.pnw-wwd__head h3 {
	font-weight: 400;
	font-size: 24px;
	line-height: 1.1;
	color: var(--pnw-ink);
}
.pnw-wwd__no {
	font-size: 13px;
	color: var(--pnw-ink-muted);
	letter-spacing: 0.5px;
	flex: none;
}
.pnw-wwd__desc {
	margin-top: 14px;
	max-width: 46ch;
	font-size: 14px;
	line-height: 1.62;
	color: var(--pnw-ink-muted);
}
.pnw-wwd__link {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-top: 20px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.2px;
	color: var(--pnw-accent, var(--pnw-green-mid));
}
.pnw-wwd__link .pnw-arrow {
	transition: transform 0.25s ease;
}
.pnw-wwd__link:hover .pnw-arrow {
	transform: translateX(5px);
}

.pnw-wwd__card .pnw-wwd__body,
.pnw-wwd__card .pnw-wwd__head h3,
.pnw-wwd__card .pnw-wwd__no,
.pnw-wwd__card .pnw-wwd__desc,
.pnw-wwd__card .pnw-wwd__link {
	transition: background 0.3s ease, color 0.3s ease;
}
.pnw-wwd__card:hover .pnw-wwd__body {
	background: var(--pnw-accent, var(--pnw-green-dark));
}
.pnw-wwd__card:hover .pnw-wwd__head h3 {
	color: #fff;
}
.pnw-wwd__card:hover .pnw-wwd__no {
	color: rgba(255, 255, 255, 0.65);
}
.pnw-wwd__card:hover .pnw-wwd__desc {
	color: rgba(255, 255, 255, 0.78);
}
.pnw-wwd__card:hover .pnw-wwd__link {
	color: #fff;
}

/* ===== Testimonials ===== */
.pnw-testimonials {
	max-width: 1440px;
	margin: 0 auto;
	padding: 100px 80px;
}
.pnw-testimonials__head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 24px;
	flex-wrap: wrap;
	margin-bottom: 72px;
}
.pnw-testimonials__title {
	font-size: 32px;
	letter-spacing: -0.32px;
	margin-top: 12px;
	max-width: 522px;
	line-height: 1.3;
	font-weight: 400;
}
.pnw-test-nav {
	display: flex;
	gap: 12px;
}
.pnw-test-btn {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid rgba(23, 32, 25, 0.15);
	background: transparent;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.15s ease;
}
.pnw-test-btn.is-disabled {
	opacity: 0.35;
	pointer-events: none;
}
.pnw-test-btn .pnw-arrow {
	color: #172019;
}
.pnw-test-scroll {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding-bottom: 8px;
}
.pnw-test-card {
	background: #FBF7F4;
	border: 1px solid var(--pnw-border-soft);
	border-radius: 16px;
	padding: 24px;
	flex: 0 0 calc(50% - 10px);
	min-height: 320px;
	display: flex;
	align-items: stretch;
	gap: 20px;
	scroll-snap-align: start;
}
.pnw-test-card__body {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
}
.pnw-test-card__img {
	flex: 0 0 180px;
	width: 180px;
	border-radius: 8px;
	background-size: cover;
	background-position: center;
}
.pnw-test-card__quote {
	font-size: 14px;
	color: var(--pnw-ink-muted);
	line-height: 1.5;
}
.pnw-test-card__meta {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 6px;
}
.pnw-test-card__name {
	font-size: 16px;
	font-weight: 500;
	color: var(--pnw-ink);
}
.pnw-test-card__role {
	font-size: 14px;
	color: rgba(16, 15, 15, 0.6);
}
.pnw-test-card__role::before {
	content: '· ';
}
.pnw-test-card__mark {
	position: absolute;
	right: 0;
	bottom: 0;
	transform: rotate(180deg);
	width: 50px;
	height: 40px;
	display: block;
}

/* ===== Contact form ===== */
.pnw-contact {
	max-width: 1440px;
	margin: 0 auto;
	padding: 100px 80px;
	display: flex;
	gap: 100px;
	justify-content: space-between;
	flex-wrap: wrap;
}
.pnw-contact__left {
	max-width: 100%;
	flex: 1 1 400px;
}
.pnw-contact__left h2 {
	font-size: 56px;
	letter-spacing: -0.54px;
	line-height: 1;
	font-weight: 400; 
	margin: 16px 0 24px;
}
.pnw-contact__desc {
	font-size: 14px;
	color: var(--pnw-ink-muted);
	line-height: 1.5;
	margin-bottom: 40px;
}
.pnw-contact__info {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	flex-direction: column;
}
.pnw-contact__info span {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 14px;
}
.pnw-contact__icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	fill: var(--pnw-accent);
	color: #fff;
}
.pnw-contact-form {
	background: #fff;
	border: 1px solid var(--pnw-border-soft);
	border-radius: 8px;
	padding: 24px;
	width: 100%;
	max-width: 414px;
}
.pnw-contact-form h3 {
	color: var(--pnw-accent, #111);
	font-weight: 600;
	font-size: 16px;
	margin-bottom: 20px;
}

/* ===== Footer ===== */
.pnw-footer {
	background: #111;
	color: #fff;
	position: relative;
	overflow: hidden;
}
.pnw-footer__inner {
	max-width: 1440px;
	margin: 0 auto;
	padding: 48px 80px 24px;
}
.pnw-footer__top {
	display: flex;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap;
}
.pnw-footer__brand {
	max-width: 324px;
}
.pnw-footer__brand img {
	height: 60px;
	margin-bottom: 16px;
}
.pnw-footer__brand p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.4;
	margin-bottom: 24px;
}
.pnw-footer__brand .pnw-footer__copy {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.8);
}
.pnw-footer__brand .pnw-footer__contact {
	margin-top: 24px;
}
.pnw-footer__cols {
	display: flex;
	gap: 40px;
	flex-wrap: wrap;
}
.pnw-footer__col-heading {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.28px;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 10px;
}
.pnw-footer__col-heading:has(+ .pnw-footer__col-license) {
	margin-bottom: 4px;
}
.pnw-footer__col-license {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.28px;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 16px;
}
.pnw-footer__col-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	width: 100%;
	background: none;
	border: none;
	padding: 0;
	margin: 0;
	font: inherit;
	color: inherit;
	text-align: left;
	cursor: default;
}
a.pnw-footer__col-toggle {
	cursor: pointer;
}
.pnw-footer__col-icon {
	display: none;
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	transition: transform 0.2s ease;
}
.pnw-footer__col-collapse {
	display: grid;
	grid-template-rows: 1fr;
	transition: grid-template-rows 0.25s ease;
}
.pnw-footer__col-collapse > ul {
	overflow: hidden;
	min-height: 0;
}
.pnw-footer__col ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.pnw-footer__col ul li {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.6);
}
.pnw-footer__contact li {
	display: flex;
	align-items: center;
	gap: 6px;
}
.pnw-footer__contact img {
	width: 18px;
	height: 18px;
	margin-bottom: 0;
	flex-shrink: 0;
}
.pnw-footer-watermark {
	text-align: center;
	font-size: min(13vw, 196px);
	font-weight: 600;
	color: rgba(255, 255, 255, 0.05);
	margin-top: 32px;
	white-space: nowrap;
	font-family: var(--pnw-font-serif);
	letter-spacing: -2px;
	line-height: 1;
}

/* ===== Service Intro (single-post) ===== */
.pnw-sintro__inner {
	max-width: 1440px;
	margin: 0 auto;
	padding: 64px 80px 0;
}
.pnw-sintro__crumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	font-size: 13px;
	color: var(--pnw-ink-muted);
}
.pnw-sintro__crumb b {
	color: var(--pnw-ink);
	font-weight: 600;
}
.pnw-sintro__sep {
	opacity: 0.6;
}
.pnw-sintro__title {
	font-size: 64px;
	font-weight: 400;
	letter-spacing: -0.01em;
	margin-top: 14px;
	color: var(--pnw-ink);
}
.pnw-sintro__cols {
	display: grid;
	grid-template-columns: 1fr 2.35fr;
	gap: 22px;
	margin-top: 26px;
}
.pnw-sintro__col {
	font-size: 14.5px;
	line-height: 1.62;
	color: var(--pnw-ink-muted);
}
.pnw-sintro__col p + p {
	margin-top: 16px;
}
.pnw-sintro__media {
	display: grid;
	grid-template-columns: 1fr 2.35fr;
	gap: 22px;
	margin-top: 44px;
	padding-bottom: 64px;
}
.pnw-sintro__img {
	height: 200px;
	border-radius: 14px;
	background-size: cover;
	background-position: center;
}

/* ===== Feature Grid (dark, single-post) ===== */
.pnw-feat-dark {
	background: var(--pnw-accent, var(--pnw-green-dark));
	color: #fff;
	padding: 76px 0;
}
.pnw-feat-dark__inner {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 80px;
}
.pnw-feat-dark__head {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 40px;
	flex-wrap: wrap;
}
.pnw-feat-dark__heading {
	font-size: 40px;
	font-weight: 400;
	line-height: 1.15;
	margin-top: 20px;
	max-width: 560px;
}
.pnw-feat-dark__body {
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: 56px;
	margin-top: 52px;
}
.pnw-feat-dark__portrait {
	height: 420px;
	border-radius: 12px;
	background: var(--pnw-green-mid);
	background-size: cover;
	background-position: center;
}
.pnw-feat-dark__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px 56px;
	align-content: end;
    align-items: end;
}
.pnw-feat-dark__icon {
	width: 30px;
	height: 30px;
	color: var(--pnw-green-soft);
}
.pnw-feat-dark__item h3 {
	font-size: 19px;
	font-weight: 600;
	margin-top: 14px;
}
.pnw-feat-dark__item p {
	font-size: 13.5px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.7);
	margin-top: 8px;
}

/* ===== FAQ (single-post) ===== */
.pnw-faq__inner {
	max-width: 1440px;
	margin: 0 auto;
	padding: 84px 80px;
	display: grid;
	grid-template-columns: minmax(0, 360px) 1fr;
	gap: 80px;
}
.pnw-faq__heading {
	font-size: clamp(28px, 3.2vw, 36px);
	font-weight: 600;
	line-height: 1.15;
	margin-top: 18px;
	color: var(--pnw-ink);
}
.pnw-faq__desc {
	margin-top: 18px;
	font-size: 14px;
	line-height: 1.6;
	color: var(--pnw-ink-muted);
	max-width: 280px;
}
.pnw-faq__item {
	border-bottom: 1px solid var(--pnw-border-soft);
	padding: 22px 0;
}
.pnw-faq__item summary {
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	color: var(--pnw-ink);
}
.pnw-faq__item summary::-webkit-details-marker {
	display: none;
}
.pnw-faq__item summary::after {
	content: '+';
	font-size: 22px;
	font-weight: 400;
	color: var(--pnw-ink-muted);
	line-height: 1;
}
.pnw-faq__item[open] summary::after {
	content: '−';
}
.pnw-faq__answer {
	display: grid;
	grid-template-rows: 0fr;
	max-width: 64ch;
	transition: grid-template-rows 0.3s ease;
}
.pnw-faq__item[open] .pnw-faq__answer {
	grid-template-rows: 1fr;
}
.pnw-faq__answer > p {
	overflow: hidden;
	min-height: 0;
	padding-top: 14px;
	font-size: 14px;
	line-height: 1.65;
	color: var(--pnw-ink-muted);
}

/* ===== Explore Carousel (single-post) ===== */
.pnw-explore {
	background: var(--pnw-cream);
	padding: 70px 0;
}
.pnw-explore__inner {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 80px;
}
.pnw-explore__head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 24px;
	flex-wrap: wrap;
}
.pnw-explore__heading {
	font-size: clamp(28px, 3.2vw, 38px);
	font-weight: 600;
	margin-top: 16px;
	color: var(--pnw-ink);
}
.pnw-explore__arrows {
	display: flex;
	gap: 12px;
}
.pnw-explore__arrow {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid var(--pnw-border-soft2);
	background: transparent;
	cursor: pointer;
	display: grid;
	place-items: center;
	color: var(--pnw-ink);
	transition: background 0.2s ease, transform 0.2s ease;
}
.pnw-explore__arrow:hover {
	background: rgba(0, 0, 0, 0.04);
}
.pnw-explore__arrow:active {
	transform: scale(0.94);
}
.pnw-explore__arrow.is-disabled {
	opacity: 0.35;
	pointer-events: none;
}
.pnw-explore__track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - 3 * 24px) / 4);
	gap: 24px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	margin-top: 34px;
	padding-bottom: 8px;
	scrollbar-width: none;
}
.pnw-explore__track::-webkit-scrollbar {
	display: none;
}
.pnw-explore__card {
	display: block;
	background: #fff;
	border: 1px solid var(--pnw-border-soft);
	border-radius: 12px;
	overflow: hidden;
	scroll-snap-align: start;
}
.pnw-explore__card-img {
	height: 150px;
	background-size: cover;
	background-position: center;
}
.pnw-explore__card-txt {
	padding: 16px 18px 22px;
}
.pnw-explore__card-txt h3 {
	font-size: 19px;
	font-weight: 600;
}
.pnw-explore__card-txt p {
	font-size: 13px;
	line-height: 1.55;
	color: var(--pnw-ink-muted);
	margin-top: 8px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
	.pnw-sintro__inner {
		padding: 60px 24px 0;
	}
	.pnw-sintro__cols {
		grid-template-columns: 1fr;
	}
	.pnw-sintro__media {
		grid-template-columns: 1fr;
	}
	.pnw-feat-dark {
		padding: 60px 0;
	}
	.pnw-feat-dark__inner {
		padding: 0 24px;
	}
	.pnw-feat-dark__body {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.pnw-feat-dark__portrait {
		height: 280px;
	}
	.pnw-faq__inner {
		grid-template-columns: 1fr;
		gap: 44px;
		padding: 60px 24px;
	}
	.pnw-explore {
		padding: 60px 0;
	}
	.pnw-explore__inner {
		padding: 0 24px;
	}
	.pnw-explore__track {
		grid-auto-columns: 70%;
	}
	.pnw-chero__inner {
		grid-template-columns: 1fr;
		gap: 40px;
		padding: 60px 40px;
	}
	.pnw-chero__title-italic {
		max-width: none;
	}
	.pnw-chero__frame {
		order: -1;
	}
	.pnw-chero__stats {
		gap: 24px;
		justify-content: space-between;
	}
	.pnw-wwd {
		grid-template-columns: 1fr;
		gap: 52px;
		padding: 80px 40px;
	}
	.pnw-wwd__card {
		width: 100%;
		justify-self: stretch;
	}
	/* No hover on touch devices — keep the desktop :hover accent state on by default. */
	.pnw-wwd__card .pnw-wwd__body {
		background: var(--pnw-accent, var(--pnw-green-dark));
	}
	.pnw-wwd__card .pnw-wwd__head h3 {
		color: #fff;
	}
	.pnw-wwd__card .pnw-wwd__no {
		color: rgba(255, 255, 255, 0.65);
	}
	.pnw-wwd__card .pnw-wwd__desc {
		color: rgba(255, 255, 255, 0.78);
	}
	.pnw-wwd__card .pnw-wwd__link {
		color: #fff;
	}
	.pnw-wwd__media img {
		height: 250px;
	}
	.pnw-wwd__intro {
		position: static;
	}
	.pnw-wwd__index {
		display: none;
	}
	.pnw-about {
		grid-template-columns: 1fr;
		padding: 80px 40px;
	}
	.pnw-about__text {
		padding-top: 0;
	}
	/* Scroll-locked word reveal (see index.js) only runs above 1024px —
	   show the copy fully revealed here instead of permanently muted. */
	.pnw-about__word {
		color: #172019;
	}
	.pnw-about__stats {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 16px;
		margin-top: 24px;
	}
	.pnw-about__stat {
		justify-content: center;
		align-items: center;
		text-align: center;
		min-width: 0;
	}
	.pnw-about__sep {
		display: none;
	}
	.pnw-services {
		padding: 0px 40px 80px;
	}
	.pnw-projects__inner {
		padding: 80px 40px;
	}
	.pnw-process__inner {
		padding: 80px 40px;
	}
	.pnw-testimonials {
		padding: 60px 40px;
		display: flex;
		flex-direction: column;
	}
	.pnw-projects__tags {
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: center;
		gap: 20px;
		max-width: 100%;
		overflow-x: auto;
		font-size:16px;
		padding-bottom: 4px;
	}
	.pnw-projects__tags a {
		flex-shrink: 0;
	}
	.pnw-chero__ctas{
	flex-direction: row;
    justify-content: center;
	}
	.pnw-proj-row {
		flex-direction: column;
		align-items: stretch;
		gap: 24px;
	}
	.pnw-proj-info {
		width: 100%;
	}
	.pnw-proj-card {
		width: 440px;
		height: 244px;
	}
	.pnw-contact {
		padding: 80px 40px;
	}
	.pnw-footer__inner {
		padding: 40px 40px 24px;
	}
	.pnw-footer__cols {
		flex-direction: column;
	}
	.pnw-footer__col-heading {
		margin-bottom: 0;
		padding: 16px 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	}
	.pnw-footer__col-heading:has(+ .pnw-footer__col-license) {
		padding-bottom: 0;
		border-bottom: none;
	}
	.pnw-footer__col-license {
		padding-bottom: 16px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	}
	.pnw-footer__col-toggle {
		cursor: pointer;
	}
	.pnw-footer__col-icon {
		display: block;
	}
	.pnw-footer__col.is-open .pnw-footer__col-icon {
		transform: rotate(180deg);
	}
	.pnw-footer__col-collapse {
		grid-template-rows: 0fr;
	}
	.pnw-footer__col-collapse > ul {
		padding-top: 0;
		transition: padding-top 0.25s ease;
	}
	.pnw-footer__col.is-open .pnw-footer__col-collapse {
		grid-template-rows: 1fr;
	}
	.pnw-footer__col.is-open .pnw-footer__col-collapse > ul {
		padding-top: 16px;
	}
	.pnw-nav {
		position: sticky;
		top: 0;
	}
	.pnw-nav__inner {
		padding: 12px 40px;
	}
	.pnw-nav__links {
		display: none;
	}
	.pnw-nav__phone,
	.pnw-nav__right .pnw-btn-primary {
		display: none;
	}
	.pnw-nav-toggle {
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.pnw-nav.is-pinned {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
	}
	.pnw-hero__gallery-viewport {
		width: 92vw;
		min-height: 202px;
	}

	.pnw-services__list{
		margin-top:30px;
	}

	.pnw-gcard {
		width: 220px;
		height: 131px;
	}
	.pnw-gcard.is-center {
		transform: scale(1.545);
	}
	.pnw-gcard-caption {
		font-size: 14px;
		padding: 12px;
	}
	.pnw-process-track {
		flex-direction: column;
		justify-content: flex-start;
		gap: 0;
		height: auto;
		margin-top: 56px;
	}
	/* Replaces the single full-height .pnw-process-line: each step draws its
	   own connector from its dot down through its own margin-bottom gap to
	   the next step's dot, so it adapts to each step's own (variable) card
	   height instead of guessing one fixed total height. Omitted on the
	   last step via :not(:last-child), so nothing runs past the final dot. */
	.pnw-process-line {
		display: none;
	}
	.pnw-process-step {
		display: flex;
		align-items: flex-start;
		width: 100%;
		height: auto;
		margin-bottom: 24px;
	}
	.pnw-process-step:last-child {
		margin-bottom: 0;
	}
	.pnw-process-step:not(:last-child)::after {
		content: '';
		position: absolute;
		top: 18px;
		bottom: -24px;
		left: 10px;
		width: 1px;
		background: rgba(23, 32, 25, 0.2);
	}
	.pnw-dot {
		position: static;
		flex: 0 0 20px;
		margin-top: 2px;
		transform: none;
	}
	.pnw-service-row{
		padding: 24px 0;
		flex-wrap: wrap;
		align-items: flex-end;
		gap: 24px;
		-webkit-tap-highlight-color: transparent;
	}
	.pnw-service-row:hover,
	.pnw-service-row:active {
		background: rgba(229, 240, 229, 0);
		z-index: 0;
	}
	.pnw-service-thumb {
		position: static;
		order: -1;
		flex: 1 1 100%;
		width: 100%;
		height: 300px;
		transform: none;
		opacity: 1;
		pointer-events: auto;
		transition: none;
	}
	.pnw-service-row:hover .pnw-service-thumb,
	.pnw-service-row:active .pnw-service-thumb {
		transform: none;
	}
	.pnw-contact{
		gap:0;
	}
	.pnw-process-card {
		position: static !important;
		width: 100% !important;
		margin-left: 8px;
	}
	.pnw-hero__ctas {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
		max-width: 100%;
		margin-left: auto;
		margin-right: auto;
	}
	.pnw-hero__ctas .pnw-btn {
		width: 100%;
	}
	.pnw-about__copy{
		font-size: 28px;
		padding-top:20px;
	}
	.pnw-eyebrow{
		font-size: 12px;
	}
	.pnw-projects__title{
		font-size: 32px;
	}
	.pnw-contact__info {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}
	.pnw-nav-mobile-panel__phone{
		display:none;
	}
	.pnw-test-nav {
		order: 3;
		margin-top: 16px;
		justify-content: left;
	}
	.pnw-test-card {
		flex-direction: column;
		height: auto;
		gap: 16px;
	}
	.pnw-test-card__body {
		justify-content: flex-start;
		gap: 10px;
	}
	/* Reserves the same vertical space for every quote regardless of its
	   actual length, so the name/role line lands at the same height across
	   every card in a row instead of trailing each quote's own line count. */
	/* Clamping to a fixed line count (rather than a guessed pixel min-height)
	   keeps every quote the exact same rendered height at any viewport width
	   in this stacked layout, so the name/role line lands at the same
	   position across cards regardless of how many lines a given quote wraps to. */
	.pnw-test-card__quote {
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 6;
		line-clamp: 6;
		overflow: hidden;
	}
	.pnw-test-card__img {
		order: -1;
		flex: 0 0 200px;
		width: 100%;
	}
	.pnw-test-card__mark{
	    bottom: 0;
    	width: 24px;
   		height: 20px;
	}
	.pnw-footer__top{
		flex-direction: column;
	}
	.pnw-footer__brand{
		max-width: none;
	}
	.pnw-about__stat-num{
		font-size: 40px;
	}
	.pnw-projects__head{
		margin-bottom: 42px;
	}
	.pnw-stats__inner{
		padding: 16px 40px;
	}
	.pnw-chero__ctas .pnw-btn {
	flex: 1 1 0%;
    }
	.pnw-service-row__text h3 {
		font-size: 24px;
	}

}
@media (max-width: 720px) {
	.pnw-feat-dark__grid {
		grid-template-columns: 1fr;
	}
	.pnw-explore__track {
		grid-auto-columns: 85%;
	}
	.pnw-wwd {
		padding: 60px 24px;
	}
	.pnw-hero__title {
		font-size: 44px;
		letter-spacing: -1px;
	}
	.pnw-hero{
	     min-height:0;
	}
	
	.pnw-hero__content {
		padding: 60px 24px 0;
	}

	.pnw-hero__gallery-wrap {
		margin-top: 48px;
	}
	.pnw-hero__gallery-viewport {
		min-height: 144px;
	}
	.pnw-gcard {
		width: 110px;
		height: 66px;
	}
	.pnw-gcard.is-center {
		transform: scale(2.182);
	}
	.pnw-gcard-caption {
		font-size: 10px;
		padding: 8px;
	}
	.pnw-gcard-caption svg {
		width: 21px;
		height: 21px;
	}
	.pnw-stats__inner {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		padding: 16px 24px;
		row-gap: 16px;
		-moz-column-gap: 24px;
		     column-gap: 24px;
	}
	.pnw-stats__item {
		justify-content: flex-start;
	}
	.pnw-about {
		padding: 60px 24px;
	}
	.pnw-services {
		padding: 60px 24px;
	}
	.pnw-projects__inner {
		padding: 60px 24px 40px;
	}
	.pnw-projects__head {
		flex-direction: column;
	}
	.pnw-projects__tags {
		align-items: flex-start;
	}
	.pnw-proj-card {
		width: 82vw;
		height: calc(82vw * 0.555);
	}
	.pnw-proj-controls {
		margin-top: 16px;
	}
	.pnw-process__inner {
		padding: 60px 24px;
	}

	/* Nav buttons live inside .pnw-testimonials__head (next to the heading)
	   for the desktop layout; `display: contents` unwraps that box on mobile
	   so its children become direct flex items of the section, letting
	   `order` move the nav below the cards without touching the markup. */
	.pnw-testimonials__head {
		display: contents;
	}
	.pnw-testimonials__head-text {
		order: 1;
		margin-bottom: 24px;
	}
	.pnw-test-scroll {
		order: 2;
	}

	.pnw-test-card {
		flex: 0 0 85%;
	}
	.pnw-test-card__img {
		flex-basis: 160px;
	}
	.pnw-contact {
		padding: 48px 24px;
		flex-direction: column;
		gap: 40px;
	}
	/* flex-basis:400px on .pnw-contact__left (styles.css:1273) sizes its
	   *width* in the desktop row layout, but flex-direction:column here
	   reinterprets that same basis as a *height* — forcing 400px of
	   vertical space regardless of actual content height. Reset to auto
	   so the box just hugs its content once stacked. */
	.pnw-contact__left {
		flex: 1 1 auto;
	}
	.pnw-contact__left h2 {
		font-size: 36px;
	}

	.pnw-contact-form {
		max-width: 100%;
	}
	.pnw-footer__inner {
		padding: 32px 24px 16px;
	}
	.pnw-footer__cols {
		gap: 24px;
	}
	.pnw-top-strip {
		font-size: 12px;
		padding: 0 12px;
		text-align: center;
	}
	.pnw-nav__phone-text {
		display: none;
	}
	.pnw-testimonials{
		padding: 60px 24px;
	}
	.pnw-chero__inner{
		padding: 60px 24px;
	}

}
@media (max-width: 480px) {
	.pnw-nav__inner {
		padding: 12px 20px;
	}
	.pnw-nav__right {
		gap: 10px;
	}
	.pnw-proj-track{
		gap: 12px;
	}

	.pnw-hero__gallery-viewport {
		min-height: 155px;
	}
	.pnw-gcard {
		width: 150px;
		height: 89px;
	}
	.pnw-gcard.is-center {
		transform: scale(1.737);
	}
}
@media(min-width:721px) and (max-width:1024px){
    .pnw-contact__info{
		margin-bottom:40px
	}
	.pnw-contact-form{
		width:100%;
		max-width:100%;
	}
}
@media(min-width:1025px){
	.pnw-proj-caption{
		padding-bottom:55px;
	}
}
@media(min-width:768px){
	.pnw-services__head{
		text-align:center;
	}
	.pnw-proj-image-wrap::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 400px;
	pointer-events: none;
	background: linear-gradient(to right, rgba(250, 250, 250, 0), #fafafa);
}
}

/* ===== 404 page (premiumnw/error-404 block) =====
   Deliberately its own self-contained design — different tokens/fonts than
   the rest of the site — every selector below is scoped under .pnw-404 so
   nothing here leaks into (or collides with) the rest of this stylesheet. */
.pnw-404{
	--paper:var(--pnw-cream, #fcfbf7);
	--ink:var(--pnw-ink, #172019);
	--muted:var(--pnw-ink-muted, #6d6d6d);
	--rule:var(--pnw-border-soft, rgba(23, 32, 25, 0.12));
	--accent:var(--pnw-accent, var(--pnw-green-mid));

	--font-display:var(--pnw-font-serif, 'Fraunces', serif);
	--font-body:var(--pnw-font-sans, 'Hanken Grotesk', sans-serif);

	background:var(--paper);
	color:var(--ink);
	font-family:var(--font-body);
	font-size:17px;
	line-height:1.55;
	-webkit-font-smoothing:antialiased;

	min-height:96vh;
	display:flex;
	flex-direction:column;
	justify-content:center;

	/* WP core's global-styles `:first-child` margin reset (for
	   .wp-site-blocks children) only reaches this div's actual first DOM
	   sibling — since this block's markup starts directly with this div,
	   that's normally fine, but reset it explicitly anyway so it can't
	   silently regress if the markup order ever changes. */
	margin-block-start:0;
}
.pnw-404 *{box-sizing:border-box}
.pnw-404 a{color:inherit;text-decoration:none}
.pnw-404 a:focus-visible,.pnw-404 button:focus-visible{outline:2px solid var(--accent);outline-offset:3px;border-radius:2px}

.pnw-404 .wrap{max-width:1240px;margin:0 auto;padding:0 32px}

.pnw-404 main .wrap{
	display:grid;grid-template-columns:1.15fr .85fr;
	gap:88px;align-items:start;
	padding-top:76px;padding-bottom:92px;
}

.pnw-404 .eyebrow{
	font-family:var(--font-body);font-size:14px;font-weight:700;
	letter-spacing:1.98px;text-transform:uppercase;color:var(--accent);
	margin:0 0 26px;
}

.pnw-404 .big-num{
	font-family:var(--font-display);font-weight:700;
	font-size:clamp(72px,11vw,160px);line-height:1;
	letter-spacing:-.03em;color:var(--ink);margin:0 0 8px;
}

.pnw-404 h1{
	font-family:var(--font-display);font-weight:700;
	font-size:clamp(34px,4.4vw,56px);line-height:1.04;
	letter-spacing:-.025em;margin:0 0 20px;max-width:15ch;
}
.pnw-404 .lede{font-size:18px;color:var(--muted);margin:0 0 8px;max-width:46ch}

.pnw-404 .reroute{padding-top:6px}
.pnw-404 .reroute h2{
	font-family:var(--font-display);font-weight:700;font-size:22px;
	letter-spacing:-.01em;margin:0 0 34px;
}
.pnw-404 .manifold{list-style:none;margin:0;padding:0 0 0 40px;position:relative}
.pnw-404 .manifold::before{
	content:"";position:absolute;left:0;top:32px;bottom:54px;
	width:2px;background:var(--rule);
}
.pnw-404 .manifold a{
	display:flex;align-items:flex-start;gap:16px;
	padding:19px 0;border-bottom:1px solid var(--rule);position:relative;
}
.pnw-404 .manifold li:first-child a{border-top:1px solid var(--rule)}
.pnw-404 .tee{
	position:absolute;left:-40px;top:31px;
	width:40px;height:2px;background:var(--rule);
}
.pnw-404 .tee::before{
	content:"";position:absolute;left:-4px;top:50%;transform:translateY(-50%);
	width:10px;height:10px;border-radius:50%;
	background:var(--paper);border:2px solid var(--rule);
}
.pnw-404 .tee::after{
	content:"";position:absolute;inset:0;opacity:0;
	background:repeating-linear-gradient(90deg,var(--accent) 0 7px,transparent 7px 14px);
}
.pnw-404 .manifold .name{font-weight:600;font-size:17.5px;line-height:1.4;display:block}
.pnw-404 .manifold .desc{font-size:14px;color:var(--muted);display:block;margin-top:2px}
.pnw-404 .arrow{margin-left:auto;color:var(--rule);font-size:19px;line-height:24.5px;transition:transform .2s ease,color .2s ease}

.pnw-404 .manifold a:hover .tee,.pnw-404 .manifold a:focus-visible .tee{background:var(--accent)}
.pnw-404 .manifold a:hover .tee::before,.pnw-404 .manifold a:focus-visible .tee::before{border-color:var(--accent)}
.pnw-404 .manifold a:hover .tee::after{opacity:1;animation:pnw-404-flow .55s linear infinite}
.pnw-404 .manifold a:hover .name,.pnw-404 .manifold a:focus-visible .name{color:var(--accent)}
.pnw-404 .manifold a:hover .arrow,.pnw-404 .manifold a:focus-visible .arrow{transform:translateX(5px);color:var(--accent)}
@keyframes pnw-404-flow{to{background-position:14px 0}}

.pnw-404 .rise{opacity:0;transform:translateY(14px);animation:pnw-404-rise .6s ease-out forwards}
.pnw-404 .d1{animation-delay:.05s}.pnw-404 .d2{animation-delay:.15s}.pnw-404 .d3{animation-delay:.25s}
.pnw-404 .d4{animation-delay:.35s}.pnw-404 .d5{animation-delay:.45s}

@keyframes pnw-404-rise{to{opacity:1;transform:translateY(0)}}

@media (max-width:1000px){
	.pnw-404 main .wrap{grid-template-columns:1fr;gap:56px;padding-top:52px;padding-bottom:64px}
}
@media (max-width:640px){
	.pnw-404 .wrap{padding:0 20px}
	.pnw-404 .lede{font-size:16.5px}
}

@media (prefers-reduced-motion:reduce){
	.pnw-404 .rise{opacity:1;transform:none;animation:none}
	.pnw-404 .manifold a:hover .tee::after{animation:none}
	.pnw-404 *{transition:none !important}
}

