:root {
	--dci-bg: #fff;
	--dci-ink: #000;
	--dci-muted: #555;
	--dci-line: #d8d8d8;
	--dci-panel: #f5f5f5;
	--dci-accent: #000;
	--dci-wrap: min(100% - 32px, 1180px);
	--dci-radius: 0;
	--dci-gap: clamp(24px, 4vw, 56px);
	--dci-head: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--dci-bg);
	color: var(--dci-ink);
	font-family: var(--dci-head);
	font-size: 16px;
	line-height: 1.65;
	letter-spacing: 0;
	text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .25em; }
img { display: block; max-width: 100%; height: auto; }
svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

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

.dci-site-header {
	position: sticky;
	top: 0;
	z-index: 30;
	background: rgba(255,255,255,.94);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid transparent;
}
.dci-header-inner {
	width: var(--dci-wrap);
	margin: 0 auto;
	min-height: 96px;
	display: grid;
	grid-template-columns: 220px 1fr auto;
	gap: 24px;
	align-items: center;
}
.dci-logo-link img,
.custom-logo-link img {
	width: 205px;
	max-height: 72px;
	object-fit: contain;
	object-position: left center;
}
.dci-primary-menu,
.dci-footer-menu,
.dci-socials {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	gap: clamp(20px, 3vw, 48px);
}
.dci-primary-menu { justify-content: center; }
.dci-primary-menu a {
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;
	border-bottom: 2px solid transparent;
	padding: 8px 0;
	transition: border-color .2s ease, opacity .2s ease;
}
.dci-primary-menu .current-menu-item > a,
.dci-primary-menu a:hover { border-color: currentColor; }
.dci-menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid var(--dci-ink);
	background: transparent;
	color: var(--dci-ink);
}
.dci-menu-toggle span,
.dci-menu-toggle::before,
.dci-menu-toggle::after {
	content: "";
	display: block;
	width: 20px;
	height: 2px;
	margin: 4px auto;
	background: currentColor;
}

.dci-button,
.wp-block-button__link,
.dci-form button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 22px;
	min-height: 50px;
	padding: 0 28px;
	background: var(--dci-accent);
	color: #fff;
	border: 1px solid var(--dci-accent);
	border-radius: var(--dci-radius);
	font-weight: 800;
	font-size: 14px;
	line-height: 1;
	text-decoration: none;
	box-shadow: 0 10px 24px rgba(0,0,0,.08);
	transition: transform .2s ease, background .2s ease, color .2s ease;
}
.dci-button:hover,
.wp-block-button__link:hover,
.dci-form button:hover {
	transform: translateY(-2px);
	background: #222;
}
.dci-button.is-outline,
.is-style-outline > .wp-block-button__link {
	background: transparent;
	color: var(--dci-ink);
	box-shadow: none;
}

.dci-main,
.entry-content > * {
	width: var(--dci-wrap);
	margin-left: auto;
	margin-right: auto;
}
.entry-content > .alignwide { width: var(--dci-wrap); }
.entry-content > .alignfull { width: 100%; max-width: none; }
.dci-section,
.wp-block-group.dci-section {
	padding: clamp(48px, 7vw, 88px) 0;
	border-top: 1px solid var(--dci-line);
}
.dci-section:first-child { border-top: 0; }
.dci-hero {
	display: grid;
	grid-template-columns: minmax(0, .85fr) minmax(320px, 1.15fr);
	align-items: center;
	gap: var(--dci-gap);
	padding: clamp(42px, 7vw, 82px) 0 clamp(52px, 7vw, 76px);
}
.dci-hero-logo {
	display: flex;
	justify-content: center;
	align-items: center;
}
.dci-hero-logo img { max-height: 470px; object-fit: contain; }
.dci-eyebrow {
	margin: 0 0 18px;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .08em;
}
h1, h2, h3, h4, h5, h6 {
	font-family: var(--dci-head);
	line-height: .98;
	letter-spacing: 0;
	margin: 0 0 20px;
}
h1, .dci-display {
	font-size: clamp(42px, 6.4vw, 76px);
	font-weight: 900;
}
h2 { font-size: clamp(30px, 4vw, 44px); font-weight: 900; }
h3 { font-size: clamp(20px, 2.2vw, 26px); font-weight: 850; }
p { margin: 0 0 22px; }
.dci-lead {
	font-size: clamp(17px, 1.7vw, 21px);
	line-height: 1.55;
	max-width: 560px;
}
.dci-actions { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; margin-top: 28px; }
.dci-text-link { font-weight: 800; text-decoration: underline; text-underline-offset: .35em; }

.dci-split,
.wp-block-columns.dci-split {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
	gap: var(--dci-gap);
	align-items: center;
}
.dci-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
}
.dci-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.dci-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--dci-gap); }
.dci-card,
.dci-service-card,
.dci-stat,
.dci-post-card,
.dci-project-card {
	position: relative;
}
.dci-service-card {
	padding: 28px 34px 10px 34px;
	border-left: 1px solid var(--dci-line);
	min-height: 220px;
}
.dci-service-card:first-child { border-left: 0; }
.dci-service-card svg { width: 36px; height: 36px; margin-bottom: 28px; }
.dci-service-card ul {
	padding: 0;
	margin: 26px 0;
	list-style: none;
}
.dci-service-card li { margin: 8px 0; }
.dci-service-card li::before { content: "✓"; margin-right: 14px; font-weight: 900; }

.dci-project-grid,
.dci-post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px 20px;
}
.dci-project-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.dci-project-card a,
.dci-post-card a { text-decoration: none; }
.dci-project-card figure,
.dci-post-card figure,
.dci-media {
	overflow: hidden;
	margin: 0 0 14px;
	background: var(--dci-panel);
}
.dci-project-card img,
.dci-post-card img,
.dci-media img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	filter: grayscale(1);
	transition: transform .45s ease, filter .45s ease;
}
.dci-project-card:hover img,
.dci-post-card:hover img,
.dci-media:hover img { transform: scale(1.035); filter: grayscale(1) contrast(1.1); }
.dci-meta { color: var(--dci-muted); font-size: 13px; margin-bottom: 8px; }
.dci-arrow-link { display: inline-flex; gap: 12px; align-items: center; font-weight: 800; margin-top: 10px; }

.dci-filter-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	border-top: 1px solid var(--dci-line);
	padding-top: 28px;
	margin-bottom: 28px;
	flex-wrap: wrap;
}
.dci-filters {
	display: flex;
	align-items: center;
	gap: 28px;
	flex-wrap: wrap;
}
.dci-filters a,
.dci-sort,
.dci-search input {
	font-weight: 700;
	text-decoration: none;
}
.dci-filters .is-active { border-bottom: 2px solid currentColor; }
.dci-search {
	position: relative;
	min-width: min(320px, 100%);
}
.dci-search input,
.dci-form input,
.dci-form textarea {
	width: 100%;
	min-height: 52px;
	border: 1px solid var(--dci-line);
	border-radius: 0;
	background: #fff;
	padding: 0 16px;
	font: inherit;
}
.dci-form textarea { min-height: 168px; padding-top: 14px; resize: vertical; }

.dci-process {
	display: grid;
	grid-template-columns: .9fr repeat(4, 1fr);
	gap: 28px;
	align-items: start;
}
.dci-step-number {
	display: inline-flex;
	width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	background: var(--dci-ink);
	color: #fff;
	border-radius: 999px;
	font-weight: 900;
	margin-bottom: 20px;
}
.dci-stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	background: var(--dci-panel);
	padding: 36px 20px;
}
.dci-stat {
	text-align: center;
	border-left: 1px solid var(--dci-line);
	padding: 0 24px;
}
.dci-stat:first-child { border-left: 0; }
.dci-stat strong {
	display: block;
	font-size: clamp(34px, 4.2vw, 48px);
	line-height: 1;
	margin-bottom: 10px;
}

.dci-cta {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 28px;
	align-items: center;
	background: var(--dci-panel);
	border: 1px solid #e7e7e7;
	padding: clamp(24px, 4vw, 42px);
}
.dci-cta-icon {
	display: inline-flex;
	width: 72px;
	height: 72px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--dci-line);
	border-radius: 50%;
}

.dci-site-footer {
	border-top: 1px solid var(--dci-line);
	margin-top: 32px;
}
.dci-footer-inner,
.dci-footer-bottom {
	width: var(--dci-wrap);
	margin: 0 auto;
}
.dci-footer-inner {
	display: grid;
	grid-template-columns: 1.3fr .7fr .7fr 1fr;
	gap: 44px;
	padding: 38px 0;
}
.dci-footer-menu {
	display: block;
}
.dci-footer-menu li { margin: 4px 0; }
.dci-footer-menu a { text-decoration: none; }
.dci-footer-title { font-weight: 900; margin-bottom: 12px; }
.dci-footer-bottom {
	border-top: 1px solid var(--dci-line);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 18px 0 28px;
	font-size: 13px;
}
.dci-socials { gap: 26px; }
.dci-socials a { display: inline-flex; text-decoration: none; }

.dci-article {
	max-width: 820px;
	margin: 0 auto;
	padding: 56px 0;
}
.dci-article-header { text-align: center; margin-bottom: 36px; }
.dci-article-content > * { max-width: 760px; margin-left: auto; margin-right: auto; }
.dci-article-content img { filter: grayscale(1); }
.dci-project-details {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	border-top: 1px solid var(--dci-line);
	border-bottom: 1px solid var(--dci-line);
	padding: 24px 0;
	margin: 32px 0;
}
.dci-detail-label {
	display: block;
	color: var(--dci-muted);
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 900;
	letter-spacing: .08em;
}
.dci-gallery {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-top: 38px;
}

.dci-form-grid {
	display: grid;
	grid-template-columns: 1.25fr .75fr;
	gap: var(--dci-gap);
	align-items: start;
}
.dci-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.dci-form p { margin-bottom: 16px; }
.dci-form-status { min-height: 22px; color: var(--dci-muted); }
.dci-contact-list { list-style: none; padding: 0; margin: 20px 0 34px; }
.dci-contact-list li { display: grid; grid-template-columns: 34px 1fr; gap: 20px; margin: 22px 0; }
.dci-faq details {
	border-top: 1px solid var(--dci-line);
	padding: 18px 8px;
}
.dci-faq details:last-child { border-bottom: 1px solid var(--dci-line); }
.dci-faq summary {
	cursor: pointer;
	font-weight: 900;
	list-style: none;
	display: flex;
	justify-content: space-between;
	gap: 20px;
}
.dci-faq summary::after { content: "+"; font-size: 24px; line-height: 1; }
.dci-faq details[open] summary::after { content: "−"; }

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

@media (max-width: 900px) {
	.dci-header-inner {
		min-height: 78px;
		grid-template-columns: 1fr auto;
	}
	.dci-menu-toggle { display: block; }
	.dci-header-cta { display: none; }
	.dci-primary-nav {
		grid-column: 1 / -1;
		display: none;
		padding: 0 0 24px;
	}
	.dci-primary-nav.is-open { display: block; }
	.dci-primary-menu { align-items: flex-start; flex-direction: column; gap: 10px; }
	.dci-hero,
	.dci-split,
	.wp-block-columns.dci-split,
	.dci-form-grid,
	.dci-process {
		grid-template-columns: 1fr;
	}
	.dci-grid,
	.dci-project-grid,
	.dci-project-grid.four,
	.dci-post-grid,
	.dci-stats,
	.dci-footer-inner,
	.dci-project-details {
		grid-template-columns: 1fr 1fr;
	}
	.dci-service-card:nth-child(odd),
	.dci-stat:nth-child(odd) { border-left: 0; }
	.dci-cta { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
	:root { --dci-wrap: min(100% - 24px, 1180px); }
	.dci-logo-link img,
	.custom-logo-link img { width: 168px; }
	h1, .dci-display { font-size: clamp(40px, 13vw, 58px); }
	.dci-grid,
	.dci-grid.three,
	.dci-grid.two,
	.dci-project-grid,
	.dci-project-grid.four,
	.dci-post-grid,
	.dci-stats,
	.dci-footer-inner,
	.dci-footer-bottom,
	.dci-project-details,
	.dci-gallery,
	.dci-form-row {
		grid-template-columns: 1fr;
	}
	.dci-footer-bottom { display: grid; }
	.dci-service-card,
	.dci-stat {
		border-left: 0;
		border-top: 1px solid var(--dci-line);
		padding-left: 0;
	}
	.dci-service-card:first-child,
	.dci-stat:first-child { border-top: 0; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: .001ms !important;
		scroll-behavior: auto !important;
		transition-duration: .001ms !important;
	}
}

