/* ==========================================================================
   Praxis Klenner – Theme Styles
   Component/layout styles converted from the original static site.
   Token files are enqueued separately (see functions.php > pk_stylesheets()).
   ========================================================================== */

body {
	background: var(--surface-page);
}

a { color: var(--text-link); }
a:hover { color: var(--text-accent-strong); }

/* ---------- shared building blocks ---------- */

.pk-container { max-width: var(--container-max); margin: 0 auto; }
.pk-container--narrow { max-width: var(--container-narrow); margin: 0 auto; }

.pk-section { padding: var(--section-py) var(--gutter-lg); }
.pk-section--sm { padding-top: var(--section-py-sm); padding-bottom: var(--section-py-sm); }
.pk-section--lg { padding-top: var(--section-py-lg); padding-bottom: var(--section-py-lg); }
.pk-section--sand { background: var(--surface-alt); }
.pk-section--blush { background: var(--surface-accent); }
.pk-section--flush-top { padding-top: 0; }

.pk-eyebrow {
	font-size: var(--fs-eyebrow);
	font-weight: var(--fw-eyebrow);
	letter-spacing: var(--ls-eyebrow);
	text-transform: var(--tt-eyebrow);
	color: var(--text-accent);
}
.pk-divider { width: 48px; height: 1px; background: var(--pk-mauve); margin: 14px 0 22px; }

.pk-title-1 {
	font-family: var(--font-display);
	font-weight: var(--fw-display-light);
	font-size: clamp(38px, 6.4vw, 60px);
	line-height: 1.12;
	letter-spacing: var(--ls-display-tight);
	color: var(--text-heading);
	margin: 0;
}
.pk-title-2 {
	font-family: var(--font-display);
	font-weight: var(--fw-display-light);
	font-size: clamp(30px, 5vw, 44px);
	line-height: var(--lh-display);
	letter-spacing: var(--ls-display);
	margin: 0;
}
.pk-title-3 {
	font-family: var(--font-display);
	font-weight: var(--fw-display);
	font-size: clamp(22px, 3.4vw, 28px);
	line-height: 1.2;
	letter-spacing: var(--ls-display);
	margin: 0;
}
.pk-lead {
	font-size: var(--fs-lead);
	line-height: 1.65;
	color: var(--text-muted);
}
.pk-body {
	font-size: var(--fs-body);
	line-height: 1.65;
	color: var(--text-muted);
}
.pk-justify { text-align: justify; hyphens: auto; }
.pk-measure { max-width: var(--measure-prose); }
.pk-stack { display: flex; flex-direction: column; gap: 22px; }
.pk-stack > * { margin: 0; }

.pk-list {
	margin: 0;
	padding-left: 22px;
	font-size: var(--fs-body);
	line-height: 1.6;
	color: var(--text-muted);
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.pk-textlink {
	font-size: 16px;
	color: var(--text-accent);
	text-decoration: none;
	border-bottom: 1px solid var(--pk-line);
	padding-bottom: 4px;
	transition: var(--transition-control);
}
.pk-textlink:hover { color: var(--text-accent-strong); border-bottom-color: var(--pk-mauve); }

/* ---------- buttons (exact port of DS Button.jsx) ---------- */

.pk-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-2);
	min-height: var(--touch-min);
	padding: 13px 26px;
	border-radius: var(--radius-control);
	border: 1px solid transparent;
	font-family: var(--font-text);
	font-size: var(--fs-small);
	font-weight: var(--fw-text-medium);
	line-height: 1.2;
	letter-spacing: 0.01em;
	text-decoration: none;
	cursor: pointer;
	transition: var(--transition-control);
}
.pk-btn--primary { background: var(--action-primary-bg); color: var(--action-primary-text); }
.pk-btn--primary:hover { background: var(--action-primary-bg-hover); color: var(--action-primary-text); }
.pk-btn--secondary { background: transparent; border-color: var(--action-secondary-border); color: var(--action-secondary-text); }
.pk-btn--secondary:hover { background: var(--action-secondary-bg-hover); color: var(--action-secondary-text); }
.pk-btn--on-invert { background: var(--pk-creme); color: var(--pk-olive-dark); }
.pk-btn--on-invert:hover { background: var(--pk-sand); color: var(--pk-olive-dark); }
.pk-btn--sm { padding: 10px 18px; min-height: 40px; font-size: var(--fs-tiny); }
.pk-btn--lg { padding: 16px 34px; font-size: var(--fs-body); }
.pk-btn:disabled {
	background: var(--action-disabled-bg);
	color: var(--action-disabled-text);
	border-color: transparent;
	cursor: not-allowed;
}

/* ---------- header ---------- */

.pk-site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--surface-page);
	padding: 0 var(--gutter-lg);
	transform: translateY(0);
	transition: transform 260ms var(--ease-soft);
	will-change: transform;
}
.pk-site-header .pk-header__bar { padding: 14px 0; }
.pk-header__rule { height: 1px; background: var(--pk-line); }

.pk-brand {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
	text-decoration: none;
}
.pk-brand img { width: clamp(48px, 10vw, 64px); height: auto; display: block; }
.pk-brand__text {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3px;
	min-width: 0;
	text-align: center;
}
.pk-brand__eyebrow {
	font-family: var(--font-display);
	font-weight: var(--fw-display-light);
	font-size: clamp(13px, 2.4vw, 17px);
	line-height: 1.15;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--pk-olive-dark);
}
.pk-brand__line { font-size: clamp(12px, 2vw, 14px); line-height: 1.4; color: var(--text-muted); }

/* compact state while scrolling (mobile) */
@media (max-width: 767px) {
	.pk-site-header[data-compact] .pk-header__bar > .pk-brand img { display: none; }
	.pk-site-header[data-compact] .pk-brand__line { display: none; }
	.pk-site-header[data-compact] .pk-header__bar { min-height: 48px; padding: 4px 0; }
}
@media (min-width: 768px) {
	.pk-header__bar { justify-content: center; }
	.pk-site-header { position: static; transform: none !important; }
}

/* desktop navbar (separate sticky band) */
.pk-navbar { display: none; }
@media (min-width: 768px) {
	.pk-navbar {
		display: block;
		position: sticky;
		top: 0;
		z-index: 50;
		background: var(--surface-page);
		border-bottom: 1px solid var(--pk-line);
		padding: 0 var(--gutter-lg);
	}
	.pk-navbar nav {
		justify-content: center;
		padding: 12px 0;
		max-width: var(--container-max);
		margin: 0 auto;
	}
}
.pk-nav-desktop { display: flex; align-items: center; gap: var(--space-5); }
@media (min-width: 1024px) { .pk-nav-desktop { gap: var(--space-6); } }
.pk-nav-link {
	font-size: 13px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--text-muted);
	text-decoration: none;
	white-space: nowrap;
	transition: var(--transition-control);
}
.pk-nav-link:hover { color: var(--text-accent-strong); }
.pk-nav-link.is-active {
	color: var(--text-heading);
	text-decoration: underline;
	text-underline-offset: 7px;
	text-decoration-thickness: 1px;
}

/* mobile overlay */
.pk-nav-overlay { background: var(--surface-page); }
.pk-nav-overlay[hidden] { display: none !important; }
.pk-nav-overlay__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}
.pk-nav-overlay__title {
	font-family: var(--font-display);
	font-weight: var(--fw-display-light);
	font-size: 15px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--pk-olive-dark);
}
.pk-nav-overlay__close {
	min-width: 44px;
	min-height: 44px;
	background: transparent;
	border: 0;
	font-size: 26px;
	line-height: 1;
	color: var(--text-heading);
	cursor: pointer;
}
.pk-nav-overlay__links a { color: var(--text-heading); }

/* ---------- hero ---------- */

.pk-hero h1.pk-title-1 { font-size: clamp(38px, 6.4vw, 56px); }

.pk-hero__media {
	height: clamp(360px, 58vw, 560px);
	border-radius: var(--radius-arch);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}
.pk-hero__media img,
.pk-split__media img,
.pk-gallery img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	filter: saturate(0.92) sepia(0.06);
}

/* ---------- cards (services) ---------- */

.pk-cards { align-items: start; }
.pk-card {
	background: var(--surface-card);
	border: 1px solid var(--pk-line);
	border-radius: var(--radius-card);
	padding: 32px;
	box-shadow: var(--shadow-xs);
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.pk-card__rule { width: 40px; height: 1px; background: var(--pk-mauve); }
.pk-card__title {
	font-family: var(--font-display);
	font-weight: var(--fw-display);
	font-size: 26px;
	line-height: 1.2;
	letter-spacing: var(--ls-display);
	margin: 0;
}
.pk-card .pk-list { font-size: 15px; gap: 7px; padding-left: 20px; }
.pk-card__action { display: flex; margin-top: 4px; }

/* ---------- split sections ---------- */

.pk-split__media {
	height: clamp(380px, 60vw, 600px);
	border-radius: var(--radius-arch);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}
.pk-role { font-size: 17px; color: var(--text-accent); margin: 10px 0 28px; }

/* ---------- steps ---------- */

.pk-step__num {
	font-family: var(--font-display);
	font-weight: var(--fw-display-light);
	font-size: 64px;
	line-height: 1;
	color: var(--text-accent);
}
.pk-step__title {
	font-family: var(--font-display);
	font-weight: var(--fw-display);
	font-size: 24px;
	margin: 16px 0 10px;
}
.pk-steps-note { font-size: 15px; color: var(--text-muted); margin: 48px 0 0; }
.pk-center { text-align: center; }

/* ---------- gallery ---------- */

.pk-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 20px;
}
.pk-gallery > div {
	height: clamp(220px, 32vw, 300px);
	border-radius: var(--radius-media);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}

/* ---------- banner CTA ---------- */

.pk-banner { position: relative; overflow: hidden; }
.pk-banner__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 55%;
	display: block;
	filter: saturate(0.92) sepia(0.06);
}
.pk-banner__inner {
	position: relative;
	min-height: clamp(380px, 52vw, 420px);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: clamp(48px, 7vw, 72px) var(--gutter-lg);
	box-sizing: border-box;
	pointer-events: none;
}
.pk-banner__quote {
	font-family: var(--font-display);
	font-weight: var(--fw-display-light);
	font-size: clamp(26px, 5vw, 40px);
	line-height: 1.25;
	letter-spacing: var(--ls-display);
	color: var(--pk-creme);
	margin: 0;
	max-width: min(34ch, 88%);
	background: rgba(84, 86, 64, 0.86);
	padding: clamp(20px, 3.4vw, 32px) clamp(24px, 4.5vw, 44px);
	border-radius: var(--radius-card);
}
.pk-banner__action { display: flex; margin-top: clamp(28px, 4vw, 40px); pointer-events: auto; }

/* ---------- anchor nav (Leistungen) ---------- */

.pk-anchor-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 28px;
}
.pk-anchor-nav a {
	font-size: 13px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--text-accent);
	text-decoration: none;
	border-bottom: 1px solid var(--pk-line);
	padding-bottom: 4px;
	transition: var(--transition-control);
}
.pk-anchor-nav a:hover { border-bottom-color: var(--pk-mauve); }

/* ---------- fee table ---------- */

.pk-fee-table th,
.pk-fee-table td {
	text-align: left;
	padding: 14px 12px 14px 0;
	border-bottom: 1px solid var(--pk-line);
	font-size: var(--fs-body);
	vertical-align: top;
}
.pk-fee-table th {
	font-size: var(--fs-eyebrow);
	font-weight: var(--fw-text-medium);
	letter-spacing: var(--ls-eyebrow);
	text-transform: uppercase;
	color: var(--text-accent);
}
.pk-fee-table td { color: var(--text-muted); }
.pk-fee-table .pk-fee__service { font-weight: 500; color: var(--text-heading); }
.pk-fee__detail { display: block; font-size: 14px; color: var(--text-muted); margin-top: 2px; }

.pk-fee-card {
	background: var(--surface-card);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-card);
	padding: var(--space-5);
	box-shadow: var(--shadow-xs);
	display: flex;
	flex-direction: column;
	gap: var(--space-3);
}
.pk-fee-card__service {
	font-family: var(--font-display);
	font-weight: var(--fw-display);
	font-size: 1.25rem;
	line-height: 1.25;
	color: var(--text-heading);
}
.pk-fee-card__meta { font-size: var(--fs-small); color: var(--text-muted); }
.pk-fee-card__rows {
	display: flex;
	flex-direction: column;
	gap: var(--space-2);
	border-top: 1px solid var(--border-subtle);
	padding-top: var(--space-3);
}
.pk-fee-card__row { display: flex; justify-content: space-between; gap: var(--space-4); }
.pk-fee-card__label {
	font-size: var(--fs-tiny);
	letter-spacing: var(--ls-eyebrow);
	text-transform: uppercase;
	color: var(--text-accent);
}
.pk-fee-note { margin-top: 36px; }

.pk-insurers { display: flex; flex-direction: column; max-width: 520px; margin-top: 4px; }
.pk-insurers > div {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding: 14px 0;
	border-bottom: 1px solid var(--pk-line);
}
.pk-insurers__name { font-weight: 500; }
.pk-insurers__value { color: var(--text-muted); }

/* ---------- FAQ ---------- */

.pk-faq details { border-bottom: 1px solid var(--pk-line); padding: 0; }
.pk-faq summary {
	list-style: none;
	cursor: pointer;
	min-height: 44px;
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 18px 0;
	font-family: var(--font-display);
	font-weight: var(--fw-display);
	font-size: clamp(19px, 2.6vw, 23px);
	line-height: 1.3;
	letter-spacing: var(--ls-display);
	color: var(--text-heading);
}
.pk-faq summary::-webkit-details-marker { display: none; }
.pk-faq summary::after {
	content: "+";
	margin-left: auto;
	font-family: var(--font-text);
	font-size: 22px;
	font-weight: 300;
	color: var(--text-accent);
	transition: transform var(--dur-base) var(--ease-soft);
}
.pk-faq details[open] summary::after { transform: rotate(45deg); }
.pk-faq__answer { display: flex; flex-direction: column; gap: 14px; padding: 0 0 26px; }
.pk-faq__answer > * { margin: 0; }
.pk-faq__answer h4 {
	font-family: var(--font-text);
	font-weight: 500;
	font-size: var(--fs-body);
	line-height: 1.4;
	color: var(--text-heading);
	margin: 0;
}

/* ---------- forms (exact port of DS Field/Input/Textarea) ---------- */

.pk-form { display: flex; flex-direction: column; gap: var(--space-5); max-width: 620px; }
.pk-field { display: flex; flex-direction: column; gap: var(--space-2); }
.pk-field label { font-size: var(--fs-small); font-weight: var(--fw-text-medium); color: var(--text-body); }
.pk-field .required { color: var(--pk-wine); margin-left: 4px; }
.pk-field__hint { font-size: var(--fs-tiny); color: var(--text-muted); }
.pk-field input,
.pk-field textarea {
	width: 100%;
	min-height: var(--touch-min);
	padding: 12px 14px;
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-control);
	background: var(--pk-white);
	font-family: var(--font-text);
	font-size: var(--fs-body);
	color: var(--text-body);
	transition: var(--transition-control);
	outline: none;
}
.pk-field input:focus,
.pk-field textarea:focus {
	border-color: var(--pk-olive);
	box-shadow: var(--shadow-focus);
}
.pk-checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: var(--fs-small); line-height: 1.5; color: var(--text-muted); cursor: pointer; }
.pk-checkbox input { margin-top: 3px; accent-color: var(--pk-olive); min-width: 18px; min-height: 18px; }
.pk-honeypot { display: none; }
.pk-form__note { font-size: var(--fs-small); color: var(--text-accent-strong); }
.pk-form__error { font-size: var(--fs-tiny); color: var(--text-highlight); }

/* ---------- notice box (exact port of DS NoticeBox) ---------- */

.pk-notice {
	background: var(--surface-accent);
	border: 1px solid transparent;
	border-radius: var(--radius-card);
	padding: var(--space-5) var(--space-6);
	max-width: var(--measure-prose);
	display: flex;
	flex-direction: column;
	gap: var(--space-2);
	font-size: var(--fs-small);
	line-height: var(--lh-text);
	color: var(--text-body);
}
.pk-notice--sand { background: var(--surface-alt); }
.pk-notice__title {
	margin: 0;
	font-family: var(--font-text);
	font-size: var(--fs-eyebrow);
	font-weight: var(--fw-text-medium);
	letter-spacing: var(--ls-eyebrow);
	text-transform: uppercase;
	color: var(--text-accent-strong);
}
.pk-notice p { margin: 0; }
.pk-notice--error .pk-notice__title { color: var(--text-highlight); }

/* ---------- map consent (exact port of DS MapConsent) ---------- */

.pk-map {
	position: relative;
	border-radius: var(--radius-card);
	background: var(--surface-alt);
	border: 1px solid var(--border-subtle);
	aspect-ratio: 16 / 9;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.pk-map__consent {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: var(--space-4);
	align-items: center;
	padding: var(--space-7);
	max-width: 46ch;
}
.pk-map__address {
	margin: 0;
	font-family: var(--font-display);
	font-size: var(--fs-display-4);
	font-weight: var(--fw-display-light);
	color: var(--text-heading);
}
.pk-map__consent p.pk-map__hint { margin: 0; font-size: var(--fs-small); color: var(--text-muted); }
.pk-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- legal pages ---------- */

.pk-legal { display: flex; flex-direction: column; gap: clamp(32px, 4vw, 44px); }
.pk-legal__section { display: flex; flex-direction: column; gap: 14px; }
.pk-legal__section h3 {
	font-family: var(--font-display);
	font-weight: var(--fw-display);
	font-size: clamp(21px, 3vw, 26px);
	line-height: 1.25;
	letter-spacing: var(--ls-display);
	margin: 0;
}
.pk-legal__section p { margin: 0; max-width: var(--measure-prose); }
.pk-legal__section ul { margin: 0; padding-left: 22px; display: flex; flex-direction: column; gap: 8px; }

/* ---------- footer ---------- */

.pk-site-footer { background: var(--surface-page); padding: var(--section-py) var(--gutter-lg) 40px; }
.pk-footer__contact { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; font-size: 16px; line-height: 1.6; color: var(--text-muted); text-align: center; align-items: center; }
.pk-footer__contact a { color: var(--text-accent); text-decoration: none; }
.pk-footer__contact a:hover { color: var(--text-accent-strong); }
.pk-footer__nav { display: flex; flex-direction: column; align-items: center; gap: 10px; margin-top: 20px; font-size: 16px; }
.pk-footer__nav a { color: var(--text-muted); text-decoration: none; }
.pk-footer__nav a:hover { color: var(--text-accent-strong); }
.pk-footer__logo { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 14px; }
.pk-footer__logo img { width: 96px; height: auto; display: block; }
.pk-footer__rule { height: 1px; background: var(--pk-line); margin: 56px 0 24px; }
.pk-footer__legal {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px 28px;
	text-align: center;
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}
.pk-footer__legal a { color: var(--text-muted); text-decoration: none; }
.pk-footer__legal a:hover { color: var(--text-accent-strong); }
.pk-site-footer .pk-cols-3 > div:first-child { text-align: center; }

/* ---------- Contact Form 7 integration ---------- */

.wpcf7-form { display: flex; flex-direction: column; gap: var(--space-5); max-width: 620px; }
.wpcf7-form .pk-notice { margin-bottom: 0; }
.wpcf7-form p { margin: 0; }
.wpcf7-form .pk-form-grid { display: grid; gap: var(--space-5); grid-template-columns: 1fr; }
@media (min-width: 768px) { .wpcf7-form .pk-form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.wpcf7-form .pk-field { display: flex; flex-direction: column; gap: var(--space-2); }
.wpcf7-form label { font-size: var(--fs-small); font-weight: var(--fw-text-medium); color: var(--text-body); }
.wpcf7-form label .required { color: var(--pk-wine); margin-left: 4px; }
.wpcf7-form .wpcf7-form-control-wrap input,
.wpcf7-form .wpcf7-form-control-wrap textarea {
	width: 100%;
	min-height: var(--touch-min);
	padding: 12px 14px;
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-control);
	background: var(--pk-white);
	font-family: var(--font-text);
	font-size: var(--fs-body);
	color: var(--text-body);
	transition: var(--transition-control);
	outline: none;
}
.wpcf7-form .wpcf7-form-control-wrap input:focus,
.wpcf7-form .wpcf7-form-control-wrap textarea:focus {
	border-color: var(--pk-olive);
	box-shadow: var(--shadow-focus);
}
.wpcf7-form .pk-field__hint { font-size: var(--fs-tiny); color: var(--text-muted); }
.wpcf7-form .pk-checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: var(--fs-small); line-height: 1.5; color: var(--text-muted); cursor: pointer; }
.wpcf7-form .pk-checkbox > span:last-child { flex: 1; }
.wpcf7-form .pk-checkbox input[type="checkbox"] { margin: 3px 0 0; width: 18px; height: 18px; min-height: 18px; accent-color: var(--pk-olive); flex-shrink: 0; }
.wpcf7-form .pk-checkbox a { color: var(--text-accent); }
.wpcf7-form .pk-checkbox .wpcf7-form-control-wrap,
.wpcf7-form .pk-checkbox .wpcf7-form-control,
.wpcf7-form .pk-checkbox .wpcf7-list-item { display: inline-flex; align-items: flex-start; margin: 0; padding: 0; }
.wpcf7-form .pk-form-actions { display: flex; flex-direction: column; align-items: stretch; gap: var(--space-4); }
.wpcf7-form .pk-form-actions > input[type="submit"] { width: auto; align-self: flex-start; }
.wpcf7-form .wpcf7-submit { display: inline-flex; align-items: center; justify-content: center; min-height: var(--touch-min); padding: 16px 34px; border-radius: var(--radius-control); border: 1px solid transparent; background: var(--action-primary-bg); color: var(--action-primary-text); font-family: var(--font-text); font-size: var(--fs-body); font-weight: var(--fw-text-medium); line-height: 1.2; letter-spacing: 0.01em; cursor: pointer; transition: var(--transition-control); }
.wpcf7-form .wpcf7-submit:hover { background: var(--action-primary-bg-hover); }
.wpcf7-form .wpcf7-response-output { font-size: var(--fs-small); margin: 0; padding: 12px 16px; border-radius: var(--radius-card); border: 1px solid var(--border-subtle); }
.wpcf7-form[data-status="sent"] .wpcf7-response-output { display: none; }
.wpcf7-form .wpcf7-response-output.wpcf7-validation-errors { background: var(--surface-alt); color: var(--text-muted); border-color: var(--pk-wine); }
.wpcf7-form .wpcf7-not-valid-tip { font-size: var(--fs-tiny); color: var(--text-highlight); margin-top: 4px; }
.wpcf7-spinner { display: none; }

/* ---------- toast notification (contact form success) ---------- */
.pk-toast {
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 90;
	display: flex;
	align-items: flex-start;
	gap: 12px;
	width: min(560px, 90vw);
	padding: 16px 20px;
	background: var(--pk-olive-dark);
	color: var(--pk-creme);
	font-size: var(--fs-body);
	line-height: 1.5;
	border-radius: var(--radius-control);
	box-shadow: var(--shadow-md);
	transform: translate(-50%, calc(-50% + 24px));
	opacity: 0;
	transition: transform 260ms cubic-bezier(0.4,0,0.2,1), opacity 260ms cubic-bezier(0.4,0,0.2,1);
	cursor: pointer;
}
.pk-toast.is-visible { transform: translate(-50%, -50%); opacity: 1; }
.pk-toast__close {
	flex-shrink: 0;
	background: transparent;
	border: 0;
	padding: 0;
	color: var(--pk-creme);
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	opacity: 0.8;
}
.pk-toast__close:hover { opacity: 1; }

/* ---------- wordpress alignment fixes ---------- */

/* Make WP block template part wrappers transparent to layout so that
   position:sticky children (header/navbar) work relative to the page,
   not constrained by the wrapper's limited content height. */
.wp-block-template-part { display: contents; }
.wp-site-blocks > * { margin-block-start: 0; }
.wp-site-blocks { padding: 0; }

.pk-block-placeholder {
	padding: 12px 16px;
	background: var(--surface-alt);
	border: 1px solid var(--pk-line);
	border-radius: var(--radius-control);
	font-size: 13px;
	color: var(--text-muted);
}

/* end */
