/* ──────────────────────────────────────────────────────────────────────────
 * bold-pd-contact.css — bold contact section (navy with teal accents, real
 * form) + the always-visible sticky contact bar.
 * Contrast notes (contact section on navy #002a4e):
 *   - Labels / headings #fff, lead rgba(255,255,255,.85) → AA pass.
 *   - Teal phone link #02e8c2 on navy → 9.4:1. AA pass.
 *   - Submit button: dark ink #00231d on teal #02e8c2 → > 12:1. AA pass.
 *   - Inputs are #fff bg with #303030 text → > 10:1. AA pass.
 * ────────────────────────────────────────────────────────────────────────── */

.bold-pd .pd-contact {
	background:
		radial-gradient(120% 120% at 100% 0%, rgb(var(--c-teal-rgb) / 0.12) 0%, rgb(var(--c-teal-rgb) / 0) 45%),
		var(--c-navy);
	color: var(--c-white);
	padding-block: 4.5rem;
}

.bold-pd .pd-contact__inner {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 3rem;
	align-items: start;
}

/* Person / hotline column */
.bold-pd .pd-contact__person {
	position: sticky;
	top: calc(var(--site-header-h) + 5rem);
}

.bold-pd .pd-contact__person-img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	margin-bottom: 1.5rem;
	border-radius: var(--radius);
	object-fit: cover;
	object-position: center;
}

.bold-pd .pd-contact__person-name {
	margin: 0 0 0.25rem;
	font-size: 1.1875rem;
	font-weight: 700;
	color: var(--c-white);
}

.bold-pd .pd-contact__person-role {
	margin: 0 0 1rem;
	font-size: 0.9375rem;
	color: rgb(var(--c-white-rgb) / 0.8);
}

.bold-pd .pd-contact__person-tel {
	display: flex;
	width: fit-content;
	align-items: center;
	gap: 0.55rem;
	font-size: 1.375rem;
	font-weight: 800;
	color: var(--c-teal);
	text-decoration: none;
}

.bold-pd .pd-contact__person-tel svg {
	width: 1.35rem;
	height: 1.35rem;
}

.bold-pd .pd-contact__person-tel:hover { text-decoration: underline; text-underline-offset: 0.2em; }

.bold-pd .pd-contact__person-mail {
	display: flex;
	width: fit-content;
	align-items: center;
	gap: 0.55rem;
	margin-top: 0.75rem;
	font-size: 1rem;
	font-weight: 600;
	color: rgb(var(--c-white-rgb) / 0.9);
	text-decoration: none;
	word-break: break-word;
}

.bold-pd .pd-contact__person-mail svg {
	flex: none;
	width: 1.1rem;
	height: 1.1rem;
	color: var(--c-teal);
}

.bold-pd .pd-contact__person-mail:hover { text-decoration: underline; text-underline-offset: 0.2em; }

/* Form column */
.bold-pd .pd-contact__form-title {
	margin: 0 0 0.6rem;
	font-size: clamp(1.625rem, 3vw, 2.25rem);
	font-weight: 800;
	line-height: 1.12;
	color: var(--c-white);
}

.bold-pd .pd-contact__form-lead {
	margin: 0 0 2rem;
	font-size: 1.0625rem;
	color: rgb(var(--c-white-rgb) / 0.85);
}

.bold-pd .pd-contact__form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem;
}

.bold-pd .pd-contact__form label {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--c-white);
}

.bold-pd .pd-contact__form-full { grid-column: 1 / -1; }

.bold-pd .pd-contact__form input,
.bold-pd .pd-contact__form textarea {
	padding: 0.8rem 1rem;
	font: inherit;
	font-weight: 400;
	color: var(--c-text);
	background: var(--c-surface);
	border: 0.0625rem solid transparent;
	border-radius: var(--radius);
}

.bold-pd .pd-contact__form input::placeholder,
.bold-pd .pd-contact__form textarea::placeholder {
	color: var(--c-text-muted);
}

.bold-pd .pd-contact__form input:focus-visible,
.bold-pd .pd-contact__form textarea:focus-visible {
	outline: 0.125rem solid var(--c-teal);
	outline-offset: 0.125rem;
}

.bold-pd .pd-contact__form textarea {
	resize: vertical;
	min-height: 7rem;
}

.bold-pd .pd-contact__hint {
	grid-column: 1 / -1;
	margin: 0;
	font-size: 0.875rem;
	color: rgb(var(--c-white-rgb) / 0.7);
}

.bold-pd .pd-contact__actions {
	grid-column: 1 / -1;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem 1.5rem;
}

.bold-pd .pd-contact__submit {
	background: var(--c-teal);
	color: var(--c-teal-ink);
	border-color: var(--c-teal);
	font-weight: 700;
	padding: 0.9rem 2rem;
}

.bold-pd .pd-contact__submit:hover {
	background: #2ff5d2;
	border-color: #2ff5d2;
}

.bold-pd .pd-contact__submit:focus-visible {
	outline: 0.125rem solid var(--c-white);
	outline-offset: 0.1875rem;
}

.bold-pd .pd-contact__privacy {
	margin: 0;
	font-size: 0.8125rem;
	color: rgb(var(--c-white-rgb) / 0.7);
	max-width: 22rem;
}

.bold-pd .pd-contact__privacy a {
	color: var(--c-teal); /* teal on navy → 9.4:1. AA pass */
}

@media (max-width: 60rem) {
	.bold-pd .pd-contact__inner { grid-template-columns: 1fr; gap: 2.5rem; }
	.bold-pd .pd-contact__person { position: static; }
}

@media (max-width: 48rem) {
	.bold-pd .pd-contact { padding-block: 3rem; }
	.bold-pd .pd-contact__form { grid-template-columns: 1fr; }
}

/* ── Always-visible sticky contact bar ────────────────────────────────────── *
 * Bottom-fixed on mobile; on desktop it rides at the bottom too (dosomat-move
 * keeps contact persistent). Dark navy bar; teal CTA with dark ink → AA pass. */
.bold-pd-sticky {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 60;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.25rem;
	padding: 0.75rem 1.5rem;
	background: var(--c-navy-dark);
	border-top: 0.0625rem solid rgb(var(--c-teal-rgb) / 0.3);
	box-shadow: 0 -0.25rem 1rem rgba(0, 0, 0, 0.25);
}

.bold-pd-sticky__text {
	font-weight: 600;
	color: var(--c-white);
}

.bold-pd-sticky__cta {
	background: var(--c-teal);
	color: var(--c-teal-ink);
	border-color: var(--c-teal);
	font-weight: 700;
}

.bold-pd-sticky__cta:hover {
	background: #2ff5d2;
	border-color: #2ff5d2;
}

.bold-pd-sticky__cta:focus-visible {
	outline: 0.125rem solid var(--c-white);
	outline-offset: 0.1875rem;
}

.bold-pd-sticky__tel {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	color: var(--c-teal); /* teal on near-black → > 5:1. AA pass */
	font-weight: 700;
	text-decoration: none;
}

.bold-pd-sticky__tel svg { width: 1.1rem; height: 1.1rem; }
.bold-pd-sticky__tel:hover { text-decoration: underline; text-underline-offset: 0.2em; }

/* Keep page content clear of the fixed bar */
.bold-pd { padding-bottom: 4.25rem; }

/* Footer follows main as a sibling, so the fixed bar would cover its last
   (legal) row. Extend the footer so Impressum/Datenschutz scroll clear.
   Scoped via the preceding .bold-pd sibling — magazin footers are unaffected. */
.bold-pd ~ .site-footer {
	padding-bottom: 6rem;
}

@media (max-width: 38rem) {
	.bold-pd-sticky {
		gap: 0.75rem;
		padding: 0.65rem 0.9rem;
	}
	.bold-pd-sticky__text { display: none; }
	.bold-pd-sticky__tel span { display: none; }
}
