/* Contact page
   Matches the Webfast Modern / website-design visual system. */

.page-template-template-contact .site-header {
	background: rgba(255, 255, 255, 0.92);
	border-bottom-color: rgba(16, 16, 21, 0.07);
}

/* Contact page already is the CTA — avoid a second full-width contact band */
.page-template-template-contact .footer-cta {
	display: none;
}

body.page-template-template-contact.menu-open .site-header {
	background: #fff;
	border-bottom-color: rgba(16, 16, 21, 0.08);
	box-shadow: none;
	-webkit-backdrop-filter: none;
	backdrop-filter: none;
}

html:has(body.page-template-template-contact),
body.page-template-template-contact {
	overflow-x: clip;
}

/* Hero — same atmospheric treatment as the homepage hero */

.ct-hero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: clamp(54px, 7vw, 96px) 0 clamp(48px, 6vw, 80px);
	border-bottom: 1px solid rgba(16, 16, 21, 0.09);
	background:
		radial-gradient(circle at 12% 14%, rgba(228, 18, 77, 0.07), transparent 27%),
		radial-gradient(circle at 88% 78%, rgba(22, 0, 85, 0.055), transparent 30%),
		linear-gradient(180deg, #fff 0%, #faf9f7 100%);
}

.ct-hero::before {
	position: absolute;
	top: -54%;
	left: 50%;
	z-index: 0;
	width: min(920px, 82vw);
	aspect-ratio: 1;
	border-radius: 50%;
	background: conic-gradient(from 115deg, rgba(228, 18, 77, 0.14), rgba(111, 10, 121, 0.08), transparent 42%, rgba(158, 227, 70, 0.045), rgba(228, 18, 77, 0.1));
	content: "";
	filter: blur(76px);
	opacity: 0.72;
	pointer-events: none;
	transform: translateX(-50%) rotate(-7deg);
}

.ct-hero::after {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image: radial-gradient(circle, rgba(111, 10, 121, 0.18) 0.8px, transparent 0.9px);
	background-size: 25px 25px;
	content: "";
	-webkit-mask-image: radial-gradient(ellipse 58% 65% at 50% 32%, #000, transparent 72%);
	mask-image: radial-gradient(ellipse 58% 65% at 50% 32%, #000, transparent 72%);
	opacity: 0.32;
	pointer-events: none;
}

.ct-hero__background-words {
	position: absolute;
	inset: 8% 0 0;
	z-index: 0;
	display: grid;
	align-content: center;
	gap: clamp(10px, 1.4vw, 22px);
	width: 100%;
	max-width: 100%;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.36) 24%, #000 50%, rgba(0, 0, 0, 0.48) 76%, transparent 100%);
	mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.36) 24%, #000 50%, rgba(0, 0, 0, 0.48) 76%, transparent 100%);
	opacity: 0.085;
	contain: paint;
	pointer-events: none;
	user-select: none;
}

.ct-hero__word-row {
	width: max-content;
	color: #929299;
	font-size: clamp(2.55rem, 5vw, 5.35rem);
	font-weight: 700;
	letter-spacing: -0.045em;
	line-height: 0.92;
	white-space: nowrap;
	animation: hero-word-drift 24s ease-in-out infinite;
}

.ct-hero__word-row:nth-child(2) {
	animation-direction: reverse;
	animation-duration: 28s;
}

.ct-hero__word-row:nth-child(3) {
	animation-duration: 21s;
}

.ct-hero__layout {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.9fr);
	align-items: center;
	gap: clamp(36px, 6vw, 80px);
}

.ct-hero__copy h1 {
	max-width: 14ch;
	margin-bottom: 22px;
	font-size: clamp(2.6rem, 5.4vw, 4.8rem);
	letter-spacing: -0.055em;
	line-height: 0.98;
}

.ct-hero__lead {
	max-width: 540px;
	margin: 0 0 34px;
	color: var(--muted);
	font-size: 0.95rem;
	line-height: 1.75;
}

/* Inline icon contact details — no card chrome */

.ct-hero__quick {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 28px;
	max-width: none;
}

.ct-hero__quick-link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
	transition: transform 180ms ease, color 180ms ease;
}

.ct-hero__quick-link:hover {
	transform: translateY(-1px);
}

.ct-hero__quick-icon {
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(228, 18, 77, 0.08);
	color: var(--pink);
}

.ct-hero__quick-icon svg {
	width: 17px;
	height: 17px;
}

.ct-hero__quick-text {
	display: grid;
	gap: 2px;
	min-width: 0;
}

.ct-hero__quick-text > span {
	color: var(--muted);
	font-size: 0.58rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.ct-hero__quick-text strong {
	font-size: 0.9rem;
	font-weight: 750;
	letter-spacing: -0.03em;
	line-height: 1.25;
	overflow-wrap: anywhere;
}

.ct-hero__quick-link:hover .ct-hero__quick-text strong {
	color: var(--pink);
}

/* Map + reviews overlay */

.ct-hero__map-panel {
	position: relative;
	z-index: 2;
	min-width: 0;
	/* Room for the reviews badge peeking above the map */
	padding-top: 12px;
	overflow: visible;
}

.ct-hero__map {
	position: relative;
	/* Allow reviews badge to overflow top-right */
	overflow: visible;
	min-height: min(420px, 56vw);
	border: 1px solid rgba(16, 16, 21, 0.1);
	border-radius: 22px;
	background: #f0eef2;
	box-shadow: 0 22px 48px rgba(23, 13, 38, 0.08);
}

.ct-hero__map iframe {
	display: block;
	width: 100%;
	height: min(420px, 56vw);
	min-height: 320px;
	border: 0;
	border-radius: inherit;
	opacity: 1;
	transition: opacity 280ms ease;
}

.ct-hero__map.is-loading iframe {
	opacity: 0.18;
}

.ct-hero__map-loader {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: grid;
	place-content: center;
	justify-items: center;
	gap: 14px;
	border-radius: inherit;
	background:
		radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.72), transparent 58%),
		linear-gradient(180deg, rgba(240, 238, 242, 0.55), rgba(240, 238, 242, 0.78));
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 220ms ease, visibility 220ms ease;
}

.ct-hero__map.is-loading .ct-hero__map-loader {
	opacity: 1;
	visibility: visible;
}

.ct-hero__map-spinner {
	width: 38px;
	height: 38px;
	border: 3px solid rgba(16, 16, 21, 0.1);
	border-top-color: var(--pink);
	border-right-color: color-mix(in srgb, var(--pink) 55%, var(--purple));
	border-radius: 50%;
	animation: ct-map-spin 0.75s linear infinite;
}

.ct-hero__map-loader-label {
	color: rgba(78, 78, 91, 0.78);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

@keyframes ct-map-spin {
	to {
		transform: rotate(360deg);
	}
}

@media (prefers-reduced-motion: reduce) {
	.ct-hero__map-spinner {
		animation: none;
		border-top-color: var(--pink);
		border-right-color: rgba(16, 16, 21, 0.1);
		opacity: 0.85;
	}

	.ct-hero__map iframe {
		transition: none;
	}
}

.ct-hero__reviews {
	position: absolute;
	top: -16px;
	right: -12px;
	z-index: 3;
	width: max-content;
	max-width: calc(100% - 12px);
	margin: 0;
	justify-content: flex-start;
	box-shadow: 0 14px 32px rgba(22, 0, 85, 0.12);
}

.ct-hero__address {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 12px 2px 0;
	color: #8a8a94;
	font-size: 0.78rem;
	font-weight: 500;
	line-height: 1.45;
}

.ct-hero__address-icon {
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	width: 16px;
	height: 16px;
	color: #9a9aa3;
}

.ct-hero__address-icon svg {
	width: 100%;
	height: 100%;
}

/* Main form section */

.ct-main {
	background: #fff;
	border-top: 1px solid rgba(16, 16, 21, 0.06);
}

.ct-main__layout {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
	align-items: start;
	gap: clamp(40px, 7vw, 100px);
}

.ct-main__copy h2 {
	margin-bottom: 18px;
}

.ct-main__copy > p:not(.kicker) {
	max-width: 480px;
	margin: 0 0 34px;
	color: var(--muted);
	font-size: 0.92rem;
	line-height: 1.75;
}

.ct-points {
	display: grid;
	gap: 14px;
}

.ct-points article {
	display: grid;
	grid-template-columns: 24px minmax(0, 1fr);
	align-items: start;
	gap: 0 14px;
	padding: 18px 18px 18px 16px;
	border: 1px solid rgba(16, 16, 21, 0.08);
	border-radius: 16px;
	background: #faf9fb;
}

.ct-points__icon {
	display: grid;
	place-items: start center;
	width: 24px;
	height: 24px;
	margin-top: 2px;
	border-radius: 0;
	background: none;
	color: var(--ink);
}

.ct-points__icon svg {
	width: 22px;
	height: 22px;
}

.ct-points strong {
	display: block;
	margin-bottom: 4px;
	font-size: 0.95rem;
	letter-spacing: -0.03em;
}

.ct-points p {
	margin: 0;
	color: var(--muted);
	font-size: 0.76rem;
	line-height: 1.6;
}

.ct-form-wrap {
	padding: clamp(24px, 3vw, 34px);
	border: 1px solid rgba(16, 16, 21, 0.09);
	border-radius: 22px;
	background:
		radial-gradient(circle at 100% 0%, rgba(250, 15, 85, 0.05), transparent 36%),
		#faf9fb;
	box-shadow: 0 22px 48px rgba(23, 13, 38, 0.06);
}

.ct-form-message {
	margin-bottom: 20px;
	padding: 16px 18px;
	border-radius: 14px;
}

.ct-form-message--success {
	border: 1px solid rgba(46, 140, 72, 0.22);
	background: #f2fbf4;
}

.ct-form-message--error {
	border: 1px solid rgba(180, 40, 55, 0.2);
	background: #fff5f6;
}

.ct-form-message strong {
	display: block;
	margin-bottom: 4px;
	font-size: 0.92rem;
}

.ct-form-message p {
	margin: 0;
	color: var(--muted);
	font-size: 0.78rem;
	line-height: 1.6;
}

.ct-form-message a {
	color: var(--pink);
	font-weight: 700;
}

.ct-form {
	display: grid;
	gap: 16px;
}

.ct-form__honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.ct-form__row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.ct-form label {
	display: grid;
	gap: 8px;
}

.ct-form label > span {
	color: var(--ink);
	font-size: 0.72rem;
	font-weight: 750;
	letter-spacing: 0.02em;
}

.ct-form label > span em {
	color: var(--muted);
	font-style: normal;
	font-weight: 500;
}

.ct-form input,
.ct-form select,
.ct-form textarea {
	width: 100%;
	padding: 14px 15px;
	border: 1px solid rgba(16, 16, 21, 0.12);
	border-radius: 12px;
	background: #fff;
	color: var(--ink);
	font: inherit;
	font-size: 0.9rem;
	line-height: 1.4;
	transition:
		border-color 160ms ease,
		box-shadow 160ms ease;
}

.ct-form input:focus,
.ct-form select:focus,
.ct-form textarea:focus {
	border-color: rgba(228, 18, 77, 0.4);
	box-shadow: 0 0 0 4px rgba(228, 18, 77, 0.08);
	outline: none;
}

.ct-form textarea {
	resize: vertical;
	min-height: 132px;
}

.ct-form__recaptcha-inline {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px 16px;
	padding: 12px 14px;
	border: 1px solid rgba(16, 16, 21, 0.1);
	border-radius: 12px;
	background: rgba(245, 245, 246, 0.72);
}

.ct-form__recaptcha-copy {
	display: grid;
	flex: 1 1 180px;
	gap: 1px;
}

.ct-form__recaptcha-copy strong {
	color: var(--ink);
	font-size: 0.72rem;
}

.ct-form__recaptcha-copy span,
.ct-form__recaptcha-copy small {
	color: var(--muted);
	font-size: 0.62rem;
	line-height: 1.45;
}

.ct-form__recaptcha-copy a {
	text-decoration: underline;
	text-underline-offset: 2px;
}

.ct-form__recaptcha-badge {
	flex: 0 0 256px;
	width: 256px;
	height: 60px;
}

.ct-form__recaptcha-badge .grecaptcha-badge {
	position: relative !important;
	right: auto !important;
	bottom: auto !important;
	left: auto !important;
	width: 256px !important;
	height: 60px !important;
	box-shadow: none !important;
	visibility: visible !important;
}

.ct-form__recaptcha-error {
	flex: 1 0 100%;
	margin: 0;
	color: #a51d3d;
	font-size: 0.68rem;
	font-weight: 700;
}

.ct-form .button {
	justify-self: start;
	margin-top: 4px;
}

.ct-form__submit {
	position: relative;
	min-width: 11.5rem;
	justify-content: center;
	cursor: pointer;
}

.ct-form__submit-label,
.ct-form__submit-busy {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.ct-form__submit-busy {
	display: none;
}

.ct-form.is-submitting .ct-form__submit {
	cursor: wait;
	pointer-events: none;
	opacity: 0.92;
}

.ct-form.is-submitting .ct-form__submit-label {
	display: none;
}

.ct-form.is-submitting .ct-form__submit-busy {
	display: inline-flex;
}

.ct-form__spinner {
	width: 1em;
	height: 1em;
	border: 2px solid rgba(255, 255, 255, 0.35);
	border-top-color: #fff;
	border-radius: 50%;
	animation: ct-map-spin 0.7s linear infinite;
	flex-shrink: 0;
}

.ct-form.is-submitting input,
.ct-form.is-submitting select,
.ct-form.is-submitting textarea {
	pointer-events: none;
	opacity: 0.72;
}

@media (prefers-reduced-motion: reduce) {
	.ct-form__spinner {
		animation: none;
		border-top-color: #fff;
		opacity: 0.9;
	}
}

.ct-form small {
	color: var(--muted);
	font-size: 0.7rem;
	line-height: 1.5;
}

/* Channels */

.ct-channels {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background: #fff;
	border-top: 1px solid rgba(16, 16, 21, 0.06);
}

/* Live Google Maps background — high-res feel, soft white fade */
.ct-channels__map-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	pointer-events: none;
	user-select: none;
}

.ct-channels__map-bg iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 140%;
	height: 140%;
	min-width: 1200px;
	min-height: 900px;
	border: 0;
	transform: translate(-50%, -50%);
	filter: grayscale(1) contrast(1.05) brightness(1.08);
	opacity: 0.55;
	pointer-events: none;
}

.ct-channels::before {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		/* Soft white vignette — centre a touch more faded for card readability */
		radial-gradient(ellipse 78% 70% at 50% 45%, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.62) 42%, rgba(255, 255, 255, 0.88) 78%, #fff 100%),
		linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.5) 18%, rgba(255, 255, 255, 0.32) 50%, rgba(255, 255, 255, 0.55) 82%, #fff 100%),
		linear-gradient(90deg, #fff 0%, transparent 18%, transparent 82%, #fff 100%);
	content: "";
	pointer-events: none;
}

.ct-channels > .container {
	position: relative;
	z-index: 2;
}

.ct-channels__header {
	max-width: 640px;
	margin: 0 auto clamp(40px, 5vw, 60px);
	text-align: center;
}

.ct-channels__header .kicker {
	justify-content: center;
}

.ct-channels__header h2 {
	margin-bottom: 0;
}

.ct-channels__grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 14px;
}

.ct-channels__grid article {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 24px 22px;
	border: 1px solid rgba(16, 16, 21, 0.08);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 14px 32px rgba(23, 13, 38, 0.04);
}

.ct-channels__icon {
	display: grid;
	place-items: center;
	width: 24px;
	height: 24px;
	margin-bottom: 16px;
	color: var(--ink);
}

.ct-channels__icon svg {
	width: 22px;
	height: 22px;
}

.ct-channels__icon--whatsapp {
	color: #1faa4a;
}

.ct-channels__icon--meet img {
	display: block;
	width: 24px;
	height: 24px;
	object-fit: contain;
}

.ct-channels__label {
	display: block;
	margin-bottom: 10px;
	color: var(--pink);
	font-size: 0.64rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.ct-channels__grid strong {
	display: block;
	margin-bottom: 10px;
	font-size: 1.05rem;
	letter-spacing: -0.03em;
	line-height: 1.25;
	overflow-wrap: anywhere;
}

.ct-channels__grid p {
	flex: 1 1 auto;
	margin: 0 0 18px;
	color: var(--muted);
	font-size: 0.78rem;
	line-height: 1.65;
}

/* Keep CTA wording + arrow on one line, aligned across cards */
.ct-channels__grid .arrow-link {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	gap: 10px;
	margin-top: auto;
	padding-bottom: 4px;
	line-height: 1.2;
	white-space: nowrap;
}

.ct-channels__grid .arrow-link span {
	display: inline-block;
	line-height: 1;
}

/* Reveal motion */

.ct-motion-ready [data-ct-reveal] {
	opacity: 0;
	transform: translateY(22px);
	transition:
		opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
		transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
	transition-delay: var(--ct-delay, 0ms);
}

.ct-motion-ready [data-ct-reveal].is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Responsive */

@media (max-width: 1240px) {
	.ct-channels__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.ct-channels__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ct-hero__layout,
	.ct-main__layout {
		grid-template-columns: 1fr;
	}

	.ct-hero__map-panel {
		order: -1;
	}

	.ct-hero__map,
	.ct-hero__map iframe {
		min-height: 280px;
		height: 300px;
	}

	.ct-hero__quick {
		gap: 14px 20px;
	}

	.ct-hero__reviews {
		top: -12px;
		right: -6px;
	}

	.ct-form__row {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.ct-channels__grid {
		grid-template-columns: 1fr;
	}

	.ct-form-wrap {
		padding: 20px;
	}

	.ct-form .button {
		width: 100%;
		justify-self: stretch;
	}

	.ct-form__recaptcha-inline {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 359px) {
	.ct-form__recaptcha-badge {
		height: 50px;
		overflow: hidden;
	}

	.ct-form__recaptcha-badge .grecaptcha-badge {
		transform: scale(0.82);
		transform-origin: left top;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ct-motion-ready [data-ct-reveal] {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.ct-hero__quick-link {
		transition: none;
	}

	.ct-hero__word-row {
		animation: none;
	}
}
