/*
Theme Name: DoorHan Deutschland
Theme URI: https://doorhan-service.de
Author: DoorHan Deutschland
Description: Maßgeschneidertes WordPress-Theme für DoorHan Deutschland.
Version: 1.2.2
Requires at least: 6.5
Requires PHP: 8.1
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: doorhan-deutschland
*/

:root {
	--dh-red: #e30613;
	--dh-red-dark: #bd0610;
	--dh-ink: #17191c;
	--dh-muted: #6c7075;
	--dh-line: #e3e4e5;
	--dh-soft: #f3f4f4;
}

html { scroll-behavior: smooth; }
* { box-sizing: border-box; }
body {
	margin: 0;
	background: #fff;
	color: var(--dh-ink);
	font-family: Arial, Helvetica, sans-serif;
	-webkit-font-smoothing: antialiased;
}
body.dh-menu-open { overflow: hidden; }
body.dh-modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
.dh-wrap { width: min(1280px, calc(100% - 72px)); margin: 0 auto; }
.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.dh-topbar {
	background: #202225;
	color: #c8c9cb;
	font-size: 11px;
	letter-spacing: .08em;
	text-transform: uppercase;
}
.dh-topbar__inner {
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.dh-topbar p { margin: 0; }
.dh-topbar__links { display: flex; gap: 28px; align-items: center; }
.dh-topbar__links a { color: #fff; }
.dh-header { background: rgba(255,255,255,.98); position: relative; z-index: 50; }
.dh-navrow {
	height: 88px;
	display: grid;
	grid-template-columns: 280px 1fr auto;
	align-items: center;
	gap: 36px;
}
.dh-brand {
	display: inline-grid;
	grid-template-columns: 43px auto;
	grid-template-rows: auto auto;
	align-items: center;
	column-gap: 9px;
	width: max-content;
}
.dh-brand__mark {
	grid-row: 1 / 3;
	width: 42px;
	height: 42px;
	padding: 9px 8px;
	background: var(--dh-red);
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
	transform: skew(-7deg);
}
.dh-brand__mark i {
	height: 4px;
	background: #fff;
	display: block;
	transform: skew(7deg);
}
.dh-brand__mark i:nth-child(2) { width: 76%; }
.dh-brand__name {
	font-size: 24px;
	line-height: 24px;
	font-weight: 900;
	letter-spacing: -.05em;
}
.dh-brand__country {
	color: #777;
	font-size: 8px;
	font-weight: 700;
	letter-spacing: .26em;
}
.dh-brand__image {
	width: auto;
	max-width: 235px;
	max-height: 58px;
	object-fit: contain;
}
.dh-brand:has(.dh-brand__image) {
	display: inline-flex;
	grid-template-columns: none;
}
.dh-nav {
	display: flex;
	justify-content: center;
	gap: clamp(22px, 3vw, 46px);
	font-size: 13px;
	font-weight: 700;
}
.dh-nav a { padding: 34px 0; position: relative; }
.dh-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 100%;
	bottom: 22px;
	height: 2px;
	background: var(--dh-red);
	transition: right .25s ease;
}
.dh-nav a:hover::after, .dh-nav a:focus-visible::after { right: 0; }
.dh-menu-toggle {
	display: none;
	width: 42px;
	height: 42px;
	padding: 10px;
	border: 0;
	background: transparent;
}
.dh-menu-toggle > span {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--dh-ink);
	margin: 5px 0;
}
.dh-button {
	min-height: 52px;
	padding: 0 28px;
	border: 0;
	background: var(--dh-red);
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .06em;
	text-transform: uppercase;
	transition: background .2s, transform .2s;
}
.dh-button:hover, .dh-button:focus-visible {
	background: var(--dh-red-dark);
	color: #fff;
	transform: translateY(-1px);
}
.dh-button--small { min-height: 44px; padding: 0 21px; font-size: 10px; }
.dh-button--dark { background: var(--dh-ink); color: #fff; }
.dh-button--dark:hover, .dh-button--dark:focus-visible { background: #030405; }

.dh-hero {
	min-height: 700px;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	color: #fff;
}
.dh-hero__image {
	position: absolute;
	inset: 0;
	background-position: center;
	background-size: cover;
	transform: scale(1.015);
}
.dh-hero__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(9,11,14,.84) 0%, rgba(9,11,14,.63) 37%, rgba(9,11,14,.05) 70%);
}
.dh-hero__content {
	position: relative;
	z-index: 2;
	padding-bottom: 70px;
}
.dh-eyebrow, .dh-kicker {
	color: var(--dh-red);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .18em;
	text-transform: uppercase;
}
.dh-eyebrow { color: #fff; display: flex; align-items: center; gap: 13px; }
.dh-eyebrow span { width: 36px; height: 3px; background: var(--dh-red); }
.dh-hero h1 {
	max-width: 790px;
	margin: 25px 0 30px;
	font-size: clamp(58px, 7.4vw, 106px);
	font-weight: 800;
	letter-spacing: -.065em;
	line-height: .89;
}
.dh-hero h1 em { color: var(--dh-red); font-style: normal; }
.dh-hero__content > p {
	max-width: 600px;
	margin: 0;
	color: #e1e2e3;
	font-size: 17px;
	line-height: 1.7;
}
.dh-hero__actions {
	display: flex;
	align-items: center;
	gap: 32px;
	margin-top: 40px;
}
.dh-text-link {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .06em;
	text-transform: uppercase;
}
.dh-text-link span { color: var(--dh-red); font-size: 18px; margin-left: 9px; }
.dh-hero__bottom {
	position: absolute;
	z-index: 2;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}
.dh-hero__bottom > div {
	min-height: 88px;
	padding: 21px 28px;
	background: rgba(23,25,28,.93);
	border-right: 1px solid rgba(255,255,255,.12);
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.dh-hero__bottom > div:first-child { border-left: 4px solid var(--dh-red); }
.dh-hero__bottom strong { font-size: 13px; }
.dh-hero__bottom span { color: #9d9fa2; font-size: 11px; }

.dh-section { padding: 118px 0; }
.dh-section-heading {
	margin-bottom: 58px;
	display: grid;
	grid-template-columns: 1.15fr .85fr;
	align-items: end;
	gap: 60px;
}
.dh-section-heading h2,
.dh-quality__copy h2,
.dh-contact__copy h2 {
	margin: 18px 0 0;
	font-size: clamp(42px, 5vw, 66px);
	letter-spacing: -.055em;
	line-height: .98;
}
.dh-section-heading > p {
	max-width: 520px;
	margin: 0 0 5px;
	color: var(--dh-muted);
	font-size: 15px;
	line-height: 1.8;
}
.dh-product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.dh-product-card {
	min-height: 390px;
	padding: 34px;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
	background: #24272b;
	color: #fff;
}
.dh-product-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(7,8,10,.08) 10%, rgba(7,8,10,.92) 100%);
}
.dh-product-card > img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .82;
	transition: transform .45s, opacity .45s;
}
.dh-product-card:hover > img { transform: scale(1.05); opacity: .96; }
.dh-product-card__number {
	position: absolute;
	z-index: 2;
	top: 28px;
	right: 30px;
	color: rgba(255,255,255,.62);
	font-size: 12px;
	font-weight: 800;
}
.dh-product-card__copy { position: relative; z-index: 2; max-width: 440px; }
.dh-product-card__copy h3 {
	margin: 0 0 12px;
	font-size: 34px;
	letter-spacing: -.04em;
}
.dh-product-card__copy p {
	max-width: 390px;
	margin: 0 0 25px;
	color: #d0d1d2;
	font-size: 14px;
	line-height: 1.6;
}
.dh-product-card__copy > span {
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .11em;
	text-transform: uppercase;
}
.dh-product-card__copy b { color: var(--dh-red); font-size: 17px; margin-left: 7px; }

.dh-measure-service { background: #fff; }
.dh-service-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}
.dh-service-card {
	min-height: 430px;
	padding: 42px;
	background: #eef0f1;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	overflow: hidden;
}
.dh-service-card--featured {
	background: var(--dh-red);
	color: #fff;
}
.dh-service-card__number {
	position: absolute;
	top: 26px;
	right: 28px;
	color: rgba(23,25,28,.4);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .12em;
}
.dh-service-card--featured .dh-service-card__number { color: rgba(255,255,255,.6); }
.dh-service-card__icon {
	width: 72px;
	height: 72px;
	border: 2px solid currentColor;
	display: grid;
	place-items: center;
	color: var(--dh-red);
	font-size: 34px;
	font-weight: 300;
}
.dh-service-card--featured .dh-service-card__icon { color: #fff; }
.dh-service-card h3 {
	margin: 39px 0 17px;
	font-size: 30px;
	letter-spacing: -.04em;
}
.dh-service-card p {
	margin: 0 0 32px;
	color: #666a6f;
	font-size: 14px;
	line-height: 1.72;
}
.dh-service-card--featured p { color: rgba(255,255,255,.83); }
.dh-service-card .dh-button,
.dh-service-card__phone { margin-top: auto; }
.dh-service-card__phone {
	padding-bottom: 4px;
	border-bottom: 2px solid var(--dh-red);
	font-size: 20px;
	font-weight: 800;
}

.dh-quality {
	min-height: 750px;
	background: #1f2226;
	color: #fff;
	display: grid;
	grid-template-columns: 1.08fr .92fr;
}
.dh-quality__visual {
	min-height: 650px;
	position: relative;
	background-position: center;
	background-size: cover;
}
.dh-quality__label {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 230px;
	height: 138px;
	padding: 34px;
	background: var(--dh-red);
	display: flex;
	flex-direction: column;
}
.dh-quality__label strong { font-size: 28px; text-transform: uppercase; }
.dh-quality__label span { margin-top: 7px; font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }
.dh-quality__copy { padding: 95px clamp(50px, 7vw, 120px); align-self: center; }
.dh-kicker--light { color: var(--dh-red); }
.dh-quality__copy > p {
	max-width: 520px;
	margin: 30px 0;
	color: #aeb0b2;
	line-height: 1.8;
}
.dh-feature-list { margin-bottom: 36px; border-top: 1px solid #3e4145; }
.dh-feature-list > div {
	padding: 20px 0;
	border-bottom: 1px solid #3e4145;
	display: grid;
	grid-template-columns: 50px 1fr;
}
.dh-feature-list b { color: var(--dh-red); font-size: 11px; padding-top: 3px; }
.dh-feature-list span { color: #898c90; font-size: 12px; }
.dh-feature-list strong { display: block; margin-bottom: 5px; color: #fff; font-size: 14px; }
.dh-button--white { background: #fff; color: #1c1e21; }

.dh-process { background: var(--dh-soft); }
.dh-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-top: 1px solid #d3d5d6;
}
.dh-steps article {
	margin-top: -2px;
	padding: 36px 35px 0 0;
	border-top: 3px solid transparent;
}
.dh-steps article:first-child { border-color: var(--dh-red); }
.dh-steps article > span { color: var(--dh-red); font-size: 11px; font-weight: 800; }
.dh-steps h3 { margin: 28px 0 15px; font-size: 23px; }
.dh-steps p { max-width: 250px; margin: 0; color: var(--dh-muted); font-size: 13px; line-height: 1.7; }

.dh-contact { padding: 105px 0; background: var(--dh-red); color: #fff; }
.dh-contact__grid {
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	gap: clamp(60px, 10vw, 150px);
}
.dh-contact__copy .dh-kicker { color: #fff; opacity: .72; }
.dh-contact__copy h2 { margin-bottom: 25px; }
.dh-contact__copy > p { max-width: 480px; color: rgba(255,255,255,.82); line-height: 1.8; }
.dh-contact__phone {
	width: max-content;
	margin-top: 55px;
	padding-top: 22px;
	border-top: 1px solid rgba(255,255,255,.3);
	display: flex;
	flex-direction: column;
}
.dh-contact__phone span { opacity: .7; font-size: 10px; letter-spacing: .15em; text-transform: uppercase; }
.dh-contact__phone strong { margin-top: 8px; font-size: 29px; }
.dh-contact__action { align-self: center; }
.dh-contact-card {
	padding: 46px 50px;
	background: #fff;
	color: var(--dh-ink);
	box-shadow: 0 25px 70px rgba(92,0,4,.2);
}
.dh-contact-card > span {
	color: var(--dh-red);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .15em;
	text-transform: uppercase;
}
.dh-contact-card h3 {
	margin: 15px 0 18px;
	font-size: clamp(29px, 3vw, 42px);
	line-height: 1.04;
	letter-spacing: -.045em;
}
.dh-contact-card p { color: #6e7175; font-size: 14px; line-height: 1.7; }
.dh-contact-card ul {
	margin: 26px 0 32px;
	padding: 0;
	list-style: none;
}
.dh-contact-card li {
	padding: 10px 0 10px 25px;
	border-top: 1px solid var(--dh-line);
	position: relative;
	color: #45484c;
	font-size: 12px;
}
.dh-contact-card li:last-child { border-bottom: 1px solid var(--dh-line); }
.dh-contact-card li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--dh-red);
	font-weight: 900;
}
.dh-form-message { margin-bottom: 14px; padding: 15px 18px; background: #fff; color: var(--dh-ink); font-size: 13px; font-weight: 700; }
.dh-form-message--success { border-left: 5px solid #1d9b5f; }
.dh-form-message--error { border-left: 5px solid #7d0005; }
.dh-contact-form {
	padding: 38px 42px;
	background: #fff;
	color: var(--dh-ink);
	box-shadow: 0 25px 70px rgba(92,0,4,.2);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 25px 24px;
}
.dh-contact-form label { display: flex; flex-direction: column; gap: 9px; }
.dh-contact-form label > span {
	color: #787b7f;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
}
.dh-contact-form input,
.dh-contact-form select,
.dh-contact-form textarea {
	width: 100%;
	padding: 10px 0 13px;
	border: 0;
	border-bottom: 1px solid #d9dadb;
	border-radius: 0;
	background: transparent;
	color: var(--dh-ink);
	font-size: 13px;
	outline: none;
}
.dh-contact-form input:focus,
.dh-contact-form select:focus,
.dh-contact-form textarea:focus { border-color: var(--dh-red); }
.dh-contact-form textarea { resize: vertical; }
.dh-contact-form__message,
.dh-contact-form__button,
.dh-contact-form small { grid-column: 1 / -1; }
.dh-contact-form small { color: #949699; font-size: 9px; line-height: 1.5; }
.dh-honeypot { position: absolute !important; left: -9999px !important; }

.dh-modal {
	position: fixed;
	z-index: 99999;
	inset: 0;
	padding: 34px;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	overflow-y: auto;
	opacity: 1;
	visibility: visible;
	transition: opacity .2s ease, visibility .2s ease;
}
.dh-modal[aria-hidden="true"] {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}
.dh-modal__backdrop {
	position: fixed;
	inset: 0;
	background: rgba(10,12,14,.82);
	backdrop-filter: blur(4px);
}
.dh-modal__panel {
	width: min(1160px, 100%);
	margin: auto;
	padding: 58px;
	background: #fff;
	position: relative;
	z-index: 1;
	outline: 0;
	box-shadow: 0 28px 100px rgba(0,0,0,.3);
}
.dh-modal__panel--form { max-width: 1080px; }
.dh-modal__close {
	position: absolute;
	z-index: 2;
	top: 18px;
	right: 20px;
	width: 42px;
	height: 42px;
	border: 1px solid var(--dh-line);
	background: #fff;
	color: var(--dh-ink);
	cursor: pointer;
	font-size: 30px;
	line-height: 1;
}
.dh-modal__close:hover, .dh-modal__close:focus-visible { border-color: var(--dh-red); color: var(--dh-red); }
.dh-modal__heading { max-width: 780px; margin-bottom: 39px; }
.dh-modal__heading h2 {
	margin: 15px 0 17px;
	font-size: clamp(38px, 5vw, 61px);
	line-height: .98;
	letter-spacing: -.055em;
}
.dh-modal__heading p { margin: 0; color: #6c7075; line-height: 1.7; }
.dh-measure-guide {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 46px;
	align-items: start;
}
.dh-measure-guide > img {
	width: 100%;
	max-height: 850px;
	object-fit: contain;
	object-position: top center;
	border: 1px solid var(--dh-line);
}
.dh-measure-guide__tips {
	padding: 28px;
	background: var(--dh-soft);
	position: sticky;
	top: 20px;
}
.dh-measure-guide__tips > strong { font-size: 19px; }
.dh-measure-guide__tips ul { margin: 19px 0 28px; padding-left: 19px; color: #5e6266; font-size: 13px; line-height: 1.7; }

.dh-quote-form { display: grid; gap: 24px; }
.dh-form-section {
	margin: 0;
	padding: 31px;
	border: 1px solid var(--dh-line);
}
.dh-form-section legend {
	padding: 0 13px;
	font-size: 19px;
	font-weight: 800;
}
.dh-form-section legend small { margin-left: 8px; color: #8a8d91; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.dh-form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 21px 24px;
}
.dh-form-grid__wide { grid-column: 1 / -1; }
.dh-form-grid label,
.dh-dimension-grid label { display: flex; flex-direction: column; gap: 8px; }
.dh-form-grid label > span,
.dh-dimension-grid label > span,
.dh-file-field > span {
	color: #63676b;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}
.dh-form-grid input,
.dh-form-grid select,
.dh-form-grid textarea,
.dh-dimension-grid input {
	width: 100%;
	min-height: 48px;
	padding: 11px 13px;
	border: 1px solid #d4d6d8;
	border-radius: 0;
	background: #fff;
	color: var(--dh-ink);
	outline: 0;
}
.dh-form-grid textarea { min-height: 110px; resize: vertical; }
.dh-form-grid input:focus,
.dh-form-grid select:focus,
.dh-form-grid textarea:focus,
.dh-dimension-grid input:focus { border-color: var(--dh-red); box-shadow: 0 0 0 2px rgba(227,6,19,.08); }
.dh-inline-help {
	margin: -4px 0 22px;
	padding: 0 0 3px;
	border: 0;
	border-bottom: 1px solid var(--dh-red);
	background: transparent;
	color: var(--dh-red);
	cursor: pointer;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .08em;
}
.dh-dimension-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.dh-file-field input {
	padding: 15px;
	border: 1px dashed #bcc0c3;
	background: var(--dh-soft);
}
.dh-file-field small { color: #85888c; font-size: 10px; }
.dh-consent {
	display: grid;
	grid-template-columns: 20px 1fr;
	gap: 11px;
	align-items: start;
	color: #5c6064;
	font-size: 11px;
	line-height: 1.55;
}
.dh-consent input { margin: 3px 0 0; accent-color: var(--dh-red); }
.dh-consent a { color: var(--dh-red); text-decoration: underline; }
.dh-form-submit {
	padding-top: 7px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
}
.dh-form-submit p { max-width: 560px; margin: 0; color: #7a7e82; font-size: 10px; line-height: 1.55; }

.dh-footer { background: #17191c; color: #fff; }
.dh-footer__main {
	padding: 70px 0 58px;
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr .8fr;
	gap: 45px;
}
.dh-brand--footer .dh-brand__country { color: #929498; }
.dh-footer__main > div:first-child > p {
	max-width: 310px;
	margin-top: 23px;
	color: #797c80;
	font-size: 12px;
	line-height: 1.7;
}
.dh-footer__main > div:not(:first-child) {
	color: #a4a6a8;
	font-size: 12px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.dh-footer__main > div:not(:first-child) > span {
	margin-bottom: 10px;
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .16em;
	text-transform: uppercase;
}
.dh-footer__main p { margin: 0; line-height: 1.65; }
.dh-footer__bottom {
	min-height: 70px;
	border-top: 1px solid #303236;
	color: #6d7074;
	font-size: 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.dh-footer__bottom div { display: flex; gap: 30px; }

.dh-page { min-height: 65vh; background: #fff; }
.dh-page__hero {
	padding: 82px 0 74px;
	background: var(--dh-ink);
	color: #fff;
	position: relative;
	overflow: hidden;
}
.dh-page__hero::after {
	content: "";
	position: absolute;
	right: -120px;
	bottom: -190px;
	width: 520px;
	height: 300px;
	border: 68px solid rgba(255,255,255,.035);
	transform: skew(-12deg);
}
.dh-page__hero h1 {
	max-width: 900px;
	margin: 19px 0 0;
	font-size: clamp(48px, 7vw, 82px);
	font-weight: 800;
	letter-spacing: -.06em;
	line-height: .95;
	position: relative;
	z-index: 1;
}
.dh-page__content {
	max-width: 920px;
	padding-top: 78px;
	padding-bottom: 100px;
	background: #fff;
}
.dh-prose {
	color: #43474c;
	font-size: 15px;
	line-height: 1.82;
}
.dh-prose > *:first-child { margin-top: 0; }
.dh-prose p { margin: 0 0 22px; }
.dh-prose h2 {
	margin: 48px 0 22px;
	padding-top: 31px;
	border-top: 1px solid var(--dh-line);
	color: var(--dh-ink);
	font-size: 27px;
	line-height: 1.15;
	letter-spacing: -.025em;
}
.dh-prose h3 {
	margin: 34px 0 14px;
	color: var(--dh-ink);
	font-size: 19px;
	line-height: 1.3;
}
.dh-prose strong { color: var(--dh-ink); font-weight: 800; }
.dh-prose ul,
.dh-prose ol { margin: 0 0 24px; padding-left: 23px; }
.dh-prose li { margin-bottom: 7px; }
.dh-prose hr { margin: 42px 0; border: 0; border-top: 1px solid var(--dh-line); }
.dh-prose a {
	color: var(--dh-red);
	font-weight: 700;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}
.dh-prose .wp-block-group {
	margin: 28px 0;
	padding: 28px 31px;
	border-left: 4px solid var(--dh-red);
	background: var(--dh-soft);
}

@media (max-width: 1000px) {
	.dh-wrap { width: min(100% - 36px, 760px); }
	.dh-topbar p, .dh-topbar__links span { display: none; }
	.dh-topbar__inner { justify-content: flex-end; }
	.dh-navrow { height: 76px; grid-template-columns: 1fr auto auto; gap: 12px; }
	.dh-menu-toggle { display: block; order: 2; }
	.dh-header__cta { order: 3; }
	.dh-nav {
		position: absolute;
		z-index: 100;
		top: 110px;
		left: 0;
		right: 0;
		height: calc(100vh - 110px);
		padding: 45px 28px;
		background: #fff;
		display: none;
		flex-direction: column;
		justify-content: flex-start;
		gap: 0;
		font-size: 21px;
	}
	.dh-nav.is-open { display: flex; }
	.dh-nav a { padding: 18px 0; border-bottom: 1px solid var(--dh-line); }
	.dh-nav a::after { display: none; }
	.dh-hero { min-height: 660px; }
	.dh-hero__content { padding-bottom: 90px; }
	.dh-hero h1 { font-size: clamp(54px, 14vw, 78px); }
	.dh-hero__bottom { width: 100%; }
	.dh-section-heading { grid-template-columns: 1fr; gap: 25px; }
	.dh-service-cards { grid-template-columns: 1fr 1fr; }
	.dh-service-card:last-child { grid-column: 1 / -1; min-height: 330px; }
	.dh-quality { grid-template-columns: 1fr; }
	.dh-quality__visual { min-height: 500px; }
	.dh-quality__copy { padding: 75px 36px; }
	.dh-steps { grid-template-columns: repeat(2, 1fr); gap: 45px 20px; }
	.dh-contact__grid { grid-template-columns: 1fr; }
	.dh-measure-guide { grid-template-columns: 1fr; }
	.dh-measure-guide__tips { position: static; }
	.dh-dimension-grid { grid-template-columns: repeat(3, 1fr); }
	.dh-footer__main { grid-template-columns: 2fr 1fr 1fr; }
	.dh-footer__main > div:last-child { display: none; }
}

@media (max-width: 620px) {
	.dh-wrap { width: calc(100% - 32px); }
	.dh-topbar { display: none; }
	.dh-navrow { height: 72px; }
	.dh-nav { top: 72px; height: calc(100vh - 72px); }
	.dh-brand { grid-template-columns: 36px auto; column-gap: 8px; }
	.dh-brand__mark { width: 36px; height: 36px; }
	.dh-brand__name { font-size: 20px; }
	.dh-brand__image { max-width: 180px; max-height: 48px; }
	.dh-header__cta { display: none; }
	.dh-hero { min-height: 680px; align-items: flex-start; padding-top: 110px; }
	.dh-hero__image { background-position: 61% center; }
	.dh-hero__shade { background: linear-gradient(90deg, rgba(9,11,14,.9), rgba(9,11,14,.4)); }
	.dh-hero h1 { margin-top: 20px; }
	.dh-hero__content > p { max-width: 94%; font-size: 14px; line-height: 1.6; }
	.dh-hero__actions { align-items: flex-start; flex-direction: column; gap: 22px; }
	.dh-hero__bottom { grid-template-columns: 1fr 1fr; }
	.dh-hero__bottom > div { min-height: 72px; padding: 15px; }
	.dh-hero__bottom > div:last-child { display: none; }
	.dh-section { padding: 82px 0; }
	.dh-section-heading h2, .dh-quality__copy h2, .dh-contact__copy h2 { font-size: 43px; }
	.dh-product-grid { grid-template-columns: 1fr; }
	.dh-product-card { min-height: 330px; }
	.dh-service-cards { grid-template-columns: 1fr; }
	.dh-service-card,
	.dh-service-card:last-child { grid-column: auto; min-height: 370px; padding: 32px 27px; }
	.dh-quality__visual { min-height: 420px; }
	.dh-quality__label { width: 180px; height: 108px; padding: 25px; }
	.dh-quality__label strong { font-size: 22px; }
	.dh-quality__copy { padding: 68px 22px; }
	.dh-steps { grid-template-columns: 1fr; gap: 35px; }
	.dh-steps article { padding-top: 24px; }
	.dh-contact { padding: 78px 0; }
	.dh-contact-card { padding: 35px 27px; }
	.dh-contact-form { padding: 30px 23px; grid-template-columns: 1fr; }
	.dh-contact-form__message, .dh-contact-form__button, .dh-contact-form small { grid-column: 1; }
	.dh-contact__phone strong { font-size: 24px; }
	.dh-footer__main { grid-template-columns: 1fr; }
	.dh-footer__main > div:not(:first-child) { display: none; }
	.dh-page__hero { padding: 58px 0 52px; }
	.dh-page__hero h1 { font-size: 48px; }
	.dh-page__content { padding-top: 48px; padding-bottom: 68px; }
	.dh-prose { font-size: 14px; }
	.dh-prose h2 { margin-top: 37px; padding-top: 25px; font-size: 24px; }
	.dh-prose .wp-block-group { padding: 23px 20px; }
	.dh-modal { padding: 0; }
	.dh-modal__panel { min-height: 100vh; padding: 68px 20px 38px; }
	.dh-modal__close { position: fixed; top: 13px; right: 13px; }
	.dh-modal__heading { margin-bottom: 30px; }
	.dh-modal__heading h2 { font-size: 39px; }
	.dh-measure-guide { gap: 25px; }
	.dh-form-section { padding: 23px 16px; }
	.dh-form-grid { grid-template-columns: 1fr; }
	.dh-form-grid__wide { grid-column: auto; }
	.dh-dimension-grid { grid-template-columns: 1fr 1fr; }
	.dh-form-submit { align-items: stretch; flex-direction: column; }
	.dh-form-submit .dh-button { width: 100%; }
}
