/* ==========================================================================
   Design Works Studio - editorial theme layer
   Loads after dws.css. The photography is the design; the chrome whispers.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site-header { background: #fff; }

.utility-bar { background: var(--dws-pale); }
.utility-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 9px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}
.utility-tag {
	font-size: 12px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--dws-ink);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.utility-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.utility-right img { height: 18px; width: auto; display: block; opacity: .75; transition: opacity .2s; }
.utility-right a:hover img { opacity: 1; }
.utility-phone {
	font-family: var(--font-serif);
	font-size: 16px;
	font-weight: 700;
	color: var(--dws-ink) !important;
	text-decoration: none;
	white-space: nowrap;
}
.utility-phone:hover { color: var(--dws-blue) !important; }

.mast {
	max-width: 1280px;
	margin: 0 auto;
	padding: 22px 24px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 24px;
	border-bottom: 1px solid #ececec;
}
.mast-nav { display: flex; gap: 34px; }
.mast-nav.mast-nav-left { justify-content: flex-end; }
.mast-nav.mast-nav-right { justify-content: flex-start; }
.mast-nav a {
	font-size: 13px;
	letter-spacing: .16em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--dws-ink-soft);
	padding: 6px 0;
	position: relative;
	white-space: nowrap;
}
.mast-nav a::after {
	content: "";
	position: absolute;
	left: 0; right: 0; bottom: 0;
	height: 1px;
	background: var(--dws-blue);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform .25s ease;
}
.mast-nav a:hover { color: var(--dws-ink); }
.mast-nav a:hover::after { transform: scaleX(1); }
.mast-brand { display: block; text-align: center; }
.mast-brand img { height: 96px; width: auto; display: inline-block; }

/* Sticky compact header: appears after scrolling past the full masthead */
body.header-stuck .mast {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 1500;
	background: #fff;
	max-width: none;
	padding: 8px max(24px, calc((100vw - 1280px) / 2));
	border-bottom: 1px solid #ececec;
	box-shadow: 0 8px 28px rgba(35, 31, 32, .08);
	animation: mast-drop .28s ease;
}
@keyframes mast-drop {
	from { transform: translateY(-100%); }
	to { transform: none; }
}
body.header-stuck .mast-brand img { height: 46px; }
body.header-stuck .mast-nav { gap: 26px; }
body.header-stuck .mast-nav a { font-size: 12px; padding: 4px 0; }
@media (max-width: 900px) {
	body.header-stuck .mast { padding: 6px 18px; }
	body.header-stuck .mast-brand img { height: 44px; }
	body.header-stuck .mobile-panel.open {
		position: fixed;
		top: 57px; left: 0; right: 0;
		z-index: 1499;
		background: #fff;
		max-height: calc(100vh - 57px);
		overflow-y: auto;
		box-shadow: 0 18px 30px rgba(35, 31, 32, .12);
	}
}

.nav-toggle {
	display: none;
	background: none;
	border: 1px solid #ddd;
	border-radius: 6px;
	padding: 10px 14px;
	font-size: 13px;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--dws-ink);
	cursor: pointer;
}
.mobile-panel { display: none; }

@media (max-width: 900px) {
	.utility-tag { display: none; }
	.utility-inner { justify-content: center; }
	.mast {
		grid-template-columns: auto 1fr auto;
		padding: 14px 18px;
	}
	.mast-nav { display: none; }
	.mast-brand { text-align: left; }
	.mast-brand img { height: 64px; }
	.nav-toggle { display: block; justify-self: end; }

	/* Smooth open: slide down + fade, links stagger in */
	.mobile-panel {
		display: block;
		max-height: 0;
		overflow: hidden;
		opacity: 0;
		transform: translateY(-8px);
		transition: max-height .4s cubic-bezier(.3, .7, .3, 1), opacity .28s ease, transform .32s ease;
	}
	.mobile-panel.open {
		max-height: min(72vh, 500px);
		opacity: 1;
		transform: none;
		border-bottom: 1px solid #ececec;
		overflow-y: auto;
	}
	.mobile-panel a {
		display: block;
		padding: 15px 22px;
		font-size: 15px;
		letter-spacing: .1em;
		text-transform: uppercase;
		text-decoration: none;
		color: var(--dws-ink);
		border-top: 1px solid #f2f2f2;
		opacity: 0;
		transform: translateY(-5px);
		transition: opacity .3s ease, transform .3s ease, background .2s;
	}
	.mobile-panel.open a { opacity: 1; transform: none; }
	.mobile-panel.open a:nth-child(1) { transition-delay: .05s; }
	.mobile-panel.open a:nth-child(2) { transition-delay: .09s; }
	.mobile-panel.open a:nth-child(3) { transition-delay: .13s; }
	.mobile-panel.open a:nth-child(4) { transition-delay: .17s; }
	.mobile-panel.open a:nth-child(5) { transition-delay: .21s; }
	.mobile-panel.open a:nth-child(6) { transition-delay: .25s; }
	.mobile-panel.open a:nth-child(7) { transition-delay: .29s; }
	.mobile-panel.open a:nth-child(8) { transition-delay: .33s; }
	@media (prefers-reduced-motion: reduce) {
		.mobile-panel, .mobile-panel a { transition: none; }
	}
	.mobile-panel a:active, .mobile-panel a:hover { background: var(--dws-paper); }
	.mobile-panel .mobile-phone {
		font-family: var(--font-serif);
		font-size: 20px;
		font-weight: 700;
		text-transform: none;
		letter-spacing: 0;
		color: var(--dws-blue);
	}
}

/* --------------------------------------------------------------------------
   Editorial page furniture
   -------------------------------------------------------------------------- */

.ed-wrap { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

.ed-hero { padding: 56px 0 8px; }
.ed-kicker {
	font-size: 12px;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--dws-blue);
	margin-bottom: 14px;
}
.ed-hero h1 {
	font-family: var(--font-serif);
	font-size: clamp(34px, 5vw, 58px);
	font-weight: 400;
	line-height: 1.08;
	color: var(--dws-ink);
}
/* Eyebrow technique: the H1 carries the keyword small; a styled p carries
   the display headline (see generic-design.md) */
h1.h1-eyebrow {
	font-family: var(--font-sans);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--dws-blue);
	line-height: 1.4;
	margin-bottom: 14px;
}
.ed-display {
	font-family: var(--font-serif);
	font-size: clamp(34px, 5vw, 58px);
	font-weight: 400;
	line-height: 1.08;
	color: var(--dws-ink);
}
.ed-lede {
	font-size: 18px;
	line-height: 1.75;
	color: var(--dws-gray);
	max-width: 78ch;
	margin-top: 18px;
}
.ed-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 28px;
	margin-top: 22px;
	padding-top: 18px;
	border-top: 1px solid #ececec;
}
.ed-meta span {
	font-size: 12.5px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--dws-gray-light);
	display: inline-flex;
	align-items: center;
	gap: 7px;
}
.ed-meta strong { color: var(--dws-ink); font-weight: 500; }
.ed-meta a {
	color: var(--dws-ink);
	text-decoration: none;
	border-bottom: 1px dotted #bbb;
	font-weight: 500;
}
.ed-meta a:hover { color: var(--dws-blue); border-bottom-color: var(--dws-blue); }

/* Designer byline - circular headshot chips, like article authors */
.byline {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.byline a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	border: 0;
}
.byline img {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	object-fit: cover;
	object-position: top;
	border: 2px solid #fff;
	box-shadow: 0 0 0 1px #e2e2e2;
	transition: box-shadow .2s;
}
.byline a:hover img { box-shadow: 0 0 0 2px var(--dws-blue); }
.byline .byline-name {
	font-family: var(--font-serif);
	font-size: 15.5px;
	letter-spacing: -.02em;
	text-transform: none;
	color: var(--dws-ink);
}
.byline a:hover .byline-name { color: var(--dws-blue); }

/* --------------------------------------------------------------------------
   Filter bar
   -------------------------------------------------------------------------- */

.filter-bar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin: 36px 0 8px;
	padding: 16px 0;
	border-top: 1px solid #ececec;
	border-bottom: 1px solid #ececec;
}
.filter-bar label {
	font-size: 11.5px;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--dws-gray-light);
	margin-right: -2px;
}
.filter-bar select, .filter-bar input[type="search"] {
	font-size: 14.5px;
	color: var(--dws-ink);
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 6px;
	padding: 9px 12px;
	outline: none;
	font-family: var(--font-sans);
}
.filter-bar select:focus, .filter-bar input[type="search"]:focus { border-color: var(--dws-blue); }
.filter-bar input[type="search"] { flex: 1 1 200px; min-width: 160px; }
.filter-count {
	margin-left: auto;
	font-size: 12.5px;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--dws-gray-light);
	white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Showcase grid
   -------------------------------------------------------------------------- */

.showcase {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
	gap: 36px 28px;
	padding: 40px 0 24px;
}
@media (max-width: 640px) { .showcase { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 26px 16px; } }

.show-card { display: block; text-decoration: none; }
.show-card figure { margin: 0; overflow: hidden; border-radius: 4px; aspect-ratio: 4 / 3; background: var(--dws-paper); }
.show-card img {
	width: 100%; height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .7s cubic-bezier(.2, .6, .2, 1);
}
.show-card:hover img { transform: scale(1.045); }
.show-card h2, .show-card h3 {
	font-family: var(--font-serif);
	font-size: 22px;
	font-weight: 400;
	color: var(--dws-ink);
	margin: 14px 0 3px;
	line-height: 1.25;
	transition: color .2s;
}
.show-card:hover h2, .show-card:hover h3 { color: var(--dws-blue); }
.show-card .show-meta {
	font-size: 12px;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--dws-gray-light);
}
.show-card.is-hidden { display: none; }

/* Staggered entrance */
@media (prefers-reduced-motion: no-preference) {
	.showcase .show-card { opacity: 0; transform: translateY(14px); animation: rise .6s ease forwards; }
	.showcase .show-card:nth-child(1) { animation-delay: .05s; }
	.showcase .show-card:nth-child(2) { animation-delay: .12s; }
	.showcase .show-card:nth-child(3) { animation-delay: .19s; }
	.showcase .show-card:nth-child(4) { animation-delay: .26s; }
	.showcase .show-card:nth-child(5) { animation-delay: .33s; }
	.showcase .show-card:nth-child(n+6) { animation-delay: .4s; }
	@keyframes rise { to { opacity: 1; transform: none; } }
}

/* --------------------------------------------------------------------------
   Project gallery (image-forward, lightbox-ready)
   -------------------------------------------------------------------------- */

/* Masonry columns: every image keeps its natural aspect ratio - nothing
   cropped, nothing padded, no orphan white space */
.plates {
	columns: 3;
	column-gap: 14px;
	padding: 36px 0 10px;
}
@media (max-width: 1000px) { .plates { columns: 2; } }
@media (max-width: 600px) { .plates { columns: 1; } }
.plate {
	display: block;
	width: 100%;
	margin: 0 0 14px;
	border: 0;
	padding: 0;
	background: var(--dws-paper);
	cursor: zoom-in;
	overflow: hidden;
	border-radius: 3px;
	break-inside: avoid;
}
.plate img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform .7s cubic-bezier(.2, .6, .2, 1), opacity .3s;
}
.plate:hover img { transform: scale(1.035); }

.project-nav {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	margin: 44px 0 8px;
	padding-top: 22px;
	border-top: 1px solid #ececec;
}
.project-nav a {
	text-decoration: none;
	font-family: var(--font-serif);
	font-size: 18px;
	color: var(--dws-ink);
	max-width: 44%;
}
.project-nav a:hover { color: var(--dws-blue); }
.project-nav .pn-label {
	display: block;
	font-family: var(--font-sans);
	font-size: 11px;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--dws-gray-light);
	margin-bottom: 4px;
}
.project-nav .pn-next { text-align: right; margin-left: auto; }

/* --------------------------------------------------------------------------
   Lightbox
   -------------------------------------------------------------------------- */

.lightbox {
	position: fixed;
	inset: 0;
	z-index: 2000;
	background: rgba(20, 18, 18, .94);
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.lightbox.open { display: flex; }
.lb-body {
	display: flex;
	flex-direction: column;
	align-items: center;
	will-change: transform;
	max-height: 100%;
}
.lightbox img {
	max-width: min(92vw, 1500px);
	max-height: 74vh;
	object-fit: contain;
	border-radius: 2px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
}
.lb-caption {
	color: #d9d5d3;
	font-size: 14.5px;
	line-height: 1.5;
	max-width: min(88vw, 900px);
	text-align: center;
	margin-top: 14px;
}
.lb-links { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.lb-caption .lb-tags {
	display: block;
	margin-top: 5px;
	font-size: 11.5px;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: #9a938f;
}
.lb-count {
	position: absolute;
	top: 20px; left: 26px;
	color: #9a938f;
	font-size: 12.5px;
	letter-spacing: .18em;
}
.lb-btn {
	position: absolute;
	background: none;
	border: 0;
	color: #d9d5d3;
	cursor: pointer;
	font-size: 40px;
	line-height: 1;
	padding: 18px;
	font-family: var(--font-serif);
	transition: color .2s, transform .2s;
	user-select: none;
}
.lb-btn:hover { color: #fff; }
/* Signature-blue close circle - easy to spot on the dark backdrop */
.lb-close {
	top: 14px; right: 14px;
	width: 46px; height: 46px;
	padding: 0;
	background: var(--dws-blue);
	color: #fff;
	border-radius: 50%;
	font-size: 26px;
	font-family: var(--font-sans);
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	box-shadow: 0 6px 20px rgba(0, 0, 0, .35);
	z-index: 5;
}
.lb-close:hover { background: var(--dws-blue-dark); color: #fff; }
/* Arrows: scrim circles readable over any image, light or dark */
.lb-prev, .lb-next {
	top: 50%;
	transform: translateY(-50%);
	width: 46px;
	height: 46px;
	padding: 0 0 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(20, 18, 18, .55);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, .35);
	border-radius: 50%;
	font-size: 30px;
	line-height: 1;
	box-shadow: 0 4px 16px rgba(0, 0, 0, .35);
	z-index: 9999;
}
.lb-prev { left: 12px; }
.lb-next { right: 12px; }
.lb-prev:hover, .lb-next:hover { background: rgba(20, 18, 18, .8); color: #fff; transform: translateY(-50%); }
@media (max-width: 640px) {
	.lb-prev, .lb-next { width: 42px; height: 42px; font-size: 26px; left: 8px; }
	.lb-next { left: auto; right: 8px; }
	/* keep caption + chips on screen: image never eats the viewport */
	.lightbox img { max-width: 94vw; max-height: 56vh; }
	.lb-caption { font-size: 13px; max-width: 92vw; }
	.lb-caption .lb-tags { margin-top: 3px; }
	.lb-chip { padding: 6px 14px; font-size: 11px; }
	.lb-close { top: 10px; right: 10px; width: 42px; height: 42px; }
	.lightbox { padding: 12px 0 max(14px, env(safe-area-inset-bottom)); }
}

/* --------------------------------------------------------------------------
   Quiet CTA band (project pages)
   -------------------------------------------------------------------------- */

.quiet-cta {
	text-align: center;
	padding: 48px 24px 8px;
}
.quiet-cta p {
	font-family: var(--font-serif);
	font-size: clamp(22px, 3vw, 30px);
	color: var(--dws-ink);
	line-height: 1.4;
	max-width: 26ch;
	margin: 0 auto 20px;
}
.quiet-cta .btn-row { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

.lb-chip {
	display: inline-block;
	margin-top: 10px;
	font-size: 12px;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: #d9d5d3;
	text-decoration: none;
	border: 1px solid #57504d;
	border-radius: 999px;
	padding: 7px 18px;
	transition: border-color .2s, color .2s;
}
.lb-chip:hover { color: #fff; border-color: #fff; }
.lb-chip[hidden] { display: none; }

/* --------------------------------------------------------------------------
   Idea pages ("Design Details")
   -------------------------------------------------------------------------- */

.idea-hero {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 48px;
	align-items: center;
}
@media (max-width: 900px) { .idea-hero { grid-template-columns: 1fr; gap: 26px; } }
.idea-hero-img { width: 100%; height: auto; border-radius: 6px; display: block; }
/* Portrait hero (studio door): cap height so it doesn't tower over the text */
.city-hero-img { max-height: 520px; width: 100%; object-fit: cover; object-position: center 40%; }

.idea-story {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 48px;
	align-items: start;
	padding: 48px 0 8px;
}
@media (max-width: 900px) { .idea-story { grid-template-columns: 1fr; gap: 26px; } }
.idea-story img { width: 100%; height: auto; border-radius: 6px; display: block; }
.idea-story h2, .idea-faqs h2, .idea-why h2 {
	font-family: var(--font-serif);
	font-size: clamp(24px, 2.8vw, 32px);
	font-weight: 400;
	color: var(--dws-ink);
	margin: 0 0 14px;
}
.idea-story h2 + p { margin-bottom: 30px; }
.idea-story p, .idea-faqs p, .idea-why p { font-size: 17px; line-height: 1.8; color: var(--dws-ink-soft); }

.idea-faqs { padding: 44px 0 8px; max-width: 880px; }
.idea-faqs details {
	border-bottom: 1px solid #ececec;
	padding: 4px 0;
}
.idea-faqs summary {
	cursor: pointer;
	font-family: var(--font-serif);
	font-size: 20px;
	color: var(--dws-ink);
	padding: 14px 0;
	list-style: none;
	position: relative;
	padding-right: 34px;
}
.idea-faqs summary::-webkit-details-marker { display: none; }
.idea-faqs summary::after {
	content: "+";
	position: absolute;
	right: 6px; top: 50%;
	transform: translateY(-50%);
	color: var(--dws-blue);
	font-size: 24px;
	font-family: var(--font-sans);
	transition: transform .25s;
}
.idea-faqs details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.idea-faqs details p { padding: 0 0 18px; }
.idea-faqs summary:hover { color: var(--dws-blue); }

.idea-why { padding: 34px 0 8px; max-width: 880px; }

/* --------------------------------------------------------------------------
   Press
   -------------------------------------------------------------------------- */

.press-section { padding: 34px 0 6px; }
.press-section-head { margin-bottom: 22px; }
.press-section-head h2 {
	font-family: var(--font-serif);
	font-size: clamp(26px, 3vw, 36px);
	font-weight: 400;
	color: var(--dws-ink);
	margin: 6px 0 4px;
}
.press-section-head p { font-size: 15px; color: var(--dws-gray-light); }

/* Feature cards - magazine treatment */
.press-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 22px;
}
.press-card {
	position: relative;
	background: #fff;
	border: 1px solid #e9e6e4;
	border-radius: 10px;
	padding: 26px 26px 22px;
	display: flex;
	flex-direction: column;
	gap: 0;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.press-card.is-linked:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 44px rgba(35, 31, 32, .1);
	border-color: #d5e6eb;
}
.press-card .press-logo-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 104px;
	border-bottom: 1px solid #f0edeb;
	padding-bottom: 16px;
	margin-bottom: 16px;
}
/* The logos are the recognition - let them carry the card */
.press-card .press-logo-row img { height: 96px; width: auto; max-width: 210px; object-fit: contain; object-position: left center; }
.press-card .press-logo-row .press-badge { align-self: flex-start; margin-top: 4px; }
.press-badge {
	font-size: 10.5px;
	letter-spacing: .18em;
	text-transform: uppercase;
	font-weight: 600;
	padding: 5px 12px;
	border-radius: 999px;
	white-space: nowrap;
}
.press-badge.b-feature { color: var(--dws-blue-dark); background: #e9f4f7; }
.press-badge.b-award { color: #8a6d1d; background: #f6efdd; }
.press-card .press-head {
	font-family: var(--font-serif);
	font-size: 21px;
	line-height: 1.35;
	color: var(--dws-ink);
	text-decoration: none;
	display: block;
}
.press-card.is-linked .press-head::after {
	content: " \2197";
	font-family: var(--font-sans);
	font-size: 14px;
	color: #c9c4c1;
	transition: color .2s;
}
.press-card.is-linked:hover .press-head { color: var(--dws-blue); }
.press-card.is-linked:hover .press-head::after { color: var(--dws-blue); }
.press-card .press-src {
	font-size: 13px;
	color: var(--dws-gray-light);
	margin-top: 16px;
	padding-top: 12px;
	border-top: 1px solid #f0edeb;
}
.press-card .press-src a { color: var(--dws-gray); text-decoration: none; }
.press-card .press-src a:hover { color: var(--dws-blue); }
.press-card > div:nth-last-child(2) { flex: 1; }

/* Award rows - compact trophy treatment */
.award-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
	gap: 14px;
}
@media (max-width: 480px) { .award-grid { grid-template-columns: 1fr; } }
.award-row {
	display: flex;
	align-items: center;
	gap: 18px;
	background: var(--dws-paper);
	border-radius: 10px;
	padding: 16px 20px;
	text-decoration: none;
	transition: background .25s;
}
a.award-row:hover { background: #ede9e5; }
.award-row img { height: 76px; width: 100px; object-fit: contain; flex-shrink: 0; }
.award-row .award-star { color: #b58e31; font-size: 15px; letter-spacing: 1px; display: block; margin-bottom: 2px; }
.award-row .award-title {
	font-family: var(--font-serif);
	font-size: 16.5px;
	line-height: 1.35;
	color: var(--dws-ink);
	display: block;
}
a.award-row:hover .award-title { color: var(--dws-blue); }
.award-row .award-src { font-size: 12px; color: var(--dws-gray-light); margin-top: 3px; display: block; }

/* --------------------------------------------------------------------------
   Testimonials slider (homepage) - two cards per view, slide on click
   -------------------------------------------------------------------------- */

.reviews-head { text-align: center; margin-bottom: 28px; }
.reviews-head h2 {
	font-family: var(--font-serif);
	font-size: clamp(28px, 3.4vw, 40px);
	font-weight: 400;
	color: var(--dws-ink);
	margin: 6px 0 8px;
}
.reviews-head .stars { color: #b58e31; font-size: 18px; letter-spacing: 3px; }
.reviews-head a { color: var(--dws-gray); font-size: 14px; }
.reviews-head a:hover { color: var(--dws-blue); }

.reviews-slider { position: relative; }
.reviews-viewport { overflow: hidden; }
.reviews-track { display: flex; transition: transform .55s cubic-bezier(.25, .7, .3, 1); }
.reviews-slide {
	flex: 0 0 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
	padding: 4px 2px;
}
@media (max-width: 768px) { .reviews-slide { grid-template-columns: 1fr; } }

.review-card {
	background: var(--dws-paper);
	border-radius: 8px;
	padding: 30px 30px 24px;
	display: flex;
	flex-direction: column;
}
.review-card .rq {
	font-family: var(--font-serif);
	font-size: 52px;
	line-height: .6;
	color: var(--dws-pale);
	color: #bcd9e0;
	margin-bottom: 12px;
}
.review-card p.review-text { font-size: 16px; line-height: 1.75; color: var(--dws-ink-soft); }
.review-card .review-who { margin-top: auto; padding-top: 18px; }
.review-card .review-name { font-family: var(--font-serif); font-size: 17px; color: var(--dws-ink); display: block; }
.review-card .review-context {
	font-size: 11.5px;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--dws-gray-light);
}
.review-card .review-stars { color: #b58e31; font-size: 13px; letter-spacing: 2px; margin-top: 4px; display: block; }

.reviews-nav { display: flex; justify-content: center; align-items: center; gap: 18px; margin-top: 22px; }
.reviews-nav button {
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 999px;
	width: 46px; height: 46px;
	font-size: 22px;
	color: var(--dws-ink);
	cursor: pointer;
	transition: border-color .2s, color .2s;
	line-height: 1;
}
.reviews-nav button:hover { border-color: var(--dws-blue); color: var(--dws-blue); }
.reviews-dots { display: flex; gap: 8px; }
.reviews-dots span {
	width: 8px; height: 8px;
	border-radius: 50%;
	background: #d8d8d8;
	transition: background .25s;
}
.reviews-dots span.on { background: var(--dws-blue); }

/* --------------------------------------------------------------------------
   City hub: full-width firm band
   -------------------------------------------------------------------------- */

.city-band { background: var(--dws-pale); margin-top: 40px; }
.city-band-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 52px 24px;
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 48px;
	align-items: center;
}
@media (max-width: 900px) { .city-band-inner { grid-template-columns: 1fr; gap: 28px; padding: 36px 24px; } }
.city-band img { width: 100%; height: auto; border-radius: 8px; display: block; }
.city-band h2 {
	font-family: var(--font-serif);
	font-size: clamp(26px, 3vw, 36px);
	font-weight: 400;
	color: var(--dws-ink);
	margin: 8px 0 14px;
}
.city-band p { font-size: 17px; line-height: 1.8; color: var(--dws-ink-soft); }

/* --------------------------------------------------------------------------
   Studio map (homepage)
   -------------------------------------------------------------------------- */

.home-map {
	display: grid;
	grid-template-columns: 1fr 1.6fr;
	gap: 0;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
}
@media (max-width: 850px) { .home-map { grid-template-columns: 1fr; } }
.home-map-info {
	background: var(--dws-ink);
	color: #d9d4d2;
	padding: 40px 36px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.home-map-info h2 { font-family: var(--font-serif); font-size: 28px; font-weight: 400; color: #fff; margin-bottom: 10px; }
.home-map-info p { font-size: 15.5px; line-height: 1.75; }
.home-map-info .map-phone {
	font-family: var(--font-serif);
	font-size: 24px;
	font-weight: 700;
	color: #fff !important;
	text-decoration: none;
	margin: 14px 0 2px;
	display: inline-block;
}
.home-map-info .map-phone:hover { color: var(--dws-pale) !important; }
.home-map-info a { color: #b5aeab; }
.home-map-info a:hover { color: #fff; }
.home-map-info .map-stars { color: #d4b05a; letter-spacing: 2px; }
.home-map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }

/* --------------------------------------------------------------------------
   Footer - dark editorial, hot links driven by Search Console demand
   -------------------------------------------------------------------------- */

.site-footer { background: var(--dws-ink); margin-top: 70px; }
.foot-grid {
	max-width: 1280px;
	margin: 0 auto;
	padding: 54px 24px 40px;
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
	gap: 40px;
}
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 34px 24px; } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; } }

.foot-brand .wordmark {
	font-family: var(--font-serif);
	font-size: 26px;
	color: #fff;
	text-decoration: none;
	display: inline-block;
	line-height: 1.2;
}
.foot-brand .foot-tag {
	font-size: 11.5px;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: #8f8885;
	margin: 10px 0 18px;
}
.foot-brand p.foot-blurb { font-size: 14.5px; line-height: 1.7; color: #b5aeab; max-width: 34ch; }
.foot-social { display: flex; gap: 12px; margin-top: 18px; }
.foot-social img { height: 20px; width: auto; opacity: .8; transition: opacity .2s; }
.foot-social a:hover img { opacity: 1; }

.site-footer h4.foot-sub { margin-top: 24px; }
.site-footer h4 {
	font-family: var(--font-sans);
	font-size: 11.5px;
	font-weight: 500;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: #8f8885;
	margin-bottom: 16px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer ul li { margin-bottom: 9px; }
.site-footer ul a {
	color: #d9d4d2;
	text-decoration: none;
	font-size: 14.5px;
	transition: color .2s;
}
.site-footer ul a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

.foot-contact address { font-style: normal; font-size: 14.5px; line-height: 1.8; color: #d9d4d2; }
.foot-contact .foot-phone {
	font-family: var(--font-serif);
	font-size: 22px;
	font-weight: 700;
	color: #fff !important;
	text-decoration: none;
	display: inline-block;
	margin: 8px 0 4px;
}
.foot-contact .foot-phone:hover { color: var(--dws-pale) !important; }
.foot-contact a { color: #b5aeab; }
.foot-contact a:hover { color: #fff; }

.foot-bottom { border-top: 1px solid #3a3536; }
.foot-bottom-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 18px 24px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
}
.foot-bottom p { font-size: 12.5px; color: #8f8885; }
.foot-badges { display: flex; align-items: center; gap: 8px; }
.foot-badges img { height: 34px; width: auto; opacity: .9; }

/* --------------------------------------------------------------------------
   Homepage - editorial rebuild (all original content, new bones)
   -------------------------------------------------------------------------- */

/* padding-top only - .ed-wrap's side padding must survive on mobile */
.home-section { padding-top: 64px; }

/* Spaces quartet - image tiles on the pale band */
.home-spaces { background: var(--dws-pale); padding: 34px 0 36px; }
/* Deliberately quiet - it's an h2 for search engines, not a showpiece */
.home-spaces .home-spaces-title {
	text-align: center;
	font-family: var(--font-serif);
	font-style: italic;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0;
	text-transform: none;
	color: var(--dws-gray-light);
	margin: 0 24px 18px;
}
.sec-kicker {
	font-size: 12px;
	letter-spacing: .24em;
	text-transform: uppercase;
	color: var(--dws-blue);
	font-weight: 500;
}
.home-spaces-grid {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 16px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}
@media (max-width: 900px) { .home-spaces-grid { grid-template-columns: repeat(2, 1fr); } }

.hs-tile {
	position: relative;
	display: block;
	height: 300px;
	border-radius: 6px;
	overflow: hidden;
	text-decoration: none;
}
@media (max-width: 900px) { .hs-tile { height: 200px; } }
.hs-img {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: transform .8s cubic-bezier(.2, .6, .2, 1);
}
.hs-tile:hover .hs-img { transform: scale(1.055); }
.hs-img::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, .04) 42%, rgba(20, 18, 18, .72));
}
.hs-img-1 { background-image: url('/images/home/spaces-furnishings.jpg'); }
.hs-img-2 { background-image: url('/images/home/spaces-commercial.jpg'); }
.hs-img-3 { background-image: url('/images/home/spaces-construction.jpg'); }
.hs-img-4 { background-image: url('/images/home/spaces-remodel.jpg'); }
.hs-label {
	position: absolute;
	left: 22px; right: 22px; bottom: 18px;
	color: #fff;
	font-family: var(--font-serif);
	font-size: 25px;
	letter-spacing: -.02em;
	line-height: 1.2;
	text-shadow: 0 2px 14px rgba(0, 0, 0, .35);
}
.hs-sub {
	display: block;
	font-family: var(--font-sans);
	font-size: 11px;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .9);
	margin-top: 6px;
	opacity: 0;
	transform: translateY(5px);
	transition: opacity .35s, transform .35s;
}
.hs-tile:hover .hs-sub { opacity: 1; transform: none; }

/* Press strip - static and centered on desktop, auto-scrolling marquee on mobile */
.home-press { border-bottom: 1px solid #f0f0f0; text-align: center; padding: 30px 0 34px; }
.home-press .sec-kicker { display: block; margin-bottom: 0; color: var(--dws-gray-light); }
.home-press-viewport { overflow: hidden; }
.home-press-track { display: flex; justify-content: center; }
.home-press-set { display: flex; align-items: center; gap: 54px; }
.home-press-set[aria-hidden] { display: none; }
/* Press logo files are 160x160 squares with internal padding - size the
   box big enough that the mark inside reads at a glance */
.home-press-set img {
	height: 132px;
	width: auto;
	object-fit: contain;
	filter: grayscale(1);
	opacity: .75;
	transition: filter .3s, opacity .3s;
}
.home-press-set img:hover { filter: grayscale(0); opacity: 1; }

@media (max-width: 768px) {
	.home-press-track {
		justify-content: flex-start;
		width: max-content;
		animation: press-scroll 26s linear infinite;
	}
	.home-press-set { gap: 44px; padding-right: 44px; }
	.home-press-set[aria-hidden] { display: flex; }
	.home-press-set img { height: 96px; }
	@keyframes press-scroll {
		from { transform: translateX(0); }
		to { transform: translateX(-50%); }
	}
	@media (prefers-reduced-motion: reduce) {
		.home-press-track { animation: none; }
	}
}

/* Intro: text + team photo */
.home-intro {
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: 56px;
	align-items: center;
}
@media (max-width: 900px) { .home-intro { grid-template-columns: 1fr; gap: 34px; } }
.home-kicker-h1 {
	font-family: var(--font-sans);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--dws-blue);
	margin-bottom: 12px;
}
/* .home-intro p outranks a bare class - scope the eyebrow to win */
.home-intro p.home-eyebrow {
	font-family: var(--font-sans);
	font-size: 10.5px;
	line-height: 1.5;
	font-weight: 500;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--dws-gray-light);
	margin-bottom: 10px;
}
@media (max-width: 640px) {
	.home-intro p.home-eyebrow { font-size: 8.5px; letter-spacing: .14em; margin-bottom: 6px; }
}
.home-intro h1, .home-intro h2, .home-feature h2, .home-overlay-card h2 {
	font-family: var(--font-serif);
	font-size: clamp(30px, 3.6vw, 44px);
	font-weight: 400;
	color: var(--dws-ink);
	line-height: 1.12;
	margin-bottom: 20px;
}
.home-intro p, .home-feature p, .home-overlay-card p {
	font-size: 17px;
	line-height: 1.8;
	color: var(--dws-ink-soft);
}
.home-intro .home-photo img { width: 100%; height: auto; border-radius: 6px; display: block; }

.chip-row { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.chip-row .chip-label {
	flex-basis: 100%;
	font-size: 11.5px;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--dws-gray-light);
	margin-bottom: 2px;
}
.chip-row a {
	font-size: 13px;
	letter-spacing: .05em;
	text-transform: uppercase;
	color: var(--dws-gray);
	text-decoration: none;
	border: 1px solid #e2e2e2;
	border-radius: 999px;
	padding: 8px 16px;
	transition: border-color .2s, color .2s, background .2s;
}
.chip-row a:hover { border-color: var(--dws-blue); color: var(--dws-blue); background: #f4fafc; }

/* Feature: image + card */
.home-feature {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 48px;
	align-items: center;
}
@media (max-width: 900px) { .home-feature { grid-template-columns: 1fr; gap: 28px; } }
.home-feature img { width: 100%; height: auto; border-radius: 6px; display: block; }
.home-feature h3 {
	font-family: var(--font-sans);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: #85908c;
	margin: 26px 0 8px;
}
.home-feature .dws-button-wrapper { margin-top: 28px; }

/* Why-choose: full image with overlapping card */
.home-overlay-img img { width: 100%; height: auto; border-radius: 6px; display: block; }
.home-overlay-card {
	background: #fff;
	border-radius: 8px;
	box-shadow: rgba(0, 0, 0, .08) 0 -14px 40px;
	max-width: min(92%, 1080px);
	margin: -80px auto 0;
	position: relative;
	padding: 44px 48px 34px;
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 44px;
}
@media (max-width: 900px) { .home-overlay-card { grid-template-columns: 1fr; margin-top: -40px; padding: 30px 26px 22px; gap: 24px; } }
.home-overlay-card h2 { font-size: clamp(26px, 3vw, 34px); }
.home-overlay-card p { margin-bottom: 16px; }
.home-overlay-card p i { color: var(--dws-ink); font-style: italic; font-family: var(--font-serif); font-size: 18.5px; }
.home-overlay-card ul { list-style: none; margin: 0; padding: 0; }
.home-overlay-card ul li {
	font-size: 16.5px;
	line-height: 1.7;
	color: var(--dws-ink-soft);
	padding: 9px 0 9px 24px;
	position: relative;
	border-bottom: 1px solid #f2f2f2;
}
.home-overlay-card ul li::before {
	content: "";
	position: absolute;
	left: 4px; top: 20px;
	width: 7px; height: 7px;
	border-radius: 50%;
	background: var(--dws-blue);
}
.home-overlay-card .see-all { display: inline-block; margin-top: 14px; font-weight: 600; color: var(--dws-blue); text-decoration: none; }
.home-overlay-card .see-all:hover { text-decoration: underline; }

/* --------------------------------------------------------------------------
   Homepage refinements - same content and structure, calmer finish
   -------------------------------------------------------------------------- */

.home-banner .main-image-inner a.pure-button-primary {
	border-radius: 6px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, .25);
}

.press-dws { border-bottom: 1px solid #f0f0f0; }
.press-dws-inner { padding: 22px 0 !important; }
img.press-logo { filter: grayscale(1); opacity: .62; transition: filter .3s, opacity .3s; }
.press-logos:hover img.press-logo { filter: grayscale(0); opacity: 1; }

.about-dws { padding-top: 44px; }
.about-dws h2 { margin-bottom: 24px; }

p.pop-search {
	outline: none !important;
	border: 1px solid #e2e2e2;
	border-radius: 999px !important;
	padding: 8px 4px !important;
	transition: border-color .2s, background .2s;
}
p.pop-search:hover { border-color: var(--dws-blue); background: #f4fafc; }
p.pop-search a {
	font-size: 13px !important;
	letter-spacing: .06em;
	color: var(--dws-gray);
	text-transform: uppercase;
}
p.pop-search:hover a { color: var(--dws-blue); }

div.text-overlay-div { padding: 34px 34px 10px; box-shadow: rgba(0, 0, 0, .08) 0 -14px 30px; }
