/* =============================================================================
   Colour Point — base theme
   Orange/red accent on white, dark footer. Matches supplied homepage design.
   ========================================================================== */

/* ---- Scroll animations (AOS) fallback ------------------------------------
   aos.css hides every [data-aos] element until it scrolls into view. If JS is
   off/fails or the visitor prefers reduced motion, aos-init.js never sets the
   `aos-ready` class, so this rule keeps all content fully visible.
   This file loads after aos.css, so it wins. */
html:not(.aos-ready) [data-aos] {
    opacity: 1 !important;
    transform: none !important;
}

/* ---- Fonts --------------------------------------------------------------- */
@font-face {
    font-family: "Roboto";
    src: url("../Fonts/Roboto/Roboto-VariableFont_wdth,wght.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Roboto";
    src: url("../Fonts/Roboto/Roboto-Italic-VariableFont_wdth,wght.ttf") format("truetype");
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: "DM Sans";
    src: url("../Fonts/DM_Sans/DMSans-VariableFont_opsz,wght.ttf") format("truetype");
    font-weight: 100 1000;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "DM Sans";
    src: url("../Fonts/DM_Sans/DMSans-Italic-VariableFont_opsz,wght.ttf") format("truetype");
    font-weight: 100 1000;
    font-style: italic;
    font-display: swap;
}

:root {
    --cp-orange: #f9710d;
    --cp-orange-2: #f48628;
    --cp-orange-dark: #f43a4e;
    --cp-orange-gradient: linear-gradient(90deg, #f43a4e 0%, #f9710e 100%);
    --cp-black-gradient: linear-gradient(90deg, #000000 0%, #342e2b 100%);
    --cp-dark: #332f2b;
    --cp-dark-2: #1a1716;
    --cp-text: #342f2b;
    --cp-muted: #a3a3a2;
    --cp-border: #dfdcd9;
    --cp-max: 1640px;
    --cp-maxsmall: 1400px;
    --cp-radius: 8px;
    --cp-font: "Roboto", "Helvetica Neue", Arial, sans-serif;
    --cp-font-special: "DM Sans", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
/*html.nav-open, html.nav-open body { overflow: hidden; }*/

body {
    margin: 0;
    font-family: var(--cp-font);
    color: var(--cp-text);
    line-height: 1.4;
    background: #fff;
	text-align: left;
	font-size: 30px;
	font-weight: 400;
	letter-spacing: 0.3px;
}
.position-fixed {
	position: fixed;
}
.position-relative {
	position: relative;
}
.position-absolute {
	position: absolute;
}

.frame-space-before-extra-small{
	padding-top: 20px;
	margin: 0;
}
.frame-space-before-small{
	padding-top: 40px;
	margin: 0;
}
.frame-space-before-medium{
	padding-top: 60px;
	margin: 0;
} 
.frame-space-before-large{
	padding-top: 80px;
	margin: 0;
}
.frame-space-before-extra-large{
	padding-top: 120px;
	margin: 0;
}
.frame-space-after-extra-small{
	padding-bottom: 20px;
	margin: 0;
}
.frame-space-after-small{
	padding-bottom: 40px;
	margin: 0;
}
.frame-space-after-medium{
	padding-bottom: 60px;
	margin: 0;
} 
.frame-space-after-large{
	padding-bottom: 80px;
	margin: 0;
}
.frame-space-after-extra-large{
	padding-bottom: 120px;
	margin: 0;
}
.frame-indent {
	margin: 0 auto;
}
.text-center {
	text-align: center;
}
a { color: var(--cp-orange); text-decoration: none; }
a:hover { color: var(--cp-orange-2); }

img {
	max-width: 100%;
	height: auto;
}
p {
	margin: 0 0 35px 0;
}
/* RTE utility classes (selectable via the Styles dropdown in the editor) */
.text-orange { color: var(--cp-orange); }

/* Font sizes. .text-30 mirrors the body size, the others step down from it.
   All four are scaled per breakpoint in responsive.css. */
.text-30 { font-size: 30px; }
.text-24 { font-size: 24px; }
.text-20 { font-size: 20px; }
.text-18 { font-size: 18px; }
a.btn {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 26px;
	min-width: 200px;
	background: var(--cp-dark);
	color: #fff;
	font-weight: 400;
	padding: 15px 25px;
	border-radius: 50px;
	transition: all .15s ease;
	font-size: 16px;
}
a.btn::after {
	content: "";
	font-size: 16px;
	line-height: 1;
	background-image: url(../Images/arrow-right.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	width: 16px;
	height: 16px;
}
a.btn:hover {
	transform: translateY(-1px);
	background: var(--cp-orange-gradient);
}

h1, h2 { 
	line-height: 1.2;
	color: var(--cp-text); 
	font-weight: 600;
	font-size: 60px;
	margin: 0 0 20px;
}
h3{
	line-height: 1.2;
	color: var(--cp-orange);
	font-size: 28px;
  	font-weight: normal;
	margin: 0 0 20px;
}

.container {
    width: 100%;
    max-width: var(--cp-max);
    margin: 0 auto;
    padding: 0 20px;
}
.container-small{
	width: 100%;
	max-width: var(--cp-maxsmall);
	margin: 0 auto;
	padding: 0 20px;
}


/* ---- Buttons ------------------------------------------------------------- */
.btn {
    display: inline-block;
    padding: 12px 26px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: .3px;
    transition: transform .15s ease, box-shadow .15s ease;
}
.btn--primary {
    background: var(--cp-orange-gradient);
    color: #fff;
    box-shadow: 0 6px 16px rgba(232, 68, 42, .25);
}
.btn--primary:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(232, 68, 42, .35);
}

/* ---- Logo ---------------------------------------------------------------- */
.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 800;
    font-size: 26px;
    letter-spacing: 1px;
    color: var(--cp-dark);
}
.site-logo__mark--accent {
    color: var(--cp-orange);
}
.site-logo--footer { color: #fff; font-size: 24px; }
.site-logo--footer .site-logo__mark { color: #fff; }
.site-logo--footer .site-logo__mark--accent { color: var(--cp-orange); }

/* =============================================================================
   Header
   ========================================================================== */
.site-header {
	position: relative;
	z-index: 10;
}
.site-header__topbar {
	color: var(--cp-text);
	font-size: 14px;
	position: absolute;
	width: 100%;
	top: 25px;
	left: 0;
}
.site-header__topbar-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 40px;
}
.site-header__phone {
    color: var(--cp-text);
    display: inline-flex;
    align-items: center;
    gap: 6px;
	font-size: 30px;
  	letter-spacing: 0.5px;
	font-family: var(--cp-font-special);
	font-weight: 500;
}
.site-header__phone-icon { 

}
.site-header__phone-icon img {

}

.site-header__main {
    background: #fff;
    padding: 20px 0 40px;
}
.site-header__main-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.main-nav {
    display: flex;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.main-nav__item, .site-nav__contact {
	transform: translateY(10px);
  	opacity: 0;
	transition: transform 1.05s cubic-bezier(.215, .61, .355, 1) 0s, opacity .35s linear 0s;
}
.nav-open .main-nav__item, .nav-open .site-nav__contact {
	transform: translateY(0);
  	opacity: 1;
}
.main-nav__link {
    color: var(--cp-dark);
    font-weight: 600;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
}
.main-nav__link:hover,
.main-nav__link--active {
    color: var(--cp-orange);
    border-bottom-color: var(--cp-orange);
}

.main-nav__sub {
    display: flex;
    flex-direction: column;
    gap: 6px;
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
}
.main-nav__sub-link {
    color: var(--cp-dark);
    font-weight: 400;
    padding: 2px 0;
    border-bottom: 2px solid transparent;
}
.main-nav__sub-link:hover,
.main-nav__sub-link--active {
    color: var(--cp-orange);
    border-bottom-color: var(--cp-orange);
}

/* ---- Sticky, shrinking header on scroll ---------------------------------
   `is-sticky` is added by main.js once the page has scrolled past a small
   threshold. The topbar (phone) is dropped and the logo/padding shrink so the
   header takes up less vertical space while pinned to the top. */
.site-header__main {
	transition: padding 0.3s ease;
}
.site-header.is-sticky {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.site-header.is-sticky .site-header__topbar {
	display: none;
}
.site-header.is-sticky .site-header__main {
	padding: 10px 0;
}
.site-header.is-sticky .site-header__main-inner .site-logo img {
	height: 70px;
}
.site-header.is-sticky .site-nav {
	margin-top: 0;
}
/* .site-header.is-sticky .site-nav__close {
	margin-top: 25px;
} */
.site-logo img,
.site-nav {
	transition: height 0.5s ease, margin-top 0.5s ease;
}

/* =============================================================================
   Main content
   ========================================================================== */
.page-main {
	min-height: 40vh;
}
.page-default { padding: 48px 20px; }
.home h1, .page-default h1 {
    font-size: clamp(28px, 4vw, 44px);
    margin: 0 0 .5em;
}



/* ---- Logo image ---------------------------------------------------------- */
.site-logo img { height: 145px; width: auto; display: block; }
.site-header__main-inner { }

/* ---- Navigation ---------------------------------------------------------- */
.site-nav {
	margin-top: 40px;
}
.site-nav__toggle {
	display: flex;
	align-items: center;
	cursor: pointer;
	justify-content: flex-end;
}
.site-nav__toggle-icon {
	width: 50px;
	height: 30px;
	margin-right: 15px;
	position: relative;
}
.site-nav__toggle-icon span {
	width: 100%;
	display: block;
	height: 4px;
	background-color: var(--cp-text);
	position: absolute;
	top: 10px;
	transition: top 0.3s ease, transform 0.3s ease;
}
.site-nav__toggle-icon span:last-child	{
	top: 20px;
}
/* Hamburger -> X when the menu is open */
.site-nav.is-open .site-nav__toggle-icon span {
	top: 15px;
}
.site-nav.is-open .site-nav__toggle-icon span:first-child {
	transform: rotate(25deg);
}
.site-nav.is-open .site-nav__toggle-icon span:last-child {
	transform: rotate(-25deg);
}
.site-nav__toggle-label {
	font-size: 32px;
	text-transform: uppercase;
	font-family: var(--cp-font-special);
}
/* ---- Full-screen menu overlay (open state) ------------------------------ */
/* The overlay is a direct child of <header>, so its visibility is driven by
   the `nav-open` class that the script sets on <html> (not by .site-nav). */
.site-nav__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	display: flex;
	flex-direction: column;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease, visibility 0.4s ease;
}
html.nav-open .site-nav__overlay {
	opacity: 1;
	visibility: visible;
}
.nav-open .site-header::before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(60, 82, 88, 0.8);
	z-index: 9;
}
/* Orange gradient panel that fills the overlay */
.site-nav__panel {
	flex: 1 1 auto;
	background: var(--cp-orange-gradient);
	display: flex;
	flex-direction: column;
	padding: 20px 0 80px;
	overflow-y: auto;
}

/* Panel header: white logo on the left, close button on the right */
.site-nav__panel-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
}
.site-logo--overlay img { height: 145px; }
.site-nav__close {
	display: flex;
	align-items: center;
	gap: 15px;
	cursor: pointer;
	color: #fff;
	margin-top: 70px;
}
.site-nav__close-icon {
	width: 50px;
	height: 45px;
	position: relative;
	flex: 0 0 auto;
}
.site-nav__close-icon span {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 4px;
	background-color: #fff;
	transition: transform 0.3s ease;
}
.nav-open .site-nav__close-icon span:first-child { transform: translateY(-50%) rotate(25deg); }
.nav-open .site-nav__close-icon span:last-child  { transform: translateY(-50%) rotate(-25deg); }
.site-nav__close-label {
	font-size: 32px;
	text-transform: uppercase;
	color: #fff;
	font-family: var(--cp-font-special);
	letter-spacing: 0px;
	font-weight: 400;
}

/* Panel body: contact details (left) + vertical menu (right) */
.site-nav__panel-body {
	flex: 1 1 auto;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 40px;
	padding-top: 50px;
}

/* Contact record (tt_content uid 29) rendered here */
.site-nav__contact {
	color: #fff;
	font-weight: 200;
	line-height: 1.5;
	font-size: 46px;
}
.site-nav__contact :is(p, h1, h2, h3, h4, ul, ol) { margin: 0; }
.site-nav__contact a { color: #fff; text-decoration: none; }
.site-nav__contact a:hover { text-decoration: underline; }

/* Vertical, right-aligned navigation */
.site-nav__menu .main-nav {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.site-nav__menu .main-nav__item { width: auto; text-align: right;}
.site-nav__menu .main-nav__link {
	color: #fff;
	font-size: 46px;
	font-weight: 300;
	padding: 4px 0;
	white-space: nowrap;
}
.site-nav__menu .main-nav__link:hover,
.site-nav__menu .main-nav__link--active {
	color: #fff;
	border-bottom-color: #fff;
}
.site-nav__menu .main-nav__sub {
	align-items: flex-end;
	gap: 4px;
	margin: 10px 30px 15px 0;
}
.site-nav__menu .main-nav__sub-link {
	color: #FFF;
	font-size: 22px;
	font-weight: 300;
	padding: 2px 0;
	white-space: nowrap;
}
.site-nav__menu .main-nav__sub-link:hover,
.site-nav__menu .main-nav__sub-link--active {
	color: #fff;
	border-bottom-color: #fff;
}

/* =============================================================================
   Generic section / b13 container layout
   ========================================================================== */
.home { overflow-x: clip; }

.container--2cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
	width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* Section headers (FSC <header><h2><h3>) */
.frame header {
    text-align: center;
    margin: 0 auto 36px;
}



/* =============================================================================
   Hero (media-teaser → .banner)
   ========================================================================== */
.banner { 
    position: relative;
    overflow: hidden;
    margin: 0;
	
}
.banner.no-image .banner-upper{
	/* background-image: url(../Images/bg_banner.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover; */
	background: var(--cp-black-gradient);
}
.banner .banner-upper::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 180px;
	background-image: url(../Images/curved-banner-background.svg);
	background-repeat: no-repeat;
	background-size: 5000px auto;
	background-position: center center;
}

.banner-upper {
    position: relative;
    padding: 180px 0 165px;
	background: linear-gradient( 90deg, rgba(0, 0, 0, 0.5) 0%, rgba(52, 46, 43, 0.3) 100% );
}



.media-teaser__image {
	position: absolute;
	inset: 0;
	margin: 0;
	z-index: 0;
}
.media-teaser__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	object-position: top right;
}
.media-teaser__image img.top-center { object-position: top center; }
.media-teaser__image img.top-left { object-position: top left; }
.banner::after {
    content: '';
	position: absolute;
	left: -5%;
	width: 110%;
	height: 160px;
	background: white;
	border-top-right-radius: 50%;
	border-top-left-radius: 50%;
	bottom: -60px;
	transform: rotate(-2deg);
	/* width: 100%;
	height: 160px;
	left: 0;
	bottom: -60px;
	background-image: url(../Images/curved-banner-bottom-overlay.svg);
	background-repeat: no-repeat;
	background-size: 5000px auto;
	background-position: center center; */
}
.media-teaser__header,
.media-teaser__text,
.media-teaser__items { position: relative; z-index: 2; }
.media-teaser__header {
    color: var(--cp-orange);
    font-size: 6rem;
    max-width: 920px;
    margin: 0 0 30px;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .35);
}
.media-teaser__text {
    color: #fff;
    max-width: 1200px;
    margin: 0;
	font-size: 36px;
}
.media-teaser__items-wrapper{
	margin-top: 160px;
	width: 100%;
}
.media-teaser__items {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0;
    padding: 0 5%;
}
.media-teaser__item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
}
.media-teaser__item img {
	max-height: 75px;
	width: auto;
	max-width: 60px;
	height: auto;
}
.media-teaser__item-title {
	color: #fff;
	font-size: 36px;
	letter-spacing: 1px;
	margin: 0;
	font-weight: 300;
	font-family: var(--cp-font-special);
}

/* =============================================================================
   Service intro card (banner-overlay-box + teaser--primary inside one container)
   ========================================================================== */
.banner-overlay-box {
	background: #fff;
	border-radius: 22px;
	box-shadow: 0 30px 70px rgba(0, 0, 0, .10);
	margin-top: -135px;
	margin-bottom: 90px;
	margin-left: auto;
	margin-right: auto;
	padding: 50px 40px;
	position: relative;
	z-index: 5;
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-align: center;
}
.home > .frame:has(.banner-overlay-box) { padding-bottom: 0; }

.banner-overlay-box__image { margin: 0 0; }
.banner-overlay-box__image.rotated {
	transform: scaleX(-1);
}
.banner-overlay-box__image img { height: 92px; width: auto; }
.banner-overlay-box__header { 
	margin: 0 0 20px; 
	font-size: 44px;
}
.banner-overlay-box__subheader {
	margin: 0;
	font-size: 24px;
}

/* Welcome body copy inside the card */


/* Three service columns */
.teaser--primary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 20px;
    margin-bottom: 40px;
}
.teaser--primary .teaser__item {
	padding: 5px 20px;
	display: flex;
	flex-flow: column;
	align-items: center;
	padding-bottom: 55px;
}
.teaser--primary .teaser__image {
	margin: 0 0 30px;
	width: 100%;
	border-bottom: 3px solid var(--cp-orange);
	padding-bottom: 45px;
}
.teaser--primary .teaser__image img { 
	height: 60px; 
	width: auto; 
	margin: auto;
  	display: block;
}
.teaser__header {
    font-size: 32px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 45px;
	color: var(--cp-orange);
	text-align: center;
}
.teaser__text { font-size: 24px; }
.teaser__link {
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 20px;
}
.teaser--primary .teaser__link a {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 26px;
	min-width: 200px;
	background: var(--cp-dark);
	color: #fff;
	font-weight: 400;
	padding: 15px 30px;
	border-radius: 50px;
	transition: all .15s ease;
	font-size: 16px;
}
.teaser--primary .teaser__link a::after {
    content: "";
    font-size: 16px;
    line-height: 1;
	background-image: url(../Images/arrow-right.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	width: 20px;
	height: 20px;
}
.teaser--primary .teaser__link a:hover {
    background: var(--cp-orange);
    color: #fff;
    transform: translateY(-1px);
}

/* =============================================================================
   Orange stats curve (special-image-text)
   ========================================================================== */
.orange-curve, .black-curve {
	overflow: hidden;
	margin: 0;
}   

.orange-curve-upper, .black-curve-upper {
    position: relative;
	padding: 100px 0 180px;
    background-image: url(../Images/bg_orange_gradient.png);
    background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	
}
.black-curve-upper {
	background-image: url(../Images/bg_black_gradient.png);
	padding: 80px 0 160px;
	
}
.orange-curve-upper::after, .black-curve-upper::after {
	content: '';
	position: absolute;
	left: -5%;
	width: 110%;
	height: 160px;
	border-top-right-radius: 50%;
	border-top-left-radius: 50%;
	bottom: -60px;
	transform: rotate(-2deg);	
	display: none;
}
.orange-curve-lower, .black-curve-lower {
	position: relative;
	width: 100%;
	height: 80px;
	transform: rotate(-2deg);
	display: none;
}
.orange-curve-lower::after, .black-curve-lower::after {
	content: '';
	position: absolute;
	top: 10px;
	width: 120%;
	height: 180px;
	padding: 0;
	background: var(--cp-orange-gradient);
	border-top-left-radius: 50%;
	border-top-right-radius: 50%;
	left: -14%;	
}
.black-curve-lower::after {
	background: var(--cp-black-gradient);
}

.special-image-text{
	color: #fff;
	margin-top: 90px;
	margin-bottom: 70px;
}
.special-image-text__items {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	max-width: var(--cp-maxsmall);
	margin: 0 auto;
	padding: 30px 0 40px 0;
}
.special-image-text__item {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 8px;
	position: relative;
	justify-content: flex-end;
}

.special-image-text__image {
	margin: 0;
	height: 180px;
	display: flex;
	align-items: center;
}
.special-image-text__image img {
	height: auto;
	width: auto;
	max-width: 100%;
	max-height: 100%;
}
.special-image-text__title {
	color: #fff;
	font-size: 9rem;
	font-weight: 200;
	margin: 0 0 10px 0;
	line-height: 1.1;
	min-height: 90px;
}
.special-image-text__text {
	font-size: 26px;
	letter-spacing: .6px;
	padding-top: 10px;
}
.special-image-text__text p { margin: 0; }

/* =============================================================================
   Services — Lackierung & Karosserie (special-list, 2 columns)
   ========================================================================== */
.special-list_top {
	display: flex;
	align-items: center;
	text-align: left;
	margin-bottom: 20px;
}
.special-list {
	display: flex;
	flex-direction: column;
	margin-top: 50px;
}
.special-list__image {
	margin: 0 30px 10px 0;
	min-height: 80px;
	display: flex;
  	align-items: center;
}
.special-list__image img {
	height: auto;
	width: auto;
	max-height: 80px;
	max-width: 90px;
}
.special-list__header {
	font-size: 44px;
	margin: 0;
}
.special-list__text ul, .frame-layout-1 .ce-textpic ul { list-style: none; padding: 0; margin: 0; }
.special-list__text li, .frame-layout-1 .ce-textpic ul li {
	position: relative;
	padding-left: 40px;
	margin-bottom: 6px;
	color: var(--cp-text);
}
.special-list__text li::before, .frame-layout-1 .ce-textpic ul li::before {
    content: url(../Images/checkmark.png);
    position: absolute;
    left: 0;
    top: 0;
    color: var(--cp-orange);
    font-weight: 700;
}

/* =============================================================================
   Process — So läuft's ab (how-it-works, dark)
   ========================================================================== */
.how-it-works {
    color: #fff;
    text-align: center;
	margin-top: 110px;
}
.how-it-works__header {
	color: #fff;
	margin: 0px 0 20px;
	padding-top: 10px;
	letter-spacing: 1.5px;
}
.how-it-works__subheader { margin: 0 0 40px; }
.how-it-works__items {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 28px;
    max-width: var(--cp-maxsmall);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}
.how-it-works__items .how-it-works__number::before, .how-it-works__items .how-it-works__number::after {
	content: "";
	position: absolute;
	top: 50%;
	left: -15px;
	height: 2px;
	background: var(--cp-orange);
	z-index: 0;
	width: 40%;
}
.how-it-works__items .how-it-works__number::after {
	left: auto;
	right: -15px;
}

.how-it-works__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}
.how-it-works__number {
	color: var(--cp-orange);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 9rem;
	font-weight: 300;
	margin-bottom: 20px;
	width: 100%;
	position: relative;
}
.how-it-works__title {
	color: #fff;
	font-size: 26px;
	margin: 0 0 15px;
	letter-spacing: 2px;
}
.how-it-works__text {
	color: #fff;
	font-size: 20px;
	max-width: 320px;
	line-height: 1.3;
}
.how-it-works__text p { margin: 0; }

/* =============================================================================
   Why us — Warum Colour Point? (logos + special-numbers-list)
   ========================================================================== */
.ce-gallery .ce-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 48px;
    margin: 8px 0 40px;
}
.ce-gallery .ce-column { margin: 0; }
.ce-gallery figure.image { margin: 0; }
.ce-gallery img { width: auto; height: auto;}

.special-numbers-list {
	margin-top: 50px;
	margin-bottom: 120px;
}
.special-numbers-list__items {
	list-style: none;
	margin: 0;
	padding: 0;
}
.special-numbers-list__item {
	display: flex;
	margin-bottom: 20px;
}
.special-numbers-list__number {
	font-size: 64px;
	font-weight: 800;
	color: var(--cp-orange);
	line-height: 1;
	margin-right: 40px;
	background: var(--cp-orange-gradient);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.special-numbers-list__header {
	font-size: 48px;
	margin: 0px 0 0px;
	color: var(--cp-dark);
	font-weight: 500;
}
.special-numbers-list__text { 
	
}
.special-numbers-list__text p { margin: 0; }

/* =============================================================================
   CTA — Bereit für neuen Glanz? (contact-curve, orange)
   ========================================================================== */
.contact-curve {
    color: #fff;
    text-align: center;
}
.contact-curve__header {
	color: #fff;
	font-size: 54px;
	margin: 0px 0 0px;
	letter-spacing: 1.5px;
}
.contact-curve__contact {
	font-size: 9rem;
	font-weight: 800;
	letter-spacing: 4px;
	line-height: 1;
	margin: 70px 0 20px;
}
.contact-curve__hours { color: rgba(255, 255, 255, .92); margin: 0 0 32px; }
.contact-curve__hours p { margin: 0; }
.contact-curve__link { margin: 0 0 35px 0; }
.contact-curve__link a {
	display: inline-flex;
	align-items: center;
	gap: 20px;
	background: var(--cp-dark);
	color: #FFF;
	font-weight: 500;
	padding: 32px 50px;
	border-radius: 50px;
	box-shadow: 0 5px 24px rgba(0, 0, 0, .10);
	transition: transform .15s ease;
	margin-top: 25px;
	font-size: 30px;
	letter-spacing: 1.5px;
}
.contact-curve__link a:hover {
	transform: translateY(-1px);
	color: var(--cp-orange);
}
.contact-curve__link a::after {
	content: "";
	font-size: 20px;
	line-height: 1;
	background-image: url(../Images/arrow-right.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	width: 20px;
	height: 20px;
}

/* =============================================================================
   Related cards — Das könnte Sie auch interessieren (teaser--secondary)
   ========================================================================== */
   .teaser--secondary {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	margin-top: 0;
	margin-bottom: 30px;
	padding-top: 55px;
}
.teaser--secondary .teaser__item {
	display: flex;
	flex-direction: column;
	border-radius: 16px;
	overflow: hidden;
	transition: all .3s ease 0s;
	padding-bottom: 55px;
}
.teaser--secondary .teaser__item:hover {
    
}
.teaser--secondary .teaser__image { margin: 0; }
.teaser--secondary .teaser__image img {
	width: 100%;
	height: 430px;
	object-fit: cover;
	display: block;
	border-radius: 15px;
	margin-bottom: 30px;
}
.teaser--secondary .teaser__body { display: flex; flex-direction: column; flex: 1; padding: 24px 0; }
.teaser--secondary .teaser__header {
	font-size: 30px;
	text-transform: none;
	letter-spacing: 0;
	margin: 0 0 40px;
	text-align: left;
}
.teaser--secondary .teaser__text { flex: 1; }
.teaser--secondary .teaser__text p { margin: 0; }
.teaser--secondary .teaser__link { margin-top: 16px; left: 0;}
.teaser--secondary .teaser__link a {
	display: inline-flex;
	align-items: center;
	gap: 20px;
	background: var(--cp-dark);
	color: #FFF;
	font-weight: 400;
	padding: 15px 30px;
	border-radius: 50px;
	box-shadow: 0 5px 24px rgba(0, 0, 0, .10);
	transition: all .15s ease;
	font-size: 18px;
	min-width: 220px;
	justify-content: space-around;
}
.teaser--secondary .teaser__link a::after { 
	content: "";
	font-size: 20px; 
	background-image: url(../Images/arrow-right.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	width: 20px;
	height: 20px;
}
.teaser--secondary .teaser__link a:hover {
    background: var(--cp-orange);
    color: #fff;
    transform: translateY(-1px);
}

/* =============================================================================
   Footer
   ========================================================================== */
.scroll-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 45px;
	height: 45px;
	background: var(--cp-orange-gradient);
	color: #fff;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	font-size: 20px;
	z-index: 9999;
	opacity: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	visibility: hidden;
	transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
}   
.scroll-top.show {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
}
.site-footer {
    color: #FFF;
	background-image: url(../Images/bg_footer_gradient.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	margin-top: 130px;
}
.site-footer__inner {
    display: block;
    padding-top: 135px;
    padding-bottom: 40px;
}
.site-footer__heading {
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 16px;
}
.site-footer__tagline { color: #b5b5b5; margin: 16px 0 0; }
.site-footer__address { font-style: normal; line-height: 1.8; }
.site-footer__phone {
    display: inline-block;
    margin-top: 12px;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
}
.site-footer .main-nav {
    flex-direction: column;
    gap: 8px;
}
.site-footer .main-nav__link { color: #c9c9c9; border: 0; }
.site-footer .main-nav__link:hover { color: var(--cp-orange); }

.site-footer__bar {
	font-size: 22px;
	padding: 0 0 80px 0;
	overflow: hidden;
	position: relative;
}
.site-footer__bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.site-footer__legal a { color: #c9c9c9; margin-left: 18px; }
.site-footer__legal a:hover { color: var(--cp-orange); }

.site-footer .container--2cols { gap: 48px; }
.footer-contact__header {
	color: #fff;
	font-size: 44px;
	letter-spacing: 1px;
	margin: 0 0 65px;
}
#c21 .container--2cols {
	display: flex;
	gap: 70px;
}
#c21 .container__col.container__col--left{
	width: 60%;
}
#c21 .container__col.container__col--right{
	display: flex;
	align-items: center;
	height: 100%;
	width: 40%;
	padding-left: 50px;
}
.footer-contact__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.footer-contact__row { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact__icon { color: var(--cp-orange); flex-shrink: 0; margin-top: 2px; line-height: 0; }
.footer-contact__text {
	color: #FFF;
	line-height: 1.2;
	font-size: 24px;
}
.footer-contact__text a { color: #FFF; }
.footer-contact__text a:hover { color: var(--cp-orange); }
.footer-contact__cta { margin: 100px 0 0; }
.footer-contact__button {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--cp-orange-gradient);
	color: #fff;
	font-weight: 400;
	padding: 15px 30px;
	border-radius: 50px;
	font-size: 18px;
	margin-left: 30px;
}
.footer-contact__button-arrow{
	width: 20px;
	height: 20px;
}
.footer-contact__button:hover { color: #fff; background: var(--cp-orange-dark);}
.site-footer__infoblock {
	font-size: 20px;
	text-align: center;
}
.site-footer__infoblock p{
	margin: 0;
}
.site-footer__infoblock a {
	color: #FFF;
}
.site-footer__infoblock a:hover {
	color: var(--cp-orange);
}

.footer-nav {
	padding: 0;
	list-style: none;
	display: flex;
	justify-content: flex-end;
	margin: 0;
}
.footer-nav li {
	margin-left: 10px;
}
.footer-nav li::before{
	content: "";
	display: inline-block;
	width: 2px;
	height: 14px;
	background: #c9c9c9;
	margin-right: 10px;
}
.footer-nav li:first-child::before{
	display: none;
}
.footer-nav li a{
	color: #FFF;
}
.footer-nav li a:hover{
	color: var(--cp-orange);
}

#c22 {
	margin: 80px auto 10px auto;
	max-width: 1000px;
}




.map-consent {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 620px;
    overflow: hidden;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  }

  /* The placeholder shown before consent */
  .map-consent__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 24px;
    text-align: center;
    background-image: url(../Images/map.png);
    background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
    color: #FFF;
	
  }

  .map-consent__title {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
	text-shadow: 0 2px 18px rgba(255, 255, 255, .7);
  }

  .map-consent__text {
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
    max-width: 420px;
    color: #FFF;
	text-shadow: 0 2px 18px rgba(255, 255, 255, .7);
  }

  .map-consent__text a {
	color: var(--cp-orange);
	font-weight: 600;
	text-shadow: 0 2px 18px rgba(249, 113, 13, .7);
	font-size: 16px;
	text-decoration: underline;
}

  .map-consent__btn {
    appearance: none;
    border: 0;
    cursor: pointer;
    background: var(--cp-orange-gradient);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 15px 25px;
    border-radius: 50px;
}

  .map-consent__btn:hover {
    background: var(--cp-orange-dark);
  }

  .map-consent iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
  }

  /* Hidden state utility */
  .is-hidden {
    display: none !important;
  }

  .frame-indent h2 {
	font-size: 30px;
	font-weight: 300;
	color: #FFF;
	background: var(--cp-orange-gradient);
	border-radius: 50px;
	padding: 8px 40px;
	display: inline-block;
	margin: 10px 0;
	letter-spacing: 0.5px;
}

#c15{
	margin-top: -20px;
}
.frame-layout-1 {
	max-width: 1130px;
	width: 100%;
	margin: 0 auto;
	font-size: 24px;
}
.frame-layout-2	{
	margin: 0 auto;
	font-size: 24px;
}
.frame-layout-1 h2 {

}
.frame-layout-1 h3, .frame-layout-2 h3 {
	font-weight: 600;
  	font-size: 30px;
	text-align: left;
}
.frame-layout-1 .ce-intext.ce-left .ce-gallery {
	margin-right: 50px;
	margin-bottom: 0;
}

.frame-layout-1 .ce-intext.ce-right .ce-gallery {
	margin-left: 50px;
	margin-bottom: 0;
}
.frame-layout-1 .ce-gallery .ce-row {
	margin: 0;
}
.ce-gallery img{
	max-width: 100%;
}

/* ---- Page loader --------------------------------------------------------- */
/* Full-screen white overlay shown on first paint. On load the logo fades out
   first; halfway through that the whole overlay fades out (see main.js). */
#loader {
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ffffff;
	opacity: 1;
	transition: all 1.5s ease;
}

#loader img {
	width: 500px;
	max-width: 80vw;
	height: auto;
	opacity: 1;
	transition: all 1.5s ease;
}

/* Fade the logo out first. */
#loader.is-logo-hidden img {
	opacity: 0;
}

/* Then fade the whole overlay out; once hidden it stops catching clicks. */
#loader.is-loader-hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

/* The loader shows once per browsing session. On later loads/reloads the inline
   head script (see page.typoscript) sets this class before first paint so the
   overlay is never shown — and never flashes. */
html.loader-seen #loader {
	display: none;
}

/* =============================================================================
   Contact info (contact-info) — icon + text list with optional link
   ========================================================================== */
.contact-info {
	padding-bottom: 15px;
}
.contact-info__items {
    list-style: none;
    margin: 0;
    padding: 0;
}
.contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin: 0 0 30px;
    color: var(--cp-text);
    font-size: 22px;
    line-height: 1.4;
}
.contact-info__icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    color: var(--cp-orange);
}
.contact-info__icon img,
.contact-info__icon svg {
    display: block;
    width: 22px;
    height: auto;
}
.contact-info__text {
    flex: 1 1 auto;
	margin-top: -8px;
}
a.contact-info__link {
    color: var(--cp-text);
}
.contact-info__link:hover {
    color: var(--cp-orange);
}

/* =============================================================================
   Contact hours (contact-hours) — dark opening-hours card
   ========================================================================== */
.contact-hours {
	background: var(--cp-dark-2);
	color: #fff;
	border-radius: 14px;
	padding: 45px 40px;
	max-width: 610px;
}
.frame-layout-2 h3.contact-hours__header {
    margin: 0 0 30px;
    color: #fff;
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.contact-hours__rows {
    list-style: none;
    margin: 0;
    padding: 0;
}
.contact-hours__row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.contact-hours__row:first-child {
    border-top: 0;
    padding-top: 0;
}
.contact-hours__day {
    color: #fff;
    font-weight: 600;
    font-size: 18px;
}
.contact-hours__times {
    color: var(--cp-muted);
    font-size: 18px;
    text-align: right;
    white-space: nowrap;
}
.contact-hours__note {
	margin: 10px 0 0;
	color: var(--cp-muted);
	font-size: 15px;
	line-height: 1.5;
}

/* =============================================================================
   Contact form (EXT:form) — styled to match the kontakt design
   Scoped to .frame-type-form_formframework so it never touches other forms.
   ========================================================================== */
.frame-type-form_formframework {
    max-width: 720px;
}

/* Two-column grid: most fields span full width; e-mail + the phone field that
   follows it share a row (matches the E-MAIL / TELEFON pairing in the design). */
.frame-type-form_formframework form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 24px;
    row-gap: 22px;
}
.frame-type-form_formframework form > * {
    grid-column: 1 / -1;
    min-width: 0;
}
/* Hidden state/trustedProperties wrapper — keep it out of the grid flow. */
.frame-type-form_formframework form > div:first-child {
    display: none;
}
.frame-type-form_formframework .form-element-email {
    grid-column: 1 / 2;
}
.frame-type-form_formframework .form-element-email + .form-element-text {
    grid-column: 2 / 3;
}

/* Labels */
.frame-type-form_formframework .form-label {
    display: block;
    margin: 0 0 8px;
    color: var(--cp-text);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    line-height: 1.3;
}

/* Text inputs, select and textarea */
.frame-type-form_formframework .form-control,
.frame-type-form_formframework .form-select {
    width: 100%;
    padding: 17px 16px;
    font-family: var(--cp-font);
    font-size: 16px;
    line-height: 1.4;
    color: var(--cp-text);
    background: #fff;
    border: 1px solid var(--cp-border);
    border-radius: var(--cp-radius);
    transition: border-color .15s ease, box-shadow .15s ease;
}
.frame-type-form_formframework .form-control::placeholder {
    color: #bec3cb;
}
.frame-type-form_formframework .form-control:focus,
.frame-type-form_formframework .form-select:focus {
    outline: none;
    border-color: var(--cp-orange);
    box-shadow: 0 0 0 3px rgba(249, 113, 13, 0.15);
}
.frame-type-form_formframework textarea.form-control {
    min-height: 190px;
    resize: vertical;
	margin-bottom: 20px;
}

/* Select — remove native chevron, add a custom one */
.frame-type-form_formframework .form-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 44px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23342f2b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

/* Consent checkbox row */
.frame-type-form_formframework .form-element-check .form-check-wrapping-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.frame-type-form_formframework .form-check-input {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--cp-orange);
    cursor: pointer;
}
.frame-type-form_formframework .form-check-label {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.45;
    color: var(--cp-text);
}
.frame-type-form_formframework .form-check-label a {
    color: var(--cp-orange);
    text-decoration: underline;
}
.frame-type-form_formframework .form-check-label a:hover {
    color: var(--cp-orange);
}

/* Validation errors */
.frame-type-form_formframework .form-control.error,
.frame-type-form_formframework .form-select.error {
    border-color: var(--cp-orange-dark);
}
.frame-type-form_formframework .error-message,
.frame-type-form_formframework ul.error {
    margin: 6px 0 0;
    padding: 0;
    list-style: none;
    color: var(--cp-orange-dark);
    font-size: 13px;
}

/* Submit button — orange gradient pill with arrow, matching a.btn */
.frame-type-form_formframework .actions {
    margin-top: 20px;
}
.frame-type-form_formframework .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 16px 40px;
    background: var(--cp-orange-gradient);
    color: #fff;
    font-family: var(--cp-font);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease;
    box-shadow: 0 6px 16px rgba(232, 68, 42, .25);
}
.frame-type-form_formframework .btn-primary::after {
    content: "";
    width: 16px;
    height: 16px;
    background-image: url(../Images/arrow-right.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}
.frame-type-form_formframework .btn-primary:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(232, 68, 42, .35);
	background: var(--cp-orange-dark);
}
.frame-type-form_formframework .btn-primary:disabled,
.frame-type-form_formframework .btn-primary.is-loading {
    opacity: 0.4;
    cursor: progress;
    transform: none;
}


