:root {
    --gold: #c8a97e;
    --gold-hover: #b8996e;
    --gold-light: #d4c4a8;
    --gold-script: #e8d5b8;
    --dark: #2c2c2c;
    --darkest: #1e1a16;
    --text-dark: #4a3a2a;
    --text-mid: #6a5a4a;
    --text-light: #8a7a6a;
    --bg-body: #F9F5F0;
    --bg-warm: #f3ede4;
    --bg-card: #fefdfb;
    --bg-cream: #fcf9f5;
    --border-light: #e8ddd0;
    --white: #fff;
    --light: #fcfaf7;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    color: var(--dark);
    background: var(--bg-body);
    line-height: 1.7;
}
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}
.em-script {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 500;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #faf7f3; }
::-webkit-scrollbar-thumb { background: var(--gold-light); }
/* Navigation */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(249,245,240,0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(200,169,126,0.12);
    padding: 18px 0;
}
nav .container {
    display: flex; justify-content: space-between; align-items: center;
}
nav .logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--text-light);
    text-decoration: none;
    letter-spacing: 1.5px;
}
nav .logo span { color: var(--gold); }
nav .links { display: flex; gap: 36px; }
nav .links a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}
nav .links a::after {
    content: '';
    position: absolute; bottom: -4px; left: 0; right: 0;
    height: 1px; background: var(--gold);
    transform: scaleX(0); transition: transform 0.3s;
}
nav .links a:hover { color: var(--gold); }
nav .links a:hover::after { transform: scaleX(1); }
.nav-cta {
    display: inline-block;
    padding: 10px 24px;
    background: var(--gold);
    color: var(--white);
    text-decoration: none;
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s;
    border: 1px solid var(--gold);
    border-radius: 50px;
}
.nav-cta:hover {
    background: var(--gold-hover);
    border-color: var(--gold-hover);
}
.menu-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: #5a5a5a; }

/* Hero */
.hero {
    min-height: 100vh;
    display: flex; align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}
.hero-bg {
    position: absolute; inset: 0;
    background: url('assets/hero.jpg') center 30% / cover no-repeat;
    filter: brightness(0.75);
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg,
        rgba(44,44,44,0.40) 0%,
        rgba(180,140,100,0.30) 40%,
        rgba(44,44,44,0.50) 100%
    );
}
.hero .container { position: relative; z-index: 1; }
.hero-text { max-width: 640px; }
.hero-text .label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold-light);
    margin-bottom: 20px;
    font-weight: 400;
}
.hero-text h1 {
    font-size: 3.6rem;
    line-height: 1.1;
    color: var(--light);
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}
.hero-text h1 em {
    font-style: italic;
    color: var(--gold-script);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
}
.hero-text .sub {
    font-size: 1.05rem;
    color: #d8d0c8;
    margin: 24px 0 36px;
    font-weight: 300;
    max-width: 500px;
}
.hero-actions { display: flex; align-items: center; gap: 28px; margin-bottom: 40px; }
.hero-text .btn {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: var(--light);
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(252,250,247,0.4);
    transition: all 0.4s;
    border-radius: 50px;
}
.hero-text .btn:hover {
    background: var(--gold);
    border-color: var(--gold);
}
.hero-text .btn-gold {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
}
.hero-text .btn-gold:hover {
    background: var(--gold-hover);
    border-color: var(--gold-hover);
}
.trust-points {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.trust-points span {
    font-size: 0.72rem;
    color: #c8b8a8;
    letter-spacing: 0.5px;
    font-weight: 300;
}
.trust-dot {
    color: var(--gold);
    font-size: 0.9rem;
}
.trust-bar {
    background: var(--dark);
    padding: 20px 0;
}
.trust-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.trust-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 28px;
}
.trust-bar-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--gold);
}
.trust-bar-label {
    font-size: 0.72rem;
    color: #a89888;
    letter-spacing: 0.5px;
}
.trust-bar-divider {
    width: 1px;
    height: 24px;
    background: rgba(200,169,126,0.2);
}

/* Persönliche Vorstellung */
.persoenlich {
    padding: 80px 0;
    background: var(--bg-cream);
}
.persoenlich-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 48px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}
.persoenlich-photo {
    width: 100%;
    border-radius: 50%;
    aspect-ratio: 1;
    object-fit: cover;
    border: 3px solid rgba(200,169,126,0.2);
}
.persoenlich h2 {
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--dark);
}
.persoenlich h2 span {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 500;
    color: var(--gold);
}
.persoenlich p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 16px;
}
.persoenlich-signatur {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--gold);
    margin-top: 12px;
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--gold);
    color: var(--white);
    text-align: center;
    padding: 16px;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
}

/* Section common */
section { padding: 80px 0; }
section.bg-warm { background: var(--bg-warm); }
section.bg-light { background: var(--bg-body); }
section .section-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 10px;
    font-weight: 400;
}
section h2 {
    font-size: 2.6rem;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.2;
}
section .lead {
    font-size: 1rem;
    color: var(--text-dark);
    max-width: 600px;
    margin-bottom: 56px;
    font-weight: 300;
}

/* Footer */
footer {
    background: var(--darkest);
    text-align: center;
    padding: 36px 0;
    font-size: 0.78rem;
    color: var(--text-light);
}
.footer-links { margin-top: 10px; }
.footer-links a { color: var(--text-light); text-decoration: none; margin: 0 6px; }
.footer-links a:hover { color: var(--gold); }
/* Säulen */
.saeulen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.saeule {
    background: var(--bg-card);
    padding: 48px 36px;
    border: 1px solid rgba(200,169,126,0.12);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}
.saeule::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}
.saeule:hover {
    background: var(--white);
    border-color: rgba(200,169,126,0.25);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(200,169,126,0.08);
}
.saeule:hover::before { opacity: 1; }
.saeule .icon {
    font-size: 2.4rem;
    margin-bottom: 24px;
    color: var(--gold);
    display: block;
}
.saeule h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--dark);
    letter-spacing: 0.3px;
}
.saeule p { font-size: 0.88rem; color: var(--text-dark); line-height: 1.8; }

/* Behandlungspfade */
#finder { background: #f8f4ee; }
.finder-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.finder-path {
    background: var(--bg-card);
    padding: 36px;
    border: 1px solid rgba(200,169,126,0.12);
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
}
.finder-path:hover {
    border-color: rgba(200,169,126,0.25);
    box-shadow: 0 8px 24px rgba(200,169,126,0.08);
    transform: translateY(-3px);
}
.finder-path-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.finder-path-header h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin: 0;
}
.finder-icon {
    font-size: 1.4rem;
    color: var(--gold);
    flex-shrink: 0;
}
.finder-path-desc {
    font-size: 0.82rem;
    color: var(--text-mid);
    line-height: 1.6;
    margin-bottom: 20px;
}
.finder-path-list {
    list-style: none;
    flex: 1;
    margin-bottom: 24px;
}
.finder-path-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(200,169,126,0.08);
}
.finder-path-list li:last-child { border: none; }
.path-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
    cursor: pointer;
    display: block;
}
.path-link:hover { color: var(--gold); }
.path-cta {
    display: block;
    text-align: center;
    padding: 12px 24px;
    background: transparent;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid rgba(200,169,126,0.25);
    transition: all 0.3s;
    border-radius: 50px;
}
.path-cta:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

/* Behandlungskarte Highlight */
.behandlung-card.highlight {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(200,169,126,0.3), 0 12px 40px rgba(200,169,126,0.15);
    transform: translateY(-3px);
}

/* Behandlung-Kategorien */
.kategorie { margin-bottom: 72px; }
.kategorie h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 28px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-light);
    font-weight: 400;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.kategorie h3::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 20px;
    background: var(--gold);
    border-radius: 2px;
}
.behandlungen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}
.behandlung-card {
    background: var(--bg-card);
    padding: 32px 32px 28px;
    border: 1px solid rgba(200,169,126,0.12);
    box-shadow: 0 2px 12px rgba(200,169,126,0.04);
    display: flex;
    flex-direction: column;
    transition: all 0.35s ease;
    position: relative;
}
.behandlung-card::after {
    content: '';
    position: absolute; bottom: 0; left: 32px; right: 32px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.behandlung-card:hover {
    border-color: rgba(200,169,126,0.25);
    box-shadow: 0 12px 40px rgba(200,169,126,0.1);
    transform: translateY(-3px);
}
.behandlung-card:hover::after { opacity: 1; }
.behandlung-card h4 {
    font-size: 1.08rem;
    margin-bottom: 6px;
    color: var(--dark);
    line-height: 1.35;
}
.card-badge {
    display: inline-block;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    border: 1px solid rgba(200,169,126,0.2);
    padding: 3px 10px;
    margin-bottom: 10px;
    border-radius: 2px;
}
.card-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}
.card-stats span {
    font-size: 0.72rem;
    color: var(--text-dark);
    background: rgba(200,169,126,0.06);
    padding: 3px 10px;
    border-radius: 2px;
}
.behandlung-card .meta {
    font-size: 0.78rem;
    color: var(--text-mid);
    margin-bottom: 14px;
    font-style: italic;
}
.behandlung-card .details {
    font-size: 0.82rem;
    color: var(--text-dark);
    margin-top: 6px;
    display: none;
    animation: slideDown 0.25s ease-out;
    line-height: 1.8;
    border-top: 1px solid rgba(200,169,126,0.1);
    padding-top: 14px;
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.behandlung-card .toggle {
    font-size: 0.7rem;
    color: var(--gold);
    cursor: pointer;
    border: 1px solid rgba(200,169,126,0.2);
    background: rgba(200,169,126,0.04);
    padding: 6px 16px;
    margin-top: 14px;
    display: inline-block;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    transition: all 0.25s;
    align-self: flex-start;
    border-radius: 2px;
}
.behandlung-card .toggle:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

/* Philosophie */
.philosophie {
    background: linear-gradient(135deg, #ede4d8 0%, #e0d4c0 100%);
    position: relative;
}
.philosophie blockquote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.8rem;
    color: var(--text-dark);
    max-width: 720px;
    margin: 0 auto 28px;
    text-align: center;
    line-height: 1.5;
}
.philosophie .attribution {
    text-align: center;
    color: var(--text-mid);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Ablauf */
.ablauf-grid {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 48px;
}
.ablauf-step {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}
.ablauf-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin: 0 auto 16px;
}
.ablauf-step h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--dark);
}
.ablauf-step p {
    font-size: 0.82rem;
    color: var(--text-dark);
    line-height: 1.7;
}
.ablauf-arrow {
    display: flex;
    align-items: center;
    padding-top: 14px;
    color: var(--gold);
    font-size: 1.4rem;
    font-weight: 300;
}
.ablauf-cta {
    display: inline-block;
    padding: 14px 36px;
    background: var(--gold);
    color: var(--white);
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: background 0.3s;
    border-radius: 50px;
}
.ablauf-cta:hover { background: var(--gold-hover); }

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}
.team-card {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    padding: 36px;
    background: var(--bg-card);
    border: 1px solid rgba(200,169,126,0.12);
    transition: all 0.3s;
}
.team-card:hover {
    background: var(--white);
    border-color: rgba(200,169,126,0.2);
    box-shadow: 0 8px 24px rgba(200,169,126,0.06);
}
.team-card .avatar {
    width: 76px; height: 76px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8ddd0, var(--gold-light));
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--text-light);
    flex-shrink: 0;
    border: 2px solid rgba(200,169,126,0.2);
}
.team-photo {
    width: 90px; height: 90px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(200,169,126,0.2);
}
.team-card h3 {
    font-size: 1.15rem;
    margin-bottom: 4px;
    color: var(--dark);
}
.team-card .rolle {
    font-size: 0.72rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.team-card p {
    font-size: 0.85rem;
    color: var(--text-dark);
    line-height: 1.8;
}

/* Über mich (im Team-Karte) */
.about-in-team-details {
    display: none;
    width: 100%;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(200,169,126,0.15);
}
.about-in-team-details.open { display: block; }
.about-in-team-details > p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 16px;
}
.about-divider {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-style: italic;
    color: var(--gold);
    margin: 20px 0;
}
.about-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin: 20px 0;
}
.about-columns h4 {
    font-size: 0.9rem;
    color: var(--dark);
    margin-bottom: 6px;
    font-family: 'Playfair Display', serif;
}
.about-columns p {
    font-size: 0.82rem;
    margin-bottom: 0;
}
.about-outro {
    text-align: center;
    font-size: 0.9rem;
    color: var(--dark);
    border-top: 1px solid rgba(200,169,126,0.15);
    padding-top: 16px;
    margin-top: 20px;
}
.about-outro strong { color: var(--gold); }
.about-toggle {
    display: block;
    margin: 12px 0 0;
    padding: 6px 20px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--dark);
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
    border-radius: 50px;
}
.about-toggle:hover {
    background: var(--gold);
    color: var(--white);
}

/* Praxisraum */
.praxisraum-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.praxisraum-text p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 20px;
}
.praxis-photo {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

/* Gesundheitsbereich */
.health-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.health-card {
    background: var(--bg-card);
    padding: 36px;
    border: 1px solid rgba(200,169,126,0.12);
    transition: all 0.3s;
}
.health-card:hover {
    background: var(--white);
    border-color: rgba(200,169,126,0.2);
    box-shadow: 0 8px 24px rgba(200,169,126,0.06);
}
.health-card h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: var(--dark);
}
.health-card ul { list-style: none; }
.health-card ul li {
    font-size: 0.88rem;
    color: var(--text-dark);
    padding: 8px 0;
    border-bottom: 1px solid rgba(200,169,126,0.08);
    display: flex;
    align-items: center;
    gap: 10px;
}
.health-card ul li::before {
    content: '\2192';
    color: var(--gold);
    font-size: 0.75rem;
}
.health-card ul li:last-child { border: none; }
.health-card .preise {
    margin-top: 16px;
    font-size: 0.82rem;
    color: var(--text-mid);
    font-style: italic;
    padding-top: 12px;
    border-top: 1px solid rgba(200,169,126,0.08);
}
/* Testimonials Summary */
.testimonials-summary {
    text-align: center;
    margin-bottom: 48px;
    padding: 40px 48px;
    background: var(--bg-card);
    border: 1px solid rgba(200,169,126,0.15);
    display: inline-flex;
    align-items: center;
    gap: 28px;
    position: relative;
}
.testimonials-summary::before {
    content: '\201C';
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    color: rgba(200,169,126,0.12);
    position: absolute;
    top: -10px;
    left: 16px;
    line-height: 1;
}
.testimonial-rating {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
}
.testimonial-stars-big {
    color: var(--gold);
    font-size: 1.3rem;
    letter-spacing: 4px;
}
.testimonial-count {
    font-size: 0.78rem;
    color: var(--text-mid);
    letter-spacing: 0.5px;
}
.testimonials-praise {
    text-align: center;
    margin: -24px 0 48px;
    font-size: 0.85rem;
    color: var(--text-mid);
    font-style: italic;
}
.testimonials-praise strong {
    color: var(--text-dark);
    font-style: normal;
}
.testimonial-google-link {
    font-size: 0.72rem;
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(200,169,126,0.3);
    transition: all 0.3s;
}
.testimonial-google-link:hover {
    color: #a88a5e;
    border-bottom-color: #a88a5e;
}

/* Carousel */
.testimonials-carousel {
    position: relative;
    overflow: hidden;
    padding: 0 48px;
}
.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 32px;
}
.testimonial-card {
    background: var(--bg-card);
    padding: 36px;
    border: 1px solid rgba(200,169,126,0.12);
    display: flex;
    flex-direction: column;
    transition: all 0.35s ease;
    flex: 0 0 calc((100% - 64px) / 3);
    min-width: 0;
}
.testimonial-card:hover {
    border-color: rgba(200,169,126,0.25);
    box-shadow: 0 12px 40px rgba(200,169,126,0.08);
    transform: translateY(-3px);
}
.testimonial-stars {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 4px;
    margin-bottom: 12px;
}
.testimonial-emotion {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.4;
}
.testimonial-card blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 24px;
    position: relative;
    padding-left: 8px;
}
.testimonial-card blockquote::before {
    content: '\201C';
    font-family: 'Playfair Display', serif;
    font-size: 3.6rem;
    color: rgba(200,169,126,0.15);
    position: absolute;
    top: -18px;
    left: -10px;
    line-height: 1;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(200,169,126,0.1);
}
.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--white);
    flex-shrink: 0;
}
.testimonial-name {
    font-weight: 500;
    color: var(--dark);
    font-size: 0.88rem;
}
.testimonial-info {
    font-size: 0.72rem;
    color: var(--text-light);
    margin-top: 2px;
}

/* Carousel Navigation */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid rgba(200,169,126,0.25);
    color: var(--text-dark);
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.carousel-arrow:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}
.carousel-arrow:disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}
.carousel-prev { left: 0; }
.carousel-next { right: 0; }
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 36px;
}
.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(200,169,126,0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}
.carousel-dot.active {
    background: var(--gold);
    transform: scale(1.2);
}
.carousel-dot:hover:not(.active) {
    background: rgba(200,169,126,0.4);
}
/* Contact */
section.contact {
    background: linear-gradient(135deg, var(--dark) 0%, #3a3028 100%);
    color: #e8e0d8;
}
section.contact h2 { color: var(--light); }
section.contact .lead { color: #c8b8a8; }
section.contact .contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}
section.contact .contact-item { margin-bottom: 28px; }
section.contact .contact-item h4 {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 8px;
}
section.contact .contact-item p, section.contact .contact-item a {
    font-size: 0.95rem;
    color: #e8e0d8;
    text-decoration: none;
}
section.contact .contact-item a:hover { color: var(--gold); }
section.contact .cta-btn { color: var(--gold-light); }
section.contact .cta-btn:hover { color: var(--white); }
section.contact .contact-icons {
    display: flex;
    gap: 16px;
}
.contact-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(200,169,126,0.3);
    color: #e8e0d8;
    transition: all 0.3s;
}
.contact-icon-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* Floating Contact Icons */
.floating-contact {
    position: fixed;
    right: 24px;
    bottom: 33vh;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 100;
}
.floating-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--dark);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    transition: all 0.3s;
}
.floating-contact a:hover {
    background: var(--gold);
    transform: scale(1.1);
}

/* Instagram-Sektion */
.instagram-section {
    padding: 80px 0;
    background: var(--bg-warm);
    text-align: center;
}
.instagram-section h2 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 10px;
}
.instagram-section .lead {
    font-size: 1rem;
    color: var(--text-mid);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.instagram-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: transparent;
    color: var(--dark);
    border: 1px solid var(--gold);
    border-radius: 50px;
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
}
.instagram-follow-btn:hover {
    background: var(--gold);
    color: var(--white);
}
.instagram-follow-btn svg {
    width: 18px;
    height: 18px;
}

.cta-btn {
    display: inline-block;
    padding: 14px 36px;
    background: transparent;
    color: var(--dark);
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    transition: all 0.4s;
    border-radius: 50px;
}
.cta-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: rgba(30,26,22,0.97);
    color: var(--gold-light);
    z-index: 9999;
    padding: 14px 24px;
    font-size: 0.82rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.cookie-banner-content {
    max-width: 1100px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px;
}
.cookie-banner p { margin: 0; line-height: 1.5; flex: 1; }
.cookie-banner a { color: var(--gold); text-decoration: none; }
.cookie-banner a:hover { text-decoration: underline; }
.cookie-banner-buttons { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
    padding: 8px 20px; border: 1px solid var(--gold);
    background: var(--gold); color: #1e1a16; cursor: pointer;
    font-size: 0.72rem; letter-spacing: 1px; text-transform: uppercase;
    white-space: nowrap; transition: all 0.3s;
    font-family: inherit;
}
.cookie-btn-outline { background: transparent; color: var(--gold); }
.cookie-btn:hover { opacity: 0.85; }

/* Booking Overlay (slides in, nav stays visible) */
.booking-overlay {
    display: none;
    position: fixed;
    top: 80px; left: 0; right: 0; bottom: 0;
    z-index: 99;
    flex-direction: column;
    background: var(--white);
    animation: booking-slide 0.35s ease;
}
.booking-overlay.open {
    display: flex;
}
@keyframes booking-slide {
    from { transform: translateY(30px); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}
.booking-overlay-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 32px;
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-body);
}
.booking-overlay-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--dark);
    margin: 0;
}
.booking-close {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-mid);
    cursor: pointer;
    padding: 8px 16px;
    transition: color 0.2s;
    font-family: inherit;
}
.booking-close:hover {
    color: var(--dark);
}
.booking-close span {
    font-size: 1.6rem;
    line-height: 1;
}
.booking-overlay-body {
    flex: 1;
    display: flex;
}
.ew-frame-full {
    width: 100%;
    height: 100%;
    border: 0;
}
@media (max-width: 768px) {
    .booking-overlay {
        top: 60px;
    }
    .booking-overlay-header {
        padding: 14px 16px;
    }
    .booking-overlay-header h3 {
        font-size: 1rem;
    }
    .booking-close {
        font-size: 0.7rem;
        padding: 6px 12px;
    }
    .booking-close span {
        font-size: 1.3rem;
    }
}
@media (max-width: 768px) {
    nav .links {
        display: none;
        position: absolute; top: 100%; left: 0; right: 0;
        background: rgba(249,245,240,0.98);
        flex-direction: column;
        padding: 20px 28px;
        gap: 20px;
        border-bottom: 1px solid rgba(200,169,126,0.08);
    }
    nav .links.open { display: flex; }
    nav .links a::after { display: none; }
    .nav-cta { display: none; }
    .menu-toggle { display: block; }
    .mobile-sticky-cta { display: block; }
    body { padding-bottom: 60px; }
    .hero { min-height: 80vh; }
    .hero-bg { background-position: 65% center; }
    .hero-text h1 { font-size: 2.4rem; }
    .hero-actions { flex-direction: column; align-items: flex-start; gap: 16px; width: 100%; }
    .hero-text .btn {
        max-width: 100%;
        padding: 14px 24px;
        text-align: center;
        letter-spacing: 1.5px;
        white-space: normal;
    }
    .trust-bar .container { flex-direction: column; gap: 12px; align-items: center; }
    .trust-bar-item { padding: 0; }
    .trust-bar-divider { width: 40px; height: 1px; }
    .saeulen-grid { grid-template-columns: 1fr; }
    .saeule { padding: 36px 28px; }
    .finder-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .about-columns { grid-template-columns: 1fr; gap: 16px; }
    .team-card { flex-direction: column; align-items: center; text-align: center; }
    .testimonials-carousel { padding: 0 36px; }
    .testimonials-summary {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        padding: 32px 24px;
        gap: 14px;
    }
    .testimonial-card { flex: 0 0 100%; }
    .carousel-arrow { width: 36px; height: 36px; font-size: 1.1rem; }
    .ablauf-grid { flex-direction: column; align-items: center; gap: 24px; }
    .ablauf-arrow { transform: rotate(90deg); padding: 0; }
    .health-grid { grid-template-columns: 1fr; }
    .praxisraum-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    section { padding: 72px 0; }
    section h2 { font-size: 2rem; }
    .philosophie blockquote { font-size: 1.3rem; }
    .floating-contact { right: 16px; bottom: 80px; flex-direction: column; }
    .floating-contact a { width: 44px; height: 44px; }
    .persoenlich-grid { grid-template-columns: 1fr; text-align: center; max-width: 100%; }
    .persoenlich-photo { max-width: 160px; margin: 0 auto; }
    .cookie-banner-content { flex-direction: column; text-align: center; }
    .cookie-banner { padding: 12px 16px; }
}
