/* ==========================================================================
   Caro Zündorf – Design System
   Alle Farben als CSS-Custom-Properties, zentral pflegbar.
   ========================================================================== */

:root {
	/* Königsblau */
	--cz-blue: #12169c;
	--cz-blue-dark: #0c0f70;
	--cz-blue-deep: #0a0c52;

	/* Hintergründe */
	--cz-cream: #fffdf8;
	--cz-cream-2: #faf8f4;
	--cz-lilac: #eceafc;

	/* Akzente */
	--cz-gold: #f9b22c;
	--cz-gold-light: #fcd487;
	--cz-gold-pale: #fde0a8;
	--cz-mint: #56989e;
	--cz-mint-pale: #e3f0f1;
	--cz-lavender: #dbbcdb;
	--cz-lavender-deep: #7d5678;
	--cz-petrol: #295262;
	--cz-bordeaux: #a04156;

	/* Text */
	--cz-text: #282f31;
	--cz-text-soft: #3a3f52;
	--cz-grey: #5a5f70;
	--cz-grey-light: #64687b;
	--cz-border: #ece7dd;

	/* Radien & Schatten */
	--cz-radius: 26px;
	--cz-radius-sm: 14px;
	--cz-shadow: 0 12px 32px rgba(15, 37, 150, .16);

	/* Typografie */
	--cz-font-display: 'Bricolage Grotesque', sans-serif;
	--cz-font-body: 'Hanken Grotesk', sans-serif;
}

/* ==========================================================================
   Reset & Basics
   ========================================================================== */

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

html { scroll-behavior: smooth; }

body {
	margin: 0;
	background: var(--cz-cream-2);
	font-family: var(--cz-font-body);
	color: var(--cz-text);
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

::selection { background: var(--cz-gold); color: var(--cz-blue-dark); }

a { color: var(--cz-blue); }
a:hover { color: var(--cz-blue-dark); }

h1, h2, h3, h4 { font-family: var(--cz-font-display); margin: 0; }

:focus-visible {
	outline: 3px solid var(--cz-gold);
	outline-offset: 3px;
	border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
		scroll-behavior: auto !important;
	}
}

.cz-splash, .cz-doodle { position: absolute; pointer-events: none; }
.cz-splash { z-index: 0; }
.cz-doodle { z-index: 1; }

/* ==========================================================================
   Skip link
   ========================================================================== */

.cz-skip {
	position: fixed;
	top: 0;
	left: 50%;
	transform: translate(-50%, -150%);
	z-index: 2000;
	background: var(--cz-blue);
	color: var(--cz-cream);
	font-family: var(--cz-font-body);
	font-weight: 600;
	font-size: 15px;
	padding: 12px 22px;
	border-radius: 0 0 14px 14px;
	text-decoration: none;
	transition: transform .2s;
	box-shadow: 0 8px 24px rgba(9, 19, 48, .28);
}
.cz-skip:focus { transform: translate(-50%, 0); }

/* ==========================================================================
   Navigation
   ========================================================================== */

.cz-nav {
	position: sticky;
	top: 0;
	z-index: 200;
	width: 100%;
	background: transparent;
	transition: background .3s, box-shadow .3s, border-color .3s;
	border-bottom: 1px solid transparent;
	padding: 0 clamp(20px, 5vw, 56px);
}
.cz-nav.is-scrolled {
	background: rgba(250, 248, 244, .92);
	backdrop-filter: saturate(1.4) blur(8px);
	-webkit-backdrop-filter: saturate(1.4) blur(8px);
	box-shadow: 0 2px 24px rgba(21, 48, 170, .09);
	border-bottom-color: rgba(21, 48, 170, .08);
}
.cz-nav-inner {
	max-width: 1440px;
	margin: 0 auto;
	height: 76px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.cz-logo { display: flex; align-items: center; flex: none; }
.cz-logo img { height: 56px; width: auto; display: block; }

.cz-navlinks { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.cz-navlinks ul { list-style: none; display: flex; align-items: center; gap: 2px; margin: 0; padding: 0; }
.cz-navlinks li { list-style: none; }
.cz-mobile ul { list-style: none; margin: 0; padding: 0; }
.cz-mobile li { list-style: none; }
.cz-navlinks a, .cz-nl {
	font-family: var(--cz-font-body);
	font-size: 16px;
	font-weight: 500;
	color: var(--cz-text);
	text-decoration: none;
	padding: 9px 14px;
	border-radius: 999px;
	transition: background .2s, color .2s;
}
.cz-navlinks a:hover, .cz-nl:hover { background: var(--cz-lilac); color: var(--cz-blue-dark); }
.cz-nl[aria-current="page"],
.cz-navlinks .current-menu-item > a,
.cz-navlinks .current_page_item > a,
.cz-navlinks .current-menu-parent > a { font-weight: 600; color: var(--cz-blue-dark); background: var(--cz-lilac); }
.cz-mobile a:hover { color: var(--cz-blue-dark); }

.cz-navcta {
	font-family: var(--cz-font-body);
	font-size: 16px;
	font-weight: 600;
	color: var(--cz-cream);
	background: var(--cz-blue-dark);
	text-decoration: none;
	padding: 11px 22px;
	border-radius: 999px;
	white-space: nowrap;
	transition: background .2s;
}
.cz-navcta:hover { background: var(--cz-blue); color: var(--cz-cream); }

.cz-burger {
	display: none;
	position: relative;
	width: 42px;
	height: 42px;
	background: none;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	padding: 8px;
	color: var(--cz-blue-dark);
	transition: background .2s;
}
.cz-burger:hover { background: var(--cz-lilac); }
.cz-burger-icon {
	position: absolute;
	top: 8px;
	left: 8px;
	transition: opacity .15s, transform .15s;
}
.cz-burger-icon-close { opacity: 0; transform: rotate(-45deg) scale(.7); }
.cz-burger.is-open .cz-burger-icon-menu { opacity: 0; transform: rotate(45deg) scale(.7); }
.cz-burger.is-open .cz-burger-icon-close { opacity: 1; transform: rotate(0) scale(1); }

.cz-mobile {
	display: flex;
	flex-direction: column;
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	gap: 2px;
	padding: 0;
	background: var(--cz-cream);
	border-bottom: 0 solid rgba(21, 48, 170, .1);
	box-shadow: 0 20px 40px rgba(21, 48, 170, 0);
	transition: max-height .3s ease, opacity .25s ease, padding .3s ease, border-color .3s, box-shadow .3s;
}
.cz-mobile.is-open {
	max-height: 80vh;
	overflow-y: auto;
	opacity: 1;
	padding: 8px 0 20px;
	border-bottom: 1px solid rgba(21, 48, 170, .1);
	box-shadow: 0 20px 40px rgba(21, 48, 170, .14);
}
.cz-mobile a {
	display: block;
	box-sizing: border-box;
	font-family: var(--cz-font-body);
	font-size: 18px;
	font-weight: 500;
	color: var(--cz-text);
	text-decoration: none;
	padding: 14px 20px;
	border-bottom: 1px solid #f0ece3;
	transition: background .15s;
}
.cz-mobile a:active { background: var(--cz-lilac); }
.cz-mobile-cta {
	font-family: var(--cz-font-body) !important;
	font-weight: 600 !important;
	color: var(--cz-cream) !important;
	background: var(--cz-blue-dark);
	text-align: center;
	border-radius: 999px;
	border-bottom: none !important;
	margin: 14px 20px 0 !important;
	padding: 14px 20px !important;
	transition: background .2s;
}
.cz-mobile-cta:hover, .cz-mobile-cta:active { background: var(--cz-blue) !important; }

@media (max-width: 860px) {
	.cz-navlinks { display: none !important; }
	.cz-navcta { display: none !important; }
	.cz-burger { display: block !important; }
	.cz-footgrid { grid-template-columns: 1fr !important; gap: 36px !important; }
	.cz-2col, .cz-3col, .cz-4col, .cz-ctagrid, .cz-formrow, .cz-feat, .g-2col { grid-template-columns: 1fr !important; }
	.g-row { grid-template-columns: 1fr !important; gap: 2px !important; padding: 12px 0 !important; }
	.cz-event { grid-template-columns: 1fr !important; text-align: center; }
	.cz-event > div:first-child { width: auto !important; max-width: 180px; margin: 0 auto; }
	.cz-event-cta { justify-self: center; }
}

/* ==========================================================================
   Buttons & Badges
   ========================================================================== */

.cz-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	font-size: 17px;
	text-decoration: none;
	padding: 16px 30px;
	border-radius: 999px;
	border: none;
	cursor: pointer;
	transition: transform .15s, background .2s;
	font-family: var(--cz-font-body);
}
.cz-btn:hover { transform: translateY(-2px); }

.cz-btn-primary { color: var(--cz-cream); background: var(--cz-blue); }
.cz-btn-primary:hover { background: var(--cz-blue-dark); color: var(--cz-cream); }

.cz-btn-outline { color: var(--cz-blue); background: transparent; border: 1.5px solid #bfc0ea; }
.cz-btn-outline:hover { background: var(--cz-lilac); color: var(--cz-blue); }

.cz-btn-gold { color: var(--cz-blue-dark); background: var(--cz-gold); }
.cz-btn-gold:hover { background: var(--cz-gold-light); color: var(--cz-blue-dark); }

.cz-btn-ghost { color: var(--cz-cream); background: rgba(255, 253, 248, .12); border: 1.5px solid rgba(255, 253, 248, .5); }
.cz-btn-ghost:hover { background: rgba(255, 253, 248, .22); color: var(--cz-cream); }

.cz-badge {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-weight: 600;
	font-size: 15px;
	padding: 8px 16px;
	border-radius: 999px;
	margin-bottom: 26px;
}
.cz-badge .dot { width: 8px; height: 8px; border-radius: 50%; }

.cz-eyebrow {
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--cz-blue);
}

/* ==========================================================================
   Audio-Player (Hörprobe)
   ========================================================================== */

.cz-audio-player {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 28px;
	max-width: 360px;
}

.cz-audio-btn {
	flex: none;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--cz-blue);
	color: var(--cz-cream);
	box-shadow: 0 10px 24px rgba(21, 48, 170, .22);
	transition: background .2s, transform .15s;
}
.cz-audio-btn:hover { background: var(--cz-blue-dark); transform: translateY(-1px); }
.cz-audio-icon { width: 20px; height: 20px; }
.cz-audio-icon-pause { display: none; }
.cz-audio-player.is-playing .cz-audio-icon-play { display: none; }
.cz-audio-player.is-playing .cz-audio-icon-pause { display: block; }

.cz-audio-info { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.cz-audio-label {
	font-family: var(--cz-font-display);
	font-weight: 600;
	font-size: 15.5px;
	color: var(--cz-text);
}

.cz-audio-progress { display: flex; align-items: center; gap: 10px; }
.cz-audio-progress-track {
	position: relative;
	width: 130px;
	height: 5px;
	border-radius: 999px;
	background: rgba(18, 22, 156, .12);
	overflow: hidden;
}
.cz-audio-progress-fill {
	position: absolute;
	inset: 0 auto 0 0;
	width: 0%;
	background: var(--cz-blue);
	border-radius: inherit;
	transition: width .1s linear;
}
.cz-audio-time {
	font-size: 13px;
	color: var(--cz-grey);
	white-space: nowrap;
	font-variant-numeric: tabular-nums;
}

/* ==========================================================================
   Cards
   ========================================================================== */

.cz-card {
	background: var(--cz-cream);
	border: 1px solid var(--cz-border);
	border-radius: 22px;
	position: relative;
}
.cz-card-link { text-decoration: none; color: inherit; display: block; transition: transform .2s, box-shadow .2s; }
.cz-card-link:hover { transform: translateY(-4px); }

.cz-icon-circle {
	width: 54px; height: 54px; border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
}

/* ==========================================================================
   Layout helpers
   ========================================================================== */

.cz-section { position: relative; overflow: hidden; padding: clamp(40px, 6vw, 92px) clamp(20px, 5vw, 56px); }
.cz-wrap { position: relative; z-index: 2; max-width: 1440px; margin: 0 auto; }
.cz-wrap-narrow { max-width: 900px; }
.cz-wrap-text { max-width: 720px; }

.cz-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.cz-3col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cz-4col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

/* ==========================================================================
   Formulare
   ========================================================================== */

.cz-input {
	width: 100%;
	padding: 14px 18px;
	border-radius: var(--cz-radius-sm);
	border: 1.5px solid #ded8cc;
	background: var(--cz-cream);
	color: var(--cz-text);
	font-size: 16px;
	font-family: var(--cz-font-body);
	transition: border-color .2s;
}
.cz-input:focus { border-color: var(--cz-blue); outline: none; }
.cz-label { display: block; font-weight: 600; font-size: 14.5px; color: var(--cz-text-soft); margin: 0 0 7px; }
.cz-formrow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cz-consent { display: flex; gap: 10px; align-items: flex-start; margin-top: 18px; font-size: 14px; line-height: 1.5; color: var(--cz-grey); }
.cz-consent input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--cz-blue); flex: none; }

.cz-form-status { margin-top: 16px; padding: 14px 18px; border-radius: var(--cz-radius-sm); font-size: 15px; }
.cz-form-status.success { background: var(--cz-mint-pale); color: var(--cz-petrol); }
.cz-form-status.error { background: #fbe3e3; color: #92222d; }

/* ==========================================================================
   FAQ Akkordeon
   ========================================================================== */

.cz-faq-item { background: var(--cz-cream); border: 1px solid var(--cz-border); border-radius: 18px; padding: 24px 28px; }
.cz-faq-q {
	display: flex; justify-content: space-between; align-items: center; gap: 16px;
	cursor: pointer; font-family: var(--cz-font-display); font-weight: 700; font-size: 1.2rem; color: var(--cz-text);
	background: none; border: none; width: 100%; text-align: left; padding: 0;
}
.cz-faq-ic { flex: none; color: var(--cz-blue); font-size: 1.6rem; line-height: 1; transition: transform .3s; }
.cz-faq-a {
	font-size: 16px; line-height: 1.65; color: #454a5e; overflow: hidden; max-height: 0;
	transition: max-height .35s ease, margin .35s ease, opacity .3s; opacity: 0;
}
.cz-faq-item.is-open .cz-faq-ic { transform: rotate(45deg); }
.cz-faq-item.is-open .cz-faq-a { opacity: 1; margin-top: 12px; }

/* ==========================================================================
   Termine (Veranstaltungen)
   ========================================================================== */

.cz-event {
	display: grid; grid-template-columns: auto 1fr auto; gap: clamp(20px, 3vw, 34px); align-items: center;
	background: var(--cz-cream); border: 1px solid var(--cz-border); border-radius: 24px;
	padding: clamp(22px, 3vw, 30px); box-shadow: 0 12px 30px rgba(21, 48, 170, .08);
}
.cz-event-date { flex: none; width: 100px; text-align: center; background: var(--cz-lilac); border-radius: 18px; padding: 16px 10px; }
.cz-event-day { font-family: var(--cz-font-display); font-size: 2.7rem; font-weight: 700; color: var(--cz-blue); line-height: 1; }
.cz-event-month { font-size: 14px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--cz-blue); margin-top: 4px; }
.cz-event-year { font-size: 13px; color: var(--cz-grey-light); margin-top: 2px; }
.cz-event-meta { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 16px; font-size: 14.5px; color: #454a5e; }
.cz-event-meta span { display: inline-flex; align-items: center; gap: 7px; }

/* ==========================================================================
   Blog / Artikel
   ========================================================================== */

.cz-article p { font-size: 18px; line-height: 1.75; color: #33373a; margin: 0 0 22px; }
.cz-article h2 { font-family: var(--cz-font-display); font-weight: 700; font-size: clamp(1.6rem, 3.4vw, 2.1rem); color: var(--cz-text); margin: 40px 0 14px; line-height: 1.15; }
.cz-article blockquote { margin: 32px 0; padding: 6px 0 6px 28px; border-left: 4px solid var(--cz-gold); font-family: var(--cz-font-display); font-style: italic; font-size: clamp(1.3rem, 3vw, 1.7rem); line-height: 1.4; color: var(--cz-blue); }
.cz-article strong { color: var(--cz-text); }

.cz-title-accent { font-style: italic; }

.cz-post-thumb { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--cz-lavender); }
.cz-post-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
   Rechtstexte (Impressum, Datenschutz)
   ========================================================================== */

.lg h2 { font-family: var(--cz-font-display); font-weight: 700; font-size: clamp(1.4rem, 3vw, 1.8rem); color: var(--cz-text); margin: 38px 0 12px; }
.lg h3 { font-weight: 700; font-size: 1.05rem; color: var(--cz-text); margin: 22px 0 8px; }
.lg p { font-size: 16px; line-height: 1.7; color: #33373a; margin: 0 0 14px; }
.lg ul { font-size: 16px; line-height: 1.7; color: #33373a; margin: 0 0 14px; padding-left: 22px; }
.lg li { margin: 0 0 6px; }
.lg strong { color: var(--cz-text); }

/* ==========================================================================
   Grounding Page
   ========================================================================== */

.g-card { background: var(--cz-cream); border: 1px solid var(--cz-border); border-radius: 20px; padding: clamp(24px, 4vw, 40px); }
.g-row { display: grid; grid-template-columns: 220px 1fr; gap: 8px 28px; padding: 15px 0; border-bottom: 1px solid #eae4d8; }
.g-row dt { font-weight: 600; color: var(--cz-grey); font-size: 15px; margin: 0; }
.g-row dd { margin: 0; font-size: 16px; color: var(--cz-text); }
.g-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.g-tag { background: var(--cz-lilac); color: var(--cz-blue); font-weight: 500; font-size: 14.5px; padding: 8px 15px; border-radius: 999px; }

/* ==========================================================================
   Footer
   ========================================================================== */

.cz-footer { position: relative; background: var(--cz-blue-deep); color: var(--cz-lilac); font-family: var(--cz-font-body); overflow: hidden; }
.cz-footer-inner { position: relative; max-width: 1440px; margin: 0 auto; padding: 72px clamp(20px, 5vw, 56px) 34px; }
.cz-footgrid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; align-items: start; }
.cz-footer-logo img { height: 56px; width: auto; display: block; }
.cz-footer-desc { margin: 16px 0 0; font-size: 16px; line-height: 1.65; max-width: 38ch; color: #cfd0ee; }
.cz-footer-contact { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; font-size: 16px; }
.cz-footer-contact a, .cz-footer-col a { color: var(--cz-lilac); text-decoration: none; }
.cz-footer-contact a:hover, .cz-footer-col a:hover { color: var(--cz-gold); }
.cz-footer-social { display: flex; gap: 12px; margin-top: 24px; }
.cz-footer-social a {
	width: 42px; height: 42px; border-radius: 50%; background: rgba(255, 255, 255, .1);
	display: flex; align-items: center; justify-content: center; color: var(--cz-cream);
	transition: background .2s, color .2s;
}
.cz-footer-social a:hover { background: var(--cz-gold); color: var(--cz-blue-deep); }
.cz-footer-col-title { font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: #9a9ee0; }
.cz-footer-col { display: flex; flex-direction: column; gap: 11px; margin-top: 16px; }
.cz-footer-bottom {
	margin-top: 52px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .14);
	display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 14px; color: #a7abe0;
}
