/* ===== CSS Variables ===== */
:root {
    --primary-teal: #2d5a5e;
    --secondary-teal: #3d7075;
    --deep-teal: #1e4648;
    --accent-coral: #d4958d;
    --accent-coral-dark: #c07a72;
    --warm-beige: #f5f0eb;
    --warm-cream: #fbf7f2;
    --warm-sand: #ead9c7;
    --text-dark: #2a2a2a;
    --text-light: #ffffff;
    --text-muted: #6a6a6a;
    --text-soft: #8a8580;
    --color-border: rgba(45, 90, 94, 0.1);
    --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --header-offset: 80px;
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    /* Hero tuning */
    --hero-sky-warmth: 0.02;      /* Stärke des Orange-Glühens oben */
    --hero-sky-reach: 46%;        /* Wie weit der Orange-Glanz nach unten reicht */
    --hero-bottom-cool: 0.76;     /* Dunkelheit/Kühle unten */
    --hero-bottom-cool-deep: 0.96;/* Sehr unten extra dunkel */
    --hero-split: 38%;            /* Übergangspunkt warm->kühl */
    --hero-saturate: 1.4;         /* Sättigung des Himmels */
    --hero-portrait-zoom: 1.1;    /* Zoom-Stärke des Porträt-Medallions */
}

/* ===== Reset & Base ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; background: #1a1a1a; }
html, body { overflow-x: clip; }

body {
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-dark);
    background: var(--section-morph, #1a1a1a);
    transition: background-color 1.4s cubic-bezier(0.2, 0.6, 0.2, 1);
    font-size: 1rem;
    letter-spacing: 0.3px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; transition: color 0.3s ease; }
img { max-width: 100%; display: block; }

/* ===== Typography ===== */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 300;
    line-height: 1.3;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}
h1 {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    margin-bottom: 0.6em;
}
h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 0.5em;
}
h3 {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    margin-bottom: 0.7em;
    font-family: var(--font-body);
    font-weight: 500;
}
p {
    margin-bottom: 1.2em;
    line-height: 1.9;
    color: var(--text-muted);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== Header & Navigation ===== */
.header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 9999;
    background: transparent;
    transition: background var(--transition-smooth), box-shadow var(--transition-smooth), backdrop-filter var(--transition-smooth), top 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}
.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.06);
}
.header.header-hidden {
    /* Use top instead of transform to avoid creating a containing block
       that would trap position:fixed nav-menu */
    top: -120px;
}

main { padding-top: 0; }

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: #ffffff;
    transition: color var(--transition-smooth);
    text-decoration: none;
}
.header.scrolled .logo { color: var(--primary-teal); }
.header:not(.scrolled) .logo-mark { filter: drop-shadow(0 1px 3px rgba(0,0,0,0.4)) brightness(0) invert(1); }
.logo-img {
    object-fit: contain;
    background: transparent;
    mix-blend-mode: multiply;
}
.header:not(.scrolled) .logo-img { mix-blend-mode: normal; }
.logo-mark {
    width: 42px; height: 42px;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15));
    transition: transform var(--transition-smooth);
}
@media (hover: hover) {
    .logo:hover .logo-mark { transform: rotate(22deg); }
}
.logo-word {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.35rem;
    letter-spacing: 0.02em;
    line-height: 1;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
}
.nav-menu a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding: 0.3em 0;
    position: relative;
    transition: color 0.3s ease;
    text-shadow: 0 1px 8px rgba(0,0,0,0.25);
}
.header.scrolled .nav-menu a { color: var(--text-dark); text-shadow: none; }
.nav-menu a:hover { color: #f5d7a3; }
.header.scrolled .nav-menu a:hover { color: var(--primary-teal); }
.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -2px;
    width: 0; height: 2px;
    background: var(--accent-coral);
    transition: width 0.3s ease;
}
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }
.nav-menu a.active { color: #f5d7a3; }
.header.scrolled .nav-menu a.active { color: var(--primary-teal); }

#nav-toggle { display: none; }
.nav-toggle-label {
    display: none; cursor: pointer;
    width: 28px; height: 20px; position: relative;
    z-index: 10001;
}
.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block; position: absolute;
    width: 100%; height: 2.5px;
    background-color: #ffffff;
    border-radius: 2px; transition: all 0.3s ease;
    box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.header.scrolled .nav-toggle-label span,
.header.scrolled .nav-toggle-label span::before,
.header.scrolled .nav-toggle-label span::after {
    background-color: var(--text-dark);
    box-shadow: none;
}
.nav-toggle-label span { top: 9px; }
.nav-toggle-label span::before { content: ''; top: -7px; }
.nav-toggle-label span::after { content: ''; top: 7px; }

/* ===== Hero Section ===== */
.hero {
    position: relative;
    display: flex; align-items: center; justify-content: center;
    min-height: 100vh;
    padding: clamp(6rem, 10vw, 8rem) 1.5rem clamp(3rem, 6vw, 5rem);
    color: var(--text-light);
    text-align: left;
    overflow: hidden;
    background: #1a1f24;
}
.hero-bg {
    position: absolute; inset: 0;
    z-index: 0;
    overflow: hidden;
}
.hero-bg-image {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    will-change: transform;
    filter: saturate(var(--hero-saturate)) contrast(1.10) brightness(0.95);
}
.hero-bg-overlay {
    position: absolute; inset: 0;
    background:
        /* Unten: kühl + dunkel. Oben: transparent, damit Orange durchglüht */
        linear-gradient(180deg,
            rgba(20, 25, 35, 0.06) 0%,
            rgba(20, 25, 35, 0.18) var(--hero-split),
            rgba(15, 25, 40, var(--hero-bottom-cool)) 80%,
            rgba(10, 18, 30, var(--hero-bottom-cool-deep)) 100%),
        /* Sanfter Amber-Glow oben (wo der Himmel ist) */
        radial-gradient(ellipse 90% var(--hero-sky-reach) at 55% 10%,
            rgba(255, 150, 60, var(--hero-sky-warmth)) 0%,
            rgba(255, 120, 40, 0.0) 65%);
}
.hero-texture {
    position: absolute; inset: 0;
    background-image:
        /* Warmer Glow nur oben */
        radial-gradient(circle at 50% 15%, rgba(255, 170, 80, 0.12) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: screen;
}
/* Warm radial glow that drifts with scroll (parallax-linked) */
.hero-glow {
    position: absolute;
    top: 50%; left: 50%;
    width: 120%; height: 120%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at 55% 35%,
        rgba(255, 165, 90, 0.28) 0%,
        rgba(255, 130, 60, 0.12) 25%,
        rgba(255, 100, 40, 0.0) 55%);
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: screen;
    will-change: transform, opacity;
    transition: opacity 0.4s ease;
}
/* subtle organic line bottom */
.hero::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0; height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
    z-index: 2;
}
.hero-content { position: relative; z-index: 2; width: 100%; }


/* ===== Variant 2: Sunset + Medallion ===== */
.hero-v2 {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}
.hero-v2-text {
    max-width: 760px;
    margin: 0 auto 2.5rem;
    animation: heroFadeIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both 0.2s;
}
.hero-v2-text .hero-eyebrow {
    display: inline-block;
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 400;
    margin-bottom: 0.4rem;
}
.hero-v2-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    font-weight: 300;
    line-height: 1.02;
    letter-spacing: -0.02em;
    color: var(--text-light);
    margin: 0.8rem 0 1.4rem;
}
.hero-v2-sub {
    color: rgba(255,255,255,0.82);
    font-size: clamp(1.15rem, 1.7vw, 1.35rem);
    max-width: 720px;
    margin: 0 auto 1.8rem;
    line-height: 1.65;
}
.hero-v2 .hero-ctas { justify-content: center; }
.hero-v2-medallion-wrap {
    position: relative;
    width: clamp(180px, 22vw, 240px);
    margin: 2.5rem auto 1.5rem;
    animation: heroFadeIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both 0.5s;
}
.hero-v2-medallion {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255,255,255,0.9);
    box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}
.hero-v2-medallion img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: 67% 15%;
    transform: scale(var(--hero-portrait-zoom));
    transform-origin: 67% 15%;
}
.hero-v2-medallion-ring {
    position: absolute;
    inset: -14px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    pointer-events: none;
}
.hero-v2-meta {
    display: flex;
    justify-content: center;
    gap: 0.7rem;
    flex-wrap: wrap;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    animation: heroFadeIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both 0.7s;
}
.hero-v2-meta .sep { opacity: 0.4; }


.hero-scroll {
    position: absolute;
    left: 50%; bottom: 2rem;
    transform: translateX(-50%);
    width: 26px; height: 42px;
    border: 1.5px solid rgba(255,255,255,0.6);
    border-radius: 13px;
    opacity: 0.75;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 3;
}
.hero-scroll:hover { opacity: 1; transform: translate(-50%, 2px); }
.hero-scroll span {
    position: absolute;
    left: 50%; top: 7px;
    width: 2.5px; height: 7px;
    background: #ffffff;
    border-radius: 2px;
    transform: translateX(-50%);
    animation: heroScrollDot 1.8s ease-in-out infinite;
}
@keyframes heroScrollDot {
    0%, 100% { transform: translate(-50%, 0); opacity: 0.9; }
    50% { transform: translate(-50%, 12px); opacity: 0.3; }
}
@keyframes heroFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Pretty ampersand style — modern open Manrope form, light weight */
.amp {
    font-family: var(--font-body);
    font-weight: 300;
    font-style: normal;
    font-size: 1em;
    color: inherit;
    letter-spacing: 0;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 0.85rem 1.6rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.92rem;
    font-family: var(--font-body);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}
.btn::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}
.btn:active::after {
    width: 300px; height: 300px;
}
.btn-primary {
    background: var(--primary-teal);
    color: var(--text-light);
    border-color: var(--primary-teal);
}
.btn-primary:hover {
    background: var(--secondary-teal);
    border-color: var(--secondary-teal);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 90, 94, 0.3);
    color: var(--text-light);
}
.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border-color: rgba(255,255,255,0.4);
}
.btn-secondary:hover {
    border-color: rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
    color: var(--text-light);
}
.btn-ghost {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255,255,255,0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.btn-ghost:hover {
    border-color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.12);
    transform: translateY(-2px);
    color: var(--primary-teal);
}
.btn:focus-visible {
    outline: 2px solid var(--accent-coral);
    outline-offset: 2px;
}

/* ===== Sections ===== */
.section {
    padding: clamp(4rem, 8vw, 7rem) 0;
    /* Native anchor jumps land near the top of the section's content,
       not before the section's padding — so we offset by header height
       and let the section's own padding-top provide breathing room.
       Modern browsers respect this for #hash + scrollIntoView. */
    scroll-margin-top: var(--header-offset);
}
.hero {
    scroll-margin-top: 0;
}
/* Universal anchor target spacing — applies to any non-section [id] target */
[id]:target:not(.hero):not(.section) {
    scroll-margin-top: var(--header-offset);
}
.section > .container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}
.section-label {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--accent-coral);
    margin-bottom: 0.8rem;
    display: block;
    text-align: center;
}
.section h2 {
    margin-bottom: 1.2rem;
}
.section-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3.5rem;
    color: var(--text-muted);
}

/* ===== Trust Bar ===== */
.trust-bar {
    position: relative;
    background: var(--warm-cream);
    padding: clamp(2rem, 4vw, 2.8rem) 0;
    border-top: 1px solid var(--color-border);
    border-bottom: none;
    overflow: hidden;
}
.trust-bar::before,
.trust-bar::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    opacity: 0.5;
}
.trust-bar::before {
    left: -140px;
    background: radial-gradient(circle, rgba(212, 149, 141, 0.10), transparent 65%);
}
.trust-bar::after {
    right: -140px;
    background: radial-gradient(circle, rgba(45, 90, 94, 0.08), transparent 65%);
}
.trust-bar-inner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(1rem, 2.4vw, 2.4rem);
    flex-wrap: wrap;
    z-index: 1;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.86rem;
    font-weight: 400;
    color: var(--text-dark);
    letter-spacing: 0.4px;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.trust-item.visible {
    opacity: 1;
    transform: translateY(0);
}
.trust-item:nth-child(1) { transition-delay: 0.05s; }
.trust-item:nth-child(3) { transition-delay: 0.18s; }
.trust-item:nth-child(5) { transition-delay: 0.31s; }
/* Hairline separator between trust items */
.trust-sep {
    display: inline-block;
    width: 1px;
    height: 22px;
    background: linear-gradient(180deg, transparent 0%, var(--color-border) 30%, var(--color-border) 70%, transparent 100%);
    flex-shrink: 0;
    opacity: 0;
    transform: scaleY(0.4);
    transform-origin: center;
    transition: opacity 0.7s ease 0.25s, transform 0.7s ease 0.25s;
}
.trust-bar-inner:has(.trust-item.visible) .trust-sep {
    opacity: 1;
    transform: scaleY(1);
}

.trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    background: #ffffff;
    color: var(--primary-teal);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(45, 90, 94, 0.06);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s ease,
                border-color 0.4s ease,
                color 0.4s ease;
}
.trust-icon svg {
    width: 16px;
    height: 16px;
    display: block;
}
.trust-item:hover .trust-icon {
    transform: translateY(-2px);
    border-color: var(--accent-coral);
    color: var(--accent-coral-dark);
    box-shadow: 0 8px 18px rgba(45, 90, 94, 0.12);
}

/* ===== Scroll Animation Classes ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}
.scale-in {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* ===== Shared Section Heads ===== */
.section-head {
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
    max-width: 860px;
}
.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-coral-dark);
    margin-bottom: 1.1rem;
    position: relative;
    padding-left: 2.2rem;
}
.section-head.center .section-eyebrow { padding-left: 0; padding-right: 0; }
.section-eyebrow::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    width: 1.6rem; height: 1px;
    background: var(--accent-coral);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.7s 0.1s cubic-bezier(.19,1,.22,1);
}
.section-head.center .section-eyebrow::before { display: none; }
.reveal.visible .section-eyebrow::before,
.section-head.visible .section-eyebrow::before { transform: scaleX(1); }
.section-title {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: clamp(2rem, 4.2vw, 3.2rem);
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--text-dark);
    margin: 0;
    padding-left: 4.3rem;
}
.section-head.center .section-title { padding-left: 0; }
.section-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--primary-teal);
    position: relative;
}
.section-sub {
    margin-top: clamp(2.2rem, 4vw, 3.4rem);
    color: var(--text-muted);
    font-size: 1.02rem;
}

/* Typographic ampersand refinement (& überall klarer + schöner) */
.section-title em,
.about-list-items,
.hardfacts-list li,
.about-value-row {
    font-feature-settings: "ss01", "liga", "dlig";
}

/* ===== Reveal motion ===== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.9s cubic-bezier(.19,1,.22,1), transform 0.9s cubic-bezier(.19,1,.22,1);
    will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
/* Stagger only on entry; on exit, no delay so they fade together */
.reveal[style*="--i:0"].visible { transition-delay: 0s; }
.reveal[style*="--i:1"].visible { transition-delay: 0.08s; }
.reveal[style*="--i:2"].visible { transition-delay: 0.16s; }
.reveal[style*="--i:3"].visible { transition-delay: 0.24s; }
.reveal[style*="--i:4"].visible { transition-delay: 0.32s; }
.reveal:not(.visible) { transition-delay: 0s !important; }

/* Section headings: opacity-only reveal, no slide-up */
.section-head.reveal,
.about-hello.reveal,
.approach.reveal {
    transform: none;
}
.section-head.reveal.visible,
.about-hello.reveal.visible,
.approach.reveal.visible {
    transform: none;
}

/* ===== 1. Psychologische Beratung ===== */
.section.beratung {
    background:
        radial-gradient(1100px 540px at 85% -8%, rgba(212,149,141,0.10), transparent 65%),
        #ffffff;
    position: relative;
}
.beratung-intro {
    max-width: 820px;
    margin-bottom: clamp(3rem, 5vw, 4.5rem);
}
.lead-paragraph {
    font-family: var(--font-heading);
    font-weight: 300;
    font-style: italic;
    font-size: clamp(1.15rem, 1.8vw, 1.35rem);
    line-height: 1.55;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.005em;
}

/* Process steps */
.process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
    position: relative;
}
.process-line {
    position: absolute;
    top: 52px;
    left: 7%;
    right: 7%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(45,90,94,0.25), rgba(45,90,94,0.25), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.8s cubic-bezier(.19,1,.22,1) 0.3s;
    z-index: 0;
}
.process.in-view .process-line { transform: scaleX(1); }

.step {
    position: relative;
    padding: 2rem 1.4rem 1.8rem;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid var(--color-border);
    transition: transform 0.5s cubic-bezier(.19,1,.22,1), box-shadow 0.5s cubic-bezier(.19,1,.22,1), border-color 0.4s ease;
    z-index: 1;
}
.step::before {
    content: '';
    position: absolute;
    left: 50%; top: 22px;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--accent-coral);
    transform: translate(-50%, -50%) scale(0);
    box-shadow: 0 0 0 0 rgba(212,149,141,0.4);
    transition: transform 0.6s cubic-bezier(.34,1.56,.64,1), box-shadow 0.5s ease;
    z-index: 2;
}
.step.visible::before {
    transform: translate(-50%, -50%) scale(1);
}
.step:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 42px -18px rgba(45,90,94,0.22);
    border-color: rgba(212,149,141,0.4);
}
.step:hover::before {
    box-shadow: 0 0 0 8px rgba(212,149,141,0.12);
}
.step-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent-coral);
    letter-spacing: 0.02em;
    margin-bottom: 1.8rem;
    display: block;
}
.step-label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: clamp(1.3rem, 2vw, 1.65rem);
    color: var(--primary-teal);
    letter-spacing: 0.02em;
    margin-bottom: 0.6rem;
    line-height: 1.15;
    text-transform: none;
}
.step-sub {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}
.step p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* Info notice */
.info-notice {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 1.2rem;
    padding: 1.6rem 1.8rem;
    background: rgba(212, 149, 141, 0.07);
    border-left: 3px solid var(--accent-coral);
    border-radius: 6px;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
    align-items: start;
}
.info-notice-icon {
    color: var(--accent-coral-dark);
    width: 28px; height: 28px;
    margin-top: 2px;
}
.info-notice-icon svg { width: 28px; height: 28px; display: block; }
.info-notice-title {
    display: block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-coral-dark);
    margin-bottom: 0.4rem;
}
.info-notice-body p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.7;
}

/* Approach */
.approach {
    max-width: 820px;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}
.approach-title {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    color: var(--primary-teal);
    margin-bottom: 0.8rem;
}
.approach p {
    font-size: 1.02rem;
    color: var(--text-muted);
    line-height: 1.85;
}

/* Pricing */
.pricing {
    position: relative;
    padding: clamp(2rem, 3.5vw, 2.8rem);
    background: var(--warm-cream);
    border: 1px solid var(--color-border);
    border-radius: 18px;
    overflow: hidden;
    max-width: 820px;
}
.pricing::before {
    content: '';
    position: absolute;
    top: -40%; right: -10%;
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(212,149,141,0.18), transparent 60%);
    pointer-events: none;
}
.pricing-head {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.2rem;
    position: relative;
}
.pricing-amount {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: clamp(2.8rem, 5vw, 3.8rem);
    line-height: 1;
    color: var(--primary-teal);
    letter-spacing: -0.02em;
}
.pricing-unit {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}
.pricing-unit .dot { margin: 0 0.4rem; color: var(--accent-coral); }
.pricing-hint {
    position: relative;
    font-size: 0.98rem;
    color: var(--text-dark);
    line-height: 1.75;
    margin-bottom: 0.9rem;
}
.pricing-hint:last-of-type { margin-bottom: 1.5rem; }
.pricing-cta { position: relative; }


/* ===== 2. Schwerpunkte ===== */
.section.focus {
    background: var(--warm-beige);
    position: relative;
    overflow: hidden;
}
.section.focus::before {
    content: '';
    position: absolute;
    top: -120px; left: -120px;
    width: 420px; height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,149,141,0.12), transparent 65%);
    pointer-events: none;
}
.focus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.focus-card {
    position: relative;
    padding: clamp(2rem, 3vw, 2.6rem);
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(.19,1,.22,1), box-shadow 0.5s cubic-bezier(.19,1,.22,1);
    isolation: isolate;
}
.focus-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212,149,141,0.09) 0%, rgba(45,90,94,0.04) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}
.focus-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -30px rgba(45,90,94,0.25);
}
.focus-card:hover::before { opacity: 1; }
.focus-card-num {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 2.4rem;
    color: var(--accent-coral);
    opacity: 0.7;
    line-height: 1;
    margin-bottom: 1.2rem;
    transition: transform 0.5s cubic-bezier(.19,1,.22,1), opacity 0.4s ease;
}
.focus-card:hover .focus-card-num {
    transform: translateY(-4px);
    opacity: 1;
}
.focus-card h3 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: clamp(1.25rem, 1.8vw, 1.5rem);
    color: var(--primary-teal);
    margin-bottom: 0.6rem;
    line-height: 1.25;
    /* Reserve room for two lines so single-line and two-line titles
       across the four cards stay vertically aligned. */
    min-height: calc(2 * 1.25em);
}
.focus-card p {
    font-size: 0.98rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
    /* Reserve room for the longest description so the paragraph baseline
       aligns vertically across all four cards regardless of text length. */
    min-height: calc(3 * 1.7em);
}
.focus-more {
    text-align: center;
    padding: clamp(1.5rem, 2.5vw, 2rem);
    border-top: 1px solid rgba(45,90,94,0.12);
    border-bottom: 1px solid rgba(45,90,94,0.12);
}
.focus-more p {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    color: var(--text-dark);
    margin: 0;
    line-height: 1.5;
    letter-spacing: -0.005em;
}
.focus-more em {
    font-style: italic;
    color: var(--primary-teal);
    font-weight: 400;
}

/* ===== 3. Über mich ===== */
.section.about {
    background: #ffffff;
    position: relative;
}
.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: start;
}
.about-col-text > * + * { margin-top: clamp(2rem, 3vw, 2.6rem); }

.about-hello-kicker {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 300;
    font-size: 1.3rem;
    color: var(--accent-coral);
    margin-bottom: 0.1rem;
}
.about-hello-title {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--text-dark);
    margin: 0 0 0.5rem;
    letter-spacing: -0.01em;
    line-height: 1.1;
}
.about-hello-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--primary-teal);
}
.about-hello-traits {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.92rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 0;
}

/* "Ich bin" list */
.about-list {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.2rem 2rem;
    align-items: start;
    padding: 1.6rem 0;
    border-top: 1px solid rgba(45,90,94,0.12);
    border-bottom: 1px solid rgba(45,90,94,0.12);
}
.about-list-intro { padding-top: 0.25rem; }
.about-list-label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 400;
    font-style: italic;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--primary-teal);
    line-height: 1;
}
.about-list-items {
    list-style: none;
    margin: 0;
    padding: 0;
}
.about-list-items li {
    position: relative;
    padding: 0.55rem 0;
    font-size: 1.02rem;
    color: var(--text-dark);
    line-height: 1.55;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.8rem;
    align-items: baseline;
}
.about-dash {
    color: var(--accent-coral);
    font-weight: 400;
    transform: translateY(-1px);
}

/* Values */
.about-values {
    display: grid;
    gap: 0.9rem;
}
.about-value-row {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 1.2rem;
    align-items: baseline;
    padding: 0.6rem 0;
}
.about-value-label {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-coral-dark);
}
.about-value-text {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 300;
    font-size: 1.15rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.about-story {
    padding: 1.4rem 1.6rem;
    background: var(--warm-cream);
    border-left: 3px solid var(--accent-coral);
    border-radius: 6px;
}
.about-story p {
    margin: 0;
    font-size: 0.98rem;
    color: var(--text-dark);
    line-height: 1.8;
}

/* Photo column */
.about-col-media {
    display: grid;
    gap: 1.2rem;
    align-items: start;
    min-width: 0;
}
.about-photo {
    margin: 0;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 25px 50px -20px rgba(45,90,94,0.28);
    position: relative;
}
.about-photo img,
.about-photo .img-placeholder {
    width: 100%;
    display: block;
    transition: transform 1.2s cubic-bezier(.19,1,.22,1);
}
.about-photo:hover img {
    transform: scale(1.04);
}
.about-bottom-row {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: stretch;
    margin-top: clamp(2.5rem, 5vw, 4rem);
}
.about-photo {
    margin: 0;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 25px 50px -20px rgba(45,90,94,0.28);
    position: relative;
    width: 100%;
}
.about-photo-main {
    aspect-ratio: 4 / 5;
    max-height: 720px;
}
.about-photo-main img { height: 100%; object-fit: cover; }
.about-photo-secondary {
    aspect-ratio: 16 / 10;
    max-height: 320px;
}
.about-photo-secondary img { height: 100%; object-fit: cover; object-position: center 30%; }
.about-photo-secondary .img-placeholder { height: 100%; min-height: 0; }

.about-photo-side {
    width: 100%;
    align-self: stretch;
    min-width: 0;
}
.about-photo-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.about-hardfacts {
    margin-top: 0.8rem;
    padding: 1.8rem;
    background: var(--warm-beige);
    border-radius: 14px;
}
.about-hardfacts h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-coral-dark);
    margin: 0 0 1rem;
}
.about-hardfacts-sub {
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.1em;
}
.hardfacts-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}
.hardfacts-list li {
    font-size: 0.93rem;
    line-height: 1.55;
    color: var(--text-dark);
    padding-left: 1.2rem;
    position: relative;
}
.hardfacts-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 0.7em;
    width: 6px; height: 1px;
    background: var(--accent-coral);
}

/* ===== 4. Beratungsraum ===== */
.section.room {
    background: var(--warm-beige);
    position: relative;
    overflow: hidden;
}
.room-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: center;
}
.room-copy { max-width: 520px; }
.room-copy p {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.9;
    margin-bottom: 1.4rem;
}
.room-pull {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: clamp(1.5rem, 3vw, 2.2rem) !important;
    color: var(--primary-teal) !important;
    line-height: 1.3 !important;
    margin-top: 1.5rem !important;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(45,90,94,0.15);
}
.room-pull em {
    font-style: italic;
    color: var(--accent-coral-dark);
}

.room-expect {
    margin-top: 1.8rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(45,90,94,0.12);
    margin-bottom: 1.8rem;
}
.room-expect-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-coral-dark);
    margin-bottom: 0.85rem;
}
.room-expect-list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}
.room-expect-list li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.96rem;
    color: var(--text-dark);
    line-height: 1.5;
}
.room-expect-list li::before {
    content: '';
    flex-shrink: 0;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--primary-teal);
    opacity: 0.7;
}

.room-media {
    position: relative;
    display: grid;
    gap: 1.2rem;
    grid-template-columns: 1fr;
}
.room-photo {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 25px 55px -22px rgba(45,90,94,0.3);
}
.room-photo-primary { aspect-ratio: 4/3; }
.room-photo-secondary {
    aspect-ratio: 16/10;
    width: 75%;
    margin-left: auto;
    margin-top: -3rem;
    position: relative;
    z-index: 2;
    border: 4px solid var(--warm-beige);
}
.room-photo .img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 0;
}

/* ===== 5. Rezensionen ===== */
.section.reviews {
    background: #ffffff;
}
.reviews-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 2vw, 1.6rem);
}
.review-card {
    background: var(--warm-cream);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    padding: 1.6rem 1.6rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    transition: transform 0.5s cubic-bezier(.19,1,.22,1), box-shadow 0.5s cubic-bezier(.19,1,.22,1);
    box-shadow: 0 8px 24px -16px rgba(45,90,94,0.18);
}
.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px -20px rgba(45,90,94,0.28);
}
.review-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.review-stars {
    color: var(--accent-coral);
    font-size: 1.05rem;
    letter-spacing: 0.12em;
    line-height: 1;
}
.review-google {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    display: block;
}
.review-star-empty {
    color: rgba(212, 149, 141, 0.28);
}
.review-text {
    font-size: 0.97rem;
    line-height: 1.65;
    color: var(--text-dark);
    margin: 0;
    flex-grow: 1;
    font-style: italic;
}
.review-meta {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    border-top: 1px solid var(--color-border);
    padding-top: 0.8rem;
    margin-top: 0.2rem;
}
.review-author {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1.05rem;
    color: var(--primary-teal);
    letter-spacing: 0.01em;
}
.review-date {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}
.reviews-cta {
    display: flex;
    justify-content: center;
    margin-top: clamp(2.4rem, 4.5vw, 3.6rem);
    perspective: 800px;
}

/* ===== Prominent Reviews CTA — solid teal, Google-G icon, scroll-in animation ===== */
.reviews-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1.05rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--secondary-teal) 100%);
    border: 1px solid var(--primary-teal);
    border-radius: 999px;
    box-shadow:
        0 10px 30px rgba(45, 90, 94, 0.28),
        0 2px 6px rgba(45, 90, 94, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(40px) scale(0.92);
    opacity: 0;
    transition:
        transform 0.9s cubic-bezier(0.19, 1, 0.22, 1),
        opacity 0.9s cubic-bezier(0.19, 1, 0.22, 1),
        box-shadow 0.4s ease,
        background 0.4s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    white-space: nowrap;
}
/* Scroll-triggered entrance via .reveal.visible on the parent */
.reviews-cta.visible .reviews-cta-btn {
    transform: translateY(0) scale(1);
    opacity: 1;
    transition-delay: 0.15s;
}
/* Soft animated shimmer that runs once after the button enters */
.reviews-cta-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        100deg,
        transparent 0%,
        rgba(255, 255, 255, 0.18) 45%,
        rgba(255, 255, 255, 0.32) 50%,
        rgba(255, 255, 255, 0.18) 55%,
        transparent 100%
    );
    transform: skewX(-20deg);
    pointer-events: none;
    opacity: 0;
}
.reviews-cta.visible .reviews-cta-btn::after {
    animation: reviewsCtaShimmer 1.4s ease 1.1s 1 forwards;
}
@keyframes reviewsCtaShimmer {
    0%   { left: -75%; opacity: 0; }
    20%  { opacity: 1; }
    100% { left: 130%; opacity: 0; }
}
.reviews-cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 18px 45px rgba(45, 90, 94, 0.38),
        0 4px 10px rgba(45, 90, 94, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    background: linear-gradient(135deg, var(--secondary-teal) 0%, var(--primary-teal) 100%);
}
.reviews-cta-btn:active {
    transform: translateY(-1px) scale(1);
    transition-duration: 0.15s;
}
.reviews-cta-g {
    width: 22px;
    height: 22px;
    background: #ffffff;
    border-radius: 50%;
    padding: 3px;
    flex-shrink: 0;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.6);
}
.reviews-cta-arrow {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.reviews-cta-btn:hover .reviews-cta-arrow {
    transform: translateX(4px);
}
@media (max-width: 600px) {
    .reviews-cta-btn {
        padding: 0.95rem 1.5rem;
        font-size: 0.92rem;
        gap: 0.65rem;
        white-space: normal;
        text-align: center;
    }
    .reviews-cta-g { width: 20px; height: 20px; }
    .reviews-cta-arrow { width: 16px; height: 16px; }
}
@media (max-width: 900px) {
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .reviews-grid { grid-template-columns: 1fr; }
}

/* ===== 6. Kontakt ===== */
.section.contact {
    background:
        radial-gradient(900px 500px at 100% 0%, rgba(212,149,141,0.18), transparent 65%),
        radial-gradient(800px 400px at 0% 100%, rgba(61,112,117,0.20), transparent 65%),
        var(--primary-teal);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}
.section.contact .section-title { color: var(--text-light); }
.section.contact .section-title em { color: var(--accent-coral); }
.section.contact .section-eyebrow { color: rgba(255,255,255,0.7); }
.section.contact .section-eyebrow::before { background: rgba(255,255,255,0.5); }

.contact-card-centered {
    max-width: 680px;
    margin: 0 auto clamp(3rem, 5vw, 4.5rem);
    text-align: center;
    padding: clamp(2rem, 4vw, 3rem);
    position: relative;
}
.contact-card-name h3 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--text-light);
    margin: 0 0 0.3rem;
    letter-spacing: -0.005em;
}
.contact-card-role {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 300;
    font-size: 1.1rem;
    color: var(--accent-coral);
    margin: 0 0 2rem;
}

.contact-card-lines {
    display: grid;
    gap: 0.9rem;
    margin: 0 auto 2rem;
    max-width: 420px;
}
.contact-line {
    display: grid;
    grid-template-columns: 100px 1fr;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1.2rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    text-align: left;
    transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s cubic-bezier(.19,1,.22,1);
}
.contact-line:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(212,149,141,0.5);
    transform: translateY(-2px);
}
.contact-line-label {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}
.contact-line-value {
    font-size: 1.02rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.01em;
}

.contact-methods-row {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.contact-method {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    padding: 0.4rem 1rem;
    background: rgba(255,255,255,0.05);
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
}
.contact-tagline {
    color: rgba(255,255,255,0.78);
    font-size: 0.98rem;
    margin: 0 auto 1.8rem;
    max-width: 520px;
    line-height: 1.7;
}
.contact-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.contact-instagram {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin: 1.4rem auto 0;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    color: rgba(255,255,255,0.85);
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
    width: fit-content;
}
.contact-instagram:hover {
    color: #ffffff;
    background: rgba(255,255,255,0.08);
    transform: translateY(-1px);
}
.contact-instagram-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex-shrink: 0;
}
.section.contact .btn-primary {
    background: var(--accent-coral);
    border-color: var(--accent-coral);
    color: var(--text-light);
}
.section.contact .btn-primary:hover {
    background: var(--accent-coral-dark);
    border-color: var(--accent-coral-dark);
    transform: translateY(-2px);
}
.section.contact .btn-ghost {
    color: var(--text-light);
    border-color: rgba(255,255,255,0.3);
}
.section.contact .btn-ghost:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}

/* Contact location */
.contact-location {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    padding-top: clamp(2rem, 4vw, 3rem);
    border-top: 1px solid rgba(255,255,255,0.12);
}
.contact-location-info h3 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1.6rem;
    color: var(--text-light);
    margin: 0 0 0.8rem;
    letter-spacing: -0.005em;
}
.contact-address {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.contact-location-facts {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.65rem;
}
.contact-location-facts li {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    padding-left: 1.2rem;
    position: relative;
    line-height: 1.6;
}
.contact-location-facts li::before {
    content: '';
    position: absolute;
    left: 0; top: 0.65em;
    width: 6px; height: 1px;
    background: var(--accent-coral);
}
.contact-location-facts strong {
    color: var(--text-light);
    font-weight: 600;
}

.contact-location-map {
    margin: 0;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px -25px rgba(0,0,0,0.45);
    aspect-ratio: 16/10;
    background: rgba(255,255,255,0.06);
}
.contact-location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Responsive tweaks for new sections */
@media (max-width: 1100px) {
    .about-col-media { position: static; }
}
@media (max-width: 900px) {
    .process { grid-template-columns: repeat(2, 1fr); }
    .process-line { display: none; }
    .about-layout { grid-template-columns: 1fr; }
    .about-bottom-row { grid-template-columns: 1fr; gap: 1.5rem; }
    .focus-grid { grid-template-columns: 1fr; }
    .room-layout { grid-template-columns: 1fr; }
    .contact-location { grid-template-columns: 1fr; }
    .room-photo-secondary { width: 88%; }
}
@media (max-width: 600px) {
    .process { grid-template-columns: 1fr; }
    .contact-line { grid-template-columns: 1fr; gap: 0.2rem; }
    .about-list { grid-template-columns: 1fr; gap: 0.8rem; }
    .about-value-row { grid-template-columns: 1fr; gap: 0.2rem; padding: 0.4rem 0; }
    .about-col-media { grid-template-columns: 1fr; }
    .contact-card-lines { grid-template-columns: 1fr; }
    .pricing-head { flex-direction: column; gap: 0.3rem; align-items: flex-start; }
}

/* ===== Footer ===== */
.footer {
    background: #1e4648;
    color: rgba(255,255,255,0.6);
    padding: 2.5rem 0;
    font-size: 0.88rem;
}
.footer-inner {
    display: flex; flex-direction: column;
    align-items: center; gap: 0.8rem;
}
.footer-nav a {
    color: rgba(255,255,255,0.5);
    margin: 0 0.8rem;
    font-weight: 400;
    transition: color 0.3s ease;
    letter-spacing: 0.3px;
    position: relative;
}
.footer-nav a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -2px;
    width: 0; height: 1px;
    background: var(--accent-coral);
    transition: width 0.3s ease;
}
.footer-nav a:hover { color: var(--accent-coral); }
.footer-nav a:hover::after { width: 100%; }

.note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 1.2rem;
}

/* ===== Image Placeholders ===== */
.img-placeholder {
    background: repeating-linear-gradient(135deg, #efe8e1 0 10px, #e7dfd5 10px 20px);
    border: 1px dashed rgba(45, 90, 94, 0.25);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-teal);
    font-family: 'Courier New', monospace;
    font-size: 0.82rem;
    letter-spacing: 0.03em;
    text-align: center;
    padding: 1rem;
    min-height: 180px;
}
.img-placeholder span {
    opacity: 0.7;
}


/* ===== Responsive (legacy cleanup) ===== */
@media (max-width: 1024px) {
    .trust-bar-inner { gap: 1.5rem; }
}

@media (max-width: 1100px) {
    /* Nav switches to hamburger here — 7 items are too wide */
    .nav-menu {
        position: fixed; top: 0; right: 0;
        height: 100%; width: min(360px, 82%);
        background: var(--warm-cream);
        background-image: none;
        flex-direction: column; align-items: flex-start;
        padding: 5.5rem 2rem 2rem; gap: 0.4rem;
        transform: translateX(100%);
        transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: -2px 0 12px rgba(0,0,0,0.12);
        z-index: 10000;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        will-change: transform;
    }
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(45, 90, 94, 0.08);
    }
    .nav-menu li:last-child { border-bottom: none; }
    .nav-menu a {
        color: var(--text-dark) !important;
        display: block;
        padding: 1rem 0 !important;
        font-family: var(--font-heading);
        font-weight: 400;
        font-size: 1.15rem;
        letter-spacing: 0.01em;
    }
    .nav-menu a:hover { color: var(--primary-teal) !important; padding-left: 0.4rem !important; }
    .nav-menu a::after { display: none; }
    .nav-menu a.active { color: var(--primary-teal) !important; font-style: italic; }

    .nav-toggle-label { display: block; }
    /* On mobile, header must NOT create a containing block for fixed nav-menu.
       backdrop-filter creates one, so we drop it on mobile and use solid color. */
    .header {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        transition: background var(--transition-smooth), box-shadow var(--transition-smooth), top 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .header.scrolled {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: var(--warm-cream);
    }
    /* Backdrop when menu open */
    #nav-toggle:checked ~ .nav-menu,
    body.nav-open .nav-menu { transform: translateX(0) !important; }
    #nav-toggle:checked + .nav-toggle-label + .nav-menu,
    body:has(#nav-toggle:checked),
    body.nav-open { overflow: hidden; }
    body:has(#nav-toggle:checked)::before,
    body.nav-open::before {
        content: '';
        position: fixed; inset: 0;
        background: rgba(10, 18, 28, 0.72);
        z-index: 9998;
        animation: fadeInBackdrop 0.3s ease;
    }
    /* Header solid weiß, sobald das Menü offen ist (egal ob scrolled) */
    body:has(#nav-toggle:checked) .header,
    body.nav-open .header {
        background: var(--warm-cream);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    /* Hero komplett aus dem GPU-Compositing-Stack nehmen wenn Nav offen.
       visibility:hidden behält das Layout, entfernt aber die Darstellung.
       Der Wildcard * schaltet jeden einzelnen GPU-Layer ab. */
    body:has(#nav-toggle:checked) #start,
    body.nav-open #start {
        visibility: hidden;
    }
    body:has(#nav-toggle:checked) #start *,
    body.nav-open #start * {
        animation: none !important;
        -webkit-animation: none !important;
        filter: none !important;
        -webkit-filter: none !important;
        will-change: auto !important;
        transform: none !important;
        transition: none !important;
    }
    body:has(#nav-toggle:checked) .logo-mark,
    body.nav-open .logo-mark {
        filter: none !important;
    }
    #nav-toggle:checked + .nav-toggle-label span,
    body.nav-open .nav-toggle-label span { transform: rotate(45deg); background-color: var(--text-dark); }
    #nav-toggle:checked + .nav-toggle-label span::before,
    body.nav-open .nav-toggle-label span::before { top: 0; transform: rotate(0deg); background-color: var(--text-dark); opacity: 0; }
    #nav-toggle:checked + .nav-toggle-label span::after,
    body.nav-open .nav-toggle-label span::after { top: 0; transform: rotate(90deg); background-color: var(--text-dark); }
}

@keyframes fadeInBackdrop {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 880px) {
    .hero {
        padding-top: clamp(4rem, 16vw, 6rem);
        padding-bottom: clamp(3rem, 8vw, 4rem);
    }
    .navbar { padding: 0.8rem 1.8rem 0.8rem 1.2rem; }
    .logo-word { font-size: 1.15rem; }
    .logo-mark { width: 34px; height: 34px; }
    .hero-scroll { display: none; }

    .section > .container { padding-left: 1.2rem; padding-right: 1.2rem; }
    .trust-bar-inner {
        gap: 0.8rem 1.6rem;
    }
    .trust-sep { display: none; }
    .trust-item { justify-content: flex-start; }
}

@media (max-width: 600px) {
    .hero-content h1 { font-size: 2.4rem; }
    .btn { padding: 0.8rem 1.5rem; font-size: 0.88rem; }
}

/* ============================================================
   MOBILE OPTIMIERUNG (≤ 700px) — sorgfältig durchdacht
   ============================================================ */
@media (max-width: 700px) {
    /* --- Container & Sections --- */
    .container { width: 100%; padding-left: 1.25rem; padding-right: 1.25rem; box-sizing: border-box; }
    .section { padding: clamp(3.2rem, 11vw, 4.5rem) 0; }
    .section > .container { padding-left: 1.25rem; padding-right: 1.25rem; }
    .section-head { margin-left: auto; margin-right: auto; margin-bottom: 2rem; text-align: center; }
    .section-eyebrow { font-size: 0.7rem; letter-spacing: 0.18em; padding-left: 1.8rem; }
    .section-eyebrow::before { width: 1.2rem; }
    .section-title { font-size: clamp(2rem, 8vw, 2.6rem); line-height: 1.15; padding-left: 0; white-space: nowrap; }

    /* --- Header / Navbar --- */
    .navbar { padding: 0.7rem 1.6rem 0.7rem 1.1rem; }
    .logo-word { font-size: 1.05rem; }
    .logo-mark { width: 30px; height: 30px; }

    /* --- Hero --- */
    .hero { min-height: 100svh; padding-top: clamp(5rem, 18vw, 7rem); padding-bottom: 3rem; }
    .hero-v2 { padding: 0 0.5rem; }
    .hero-v2-text { margin-bottom: 1.8rem; }
    .hero-v2-title { font-size: clamp(2.6rem, 13vw, 3.4rem); line-height: 1.05; margin: 0.6rem 0 1rem; }
    .hero-v2-sub { font-size: 1rem; line-height: 1.6; max-width: 32ch; margin-left: auto; margin-right: auto; }
    .hero-eyebrow { font-size: 0.95rem; letter-spacing: 0.05em; white-space: nowrap; }
    .hero-ctas { flex-direction: column; gap: 0.7rem; width: 100%; max-width: 320px; margin: 0 auto; }
    .hero-ctas .btn { width: 100%; justify-content: center; text-align: center; }
    .hero-v2-medallion-wrap { width: clamp(180px, 50vw, 220px); margin-top: 1.2rem; }
    .hero-scroll { display: none; }

    /* --- Buttons: bigger touch targets, full-width-friendly --- */
    .btn {
        padding: 0.95rem 1.5rem;
        font-size: 0.92rem;
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* --- Trust Bar: stacked single column, icons aligned on a vertical line --- */
    .trust-bar { padding: 1.8rem 0; }
    .trust-bar-inner {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start;
        gap: 0.85rem !important;
        width: max-content;
        max-width: 100%;
        margin: 0 auto;
        text-align: left;
    }
    .trust-sep { display: none; }
    .trust-item {
        font-size: 0.88rem;
        gap: 0.7rem;
        align-items: center;
        line-height: 1.3;
        justify-content: flex-start;
    }
    .trust-icon {
        width: 30px; height: 30px;
        flex-shrink: 0;
    }
    .trust-icon svg { width: 14px; height: 14px; }

    /* --- Beratung / Process --- */
    .beratung-intro .lead-paragraph { font-size: 1.05rem; }
    .process { gap: 0.8rem; margin-bottom: 2.2rem; }
    .step { padding: 1.4rem 1.2rem 1.3rem; }
    .step-number { font-size: 1.3rem; }
    .step-label { font-size: 1.05rem; }
    .step-sub { font-size: 0.78rem; }
    .step p { font-size: 0.92rem; }

    /* Info notice — tighter, less padding */
    .info-notice { padding: 1.1rem 1.2rem; gap: 0.8rem; grid-template-columns: 22px 1fr; margin: 1.5rem 0; }
    .info-notice-icon, .info-notice-icon svg { width: 22px; height: 22px; }
    .info-notice-body p { font-size: 0.9rem; line-height: 1.6; }

    .approach-title { font-size: 1.4rem; }
    .approach p { font-size: 0.98rem; }

    /* Pricing card — tighter, stacked head, full-width CTA */
    .pricing { padding: 1.6rem 1.4rem; }
    .pricing-head { gap: 0.2rem !important; margin-bottom: 1rem; }
    .pricing-amount { font-size: 2.6rem; }
    .pricing-unit { font-size: 0.9rem; }
    .pricing-hint { font-size: 0.95rem; line-height: 1.65; }
    .pricing-cta .btn { width: 100%; }

    /* --- Schwerpunkte / Focus --- */
    .focus-grid { gap: 1rem; }
    .focus-card { padding: 1.4rem 1.4rem 1.5rem; border-radius: 12px; }
    .focus-card-num { font-size: 1.8rem; margin-bottom: 0.6rem; }
    .focus-card h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
    .focus-card p { font-size: 0.93rem; line-height: 1.6; }
    .focus-more { padding: 1.3rem 0.5rem; }
    .focus-more p { font-size: 1.05rem; line-height: 1.55; }

    /* --- About --- */
    .about-layout { gap: 2rem; }
    .about-col-media { position: static !important; gap: 1rem; }
    .about-hello-kicker { font-size: 1.15rem; }
    .about-hello-title { font-size: 2rem; }
    .about-hello-traits { font-size: 0.78rem; letter-spacing: 0.14em; }

    /* About list: stack label above, items below */
    .about-list {
        grid-template-columns: 1fr !important;
        gap: 0.8rem !important;
        padding: 1.3rem 0;
    }
    .about-list-label { font-size: 1.6rem; }
    .about-list-items li {
        font-size: 0.96rem;
        line-height: 1.55;
        gap: 0.5rem;
        padding: 0.4rem 0;
    }
    .about-dash { font-size: 0.95rem; }

    .about-value-row { padding: 0.3rem 0; gap: 0.15rem; }
    .about-value-label { font-size: 0.72rem; letter-spacing: 0.16em; }
    .about-value-text { font-size: 1.05rem; }

    .about-story { padding: 1.1rem 1.2rem; border-left-width: 3px; }
    .about-story p { font-size: 0.95rem; line-height: 1.7; }

    .about-hardfacts { padding: 1.3rem 1.2rem; border-radius: 12px; }
    .about-hardfacts h4 { font-size: 0.76rem; margin-bottom: 0.7rem; }
    .hardfacts-list { gap: 0.5rem; }
    .hardfacts-list li { font-size: 0.88rem; padding-left: 1rem; line-height: 1.5; }

    /* Mobile: skip reveal-from-side animation AND clip-path reveal on about
       photos / hardfacts so they don't leave invisible placeholders before
       the IntersectionObserver fires. */
    .about-photo-main.reveal,
    .about-photo-secondary.reveal,
    .about-hardfacts.reveal {
        opacity: 1;
        transform: none;
    }
    .about-photo-main.clip-reveal,
    .about-photo-secondary.clip-reveal {
        -webkit-clip-path: none;
                clip-path: none;
    }

    /* --- Beratungsraum / Room --- */
    .room-layout { gap: 1.8rem; }
    .room-copy p { font-size: 1rem; line-height: 1.75; margin-bottom: 1rem; }
    .room-pull { font-size: 1.4rem !important; padding-top: 1.1rem; margin-top: 1.1rem !important; }
    .room-photo-secondary {
        width: 100% !important;
        margin-left: 0 !important;
        margin-top: 0 !important;
        border-width: 0 !important;
    }

    /* --- Reviews --- */
    .review-card { padding: 1.3rem 1.3rem 1.2rem; border-radius: 12px; }
    .review-text { font-size: 0.94rem; }

    /* --- Kontakt --- */
    .contact-card-centered { padding: 1rem 0.2rem; margin-bottom: 2.5rem; }
    .contact-card-name h3 { font-size: 1.5rem; }
    .contact-card-role { font-size: 1rem; margin-bottom: 1.5rem; }

    .contact-card-lines { gap: 0.7rem; margin-bottom: 1.5rem; }
    .contact-line {
        grid-template-columns: 1fr;
        gap: 0.2rem;
        padding: 0.85rem 1rem;
        border-radius: 10px;
    }
    .contact-line-label { font-size: 0.66rem; letter-spacing: 0.18em; }
    .contact-line-value { font-size: 0.98rem; word-break: break-word; }

    .contact-methods-row { gap: 0.45rem; margin-bottom: 1.2rem; }
    .contact-method { font-size: 0.68rem; letter-spacing: 0.1em; padding: 0.35rem 0.7rem; white-space: nowrap; }
    .contact-tagline { font-size: 0.95rem; line-height: 1.65; margin-bottom: 1.4rem; }

    .contact-cta { flex-direction: column; gap: 0.7rem; width: 100%; max-width: 320px; margin: 0 auto; }
    .contact-cta .btn { width: 100%; }

    .contact-location { gap: 1.5rem; padding-top: 2rem; }
    .contact-location-info h3 { font-size: 1.35rem; }
    .contact-address { font-size: 1rem; margin-bottom: 1rem; }
    .contact-location-facts li { font-size: 0.93rem; }
    .contact-location-map { border-radius: 12px; }

    /* --- Footer --- */
    .footer { padding: 2rem 0; font-size: 0.82rem; text-align: center; }
    .footer-inner { gap: 0.7rem; padding: 0 1rem; }
    .footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.4rem 1rem; }
    .footer-nav a { margin: 0; }
}

/* Extra-small phones (≤ 380px) — iPhone SE etc. */
@media (max-width: 380px) {
    .hero-v2-title { font-size: 2.4rem; }
    .hero-v2-sub { font-size: 0.95rem; }
    .section-title { font-size: 1.85rem; }
    .pricing-amount { font-size: 2.3rem; }
    .about-hello-title { font-size: 1.8rem; }
    .container { padding-left: 1rem; padding-right: 1rem; }
    .section > .container { padding-left: 1rem; padding-right: 1rem; }
    .trust-bar-inner { grid-template-columns: 1fr; }
}

@media (min-width: 1440px) {
    .container { max-width: 1300px; }
}


/* ========================================================================
   MOTION DESIGN – Scroll Progress, Parallax, Tilt, Process Line, Ken-Burns
   ======================================================================== */

/* --- Scroll progress bar (top of viewport) --- */
.scroll-progress {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 3px;
    z-index: 1000;
    pointer-events: none;
    background: rgba(0,0,0,0.04);
}
.scroll-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-warm, #d48a6e) 0%, var(--accent, #c97255) 60%, var(--primary, #2a5a63) 100%);
    transform-origin: left center;
    will-change: width;
    transition: width 0.08s linear;
}

/* --- Hero medallion: parallax drift + subtle ambient glow --- */
.hero-v2-medallion-wrap {
    will-change: transform;
}
.hero-v2-medallion-wrap::before {
    content: '';
    position: absolute;
    inset: -40px;
    border-radius: 50%;
    background: radial-gradient(circle at center,
        rgba(255, 200, 150, 0.22) 0%,
        rgba(255, 170, 120, 0.10) 35%,
        rgba(255, 170, 120, 0) 70%);
    filter: blur(18px);
    z-index: -1;
    animation: medallionGlow 6s ease-in-out infinite;
    pointer-events: none;
}
@keyframes medallionGlow {
    0%, 100% { opacity: 0.75; transform: scale(1); }
    50%      { opacity: 1;    transform: scale(1.08); }
}
/* Medallion-Ring: sanft rotierende Linie */
.hero-v2-medallion-ring {
    animation: ringRotate 40s linear infinite;
}
@keyframes ringRotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* --- Staggered reveals for focus cards / process steps already handled.
       Add 3D hover-tilt for focus cards --- */
.focus-card {
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1),
                box-shadow 0.5s cubic-bezier(0.19, 1, 0.22, 1),
                border-color 0.4s ease;
    transform-style: preserve-3d;
    will-change: transform;
}
.focus-card:hover {
    transform: perspective(900px) translateY(-6px) rotateX(2.5deg) rotateY(-2.5deg);
    box-shadow: 0 24px 48px -18px rgba(0,0,0,0.22), 0 4px 12px -4px rgba(0,0,0,0.08);
}
.focus-card > * {
    transform: translateZ(0);
    transition: transform 0.5s ease;
}
.focus-card:hover h3, .focus-card:hover .focus-card-num {
    transform: translateZ(14px);
}

/* --- Process line: progressive draw when block enters view --- */
.process-line {
    transform-origin: top center;
    transform: scaleY(0);
    transition: transform 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.process.in-view .process-line {
    transform: scaleY(1);
}
/* Step number pulse when its reveal triggers */
.step.reveal .step-number {
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.4s ease;
}
.step.reveal.visible .step-number {
    animation: stepPulse 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes stepPulse {
    0%   { transform: scale(0.6); }
    60%  { transform: scale(1.12); }
    100% { transform: scale(1); }
}

/* --- About: photos glide in from sides, list items staggered --- */
.about-photo-main.reveal {
    opacity: 0;
    transform: translateX(40px) rotate(1deg);
    transition: opacity 1.1s cubic-bezier(0.19, 1, 0.22, 1),
                transform 1.1s cubic-bezier(0.19, 1, 0.22, 1);
}
.about-photo-main.reveal.visible {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
}
.about-photo-secondary.reveal {
    opacity: 0;
    transform: translateX(-50px) translateY(20px) rotate(-1.5deg);
    transition: opacity 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.15s,
                transform 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.15s;
}
.about-photo-secondary.reveal.visible {
    opacity: 1;
    transform: translateX(0) translateY(0) rotate(0deg);
}
.about-hardfacts.reveal {
    transition-delay: 0.25s;
}
.about-list-items li {
    opacity: 0;
    transform: translateX(-14px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.about-list.visible .about-list-items li {
    opacity: 1;
    transform: translateX(0);
}
.about-list.visible .about-list-items li:nth-child(1) { transition-delay: 0.10s; }
.about-list.visible .about-list-items li:nth-child(2) { transition-delay: 0.22s; }
.about-list.visible .about-list-items li:nth-child(3) { transition-delay: 0.34s; }
.about-list.visible .about-list-items li:nth-child(4) { transition-delay: 0.46s; }
.about-list.visible .about-list-items li:nth-child(5) { transition-delay: 0.58s; }

.hardfacts-list li {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.about-hardfacts.visible .hardfacts-list li {
    opacity: 1;
    transform: translateY(0);
}
.about-hardfacts.visible .hardfacts-list li:nth-child(1) { transition-delay: 0.05s; }
.about-hardfacts.visible .hardfacts-list li:nth-child(2) { transition-delay: 0.10s; }
.about-hardfacts.visible .hardfacts-list li:nth-child(3) { transition-delay: 0.15s; }
.about-hardfacts.visible .hardfacts-list li:nth-child(4) { transition-delay: 0.20s; }
.about-hardfacts.visible .hardfacts-list li:nth-child(5) { transition-delay: 0.25s; }
.about-hardfacts.visible .hardfacts-list li:nth-child(6) { transition-delay: 0.30s; }
.about-hardfacts.visible .hardfacts-list li:nth-child(7) { transition-delay: 0.35s; }
.about-hardfacts.visible .hardfacts-list li:nth-child(8) { transition-delay: 0.40s; }
.about-hardfacts.visible .hardfacts-list li:nth-child(9) { transition-delay: 0.45s; }

/* --- Room section: Ken-Burns on photos (scroll-linked via JS) --- */
.room-photo img, .room-photo .img-placeholder {
    transform-origin: center center;
    will-change: transform;
}
.room-pull.reveal {
    transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}
.room-pull.reveal.visible em {
    background-size: 100% 100%;
}

/* --- Contact card: float up with slight scale --- */
.contact-card-centered.reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.97);
    transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1),
                transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.contact-card-centered.reveal.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.contact-line {
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1),
                background 0.3s ease,
                border-color 0.3s ease;
}
.contact-line:hover {
    transform: translateY(-2px);
}
.contact-location.reveal {
    transition-delay: 0.15s;
}

/* --- Section eyebrow "01 · …" slides in and underline draws --- */
.section-eyebrow {
    display: inline-block;
    overflow: hidden;
    position: relative;
}
.section-head.reveal .section-title em {
    background-image: linear-gradient(transparent 70%, var(--accent-soft, rgba(212, 138, 110, 0.28)) 70%);
    background-size: 0% 100%;
    background-repeat: no-repeat;
    transition: background-size 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s;
}
.section-head.reveal.visible .section-title em {
    background-size: 100% 100%;
}

/* --- Button primary: gentle pulse shadow on hover --- */
.btn-primary {
    position: relative;
    transition: transform 0.35s cubic-bezier(0.19, 1, 0.22, 1),
                box-shadow 0.35s ease,
                background 0.3s ease;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px -12px rgba(201, 114, 85, 0.55),
                0 4px 12px -4px rgba(201, 114, 85, 0.3);
}

/* ==========================================================================
   MOTION ENHANCEMENTS (motion.js)
   ========================================================================== */

/* --- 3. Text Mask Reveal (Headlines) --- */
.has-mask-reveal { display: block; }
.mask-word {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    line-height: 1.05;
    /* slight extra height so descenders aren't clipped */
    padding-bottom: 0.08em;
}
.mask-word-inner {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 0.95s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform;
}
.has-mask-reveal.mask-revealed .mask-word-inner {
    transform: translateY(0);
}
/* stagger words */
.has-mask-reveal.mask-revealed .mask-word:nth-child(1)  .mask-word-inner { transition-delay: 0.05s; }
.has-mask-reveal.mask-revealed .mask-word:nth-child(2)  .mask-word-inner { transition-delay: 0.13s; }
.has-mask-reveal.mask-revealed .mask-word:nth-child(3)  .mask-word-inner { transition-delay: 0.21s; }
.has-mask-reveal.mask-revealed .mask-word:nth-child(4)  .mask-word-inner { transition-delay: 0.29s; }
.has-mask-reveal.mask-revealed .mask-word:nth-child(5)  .mask-word-inner { transition-delay: 0.37s; }
.has-mask-reveal.mask-revealed .mask-word:nth-child(6)  .mask-word-inner { transition-delay: 0.45s; }
.has-mask-reveal.mask-revealed .mask-word:nth-child(n+7) .mask-word-inner { transition-delay: 0.5s; }
/* nested em words inherit the same stagger via their own count */
.has-mask-reveal em .mask-word-inner { transition-delay: 0.4s; }

/* --- 4. Image Clip-Path Reveal --- */
.clip-reveal {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
    transition: -webkit-clip-path 1.1s cubic-bezier(0.7, 0, 0.2, 1),
                        clip-path 1.1s cubic-bezier(0.7, 0, 0.2, 1);
}
.clip-reveal.clip-revealed {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
}
/* alternate direction for "secondary" photos */
.about-photo-secondary.clip-reveal {
    -webkit-clip-path: inset(0 0 0 100%);
            clip-path: inset(0 0 0 100%);
}
.about-photo-secondary.clip-reveal.clip-revealed {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
}
/* room images come from below */
.room-image.clip-reveal {
    -webkit-clip-path: inset(100% 0 0 0);
            clip-path: inset(100% 0 0 0);
}
.room-image.clip-reveal.clip-revealed {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
}

/* --- 1. Magnetic CTAs (transform driven by JS) ---
   Smoother spring + ensure transitions don't fight the JS transform. */
.btn, .hero-scroll, .footer-cta {
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
                box-shadow 0.4s ease,
                background 0.3s ease,
                color 0.3s ease;
    will-change: transform;
}
/* Override the existing .btn-primary:hover transform so it stacks with magnet */
.btn-primary:hover { transform: translate(var(--mag-x, 0), calc(var(--mag-y, 0) - 2px)); }

/* --- 13. Cursor Trail Glow --- */
.cursor-glow {
    position: fixed;
    top: 0; left: 0;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle at center,
        rgba(218, 142, 105, 0.32) 0%,
        rgba(212, 158, 96, 0.18) 35%,
        rgba(212, 158, 96, 0) 70%);
    pointer-events: none;
    mix-blend-mode: screen;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
    will-change: transform;
}
.cursor-glow.on { opacity: 1; }
/* on dark contact section, switch blend mode for visibility */
.section.contact { position: relative; }
@media (pointer: coarse) {
    .cursor-glow { display: none; }
}

/* --- 15. 3D Tilt Cards --- */
.tilt-card {
    transform-style: preserve-3d;
    transform: perspective(1000px)
               rotateX(var(--tilt-rx, 0deg))
               rotateY(var(--tilt-ry, 0deg));
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
                box-shadow 0.4s ease;
    position: relative;
}
/* override the older :hover that sets a fixed perspective so JS values take effect */
.tilt-card:hover {
    transform: perspective(1000px)
               translateY(-6px)
               rotateX(var(--tilt-rx, 0deg))
               rotateY(var(--tilt-ry, 0deg));
}
.tilt-card-shine {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.35s ease;
    background: radial-gradient(circle at var(--shine-x, 50%) var(--shine-y, 50%),
        rgba(255, 255, 255, 0.55) 0%,
        rgba(255, 255, 255, 0) 45%);
    mix-blend-mode: overlay;
    z-index: 2;
}
.tilt-card:hover .tilt-card-shine { opacity: 0.8; }

/* --- 2. Scroll Velocity Skew --- */
.about-photo img,
.room-image img,
.hero-v2-medallion img {
    transform: skewY(var(--vel-skew, 0deg)) scale(var(--vel-scale, 1));
    transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform;
}
/* keep the existing about-photo:hover scale; override to combine with skew */
.about-photo:hover img {
    transform: skewY(var(--vel-skew, 0deg)) scale(calc(var(--vel-scale, 1) * 1.04));
}
/* Anzugsfoto bleibt komplett starr – kein Skew, kein Hover-Scale */
.about-photo-side img {
    transform: none !important;
    transition: none !important;
    will-change: auto;
}
.about-photo-side:hover img {
    transform: none !important;
}

/* --- 14. Section Color Morph --- */
body.section-morph-host {
    transition: background-color 1.4s cubic-bezier(0.2, 0.6, 0.2, 1);
}
/* Default tint set up-front so initial paint matches morph variable */
body { --section-morph: #1a1a1a; }
/* The body background is the warm cream by default; we let the variable
   override it where set. Hero / contact sections have their own bg, so they cover. */
body.section-morph-host {
    background-color: var(--section-morph, #fcf7f0);
}

/* --- 11. Horizontal Scroll – Schwerpunkte --- */
.section.focus.focus-horizontal {
    /* let the placeholder dictate height */
    padding-top: 0;
    padding-bottom: 0;
}
.section.focus.focus-horizontal .container { padding: 0; max-width: none; }
.section.focus.focus-horizontal .section-head,
.section.focus.focus-horizontal .focus-more {
    padding-left: max(5vw, calc((100vw - 1200px) / 2));
    padding-right: max(5vw, calc((100vw - 1200px) / 2));
}
.section.focus.focus-horizontal .section-head {
    padding-top: clamp(4rem, 8vw, 7rem);
    padding-bottom: clamp(2rem, 4vw, 3rem);
}
.section.focus.focus-horizontal .focus-more {
    padding-top: clamp(2rem, 4vw, 3rem);
    padding-bottom: clamp(4rem, 8vw, 7rem);
}
.focus-horiz-placeholder {
    position: relative;
    width: 100%;
}
.focus-horiz-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.focus-horiz-sticky > .section-head { flex-shrink: 0; }
.focus-horiz-track {
    flex: 1 1 auto;
    min-height: 0;
    width: 100%;
    display: flex;
    align-items: center;
}
.section.focus.focus-horizontal {
    --focus-card-w: clamp(280px, 30vw, 380px);
    overflow: visible;
}
.section.focus.focus-horizontal .focus-grid {
    display: flex;
    grid-template-columns: none;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    /* Center the first card at scroll-start and the last card at scroll-end
       so the visible group always sits in the middle of the viewport. */
    padding-inline: max(0px, calc((100% - var(--focus-card-w)) / 2));
    will-change: transform;
}
.section.focus.focus-horizontal .focus-card {
    flex: 0 0 var(--focus-card-w);
    height: 60vh;
    max-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Sticky section headlines disabled per user feedback. */

/* ===== Legal Pages (Impressum, AGB, Datenschutz) ===== */
body.legal-body {
    background: var(--warm-beige);
}
.section.legal {
    padding: clamp(3rem, 6vw, 5rem) 0 clamp(3rem, 6vw, 5rem);
    background: var(--warm-beige);
    position: relative;
    overflow: hidden;
}
.section.legal::before {
    content: '';
    position: absolute;
    top: 0; left: -120px;
    width: 380px; height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 149, 141, 0.18), transparent 65%);
    pointer-events: none;
    z-index: 0;
}
.section.legal::after {
    content: '';
    position: absolute;
    bottom: -80px; right: -80px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45, 90, 94, 0.08), transparent 65%);
    pointer-events: none;
    z-index: 0;
}
.section.legal > .container {
    max-width: 820px;
    position: relative;
    z-index: 1;
}
.legal-card {
    background: #fff;
    border-radius: 18px;
    padding: clamp(2rem, 4.5vw, 3.6rem);
    box-shadow: 0 24px 60px rgba(45, 90, 94, 0.08), 0 2px 8px rgba(45, 90, 94, 0.04);
    border: 1px solid rgba(45, 90, 94, 0.06);
}
.legal-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-coral-dark);
    margin-bottom: 1.1rem;
    padding-left: 2.2rem;
    position: relative;
}
.legal-eyebrow::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    width: 1.6rem; height: 1px;
    background: var(--accent-coral);
}
.section.legal h1 {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--text-dark);
    margin: 0 0 0.4em;
}
.section.legal h1 + p,
.legal-card > h1 + p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 2.2rem;
    max-width: 60ch;
}
.legal-divider {
    width: 3rem;
    height: 2px;
    background: var(--accent-coral);
    margin: 0 0 2.4rem;
    border: 0;
}
.section.legal h2 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-style: italic;
    font-size: clamp(1.25rem, 2.4vw, 1.6rem);
    color: var(--primary-teal);
    margin: clamp(2rem, 3.5vw, 2.6rem) 0 0.7em;
    line-height: 1.3;
    letter-spacing: -0.005em;
}
.section.legal h2:first-of-type {
    margin-top: 0;
}
.section.legal p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text-dark);
    margin-bottom: 1em;
    max-width: 70ch;
}
.section.legal p strong {
    color: var(--primary-teal);
    font-weight: 600;
    letter-spacing: 0.005em;
}
.section.legal ul {
    list-style: none;
    padding-left: 0;
    margin: 0.4em 0 1.4em;
}
.section.legal ul li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: 0.55em;
    line-height: 1.75;
    color: var(--text-dark);
}
.section.legal ul li::before {
    content: '';
    position: absolute;
    left: 0.4rem; top: 0.78em;
    width: 0.45rem; height: 0.45rem;
    border-radius: 50%;
    background: var(--accent-coral);
}
.section.legal a {
    color: var(--primary-teal);
    text-decoration: underline;
    text-decoration-color: rgba(45, 90, 94, 0.3);
    text-underline-offset: 3px;
    transition: text-decoration-color 0.25s ease, color 0.25s ease;
}
.section.legal a:hover {
    color: var(--accent-coral-dark);
    text-decoration-color: var(--accent-coral-dark);
}
.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: clamp(2rem, 3.5vw, 2.8rem);
    padding: 0.65em 1.2em;
    border-radius: 999px;
    border: 1px solid rgba(45, 90, 94, 0.18);
    color: var(--primary-teal);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-decoration: none !important;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.legal-back:hover {
    background: var(--primary-teal);
    color: #fff;
    border-color: var(--primary-teal);
    transform: translateX(-3px);
}
.legal-back::before {
    content: '←';
    font-size: 1.05em;
    line-height: 1;
}

@media (max-width: 600px) {
    .section.legal::before { width: 220px; height: 220px; left: -80px; }
    .section.legal::after { width: 200px; height: 200px; right: -60px; }
    .legal-card { padding: 1.6rem 1.4rem; border-radius: 14px; }
    .legal-eyebrow { padding-left: 1.6rem; font-size: 0.7rem; letter-spacing: 0.18em; }
    .legal-eyebrow::before { width: 1.1rem; }
}

/* --- Respect reduced motion --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
    .hero-v2-medallion-wrap::before { animation: none; }
    .hero-v2-medallion-ring { animation: none; }
    .cursor-glow { display: none; }
    .tilt-card, .tilt-card:hover { transform: none !important; }
    .has-mask-reveal .mask-word-inner { transform: none !important; }
    .clip-reveal { -webkit-clip-path: none !important; clip-path: none !important; }
}
