/* ================================================
   pascal-gabriel.com — Gemeinsames Stylesheet
   Waldgrün #2A6248 · Playfair Display + Inter
================================================ */

/* ================================================
   Self-hosted Fonts (kein IP-Transfer zu Google)
================================================ */
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/playfair-display-400.woff2') format('woff2');
}
@font-face {
    font-family: 'Playfair Display';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/playfair-display-400i.woff2') format('woff2');
}
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('fonts/playfair-display-600.woff2') format('woff2');
}
@font-face {
    font-family: 'Playfair Display';
    font-style: italic;
    font-weight: 600;
    font-display: swap;
    src: url('fonts/playfair-display-600i.woff2') format('woff2');
}
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('fonts/playfair-display-700.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('fonts/inter-300.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/inter-400.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('fonts/inter-500.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('fonts/inter-600.woff2') format('woff2');
}

:root {
    --primary:     #2A6248;
    --primary-dk:  #1B4330;
    --primary-lt:  #3D8A65;
    --primary-bg:  #E4F2EB;
    --charcoal:    #152620;
    --body-text:   #445950;
    --bg:          #F5FAF7;
    --white:       #FFFFFF;
    --border:      #C8DED3;
    --green-glow:  #7DC9A0;
    --accent:      #2A6248;
    --accent-dk:   #1B4330;
    --serif:       'Playfair Display', Georgia, serif;
    --sans:        'Inter', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--body-text); background: var(--white); line-height: 1.7; font-size: 16px; }

p { text-wrap: pretty; widows: 3; orphans: 3; }
h1, h2, h3 { text-wrap: balance; }

/* ============================
   NAV
============================ */
nav {
    position: fixed; top: 0; width: 100%;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 200;
    transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(42,98,72,0.1); }
.nav-inner {
    max-width: 1200px; margin: 0 auto;
    padding: 0 40px; height: 72px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-wrap { width: 40px; height: 40px; border-radius: 8px; overflow: hidden; background: #111; flex-shrink: 0; }
.logo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.nav-brand { font-family: var(--serif); font-size: 17px; font-weight: 600; color: var(--charcoal); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--body-text); font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover,
.nav-links a.active { color: var(--primary); }
/* Animierter Unterstrich – wächst von links, nicht für den CTA-Button */
.nav-links a:not(.nav-cta) { position: relative; }
.nav-links a:not(.nav-cta)::after {
    content: ""; position: absolute; left: 0; bottom: -3px;
    width: 100%; height: 2px; background: var(--primary);
    transform: scaleX(0); transform-origin: left center;
    transition: transform 0.3s ease;
}
.nav-links a:not(.nav-cta):hover::after,
.nav-links a:not(.nav-cta).active::after { transform: scaleX(1); }
.nav-cta {
    background: var(--accent) !important; color: white !important;
    padding: 10px 22px !important; border-radius: 8px !important;
    transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--accent-dk) !important; color: white !important; }

/* Hamburger (nur mobil sichtbar) */
.nav-toggle {
    display: none;
    flex-direction: column; justify-content: space-between;
    width: 26px; height: 18px;
    background: none; border: none; padding: 0; cursor: pointer;
    flex-shrink: 0;
}
.nav-toggle span {
    display: block; width: 100%; height: 2px;
    background: var(--charcoal); border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================
   BUTTONS
============================ */
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--accent); color: white;
    padding: 15px 30px; border-radius: 8px;
    text-decoration: none; font-weight: 600; font-size: 15px;
    transition: all 0.25s;
}
.btn-primary:hover {
    background: var(--accent-dk);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(42,98,72,0.3);
}
.btn-text {
    color: var(--charcoal); text-decoration: none;
    font-weight: 500; font-size: 15px;
    border-bottom: 1.5px solid var(--primary);
    padding-bottom: 2px; transition: color 0.2s;
}
.btn-text:hover { color: var(--primary); }
.btn-text-light {
    color: white; text-decoration: none;
    font-weight: 500; font-size: 15px;
    border-bottom: 1.5px solid var(--green-glow);
    padding-bottom: 2px; transition: opacity 0.2s;
}
.btn-text-light:hover { opacity: 0.7; }
.btn-outline-green {
    display: inline-flex; align-items: center; gap: 8px;
    border: 2px solid var(--green-glow); color: var(--green-glow);
    padding: 13px 26px; border-radius: 8px;
    text-decoration: none; font-weight: 600; font-size: 14px;
    transition: all 0.2s;
}
.btn-outline-green:hover { background: var(--green-glow); color: var(--charcoal); }
.btn-white {
    display: inline-flex; align-items: center; gap: 8px;
    background: white; color: var(--primary-dk);
    padding: 13px 28px; border-radius: 8px;
    text-decoration: none; font-weight: 700; font-size: 14px;
    transition: all 0.2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.18); }
.btn-cta {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--accent); color: white;
    padding: 17px 38px; border-radius: 8px;
    text-decoration: none; font-weight: 700; font-size: 15px;
    transition: all 0.25s;
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(42,98,72,0.5); }

/* ============================
   SHARED HELPERS
============================ */
.section-tag {
    display: inline-block; font-size: 11px; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--primary); margin-bottom: 12px;
}
.section-tag-light {
    display: inline-block; font-size: 11px; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--green-glow); margin-bottom: 16px;
}
.section-title {
    font-family: var(--serif);
    font-size: clamp(28px, 2.8vw, 42px);
    color: var(--charcoal); line-height: 1.2; margin-bottom: 20px;
}
.ornament { width: 48px; height: 2px; background: var(--primary); margin-bottom: 28px; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-title { max-width: 520px; margin: 0 auto 16px; }
.section-header p { color: var(--body-text); max-width: 560px; margin: 0 auto; font-size: 16px; }

/* ============================
   HERO (Homepage)
============================ */
.hero {
    min-height: 100vh; background: var(--bg);
    display: flex; align-items: center;
    padding: 120px 40px 80px;
}
.hero-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 55fr 45fr; gap: 64px;
    align-items: center;
}
.hero-tag {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--primary); margin-bottom: 24px;
}
.hero-tag::before { content: ''; width: 28px; height: 2px; background: var(--primary); }
h1 {
    font-family: var(--serif);
    font-size: clamp(36px, 4vw, 58px);
    color: var(--charcoal); line-height: 1.12;
    margin-bottom: 28px; font-weight: 700;
}
h1 em { font-style: italic; color: var(--primary); }
.hero-sub {
    font-size: 17px; color: var(--body-text);
    max-width: 480px; line-height: 1.85; margin-bottom: 44px;
}
.hero-buttons { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero-photo-wrap { position: relative; }
.hero-photo { width: 100%; aspect-ratio: 3/4; border-radius: 20px; overflow: hidden; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-badge {
    position: absolute; bottom: -18px; left: -22px;
    background: white; border-radius: 14px; padding: 16px 22px;
    box-shadow: 0 12px 40px rgba(42,98,72,0.15);
    display: flex; align-items: center; gap: 14px;
}
.badge-icon {
    width: 44px; height: 44px; background: var(--primary-bg);
    border-radius: 10px; display: flex; align-items: center;
    justify-content: center; font-size: 22px;
}
.badge-text strong { display: block; font-size: 20px; font-family: var(--serif); color: var(--charcoal); }
.badge-text span { font-size: 12px; color: var(--body-text); }

/* ============================
   PAGE HERO (Unterseiten)
============================ */
.page-hero {
    padding: 140px 40px 80px;
    background: var(--bg);
}
.page-hero-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 55fr 45fr; gap: 64px;
    align-items: center;
}
.page-hero h1 { font-size: clamp(32px, 3.5vw, 52px); }
.page-hero .hero-sub { margin-bottom: 36px; }

.page-hero-bg {
    padding: 160px 40px 100px;
    position: relative; overflow: hidden;
    background: var(--charcoal);
}
.page-hero-bg-img {
    position: absolute; inset: 0;
}
.page-hero-bg-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.page-hero-bg-content {
    position: relative; z-index: 1;
    max-width: 1200px; margin: 0 auto;
    text-align: center;
}
.page-hero-bg h1 { color: white; font-size: clamp(34px, 4vw, 56px); }
.page-hero-bg h1 em { color: var(--green-glow); }
.page-hero-bg .hero-sub { color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 40px; }

/* Einfacher Mini-Hero für Rechtliches */
.mini-hero {
    padding: 110px 40px 56px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}
.mini-hero-inner { max-width: 800px; margin: 0 auto; }
.mini-hero h1 {
    font-family: var(--serif);
    font-size: clamp(28px, 3vw, 44px);
    color: var(--charcoal); margin-bottom: 12px;
}
.mini-hero p { font-size: 16px; color: var(--body-text); }

/* ============================
   TRUST BAR
============================ */
.trust-bar { background: var(--primary); padding: 52px 40px; }
.trust-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 40px; text-align: center;
}
.trust-item { border-left: 1px solid rgba(255,255,255,0.2); }
.trust-item:first-child { border-left: none; }
.trust-num { font-family: var(--serif); font-size: 50px; font-weight: 700; color: white; display: block; line-height: 1; font-variant-numeric: tabular-nums; }
.trust-label { font-size: 13px; color: rgba(255,255,255,0.72); margin-top: 8px; letter-spacing: 0.06em; text-transform: uppercase; }

/* ============================
   ERKENNST DU DICH (Accordion)
============================ */
.symptoms { padding: 110px 40px; background: var(--charcoal); }
.symptoms-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 38fr 62fr; gap: 80px;
    align-items: start;
}
.symptoms-intro { position: sticky; top: 100px; }
.symptoms-intro h2 { font-family: var(--serif); font-size: clamp(28px, 3vw, 44px); color: white; line-height: 1.2; margin-bottom: 24px; }
.symptoms-intro p { color: rgba(255,255,255,0.62); font-size: 16px; line-height: 1.82; margin-bottom: 36px; }
.symptom-list { display: flex; flex-direction: column; gap: 12px; }
.symptom-item {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px; overflow: hidden;
    transition: background 0.25s, border-color 0.25s;
}
.symptom-item:hover { background: rgba(125,201,160,0.1); border-color: rgba(125,201,160,0.3); }
.symptom-item.active { background: rgba(125,201,160,0.12); border-color: rgba(125,201,160,0.45); }
.symptom-header {
    display: flex; gap: 16px; align-items: center; padding: 20px 22px;
    /* Button-Reset */
    background: none; border: none; width: 100%;
    font: inherit; color: inherit; cursor: pointer; text-align: left;
}
.symptom-header:focus-visible {
    outline: 2px solid var(--green-glow);
    outline-offset: -3px;
    border-radius: 14px;
}
.symptom-check {
    width: 30px; height: 30px; border-radius: 50%;
    background: rgba(125,201,160,0.15);
    border: 2px solid var(--green-glow);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 13px; color: var(--green-glow); font-weight: 700;
    transition: background 0.25s;
}
.symptom-item.active .symptom-check { background: var(--green-glow); color: var(--charcoal); }
.symptom-text { font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.55; flex: 1; }
.symptom-toggle {
    font-size: 22px; color: var(--green-glow); flex-shrink: 0; font-weight: 300;
    transition: transform 0.35s ease; width: 24px; text-align: center;
}
.symptom-item.active .symptom-toggle { transform: rotate(45deg); }
.symptom-expand { max-height: 0; overflow: hidden; transition: max-height 0.45s ease; }
.symptom-item.active .symptom-expand { max-height: 160px; }
.symptom-expand-inner {
    padding: 0 22px 20px 68px;
    font-size: 14px; color: rgba(255,255,255,0.62);
    line-height: 1.75; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 16px;
}
.symptom-item.active .symptom-expand-inner { border-top-color: rgba(125,201,160,0.2); }
.expand-hint { text-align: center; margin-top: 16px; font-size: 12px; color: rgba(255,255,255,0.3); font-style: italic; }

/* ============================
   COACHING FOTO-STRIP
============================ */
.coaching-photo { width: 100%; height: 380px; overflow: hidden; position: relative; }
.coaching-photo img { width: 100%; height: calc(100% + 60px); object-fit: cover; object-position: center 40%; margin-top: -30px; will-change: transform; }
.coaching-photo-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(27,67,48,0.88) 0%, rgba(27,67,48,0.45) 55%, rgba(27,67,48,0.05) 100%);
    display: flex; align-items: center; padding: 60px;
}
.coaching-photo-text { max-width: 520px; color: white; }
.coaching-photo-text h3 { font-family: var(--serif); font-size: clamp(26px, 3vw, 40px); margin-bottom: 16px; line-height: 1.2; }
.coaching-photo-text p { font-size: 16px; opacity: 0.88; margin-bottom: 30px; line-height: 1.75; }

/* ============================
   ÜBER MICH
============================ */
.about { padding: 110px 40px; background: white; }
.about-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 48fr 52fr; gap: 80px; align-items: center;
}
.about-photo-wrap { position: relative; }
.about-photo { width: 100%; aspect-ratio: 4/5; border-radius: 20px; overflow: hidden; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo-badge {
    position: absolute; top: -18px; right: -18px;
    background: var(--primary); border-radius: 14px;
    padding: 18px 24px; color: white; text-align: center;
    box-shadow: 0 10px 30px rgba(42,98,72,0.3);
}
.about-photo-badge strong { font-family: var(--serif); font-size: 24px; display: block; line-height: 1; }
.about-photo-badge span { font-size: 11px; opacity: 0.82; text-transform: uppercase; letter-spacing: 0.06em; }
.about-text p { margin-bottom: 18px; line-height: 1.88; font-size: 16px; }
.about-highlight { background: var(--bg); border-radius: 16px; padding: 28px 32px; margin: 24px 0; }
.about-highlight blockquote { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--charcoal); line-height: 1.65; }
.about-highlight .quote-src { margin-top: 12px; font-style: normal; font-size: 13px; color: var(--primary); font-weight: 600; letter-spacing: 0.04em; }

/* ============================
   TIMELINE (Über mich)
============================ */
.timeline-section { padding: 100px 40px; background: var(--bg); }
.timeline-inner { max-width: 900px; margin: 0 auto; }
.timeline { position: relative; margin-top: 56px; }
.timeline::before {
    content: ''; position: absolute; left: 28px; top: 0; bottom: 0;
    width: 2px; background: var(--border);
}
.timeline-item { display: flex; gap: 36px; margin-bottom: 56px; position: relative; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-marker {
    width: 58px; height: 58px; border-radius: 50%;
    background: var(--primary); color: white;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif); font-size: 22px; font-weight: 700;
    flex-shrink: 0; position: relative; z-index: 1;
    box-shadow: 0 4px 16px rgba(42,98,72,0.25);
}
.timeline-content { padding-top: 10px; }
.timeline-year {
    display: inline-block; font-size: 11px; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--primary); margin-bottom: 8px;
}
.timeline-content h3 {
    font-family: var(--serif); font-size: 22px;
    color: var(--charcoal); margin-bottom: 14px; line-height: 1.3;
}
.timeline-content p { font-size: 15.5px; line-height: 1.85; margin-bottom: 12px; }
.timeline-content p:last-child { margin-bottom: 0; }

/* Grüner Fill-Strich wächst beim Scrollen (Höhe per JS gesetzt) */
.timeline-fill {
    position: absolute; left: 28px; top: 0;
    width: 2px; height: 0;
    background: var(--primary);
    box-shadow: 0 0 8px rgba(42,98,72,0.4);
    z-index: 0; pointer-events: none;
}

/* ============================
   HALTUNG / WERTE
============================ */
.values-section { padding: 100px 40px; background: white; }
.values-inner { max-width: 1200px; margin: 0 auto; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px; }
.value-card {
    background: var(--bg); border-radius: 18px; padding: 36px;
    border: 1px solid var(--border);
}
.value-icon { font-size: 32px; margin-bottom: 18px; display: block; }
.value-card h3 { font-family: var(--serif); font-size: 20px; color: var(--charcoal); margin-bottom: 12px; }
.value-card p { font-size: 15px; line-height: 1.78; }

/* Qualifikationen */
.qual-section { padding: 80px 40px; background: var(--charcoal); }
.qual-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.qual-inner .section-title { color: white; }
.qual-list { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 40px; }
.qual-item {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 100px; padding: 12px 24px;
    color: rgba(255,255,255,0.88); font-size: 14px; font-weight: 500;
}

/* ============================
   SERVICES
============================ */
.services { padding: 110px 40px; background: var(--bg); }
.services-inner { max-width: 1200px; margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.service-card {
    background: white; border-radius: 18px; padding: 34px;
    border: 1px solid var(--border); transition: all 0.3s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 18px 48px rgba(42,98,72,0.12); border-color: var(--primary-lt); }
.service-icon { width: 52px; height: 52px; background: var(--primary-bg); border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 25px; margin-bottom: 20px; }
.service-title { font-family: var(--serif); font-size: 19px; color: var(--charcoal); margin-bottom: 10px; }
.service-card p { font-size: 14.5px; line-height: 1.75; }

/* Erweiterte Service-Cards (coaching.html) */
.service-card-lg {
    background: white; border-radius: 18px; padding: 40px;
    border: 1px solid var(--border); transition: all 0.3s;
}
.service-card-lg:hover { box-shadow: 0 12px 36px rgba(42,98,72,0.1); border-color: var(--primary-lt); }
.service-card-lg .service-icon { margin-bottom: 20px; }
.service-card-lg h3 { font-family: var(--serif); font-size: 20px; color: var(--charcoal); margin-bottom: 12px; }
.service-card-lg p { font-size: 15px; line-height: 1.8; }

/* ============================
   WIE ICH ARBEITE
============================ */
.method { padding: 110px 40px; background: white; }
.method-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.method-explain { background: var(--bg); border-radius: 16px; padding: 30px; margin-top: 28px; }
.method-explain p { font-size: 15px; line-height: 1.82; color: var(--body-text); }
.method-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.method-tag {
    background: var(--primary-bg); color: var(--primary-dk);
    padding: 9px 20px; border-radius: 100px;
    font-size: 13px; font-weight: 600; letter-spacing: 0.02em;
    border: 1px solid var(--border); transition: all 0.2s;
}
.method-tag[title] { cursor: help; }
.method-tag:hover { background: var(--primary); color: white; border-color: var(--primary); }
.method-tags-note { margin-top: 18px; font-size: 14px; color: var(--body-text); }
.method-tags-note a {
    color: var(--primary); font-weight: 600; text-decoration: none;
    border-bottom: 1px solid var(--primary-lt); transition: color 0.2s, border-color 0.2s;
}
.method-tags-note a:hover { color: var(--accent-dk); border-color: var(--primary); }
.process-steps { display: flex; flex-direction: column; gap: 30px; }
.step { display: flex; gap: 20px; align-items: flex-start; }
.step-num {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--primary); color: white;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 16px; flex-shrink: 0; font-family: var(--serif);
}
.step-body strong { display: block; color: var(--charcoal); font-weight: 600; margin-bottom: 5px; font-size: 16px; }
.step-body p { font-size: 14.5px; line-height: 1.75; }

/* Methoden-Erklärungen (coaching.html) */
.methods-detail { padding: 100px 40px; background: var(--bg); }
.methods-detail-inner { max-width: 1200px; margin: 0 auto; }
.methods-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; }
.method-detail-card {
    background: white; border-radius: 18px; padding: 36px;
    border: 1px solid var(--border);
}
.method-abbr {
    display: inline-block; font-family: var(--serif); font-size: 28px; font-weight: 700;
    color: var(--primary); margin-bottom: 6px;
}
.method-fullname { font-size: 13px; color: var(--body-text); font-style: italic; display: block; margin-bottom: 14px; }
.method-detail-card p { font-size: 15px; line-height: 1.8; }

/* ============================
   FAQ
============================ */
.faq-section { padding: 100px 40px; background: white; }
.faq-inner { max-width: 780px; margin: 0 auto; }
.faq-list { margin-top: 56px; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    border: 1px solid var(--border); border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--primary-lt); }
.faq-item.open { border-color: var(--primary); }
.faq-question {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 22px 26px;
    font-weight: 600; font-size: 16px; color: var(--charcoal);
    /* Button-Reset */
    background: none; border: none; width: 100%;
    font-family: inherit; cursor: pointer; text-align: left;
}
.faq-question:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: -2px;
    border-radius: 13px;
}
.faq-toggle {
    font-size: 22px; color: var(--primary); font-weight: 300;
    flex-shrink: 0; transition: transform 0.3s;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner {
    padding: 0 26px 22px;
    font-size: 15px; color: var(--body-text); line-height: 1.82;
    border-top: 1px solid var(--border); padding-top: 16px;
}

/* ============================
   TESTIMONIALS
============================ */
.testimonials { padding: 110px 40px; background: var(--bg); }
.testimonials-inner { max-width: 1200px; margin: 0 auto; }
.testimonials-header { text-align: center; margin-bottom: 56px; }
.testimonials-header p { font-size: 14px; color: var(--body-text); margin-top: 8px; font-style: italic; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial-card {
    background: white; border-radius: 20px; padding: 36px;
    border: 1px solid var(--border); position: relative; transition: all 0.3s;
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(42,98,72,0.1); }
.testi-stars { color: #F5A623; font-size: 15px; margin-bottom: 14px; letter-spacing: 2px; }
.testi-quote { font-family: var(--serif); font-style: italic; font-size: 16.5px; color: var(--charcoal); line-height: 1.7; margin-bottom: 28px; }
.testi-quote::before { content: '❝'; font-size: 28px; color: var(--primary-lt); display: block; margin-bottom: 10px; font-style: normal; line-height: 1; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--primary-bg); border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.testi-name strong { display: block; font-size: 14px; color: var(--charcoal); font-weight: 600; }
.testi-name span { font-size: 12px; color: var(--body-text); }
.testi-placeholder-note { text-align: center; margin-top: 36px; font-size: 13px; color: var(--body-text); font-style: italic; padding: 14px; background: white; border-radius: 10px; border: 1px dashed var(--border); }

/* ============================
   CTA BANNER
============================ */
.cta-banner { padding: 110px 40px; background: var(--charcoal); text-align: center; }
.cta-banner h2 { font-family: var(--serif); font-size: clamp(30px, 3.5vw, 52px); color: white; margin-bottom: 24px; line-height: 1.2; }
.cta-banner h2 em { color: var(--green-glow); }
.cta-text { color: rgba(255,255,255,0.68); font-size: 17px; margin-bottom: 48px; max-width: 590px; margin-left: auto; margin-right: auto; line-height: 1.88; }
.cta-note { margin-top: 18px; font-size: 13px; color: rgba(255,255,255,0.35); }

/* ============================
   KONTAKT
============================ */
.contact { padding: 110px 40px; background: var(--bg); }
.contact-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info { padding-top: 8px; }
.contact-info > p { font-size: 16px; line-height: 1.85; margin-bottom: 40px; }
.contact-data { display: flex; flex-direction: column; gap: 20px; }
.c-row { display: flex; align-items: center; gap: 16px; }
.c-ico { width: 50px; height: 50px; border-radius: 12px; background: white; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.c-label { font-size: 11px; font-weight: 600; color: var(--body-text); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 3px; }
.c-value { color: var(--primary); text-decoration: none; font-size: 15px; font-weight: 500; }
.c-value:hover { text-decoration: underline; }
.c-value-plain { font-size: 15px; color: var(--charcoal); }
.contact-booking { background: white; border-radius: 24px; padding: 52px; border: 1px solid var(--border); }
.booking-icon { font-size: 46px; margin-bottom: 18px; display: block; }
.contact-booking h3 { font-family: var(--serif); font-size: 27px; color: var(--charcoal); margin-bottom: 14px; }
.contact-booking p { font-size: 15.5px; color: var(--body-text); line-height: 1.82; margin-bottom: 32px; }
.btn-booking {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: var(--accent); color: white;
    padding: 16px 32px; border-radius: 10px;
    text-decoration: none; font-weight: 700; font-size: 15px; transition: all 0.25s;
}
.btn-booking:hover { background: var(--accent-dk); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(42,98,72,0.3); }
.booking-note { margin-top: 14px; font-size: 12.5px; color: var(--body-text); text-align: center; }

/* ============================
   BLOG
============================ */
.blog-section { padding: 80px 40px 110px; background: var(--white); }
.blog-inner { max-width: 1200px; margin: 0 auto; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px; }
.blog-card {
    background: var(--bg); border-radius: 18px;
    border: 1px solid var(--border); overflow: hidden;
    transition: all 0.3s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(42,98,72,0.1); }
.blog-card-img {
    height: 180px; background: var(--primary-bg);
    display: flex; align-items: center; justify-content: center;
    font-size: 48px;
}
.blog-card-body { padding: 28px; }
.blog-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--primary); display: block; margin-bottom: 10px; }
.blog-card h3 { font-family: var(--serif); font-size: 19px; color: var(--charcoal); line-height: 1.35; margin-bottom: 10px; }
.blog-card p { font-size: 14px; line-height: 1.75; margin-bottom: 18px; }
.blog-coming-soon { display: inline-block; background: var(--primary-bg); color: var(--primary-dk); padding: 6px 14px; border-radius: 100px; font-size: 12px; font-weight: 600; }
.blog-note { text-align: center; margin-top: 60px; padding: 28px; background: var(--bg); border-radius: 16px; border: 1px dashed var(--border); }
.blog-note p { font-size: 15px; color: var(--body-text); line-height: 1.75; }

/* Karte ist als Ganzes verlinkt */
a.blog-card { display: block; text-decoration: none; color: inherit; }
a.blog-card:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }
.blog-card-meta { font-size: 12px; color: var(--body-text); margin-bottom: 14px; }
.blog-readmore { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-weight: 700; font-size: 13px; }
a.blog-card:hover .blog-readmore { gap: 10px; transition: gap 0.2s; }

/* ============================
   BLOG-ARTIKEL (Einzelseite)
============================ */
.article-hero {
    padding: 120px 40px 56px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}
.article-hero-inner { max-width: 720px; margin: 0 auto; }
.article-hero .blog-tag { margin-bottom: 16px; }
.article-hero h1 {
    font-size: clamp(30px, 3.4vw, 46px);
    line-height: 1.16; margin-bottom: 22px;
}
.article-meta {
    display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px;
    font-size: 13px; color: var(--body-text); letter-spacing: 0.02em;
}
.article-meta .meta-dot { color: var(--border); }
.article-body { max-width: 720px; margin: 0 auto; padding: 60px 40px 84px; }
.article-body .article-back { display: inline-block; margin-bottom: 32px; font-size: 14px; color: var(--primary); text-decoration: none; font-weight: 600; }
.article-body .article-back:hover { text-decoration: underline; }
.article-body p { font-size: 17px; line-height: 1.85; color: var(--body-text); margin-bottom: 24px; }
.article-body .article-lead { font-size: 19px; line-height: 1.8; color: var(--charcoal); }
.article-body h2 { font-family: var(--serif); font-size: clamp(23px, 2.4vw, 31px); color: var(--charcoal); line-height: 1.25; margin: 48px 0 18px; }
.article-body h3 { font-family: var(--serif); font-size: 20px; color: var(--charcoal); line-height: 1.3; margin: 34px 0 10px; }
.article-body strong { color: var(--charcoal); font-weight: 600; }
.article-body em { font-style: italic; }
.article-body a:not(.article-back):not(.btn-primary):not(.btn-cta) { color: var(--primary); font-weight: 500; }
.article-body ul, .article-body ol { padding-left: 22px; margin-bottom: 24px; }
.article-body li { font-size: 17px; line-height: 1.8; color: var(--body-text); margin-bottom: 12px; }
.article-body li strong { color: var(--charcoal); }
.article-body blockquote {
    font-family: var(--serif); font-style: italic;
    font-size: 21px; color: var(--charcoal); line-height: 1.5;
    border-left: 3px solid var(--primary);
    padding: 4px 0 4px 26px; margin: 36px 0;
}
.article-author {
    margin-top: 56px; padding: 26px 30px;
    background: var(--bg); border: 1px solid var(--border); border-radius: 16px;
    display: flex; gap: 20px; align-items: center;
}
.article-author img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.article-author-text strong { display: block; color: var(--charcoal); font-family: var(--serif); font-size: 17px; margin-bottom: 4px; }
.article-author-text p { font-size: 14px; line-height: 1.7; margin: 0; }
.article-author-text a { color: var(--primary); font-weight: 600; }

/* ============================
   LEGAL (Impressum / Datenschutz)
============================ */
.legal-section { padding: 80px 40px 110px; }
.legal-inner { max-width: 800px; margin: 0 auto; }
.legal-inner h2 {
    font-family: var(--serif); font-size: 24px;
    color: var(--charcoal); margin: 48px 0 16px;
    padding-bottom: 10px; border-bottom: 1px solid var(--border);
}
.legal-inner h2:first-of-type { margin-top: 0; }
.legal-inner h3 { font-size: 17px; color: var(--charcoal); margin: 24px 0 8px; font-weight: 600; }
.legal-inner p { font-size: 15px; line-height: 1.85; margin-bottom: 14px; color: var(--body-text); }
.legal-inner a { color: var(--primary); }
.legal-inner a:hover { text-decoration: underline; }
.legal-inner ul { margin: 8px 0 16px 20px; }
.legal-inner ul li { font-size: 15px; line-height: 1.85; color: var(--body-text); margin-bottom: 6px; }

/* ============================
   FOOTER
============================ */
footer { background: var(--charcoal); padding: 44px 40px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-copy { color: rgba(255,255,255,0.38); font-size: 13px; }
.footer-nav { display: flex; gap: 28px; }
.footer-nav a { color: rgba(255,255,255,0.52); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-nav a:hover { color: var(--green-glow); }
.footer-social { display: flex; gap: 16px; align-items: center; }
.social-icon { color: rgba(255,255,255,0.52); transition: color 0.2s; display: flex; line-height: 1; }
.social-icon:hover { color: var(--green-glow); }

/* ============================
   COOKIE BANNER
============================ */
#cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--charcoal);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 18px 40px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 20px; z-index: 1000; font-size: 14px;
}
.cookie-text { color: rgba(255,255,255,0.72); }
.cookie-text a { color: var(--green-glow); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept { background: var(--accent); color: white; border: none; padding: 10px 22px; border-radius: 7px; cursor: pointer; font-weight: 600; font-size: 14px; }
.cookie-decline { background: transparent; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.25); padding: 10px 22px; border-radius: 7px; cursor: pointer; font-size: 14px; }

/* ============================
   ANIMATIONEN
============================ */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.13s; }
.delay-2 { transition-delay: 0.26s; }

/* Headline-Reveal: Überschrift deckt sich beim Laden von unten nach oben auf */
.reveal-mask {
    animation: revealMask 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 0.12s both;
}
@keyframes revealMask {
    from { opacity: 0; clip-path: inset(0 0 105% 0); transform: translateY(14px); }
    to   { opacity: 1; clip-path: inset(0 0 0 0);    transform: translateY(0); }
}

/* Service-Icons beleben sich beim Karten-Hover (skalieren, kippen, Farbkreis) */
.service-icon { transition: transform 0.4s cubic-bezier(0.2,0.7,0.2,1), background 0.35s ease, box-shadow 0.35s ease; }
.service-card:hover .service-icon,
.service-card-lg:hover .service-icon {
    transform: scale(1.08) rotate(-6deg);
    background: var(--green-glow);
    box-shadow: 0 8px 20px rgba(125,201,160,0.45);
}

/* Hero-Foto: sanftes, endloses Schweben + Badge ploppt nach dem Laden rein */
.hero-photo { animation: heroFloat 6s ease-in-out 1s infinite; }
@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}
.hero-badge { animation: badgePop 0.6s cubic-bezier(0.34,1.56,0.64,1) 0.9s both; }
@keyframes badgePop {
    from { opacity: 0; transform: scale(0.6) translateY(10px); }
    to   { opacity: 1; transform: scale(1)   translateY(0); }
}

/* Section-Überschriften decken sich beim Reinscrollen auf (Wipe von unten) */
.reveal-title {
    clip-path: inset(0 0 110% 0); opacity: 0; will-change: clip-path;
    transition: clip-path 0.85s cubic-bezier(0.2,0.7,0.2,1) 0.15s, opacity 0.85s ease 0.15s;
}
/* Reveal wird ausgelöst, sobald der umgebende fade-up-Block sichtbar wird
   (zuverlässiger als ein eigener Observer auf das geclippte Titel-Element) */
.fade-up.visible .reveal-title,
.reveal-title.visible { clip-path: inset(0 0 0 0); opacity: 1; }

/* Stagger: Symptom-Punkte erscheinen nacheinander von links */
@media (prefers-reduced-motion: no-preference) {
    .symptom-stagger-parent .symptom-item {
        opacity: 0;
        transform: translateX(-22px);
        transition: opacity 0.42s ease, transform 0.42s ease;
    }
    .symptom-stagger-parent.visible .symptom-item            { opacity: 1; transform: none; }
    .symptom-stagger-parent.visible .symptom-item:nth-child(1) { transition-delay: 0.22s; }
    .symptom-stagger-parent.visible .symptom-item:nth-child(2) { transition-delay: 0.34s; }
    .symptom-stagger-parent.visible .symptom-item:nth-child(3) { transition-delay: 0.46s; }
    .symptom-stagger-parent.visible .symptom-item:nth-child(4) { transition-delay: 0.58s; }
    .symptom-stagger-parent.visible .symptom-item:nth-child(5) { transition-delay: 0.70s; }
    .symptom-stagger-parent.visible .symptom-item:nth-child(6) { transition-delay: 0.82s; }
}

/* Bewegung reduzieren (OS-Einstellung): alle Animationen praktisch aus,
   Inhalte aber sichtbar lassen */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    html { scroll-behavior: auto; }
    .fade-up { opacity: 1 !important; transform: none !important; }
    .reveal-mask { clip-path: none !important; transform: none !important; opacity: 1 !important; }
    .reveal-title { clip-path: none !important; opacity: 1 !important; }
    .hero-photo, .hero-badge { animation: none !important; }
    .symptom-stagger-parent .symptom-item { opacity: 1 !important; transform: none !important; }
    .timeline-fill { height: 100% !important; }
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 960px) {
    .hero-inner, .about-inner, .method-inner,
    .contact-inner, .symptoms-inner,
    .page-hero-inner { grid-template-columns: 1fr; gap: 44px; }
    .symptoms-intro { position: static; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .testimonial-grid { grid-template-columns: 1fr 1fr; }
    .trust-inner { grid-template-columns: 1fr; gap: 20px; }
    .trust-item { border-left: none; border-top: 1px solid rgba(255,255,255,0.15); padding-top: 20px; }
    .trust-item:first-child { border-top: none; padding-top: 0; }
    .values-grid { grid-template-columns: 1fr; }
    .methods-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr 1fr; }
    .nav-toggle { display: flex; }
    .nav-links {
        position: absolute; top: 100%; left: 0; right: 0;
        flex-direction: column; align-items: stretch; gap: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(12px);
        padding: 8px 24px 20px;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 14px 26px rgba(42,98,72,0.12);
        transform: translateY(-150%); opacity: 0; pointer-events: none;
        transition: transform 0.35s ease, opacity 0.25s ease;
    }
    .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
    .nav-links li { width: 100%; }
    .nav-links li a { display: block; padding: 15px 4px; font-size: 16px; border-bottom: 1px solid var(--border); }
    .nav-links li:last-child a { border-bottom: none; }
    .nav-links a:not(.nav-cta)::after { display: none; }
    .nav-cta { text-align: center; margin-top: 14px; }
    .hero, .about, .services, .method, .cta-banner, .contact,
    .symptoms, .testimonials, .timeline-section, .values-section,
    .methods-detail, .faq-section, .blog-section { padding: 72px 24px; }
    .hero { padding-top: 100px; }
    .page-hero { padding: 110px 24px 64px; }
    .page-hero-bg { padding: 120px 24px 80px; }
    .mini-hero { padding: 90px 24px 44px; }
    .article-hero { padding: 96px 24px 40px; }
    .article-body { padding: 44px 24px 64px; }
    .article-author { flex-direction: column; text-align: center; gap: 14px; }
    .trust-bar, .qual-section { padding: 44px 24px; }
    .coaching-photo-overlay { padding: 32px; }
    .timeline-section, .legal-section { padding: 60px 24px 80px; }
}
@media (max-width: 640px) {
    .services-grid, .testimonial-grid, .blog-grid { grid-template-columns: 1fr; }
    .hero-badge { display: none; }
    #cookie-banner { flex-direction: column; padding: 18px 24px; }
    .coaching-photo { height: 300px; }
    .contact-booking { padding: 36px 28px; }
    .page-hero-inner { grid-template-columns: 1fr; }
}
