/* ============================================
   ERGOTHERAPIE RUPP – ONEPAGE STYLES
   Farbwelt: British Royal Green, Schwarz, Mint
   Stimmung: Seriös aber warm
   ============================================ */

/* --- LOCAL FONTS (DSGVO-konform, kein Google-Server-Aufruf) --- */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400 600;
    font-display: swap;
    src: url('../fonts/inter-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400 600;
    font-display: swap;
    src: url('../fonts/inter-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Orbitron';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('../fonts/orbitron-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* --- CUSTOM PROPERTIES --- */
:root {
    --green: #1B4D3E;
    --green-light: #245649;
    --green-dark: #143B30;
    --black: #1A1A1A;
    --mint: #A8D5BA;
    --mint-light: #D4EDE0;
    --warm-white: #FAF9F6;
    --gray: #F0EFEB;
    --gray-mid: #C5C3BC;
    --text: #2C2C2C;
    --text-light: #5A5A5A;

    --font-heading: 'Orbitron', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --container: 1120px;
    --container-narrow: 780px;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 2px 20px rgba(27, 77, 62, 0.08);
    --shadow-lg: 0 8px 40px rgba(27, 77, 62, 0.12);
    --transition: 0.3s ease;
}

/* --- RESET & BASE --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 108px;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.55;
    color: var(--text);
    background: var(--warm-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: var(--green);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--green-light);
}

address {
    font-style: normal;
}

/* --- CONTAINER --- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.container--narrow {
    max-width: var(--container-narrow);
}

/* --- TYPOGRAPHY --- */
h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--green);
    line-height: 1.3;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1.25rem;
}

h3 {
    font-size: clamp(1.15rem, 2.5vw, 1.4rem);
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
}

.btn--primary {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
}

.btn--primary:hover {
    background: var(--green-light);
    border-color: var(--green-light);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn--outline {
    background: transparent;
    color: var(--green);
    border-color: var(--green);
}

.btn--outline:hover {
    background: var(--green);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* ============================================
   TOPBAR (Adresse + Telefon dauerhaft sichtbar)
   ============================================ */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: var(--green);
    color: #fff;
    font-size: 0.85rem;
    padding: 6px 0;
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px 24px;
}

.topbar__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    line-height: 1.3;
}

.topbar__item svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    opacity: 0.85;
}

.topbar a.topbar__item:hover {
    color: var(--mint-light);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 32px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 249, 246, 0.78);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(27, 77, 62, 0.06);
    transition: background var(--transition), box-shadow var(--transition);
}

.nav--scrolled {
    background: rgba(250, 249, 246, 0.97);
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    height: 100px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--green);
}

.nav__logo-img {
    height: 88px;
    width: auto;
    max-width: none;
    object-fit: contain;
    transition: filter var(--transition);
}

.nav--scrolled .nav__logo,
.nav__logo:hover {
    color: var(--green);
}

.nav__logo-sub {
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--text-light);
    transition: color var(--transition);
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 22px;
    list-style: none;
    flex-wrap: nowrap;
}

.nav__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    position: relative;
    white-space: nowrap;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--mint);
    transition: width var(--transition);
}

.nav__link:hover {
    color: var(--green);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--cta {
    background: var(--green);
    color: #fff !important;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    background: var(--green-light);
    color: #fff;
}

/* Burger */
.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--green);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.nav__burger--active span {
    background: var(--green) !important;
}

.nav__burger--active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__burger--active span:nth-child(2) {
    opacity: 0;
}

.nav__burger--active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO – hell/mint mit Foto-Hintergrund
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(160deg, var(--mint-light) 0%, var(--mint) 60%, #94c8a8 100%);
}

/* Foto Frau Rupp rechts, ueber den ganzen Hero (Querformat-Bild) */
.hero__photo {
    position: absolute;
    inset: 0;
    background: url('../img/rupp/hero-alexandra-rupp-natur.jpg') no-repeat center center / cover;
    background-image: image-set(
        url('../img/rupp/hero-alexandra-rupp-natur.webp') type('image/webp'),
        url('../img/rupp/hero-alexandra-rupp-natur.jpg') type('image/jpeg')
    );
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    pointer-events: none;
}

/* Sanfter Mint-Schleier links fuer Text-Lesbarkeit */
.hero__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(95deg,
            rgba(212, 237, 224, 0.92) 0%,
            rgba(212, 237, 224, 0.78) 35%,
            rgba(168, 213, 186, 0.30) 60%,
            rgba(168, 213, 186, 0) 80%);
    pointer-events: none;
}


.hero__content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 260px 24px 80px;
}

/* Text-Elemente im Hero auf lesbare Breite begrenzen, aber linksbuendig im Container */
.hero__title,
.hero__subtitle,
.hero__pillars {
    max-width: 640px;
}

.hero__badge {
    display: inline-block;
    background: var(--green);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 999px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(27, 77, 62, 0.18);
}

.hero__title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    color: var(--green-dark);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hero__title-line2,
.hero__title-line3 {
    display: block;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 400;
    color: var(--green);
    line-height: 1.3;
}

.hero__title-line2 {
    margin-top: 0.5em;
}

.hero__subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--green-dark);
    margin-bottom: 1.5rem;
    max-width: 580px;
    line-height: 1.7;
}

.hero__pillars {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero__pillar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green-dark);
    font-size: 0.95rem;
    font-weight: 500;
}

.hero__pillar::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
}

.hero .btn--primary {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
}

.hero .btn--primary:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    color: #fff;
}

/* ============================================
   SECTIONS – GENERAL
   ============================================ */
.section {
    padding: 100px 0;
    position: relative;
}

/* Dekorativer Akzent-Kreis auf alternierenden Sektionen */
.section--alt::before {
    content: '';
    position: absolute;
    left: -10%;
    top: -5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168, 213, 186, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Kennen Sie das – Split-Layout mit 3 Bildern rechts */
.split--empathy {
    align-items: flex-start;
}

.split--empathy .split__text {
    text-align: left;
}

.section__title--left {
    text-align: left;
}

/* 3 kleine Bilder untereinander rechts */
.empathy__gallery {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.empathy__thumb {
    width: 100%;
    max-width: 280px;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}


.section--method {
    overflow: hidden;
}

.section--method::after {
    content: '';
    position: absolute;
    right: -5%;
    bottom: -5%;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168, 213, 186, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.section--alt {
    background: var(--gray);
}

/* Sektionen mit Foto-Hintergrund statt purem Grau */
.section--bg-mache,
.section--bg-leistungen {
    position: relative;
    overflow: hidden;
}

.section--bg-mache {
    background:
        linear-gradient(180deg, rgba(232, 230, 225, 0.82) 0%, rgba(240, 239, 235, 0.78) 100%),
        url('../img/empathie-paar-bewegung.jpg') no-repeat center / cover;
    background-image:
        linear-gradient(180deg, rgba(232, 230, 225, 0.82) 0%, rgba(240, 239, 235, 0.78) 100%),
        image-set(
            url('../img/empathie-paar-bewegung.webp') type('image/webp'),
            url('../img/empathie-paar-bewegung.jpg') type('image/jpeg')
        );
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-blend-mode: normal;
}

.section--bg-leistungen {
    background:
        linear-gradient(180deg, rgba(220, 218, 212, 0.82) 0%, rgba(228, 226, 220, 0.78) 100%),
        url('../img/section-bg-gruppentraining.jpg') no-repeat center / cover;
    background-image:
        linear-gradient(180deg, rgba(220, 218, 212, 0.82) 0%, rgba(228, 226, 220, 0.78) 100%),
        image-set(
            url('../img/section-bg-gruppentraining.webp') type('image/webp'),
            url('../img/section-bg-gruppentraining.jpg') type('image/jpeg')
        );
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-blend-mode: normal;
}

.section__title {
    position: relative;
}

.section__title--center {
    text-align: center;
}

.section__title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--mint);
    margin-top: 12px;
    border-radius: 2px;
}

.section__title--center::after {
    margin-left: auto;
    margin-right: auto;
}

.section__lead {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.section__lead--center {
    text-align: center;
}

.section__note {
    text-align: center;
    color: var(--text-light);
    margin-top: 2.5rem;
    font-size: 1.05rem;
}

/* --- Reveal Animation --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal--visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   EMPATHY SECTION
   ============================================ */
.section--empathy {
    background: var(--warm-white);
}

.empathy__text {
    font-size: clamp(1.1rem, 2.2vw, 1.25rem);
    line-height: 1.6;
    text-align: center;
}

.empathy__text p {
    margin-bottom: 1.5rem;
}

.empathy__highlight {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: var(--green);
    font-weight: 600;
    padding: 2rem 2.5rem;
    border-left: 4px solid var(--mint);
    background: linear-gradient(135deg, var(--mint-light) 0%, rgba(168, 213, 186, 0.05) 100%);
    border-radius: 0 var(--radius) var(--radius) 0;
    text-align: left;
    box-shadow: var(--shadow);
}

/* ============================================
   SPLIT LAYOUT (Text + Image)
   ============================================ */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.split--reverse .split__text {
    order: 2;
}

.split--reverse .split__image {
    order: 1;
}

/* --- Quote --- */
.quote {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--green);
    padding: 1.25rem 1.5rem;
    border-left: 3px solid var(--mint);
    margin: 1.5rem 0;
    background: rgba(168, 213, 186, 0.1);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.quote--accent {
    background: linear-gradient(135deg, rgba(168, 213, 186, 0.15), transparent);
    font-size: 1.2rem;
}

/* --- Echte Bilder --- */
/* <picture>-Wrapper: nimmt Layout-Maße statt das img direkt */
.split__image picture {
    display: block;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

/* Portrait-Variante: schmäler + 3:4 */
.split__image picture:has(.split__img--portrait) {
    max-width: 380px;
    aspect-ratio: 3 / 4;
}

.split__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Wenn ein .split__img direkt ohne <picture> drin steht (Backward-Compat) */
.split__image > .split__img {
    max-width: 440px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    margin: 0 auto;
}

.split__image > .split__img--portrait {
    aspect-ratio: 3 / 4;
    max-width: 380px;
}

/* Empathy-Galerie: <picture> als kleiner Thumb-Container */
.empathy__gallery picture {
    display: block;
    width: 100%;
    max-width: 280px;
    aspect-ratio: 16 / 10;
    border-radius: var(--radius);
    overflow: hidden;
}

.empathy__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
    aspect-ratio: auto;
}

/* Portrait mit Caption (z.B. in Methode-Section) */
.portrait-figure {
    margin: 0;
    text-align: center;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}

.portrait-figure__caption {
    margin-top: 14px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--green);
    letter-spacing: 0.02em;
    line-height: 1.4;
}

/* --- Einfarbiger Platzhalter (Portrait) --- */
.placeholder-solid {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 3 / 4;
    margin: 0 auto;
    border-radius: var(--radius);
    background: linear-gradient(160deg, var(--green) 0%, var(--green-light) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 24px;
    box-shadow: var(--shadow-lg);
}

.placeholder-solid__label {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* --- Platzhalter-Wrap mit Label --- */
.placeholder-wrap {
    position: relative;
    display: inline-block;
}

.placeholder-wrap__label {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(27, 77, 62, 0.85);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

/* --- Placeholder Image (Fallback) --- */
.placeholder-image {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 300px;
    margin: 0 auto;
}

.placeholder-image--large {
    max-width: 340px;
}

.placeholder-image svg {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.placeholder-image__label {
    display: block;
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--gray-mid);
    text-align: center;
}

/* ============================================
   METHOD SECTION
   ============================================ */

.method__badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 2rem 0;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--gray);
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--green);
    border: 1px solid rgba(168, 213, 186, 0.3);
    align-self: flex-start;
}

.badge__icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--green);
}

/* ============================================
   CARDS (Für wen)
   ============================================ */
.cards--three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 3rem;
}

.card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid rgba(168, 213, 186, 0.15);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    color: var(--green);
}

.card__icon svg {
    width: 100%;
    height: 100%;
}

.card__title {
    text-align: center;
}

.card__title::after {
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   SERVICES (Leistungen)
   ============================================ */
.services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 3rem;
}

.service {
    background: #fff;
    padding: 2rem 2rem 2rem 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--mint);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(168, 213, 186, 0.08), transparent);
    transition: width 0.4s ease;
}

.service:hover::before {
    width: 100%;
}

.service:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--green);
}

.services__footnote {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 2rem;
}

.service__title {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.service__tag {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--green);
    background: var(--mint-light);
    padding: 3px 10px;
    border-radius: 4px;
}

/* ============================================
   STEPS (So geht's los)
   ============================================ */
.section--contact {
    background: var(--warm-white);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin: 3rem 0 4rem;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(16.66% + 28px);
    right: calc(16.66% + 28px);
    height: 2px;
    background: var(--mint);
}

.step {
    text-align: center;
    position: relative;
}

.step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 16px rgba(27, 77, 62, 0.25);
}

.step__title {
    text-align: center;
}

.step__title::after {
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   CONTACT INFO
   ============================================ */
.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--gray);
    padding: 2.5rem;
    border-radius: var(--radius);
    margin-bottom: 2rem;
}

.contact-info__logo {
    height: 64px;
    width: auto;
    max-width: none;
    object-fit: contain;
    margin-bottom: 1rem;
    display: block;
}

.contact-info__name {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.contact-info__name::after {
    display: none;
}

.contact-info__address {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-info__address a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dotted var(--green);
    transition: color var(--transition), border-color var(--transition);
}

.contact-info__address a:hover {
    color: var(--green);
    border-bottom-color: var(--green);
}

.contact-info__phone a,
.contact-info__email a {
    font-weight: 500;
}

.contact-info__list {
    list-style: none;
    padding: 0;
}

.contact-info__list li {
    padding: 6px 0 6px 28px;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-light);
}

.contact-info__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--mint);
}

.contact-info__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* ============================================
   WHATSAPP-BUTTON
   ============================================ */
.btn--whatsapp {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn--whatsapp:hover {
    background: #1DA851;
    border-color: #1DA851;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn--whatsapp svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ============================================
   CHIPS (Therapie-Konzepte / Weiterbildungen)
   ============================================ */
.section--qualifikationen {
    background: var(--warm-white);
}

.qualifikationen__intro {
    max-width: 720px;
    margin: 0 auto 2.5rem;
    text-align: center;
    color: var(--text-light);
}

.qualifikationen__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1080px;
    margin: 0 auto;
}

.qualifikationen__col {
    background: #fff;
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--mint);
}

.qualifikationen__col-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--green);
    margin-bottom: 1.25rem;
    text-align: left;
    letter-spacing: 0.01em;
}

.qualifikationen__col-title::after {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--mint);
    margin-top: 8px;
    border-radius: 2px;
}

.qualifikationen__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.qualifikationen__item {
    position: relative;
    padding: 8px 0 8px 26px;
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.5;
    border-bottom: 1px solid rgba(168, 213, 186, 0.25);
}

.qualifikationen__item:last-child {
    border-bottom: none;
}

.qualifikationen__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231B4D3E' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center / contain;
}

.qualifikationen__item--highlight {
    color: var(--green-dark);
    font-weight: 600;
}

/* ============================================
   REZEPT-KARTEN (Was Sie benoetigen)
   ============================================ */
.section--rezepte {
    background: var(--gray);
}

.rezepte {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 2.5rem;
}

.rezept-card {
    background: #fff;
    padding: 1.75rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--mint);
    text-align: left;
}

.rezept-card__label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--green);
    margin-bottom: 8px;
    display: block;
}

.rezept-card__title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.rezept-card__title::after {
    display: none;
}

.rezept-card__text {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

.rezepte-note {
    margin-top: 2rem;
    padding: 1.5rem 1.75rem;
    background: var(--mint-light);
    border-left: 4px solid var(--green);
    border-radius: 0 var(--radius) var(--radius) 0;
    color: var(--green-dark);
}

.rezepte-note strong {
    color: var(--green-dark);
}

/* ============================================
   PARKING / ZUGANG HIGHLIGHT
   ============================================ */
.contact-info__highlight {
    margin-top: 1rem;
    padding: 12px 16px;
    background: var(--mint-light);
    border-radius: var(--radius-sm);
    font-weight: 600;
    color: var(--green-dark);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.contact-info__highlight svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--green);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--green-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 32px 0;
    font-size: 0.9rem;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer__links {
    display: flex;
    gap: 24px;
}

.footer__links a,
.footer p a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.3);
    transition: color var(--transition), border-color var(--transition);
}

.footer__links a {
    border-bottom: none;
}

.footer__links a:hover,
.footer p a:hover {
    color: var(--mint);
    border-bottom-color: var(--mint);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
/* Nav: Burger schon ab grossem Desktop, weil 7 Items + grosses Logo + CTA sonst eng werden */
@media (max-width: 1280px) {
    .nav__burger {
        display: flex;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--warm-white);
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        transition: right var(--transition);
        padding: 100px 32px 32px;
        z-index: 1000;
    }

    .nav__menu--open {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: 0;
    }

    .nav__link {
        display: block;
        padding: 14px 0;
        font-size: 1.05rem;
        border-bottom: 1px solid var(--gray);
        white-space: normal;
    }

    .nav__link::after {
        display: none;
    }

    .nav__link--cta {
        margin-top: 16px;
        text-align: center;
        border-bottom: none;
    }
}

@media (max-width: 1024px) {
    .split {
        gap: 40px;
    }

    .services {
        grid-template-columns: 1fr;
    }

    .service:last-child:nth-child(odd) {
        max-width: 100%;
    }

    /* Qualifikationen Tablet: 2 Spalten */
    .qualifikationen__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    html {
        scroll-padding-top: 130px;
    }

    body {
        font-size: 16px;
    }

    .section {
        padding: 64px 0;
    }

    /* Topbar Mobile */
    .topbar {
        font-size: 0.78rem;
        padding: 6px 0;
    }

    .topbar__inner {
        justify-content: center;
        gap: 4px 14px;
    }

    .topbar__item-label {
        display: none;
    }

    .nav {
        top: 56px;
    }

    .nav__menu {
        width: 280px;
    }

    /* Hero Mobile */
    .hero {
        min-height: auto;
        padding: 0;
    }



    .hero__content {
        padding: 200px 24px 80px;
    }

    .hero__subtitle br {
        display: none;
    }

    /* Foto auf Mobile: nach unten setzen, Text-Bereich oben deckend */
    .hero__photo {
        background-position: 70% center;
        opacity: 0.85;
    }

    .hero__bg {
        background:
            linear-gradient(180deg,
                rgba(212, 237, 224, 0.94) 0%,
                rgba(212, 237, 224, 0.88) 50%,
                rgba(168, 213, 186, 0.60) 100%);
    }

    /* Rezepte Mobile */
    .rezepte {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Qualifikationen Mobile */
    .qualifikationen__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Split Mobile */
    .split {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .split--reverse .split__text {
        order: 1;
    }

    .split--reverse .split__image {
        order: 2;
    }

    .placeholder-image,
    .placeholder-image--large {
        max-width: 220px;
    }

    /* Cards Mobile */
    .cards--three {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Steps Mobile */
    .steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .steps::before {
        display: none;
    }

    .step {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        text-align: left;
    }

    .step__number {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
        flex-shrink: 0;
        margin-bottom: 0;
    }

    .step__title {
        text-align: left;
    }

    .step__title::after {
        margin-left: 0;
    }

    /* Contact Mobile */
    .contact-info {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 1.5rem;
    }

    .contact-info__buttons {
        flex-direction: column;
    }

    .contact-info__buttons .btn {
        width: 100%;
    }

    /* Method Badges Mobile */
    .method__badges {
        flex-direction: column;
    }

    /* Footer Mobile */
    .footer .container {
        flex-direction: column;
        text-align: center;
    }

    /* Empathy Mobile */
    .empathy__text {
        text-align: left;
    }

    .empathy__highlight {
        font-size: 1.1rem;
    }
}

/* Small Mobile */
@media (max-width: 400px) {
    .container {
        padding: 0 16px;
    }

    .hero__content {
        padding: 200px 16px 56px;
    }

    .hero__badge {
        font-size: 0.72rem;
        padding: 6px 14px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}
