/* MASTER STYLESHEET v3.7.4
   v3.7.4 | Revert: Startseite Hero zurück auf webseiteschulter.jpg
   v3.7.3 | Fix: termin-hero 55vh, schmaler Gradient
   v3.7.3 | Fix: termin-hero 55vh, schmaler Gradient
   v3.7.2 | Fix: Horizontaler Gradient verstärkt (52/60/68/78%)
   v3.7.1 | Fix: Vertikaler Gradient von oben ergänzt
   v3.7.0 | Fix: Gradient Cream bis 48%
   v3.6.9 | Fix: Gradient 4-stufig (38/50/60/72%)
   v3.6.8 | Fix: Gradient zurück, maps-grid vor Media Query
   v3.6.7 | Fix: Gradient entfernt, Kontakt-Grid mobil
   v3.6.6 | Fix: Kontakt Bild → Josephine-winkel.jpg, about-pill wiederhergestellt
   v3.6.3 | Fix: Über-mich Hero wie Kontakt – 55vh, gleicher Gradient, about-pill
   v3.6.2 | Fix: Kontakt Hero Gradient 40/52/65%
   v3.6.1 | Fix: Kontakt Hero Pill-Box nicht mehr unten klebend
   v3.6.0 | Feature: Kontakt Hero – Pill-Box wie Über-mich
   v3.5.9 | Fix: Kontakt Hero 55vh, flex-end
   v3.5.8 | Fix: Kontakt Hero-Bild am Container-Rand ausgerichtet
   v3.5.7 | Fix: Über-mich Hero-Bild am Container-Rand ausgerichtet
   v3.5.6 | Fix: Über-mich Gradient weiter nach rechts
   v3.5.5 | Fix: Über-mich Gradient an auto 100% Bildbreite angepasst
   v3.5.4 | Fix: Über-mich Hero-Bild volle Höhe (auto 100%)
   v3.5.3 | Fix: Startseite Hero-Bild volle Höhe
   v3.5.2 | Fix: overflow-wrap/word-break – kein Text-Überlauf auf Mobil
   v3.5.1 | Fix: Globaler Link-Reset
   v3.5.0 | SEO/GenAI: JSON-LD Schema, OG:image, Canonical, sitemap.xml, robots.txt
   v3.4.0 | Feature: lokale Fonts (@font-face), Kontaktschutz (JS), Footer-Link Praxen, Google Fonts entfernt
   v3.3.0 | Feature: impressum.html

   v3.2.6 | Bugfix: Map-Styles aus Media Query herausgezogen
   v3.2.5 | Fix: map-card weiße Box mit Shadow
   v3.2.4 | Fix: kontakt.html Standorte-Cards mit Nummer, Header, Route-Link
   v3.2.3 | Fix: kontakt.html Mitte Adresse Bergstraße 27
   v3.2.2 | Feature: kontakt.html Maps mit Datenschutz-Overlay
   v3.2.1 | Fix: kontakt.html auf eine Box reduziert
   v3.2.0 | Feature: kontakt.html – Hero, Kontaktdaten, Standorte
   v3.1.0 | Feature: termin.html – Hero, Ablauf, Zeiten, Kosten, CTA
   v3.0.0 | Release: Stabiler Stand aller Seiten – Backup
   --------------------------------------------------------
   Änderungen seit v2.1.9:
   – Abstandssystem: Desktop 80px/40px, Mobil 60px/30px
   – Mobil Farbrhythmus: Bild → Cream → Grau → Weiß
   – Impressionen-Sektion Startseite (3 Bilder, quadratisch)
   – Anwendung: Kreisbilder 420px Desktop / 300px Mobil, Safari-Fix
   – Osteopathie: Blocksatz mit hyphens auf Desktop
   – Über-mich: Frosted Pill border-radius 12px, top right, Flex-Fix
   – Navigation: Impressum & Datenschutz auf allen Seiten
   – SEO Meta-Tags, Favicon, Skip-Links, Barrierefreiheit
*/

/* --- Lokale Schriften (@font-face) --- */
@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

:root {
    --sage: #5D706F;
    --tile-bg: #BCC8CB;
    --accent-color: #b28a52;
    --cream: #F9F7F2;
    --anthracite: #2C2C2C;
    --white: #FFFFFF;
    --line-color: rgba(44, 44, 44, 0.1);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --container-width: 1200px;
    --space-lg: 80px;
    --space-md: 40px;
}

/* Barrierefreiheit: visuell versteckt aber für Screenreader/SEO sichtbar */
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* --- Basis --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { background-color: var(--cream); color: var(--anthracite); font-family: var(--font-body); line-height: 1.7; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
/* Globaler Link-Reset: keine blauen Browser-Links */
a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent-color); }
/* Langer Text (URLs, E-Mails) bricht immer um, nie über Container hinaus */
p, li, a, span, td { overflow-wrap: break-word; word-break: break-word; }
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 40px; }

/* --- Navigation & Header --- */
header { width: 100%; background-color: var(--cream); padding: 25px 0; border-bottom: 1px solid var(--line-color); position: relative; z-index: 1000; }
nav { display: flex; align-items: center; justify-content: space-between; }
.logo-wrapper img { height: 55px; display: block; }
.nav-links { display: flex; gap: 30px; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; color: var(--anthracite); font-weight: 500; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; transition: color 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--sage); }
.nav-meta a { opacity: 0.6; font-size: 0.7rem; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--accent-color); outline-offset: 3px; border-radius: 2px; }
.skip-link { position: absolute; top: -40px; left: 0; background: var(--accent-color); color: var(--white); padding: 8px 16px; z-index: 9999; font-size: 0.85rem; transition: top 0.2s; }
.skip-link:focus { top: 0; }
.nav-toggle { display: none; }
.nav-toggle-label { display: none; cursor: pointer; padding: 10px; }
.nav-toggle-label span, .nav-toggle-label span::before, .nav-toggle-label span::after { display: block; background: var(--sage); height: 2px; width: 25px; position: relative; transition: all 0.3s ease; }
.nav-toggle-label span::before, .nav-toggle-label span::after { content: ''; position: absolute; }
.nav-toggle-label span::before { bottom: 8px; }
.nav-toggle-label span::after { top: 8px; }

/* --- Sektionen --- */
section { padding: var(--space-lg) 0; border-bottom: 1px solid var(--line-color); }
.label { color: var(--accent-color); font-weight: 600; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 0.3em; margin-bottom: 35px; display: block; }
.intro-text { font-size: 1.25rem; font-weight: 300; line-height: 1.8; color: var(--anthracite); max-width: 820px; margin-top: 20px; }
.page-header { padding: var(--space-lg) 0 var(--space-md); }
.page-header h1, .page-header h2 { margin-bottom: 25px; font-family: var(--font-heading); font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--sage); font-weight: 600; line-height: 1.2; }
.page-header h2 { font-family: var(--font-heading); font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--sage); font-weight: 600; line-height: 1.2; }

/* --- Typografie --- */
h1 { font-family: var(--font-heading); font-size: clamp(2.2rem, 5vw, 3.5rem); color: var(--sage); margin-bottom: 30px; line-height: 1.15; font-weight: 600; }
.hero-sub { font-size: 1.25rem; font-weight: 300; margin-bottom: 50px; }
.btn-cta { padding: 20px 50px; background-color: var(--accent-color); color: var(--white); text-decoration: none; font-weight: 600; letter-spacing: 0.1em; border-radius: 2px; transition: 0.3s; display: inline-block; font-size: 0.9rem; text-transform: uppercase; border: none; cursor: pointer; }
.btn-cta:hover { background-color: var(--anthracite); transform: translateY(-3px); }

/* --- Startseite Hero --- */
.hero-wrapper {
    height: 85vh; width: 100%; display: flex; align-items: center; border-bottom: 1px solid var(--line-color);
    background: linear-gradient(to right, var(--cream) 35%, rgba(249,247,242,0) 75%), url('../images/webseiteschulter.jpg') right center / auto 100% no-repeat;
}
/* Container in Flex-Hero immer volle Breite */
.hero-wrapper > .container { width: 100%; }
.hero-image-mobile { display: none; }
.hero-content { max-width: 700px; position: relative; z-index: 10; }

/* --- Über-mich Hero --- */
.about-hero {
    height: 55vh;
    align-items: flex-end;
    padding-bottom: var(--space-lg);
    background-color: var(--cream);
    background-image: linear-gradient(to right, var(--cream) 52%, rgba(249,247,242,0.99) 60%, rgba(249,247,242,0.7) 68%, rgba(249,247,242,0) 78%), url('../images/Josephine-winkel.jpg');
    background-position: center, right max(40px, calc((100vw - 1200px) / 2)) top;
    background-size: auto, auto 100%;
    background-repeat: no-repeat, no-repeat;
}
.about-hero h1 { color: var(--sage) !important; }
.about-hero .hero-sub { color: var(--anthracite) !important; font-weight: 500; }

/* --- Osteopathie Hero --- */
.quote-hero-clean {
    height: 65vh; display: flex; align-items: center; justify-content: center; text-align: center; border-bottom: none; padding: 0 !important;
    background: linear-gradient(rgba(44,44,44,0.45), rgba(44,44,44,0.45)), url('../images/osteopathie_Prinzipien.jpg') center / cover no-repeat;
}
.quote-overlay { max-width: 950px; padding: 0 40px; }
.image-quote { font-family: var(--font-heading); font-size: clamp(2rem, 4.5vw, 3rem); color: var(--white); font-style: italic; line-height: 1.3; margin-bottom: 35px; text-shadow: 2px 4px 15px rgba(0,0,0,0.4); }
.image-author { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.25em; color: var(--cream); display: block; opacity: 0.95; }

/* --- Anwendung --- */
.application-grid-section { background-color: var(--tile-bg); padding: var(--space-md) 0 var(--space-lg); border-bottom: none; }
.app-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); gap: 250px var(--space-md); margin-top: 210px; }
.app-card { background-color: var(--accent-color); border: none; padding: 250px 45px 60px; position: relative; text-align: center; border-radius: 15px; box-shadow: 0 20px 45px rgba(0,0,0,0.15); transition: transform 0.4s ease; }
.app-card:hover { transform: translateY(-12px); }
.app-image-circle { width: 420px; height: 420px; border-radius: 50%; background-color: var(--cream); position: absolute; top: -210px; left: 50%; transform: translateX(-50%); overflow: hidden; border: 5px solid var(--tile-bg); box-shadow: 0 12px 30px rgba(0,0,0,0.2); }
.app-image-circle img { width: 100%; height: 100%; object-fit: cover; }
.app-card h3 { font-family: var(--font-heading); color: var(--white); font-size: 1.8rem; margin-bottom: 35px; }
.app-list { list-style: none; padding: 0; text-align: left; }
.app-list li { font-size: 1rem; color: var(--white); line-height: 1.6; margin-bottom: 18px; padding-left: 28px; position: relative; }
.app-list li::before { content: ""; position: absolute; left: 0; top: 11px; width: 7px; height: 7px; background-color: rgba(255,255,255,0.5); border-radius: 50%; }
.app-cta-box { margin-top: var(--space-md); text-align: center; padding: 90px 40px; background-color: var(--white); border-radius: 15px; }
.app-cta-box p { font-family: var(--font-heading); font-size: 2rem; color: var(--sage); margin-bottom: var(--space-md); }

/* --- Kontakt-Seite --- */
.kontakt-hero {
    height: 55vh;
    align-items: flex-end;
    padding-bottom: var(--space-lg);
    background-color: var(--cream);
    background-image: linear-gradient(to right, var(--cream) 52%, rgba(249,247,242,0.99) 60%, rgba(249,247,242,0.7) 68%, rgba(249,247,242,0) 78%), url('../images/Josephine-winkel.jpg');
    background-position: center, right max(40px, calc((100vw - 1200px) / 2)) top;
    background-size: auto, auto 100%;
    background-repeat: no-repeat, no-repeat;
}
.kontakt-hero-mobile { background: url('../images/Josephine-winkel.jpg') center / cover !important; }

/* Pill im Kontakt-Hero – analog about-pill */
.about-pill,
.kontakt-pill {
    display: inline-block;
    background: rgba(255,255,255,0.78);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 36px 44px;
    border-radius: 12px;
    text-align: center;
}
.about-pill h1, .kontakt-pill h1 { color: var(--sage); white-space: nowrap; margin-bottom: 20px; }
.about-pill .hero-sub, .kontakt-pill .hero-sub { color: var(--anthracite); font-weight: 500; margin-bottom: 35px; }

.kontakt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.25);
}
.kontakt-block { display: flex; flex-direction: column; gap: 10px; }
.kontakt-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
}
.kontakt-value {
    font-size: 1.05rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    transition: opacity 0.2s;
    line-height: 1.5;
}
.kontakt-value:hover { opacity: 0.75; }

.standorte-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 10px;
}
.standort-card { position: relative; padding-left: 0; }
.standort-nummer {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--tile-bg);
    line-height: 1;
    margin-bottom: 15px;
}
.standort-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--sage);
    margin-bottom: 15px;
}
.standort-card p {
    font-size: 1rem;
    color: var(--anthracite);
    line-height: 1.8;
    margin-bottom: 25px;
}
.standort-link {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.2s;
}
.standort-link:hover { color: var(--anthracite); }

/* --- Termin-Seite --- */
.termin-hero {
    height: 55vh;
    align-items: flex-end;
    padding-bottom: var(--space-lg);
    background: linear-gradient(to right, var(--cream) 25%, rgba(249,247,242,0.6) 38%, rgba(249,247,242,0) 50%),
                url('../images/Termin.jpg') center / cover no-repeat;
}
.termin-hero-mobile { background: url('../images/Termin.jpg') center / cover !important; }

/* Zeiten-Block in goldener Box */
.termin-zeiten {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.25);
}
.termin-zeit-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.termin-zeit-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}
.termin-zeit-dauer {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--white);
}

/* Kosten-Grid in weißer Box */
.termin-kosten-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 10px;
}
.termin-kosten-block h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--sage);
    margin-bottom: 20px;
}
.termin-kosten-block p {
    font-size: 1rem;
    color: var(--anthracite);
    line-height: 1.8;
}

/* --- Impressionen (Startseite) --- */
.impressions-section { padding: var(--space-md) 0 var(--space-lg); border-bottom: none; }
.impressions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: var(--container-width); margin: 0 auto; padding: 0 40px; }
.impression-item { overflow: hidden; aspect-ratio: 1 / 1; border-radius: 8px; }
.impression-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.impression-item:hover img { transform: scale(1.04); }

/* --- Über-mich Seite --- */
.about-section { padding: var(--space-md) 0 var(--space-lg); }
.content-box-gold { background-color: var(--accent-color); padding: 90px 80px; border-radius: 15px; box-shadow: 0 25px 60px rgba(0,0,0,0.2); margin-bottom: var(--space-md); }
.content-box-white { background-color: var(--white); padding: 90px 80px; border-radius: 15px; box-shadow: 0 10px 40px rgba(0,0,0,0.05); }
.principles-title { font-family: var(--font-heading); color: var(--white); font-size: 3rem; margin-bottom: 70px; border-bottom: 1px solid rgba(255,255,255,0.25); padding-bottom: 30px; }
.content-box-white .principles-title { color: var(--sage); border-bottom-color: var(--line-color); }
.content-box-gold .about-title { border-bottom: none; padding-bottom: 0; margin-bottom: 50px; font-size: 2.8rem; }
.principles-list { display: flex; flex-direction: column; gap: 70px; }
.principle-item { display: flex; gap: 50px; align-items: flex-start; }
.principle-number { font-family: var(--font-heading); font-size: 4.5rem; color: var(--cream); opacity: 0.4; line-height: 1; width: 70px; flex-shrink: 0; }
.principle-text h3 { font-family: var(--font-heading); color: var(--white); font-size: 2rem; margin-bottom: 20px; }
.principle-text p { font-size: 1.1rem; color: rgba(255,255,255,0.92); line-height: 1.8; text-align: justify; hyphens: auto; -webkit-hyphens: auto; }

/* --- Qualifikations-Liste --- */
.qual-list { list-style: none; padding: 0; text-align: left; }
.qual-list li { font-size: 1rem; color: var(--anthracite); line-height: 1.6; margin-bottom: 15px; padding-left: 30px; position: relative; border-bottom: 1px solid var(--line-color); padding-bottom: 15px; }
.qual-list li:last-child { border-bottom: none; }
.qual-list li::before { content: "•"; position: absolute; left: 0; color: var(--accent-color); font-size: 1.5rem; line-height: 1; top: 2px; }

/* --- Footer --- */
.site-footer { padding: var(--space-lg) 0 50px; background-color: var(--cream); border-top: 1px solid var(--line-color); }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 80px; }
.footer-column h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.25em; color: var(--accent-color); margin-bottom: 25px; font-weight: 600; border-bottom: 1px solid var(--line-color); padding-bottom: 12px; }
.footer-content p, .footer-content a { font-size: 0.95rem; color: var(--anthracite); text-decoration: none; display: block; margin-bottom: 10px; }
.footer-content a:hover { color: var(--accent-color); }
.footer-bottom { margin-top: var(--space-md); padding-top: 30px; border-top: 1px solid var(--line-color); display: flex; justify-content: space-between; align-items: center; }
.footer-legal-links { font-size: 0.85rem; }
.footer-legal-links a { color: var(--anthracite); text-decoration: none; opacity: 0.6; transition: opacity 0.2s; }
.footer-legal-links a:hover { opacity: 1; color: var(--accent-color); }
.copyright { font-size: 0.85rem; color: var(--anthracite); opacity: 0.5; }

/* --- Maps (Kontakt-Seite) --- */
.maps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; }
.map-card { background: var(--white); border-radius: 15px; padding: 40px; box-shadow: 0 10px 40px rgba(0,0,0,0.05); }
.map-card-header { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; }
.map-card-nummer { font-family: var(--font-heading); font-size: 3rem; color: var(--tile-bg); line-height: 1; flex-shrink: 0; }
.map-card h3 { font-family: var(--font-heading); font-size: 1.6rem; color: var(--sage); margin-bottom: 4px; }
.map-address { font-size: 0.9rem; color: var(--anthracite); opacity: 0.6; line-height: 1.5; }
.map-wrapper { width: 100%; height: 320px; border-radius: 8px; overflow: hidden; background: var(--tile-bg); }
.map-consent { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; padding: 30px; }
.map-consent-inner { text-align: center; max-width: 320px; }
.map-consent-inner p { font-size: 0.9rem; color: var(--anthracite); line-height: 1.6; margin-bottom: 20px; opacity: 0.8; }
.btn-map-load { padding: 14px 32px; background-color: var(--accent-color); color: var(--white); border: none; border-radius: 2px; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; cursor: pointer; transition: background-color 0.3s; }
.btn-map-load:hover { background-color: var(--anthracite); }
.map-consent-hint { font-size: 0.75rem; color: var(--anthracite); opacity: 0.55; margin-top: 14px; margin-bottom: 0 !important; }
.map-consent-hint a { color: var(--accent-color); text-decoration: underline; }
.map-directions { display: inline-block; margin-top: 14px; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent-color); text-decoration: none; transition: color 0.2s; }
.map-directions:hover { color: var(--anthracite); }

/* --- Mobile Responsivität --- */
@media (max-width: 1024px) {
    .container { padding: 0 30px; }
    header { padding: 20px 0; }
    .nav-toggle-label { display: block; margin-right: 20px; }
    .nav-links { position: absolute; top: 100%; left: 0; width: 100%; background: var(--cream); flex-direction: column; height: 0; overflow: hidden; transition: height 0.4s; z-index: 1000; }
    .nav-toggle:checked ~ .nav-links { height: 480px; }

    /* Hero: Hintergrundbild ausblenden, mobile div einblenden */
    .hero-wrapper, .about-hero, .quote-hero-clean { flex-direction: column; height: auto; background: none !important; border-bottom: none; margin-top: -1px; }
    .about-hero-img, .about-hero-gradient { display: none; }
    .hero-image-mobile { display: block; width: 100%; height: auto; aspect-ratio: 4 / 3; border-bottom: 1px solid var(--line-color); }
    .hero-wrapper .hero-image-mobile { background: url('../images/webseiteschulter.jpg') right center / cover; }
    .about-hero .hero-image-mobile { background: url('../images/Josephine-winkel.jpg') top center / cover; aspect-ratio: 4/3 !important; }
    .quote-hero-clean .hero-image-mobile { background: url('../images/osteopathie_Prinzipien.jpg') center / cover; }

    /* 1. page-header: kein padding-top wenn direkt unter Navigation */
    .page-header { padding: 60px 0 30px; }

    /* Mobil-Rhythmus */
    section { padding: 60px 0; }
    #intro { padding-bottom: 80px; }

    /* Hero-Sections: section-padding aufheben damit Bild direkt oben sitzt */
    .hero-wrapper, .about-hero, .quote-hero-clean { padding: 0 !important; }

    /* Hero-Content: volle Breite auf Cream (Hintergrundfarbe) */
    .hero-content, .quote-overlay { padding: 60px 30px; max-width: 100%; width: 100%; background-color: var(--cream); text-align: center; }
    .hero-content h1 { font-size: 2.2rem; }

    .about-section { padding: 60px 0 60px; }
    /* About-Hero mobil: about-pill übernimmt */
    .about-pill { display: block; width: 100%; background: var(--cream); backdrop-filter: none; -webkit-backdrop-filter: none; border-radius: 0; padding: 60px 30px; text-align: center; }
    .about-pill h1 { white-space: normal; font-size: 2rem; }

    /* Osteopathie: Zitat auf Cream – Farben anpassen */
    .quote-overlay { background-color: var(--cream); }
    .image-quote { color: var(--sage) !important; text-shadow: none; font-size: clamp(1.5rem, 5vw, 2rem); }
    .image-author { color: var(--anthracite) !important; opacity: 0.7; }
    .content-box-gold, .content-box-white { border-radius: 0; padding: 60px 30px; margin-bottom: 0; }
    .content-box-gold { margin-bottom: 30px; }
    .principles-title { font-size: 2rem; }
    /* about-title: gleiche Größe und Zeilenabstand wie principles-title in weißer Box */
    .content-box-gold .about-title { font-size: 2rem; line-height: 1.3; margin-bottom: 40px; }
    .principle-item { flex-direction: column; gap: 15px; }
    .principle-number { font-size: 3.5rem; }
    .principle-text p { text-align: left; hyphens: none; -webkit-hyphens: none; }

    .application-grid-section { padding: 40px 0 60px; overflow: hidden; }
    .application-grid-section .container { padding: 0; }
    .app-grid { grid-template-columns: 1fr; gap: 190px; margin-top: 150px; width: 100%; padding: 0 20px; box-sizing: border-box; }
    /* Anwendung: Schrift bleibt in der Box */
    .app-card { padding: 180px 25px 50px; border-radius: 10px; width: 100%; box-sizing: border-box; min-width: 0; }
    .app-card h3 { font-size: 1.4rem; margin-bottom: 20px; word-break: break-word; }
    .app-list li { font-size: 0.95rem; padding-left: 22px; word-break: break-word; overflow-wrap: break-word; }
    .app-image-circle { width: 300px; height: 300px; top: -150px; border-width: 5px; }
    .app-cta-box { margin: 30px 20px 0; border-radius: 10px; padding: 60px 25px; box-sizing: border-box; }
    .app-cta-box p { font-size: 1.5rem; margin-bottom: 30px; }

    /* Impressionen */
    .impressions-section { padding: 60px 0 60px; background-color: var(--tile-bg); }
    .impressions-grid { grid-template-columns: 1fr; padding: 0 30px; gap: 15px; }
    .impression-item { aspect-ratio: 1 / 1; }

    /* Kontakt mobil */
    .kontakt-grid { grid-template-columns: 1fr !important; gap: 25px; }
    .kontakt-value { font-size: 0.95rem; }
    .kontakt-pill { display: block; width: 100%; background: var(--cream); backdrop-filter: none; -webkit-backdrop-filter: none; border-radius: 0; padding: 60px 30px; text-align: center; }
    .kontakt-pill h1 { white-space: normal; font-size: 2rem; }
    .maps-grid { grid-template-columns: 1fr; gap: 40px; }
    .map-wrapper { height: 260px; }
    /* Impressum mobil */
    .impressum-grid { grid-template-columns: 1fr; gap: 30px; }

    /* Termin mobil */
    .termin-zeiten { flex-direction: column; gap: 25px; }
    .termin-zeit-dauer { font-size: 1.5rem; }
    .termin-kosten-grid { grid-template-columns: 1fr; gap: 40px; }

    /* Footer */
    .site-footer { padding: 60px 0 40px; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { margin-top: 30px; flex-direction: column; gap: 20px; text-align: center; }
}

/* --- Impressum-Seite --- */
.impressum-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px 80px; }
.impressum-block h2 { font-family: var(--font-heading); font-size: 1.2rem; color: var(--sage); margin-bottom: 15px; padding-bottom: 10px; border-bottom: 1px solid var(--line-color); }
.impressum-block p { font-size: 0.95rem; color: var(--anthracite); line-height: 1.8; margin-bottom: 12px; }
.impressum-block p:last-child { margin-bottom: 0; }
.impressum-block a { color: var(--accent-color); text-decoration: none; }
.impressum-block a:hover { text-decoration: underline; }
.impressum-block--full { grid-column: 1 / -1; padding-top: 30px; border-top: 1px solid var(--line-color); }
.impressum-list { list-style: none; padding: 0; margin: 12px 0; }
.impressum-list li { font-size: 0.95rem; color: var(--anthracite); line-height: 1.8; padding-left: 20px; position: relative; margin-bottom: 8px; }
.impressum-list li::before { content: "–"; position: absolute; left: 0; color: var(--accent-color); }

