/* Scoped contact layout. Other brand pages keep their existing stylesheet. */
.page.vinduer24-contact-template {
	min-width: 0;
	background: #fff;
	color: #15364b;
}

.page.vinduer24-contact-template .content-area,
.page.vinduer24-contact-template .site-main {
	margin: 0;
	padding: 0;
}

.page.vinduer24-contact-template .content-container.site-container {
	display: block;
	max-width: none;
	padding: 0;
}

.v24-contact {
	--contact-ink: #10354e;
	--contact-muted: #506575;
	--contact-line: #dce4e9;
	color: var(--contact-ink);
	font-size: 1rem;
	line-height: 1.65;
}

.v24-contact *,
.v24-contact *::before,
.v24-contact *::after {
	box-sizing: border-box;
}

.v24-contact__shell {
	width: min(100%, 1220px);
	margin-inline: auto;
	padding-inline: clamp(20px, 4vw, 40px);
}

.v24-contact h1,
.v24-contact h2,
.v24-contact h3 {
	margin: 0 0 12px;
	color: inherit;
	font-weight: 750;
	letter-spacing: -.025em;
	line-height: 1.2;
}

.v24-contact h1 { font-size: clamp(2.1rem, 4vw, 3rem); }
.v24-contact h2 { font-size: clamp(1.35rem, 2.1vw, 1.65rem); }
.v24-contact h3 { font-size: 1.05rem; }
.v24-contact p { margin: 0 0 16px; }
.v24-contact a { color: inherit; text-underline-offset: 4px; }
.v24-contact a:hover { text-decoration-thickness: 2px; }

.v24-contact :is(a, summary, input, textarea, button):focus-visible {
	outline: 3px solid #126fa2;
	outline-offset: 4px;
}

.v24-contact__intro {
	position: relative;
	isolation: isolate;
	padding-block: clamp(32px, 4vw, 52px) 32px;
	background: #10354e;
	color: #fff;
}

.v24-contact__intro-photo {
	position: absolute;
	z-index: -1;
	inset: 0 0 0 36%;
	overflow: hidden;
	pointer-events: none;
}

.v24-contact__intro-photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 40%;
}

.v24-contact__intro-photo::after {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(0deg, #10354e 0%, rgba(16, 53, 78, .35) 80%),
		linear-gradient(90deg, #10354e 0%, rgba(16, 53, 78, .12) 100%);
	content: "";
}

.v24-contact__lead {
	max-width: 44rem;
	font-size: 1.125rem;
}

.v24-contact__channels {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr;
	gap: 16px;
	margin-top: 28px;
}

.v24-contact__channel {
	min-width: 0;
	padding: 24px;
	border: 1px solid rgba(16, 53, 78, .08);
	border-radius: 12px;
	background: #fff;
	color: var(--contact-ink);
	box-shadow: 0 8px 24px rgba(5, 25, 39, .07);
}

.v24-contact .v24-contact__icon-heading {
	display: flex;
	align-items: center;
	gap: 12px;
}

.v24-contact__icon {
	display: inline-flex;
	flex: 0 0 36px;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 1px solid #dce7ee;
	border-radius: 10px;
	background: #f0f5f8;
	color: #285770;
}

.v24-contact__icon svg {
	fill: none;
	stroke: currentColor;
	stroke-width: 1.65;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.v24-contact__icon--visit {
	border-color: #d7e7df;
	background: #eaf3ed;
	color: #356c56;
}

.v24-contact__icon--small {
	flex-basis: 28px;
	width: 28px;
	height: 28px;
	border: 0;
	background: transparent;
}

.v24-contact__channel h2 { margin-bottom: 20px; font-size: 1.375rem; }
.v24-contact__channel > p { color: var(--contact-muted); }
.v24-contact__phone-row + .v24-contact__phone-row {
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid var(--contact-line);
}

.v24-contact__phone-row p { margin-bottom: 2px; }
.v24-contact__phone-row span {
	display: block;
	color: var(--contact-muted);
	font-size: .9rem;
}

.v24-contact__number {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	font-size: 1.5rem;
	font-weight: 750;
	line-height: 1.3;
	white-space: nowrap;
}

.v24-contact__email {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	font-weight: 750;
	overflow-wrap: anywhere;
}

.v24-contact .v24-contact__button {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 48px;
	margin-top: 4px;
	padding: 10px 18px;
	border: 1px solid var(--contact-ink);
	border-radius: 5px;
	background: var(--contact-ink);
	color: #fff;
	font-weight: 700;
	text-decoration: none;
}

.v24-contact .v24-contact__button:hover { background: #1b4d6e; }

.v24-contact__enquiry {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(0, .85fr);
	align-items: start;
	gap: clamp(32px, 5vw, 64px);
	padding-block: clamp(36px, 5vw, 64px);
}

.v24-contact__form,
.v24-contact .vinduer24-lead-form { scroll-margin-top: 110px; }
.v24-contact__form > p,
.v24-contact__help > p { color: var(--contact-muted); }
.v24-contact__form:focus { outline: none; }

.v24-contact .vinduer24-lead-form::before { display: none; }
.v24-contact .vinduer24-lead-form__section:first-of-type { padding-top: 6px; }
.v24-contact .vinduer24-lead-form__section-heading { display: none; }
.v24-contact .vinduer24-lead-form__section { padding-bottom: 20px; }
.v24-contact .vinduer24-lead-form__grid { gap: 18px; }
.v24-contact .vinduer24-lead-form__footnote { display: none; }
.v24-contact .vinduer24-lead-form__privacy { font-size: .875rem; }

.v24-contact__help details { border-bottom: 1px solid var(--contact-line); }
.v24-contact__help summary {
	position: relative;
	padding: 16px 28px 16px 0;
	font-weight: 700;
	cursor: pointer;
	list-style: none;
}

.v24-contact__help summary::-webkit-details-marker { display: none; }
.v24-contact__help summary::after {
	position: absolute;
	right: 2px;
	content: "+";
	font-size: 1.25rem;
	line-height: 1.3;
}

.v24-contact__help details[open] summary::after { content: "−"; }
.v24-contact__help details p { font-size: .95rem; }

.v24-contact__quote {
	margin-top: 24px;
	padding: 22px;
	border-left: 3px solid #0d7655;
	background: #f2f7f5;
}

.v24-contact__quote p { font-size: .95rem; }
.v24-contact__quote a {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-height: 44px;
	font-weight: 700;
}

.v24-contact__visit {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(0, .85fr);
	gap: 32px;
	padding: clamp(24px, 3vw, 36px);
	border: 1px solid var(--contact-line);
	border-radius: 8px;
	background: #f5f8fa;
}

.v24-contact__visit address { font-style: normal; font-weight: 650; }
.v24-contact__visit-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 24px;
	margin-top: 10px;
}

.v24-contact__visit-links a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 44px;
}

.v24-contact__appointment {
	align-self: center;
	padding: 20px 24px;
	border: 1px solid var(--contact-line);
	border-radius: 8px;
	background: #fff;
}
.v24-contact__appointment h3 { margin: 0 0 8px; color: var(--contact-ink); }
.v24-contact__appointment p { margin: 0 0 12px; }
.v24-contact__appointment a { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; font-weight: 700; }
.v24-contact .v24-contact__company {
	margin: 20px 0 36px;
	color: var(--contact-muted);
	font-size: .875rem;
}

@media (max-width: 1200px) {
	.v24-contact__channels { grid-template-columns: 1fr 1fr; }
	.v24-contact__channel--phone { grid-column: 1 / -1; }
	.v24-contact__channel--phone { display: grid; grid-template-columns: 1fr 1fr; column-gap: 32px; }
	.v24-contact__channel--phone h2 { grid-column: 1 / -1; }
	.v24-contact__phone-row + .v24-contact__phone-row { margin: 0; padding: 0; border: 0; }
}

@media (max-width: 1000px) {
	.v24-contact__enquiry { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 600px) {
	.v24-contact__intro-photo { inset: 0 0 auto 0; height: 270px; }
	.v24-contact__intro-photo::after {
		background: linear-gradient(0deg, #10354e 0%, rgba(16, 53, 78, .85) 100%);
	}
	.v24-contact__channels,
	.v24-contact__channel--phone,
	.v24-contact__visit { grid-template-columns: minmax(0, 1fr); }
	.v24-contact__channel { padding: 20px; }
	.v24-contact__channel h2 { margin-bottom: 12px; }
	.v24-contact__phone-row + .v24-contact__phone-row {
		margin-top: 12px;
		padding-top: 12px;
		border-top: 1px solid var(--contact-line);
	}
	.v24-contact .vinduer24-lead-form__grid { grid-template-columns: minmax(0, 1fr); }
	.v24-contact__visit { gap: 24px; }
}
