:root {
	--blue: #0b78bd;
	--blue-dark: #075a91;
	--ink: #14181d;
	--muted: #5f6872;
	--line: #dfe5ea;
	--soft: #f5f7f9;
	--white: #ffffff;
	--shadow: 0 24px 60px rgba(17, 24, 39, .14);
	--radius: 8px;
	--container: min(1360px, calc(100% - clamp(40px, 6vw, 120px)));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	overflow-x: hidden;
	color: var(--ink);
	background: var(--white);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
	line-height: 1.65;
	text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; color: var(--muted); }
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: 0; color: var(--ink); }
h1 { font-size: clamp(3rem, 6vw, 6.5rem); max-width: 980px; }
h2 { font-size: clamp(2rem, 3.2vw, 4.1rem); max-width: 820px; }
h3 { font-size: 1.2rem; }
ul { margin: 0; padding: 0; list-style: none; }
.container { width: var(--container); margin-inline: auto; }
.narrow { max-width: 800px; }
.skip-link, .screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
}
.skip-link:focus {
	position: fixed;
	z-index: 2000;
	top: 1rem;
	left: 1rem;
	width: auto;
	height: auto;
	clip: auto;
	padding: .75rem 1rem;
	background: var(--ink);
	color: var(--white);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(255,255,255,.92);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid rgba(223,229,234,.86);
	transition: box-shadow .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 12px 36px rgba(17, 24, 39, .08); }
.header-inner {
	display: flex;
	align-items: center;
	gap: 2rem;
	min-height: 88px;
}
.brand {
	display: inline-flex;
	align-items: center;
	width: auto;
	min-width: 0;
}
.brand-logo {
	width: auto;
	max-width: 250px;
	max-height: 66px;
	object-fit: contain;
	object-position: left center;
}
.primary-nav { margin-left: auto; }
.primary-nav .menu { display: flex; align-items: center; gap: 1.5rem; }
.primary-nav a {
	position: relative;
	font-size: .94rem;
	font-weight: 650;
	color: #2d333a;
}
.primary-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -.5rem;
	width: 0;
	height: 2px;
	background: var(--blue);
	transition: width .2s ease;
}
.primary-nav a:hover::after { width: 100%; }
.primary-nav .current-menu-item > a,
.primary-nav .current_page_item > a,
.primary-nav .current-menu-ancestor > a,
.primary-nav .current_page_parent > a {
	color: var(--ink);
	font-weight: 800;
}
.primary-nav .current-menu-item > a::after,
.primary-nav .current_page_item > a::after,
.primary-nav .current-menu-ancestor > a::after,
.primary-nav .current_page_parent > a::after {
	width: 100%;
}
.header-cta { margin-left: .3rem; }
.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	margin-left: auto;
	border: 1px solid var(--line);
	background: var(--white);
	border-radius: 6px;
	padding: 10px;
}
.menu-toggle span:not(.screen-reader-text) {
	display: block;
	height: 2px;
	margin: 5px 0;
	background: var(--ink);
}
.mobile-panel { display: none; }

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: .85rem 1.15rem;
	border-radius: 6px;
	border: 1px solid transparent;
	font-weight: 750;
	line-height: 1;
	transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--blue); color: var(--white); box-shadow: 0 12px 24px rgba(11,120,189,.2); }
.btn-primary:hover { background: var(--blue-dark); }
.btn-secondary { background: var(--white); color: var(--ink); }
.btn-outline { border-color: var(--line); color: var(--ink); margin-top: 2rem; }
.button-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.hero-cta { margin-top: 2rem; }
.text-link {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	color: var(--blue-dark);
	font-weight: 800;
	margin-top: .6rem;
}
.text-link::after { content: "→"; }

.hero {
	position: relative;
	min-height: clamp(640px, 88vh, 920px);
	display: grid;
	align-items: end;
	overflow: hidden;
	background: var(--ink);
}
.hero-bg, .page-hero > img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hero-shade, .page-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(13,18,24,.88), rgba(13,18,24,.48) 48%, rgba(13,18,24,.18));
	z-index: 1;
}
.hero-content {
	position: relative;
	z-index: 2;
	padding: 9rem 0 7rem;
	color: var(--white);
}
.hero h1, .hero p, .page-hero h1, .page-hero p { color: var(--white); }
.hero-content > p:not(.eyebrow), .page-hero p:not(.eyebrow) {
	max-width: 680px;
	font-size: clamp(1.08rem, 1.55vw, 1.3rem);
	color: rgba(255,255,255,.86);
}
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: .65rem;
	margin-bottom: .9rem;
	color: var(--blue);
	font-size: .78rem;
	font-weight: 850;
	text-transform: uppercase;
	letter-spacing: .14em;
}
.eyebrow::before {
	content: "";
	width: 34px;
	height: 2px;
	background: currentColor;
}
.hero .eyebrow, .page-hero .eyebrow { color: #67c2f5; }

.trust-bar {
	background: var(--ink);
	color: var(--white);
	border-top: 1px solid rgba(255,255,255,.12);
}
.trust-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
}
.trust-grid span {
	padding: 1.2rem 1rem;
	border-left: 1px solid rgba(255,255,255,.12);
	font-weight: 750;
}
.trust-grid span:last-child { border-right: 1px solid rgba(255,255,255,.12); }

.section { padding: clamp(4.5rem, 8vw, 8rem) 0; }
.soft-bg { background: var(--soft); }
.dark { background: #111820; color: var(--white); }
.dark h2, .dark h3 { color: var(--white); }
.dark p { color: rgba(255,255,255,.72); }
.section-head {
	display: grid;
	gap: 1rem;
	margin-bottom: 3rem;
}
.section-head-action {
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: end;
}
.section-head p:not(.eyebrow) { max-width: 710px; font-size: 1.05rem; }
.split-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
	gap: clamp(2rem, 6vw, 5rem);
	align-items: center;
}
.image-frame {
	margin: 0;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}
.image-frame img { width: 100%; height: 100%; object-fit: cover; }

.service-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
}
.service-card {
	display: grid;
	align-content: start;
	gap: .85rem;
	min-height: 250px;
	padding: 1.35rem;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
	cursor: default;
}
.service-card:hover {
	transform: translateY(-4px);
	border-color: rgba(11,120,189,.28);
	box-shadow: 0 18px 42px rgba(17,24,39,.08);
}
.service-icon {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	background: rgba(11,120,189,.1);
	color: var(--blue-dark);
	border-radius: 6px;
	font-weight: 900;
}
.service-icon svg {
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.service-card p { font-size: .95rem; }

.project-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}
.featured-projects { grid-auto-rows: 310px; }
.project-card {
	position: relative;
	min-height: 310px;
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--ink);
	color: var(--white);
	isolation: isolate;
	cursor: default;
}
.project-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(13,18,24,.74), rgba(13,18,24,.08) 65%);
	z-index: 1;
}
.project-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .45s ease;
}
.project-card:hover img { transform: scale(1.045); }
.gallery-trigger {
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
	font: inherit;
	text-align: left;
	cursor: zoom-in;
}
.gallery-trigger:focus-visible,
.before-after-item:focus-visible {
	outline: 3px solid #67c2f5;
	outline-offset: -3px;
}
.project-gallery-card { cursor: auto; }
.project-gallery-card img { pointer-events: none; }
.project-card span, .project-card h2, .project-card h3 {
	position: absolute;
	left: 1.2rem;
	z-index: 2;
	color: var(--white);
}
.project-detail-link {
	position: absolute;
	right: 1rem;
	top: 1rem;
	z-index: 3;
	padding: .45rem .65rem;
	background: rgba(255,255,255,.9);
	color: var(--ink);
	border-radius: 4px;
	font-size: .78rem;
	font-weight: 850;
	transition: background .2s ease, transform .2s ease;
}
.project-detail-link:hover {
	background: var(--white);
	transform: translateY(-1px);
}
.btn-projects {
	border-color: var(--ink);
	background: var(--ink);
	color: var(--white);
}
.btn-projects:hover {
	background: var(--blue-dark);
	border-color: var(--blue-dark);
}
.project-card span {
	bottom: 4.1rem;
	color: #9bd6f8;
	font-size: .74rem;
	font-weight: 850;
	text-transform: uppercase;
	letter-spacing: .13em;
}
.project-card h2, .project-card h3 {
	right: 1.2rem;
	bottom: 1.2rem;
	font-size: clamp(1.3rem, 2vw, 2.05rem);
}
.project-card-large { grid-column: span 2; grid-row: span 2; }

.before-after {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	margin-top: 1rem;
}
.before-after > div,
.before-after-item {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--soft);
}
.before-after-item {
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	cursor: zoom-in;
}
.before-after img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.before-after > div:hover img,
.before-after-item:hover img { transform: scale(1.035); }
.before-after span {
	position: absolute;
	left: 1rem;
	top: 1rem;
	padding: .35rem .65rem;
	background: rgba(17,24,32,.84);
	color: var(--white);
	border-radius: 4px;
	font-size: .78rem;
	font-weight: 850;
	text-transform: uppercase;
	letter-spacing: .12em;
}

.process-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	background: rgba(255,255,255,.12);
	border: 1px solid rgba(255,255,255,.12);
}
.process-item {
	min-height: 240px;
	padding: 1.5rem;
	background: #111820;
}
.process-item span {
	display: block;
	margin-bottom: 4rem;
	color: #67c2f5;
	font-weight: 900;
}

.cta-section { padding-top: 0; }
.cta-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	padding: clamp(2rem, 5vw, 4rem);
	background: var(--ink);
	border-radius: var(--radius);
	color: var(--white);
}
.cta-box h2, .cta-box p { color: var(--white); }
.cta-box p:not(.eyebrow) { max-width: 640px; color: rgba(255,255,255,.72); }

.page-hero {
	position: relative;
	min-height: 520px;
	display: grid;
	align-items: end;
	padding: 8rem 0 5rem;
	overflow: hidden;
	background: var(--ink);
}
.page-hero.compact {
	min-height: auto;
	background: var(--soft);
	padding: 6rem 0 3.5rem;
}
.page-hero.compact::before, .page-hero.compact > img { display: none; }
.page-hero.compact h1, .page-hero.compact p { color: var(--ink); }
.page-hero.compact p { color: var(--muted); }
.page-hero > .container { position: relative; z-index: 2; }

.project-gallery-intro {
	padding: clamp(4.5rem, 8vw, 7rem) 0 clamp(1.8rem, 4vw, 3rem);
	background: var(--soft);
}
.project-gallery-intro h1 {
	font-size: clamp(3rem, 6vw, 6.4rem);
}
.project-gallery-intro p:not(.eyebrow) {
	max-width: 560px;
	font-size: clamp(1.05rem, 1.4vw, 1.22rem);
}
.project-gallery-section {
	padding-top: clamp(2rem, 4vw, 3.5rem);
}
.photo-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(clamp(230px, 22vw, 340px), 1fr));
	grid-auto-flow: dense;
	gap: clamp(.75rem, 1.3vw, 1.15rem);
}
.photo-gallery-item {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	padding: 0;
	border: 0;
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--soft);
	cursor: zoom-in;
	box-shadow: 0 12px 34px rgba(17,24,39,.08);
}
.photo-gallery-item.is-wide {
	grid-column: span 2;
	aspect-ratio: 16 / 9;
}
.photo-gallery-item.is-tall {
	grid-row: span 2;
	aspect-ratio: 4 / 5;
}
.photo-gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .45s ease, filter .45s ease;
}
.photo-gallery-item:hover img {
	transform: scale(1.035);
	filter: saturate(1.03) contrast(1.02);
}
.photo-gallery-item:focus-visible {
	outline: 3px solid var(--blue);
	outline-offset: 3px;
}

.service-rows { display: grid; gap: 4rem; }
.service-row {
	display: grid;
	grid-template-columns: minmax(280px, 46%) minmax(0, 1fr);
	gap: clamp(2rem, 5vw, 5rem);
	align-items: center;
	scroll-margin-top: 110px;
}
.service-row:nth-child(even) figure { order: 2; }
.service-row figure {
	margin: 0;
	aspect-ratio: 5 / 4;
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--soft);
}
.service-row img { width: 100%; height: 100%; object-fit: cover; }
.service-number {
	display: inline-block;
	margin-bottom: 1rem;
	color: var(--blue);
	font-weight: 900;
}

.content-area { font-size: 1.05rem; }
.content-area h2, .content-area h3 { margin: 2rem 0 1rem; }
.single-featured { width: 100%; border-radius: var(--radius); margin-bottom: 2rem; }
.profile-card, .contact-info, .project-meta, .contact-panel {
	padding: 1.5rem;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
}
.profile-card img {
	width: 120px;
	height: 120px;
	object-fit: contain;
	margin-bottom: 1.5rem;
}
.about-hero {
	padding: clamp(4.5rem, 8vw, 7rem) 0 clamp(3.5rem, 7vw, 6rem);
	background:
		linear-gradient(180deg, var(--soft), var(--white));
}
.about-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
	gap: clamp(2.5rem, 6vw, 5.5rem);
	align-items: center;
}
.about-hero h1 {
	max-width: 900px;
	font-size: clamp(2.8rem, 5.3vw, 5.5rem);
}
.about-hero p:not(.eyebrow) {
	max-width: 690px;
	font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}
.about-blue-line {
	display: block;
	width: 74px;
	height: 3px;
	margin-top: 2rem;
	background: var(--blue);
}
.about-story-section {
	padding-top: clamp(3.8rem, 7vw, 6rem);
}
.founder-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
	gap: clamp(2rem, 6vw, 5rem);
	align-items: center;
}
.founder-photo {
	position: relative;
	margin: 0;
	aspect-ratio: 4 / 5;
	width: 100%;
	overflow: hidden;
	border-radius: var(--radius);
	box-shadow: 0 22px 54px rgba(17, 24, 39, .16);
	background: var(--soft);
}
.founder-photo-hero {
	max-width: 520px;
	justify-self: end;
}
.founder-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 52% 22%;
}
.founder-photo figcaption {
	position: absolute;
	left: 1.2rem;
	right: 1.2rem;
	bottom: 1.2rem;
	display: grid;
	grid-template-columns: 3px 1fr;
	column-gap: .85rem;
	align-items: center;
	padding: 1rem;
	background: rgba(255,255,255,.92);
	backdrop-filter: blur(12px);
	border-radius: 6px;
}
.founder-photo figcaption span {
	grid-row: span 2;
	width: 3px;
	height: 100%;
	min-height: 44px;
	background: var(--blue);
}
.founder-photo figcaption strong {
	font-size: clamp(1.15rem, 1.8vw, 1.45rem);
	line-height: 1.05;
}
.founder-photo figcaption small {
	color: var(--blue-dark);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .1em;
	font-size: .8rem;
}
.founder-copy h2 { margin-bottom: 1.4rem; }
.founder-copy p:not(.eyebrow) {
	max-width: 690px;
	font-size: 1.06rem;
}
.about-values-section {
	padding-top: 0;
	background: var(--white);
}
.values-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}
.values-grid > div {
	padding: clamp(1.2rem, 3vw, 2rem);
	background: var(--white);
	border-right: 1px solid var(--line);
	border-radius: 0;
}
.values-grid > div:last-child { border-right: 0; }
.values-grid h2 {
	position: relative;
	padding-top: 1rem;
	margin-bottom: .7rem;
	font-size: clamp(1.35rem, 2vw, 2rem);
}
.values-grid h2::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 36px;
	height: 2px;
	background: var(--blue);
}
.about-cta-section { padding-top: 0; }
.legal-hero h1 { font-size: clamp(2.7rem, 5vw, 5.2rem); }
.legal-content {
	font-size: 1rem;
	color: var(--muted);
}
.legal-content h2 {
	margin: 3rem 0 1rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--line);
	font-size: clamp(1.55rem, 2.4vw, 2.45rem);
}
.legal-content h2:first-child {
	margin-top: 0;
	padding-top: 0;
	border-top: 0;
}
.legal-content h3 {
	margin: 1.8rem 0 .7rem;
	font-size: 1.22rem;
}
.legal-content h4 {
	margin: 1.2rem 0 .45rem;
	font-size: 1rem;
}
.legal-content p { color: var(--muted); }
.legal-content ul {
	margin: 0 0 1.2rem 1.2rem;
	list-style: disc;
	color: var(--muted);
}
.legal-content li { margin-bottom: .55rem; }
.legal-content a {
	color: var(--blue-dark);
	font-weight: 750;
	text-decoration: underline;
	text-underline-offset: 3px;
}
.contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 2rem;
	align-items: start;
}
.project-request-section {
	position: relative;
	padding-top: clamp(4.5rem, 8vw, 8rem);
	background: #10151b;
	color: var(--white);
	scroll-margin-top: 90px;
	overflow: hidden;
}
.project-request-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(120deg, rgba(11,120,189,.22), transparent 40%),
		linear-gradient(0deg, rgba(255,255,255,.04), transparent);
	pointer-events: none;
}
.request-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, .86fr) minmax(360px, 1.14fr);
	gap: clamp(2rem, 5vw, 5rem);
	align-items: start;
}
.request-copy {
	position: sticky;
	top: 120px;
	padding-top: 1rem;
}
.request-copy h2,
.request-copy p { color: var(--white); }
.request-copy p:not(.eyebrow) {
	max-width: 560px;
	color: rgba(255,255,255,.74);
	font-size: 1.08rem;
}
.request-benefits {
	display: grid;
	gap: .8rem;
	margin-top: 2rem;
}
.request-benefits li {
	position: relative;
	padding-left: 1.6rem;
	color: rgba(255,255,255,.84);
	font-weight: 750;
}
.request-benefits li::before {
	content: "";
	position: absolute;
	left: 0;
	top: .55rem;
	width: .55rem;
	height: .55rem;
	background: #67c2f5;
	border-radius: 2px;
}
.request-card {
	padding: clamp(1.2rem, 3vw, 2rem);
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}
.request-form-wrap { color: var(--ink); }
.project-request-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}
.project-request-form label { display: grid; gap: .45rem; color: var(--ink); font-weight: 760; }
.project-request-form .full { grid-column: 1 / -1; }
.project-request-form input,
.project-request-form select,
.project-request-form textarea,
.contact-form input, .contact-form select, .contact-form textarea,
.wpcf7 input, .wpcf7 select, .wpcf7 textarea {
	width: 100%;
	border: 1px solid var(--line);
	border-radius: 6px;
	padding: 1rem;
	font: inherit;
	color: var(--ink);
	background: var(--white);
	transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.project-request-form input:focus,
.project-request-form select:focus,
.project-request-form textarea:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
	outline: none;
	border-color: var(--blue);
	box-shadow: 0 0 0 4px rgba(11,120,189,.12);
}
.contact-form textarea, .wpcf7 textarea { resize: vertical; }
.project-request-form textarea { resize: vertical; min-height: 150px; }
.project-request-form .privacy,
.contact-form .check {
	grid-template-columns: auto 1fr;
	align-items: start;
	font-weight: 500;
	color: var(--muted);
}
.project-request-form .privacy input,
.contact-form .check input { width: auto; margin-top: .4rem; }
.project-request-form .privacy a { color: var(--blue-dark); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.project-request-form .hp-field {
	position: absolute;
	left: -10000px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
.form-message {
	margin-bottom: 1rem;
	padding: 1rem;
	border-radius: 6px;
	border: 1px solid transparent;
	font-weight: 650;
}
.form-message ul {
	margin-top: .45rem;
	padding-left: 1.2rem;
	list-style: disc;
}
.form-message.success {
	background: #eaf8f0;
	border-color: #bfe8cf;
	color: #165b35;
}
.form-message.error {
	background: #fff2f0;
	border-color: #ffc8c0;
	color: #8a2417;
}
.wpcf7-submit { background: var(--blue) !important; color: var(--white) !important; cursor: pointer; font-weight: 800; }

.post-list { display: grid; gap: 1rem; }
.post-card {
	padding: 1.3rem;
	border: 1px solid var(--line);
	border-radius: var(--radius);
}
.site-footer {
	padding: 4rem 0 1.5rem;
	background: #10151b;
	color: rgba(255,255,255,.74);
}
.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
	gap: 2rem;
}
.site-footer h2 {
	margin-bottom: 1rem;
	color: var(--white);
	font-size: .9rem;
	text-transform: uppercase;
	letter-spacing: .12em;
}
.site-footer p, .site-footer address, .site-footer li { color: rgba(255,255,255,.7); font-style: normal; }
.site-footer a:hover { color: var(--white); }
.footer-brand {
	display: inline-flex;
	margin-bottom: 1rem;
	background: var(--white);
	border-radius: 6px;
	padding: .6rem .85rem;
}
.footer-logo {
	max-width: 190px;
	max-height: 64px;
	object-position: left center;
}
.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 3rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255,255,255,.12);
}
.footer-bottom nav { display: flex; gap: 1rem; }

.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible {
	opacity: 1;
	transform: none;
}

.gallery-lightbox {
	position: fixed;
	inset: 0;
	z-index: 3000;
	display: grid;
	grid-template-rows: auto 1fr auto;
	align-items: center;
	justify-items: center;
	padding: clamp(1rem, 3vw, 2rem);
	background: rgba(6, 10, 15, .92);
	color: var(--white);
	opacity: 0;
	pointer-events: none;
	transition: opacity .22s ease;
}
.gallery-lightbox.is-open {
	opacity: 1;
	pointer-events: auto;
}
.lightbox-image {
	max-width: min(1400px, 90vw);
	max-height: 88vh;
	object-fit: contain;
	box-shadow: 0 24px 70px rgba(0,0,0,.38);
}
.lightbox-title {
	min-height: 1.4rem;
	margin-top: 1rem;
	color: rgba(255,255,255,.78);
	font-weight: 700;
	text-align: center;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
	position: absolute;
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	border: 1px solid rgba(255,255,255,.24);
	border-radius: 6px;
	background: rgba(255,255,255,.08);
	color: var(--white);
	cursor: pointer;
	font-size: 2rem;
	line-height: 1;
	transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
	background: rgba(11,120,189,.32);
	border-color: rgba(103,194,245,.7);
	transform: translateY(-1px);
}
.lightbox-close:focus-visible,
.lightbox-prev:focus-visible,
.lightbox-next:focus-visible {
	outline: 3px solid #67c2f5;
	outline-offset: 3px;
}
.lightbox-close {
	top: clamp(1rem, 2vw, 1.5rem);
	right: clamp(1rem, 2vw, 1.5rem);
}
.lightbox-prev {
	left: clamp(1rem, 3vw, 2rem);
	top: 50%;
	transform: translateY(-50%);
}
.lightbox-next {
	right: clamp(1rem, 3vw, 2rem);
	top: 50%;
	transform: translateY(-50%);
}
.lightbox-prev:hover,
.lightbox-next:hover { transform: translateY(calc(-50% - 1px)); }
body.lightbox-open { overflow: hidden; }

@media (max-width: 1040px) {
	.primary-nav, .header-cta { display: none; }
	.menu-toggle { display: block; }
	.mobile-panel {
		display: block;
		position: fixed;
		inset: 82px 0 auto 0;
		background: rgba(17,24,32,.96);
		color: var(--white);
		clip-path: inset(0 0 100% 0);
		transition: clip-path .25s ease;
	}
	.mobile-panel.is-open { clip-path: inset(0 0 0 0); }
	.mobile-panel-inner {
		width: var(--container);
		margin: 0 auto;
		padding: 1.5rem 0 2rem;
		display: grid;
		gap: 1.2rem;
	}
	.mobile-panel .menu { display: grid; gap: .9rem; }
	.mobile-panel a { font-size: 1.15rem; font-weight: 800; }
	.mobile-panel .current-menu-item > a,
	.mobile-panel .current_page_item > a,
	.mobile-panel .current-menu-ancestor > a,
	.mobile-panel .current_page_parent > a {
		color: #67c2f5;
	}
	.mobile-panel .current-menu-item > a::after,
	.mobile-panel .current_page_item > a::after,
	.mobile-panel .current-menu-ancestor > a::after,
	.mobile-panel .current_page_parent > a::after {
		content: "";
		display: block;
		width: 42px;
		height: 2px;
		margin-top: .35rem;
		background: currentColor;
	}
	.service-grid { grid-template-columns: repeat(2, 1fr); }
	.process-grid { grid-template-columns: repeat(2, 1fr); }
	.footer-grid { grid-template-columns: repeat(2, 1fr); }
	.request-grid { grid-template-columns: 1fr; }
	.request-copy { position: static; }
	.about-hero-grid { grid-template-columns: 1fr; }
	.founder-photo-hero { justify-self: start; max-width: 560px; }
}

@media (max-width: 760px) {
	:root { --container: min(1180px, calc(100% - 28px)); }
	h1 { font-size: clamp(2.65rem, 15vw, 4rem); }
	.header-inner { min-height: 72px; }
	.mobile-panel { inset: 72px 0 auto 0; }
	.hero { min-height: 650px; }
	.hero-content { padding: 7rem 0 4rem; }
	.section-head-action {
		grid-template-columns: 1fr;
		align-items: start;
	}
	.photo-gallery {
		grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
	}
	.photo-gallery-item.is-wide,
	.photo-gallery-item.is-tall {
		grid-column: auto;
		grid-row: auto;
		aspect-ratio: 4 / 3;
	}
	.trust-grid, .service-grid, .project-grid, .before-after, .process-grid,
	.split-grid, .values-grid, .contact-grid, .footer-grid, .founder-grid {
		grid-template-columns: 1fr;
	}
	.brand-logo { max-width: 190px; max-height: 54px; }
	.trust-grid span { border-right: 1px solid rgba(255,255,255,.12); }
	.project-card-large { grid-column: auto; grid-row: auto; }
	.featured-projects { grid-auto-rows: auto; }
	.project-card { min-height: 360px; }
	.service-row, .service-row:nth-child(even) {
		grid-template-columns: 1fr;
	}
	.service-row:nth-child(even) figure { order: 0; }
	.cta-box, .footer-bottom {
		align-items: flex-start;
		flex-direction: column;
	}
	.button-row .btn { width: 100%; }
	.hero-cta { width: 100%; max-width: 280px; }
	.page-hero { min-height: 470px; }
	.project-request-form { grid-template-columns: 1fr; }
	.request-card { padding: 1rem; }
	.about-hero { padding-top: 3.4rem; }
	.about-story-section { padding-top: 3.2rem; }
	.founder-photo {
		aspect-ratio: 4 / 5;
	}
	.founder-photo-hero { max-width: none; }
	.founder-photo figcaption {
		left: .9rem;
		right: .9rem;
		bottom: .9rem;
	}
	.values-grid > div {
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}
	.values-grid > div:last-child { border-bottom: 0; }
	.lightbox-image {
		max-width: 92vw;
		max-height: 78vh;
	}
	.lightbox-close,
	.lightbox-prev,
	.lightbox-next {
		width: 48px;
		height: 48px;
	}
	.lightbox-prev { left: .75rem; }
	.lightbox-next { right: .75rem; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
	}
	.reveal { opacity: 1; transform: none; }
}
