/*
Theme Name: AWC – Andre Winter Coaching
Theme URI: https://andre-winter-coaching.de
Author: KOMP
Author URI: https://komp64.de
Description: Premium Custom Theme für Andre Winter Coaching – Neuwied. Editorial Dark Theme mit Gold-Akzent.
Version: 1.0.7
License: GNU General Public License v2 or later
Text Domain: awc
*/

/* ==========================================================================
   DESIGN SYSTEM – AWC
   Ästhetik: ZONIXX Editorial, adaptiert auf Dark/Gold Premium
   Fonts: Barlow Condensed (Headlines) + Playfair Display (Eleganz) + Plus Jakarta Sans (Body)
   ========================================================================== */

:root {
	/* Farben */
	--black:        #0D0D0D;
	--surface:      #141414;
	--surface-2:    #1C1C1C;
	--gold:         #C9A84C;
	--gold-light:   #E8D08A;
	--gold-dim:     rgba(201, 168, 76, 0.12);
	--white:        #FFFFFF;
	--grey:         #7A7A7A;
	--grey-light:   #BFBFBF;
	--border:       #232323;

	/* Typografie */
	--font-heading: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
	--font-serif:   'Playfair Display', Georgia, serif;
	--font-sans:    'Plus Jakarta Sans', system-ui, sans-serif;

	/* Layout */
	--nav-h:     72px;
	--max-w:     1200px;
	--radius:    4px;
	--radius-lg: 14px;

	/* Animation */
	--transition: 0.28s ease;
	--transition-slow: 0.5s ease;
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */

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

html {
	scroll-behavior: smooth;
	scrollbar-width: thin;
	scrollbar-color: var(--gold) var(--surface);
}
html::-webkit-scrollbar        { width: 3px; }
html::-webkit-scrollbar-track  { background: var(--surface); }
html::-webkit-scrollbar-thumb  { background: var(--gold); border-radius: 2px; }

body {
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.75;
	color: var(--grey-light);
	background: var(--black);
	-webkit-font-smoothing: antialiased;
}

img     { max-width: 100%; height: auto; display: block; }
a       { color: inherit; text-decoration: none; }
ul, ol  { list-style: none; }
button  { font-family: inherit; cursor: pointer; }

.skip-link {
	position: absolute; top: -9999px; left: 1rem;
	background: var(--gold); color: var(--black);
	padding: 0.5rem 1rem; z-index: 9999; border-radius: var(--radius);
	font-weight: 700;
}
.skip-link:focus { top: 1rem; }

/* ==========================================================================
   TYPOGRAFIE
   ========================================================================== */

/* Barlow Condensed – Power Headlines */
.headline-mega {
	font-family: var(--font-heading);
	font-weight: 900;
	font-size: clamp(4.5rem, 12vw, 10rem);
	line-height: 0.92;
	letter-spacing: -0.01em;
	text-transform: uppercase;
	color: var(--white);
}
.headline-xl {
	font-family: var(--font-heading);
	font-weight: 800;
	font-size: clamp(3rem, 7vw, 6rem);
	line-height: 0.95;
	text-transform: uppercase;
	color: var(--white);
}
.headline-lg {
	font-family: var(--font-heading);
	font-weight: 800;
	font-size: clamp(2.25rem, 4.5vw, 4rem);
	line-height: 1.0;
	text-transform: uppercase;
	color: var(--white);
}
.headline-md {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	line-height: 1.1;
	text-transform: uppercase;
	color: var(--white);
}

/* Playfair Display – Eleganz & Zitate */
.italic-accent {
	font-family: var(--font-serif);
	font-style: italic;
	font-weight: 400;
	color: var(--gold-light);
}
blockquote, .quote-text {
	font-family: var(--font-serif);
	font-style: italic;
	font-size: clamp(1.25rem, 2.5vw, 1.75rem);
	color: var(--gold-light);
	line-height: 1.55;
}

/* Standard h-Tags (Fallback für WP-Content) */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	font-weight: 800;
	text-transform: uppercase;
	color: var(--white);
	line-height: 1.05;
}
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }

.label {
	font-family: var(--font-sans);
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--gold);
}
.lead {
	font-size: clamp(1rem, 1.8vw, 1.15rem);
	color: var(--grey-light);
	line-height: 1.85;
}

/* ✳︎ Ornament */
.ornament {
	display: inline-block;
	color: var(--gold);
	font-size: 1.2em;
	line-height: 1;
}
.ornament-lg {
	display: block;
	color: var(--gold);
	font-size: 2rem;
	text-align: center;
	margin-block: 2rem;
}

/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */

.container {
	width: 100%;
	max-width: var(--max-w);
	margin-inline: auto;
	padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.section     { padding-block: clamp(5rem, 10vw, 9rem); }
.section-sm  { padding-block: clamp(3rem, 6vw, 5rem); }
.section-dark { background: var(--surface); }

.grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2.5rem, 6vw, 6rem);
	align-items: center;
}
.grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}
@media (max-width: 900px) {
	.grid-2 { grid-template-columns: 1fr; }
	.grid-3 { grid-template-columns: 1fr; }
}

.text-center  { text-align: center; }
.text-gold    { color: var(--gold); }
.text-white   { color: var(--white); }
.text-grey    { color: var(--grey); }

.mt-1  { margin-top: 0.5rem; }
.mt-2  { margin-top: 1rem; }
.mt-3  { margin-top: 1.5rem; }
.mt-4  { margin-top: 2rem; }
.mt-6  { margin-top: 3rem; }
.mb-2  { margin-bottom: 1rem; }
.mb-4  { margin-bottom: 2rem; }
.mb-6  { margin-bottom: 3rem; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	padding: 0.9rem 2.25rem;
	font-family: var(--font-sans);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	border-radius: var(--radius);
	border: 2px solid transparent;
	transition: var(--transition);
	white-space: nowrap;
}

/* Gold (Primary) */
.btn-gold {
	background: var(--gold);
	color: var(--black);
	border-color: var(--gold);
}
.btn-gold:hover {
	background: var(--gold-light);
	border-color: var(--gold-light);
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(201, 168, 76, 0.25);
}

/* Outline Gold */
.btn-outline {
	background: transparent;
	color: var(--gold);
	border-color: var(--gold);
}
.btn-outline:hover {
	background: var(--gold);
	color: var(--black);
}

/* Outline White */
.btn-outline-white {
	background: transparent;
	color: var(--white);
	border-color: rgba(255,255,255,0.35);
}
.btn-outline-white:hover {
	background: var(--white);
	color: var(--black);
	border-color: var(--white);
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */

.awc-nav {
	position: fixed;
	top: 0; left: 0; right: 0;
	height: var(--nav-h);
	z-index: 100;
	transition: background var(--transition-slow), border-color var(--transition-slow), backdrop-filter var(--transition-slow);
	border-bottom: 1px solid transparent;
}
.awc-nav.scrolled {
	background: rgba(13, 13, 13, 0.96);
	border-color: var(--border);
	backdrop-filter: blur(16px);
}

.nav-inner {
	height: var(--nav-h);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.nav-logo {
	flex-shrink: 0;
	display: flex;
	align-items: center;
}
.nav-logo img { height: 38px; width: auto; }

.nav-links {
	display: flex;
	align-items: center;
	gap: 0;
}
.nav-links a {
	padding: 0.5rem 1rem;
	font-family: var(--font-sans);
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--grey-light);
	transition: color var(--transition);
	position: relative;
}
.nav-links a::after {
	content: '';
	position: absolute;
	bottom: 0; left: 1rem; right: 1rem;
	height: 1px;
	background: var(--gold);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform var(--transition);
}
.nav-links a:hover            { color: var(--white); }
.nav-links a:hover::after     { transform: scaleX(1); }

.nav-cta {
	display: inline-flex;
	align-items: center;
	padding: 0.65rem 1.75rem;
	font-family: var(--font-sans);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gold);
	border: 1.5px solid var(--gold);
	border-radius: var(--radius);
	transition: var(--transition);
	white-space: nowrap;
}
.nav-cta:hover {
	background: var(--gold);
	color: var(--black);
}

/* Burger */
.nav-burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 42px; height: 42px;
	background: transparent;
	border: none;
	padding: 4px;
}
.nav-burger span {
	display: block;
	width: 100%; height: 1.5px;
	background: var(--white);
	border-radius: 2px;
	transition: var(--transition);
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu Overlay */
.nav-mobile {
	display: none;
	position: fixed;
	inset: var(--nav-h) 0 0 0;
	z-index: 999;
	background: #0d0d0d;
	padding: 3rem 2rem;
	overflow-y: auto;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

/* Nav bekommt dunklen Hintergrund wenn Menü offen – deckt Hero-Bereich ab */
.awc-nav.menu-open {
	background: #0d0d0d;
}
.nav-mobile.open { display: flex; }
.nav-mobile ul   { display: flex; flex-direction: column; gap: 0; width: 100%; max-width: 400px; }
.nav-mobile a {
	display: block;
	padding: 1.1rem 0;
	font-family: var(--font-heading);
	font-size: 2.5rem;
	font-weight: 800;
	text-transform: uppercase;
	color: var(--white);
	border-bottom: 1px solid var(--border);
	transition: color var(--transition);
}
.nav-mobile a:hover    { color: var(--gold); }
.nav-mobile .mobile-cta {
	display: block;
	margin-top: 2rem;
	padding: 1rem 0;
	text-align: center;
	font-family: var(--font-sans);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gold);
	border: 1.5px solid var(--gold);
	border-radius: var(--radius);
	transition: var(--transition);
}
.nav-mobile .mobile-cta:hover {
	background: var(--gold);
	color: var(--black);
}

@media (max-width: 960px) {
	.nav-links, .nav-cta { display: none; }
	.nav-burger { display: flex; }
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
	position: relative;
	min-height: 100svh;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding-top: var(--nav-h);
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.hero-bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to right, rgba(13,13,13,0.75) 0%, rgba(13,13,13,0.2) 100%),
		linear-gradient(to top, rgba(13,13,13,0.9) 0%, rgba(13,13,13,0.1) 50%);
}
.hero-bg img {
	width: 100%; height: 100%;
	object-fit: cover;
	object-position: center 20%;
}
.hero-bg-placeholder {
	width: 100%; height: 100%;
	background: linear-gradient(135deg, #0D0D0D 0%, #1a1209 50%, #0D0D0D 100%);
}

.hero-content {
	position: relative;
	z-index: 2;
	padding: 5rem clamp(1.25rem, 5vw, 3rem) clamp(4rem, 8vw, 7rem);
	max-width: var(--max-w);
	margin: 0 auto;
	width: 100%;
}

.hero-label {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
}
.hero-label::before {
	content: '';
	width: 24px; height: 1px;
	background: var(--gold);
}

/* The Mega-Headline – ZONIXX-Stil */
.hero-headline {
	font-family: var(--font-heading);
	font-weight: 900;
	font-size: clamp(5rem, 13vw, 12rem);
	line-height: 0.88;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	color: var(--white);
	margin-bottom: 2.5rem;
}
.hero-headline .gold-line { color: var(--gold); }
.hero-headline .italic-line {
	font-style: italic;
	font-weight: 800;
}

.hero-sub {
	font-size: clamp(0.9rem, 1.5vw, 1.1rem);
	color: var(--grey-light);
	max-width: 440px;
	margin-bottom: 2.5rem;
	line-height: 1.8;
}

.hero-cta-row {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	flex-wrap: wrap;
}
.hero-micro {
	font-size: 0.75rem;
	color: var(--grey);
	letter-spacing: 0.04em;
}
.hero-micro span { color: var(--gold-light); }

/* Scroll-Indicator */
.hero-scroll {
	position: absolute;
	bottom: 2.5rem; right: clamp(1.25rem, 5vw, 3rem);
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	color: var(--grey);
	font-size: 0.65rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}
.hero-scroll-line {
	width: 1px; height: 50px;
	background: linear-gradient(to bottom, var(--gold), transparent);
	animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
	0%   { transform: scaleY(1); opacity: 1; }
	100% { transform: scaleY(0.3); opacity: 0; }
}

/* ==========================================================================
   STATS BAR
   ========================================================================== */

.stats-bar {
	background: var(--surface);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	padding-block: 2.5rem;
}
.stats-inner {
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-wrap: wrap;
	gap: 2rem;
}
.stat-item  { text-align: center; }
.stat-num {
	font-family: var(--font-heading);
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 900;
	color: var(--gold);
	line-height: 1;
	margin-bottom: 0.3rem;
}
.stat-label {
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--grey);
}

/* ==========================================================================
   SERVICE CARDS (ZONIXX-Stil: Horizontal, Bild + Overlay)
   ========================================================================== */

.services-section {}
.services-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 2rem;
}
.services-header h2 { margin: 0; }
.see-all-link {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gold);
	display: flex;
	align-items: center;
	gap: 0.4rem;
	transition: gap var(--transition);
	white-space: nowrap;
	align-self: flex-end;
	padding-bottom: 0.25rem;
}
.see-all-link:hover { gap: 0.75rem; }

.service-cards { display: flex; flex-direction: column; gap: 1px; }

.service-card {
	position: relative;
	height: clamp(160px, 22vw, 240px);
	overflow: hidden;
	border-radius: var(--radius-lg);
	margin-bottom: 1rem;
	cursor: pointer;
	display: block;
}
.service-card:last-child { margin-bottom: 0; }
.service-card img,
.service-card-bg {
	width: 100%; height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform var(--transition-slow);
}
.service-card-bg-placeholder {
	width: 100%; height: 100%;
	background: var(--surface-2, #1C1C1C);
}
.service-card:hover .service-card-bg,
.service-card:hover img { transform: scale(1.04); }

.service-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, rgba(13,13,13,0.75) 0%, rgba(13,13,13,0.1) 70%);
	transition: background var(--transition);
}
.service-card:hover .service-card-overlay {
	background: linear-gradient(to right, rgba(13,13,13,0.85) 0%, rgba(13,13,13,0.2) 70%);
}

.service-card-content {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	padding: 1.75rem 2rem;
}
.service-card-name {
	font-family: var(--font-heading);
	font-weight: 800;
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	text-transform: uppercase;
	color: var(--white);
	line-height: 1;
}
.service-card-arrow {
	width: 44px; height: 44px;
	border: 1.5px solid rgba(255,255,255,0.4);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 1.1rem;
	transition: var(--transition);
	flex-shrink: 0;
}
.service-card:hover .service-card-arrow {
	border-color: var(--gold);
	color: var(--gold);
	transform: translateX(4px);
}

/* ==========================================================================
   ÜBER ANDRE (Startseite)
   ========================================================================== */

.about-section { background: var(--surface); }
.about-grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: clamp(3rem, 7vw, 7rem);
	align-items: center;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }

.about-img-wrap { position: relative; }

/* Vorher/Nachher Toggle-Header */
.about-toggle-header {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.6rem;
}
.about-toggle-label {
	font-family: var(--font-body);
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--grey-light);
}
.about-toggle-btns {
	display: flex;
	background: var(--surface);
	border: 1px solid rgba(201,168,76,0.35);
	border-radius: 4px;
	overflow: hidden;
}
.about-toggle-btn {
	background: transparent;
	color: var(--grey-light);
	border: none;
	padding: 0.3rem 0.85rem;
	font-family: var(--font-body);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
	-webkit-tap-highlight-color: transparent;
	touch-action: manipulation;
}
.about-toggle-btn.is-active,
.about-toggle-btn[aria-pressed="true"] {
	background: var(--gold);
	color: var(--black);
}
.about-toggle-btn:focus-visible {
	outline: 2px solid var(--gold);
	outline-offset: 2px;
}

/* Bilder-Switcher mit Crossfade */
.about-img-switcher {
	position: relative;
	aspect-ratio: 3/4;
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: var(--black);
}
.about-img-switcher img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	transition: opacity 0.45s ease;
}
.about-img-switcher .img-before { opacity: 0; pointer-events: none; }
.about-img-switcher .img-after  { opacity: 1; }
.about-img-switcher.show-before .img-before { opacity: 1; pointer-events: auto; }
.about-img-switcher.show-before .img-after  { opacity: 0; }

/* Legacy – falls .about-img noch irgendwo einzeln vorkommt */
.about-img {
	width: 100%;
	aspect-ratio: 3/4;
	object-fit: cover;
	object-position: top;
	border-radius: var(--radius-lg);
}
.about-img-placeholder {
	width: 100%;
	aspect-ratio: 3/4;
	background: linear-gradient(to bottom, var(--surface-2) 0%, var(--black) 100%);
	border-radius: var(--radius-lg);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--grey);
	font-size: 3rem;
}
/* Kreisförmiges Badge (Stitch-Design) */
.about-badge {
	position: absolute;
	bottom: -2.5rem; right: -2.5rem;
	width: 110px; height: 110px;
	background: var(--gold);
	color: var(--black);
	border-radius: 50%;
	border: 6px solid var(--surface);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	box-shadow: 0 0 40px rgba(201,168,76,0.2);
}
.about-badge .num {
	font-family: var(--font-heading);
	font-size: 2.25rem;
	font-weight: 900;
	line-height: 1;
	display: block;
}
.about-badge .txt {
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	display: block;
	line-height: 1.3;
	margin-top: 0.2rem;
}
@media (max-width: 900px) {
	.about-badge { right: 0; bottom: -2rem; }
}

/* Service-Karten Portrait 4:5 (Stitch-Design) */
.service-cards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}
@media (max-width: 900px) {
	.service-cards-grid { grid-template-columns: 1fr; }
}

.service-card-portrait {
	position: relative;
	aspect-ratio: 4/5;
	overflow: hidden;
	border-radius: var(--radius-lg);
	display: block;
	background: var(--surface-2);
}
.service-card-portrait img,
.service-card-portrait .scp-bg {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform var(--transition-slow);
}
.service-card-portrait .scp-bg {
	background: linear-gradient(160deg, #1a1a1a 0%, #0d0d0d 100%);
}
.service-card-portrait:hover img,
.service-card-portrait:hover .scp-bg { transform: scale(1.05); }
.service-card-portrait .scp-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(13,13,13,1)   0%,
		rgba(13,13,13,1)   25%,
		rgba(13,13,13,0.8) 40%,
		rgba(13,13,13,0.4) 60%,
		rgba(13,13,13,0.1) 75%,
		rgba(13,13,13,0)   90%
	);
}
.service-card-portrait .scp-content {
	position: absolute;
	bottom: 0; left: 0; right: 0;
	padding: 2rem;
}
.service-card-portrait .scp-num {
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 0.5rem;
	display: block;
}
.service-card-portrait .scp-name {
	font-family: var(--font-heading);
	font-weight: 800;
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	text-transform: uppercase;
	color: var(--white);
	line-height: 1;
	display: block;
	margin-bottom: 1rem;
}
.service-card-portrait .scp-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px; height: 38px;
	border: 1.5px solid rgba(255,255,255,0.3);
	border-radius: 50%;
	color: var(--white);
	font-size: 1rem;
	transition: var(--transition);
}
.service-card-portrait:hover .scp-arrow {
	border-color: var(--gold);
	color: var(--gold);
	transform: translateX(4px);
}

.about-text .label { margin-bottom: 1rem; }
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p { color: var(--grey-light); margin-bottom: 1.25rem; font-size: 0.95rem; }
.about-quote {
	border-left: 2px solid var(--gold);
	padding-left: 1.5rem;
	margin-block: 2rem;
	font-family: var(--font-serif);
	font-style: italic;
	font-size: 1.15rem;
	color: var(--gold-light);
	line-height: 1.65;
}

/* ==========================================================================
   PROZESS
   ========================================================================== */

.prozess-section {}
.prozess-header { text-align: center; margin-bottom: 4rem; }
.prozess-header h2 { margin-bottom: 0.5rem; }
.prozess-header p { color: var(--grey); max-width: 480px; margin-inline: auto; }

.prozess-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}
@media (max-width: 900px) {
	.prozess-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
	.prozess-grid { grid-template-columns: 1fr; }
}

.prozess-step { text-align: center; }
.prozess-num-circle {
	width: 52px; height: 52px;
	border-radius: 50%;
	border: 1.5px solid var(--gold);
	color: var(--gold);
	font-family: var(--font-sans);
	font-size: 1.1rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	letter-spacing: 0;
}

.prozess-step h3 {
	font-size: 1rem;
	letter-spacing: 0.05em;
	margin-bottom: 0.625rem;
}
.prozess-step p { color: var(--grey); font-size: 0.875rem; line-height: 1.75; }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

.testimonials-section {}
.testimonials-header { text-align: center; margin-bottom: 4rem; }
.testimonials-header h2 { margin-bottom: 0.5rem; }
.testimonials-header p { color: var(--grey); }

.testi-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }

.testi-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 2rem;
	transition: border-color var(--transition);
}
.testi-card:hover { border-color: rgba(201,168,76,0.25); }

.testi-stars { color: var(--gold); letter-spacing: 2px; font-size: 0.85rem; margin-bottom: 1rem; }
.testi-text {
	font-family: var(--font-serif);
	font-style: italic;
	font-size: 1rem;
	color: var(--white);
	line-height: 1.7;
	margin-bottom: 1.5rem;
}
.testi-author { display: flex; align-items: center; gap: 0.875rem; }
.testi-avatar {
	width: 44px; height: 44px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--gold);
}
.testi-avatar-init {
	width: 44px; height: 44px;
	border-radius: 50%;
	background: var(--surface-2);
	border: 2px solid var(--gold);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-heading);
	font-weight: 800;
	font-size: 1.1rem;
	color: var(--gold);
}
.testi-name   { font-weight: 600; color: var(--white); font-size: 0.875rem; }
.testi-result { font-size: 0.78rem; color: var(--gold); font-weight: 500; }

/* ==========================================================================
   PRICING (Editorial – kein Card-Grid, ZONIXX-Stil)
   ========================================================================== */

.pricing-section { background: var(--surface); }
.pricing-header { margin-bottom: 3rem; }
.pricing-header .label { margin-bottom: 0.75rem; }

.pricing-list { border-top: 1px solid var(--border); }

.pricing-item {
	display: grid;
	grid-template-columns: 1fr auto auto;
	align-items: center;
	gap: 1.5rem;
	padding-block: 1.75rem;
	border-bottom: 1px solid var(--border);
	transition: background var(--transition);
	cursor: pointer;
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
}
.pricing-item:focus-visible {
	outline: 2px solid var(--gold);
	outline-offset: 4px;
	border-radius: 2px;
}
.pricing-item:hover { background: var(--surface-2); margin-inline: -1.5rem; padding-inline: 1.5rem; border-radius: var(--radius); }

.pricing-item-name {
	font-family: var(--font-heading);
	font-weight: 900;
	font-size: clamp(2.5rem, 6vw, 5rem);
	text-transform: uppercase;
	color: var(--white);
	line-height: 1;
	transition: color var(--transition);
}
.pricing-item:hover .pricing-item-name { color: var(--gold); }

.pricing-item-star {
	color: var(--gold);
	font-size: 1.25rem;
	flex-shrink: 0;
}

.pricing-item-toggle {
	width: 36px; height: 36px;
	border: 1.5px solid var(--border);
	border-radius: 50%;
	position: relative;
	flex-shrink: 0;
	color: var(--grey);
	transition: var(--transition);
	font-size: 0; /* Textzeichen ausblenden */
}
.pricing-item-toggle::before,
.pricing-item-toggle::after {
	content: '';
	position: absolute;
	top: 50%; left: 50%;
	background: currentColor;
	transition: var(--transition);
}
.pricing-item-toggle::before {
	width: 13px; height: 1.5px;
	transform: translate(-50%, -50%);
}
.pricing-item-toggle::after {
	width: 1.5px; height: 13px;
	transform: translate(-50%, -50%);
}
.pricing-item:hover .pricing-item-toggle,
.pricing-item.open .pricing-item-toggle {
	border-color: var(--gold);
	color: var(--gold);
}
.pricing-item.open .pricing-item-toggle { transform: rotate(45deg); }

.pricing-item-details {
	display: none;
	grid-column: 1 / -1;
	padding-bottom: 1.5rem;
}
.pricing-item.open .pricing-item-details { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: end; }
@media (max-width: 600px) {
	.pricing-item.open .pricing-item-details { grid-template-columns: 1fr; }
}

.pricing-features {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.pricing-features li {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 0.9rem;
	color: var(--grey-light);
}
.pricing-features li::before {
	content: '✓';
	color: var(--gold);
	font-size: 0.85rem;
	flex-shrink: 0;
}

.pricing-price-block { text-align: right; }
.pricing-price {
	font-family: var(--font-heading);
	font-size: 2.5rem;
	font-weight: 900;
	color: var(--gold);
	line-height: 1;
}
.pricing-period { font-size: 0.8rem; color: var(--grey); margin-bottom: 1rem; }

/* ==========================================================================
   DARK CTA SECTION
   ========================================================================== */

.dark-cta {
	background: var(--black);
	border-top: 1px solid var(--border);
	text-align: center;
	padding-block: clamp(6rem, 12vw, 10rem);
}
.dark-cta .ornament-lg { font-size: 1.75rem; margin-bottom: 2rem; }
.dark-cta h2 {
	font-size: clamp(2.5rem, 7vw, 6rem);
	font-style: italic;
	font-family: var(--font-serif);
	font-weight: 900;
	color: var(--white);
	margin-bottom: 1.5rem;
	max-width: 700px;
	margin-inline: auto;
	text-transform: none;
}
.dark-cta p {
	color: var(--grey);
	margin-bottom: 2.5rem;
	max-width: 480px;
	margin-inline: auto;
}
.dark-cta-micro {
	margin-top: 1.25rem;
	font-size: 0.78rem;
	color: var(--grey);
	letter-spacing: 0.05em;
}

/* ==========================================================================
   PAGE HERO (Unterseiten-Einstieg)
   ========================================================================== */

.page-hero {
	background: var(--surface);
	padding-top: calc(var(--nav-h) + 5rem);
	padding-bottom: 4.5rem;
	border-bottom: 1px solid var(--border);
	position: relative;
	overflow: hidden;
}
.page-hero::before {
	content: '';
	position: absolute;
	top: -20%; right: -5%;
	width: 500px; height: 500px;
	background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
	pointer-events: none;
}
.page-hero .label { margin-bottom: 1rem; }
.page-hero h1  { margin-bottom: 1rem; }
.page-hero p   { color: var(--grey); max-width: 560px; font-size: 1rem; }

/* ==========================================================================
   LEISTUNGS-DETAIL (Unterseiten)
   ========================================================================== */

.detail-intro {}
.detail-img {
	width: 100%;
	aspect-ratio: 16/9;
	object-fit: cover;
	border-radius: var(--radius-lg);
}
.detail-img-placeholder {
	width: 100%;
	aspect-ratio: 16/9;
	background: var(--surface);
	border-radius: var(--radius-lg);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 4rem;
	color: var(--gold);
}

.feature-list { margin-top: 1.5rem; }
.feature-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.875rem;
	padding-block: 0.75rem;
	border-bottom: 1px solid var(--border);
	font-size: 0.95rem;
	color: var(--grey-light);
}
.feature-list li:last-child { border-bottom: none; }
.feature-check {
	color: var(--gold);
	font-weight: 700;
	flex-shrink: 0;
	margin-top: 0.1rem;
}

.packages-section { background: var(--surface); }
.packages-section h2 { margin-bottom: 0.5rem; }
.packages-sub { color: var(--grey); margin-bottom: 3.5rem; max-width: 520px; }

.packages-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}
@media (max-width: 900px) { .packages-grid { grid-template-columns: 1fr; } }

.pkg-card {
	background: var(--surface-2);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 2.5rem 2rem;
	position: relative;
	transition: var(--transition);
}
.pkg-card.featured {
	border-color: var(--gold);
	background: var(--surface);
}
.pkg-card.featured::before {
	content: 'Beliebt';
	position: absolute;
	top: -1px; right: 1.5rem;
	background: var(--gold);
	color: var(--black);
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 0.3rem 0.875rem;
	border-radius: 0 0 var(--radius) var(--radius);
}
.pkg-name {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 1rem;
}
.pkg-price {
	font-family: var(--font-heading);
	font-size: 3rem;
	font-weight: 900;
	color: var(--white);
	line-height: 1;
	margin-bottom: 0.25rem;
}
.pkg-period { font-size: 0.8rem; color: var(--grey); margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.pkg-features { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.pkg-features li {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	font-size: 0.88rem;
	color: var(--grey-light);
}
.pkg-features li::before { content: '✓'; color: var(--gold); flex-shrink: 0; }
.pkg-card .btn { width: 100%; }

/* ==========================================================================
   ÜBER MICH SEITE
   ========================================================================== */

/* Hero */
.ueber-hero {
	position: relative;
	min-height: 70svh;
	display: flex;
	align-items: flex-end;
	padding-top: var(--nav-h);
	overflow: hidden;
}
.ueber-hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.ueber-hero-bg img {
	width: 100%; height: 100%;
	object-fit: cover;
	object-position: center 30%;
	opacity: 0.55;
}
.ueber-hero-bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to top, rgba(13,13,13,1) 0%, rgba(13,13,13,0.4) 50%, rgba(13,13,13,0.1) 100%),
		linear-gradient(to right, rgba(13,13,13,0.6) 0%, transparent 60%);
}
.ueber-hero-content {
	position: relative;
	z-index: 2;
	padding-bottom: clamp(4rem, 8vw, 7rem);
}
.ueber-hero-content .label { margin-bottom: 1rem; }
.ueber-hero-sub {
	font-size: clamp(0.95rem, 1.5vw, 1.1rem);
	color: var(--grey-light);
	max-width: 480px;
	margin-top: 1.5rem;
	line-height: 1.8;
}

/* Methode 2-spaltig */
.ueber-methode-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: clamp(3rem, 7vw, 7rem);
	align-items: start;
}
/* Desktop: Bild visuell links, Text rechts (HTML-Reihenfolge umkehren) */
.ueber-methode-text    { order: 2; }
.ueber-methode-img-wrap { order: 1; position: sticky; top: calc(var(--nav-h) + 2rem); }

@media (max-width: 900px) {
	.ueber-methode-grid { grid-template-columns: 1fr; gap: 2rem; }
	/* Mobile: natürliche HTML-Reihenfolge – Text oben, Bild unten sticky */
	.ueber-methode-text     { order: 1; }
	.ueber-methode-img-wrap { order: 2; }
}

/* 3 Säulen */
.ueber-saeule {
	display: flex;
	gap: 1.5rem;
	align-items: flex-start;
	padding-block: 1.75rem;
	border-bottom: 1px solid var(--border);
}
.ueber-saeule:first-of-type { border-top: 1px solid var(--border); }
.ueber-saeule-num {
	font-family: var(--font-heading);
	font-size: 2.5rem;
	font-weight: 900;
	color: var(--gold);
	line-height: 1;
	flex-shrink: 0;
	width: 3rem;
}
.ueber-saeule-title {
	font-family: var(--font-heading);
	font-size: 1.25rem;
	font-weight: 800;
	text-transform: uppercase;
	color: var(--white);
	margin-bottom: 0.5rem;
}
.ueber-saeule p { font-size: 0.9rem; color: var(--grey-light); line-height: 1.8; }

/* Qualifikationen Grid */
.ueber-quali-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
}
@media (max-width: 700px) { .ueber-quali-grid { grid-template-columns: 1fr; } }

.ueber-quali-item {
	display: flex;
	gap: 1.25rem;
	align-items: flex-start;
	padding: 1.75rem;
	border-bottom: 1px solid var(--border);
	transition: background var(--transition);
}
.ueber-quali-item:nth-child(odd)  { border-right: 1px solid var(--border); }
.ueber-quali-item:hover           { background: var(--surface-2); }
.ueber-quali-check {
	color: var(--gold);
	font-size: 1.25rem;
	flex-shrink: 0;
	margin-top: 0.1rem;
}
.ueber-quali-item strong {
	display: block;
	font-family: var(--font-heading);
	font-size: 1rem;
	font-weight: 800;
	text-transform: uppercase;
	color: var(--white);
	letter-spacing: 0.04em;
	margin-bottom: 0.4rem;
}
.ueber-quali-item p { font-size: 0.85rem; color: var(--grey); line-height: 1.7; margin: 0; }

/* Großes Zitat */
.ueber-zitat-section { background: var(--black); border-top: 1px solid var(--border); }
.ueber-zitat {
	font-family: var(--font-serif);
	font-style: italic;
	font-size: clamp(1.35rem, 3vw, 2.25rem);
	color: var(--white);
	line-height: 1.55;
}

.ueber-grid {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: clamp(3rem, 6vw, 6rem);
	align-items: start;
}
@media (max-width: 900px) { .ueber-grid { grid-template-columns: 1fr; } }

.ueber-portrait {
	position: sticky;
	top: calc(var(--nav-h) + 2rem);
}
.ueber-portrait img {
	width: 100%;
	aspect-ratio: 3/4;
	object-fit: cover;
	object-position: top;
	border-radius: var(--radius-lg);
}
.ueber-portrait-placeholder {
	width: 100%;
	aspect-ratio: 3/4;
	background: var(--surface);
	border-radius: var(--radius-lg);
}

.ueber-content .label { margin-bottom: 1rem; }
.ueber-content h1 { margin-bottom: 1.5rem; }
.ueber-content p  { color: var(--grey-light); margin-bottom: 1.25rem; font-size: 0.95rem; }
.ueber-quote {
	border-left: 2px solid var(--gold);
	padding: 1.25rem 1.5rem;
	margin-block: 2.5rem;
	font-family: var(--font-serif);
	font-style: italic;
	font-size: 1.2rem;
	color: var(--gold-light);
	line-height: 1.65;
}

.werte-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	margin-top: 2rem;
}
@media (max-width: 480px) { .werte-grid { grid-template-columns: 1fr; } }

.wert-item {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.25rem;
}
.wert-item h4 { font-size: 0.9rem; letter-spacing: 0.05em; margin-bottom: 0.35rem; }
.wert-item p  { font-size: 0.82rem; color: var(--grey); text-transform: none; }

/* ==========================================================================
   KONTAKT SEITE
   ========================================================================== */

.kontakt-grid {
	display: grid;
	grid-template-columns: 1fr 1.6fr;
	gap: clamp(3rem, 6vw, 6rem);
	align-items: start;
}
@media (max-width: 900px) { .kontakt-grid { grid-template-columns: 1fr; } }

.kontakt-info .label { margin-bottom: 1rem; }
.kontakt-info h2 { margin-bottom: 1rem; }
.kontakt-info > p { color: var(--grey); margin-bottom: 2rem; font-size: 0.95rem; }

.kontakt-details { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.kontakt-detail { display: flex; align-items: center; gap: 1rem; }
.kd-icon {
	width: 44px; height: 44px;
	background: var(--surface-2);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	flex-shrink: 0;
	color: var(--gold);
}
.kd-text strong { display: block; color: var(--white); font-size: 0.8rem; font-family: var(--font-sans); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 0.1rem; }
.kd-text span, .kd-text a { font-size: 0.9rem; color: var(--grey-light); transition: color var(--transition); }
.kd-text a:hover { color: var(--gold); }

.kontakt-form-wrap {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: clamp(1.75rem, 4vw, 2.75rem);
}
.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-group {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	margin-bottom: 1.25rem;
}
.form-group label {
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--grey);
}
.form-group input,
.form-group select,
.form-group textarea {
	background: var(--surface-2);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 0.875rem 1rem;
	color: var(--white);
	font-family: var(--font-sans);
	font-size: 0.925rem;
	transition: border-color var(--transition);
	width: 100%;
	-webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--gold);
}
.form-group select option { background: var(--surface-2); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 0.5rem; }
.form-submit .btn { width: 100%; }

.form-notice {
	padding: 1rem 1.25rem;
	border-radius: var(--radius);
	font-size: 0.88rem;
	margin-bottom: 1.5rem;
	text-align: center;
}
.form-notice.success { background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.25); color: var(--gold-light); }
.form-notice.error   { background: rgba(220,38,38,0.08);  border: 1px solid rgba(220,38,38,0.25);  color: #fca5a5; }

/* ==========================================================================
   SERVICE PAGES (Ernährung / Fitness / Online)
   ========================================================================== */

.svc-breadcrumb { padding-top: calc(var(--nav-h) + 0.75rem); padding-bottom: 0; }
.svc-breadcrumb-inner {
	display: flex; align-items: center; gap: 0.5rem;
	font-size: 0.75rem; color: var(--grey); font-family: var(--font-sans);
}
.svc-breadcrumb-inner a { color: var(--grey); }
.svc-breadcrumb-inner a:hover { color: var(--gold); }
.svc-breadcrumb-inner span[aria-hidden] { color: var(--border); }

.svc-hero {
	position: relative;
	min-height: 75svh;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
}
.svc-hero-bg {
	position: absolute; inset: 0;
}
.svc-hero-bg img {
	width: 100%; height: 100%;
	object-fit: cover;
	filter: brightness(0.35);
}
.svc-hero-content {
	position: relative;
	z-index: 1;
	padding-block: 5rem 4rem;
}
.svc-hero-sub {
	max-width: 560px;
	color: var(--grey-light);
	font-size: clamp(0.95rem, 1.5vw, 1.05rem);
	line-height: 1.8;
	margin-top: 1.25rem;
}

.svc-benefits-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}
@media (max-width: 900px) { .svc-benefits-grid { grid-template-columns: 1fr; } }
.svc-benefit-card {
	background: var(--black);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 2rem;
	transition: border-color var(--transition);
}
.svc-benefit-card:hover { border-color: rgba(201,168,76,0.3); }
.svc-benefit-num {
	font-size: 0.68rem; font-weight: 700;
	letter-spacing: 0.2em; color: var(--gold);
	margin-bottom: 1rem; font-family: var(--font-sans);
}
.svc-benefit-title {
	font-family: var(--font-heading);
	font-size: clamp(1.1rem, 2vw, 1.4rem);
	font-weight: 700; text-transform: uppercase;
	letter-spacing: 0.03em; margin-bottom: 0.75rem;
	text-wrap: balance;
}
.svc-benefit-text { color: var(--grey-light); font-size: 0.875rem; line-height: 1.85; }

.svc-fuer-wen-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}
@media (max-width: 900px) { .svc-fuer-wen-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

.svc-pain-list { list-style: none; padding: 0; margin: 1.75rem 0 2.5rem; display: flex; flex-direction: column; gap: 0.875rem; }
.svc-pain-list li {
	display: flex; align-items: flex-start; gap: 0.875rem;
	color: var(--grey-light); font-size: 0.9375rem; line-height: 1.6;
}
.svc-pain-list li::before { content: '✳︎'; color: var(--gold); flex-shrink: 0; font-size: 0.7rem; margin-top: 0.2em; }

.svc-fuer-wen-quote { border-left: 2px solid var(--gold); padding-left: 2rem; }
.svc-fuer-wen-quote .ornament-lg { font-size: 1.5rem; color: var(--gold); margin-bottom: 1.5rem; }
.svc-fuer-wen-quote blockquote {
	font-family: var(--font-serif); font-style: italic;
	font-size: clamp(1.1rem, 2vw, 1.4rem); line-height: 1.6;
	color: var(--white);
}

.svc-steps {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
@media (max-width: 760px) { .svc-steps { grid-template-columns: 1fr; } }
.svc-step {
	text-align: center; padding: 2.5rem 1.75rem;
	background: var(--black); border: 1px solid var(--border);
	border-radius: var(--radius);
}
.svc-step-num {
	width: 48px; height: 48px; border-radius: 50%;
	border: 1.5px solid var(--gold); color: var(--gold);
	font-family: var(--font-sans); font-size: 1.05rem; font-weight: 700;
	display: flex; align-items: center; justify-content: center;
	margin: 0 auto 1.5rem;
}
.svc-step h3 { font-size: 0.95rem; letter-spacing: 0.06em; margin-bottom: 0.625rem; }
.svc-step p { color: var(--grey); font-size: 0.85rem; line-height: 1.75; }

/* FAQ Accordion auf Service-Seiten */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-btn {
	width: 100%; display: flex; justify-content: space-between; align-items: center;
	gap: 1rem; padding: 1.375rem 0; background: none; border: none;
	color: var(--white); font-family: var(--font-sans);
	font-size: 0.9375rem; font-weight: 600; text-align: left; cursor: pointer;
	transition: color var(--transition);
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
}
.faq-btn:hover { color: var(--gold); }
.faq-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; border-radius: 2px; }
.faq-icon {
	width: 22px; height: 22px; flex-shrink: 0;
	border: 1.5px solid currentColor; border-radius: 50%;
	position: relative;
}
.faq-icon::before, .faq-icon::after {
	content: ''; position: absolute; top: 50%; left: 50%;
	background: currentColor; transition: transform var(--transition);
}
.faq-icon::before { width: 10px; height: 1.5px; transform: translate(-50%,-50%); }
.faq-icon::after  { width: 1.5px; height: 10px; transform: translate(-50%,-50%); }
.faq-btn[aria-expanded="true"] .faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq-btn[aria-expanded="true"] { color: var(--gold); }
.faq-answer { padding-bottom: 1.375rem; }
.faq-answer p { color: var(--grey-light); font-size: 0.9rem; line-height: 1.85; }

/* ==========================================================================
   GENERIC PAGE (Impressum, Datenschutz)
   ========================================================================== */

.page-content {
	padding-top: calc(var(--nav-h) + 4.5rem);
	padding-bottom: 6rem;
}
.page-content h1 { margin-bottom: 0.5rem; }
.page-meta { color: var(--grey); font-size: 0.875rem; margin-bottom: 3rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.entry-content h2 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); margin-top: 2.5rem; margin-bottom: 0.875rem; }
.entry-content h3 { font-size: 1.15rem; margin-top: 1.75rem; margin-bottom: 0.625rem; }
.entry-content p  { color: var(--grey-light); margin-bottom: 1rem; font-size: 0.95rem; text-transform: none; font-family: var(--font-sans); font-weight: 400; }
.entry-content ul, .entry-content ol { margin-left: 1.25rem; margin-bottom: 1rem; list-style: disc; }
.entry-content li { color: var(--grey-light); margin-bottom: 0.4rem; font-size: 0.95rem; }
.entry-content a  { color: var(--gold); }
.entry-content a:hover { text-decoration: underline; }
.entry-content strong { color: var(--white); }

/* ==========================================================================
   FOOTER
   ========================================================================== */

.awc-footer {
	background: var(--surface);
	border-top: 1px solid var(--border);
}
.footer-main {
	padding-block: 4.5rem;
	display: grid;
	grid-template-columns: 1.75fr 1fr 1fr 1fr;
	gap: 3rem;
}
@media (max-width: 900px) { .footer-main { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-main { grid-template-columns: 1fr; gap: 2rem; } }

.footer-brand .footer-logo { margin-bottom: 1.25rem; }
.footer-brand .footer-logo img { height: 34px; width: auto; }
.footer-brand p { font-size: 0.85rem; color: var(--grey); line-height: 1.8; max-width: 220px; }
.footer-instagram {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	margin-top: 1rem;
	margin-bottom: 0;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: var(--grey-light);
	transition: color var(--transition);
}
.footer-instagram:hover { color: var(--gold); }

.footer-col h4 {
	font-family: var(--font-sans);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--grey);
	margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a {
	font-size: 0.875rem;
	color: var(--grey-light);
	transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
	border-top: 1px solid var(--border);
	padding-block: 1.5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}
.footer-bottom p        { font-size: 0.775rem; color: var(--grey); }
.footer-bottom nav      { display: flex; gap: 1.5rem; }
.footer-bottom a        { font-size: 0.775rem; color: var(--grey); transition: color var(--transition); }
.footer-bottom a:hover  { color: var(--gold); }
.footer-made-by         { font-size: 0.72rem !important; }
.footer-made-by a       { color: var(--gold) !important; font-weight: 600; }
.footer-made-by a:hover { color: var(--gold-light) !important; }

/* Floating Buttons Stack */
.wa-float,
.ig-float {
	position: fixed;
	right: 2rem;
	z-index: 200;
	width: 52px; height: 52px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform var(--transition), box-shadow var(--transition);
}

/* WhatsApp Floating Button */
.wa-float {
	bottom: 2rem;
	background: #25D366;
	box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}
.wa-float:hover {
	transform: scale(1.08);
	box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}
.wa-float svg { width: 26px; height: 26px; fill: white; }

/* Instagram Floating Button */
.ig-float {
	bottom: 6rem;
	background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
	box-shadow: 0 4px 20px rgba(214, 36, 159, 0.35);
}
.ig-float:hover {
	transform: scale(1.08);
	box-shadow: 0 6px 24px rgba(214, 36, 159, 0.5);
}
.ig-float svg { width: 24px; height: 24px; stroke: white; }

/* ==========================================================================
   UTILITIES
   ========================================================================== */

.divider       { width: 40px; height: 1.5px; background: var(--gold); margin-block: 1.5rem; }
.divider-center { margin-inline: auto; }

.sr-only {
	position: absolute; width: 1px; height: 1px;
	padding: 0; margin: -1px; overflow: hidden;
	clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}

/* Fallback page */
.fallback-page .fallback-inner h1 { margin-block: 1.5rem 0; }

@media (max-width: 480px) {
	.btn { padding: 0.8rem 1.5rem; font-size: 0.78rem; }
	.hero-cta-row { flex-direction: column; align-items: flex-start; }

	/* Mobile Typografie – Überschriften verkleinern */
	.hero-headline         { font-size: 2.6rem; }
	.headline-mega         { font-size: 2.2rem; }
	.headline-xl           { font-size: 1.85rem; }
	.headline-lg           { font-size: 1.5rem; }
	h1                     { font-size: 2rem; }
	h2                     { font-size: 1.65rem; }
	h3                     { font-size: 1.25rem; }
	.dark-cta h2           { font-size: 2rem; }
	.page-hero h1          { font-size: 2rem; }
	.stat-num              { font-size: clamp(2rem, 10vw, 3rem); }
}


/* ==========================================================================
   KONTAKT SEITE
   ========================================================================== */

/* Hero */
.kontakt-hero {
	position: relative;
	min-height: 70vh;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.kontakt-hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.kontakt-hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 30%;
}

.kontakt-hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		to right,
		rgba(13,13,13,0.92) 0%,
		rgba(13,13,13,0.85) 40%,
		rgba(13,13,13,0.5)  70%,
		rgba(13,13,13,0.3)  100%
	);
}

.kontakt-hero-content {
	position: relative;
	z-index: 2;
	padding-block: 8rem 6rem;
	max-width: 680px;
}

.kontakt-hero-sub {
	color: var(--grey-light);
	font-size: 1.05rem;
	line-height: 1.75;
	margin-block: 1.5rem 2.5rem;
}

/* Prozess-Schritte */
.kontakt-steps {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.kontakt-step {
	display: grid;
	grid-template-columns: 80px 1fr;
	gap: 1.5rem;
	padding-block: 2.5rem;
	border-bottom: 1px solid rgba(255,255,255,0.06);
	align-items: start;
}

.kontakt-step:last-child {
	border-bottom: none;
}

.kontakt-step-num {
	font-family: var(--font-headline);
	font-weight: 900;
	font-size: 3rem;
	color: var(--gold);
	line-height: 1;
	opacity: 0.9;
}

.kontakt-step-title {
	font-family: var(--font-headline);
	font-weight: 800;
	font-size: 1.3rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--white);
	margin-bottom: 0.75rem;
}

.kontakt-step-body p {
	color: var(--grey-light);
	font-size: 0.95rem;
	line-height: 1.85;
}

/* Formular */
.kontakt-form {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.form-row {
	margin-bottom: 0;
}

.form-row-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 3rem;
}

.form-group {
	padding-bottom: 2.5rem;
}

.form-group label {
	display: block;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 0.6rem;
}

.form-group input,
.form-group textarea {
	width: 100%;
	background: transparent;
	border: none;
	border-bottom: 1.5px solid rgba(255,255,255,0.18);
	padding: 0.6rem 0 0.75rem;
	color: var(--white);
	font-family: var(--font-body);
	font-size: 1rem;
	outline: none;
	transition: border-color var(--transition);
	resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: rgba(255,255,255,0.3);
}

.form-group input:focus,
.form-group textarea:focus {
	border-bottom-color: var(--gold);
}

.form-group textarea {
	padding-top: 0.5rem;
	line-height: 1.7;
}

.form-submit {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1.25rem;
	margin-top: 1rem;
}

.form-disclaimer {
	font-size: 0.78rem;
	color: var(--grey-light);
	letter-spacing: 0.03em;
}

/* Success / Error States */
.kontakt-success {
	text-align: center;
	padding: 4rem 2rem;
}

.kontakt-success h3 {
	font-family: var(--font-headline);
	font-weight: 800;
	font-size: 2rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--gold);
	margin-block: 1rem 0.75rem;
}

.kontakt-success p {
	color: var(--grey-light);
	font-size: 1rem;
	line-height: 1.8;
}

.kontakt-error {
	background: rgba(200, 50, 50, 0.12);
	border-left: 3px solid #C83232;
	padding: 1.25rem 1.5rem;
	margin-bottom: 2.5rem;
	border-radius: 0 4px 4px 0;
}

.kontakt-error p {
	color: #E88080;
	font-size: 0.9rem;
}

/* Testimonial Quote */
.kontakt-quote {
	font-family: var(--font-elegant);
	font-style: italic;
	font-size: 1.35rem;
	line-height: 1.75;
	color: var(--white);
	margin-block: 1.5rem 1rem;
}

.kontakt-quote-author {
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 1rem;
}

.kontakt-stars {
	font-size: 1.2rem;
	color: var(--gold);
	letter-spacing: 0.1em;
}

/* Responsive */
@media (max-width: 768px) {
	.kontakt-hero { min-height: 85vh; }
	.kontakt-hero-content { padding-block: 6rem 4rem; }
	.kontakt-hero-overlay {
		background: rgba(13,13,13,0.80);
	}

	.form-row-2 {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.kontakt-step {
		grid-template-columns: 60px 1fr;
		gap: 1rem;
	}

	.kontakt-step-num { font-size: 2.2rem; }

	.kontakt-quote { font-size: 1.1rem; }
}


/* ==========================================================================
   BLOG – single.php + archive.php
   ========================================================================== */

/* Hero */
.blog-hero {
	background: var(--surface);
	padding: 7rem 0 4rem;
	border-bottom: 1px solid rgba(255,255,255,0.06);
}

.blog-post-title {
	font-family: var(--ff-head);
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 800;
	line-height: 1.1;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	margin: 0.75rem 0 1.25rem;
	color: var(--white);
}

.blog-post-meta {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.8rem;
	color: var(--grey-light);
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

/* Content Grid */
.blog-content-section { background: var(--black); }

.blog-content-grid {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 4rem;
	align-items: start;
}

/* Article Typography */
.blog-post-content {
	color: var(--grey-light);
	font-size: 1.05rem;
	line-height: 1.9;
}

.blog-post-content h2 {
	font-family: var(--ff-head);
	font-size: clamp(1.4rem, 3vw, 2rem);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: var(--white);
	margin: 3rem 0 1rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(255,255,255,0.08);
}

.blog-post-content h3 {
	font-family: var(--ff-head);
	font-size: 1.15rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--gold);
	margin: 2rem 0 0.75rem;
}

.blog-post-content p { margin-bottom: 1.25rem; }

.blog-post-content strong { color: var(--white); font-weight: 700; }

.blog-post-content ul,
.blog-post-content ol {
	padding-left: 1.5rem;
	margin-bottom: 1.5rem;
}

.blog-post-content li { margin-bottom: 0.5rem; }

.blog-post-content a {
	color: var(--gold);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.blog-post-content a:hover { color: var(--white); }

.blog-post-content blockquote {
	border-left: 3px solid var(--gold);
	padding: 1rem 1.5rem;
	margin: 2rem 0;
	font-family: var(--ff-serif);
	font-style: italic;
	font-size: 1.15rem;
	color: var(--white);
	background: var(--surface);
	border-radius: 0 4px 4px 0;
}

/* Table of Contents */
/* TOC – Editorial Redesign */
.blog-post-content .toc {
	background: var(--surface);
	border-left: 3px solid var(--gold);
	padding: 2.5rem 2.5rem 2rem;
	margin-bottom: 3rem;
	position: relative;
}

.blog-post-content .toc::before {
	content: '✳︎';
	position: absolute;
	top: 2rem;
	right: 2rem;
	font-size: 1.2rem;
	color: var(--gold);
	opacity: 0.4;
}

.blog-post-content .toc p {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 0.65rem;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--gold);
	margin: 0 0 1.75rem;
	font-weight: 800;
}

.blog-post-content .toc ol {
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: toc-counter;
}

.blog-post-content .toc li {
	counter-increment: toc-counter;
	display: flex;
	align-items: baseline;
	gap: 1.25rem;
	padding: 0.9rem 0;
	border-bottom: 1px solid rgba(255,255,255,0.06);
	margin: 0;
}

.blog-post-content .toc li:last-child { border-bottom: none; padding-bottom: 0; }

.blog-post-content .toc li::before {
	content: counter(toc-counter, decimal-leading-zero);
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 900;
	font-size: 1.8rem;
	line-height: 1;
	color: var(--gold);
	opacity: 0.18;
	min-width: 2.8rem;
	flex-shrink: 0;
}

.blog-post-content .toc li a {
	color: var(--white);
	text-decoration: none;
	font-size: 0.95rem;
	line-height: 1.4;
	transition: color 0.2s;
}

.blog-post-content .toc li a:hover { color: var(--gold); }

/* Blog-Fotos */
.blog-post-photo {
	width: 100%;
	margin: 3rem 0;
	position: relative;
	overflow: hidden;
}

.blog-post-photo img {
	width: 100%;
	height: 420px;
	object-fit: cover;
	display: block;
	filter: brightness(0.92);
}

.blog-post-photo figcaption {
	font-size: 0.72rem;
	color: var(--grey);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-top: 0.75rem;
	padding-left: 0.25rem;
}

@media (max-width: 640px) {
	.blog-post-photo img { height: 260px; }
}

/* Sidebar */
.blog-sidebar { position: sticky; top: calc(var(--nav-h) + 2rem); }

.blog-sidebar-card {
	background: var(--surface);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 4px;
	padding: 2rem;
}

.blog-sidebar-card h3 {
	font-family: var(--ff-head);
	font-size: 1.1rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--white);
	margin: 1rem 0 0.75rem;
}

.blog-sidebar-card p { font-size: 0.9rem; color: var(--grey-light); line-height: 1.7; }

/* Responsive */
@media (max-width: 900px) {
	.blog-content-grid {
		grid-template-columns: 1fr;
	}
	.blog-sidebar {
		position: static;
	}
}

@media (max-width: 640px) {
	.blog-hero { padding: 5rem 0 3rem; }
	.blog-post-title { font-size: 2rem; }
}
