/* ==========================================================
   Herz & Hände – Stylesheet
   Sanfte, lichte Farbwelt mit modernen, energetischen Akzenten
   ========================================================== */

/* ==========================================================
   Schriften – lokal eingebunden (DSGVO: kein Abruf von Google-Servern)
   Cormorant Garamond & Inter als Variable Fonts (Gewicht 300–600),
   Subsets latin + latin-ext (deckt deutsche Sonderzeichen ab).
   ========================================================== */

@font-face {
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 300 600;
    font-display: swap;
    src: url(/vendor/fonts/cormorant-garamond-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: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 300 600;
    font-display: swap;
    src: url(/vendor/fonts/cormorant-garamond-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: 'Inter';
    font-style: normal;
    font-weight: 300 600;
    font-display: swap;
    src: url(/vendor/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: 300 600;
    font-display: swap;
    src: url(/vendor/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;
}

:root {
    --color-bg: #faf6f1;
    --color-bg-soft: #f3ece2;
    --color-bg-warm: #ede3d4;
    --color-text: #3d3a35;
    --color-text-soft: #6b665e;
    --color-accent: #b08968;          /* warmes Karamell */
    --color-accent-dark: #8b6a4e;
    --color-sage: #a8b89c;            /* zartes Salbei */
    --color-rose: #d8b4a0;            /* gedämpftes Rosé */
    --color-gold: #c9a96e;
    --color-line: rgba(61, 58, 53, 0.12);
    --color-card: #ffffff;

    --font-serif: 'Cormorant Garamond', 'Georgia', serif;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

    --shadow-sm: 0 4px 14px rgba(61, 58, 53, 0.06);
    --shadow-md: 0 10px 30px rgba(61, 58, 53, 0.08);
    --shadow-lg: 0 20px 50px rgba(61, 58, 53, 0.12);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 28px;

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.7;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s var(--ease);
}

a:hover {
    color: var(--color-accent);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ==================== NAVIGATION ==================== */
.nav-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.25rem 0;
    background: rgba(250, 246, 241, 0.0);
    backdrop-filter: blur(0);
    transition: all 0.4s var(--ease);
}

.nav-header.scrolled {
    background: rgba(250, 246, 241, 0.92);
    backdrop-filter: blur(12px);
    padding: 0.75rem 0;
    box-shadow: 0 1px 0 var(--color-line);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--color-text);
}

.logo-icon {
    width: 36px;
    height: 36px;
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s var(--ease-soft);
}

.nav-logo:hover .logo-icon {
    transform: scale(1.1) rotate(-5deg);
}

.logo-block {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.logo-sub {
    font-family: var(--font-serif);
    font-size: 0.78rem;
    font-style: italic;
    color: var(--color-accent);
    letter-spacing: 0.08em;
    margin-top: 2px;
}

.logo-sub em,
.logo-text em {
    color: var(--color-accent);
    font-style: italic;
    font-weight: 400;
    margin: 0 0.1em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.25rem;
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--color-text-soft);
    position: relative;
    padding: 0.25rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width 0.4s var(--ease);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--color-accent);
    color: #fff !important;
    padding: 0.7rem 1.4rem !important;
    border-radius: 50px;
    transition: all 0.3s var(--ease);
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 110;
}

.nav-toggle span {
    width: 26px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all 0.4s var(--ease);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ==================== HERO ==================== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 1.5rem 5rem;
    overflow: hidden;
    background: linear-gradient(135deg, #faf6f1 0%, #f3ece2 50%, #ede3d4 100%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 2.5rem 4rem;
    align-items: center;
    /* Bezugsbreite für das einzeilige Motto */
    container-type: inline-size;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-canvas,
.orb-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.orb-canvas {
    opacity: 0.75;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    animation: float 20s infinite ease-in-out;
}

.circle-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-rose), transparent 70%);
    top: -100px;
    left: -150px;
}

.circle-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-sage), transparent 70%);
    bottom: -200px;
    right: -150px;
    animation-delay: -7s;
}

.circle-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--color-gold), transparent 70%);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -13s;
    opacity: 0.3;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(40px, -60px) scale(1.05);
    }
    66% {
        transform: translate(-50px, 40px) scale(0.95);
    }
}

.circle-3 {
    animation-name: floatCenter;
}

@keyframes floatCenter {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-45%, -55%) scale(1.1);
    }
}

.hero-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.78rem;
    color: var(--color-accent);
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.hero-motto {
    /* Überschreibt Text und Portrait: eigene Zeile über der gesamten Hero-Breite. */
    grid-column: 1 / -1;
    text-align: center;
    font-family: var(--font-serif);
    /* Steht in jedem Format auf einer Zeile: der String misst ca. 17,9em,
       5.3cqw füllen damit ~95 % der Containerbreite – Rest ist Sicherheitsrand. */
    white-space: nowrap;
    font-size: min(2.6rem, 5.3cqw);
    font-weight: 500;
    color: var(--color-accent-dark);
    line-height: 1.35;
    letter-spacing: 0.01em;
    margin: 0;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 400;
    line-height: 1;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.hero-title .amp {
    color: var(--color-accent);
    font-style: italic;
    font-weight: 300;
    display: inline-block;
    transition: transform 0.6s var(--ease-soft);
}

.hero-title:hover .amp {
    transform: translateY(-3px);
}

.hero-subtitle {
    font-size: clamp(1.05rem, 1.6vw, 1.2rem);
    color: var(--color-text);
    max-width: 540px;
    /* Rückt an die Stelle der früheren Tagline; der große Abstand nach unten
       hält die folgenden Absätze auf ihrer bisherigen Höhe. */
    margin: 0 0 6.2rem;
    line-height: 1.7;
    font-weight: 400;
}

.hero-description {
    font-size: clamp(0.96rem, 1.3vw, 1.03rem);
    color: var(--color-text-soft);
    max-width: 540px;
    margin: 0 0 1.1rem;
    line-height: 1.8;
}

.hero-description:last-child {
    margin-bottom: 0;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

/* Portrait + Aktionen */
.hero-media {
    justify-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 380px;
}

.hero-portrait {
    position: relative;
    width: 100%;
    max-width: 380px;
    aspect-ratio: 1 / 1;
}

.portrait-frame {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(61, 58, 53, 0.18);
    border: 8px solid #fff;
}

.portrait-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease-soft);
}

.hero-portrait:hover .portrait-frame img {
    transform: scale(1.04);
}

.portrait-glow {
    position: absolute;
    inset: -10%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.35), transparent 65%);
    filter: blur(40px);
    z-index: 0;
    animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.55; transform: scale(1); }
    50% { opacity: 0.85; transform: scale(1.05); }
}

.portrait-ring {
    position: absolute;
    inset: -4%;
    border: 1px dashed var(--color-accent);
    border-radius: 50%;
    opacity: 0.5;
    z-index: 1;
    animation: spinSlow 60s linear infinite;
}

@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 40px;
    border: 1.5px solid var(--color-text-soft);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
    opacity: 0.6;
    transition: opacity 0.3s var(--ease);
}

.hero-scroll:hover {
    opacity: 1;
}

.hero-scroll span {
    width: 3px;
    height: 8px;
    background: var(--color-text-soft);
    border-radius: 2px;
    animation: scrollDot 2s infinite;
}

@keyframes scrollDot {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-block;
    padding: 0.95rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    border: none;
    transition: all 0.4s var(--ease-soft);
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--color-accent);
    color: #fff;
    box-shadow: 0 4px 20px rgba(176, 137, 104, 0.35);
}

.btn-primary:hover {
    background: var(--color-accent-dark);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(176, 137, 104, 0.4);
}

.btn-ghost {
    background: transparent;
    color: var(--color-text);
    border: 1.5px solid var(--color-line);
}

.btn-ghost:hover {
    background: var(--color-text);
    color: #fff;
    border-color: var(--color-text);
    transform: translateY(-3px);
}

.btn-small {
    padding: 0.65rem 1.4rem;
    font-size: 0.85rem;
    background: var(--color-bg-soft);
    color: var(--color-text);
}

.btn-small:hover {
    background: var(--color-accent);
    color: #fff;
}

.btn-block {
    width: 100%;
}

/* ==================== SECTIONS ==================== */
.section {
    padding: 7rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 1.02rem;
    color: var(--color-accent);
    font-weight: 500;
    margin-bottom: 1rem;
}

/* „Mein Weg" steht als <p> in .about-text und verlöre sonst gegen
   `.about-text p` (höhere Spezifität) – hier gleichgezogen zu „Ansatz". */
.about-text p.section-eyebrow {
    font-size: 1.02rem;
    color: var(--color-accent);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-text);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.section-lead {
    color: var(--color-text-soft);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ==================== WIE ICH ARBEITE ==================== */
.approach {
    background: linear-gradient(180deg, var(--color-bg-warm) 0%, var(--color-bg) 32%);
}

.approach-text {
    max-width: 760px;
    margin: 0 auto;
}

.approach-text p {
    color: var(--color-text-soft);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 1.4rem;
}

.approach-coda {
    margin: 2.75rem 0 0 !important;
    text-align: center;
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 2.6vw, 1.8rem) !important;
    line-height: 1.45 !important;
    color: var(--color-text) !important;
}

.approach-coda em {
    display: block;
    font-style: italic;
    color: var(--color-accent);
    margin-top: 0.35rem;
}

/* -------- Schwebende Praxis-Blasen um den Ansatz-Text --------
   Bis 1239px eine Reihe unter der Überschrift, darüber frei in den
   Seitenspalten neben dem 760px breiten Textblock. Unter 1240px bleiben von
   den Seitenspalten <196px – dafuer sind die Blasen zu breit geworden.
   .approach-bubble traegt das Reveal (transform), .bubble-frame das
   Schweben – sonst wuerde die Animation den Reveal ueberschreiben. */
.approach-bubbles {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 3.5rem;
}

.approach-bubble {
    margin: 0;
    /* 26vw haelt die drei Blasen auch auf 360px-Displays in einer Reihe */
    width: clamp(88px, 26vw, 124px);
}

.bubble-frame {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: var(--shadow-md);
}

.bubble-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Beide Fotos sind Hochformat: der mittige Kreisausschnitt wuerde bei der
   Massage das Gesicht und bei der Gespraechsecke die Sessel anschneiden. */
.bubble-massage .bubble-frame img {
    object-position: 50% 32%;
}

.bubble-gespraech .bubble-frame img {
    object-position: 50% 70%;
}

@keyframes bubbleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

@media (min-width: 1240px) {
    .approach .container {
        position: relative;
    }

    .approach-bubbles {
        display: block;
        margin-bottom: 0;
    }

    .approach-bubble {
        position: absolute;
    }

    .approach-bubble .bubble-frame {
        border-width: 6px;
        animation: bubbleFloat 9s ease-in-out infinite;
    }

    .bubble-massage {
        width: 178px;
        left: 2px;
        top: 150px;
    }

    .bubble-gespraech {
        width: 158px;
        right: 2px;
        top: 400px;
    }

    .bubble-gespraech .bubble-frame {
        animation-duration: 11s;
        animation-delay: -3s;
    }

    .bubble-buddha {
        width: 138px;
        left: 30px;
        top: 680px;
    }

    .bubble-buddha .bubble-frame {
        animation-duration: 8s;
        animation-delay: -5s;
    }
}

/* Ab 1440px bleiben neben dem 1200px-Container mindestens 120px Rand frei.
   Dort duerfen die Blasen aus dem Container herausragen und deutlich
   groesser werden, ohne dem Textblock naeher als ~20px zu kommen. */
@media (min-width: 1440px) {
    .bubble-massage {
        width: 210px;
        left: -34px;
    }

    .bubble-gespraech {
        width: 186px;
        right: -28px;
    }

    .bubble-buddha {
        width: 165px;
        left: 8px;
    }
}

/* ==================== ABOUT ==================== */
.about {
    background: var(--color-bg);
}

.about-text {
    max-width: 960px;
    margin: 0 auto;
}

.about-text::after {
    content: '';
    display: block;
    clear: both;
}

/* Portrait fließt neben der Überschrift ein; der Text umläuft es und wird
   nach unten hin über die volle Breite wieder breiter */
.about-image {
    float: right;
    width: 340px;
    max-width: 42%;
    margin: 0.4rem 0 1.75rem 2.75rem;
    position: relative;
    aspect-ratio: 5 / 4; /* Querformat: die ausgebreiteten Arme bleiben ungeschnitten */
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.image-accent {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-accent);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.4;
    transition: transform 0.6s var(--ease-soft);
}

.about-image:hover .image-accent {
    transform: translate(8px, 8px);
}

.about-intro em {
    font-style: italic;
    color: var(--color-accent);
}

.about-signature {
    margin-top: 1.75rem;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.4rem;
    color: var(--color-accent);
}

.about-text p {
    color: var(--color-text-soft);
    margin-bottom: 1.25rem;
    font-size: 1.02rem;
}

.about-text strong {
    color: var(--color-text);
    font-weight: 500;
}

.about-list {
    margin-top: 2rem;
}

.about-list li {
    padding: 0.6rem 0;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.about-list span {
    color: var(--color-accent);
    font-size: 0.9rem;
}

/* ==================== SERVICES ==================== */
.services {
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-soft) 100%);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.service-card {
    flex: 1 1 300px;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    background: var(--color-card);
    padding: 2.75rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.5s var(--ease-soft), box-shadow 0.5s var(--ease-soft);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-rose), var(--color-accent), var(--color-sage));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s var(--ease-soft);
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s var(--ease-soft);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.service-card p {
    color: var(--color-text-soft);
    margin-bottom: 1.5rem;
    font-size: 0.97rem;
}

.service-open {
    margin-top: auto;
    align-self: center;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-accent);
    padding: 0.4rem 0.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}

.service-card:hover .service-open {
    color: var(--color-accent-dark);
    gap: 0.7rem;
}

.service-open:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
    border-radius: 6px;
}

/* ==================== VORTRÄGE / TABS ==================== */
.vortraege {
    background: var(--color-bg-soft);
}

.tabs {
    max-width: 900px;
    margin: 0 auto;
}

.tabs-header {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    background: var(--color-card);
    padding: 0.5rem;
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.tab-btn {
    padding: 0.85rem 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-soft);
    border-radius: 50px;
    transition: color 0.4s var(--ease);
    position: relative;
    z-index: 2;
}

.tab-btn.active {
    color: #fff;
}

.tab-indicator {
    position: absolute;
    top: 0.5rem;
    bottom: 0.5rem;
    background: var(--color-accent);
    border-radius: 50px;
    z-index: 1;
    transition: all 0.5s var(--ease-soft);
}

.tab-panel {
    display: none;
    animation: fadeInPanel 0.6s var(--ease-soft);
}

.tab-panel.active {
    display: block;
}

@keyframes fadeInPanel {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vortrag-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.vortrag-card {
    background: var(--color-card);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.75rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.75rem;
    align-items: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--ease-soft);
    border-left: 3px solid var(--color-accent);
}

.vortrag-card:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
}

.vortrag-date {
    text-align: center;
    background: var(--color-bg-warm);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    min-width: 75px;
}

.vortrag-date.online {
    background: linear-gradient(135deg, var(--color-sage), #c2d1b6);
}

.vortrag-date .day {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 500;
    color: var(--color-text);
    line-height: 1;
}

.vortrag-date .month {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-soft);
    margin-top: 0.3rem;
}

.vortrag-tag {
    display: inline-block;
    background: var(--color-bg-warm);
    color: var(--color-accent-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.6rem;
}

.vortrag-tag.online {
    background: rgba(168, 184, 156, 0.25);
    color: #5a6f4f;
}

.vortrag-info h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
    color: var(--color-text);
}

.vortrag-info p {
    color: var(--color-text-soft);
    font-size: 0.92rem;
    margin-bottom: 0.75rem;
}

.vortrag-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--color-text-soft);
}

.vortrag-empty {
    text-align: center;
    color: var(--color-text-soft);
    padding: 2.5rem 1rem;
    font-style: italic;
}

.vortrag-plaetze {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.15rem 0.7rem;
    border-radius: 50px;
}

.vortrag-plaetze::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
}

.vortrag-plaetze.offen {
    background: rgba(168, 184, 156, 0.22);
    color: #5a6f4f;
}

.vortrag-plaetze.knapp {
    background: rgba(201, 169, 110, 0.22);
    color: #8a6d3a;
}

.vortrag-plaetze.voll {
    background: rgba(61, 58, 53, 0.08);
    color: var(--color-text-soft);
}

.vortrag-card.ausgebucht {
    opacity: 0.65;
}

.vortrag-card.ausgebucht:hover {
    transform: none;
    box-shadow: var(--shadow-sm);
}

.vortrag-card .btn[disabled] {
    cursor: not-allowed;
    opacity: 0.6;
}

.vortrag-card .btn[disabled]:hover {
    background: var(--color-bg-soft);
    color: var(--color-text);
}

/* ==================== GALLERY ==================== */
.gallery {
    background: var(--color-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 1.25rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: var(--radius-md);
    position: relative;
    cursor: pointer;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease-soft), filter 0.6s var(--ease);
    filter: saturate(0.9);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(61, 58, 53, 0.3));
    opacity: 0;
    transition: opacity 0.5s var(--ease);
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: saturate(1.1);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* -------- Praxis-Collage: eigene Bilder, vollständig sichtbar -------- */
.gallery-collage {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr; /* Raumbild in der Mitte breiter als die Details */
    gap: 1.25rem;
    align-items: stretch; /* gleich hohe Spalten -> die Mitte kann zentrieren */
}

.gallery-stack {
    display: grid;
    gap: 1.25rem;
    align-content: start;
}

/* Die Raumbilder bilden die Mitte und werden zum Anker: die mittlere Spalte
   bleibt kuerzer als die Seiten und haengt zentriert zwischen ihnen. */
.gallery-stack-center {
    align-content: center;
}

.gallery-collage .gallery-item {
    margin: 0;
    transition: transform 0.6s var(--ease-soft), box-shadow 0.6s var(--ease);
}

/* Bilder in voller Höhe -> object-fit croppt nicht mehr, alles bleibt sichtbar */
.gallery-collage .gallery-item img {
    height: auto;
    object-fit: contain;
    filter: saturate(0.95);
}

.gallery-collage .gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 50px -28px rgba(61, 58, 53, 0.5);
}

/* kein Zoom-Crop beim Hover – nur sanftes Aufleuchten */
.gallery-collage .gallery-item:hover img {
    transform: none;
    filter: saturate(1.08);
}

/* ==================== IMPULSE ==================== */
.impulse {
    background: var(--color-bg);
}

.impulse-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    perspective: 1200px;
    max-width: 900px;
    margin: 0 auto;
}

.impulse-card {
    position: relative;
    min-height: 240px;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
    border-radius: var(--radius-lg);
    transition: transform 0.5s var(--ease-soft);
}

.impulse-card:hover {
    transform: translateY(-8px);
}

.impulse-card:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
}

.impulse-card-inner {
    position: absolute;
    inset: 0;
    display: block;
    transform-style: preserve-3d;
    transition: transform 0.8s var(--ease-soft);
}

.impulse-card.flipped .impulse-card-inner {
    transform: rotateY(180deg);
}

.impulse-front,
.impulse-back {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    border-radius: var(--radius-lg);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.impulse-front {
    background: var(--color-card);
    box-shadow: var(--shadow-sm);
}

.impulse-ornament {
    font-size: 2rem;
    color: var(--color-accent);
}

.impulse-label {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.78rem;
    color: var(--color-text-soft);
    font-weight: 500;
}

.impulse-back {
    background: linear-gradient(135deg, var(--color-bg-warm), var(--color-rose));
    box-shadow: var(--shadow-md);
    transform: rotateY(180deg);
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.5;
    color: var(--color-text);
    text-align: center;
}

/* ==================== QUOTE ==================== */
.quote-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--color-bg-warm), var(--color-bg-soft));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote-section::before,
.quote-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.quote-section::before {
    background: var(--color-rose);
    top: -100px;
    left: -100px;
}

.quote-section::after {
    background: var(--color-sage);
    bottom: -100px;
    right: -100px;
}

/* -------- Wasser als stiller Grund hinter dem Zitat --------
   Die Datei ist klein (398x209); entsaettigt, halbtransparent und oben/unten
   ausgeblendet liest sie als Atmosphaere statt als Foto – die Weichheit wirkt
   dadurch gewollt. Der warme Schleier haelt den Text lesbar. */
.quote-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.quote-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 62%;
    opacity: 0.5;
    filter: saturate(0.7);
    -webkit-mask-image: linear-gradient(180deg, transparent, #000 28%, #000 72%, transparent);
    mask-image: linear-gradient(180deg, transparent, #000 28%, #000 72%, transparent);
}

.quote-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(250, 246, 241, 0.5), rgba(237, 227, 212, 0.7));
}

.quote-section blockquote {
    position: relative;
    z-index: 2;
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 300;
    font-style: italic;
    color: var(--color-text);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
    padding: 0 1.5rem;
}

.quote-section blockquote footer {
    margin-top: 2rem;
    font-size: 0.9rem;
    font-style: normal;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
    font-family: var(--font-sans);
    font-weight: 500;
}

/* Resonanz-Ringe – vom Erfolgs-Zustand im Anmelde-Modal genutzt */
@keyframes klangRing {
    0%   { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(2.6); opacity: 0; }
}

/* ==================== KONTAKT ==================== */
.kontakt {
    background: var(--color-bg-soft);
}

.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.kontakt-info p {
    color: var(--color-text-soft);
    margin-bottom: 2rem;
    font-size: 1.02rem;
}

.kontakt-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.kontakt-details li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--color-text);
    font-size: 0.97rem;
}

.kontakt-icon {
    width: 38px;
    height: 38px;
    background: var(--color-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

/* -------- Blume des Lebens als Abschluss unter den Kontaktdaten -------- */
.kontakt-ornament {
    margin-top: 3rem;
    margin-inline: auto;
    width: fit-content;
    color: var(--color-accent);
    opacity: 0.5;
}

.kontakt-ornament svg {
    width: 210px;
    height: 210px;
    max-width: 100%;
    display: block;
}

.kontakt-form {
    background: var(--color-card);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text);
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1.5px solid var(--color-line);
    border-radius: var(--radius-sm);
    background: var(--color-bg);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--color-text);
    transition: all 0.3s var(--ease);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(176, 137, 104, 0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(168, 184, 156, 0.2);
    color: #4a5e3f;
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 0.9rem;
    display: none;
}

.form-success.show {
    display: block;
    animation: fadeInPanel 0.5s var(--ease-soft);
}

/* ==================== ANMELDE-MODAL ==================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(61, 58, 53, 0.45);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    animation: fadeInPanel 0.35s var(--ease-soft);
}

.modal-overlay[hidden] {
    display: none;
}

.modal {
    position: relative;
    background: var(--color-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem;
    animation: modalauf 0.45s var(--ease-soft);
}

@keyframes modalauf {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: var(--color-bg-soft);
    color: var(--color-text);
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.modal-close:hover {
    background: var(--color-accent);
    color: #fff;
}

.modal-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 0.4rem;
    line-height: 1.25;
}

.modal-date {
    color: var(--color-text-soft);
    font-size: 0.92rem;
    margin-bottom: 1.75rem;
}

.form-error {
    background: rgba(216, 160, 160, 0.18);
    color: #a05252;
    padding: 0.8rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

/* Erfolgs-Zustand mit Resonanz-Ringen */
.modal-success {
    text-align: center;
    padding: 1.5rem 0 0.5rem;
    position: relative;
}

.modal-success h3 {
    font-family: var(--font-serif);
    font-size: 1.7rem;
    font-weight: 500;
    margin: 1.5rem 0 0.6rem;
}

.modal-success p {
    color: var(--color-text-soft);
    margin-bottom: 1.75rem;
}

.success-check {
    width: 72px;
    height: 72px;
    margin: 0 auto;
    border-radius: 50%;
    background: var(--color-sage);
    color: #fff;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.success-rings {
    position: absolute;
    top: 1.5rem;
    left: 50%;
    width: 72px;
    height: 72px;
    transform: translateX(-50%);
    pointer-events: none;
}

.success-rings span {
    position: absolute;
    inset: 0;
    border: 1.5px solid var(--color-sage);
    border-radius: 50%;
    opacity: 0;
    animation: klangRing 2s var(--ease-soft) forwards;
}

.success-rings span:nth-child(2) { animation-delay: 0.3s; }
.success-rings span:nth-child(3) { animation-delay: 0.6s; }

/* ==================== ANGEBOTS-DETAIL-MODAL ==================== */
.service-modal {
    max-width: 640px;
    text-align: left;
    padding: 2.75rem;
}

.service-modal .section-eyebrow {
    margin-bottom: 0.6rem;
}

.service-modal .modal-title {
    padding-right: 2.5rem;
    margin-bottom: 1.5rem;
}

.service-detail p {
    color: var(--color-text-soft);
    font-size: 0.98rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.service-detail h4 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color-text);
    margin: 1.9rem 0 0.75rem;
}

.service-detail strong {
    color: var(--color-text);
    font-weight: 600;
}

.service-detail a {
    color: var(--color-accent-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.service-detail a:hover {
    color: var(--color-accent);
}

.service-steps {
    counter-reset: step;
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
}

.service-steps li {
    position: relative;
    padding-left: 2.75rem;
    margin-bottom: 0.85rem;
    color: var(--color-text-soft);
    line-height: 1.6;
}

.service-steps li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0;
    top: -0.1rem;
    width: 1.9rem;
    height: 1.9rem;
    background: var(--color-bg-warm);
    color: var(--color-accent-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
}

.service-list {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
}

.service-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    color: var(--color-text-soft);
    line-height: 1.65;
}

.service-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 0.05rem;
    color: var(--color-accent);
    font-size: 0.8rem;
}

.service-prices {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
    border-top: 1px solid var(--color-line);
}

.service-prices li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-line);
    color: var(--color-text);
    font-size: 0.95rem;
}

.service-prices li span:last-child {
    font-weight: 600;
    color: var(--color-accent-dark);
    white-space: nowrap;
}

.service-price-line {
    background: var(--color-bg-soft);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1.1rem;
    color: var(--color-text) !important;
}

.service-facts {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
    border-top: 1px solid var(--color-line);
}

.service-facts li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-line);
    color: var(--color-text-soft);
    line-height: 1.6;
}

.service-facts li span:first-child {
    display: block;
    color: var(--color-accent-dark);
    font-weight: 600;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.2rem;
}

.service-cta {
    margin-top: 1.9rem;
}

.service-cta .btn {
    width: 100%;
    text-align: center;
}

.service-hinweis {
    margin-top: 1.25rem;
    padding-left: 0.9rem;
    border-left: 2px solid var(--color-line);
    font-size: 0.82rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--color-text-soft);
}

@media (max-width: 480px) {
    .service-modal {
        padding: 2rem 1.5rem;
    }
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--color-text);
    color: rgba(255, 255, 255, 0.75);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    color: #fff;
    margin-bottom: 0.25rem;
    display: inline-block;
}

.footer-logo em {
    color: var(--color-rose);
}

.footer-sub {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--color-rose);
    margin-bottom: 0.5rem !important;
    font-size: 1rem;
}

.footer-sub em {
    color: #fff;
    margin: 0 0.15em;
}

.footer h4 {
    color: #fff;
    font-family: var(--font-serif);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer ul li a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer ul li a:hover {
    color: var(--color-rose);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ==================== ANIMATIONS – REVEAL ==================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s var(--ease-soft), transform 1s var(--ease-soft);
}

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

.fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s var(--ease-soft) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== RESPONSIVE: TABLET ==================== */
@media (max-width: 992px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

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

    .hero-actions {
        justify-content: center;
    }

    .hero-subtitle,
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-portrait {
        max-width: 320px;
    }

    .kontakt-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    /* ab Tablet: Portrait nicht mehr umfließen, sondern zentriert gestapelt */
    .about-image {
        float: none;
        width: 100%;
        max-width: 340px;
        margin: 0.5rem auto 2.5rem;
    }

    .image-accent {
        top: -16px;
        left: -16px;
        right: auto;
    }

    .services-grid {
        max-width: 760px;
        margin: 0 auto;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }

    .gallery-item.wide {
        grid-column: span 2;
    }
}

/* ==================== RESPONSIVE: MOBILE ==================== */
@media (max-width: 768px) {
    .section {
        padding: 4.5rem 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--color-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        padding: 2rem;
        transition: right 0.5s var(--ease-soft);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.08);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        font-size: 1.1rem;
    }

    .nav-cta {
        margin-top: 1rem;
    }

    .hero {
        padding-top: 7rem;
        min-height: auto;
        padding-bottom: 4rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-portrait {
        max-width: 260px;
    }

    .logo-text {
        font-size: 1.15rem;
    }

    .logo-sub {
        font-size: 0.7rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .about-image {
        max-width: 280px;
    }

    .image-accent {
        top: -15px;
        left: -15px;
    }

    .vortrag-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .vortrag-date {
        margin: 0 auto;
    }

    .vortrag-meta {
        justify-content: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

    .gallery-item.wide,
    .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-collage {
        grid-template-columns: 1fr;
    }

    .impulse-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .kontakt-form {
        padding: 1.75rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .tabs-header {
        width: 100%;
    }

    .tab-btn {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
        flex: 1;
    }
}

/* ==================== RESPONSIVE: SMALL MOBILE ==================== */
@media (max-width: 420px) {
    .container {
        padding: 0 1.25rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-portrait {
        max-width: 220px;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .kontakt-form {
        padding: 1.5rem;
    }
}

/* ==================== REDUCED MOTION ==================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .floating-circle {
        animation: none;
    }
}

/* Kontaktformular: Honeypot-Feld unsichtbar (nicht display:none, damit Bots es finden) */
.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Kontaktformular: Fehlermeldung */
.form-error {
    margin-top: 0.75rem;
    color: #a15b5b;
    font-size: 0.95rem;
}
.form-error[hidden] { display: none; }
