@font-face {
    font-family: "Crimson";
    src: url("fonts/CrimsonText-Bold.ttf");
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "Macondo";
    src: url("fonts/Macondo-Regular.ttf");
    font-weight: 400;
    font-display: swap;
}

/* ── Reset & Base ── */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 18px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    background: linear-gradient(175deg, #1c2f4b 0%, #2a2040 40%, #403252 100%);
    color: #e0ddd8;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #F6CBA1;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #fde0c2;
}

/* ── Navigation ── */

.nav-premium {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.4s, box-shadow 0.4s;
    text-align: left;
    hyphens: none;
}

.nav-premium.scrolled {
    background-color: rgba(28, 47, 75, 0.95);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.nav-logo img {
    height: 50px;
    width: auto;
    filter:
        brightness(1.3)
        drop-shadow(0 0 4px rgba(255, 255, 255, 1))
        drop-shadow(0 0 12px rgba(255, 255, 255, 0.9))
        drop-shadow(0 0 28px rgba(255, 255, 255, 0.6))
        drop-shadow(0 0 50px rgba(255, 255, 255, 0.35))
        drop-shadow(0 0 80px rgba(246, 204, 162, 0.25));
    transition: filter 0.3s;
}

.nav-logo img:hover {
    filter:
        brightness(1.5)
        drop-shadow(0 0 6px rgba(255, 255, 255, 1))
        drop-shadow(0 0 18px rgba(255, 255, 255, 1))
        drop-shadow(0 0 36px rgba(255, 255, 255, 0.7))
        drop-shadow(0 0 60px rgba(255, 255, 255, 0.4))
        drop-shadow(0 0 100px rgba(246, 204, 162, 0.3));
}

.nav-cta {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18rem;
    text-transform: uppercase;
    color: #F6CBA1;
    border: 1px solid rgba(246, 204, 162, 0.4);
    padding: 0.6rem 1.4rem;
    border-radius: 3px;
    transition: background-color 0.3s, border-color 0.3s;
    cursor: pointer;
    background: transparent;
}

.nav-cta:hover {
    background-color: rgba(246, 204, 162, 0.12);
    border-color: #F6CBA1;
    color: #F6CBA1;
}

/* ── Hero Banner (Vollbild-Einstieg) ── */

.hero-banner {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem 3rem;
}

.hero-banner.hero-banner-compact {
    min-height: auto;
    flex-direction: column;
    padding: 6rem 2rem 3rem;
    gap: 2rem;
}

.hero-banner-inner {
    max-width: 750px;
    width: 100%;
}

.hero-banner-compact .hero-banner-inner {
    max-width: 420px;
}

.hero-banner-compact .hero-koerper-text {
    text-align: center;
    align-self: center;
    margin-bottom: 0;
    font-size: 1.8rem;
}

.hero-banner-inner img {
    width: 100%;
    height: auto;
    opacity: 0.92;
}

/* ── Hero Körperpunkte ── */

.hero-koerper {
    padding: 4rem 2rem 6rem;
}

.hero-koerper .section-wrap {
    max-width: 780px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-koerper-svg {
    max-width: 220px;
    margin-bottom: 4rem;
    opacity: 0.85;
}

.hero-koerper-svg img {
    width: 100%;
    height: auto;
}

.hero-koerper-text {
    font-family: "Crimson", Georgia, "Times New Roman", serif;
    font-size: 2.2rem;
    line-height: 1.4;
    color: #ffffff;
    letter-spacing: -0.01em;
    margin-bottom: 2.5rem;
    text-align: left;
    hyphens: none;
    align-self: flex-start;
}

.hero-koerper-antwort {
    font-family: "Macondo", cursive;
    font-size: 1.4rem;
    color: #F6CBA1;
    text-align: left;
    hyphens: none;
    align-self: flex-start;
    opacity: 0;
    animation: fadeInSlow 2s ease-out 0.8s forwards;
}

.hero-koerper-aufforderung {
    font-family: "Macondo", cursive;
    font-size: 1.3rem;
    color: #c8c4be;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    text-align: left;
    hyphens: none;
    align-self: flex-start;
}

/* ── Jump Button (bottom-right) ── */

.jump-btn {
    position: fixed;
    bottom: 6rem;
    right: 1.5rem;
    z-index: 200;
    opacity: 0.6;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    cursor: pointer;
}

.jump-btn:hover {
    opacity: 1;
}

.jump-btn img {
    width: 42px;
    height: auto;
    pointer-events: none;
}

/* ── Section Wrapper ── */

.section-wrap {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* (Einstieg-Styles ersetzt durch Hero-Banner + Hero-Koerper) */

@keyframes fadeInSlow {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── 2. Das Problem ── */

.problem {
    padding: 8rem 2rem 6rem;
}

.problem .section-wrap {
    display: grid;
    grid-template-columns: 1fr 0.4fr;
    gap: 3rem;
}

.problem-text {
    max-width: 560px;
}

.problem-text h2 {
    font-family: "Crimson", Georgia, "Times New Roman", serif;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.3;
    text-align: left;
    hyphens: none;
}

.problem-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: #c8c4be;
}

.problem-whitespace {
    /* bewusster Leerraum */
}

/* ── 3. Was ist MyoKosmos ── */

.was-ist {
    padding: 6rem 2rem 8rem;
    background: rgba(246, 204, 162, 0.04);
}

.was-ist .section-wrap {
    max-width: 960px;
}

.was-ist-layout {
    max-width: 720px;
}

.grosse-aussage {
    font-family: "Crimson", Georgia, "Times New Roman", serif;
    font-size: 2.8rem;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
    text-align: left;
    hyphens: none;
}

.grosse-aussage em {
    font-style: normal;
    color: #F6CBA1;
}

.was-ist-erklaerung {
    max-width: 620px;
    margin-bottom: 3rem;
}

.was-ist-erklaerung p {
    font-size: 1.05rem;
    color: #c8c4be;
    margin-bottom: 1.2rem;
}

.zitat-block {
    border-left: 3px solid rgba(246, 204, 162, 0.35);
    padding: 1.5rem 0 1.5rem 2rem;
    margin: 3rem 0;
    max-width: 600px;
}

.zitat-block p {
    font-family: "Macondo", cursive;
    font-size: 1.35rem;
    color: #F6CBA1;
    line-height: 1.55;
    text-align: left;
    hyphens: none;
}

/* ── 4. Vier Saeulen ── */

.saeulen {
    padding: 6rem 2rem 8rem;
}

.saeulen .section-wrap {
    max-width: 920px;
}

.saeulen-titel {
    font-family: "Crimson", Georgia, "Times New Roman", serif;
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 4rem;
    text-align: left;
    hyphens: none;
}

.saeulen-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.saeule {
    padding: 2.5rem;
    position: relative;
}

.saeule:nth-child(1) {
    grid-column: 1;
    border-bottom: 1px solid rgba(246, 204, 162, 0.1);
    border-right: 1px solid rgba(246, 204, 162, 0.1);
}

.saeule:nth-child(2) {
    grid-column: 2;
    border-bottom: 1px solid rgba(246, 204, 162, 0.1);
}

.saeule:nth-child(3) {
    grid-column: 1;
    border-right: 1px solid rgba(246, 204, 162, 0.1);
}

.saeule:nth-child(4) {
    grid-column: 2;
}

.saeule-nummer {
    font-family: "Crimson", Georgia, "Times New Roman", serif;
    font-size: 3.5rem;
    color: rgba(246, 204, 162, 0.15);
    line-height: 1;
    margin-bottom: 0.8rem;
}

.saeule h3 {
    font-family: "Crimson", Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: left;
    hyphens: none;
}

.saeule-beispiel {
    font-family: "Macondo", cursive;
    font-size: 1.05rem;
    color: #F6CBA1;
    line-height: 1.6;
    opacity: 0.85;
    text-align: left;
    hyphens: none;
}

/* ── 5. Fuer wen ── */

.zielgruppe {
    padding: 6rem 2rem 8rem;
    background: rgba(246, 204, 162, 0.04);
}

.zielgruppe .section-wrap {
    max-width: 720px;
}

.zielgruppe h2 {
    font-family: "Crimson", Georgia, "Times New Roman", serif;
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
    line-height: 1.3;
    text-align: left;
    hyphens: none;
}

.zielgruppe-text {
    font-size: 1.1rem;
    line-height: 1.85;
    color: #c8c4be;
}

.zielgruppe-text strong {
    color: #ffffff;
    font-weight: 600;
}

/* ── 6. Programme / Preise ── */

.programme {
    padding: 8rem 2rem;
}

.programme .section-wrap {
    max-width: 1000px;
}

.programme-titel {
    font-family: "Crimson", Georgia, "Times New Roman", serif;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: left;
    hyphens: none;
}

.programme-untertitel {
    color: #9a9590;
    font-size: 0.95rem;
    margin-bottom: 4rem;
    max-width: 500px;
}

.programme-reihe {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

.programm-karte {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(246, 204, 162, 0.1);
    border-radius: 6px;
    padding: 2.5rem 2rem;
    transition: border-color 0.3s, transform 0.3s;
}

.programm-karte:hover {
    border-color: rgba(246, 204, 162, 0.3);
    transform: translateY(-4px);
}

/* mittlere Karte hervorgehoben */
.programm-karte.hervorgehoben {
    border-color: rgba(246, 204, 162, 0.35);
    background: rgba(246, 204, 162, 0.06);
    padding: 3rem 2rem;
}

.programm-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #9a9590;
    margin-bottom: 0.6rem;
    text-align: left;
    hyphens: none;
}

.programm-name {
    font-family: "Crimson", Georgia, "Times New Roman", serif;
    font-size: 1.7rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: left;
    hyphens: none;
}

.programm-preis {
    font-family: "Crimson", Georgia, "Times New Roman", serif;
    font-size: 2.4rem;
    color: #F6CBA1;
    margin-bottom: 0.3rem;
}

.programm-preis-info {
    font-size: 0.8rem;
    color: #9a9590;
    margin-bottom: 2rem;
}

.programm-features {
    list-style: none;
    margin-bottom: 2rem;
}

.programm-features li {
    padding: 0.5rem 0;
    font-size: 0.92rem;
    color: #c8c4be;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.programm-features li:last-child {
    border-bottom: none;
}

.programm-btn {
    display: block;
    width: 100%;
    text-align: center;
    hyphens: none;
    padding: 0.85rem 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.programm-btn-outline {
    color: #F6CBA1;
    border: 1px solid rgba(246, 204, 162, 0.4);
    background: transparent;
}

.programm-btn-outline:hover {
    background-color: rgba(246, 204, 162, 0.12);
    border-color: #F6CBA1;
    color: #F6CBA1;
}

.programm-btn-filled {
    color: #2a2040;
    background-color: #F6CBA1;
    border: 1px solid #F6CBA1;
}

.programm-btn-filled:hover {
    background-color: #fde0c2;
    border-color: #fde0c2;
    color: #2a2040;
}

/* ── 7. Warteliste ── */

.warteliste {
    padding: 8rem 2rem;
    background: rgba(246, 204, 162, 0.04);
}

.warteliste .section-wrap {
    max-width: 700px;
    text-align: center;
    hyphens: none;
}

.warteliste h2 {
    font-family: "Crimson", Georgia, "Times New Roman", serif;
    font-size: 2.4rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    hyphens: none;
}

.warteliste-info {
    font-size: 1.05rem;
    color: #c8c4be;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.warteliste-fruehbucher {
    font-family: "Macondo", cursive;
    font-size: 1.1rem;
    color: #F6CBA1;
    margin-bottom: 2.5rem;
    hyphens: none;
}

.warteliste-hinweis {
    font-size: 0.82rem;
    color: #9a9590;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

.warteliste-link {
    color: #F6CBA1;
    border-bottom: 1px solid rgba(246, 204, 162, 0.3);
    transition: border-color 0.3s;
}

.warteliste-link:hover {
    border-bottom-color: #F6CBA1;
}

.warteliste-cta {
    display: inline-block;
    padding: 1.1rem 3rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #2a2040;
    background-color: #F6CBA1;
    border: 1px solid #F6CBA1;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.15s;
}

.warteliste-cta:hover {
    background-color: #fde0c2;
    color: #2a2040;
    transform: translateY(-2px);
}

/* ── Sektions-CTA (kleiner, subtiler) ── */

.section-cta-wrap {
    text-align: center;
    margin-top: 3rem;
}

.section-cta {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #F6CBA1;
    background-color: transparent;
    border: 1px solid rgba(246, 204, 162, 0.4);
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s, transform 0.15s;
    hyphens: none;
}

.section-cta:hover {
    background-color: rgba(246, 204, 162, 0.1);
    border-color: #F6CBA1;
    transform: translateY(-2px);
}

/* ── Medizinischer Hinweis ── */

.medizin-hinweis {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem 2rem 0;
    font-size: 0.78rem;
    color: #7a7570;
    line-height: 1.6;
    text-align: center;
    hyphens: none;
}

/* ── 8. Footer ── */

.footer-premium {
    padding: 3rem 2rem 6rem;
    border-top: 1px solid rgba(246, 204, 162, 0.08);
    margin-bottom: 4rem;
    text-align: left;
    hyphens: none;
}

.footer-premium .section-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.8rem;
    color: #e8e6e2;
}

.footer-links {
    display: flex;
    gap: 1.8rem;
}

.footer-links a {
    font-size: 0.8rem;
    color: #f0eeea;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #F6CBA1;
}

/* ── Sternen-Trenner ── */

.stars-divider {
    max-width: 200px;
    margin: 0 auto;
    padding: 1rem 0;
    opacity: 0.3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stars-divider img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* ── Deko-Sterne (in Sektionen) ── */

.deko-stars {
    width: 100%;
    opacity: 0.15;
    margin-top: 2rem;
}

/* ── Erfahrungen / Testimonials ── */

.erfahrungen {
    padding: 6rem 2rem 4rem;
    background: rgba(246, 204, 162, 0.04);
}

.erfahrungen .section-wrap {
    max-width: 800px;
}

.erfahrungen-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #9a9590;
    margin-bottom: 3rem;
    text-align: left;
    hyphens: none;
}

.erfahrungen-liste {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.erfahrung {
    border-left: 2px solid rgba(246, 204, 162, 0.2);
    padding: 0 0 0 1.5rem;
    margin: 0;
}

.erfahrung p {
    font-family: "Macondo", cursive;
    font-size: 1.05rem;
    color: #c8c4be;
    line-height: 1.65;
    text-align: left;
    hyphens: none;
}

.erfahrung cite {
    display: block;
    margin-top: 0.8rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-style: normal;
    font-size: 0.8rem;
    color: #9a9590;
    letter-spacing: 0.05em;
}

/* ── Kursbeispiel ── */

.kursbeispiel {
    padding: 6rem 2rem 8rem;
}

.kursbeispiel .section-wrap {
    max-width: 860px;
}

.kursbeispiel-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #9a9590;
    margin-bottom: 1rem;
    text-align: left;
    hyphens: none;
}

.kursbeispiel-titel {
    font-family: "Crimson", Georgia, "Times New Roman", serif;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    text-align: left;
    hyphens: none;
}

.kursbeispiel-intro {
    font-size: 1rem;
    color: #c8c4be;
    line-height: 1.6;
    margin-bottom: 3rem;
    text-align: left;
}

.kursbeispiel-ablauf {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.kursbeispiel-schritt {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(246, 204, 162, 0.08);
}

.kursbeispiel-schritt:last-child {
    border-bottom: none;
}

.schritt-zeit {
    font-family: "Macondo", cursive;
    font-size: 0.9rem;
    color: #F6CBA1;
    opacity: 0.7;
    text-align: left;
    hyphens: none;
}

.kursbeispiel-schritt h3 {
    font-family: "Crimson", Georgia, "Times New Roman", serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin: 0.4rem 0 0.6rem;
    text-align: left;
    hyphens: none;
}

.kursbeispiel-schritt p {
    font-size: 0.95rem;
    color: #c8c4be;
    line-height: 1.7;
    max-width: 600px;
}

/* ── Über mich ── */

.ueber-mich {
    padding: 6rem 2rem 8rem;
    background: rgba(246, 204, 162, 0.04);
}

.ueber-mich-layout {
    display: grid;
    grid-template-columns: 0.4fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 900px;
}

.bild-platzhalter {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
}

.bild-platzhalter img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    opacity: 0.85;
}

.ueber-mich-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #9a9590;
    margin-bottom: 0.6rem;
    text-align: left;
    hyphens: none;
}

.ueber-mich-text h2 {
    font-family: "Crimson", Georgia, "Times New Roman", serif;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    text-align: left;
    hyphens: none;
}

.ueber-mich-text p {
    font-size: 1rem;
    color: #c8c4be;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.ueber-mich-einladung {
    font-family: "Macondo", cursive;
    color: #F6CBA1;
    text-align: left;
    hyphens: none;
}

/* ── DSGVO-Hinweis ── */

.dsgvo-hinweis {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 95;
    background: rgba(28, 47, 75, 0.97);
    border-top: 1px solid rgba(246, 204, 162, 0.15);
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.dsgvo-hinweis p {
    font-size: 0.8rem;
    color: #c8c4be;
    margin: 0;
}

.dsgvo-hinweis a {
    color: #F6CBA1;
}

.dsgvo-ok {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #2a2040;
    background: #F6CBA1;
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s;
    white-space: nowrap;
}

.dsgvo-ok:hover {
    background: #fde0c2;
}

/* ── Rechtliche Seiten (footer.html) ── */

.legal-section {
    padding: 4rem 2rem 2rem;
}

.legal-section:first-of-type {
    padding-top: 7rem;
}

.legal-section .section-wrap {
    max-width: 780px;
}

.legal-section h1 {
    font-family: "Crimson", Georgia, "Times New Roman", serif;
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.3;
    text-align: left;
    hyphens: none;
}

.legal-section h2 {
    font-family: "Crimson", Georgia, "Times New Roman", serif;
    font-size: 1.5rem;
    color: #ffffff;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    text-align: left;
    hyphens: none;
}

.legal-section h3 {
    font-family: "Crimson", Georgia, "Times New Roman", serif;
    font-size: 1.2rem;
    color: #F6CBA1;
    margin-top: 2rem;
    margin-bottom: 0.6rem;
    text-align: left;
    hyphens: none;
}

.legal-section h4 {
    font-size: 1rem;
    color: #e0ddd8;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-align: left;
    hyphens: none;
}

.legal-section p {
    font-size: 0.92rem;
    color: #c8c4be;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

.legal-section ul li {
    font-size: 0.92rem;
    color: #c8c4be;
    line-height: 1.7;
    padding: 0.4rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.legal-section ul li::before {
    content: "\2013";
    position: absolute;
    left: 0;
    color: #F6CBA1;
    opacity: 0.5;
}

.legal-section a {
    color: #F6CBA1;
    text-decoration: underline;
    text-decoration-color: rgba(246, 204, 162, 0.3);
    text-underline-offset: 2px;
}

.legal-section a:hover {
    text-decoration-color: #F6CBA1;
}

.legal-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 4px;
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* ── Responsive: Tablet (max 900px) ── */

@media (max-width: 900px) {
    html {
        font-size: 16px;
    }

    .hero-banner {
        min-height: 70vh;
        padding: 5rem 1.5rem 2rem;
    }

    .hero-banner.hero-banner-compact {
        min-height: auto;
        padding: 5rem 1.5rem 2rem;
    }

    .hero-banner-inner {
        max-width: 600px;
    }

    .hero-banner-compact .hero-banner-inner {
        max-width: 340px;
    }

    .hero-koerper-text {
        font-size: 1.8rem;
    }

    .hero-koerper-antwort {
        font-size: 1.2rem;
    }

    .problem .section-wrap {
        grid-template-columns: 1fr;
    }

    .problem-whitespace {
        display: none;
    }

    .grosse-aussage {
        font-size: 2.2rem;
    }


    .saeulen-grid {
        grid-template-columns: 1fr;
    }

    .saeule:nth-child(1),
    .saeule:nth-child(2),
    .saeule:nth-child(3),
    .saeule:nth-child(4) {
        grid-column: 1;
        border-right: none;
        border-bottom: 1px solid rgba(246, 204, 162, 0.08);
        padding-top: 2.5rem;
    }

    .saeule:nth-child(4) {
        border-bottom: none;
    }

    .programme-reihe {
        grid-template-columns: 1fr 1fr;
    }

    .programm-karte:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 50%;
        justify-self: center;
    }

    .ueber-mich-layout {
        grid-template-columns: 0.35fr 1fr;
        gap: 2rem;
    }

    .warteliste h2 {
        font-size: 2rem;
    }
}

/* ── Responsive: Mobile (max 600px) ── */

@media (max-width: 600px) {

    /* Base */
    html {
        font-size: 15px;
    }

    .section-wrap {
        padding: 0 1.2rem;
    }

    /* Navigation */
    .nav-premium {
        padding: 0.7rem 1rem;
    }

    .nav-logo img {
        height: 36px;
    }

    .nav-cta {
        font-size: 0.65rem;
        padding: 0.55rem 1rem;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    /* Jump-Button: ueber DSGVO-Banner positionieren */
    .jump-btn {
        bottom: 7rem;
        right: 1rem;
        width: 48px;
        height: 48px;
    }

    .jump-btn img {
        width: 36px;
    }

    /* 1. Hero Banner */
    .hero-banner {
        min-height: 60vh;
        padding: 4rem 1rem 2rem;
    }

    .hero-banner.hero-banner-compact {
        min-height: auto;
        padding: 4.5rem 1rem 2rem;
    }

    .hero-banner-inner {
        max-width: 100%;
    }

    .hero-banner-compact .hero-banner-inner {
        max-width: 280px;
    }

    /* 2. Hero Körperpunkte */
    .hero-koerper {
        padding: 2.5rem 0 3.5rem;
    }

    .hero-koerper-svg {
        max-width: 140px;
        margin-bottom: 2.5rem;
        opacity: 0.6;
    }

    .hero-koerper-text {
        font-size: 1.45rem;
        margin-bottom: 1.8rem;
    }

    .hero-koerper-aufforderung {
        font-size: 1.05rem;
        margin-bottom: 1.8rem;
    }

    .hero-koerper-antwort {
        font-size: 1rem;
    }

    /* 2. Problem */
    .problem {
        padding: 3.5rem 0;
    }

    .problem .section-wrap {
        grid-template-columns: 1fr;
    }

    .problem-whitespace {
        display: none;
    }

    .problem-text {
        max-width: 100%;
    }

    .problem-text h2 {
        font-size: 1.45rem;
        margin-bottom: 1.5rem;
    }

    .problem-text p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }

    /* Sternen-Trenner */
    .stars-divider {
        max-width: 140px;
        padding: 0.6rem 0;
    }

    /* 3. Was ist */
    .was-ist {
        padding: 3.5rem 0 4rem;
    }

    .grosse-aussage {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

    .was-ist-erklaerung {
        margin-bottom: 2rem;
    }

    .was-ist-erklaerung p {
        font-size: 0.95rem;
    }

    .zitat-block {
        padding: 1rem 0 1rem 1.2rem;
        margin: 2rem 0;
    }

    .zitat-block p {
        font-size: 1.05rem;
    }

    /* 4. Saeulen */
    .saeulen {
        padding: 3.5rem 0 4rem;
    }

    .saeulen-titel {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
    }

    .saeulen-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .saeule:nth-child(1),
    .saeule:nth-child(2),
    .saeule:nth-child(3),
    .saeule:nth-child(4) {
        padding: 1.8rem 1.2rem;
        grid-column: 1;
        border-right: none;
        border-bottom: 1px solid rgba(246, 204, 162, 0.08);
    }

    .saeule:nth-child(4) {
        border-bottom: none;
    }

    .saeule-nummer {
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
    }

    .saeule h3 {
        font-size: 1.25rem;
        margin-bottom: 0.6rem;
    }

    .saeule-beispiel {
        font-size: 0.95rem;
    }

    /* Erfahrungen */
    .erfahrungen {
        padding: 3rem 0;
    }

    .erfahrungen-label {
        margin-bottom: 2rem;
    }

    .erfahrungen-liste {
        gap: 1.5rem;
    }

    .erfahrung p {
        font-size: 0.95rem;
    }

    /* Kursbeispiel */
    .kursbeispiel {
        padding: 3.5rem 0 4rem;
    }

    .kursbeispiel-label {
        font-size: 0.65rem;
    }

    .kursbeispiel-titel {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }

    .kursbeispiel-schritt {
        padding: 1.4rem 0;
    }

    .kursbeispiel-schritt h3 {
        font-size: 1.15rem;
    }

    .kursbeispiel-schritt p {
        font-size: 0.9rem;
    }

    /* 5. Zielgruppe */
    .zielgruppe {
        padding: 3.5rem 0 4rem;
    }

    .zielgruppe h2 {
        font-size: 1.5rem;
        margin-bottom: 1.8rem;
    }

    .zielgruppe-text {
        font-size: 0.98rem;
        line-height: 1.75;
    }

    /* Ueber mich */
    .ueber-mich {
        padding: 3.5rem 0 4rem;
    }

    .ueber-mich-layout {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .bild-platzhalter {
        max-width: 160px;
        margin: 0 auto;
    }

    .ueber-mich-text h2 {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }

    .ueber-mich-text p {
        font-size: 0.93rem;
        text-align: left;
    }

    /* 6. Programme */
    .programme {
        padding: 3.5rem 0 4rem;
    }

    .programme-titel {
        font-size: 1.5rem;
    }

    .programme-untertitel {
        font-size: 0.85rem;
        margin-bottom: 2.5rem;
    }

    .programme-reihe {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .programm-karte {
        padding: 2rem 1.5rem;
    }

    .programm-karte:nth-child(3) {
        max-width: 100%;
    }

    .programm-karte.hervorgehoben {
        padding: 2.2rem 1.5rem;
    }

    .programm-karte:hover {
        transform: none;
    }

    .programm-name {
        font-size: 1.5rem;
    }

    .programm-preis {
        font-size: 2rem;
    }

    .programm-features li {
        font-size: 0.88rem;
    }

    .programm-btn {
        padding: 0.9rem 1.5rem;
        min-height: 48px;
        font-size: 0.75rem;
    }

    /* 7. Warteliste */
    .warteliste {
        padding: 3.5rem 0 4rem;
    }

    .warteliste h2 {
        font-size: 1.5rem;
    }

    .warteliste-info {
        font-size: 0.93rem;
    }

    .warteliste-hinweis {
        font-size: 0.8rem;
        margin-bottom: 2rem;
    }

    .warteliste-cta {
        display: block;
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 0.78rem;
        min-height: 48px;
        text-align: center;
    }

    .section-cta {
        padding: 0.7rem 1.5rem;
        font-size: 0.65rem;
        min-height: 44px;
    }

    /* 8. Footer */
    .footer-premium {
        padding: 2.5rem 0 5rem;
        margin-bottom: 4rem;
    }

    .footer-premium .section-wrap {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .footer-links {
        gap: 1.2rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-links a {
        font-size: 0.85rem;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    /* DSGVO */
    .dsgvo-hinweis {
        flex-direction: column;
        text-align: center;
        gap: 0.7rem;
        padding: 0.8rem 1rem;
    }

    .dsgvo-hinweis p {
        font-size: 0.72rem;
        line-height: 1.5;
    }

    .dsgvo-ok {
        min-height: 44px;
        padding: 0.5rem 1.5rem;
        width: 100%;
    }
}

/* ── Responsive: Sehr kleine Handys (max 380px) ── */

@media (max-width: 380px) {
    html {
        font-size: 14px;
    }

    .nav-logo img {
        height: 30px;
    }

    .nav-cta {
        font-size: 0.6rem;
        padding: 0.5rem 0.8rem;
        letter-spacing: 0.12rem;
    }

    .hero-koerper-text {
        font-size: 1.25rem;
    }

    .grosse-aussage {
        font-size: 1.4rem;
    }

    .programme-titel {
        font-size: 1.3rem;
    }

    .warteliste h2 {
        font-size: 1.3rem;
    }

    .programm-preis {
        font-size: 1.8rem;
    }
}

/* ── Responsive: Grosser Desktop (min 1200px) ── */

@media (min-width: 1200px) {
    html {
        font-size: 19px;
    }

    .hero-koerper-text {
        font-size: 2.6rem;
    }

    .grosse-aussage {
        font-size: 3.2rem;
    }
}
