.dn-hv-wrap {
	--dn-brown-dark: #5C4630;
	--dn-brown-mid: #8C6E4E;
	--dn-cream: #FAF6F0;
	--dn-text: #3a2f27;
	--dn-border: #e6ddd0;
	max-width: 880px;
	width: 100%;
	box-sizing: border-box;
	margin: 0 auto;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
	color: var(--dn-text);
	line-height: 1.55;
}

.dn-hv-header {
	text-align: center;
	margin-bottom: 32px;
}
.dn-hv-kicker {
	text-transform: uppercase;
	letter-spacing: .12em;
	font-size: 12px;
	color: var(--dn-brown-mid);
	margin: 0 0 6px;
}
.dn-hv-header h2 {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 32px;
	margin: 0 0 12px;
	color: var(--dn-brown-dark);
}
.dn-hv-intro {
	max-width: 520px;
	margin: 0 auto;
	color: #6b5d4f;
	font-size: 15px;
}

.dn-hv-section {
	background: #fff;
	border: 1px solid var(--dn-border);
	border-radius: 10px;
	padding: 24px 28px;
	margin-bottom: 20px;
}
.dn-hv-section h3 {
	font-family: Georgia, "Times New Roman", serif;
	color: var(--dn-brown-dark);
	font-size: 20px;
	margin: 0 0 16px;
	border-bottom: 1px solid var(--dn-border);
	padding-bottom: 10px;
}
.dn-hv-section h4 {
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: .04em;
	color: var(--dn-brown-mid);
	margin: 22px 0 12px;
}
.dn-hv-hint {
	font-size: 13px;
	color: #85786a;
	font-weight: 400;
	text-transform: none;
	letter-spacing: 0;
}
p.dn-hv-hint {
	margin-top: 10px;
}

.dn-hv-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
.dn-hv-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 13px;
	font-weight: 600;
	color: var(--dn-brown-dark);
}
.dn-hv-field--full {
	grid-column: 1 / -1;
}
.dn-hv-field input {
	font-weight: 400;
	color: var(--dn-text);
}

.dn-hv-wrap input[type="text"],
.dn-hv-wrap input[type="email"],
.dn-hv-wrap input[type="tel"],
.dn-hv-wrap input[type="number"],
.dn-hv-wrap input[type="time"] {
	padding: 10px 12px;
	border: 1px solid var(--dn-border);
	border-radius: 6px;
	font-size: 14px;
	background: var(--dn-cream);
	width: 100%;
	box-sizing: border-box;
}
.dn-hv-wrap input:focus {
	outline: none;
	border-color: var(--dn-brown-mid);
	background: #fff;
}

.dn-hv-timeline-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 8px 0;
	border-bottom: 1px dashed var(--dn-border);
	flex-wrap: wrap;
}
.dn-hv-timeline-row:last-child { border-bottom: none; }
.dn-hv-timeline-label {
	font-size: 14px;
	flex: 1 1 260px;
}
/* Higher specificity needed to beat the generic
   .dn-hv-wrap input[type="text"] { width:100% } rule below,
   otherwise this field would stretch full-width and push the time inputs
   onto their own line even though there is room for both. */
.dn-hv-wrap .dn-hv-timeline-row input[type="text"].dn-hv-timeline-label-input {
	flex: 1 1 260px;
	width: auto;
	min-width: 0;
	padding: 8px 10px;
	font-size: 14px;
	margin: 0;
}
.dn-hv-timeline-inputs {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: #85786a;
	flex-wrap: nowrap;
	flex-shrink: 0;
}
.dn-hv-timeline-inputs span {
	white-space: nowrap;
	flex-shrink: 0;
}
/* Higher specificity needed to beat the generic
   .dn-hv-wrap input[type="time"] { width:100% } rule below,
   otherwise the "von" field stretches and pushes "bis" out of view. */
.dn-hv-wrap .dn-hv-timeline-inputs input[type="time"] {
	width: 125px;
	flex-shrink: 0;
	min-width: 0;
}
.dn-hv-timeline-row {
	flex-wrap: wrap;
	row-gap: 8px;
}

.dn-hv-cost-row {
	display: grid;
	grid-template-columns: 1fr 20px 120px;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
}
.dn-hv-cost-total {
	grid-template-columns: 1fr 20px 120px;
	font-weight: 700;
	color: var(--dn-brown-dark);
	border-top: 2px solid var(--dn-border);
	padding-top: 12px;
	margin-top: 4px;
}
.dn-hv-euro {
	text-align: center;
	color: var(--dn-brown-mid);
}
.dn-hv-amount { text-align: right; }

.dn-hv-legal-box {
	border: 1px solid var(--dn-border);
	border-radius: 8px;
	margin-bottom: 16px;
}
.dn-hv-legal-scroll {
	max-height: 260px;
	overflow-y: auto;
	padding: 16px 18px;
	font-size: 13px;
	color: #55483c;
	background: var(--dn-cream);
	border-radius: 8px;
}
.dn-hv-legal-scroll p { margin: 0 0 10px; }
.dn-hv-legal-scroll p:last-child { margin-bottom: 0; }

.dn-hv-checkbox {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
	cursor: pointer;
}
.dn-hv-checkbox input {
	margin-top: 3px;
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

.dn-hv-submit-row {
	text-align: center;
	padding: 12px 0 40px;
}
.dn-hv-submit {
	background: var(--dn-brown-dark);
	color: #fff;
	border: none;
	padding: 15px 42px;
	border-radius: 30px;
	font-size: 15px;
	letter-spacing: .03em;
	cursor: pointer;
	transition: background .2s ease, transform .1s ease;
}
.dn-hv-submit:hover { background: var(--dn-brown-mid); }
.dn-hv-submit:disabled { opacity: .6; cursor: not-allowed; }
.dn-hv-submit:active { transform: scale(.98); }

.dn-hv-feedback {
	margin-top: 16px;
	font-size: 14px;
	font-weight: 600;
}
.dn-hv-feedback.is-success { color: #2e7d32; }
.dn-hv-feedback.is-error { color: #c62828; }

@media (max-width: 640px) {
	.dn-hv-grid { grid-template-columns: 1fr; }
	.dn-hv-section { padding: 20px 18px; }
	.dn-hv-wrap .dn-hv-timeline-inputs input[type="time"] { width: 100px; }
	.dn-hv-timeline-label { flex-basis: 100%; }
	.dn-hv-wrap .dn-hv-timeline-row input[type="text"].dn-hv-timeline-label-input { flex-basis: 100%; }
}
