/* ============================================
   Self-hosted Fonts (GDPR-compliant)
   Replace Google CDN — fonts load from theme/fonts/
   ============================================ */
@font-face {
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('../fonts/cormorant-garamond-v16-latin-300.woff2') format('woff2');
}
@font-face {
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/cormorant-garamond-v16-latin-regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/cormorant-garamond-v16-latin-500.woff2') format('woff2');
}
@font-face {
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/cormorant-garamond-v16-latin-600.woff2') format('woff2');
}
@font-face {
    font-family: 'Cormorant Garamond';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/cormorant-garamond-v16-latin-italic.woff2') format('woff2');
}
@font-face {
    font-family: 'Cormorant Garamond';
    font-style: italic;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/cormorant-garamond-v16-latin-500italic.woff2') format('woff2');
}
@font-face {
    font-family: 'Jost';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('../fonts/jost-v15-latin-300.woff2') format('woff2');
}
@font-face {
    font-family: 'Jost';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/jost-v15-latin-regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Jost';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/jost-v15-latin-500.woff2') format('woff2');
}
@font-face {
    font-family: 'Jost';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/jost-v15-latin-600.woff2') format('woff2');
}

/* ========================================
           CSS Custom Properties - Elegant Feminine Palette
        ======================================== */
        :root {
            /* Soft Blush & Rose Palette */
            --blush-50: #fdf8f6;
            --blush-100: #faeee9;
            --blush-200: #f5ddd3;
            --blush-300: #ecc5b5;
            --blush-400: #e0a894;
            --blush-500: #d4917a;
            
            /* Soft Sage Green Accents */
            --sage-50: #f6f9f4;
            --sage-100: #e8f0e4;
            --sage-200: #d1e1c9;
            --sage-300: #a8c69f;
            --sage-400: #8db382;
            --sage-500: #6b9960;
            
            /* Warm Neutral Palette */
            --warm-50: #fdfcfb;
            --warm-100: #f9f6f3;
            --warm-200: #f0ebe5;
            --warm-300: #e2d9cf;
            --warm-400: #c9bba9;
            --warm-500: #a89985;
            
            /* Rose Gold Accents */
            --rose-gold: #b76e79;
            --rose-gold-light: #d4a5a5;
            --rose-gold-dark: #8b5a5a;
            
            /* Text Colors */
            --text-dark: #3d3d3d;
            --text-medium: #5a5a5a;
            --text-light: #7a7a7a;
            --text-muted: #9a9a9a;
            
            /* Typography */
            --font-display: 'Cormorant Garamond', Georgia, serif;
            --font-body: 'Jost', -apple-system, BlinkMacSystemFont, sans-serif;
            
            /* Spacing */
            --section-padding: clamp(5rem, 12vw, 10rem);
            --container-width: min(88%, 1140px);
            
            /* Transitions */
            --transition-fast: 0.2s ease;
            --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            
            /* Shadows - Softer */
            --shadow-soft: 0 2px 15px rgba(0, 0, 0, 0.04);
            --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.06);
            --shadow-elevated: 0 20px 50px rgba(0, 0, 0, 0.08);
        }
        
        /* ========================================
           CSS Reset & Base Styles
        ======================================== */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
            scroll-padding-top: 100px;
        }
        
        body {
            font-family: var(--font-body);
            font-size: 1rem;
            font-weight: 300;
            line-height: 1.8;
            color: var(--text-medium);
            background-color: var(--warm-50);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: all var(--transition-normal);
        }
        
        ul {
            list-style: none;
        }
        
        button {
            font-family: inherit;
            cursor: pointer;
            border: none;
            background: none;
        }
        
        /* ========================================
           Utility Classes
        ======================================== */
        .container {
            width: var(--container-width);
            margin: 0 auto;
        }
        
        /* ========================================
           Elegant Animation Keyframes
        ======================================== */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes gentleFloat {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-15px) rotate(2deg);
            }
        }
        
        @keyframes shimmer {
            0% { background-position: -200% center; }
            100% { background-position: 200% center; }
        }
        
        @keyframes drawLine {
            from { width: 0; }
            to { width: 60px; }
        }
        
        /* Scroll Animation Classes */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .reveal-delay-1 { transition-delay: 0.15s; }
        .reveal-delay-2 { transition-delay: 0.3s; }
        .reveal-delay-3 { transition-delay: 0.45s; }
        
        /* ========================================
           Decorative Elements
        ======================================== */
        .ornament {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }
        
        .ornament__line {
            width: 60px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--rose-gold-light), transparent);
        }
        
        .ornament__icon {
            color: var(--rose-gold-light);
            opacity: 0.6;
        }
        
        /* ========================================
           Header & Navigation
        ======================================== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: transparent;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
            transition: all var(--transition-normal);
        }
        
        .header.scrolled {
            background: rgba(253, 252, 251, 0.97);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
        }
        
        /* When header is over hero (transparent), make nav links white */
        .header:not(.scrolled) .nav__link { color: rgba(255, 255, 255, 0.85); }
        .header:not(.scrolled) .nav__link:hover,
        .header:not(.scrolled) .nav__link.active { color: white; }
        .header:not(.scrolled) .nav__link::after { background: white; }
        .header:not(.scrolled) .header__cta { color: white; border-color: rgba(255,255,255,0.45); }
        .header:not(.scrolled) .header__cta:hover { background: white; color: var(--rose-gold-dark); border-color: white; }
        .header:not(.scrolled) .menu-toggle span { background: white; }
        .header:not(.scrolled) .logo__image { filter: brightness(0) invert(1); }
        
        .header__inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.25rem 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .logo__image {
            height: 45px;
            width: auto;
            transition: transform var(--transition-normal);
        }
        
        .logo:hover .logo__image {
            transform: scale(1.02);
        }
        
        .nav {
            display: flex;
            align-items: center;
            gap: 3rem;
        }
        
        .nav__list {
            display: flex;
            gap: 2.5rem;
        }
        
        .nav__link {
            position: relative;
            font-size: 0.9rem;
            font-weight: 400;
            letter-spacing: 0.5px;
            color: var(--text-medium);
            padding: 0.5rem 0;
        }
        
        .nav__link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 1px;
            background: var(--rose-gold);
            transition: width var(--transition-normal);
        }
        
        .nav__link:hover,
        .nav__link.active {
            color: var(--rose-gold);
        }
        
        .nav__link:hover::after,
        .nav__link.active::after {
            width: 100%;
        }
        
        .header__cta {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.875rem 1.75rem;
            background: transparent;
            color: var(--rose-gold);
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            border: 1px solid var(--rose-gold-light);
            border-radius: 0;
            transition: all var(--transition-normal);
        }
        
        .header__cta:hover {
            background: var(--rose-gold);
            color: white;
            border-color: var(--rose-gold);
        }
        
        .header__cta i {
            width: 16px;
            height: 16px;
        }
        
        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            padding: 0.5rem;
        }
        
        .menu-toggle span {
            display: block;
            width: 24px;
            height: 1px;
            background: var(--text-dark);
            transition: all var(--transition-normal);
        }
        
        /* ========================================
           Hero Section
        ======================================== */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        
        /* Full-bleed background image */
        .hero__bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }
        
        .hero__bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 20%;
            filter: saturate(0.85) brightness(1.02);
        }
        
        /* Sophisticated gradient overlay */
        .hero__overlay {
            position: absolute;
            inset: 0;
            z-index: 1;
            background: 
                linear-gradient(135deg, 
                    rgba(61, 61, 61, 0.82) 0%, 
                    rgba(61, 61, 61, 0.55) 35%, 
                    rgba(139, 90, 90, 0.3) 65%, 
                    rgba(183, 110, 121, 0.15) 100%
                );
        }
        
        /* Content */
        .hero__content {
            position: relative;
            z-index: 3;
            padding: clamp(8rem, 18vw, 12rem) 0 clamp(5rem, 10vw, 8rem);
            max-width: 680px;
        }
        
        .hero__title {
            font-family: var(--font-display);
            font-size: clamp(2.75rem, 6vw, 4.5rem);
            font-weight: 400;
            line-height: 1.1;
            color: white;
            margin-bottom: 1rem;
            letter-spacing: -0.5px;
            animation: fadeInUp 1s ease forwards;
        }
        
        .hero__title em {
            font-style: italic;
            color: var(--blush-300);
        }
        
        .hero__subtitle {
            font-family: var(--font-display);
            font-size: clamp(1.15rem, 2.5vw, 1.5rem);
            font-weight: 300;
            color: white;
            margin-bottom: 1.25rem;
            opacity: 0.95;
            letter-spacing: 0.5px;
            animation: fadeInUp 1s 0.15s ease both;
        }
        
        .hero__description {
            font-size: 1rem;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.9;
            margin-bottom: 2.5rem;
            max-width: 500px;
            animation: fadeInUp 1s 0.3s ease both;
        }
        
        .hero__actions {
            display: flex;
            gap: 1.25rem;
            flex-wrap: wrap;
            animation: fadeInUp 1s 0.45s ease both;
        }
        
        .btn--white {
            background: white;
            color: var(--rose-gold-dark);
            border: 1px solid white;
        }
        
        .btn--white:hover {
            background: var(--rose-gold);
            color: white;
            border-color: var(--rose-gold);
            transform: translateY(-2px);
        }
        
        .btn--white-outline {
            background: transparent;
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.5);
        }
        
        .btn--white-outline:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.85);
        }
        
        /* Scroll indicator */
        .hero__scroll {
            position: absolute;
            bottom: 2.5rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 4;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.7rem;
            font-weight: 400;
            letter-spacing: 2px;
            text-transform: uppercase;
            animation: fadeIn 1s 1.5s ease both;
        }
        
        .hero__scroll svg {
            animation: gentleFloat 2s ease-in-out infinite;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1.125rem 2.25rem;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            transition: all var(--transition-normal);
        }
        
        .btn i {
            width: 18px;
            height: 18px;
        }
        
        .btn--primary {
            background: var(--rose-gold);
            color: white;
            border: 1px solid var(--rose-gold);
        }
        
        .btn--primary:hover {
            background: var(--rose-gold-dark);
            border-color: var(--rose-gold-dark);
            transform: translateY(-2px);
        }
        
        .btn--outline {
            background: transparent;
            color: var(--text-dark);
            border: 1px solid var(--warm-300);
        }
        
        .btn--outline:hover {
            background: var(--warm-100);
            border-color: var(--warm-400);
        }
        
        /* Hero image styles moved to background approach above */
        
        .hero__card {
            position: absolute;
            background: white;
            padding: 1.5rem 2rem;
            box-shadow: var(--shadow-medium);
            z-index: 2;
            animation: gentleFloat 5s ease-in-out infinite;
        }
        
        .hero__card--hours {
            bottom: 60px;
            left: -30px;
            animation-delay: 1s;
        }
        
        .hero__card--phone {
            top: 80px;
            right: -20px;
            animation-delay: 2.5s;
        }
        
        .hero__card-label {
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--rose-gold);
            margin-bottom: 0.5rem;
        }
        
        .hero__card-content {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-family: var(--font-display);
            font-size: 1.1rem;
            color: var(--text-dark);
        }
        
        .hero__card-content i {
            width: 18px;
            height: 18px;
            color: var(--sage-400);
        }
        
        /* ========================================
           Section Styles
        ======================================== */
        .section {
            padding: var(--section-padding) 0;
        }
        
        .section--cream {
            background: var(--warm-100);
        }
        
        .section--blush {
            background: linear-gradient(180deg, var(--blush-50), var(--warm-50));
        }
        
        .section-header {
            text-align: center;
            max-width: 650px;
            margin: 0 auto 5rem;
        }
        
        .section-eyebrow {
            display: block;
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--rose-gold);
            margin-bottom: 1.5rem;
        }
        
        .section-title {
            font-family: var(--font-display);
            font-size: clamp(2.25rem, 4vw, 3rem);
            font-weight: 400;
            color: var(--text-dark);
            line-height: 1.3;
            margin-bottom: 1.5rem;
        }
        
        .section-title em {
            font-style: italic;
        }
        
        .section-description {
            font-size: 1.05rem;
            font-weight: 300;
            color: var(--text-light);
            line-height: 1.9;
        }
        
        .section-ornament {
            margin-top: 2rem;
        }
        
        /* ========================================
           Features Section
        ======================================== */
        .features__grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
        }
        
        .feature-card {
            position: relative;
            padding: 3rem 2.5rem;
            background: white;
            text-align: center;
            transition: all var(--transition-normal);
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 1px;
            background: var(--blush-300);
            transition: all var(--transition-normal);
        }
        
        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-elevated);
        }
        
        .feature-card:hover::before {
            width: 80px;
            background: var(--rose-gold);
        }
        
        .feature-card__icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 1.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--warm-200);
            border-radius: 50%;
            transition: all var(--transition-normal);
        }
        
        .feature-card__icon i {
            width: 28px;
            height: 28px;
            color: var(--rose-gold);
            transition: all var(--transition-normal);
        }
        
        .feature-card:hover .feature-card__icon {
            background: var(--blush-100);
            border-color: var(--blush-200);
            transform: scale(1.1);
        }
        
        .feature-card__title {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 400;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }
        
        .feature-card__text {
            font-weight: 300;
            color: var(--text-light);
            line-height: 1.8;
        }
        
        /* ========================================
           Philosophy Section
        ======================================== */
        .philosophy__content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }
        
        .philosophy__image {
            position: relative;
        }
        
        .philosophy__image-frame {
            position: relative;
            padding: 25px;
        }
        
        .philosophy__image-frame::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border: 1px solid var(--blush-200);
            transform: translate(15px, 15px);
            pointer-events: none;
        }
        
        .philosophy__image-main {
            position: relative;
            overflow: hidden;
        }
        
        .philosophy__image-main img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            filter: saturate(0.9);
            transition: all var(--transition-slow);
        }
        
        .philosophy__image:hover .philosophy__image-main img {
            filter: saturate(1);
            transform: scale(1.02);
        }
        
        .philosophy__quote {
            position: absolute;
            bottom: -20px;
            right: -30px;
            background: white;
            padding: 2rem 2.5rem;
            box-shadow: var(--shadow-medium);
            max-width: 300px;
        }
        
        .philosophy__quote-mark {
            font-family: var(--font-display);
            font-size: 4rem;
            line-height: 1;
            color: var(--blush-200);
            margin-bottom: -1rem;
        }
        
        .philosophy__quote-text {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-style: italic;
            color: var(--text-medium);
            line-height: 1.7;
        }
        
        .philosophy__text .section-eyebrow {
            text-align: left;
        }
        
        .philosophy__text .section-title {
            text-align: left;
        }
        
        .philosophy__text h3 {
            font-family: var(--font-display);
            font-size: 1.35rem;
            font-weight: 400;
            font-style: italic;
            color: var(--text-medium);
            margin-bottom: 1.5rem;
        }
        
        .philosophy__text p {
            font-weight: 300;
            color: var(--text-light);
            margin-bottom: 1.5rem;
            line-height: 1.9;
        }
        
        .philosophy__highlights {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-top: 2.5rem;
        }
        
        .highlight-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 1.25rem;
            background: var(--warm-50);
            border-left: 2px solid var(--blush-300);
            transition: all var(--transition-normal);
        }
        
        .highlight-item:hover {
            background: white;
            border-color: var(--rose-gold);
            transform: translateX(5px);
        }
        
        .highlight-item i {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            color: var(--rose-gold);
        }
        
        .highlight-item span {
            font-size: 0.9rem;
            font-weight: 400;
            color: var(--text-medium);
        }
        
        /* ========================================
           Team Section
        ======================================== */
        .team__grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
        }
        
        .team-card {
            position: relative;
            text-align: center;
        }
        
        .team-card__image-wrapper {
            position: relative;
            margin-bottom: 1.5rem;
            overflow: hidden;
        }
        
        .team-card__image-wrapper::before {
            content: '';
            position: absolute;
            top: 15px;
            left: 15px;
            right: 15px;
            bottom: 15px;
            border: 1px solid var(--blush-200);
            z-index: 1;
            transition: all var(--transition-normal);
            pointer-events: none;
        }
        
        .team-card:hover .team-card__image-wrapper::before {
            top: 10px;
            left: 10px;
            right: 10px;
            bottom: 10px;
            border-color: var(--rose-gold-light);
        }
        
        .team-card__image {
            position: relative;
            height: 400px;
            overflow: hidden;
        }
        
        .team-card__image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
            filter: saturate(0.85) brightness(1.02);
            transition: all var(--transition-slow);
        }
        
        .team-card:hover .team-card__image img {
            transform: scale(1.05);
            filter: saturate(1) brightness(1);
        }
        
        .team-card__name {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 400;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }
        
        .team-card__role {
            font-size: 0.85rem;
            font-weight: 400;
            letter-spacing: 1px;
            color: var(--rose-gold);
        }
        
        /* ========================================
           Services Section
        ======================================== */
        .services__grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }
        
        .service-card {
            position: relative;
            padding: 2.5rem 1.5rem;
            background: white;
            text-align: center;
            border: 1px solid transparent;
            transition: all var(--transition-normal);
        }
        
        .service-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--rose-gold);
            transition: width var(--transition-normal);
        }
        
        .service-card:hover {
            border-color: var(--warm-200);
            transform: translateY(-5px);
        }
        
        .service-card:hover::after {
            width: 50px;
        }
        
        .service-card__icon {
            width: 55px;
            height: 55px;
            margin: 0 auto 1.25rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--warm-50);
            border-radius: 50%;
            transition: all var(--transition-normal);
        }
        
        .service-card__icon i {
            width: 24px;
            height: 24px;
            color: var(--rose-gold);
        }
        
        .service-card:hover .service-card__icon {
            background: var(--blush-100);
            transform: scale(1.1);
        }
        
        .service-card__title {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 400;
            color: var(--text-dark);
        }
        
        /* ========================================
           Contact Section
        ======================================== */
        .contact {
            position: relative;
            padding: var(--section-padding) 0;
            background: linear-gradient(135deg, var(--rose-gold) 0%, var(--rose-gold-dark) 100%);
            color: white;
            overflow: hidden;
        }
        
        .contact__pattern {
            position: absolute;
            inset: 0;
            opacity: 0.05;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }
        
        .contact__content {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
        }
        
        .contact__info h2 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 2.75rem);
            font-weight: 400;
            margin-bottom: 1.5rem;
        }
        
        .contact__info > p {
            opacity: 0.9;
            font-weight: 300;
            margin-bottom: 2.5rem;
            line-height: 1.9;
        }
        
        .contact__details {
            display: flex;
            flex-direction: column;
            gap: 1.75rem;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1.25rem;
        }
        
        .contact-item__icon {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            flex-shrink: 0;
        }
        
        .contact-item__icon i {
            width: 22px;
            height: 22px;
        }
        
        .contact-item__label {
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            opacity: 0.7;
            margin-bottom: 0.25rem;
        }
        
        .contact-item__value {
            font-family: var(--font-display);
            font-size: 1.15rem;
        }
        
        .contact-item__value a {
            color: white;
        }
        
        .contact-item__value a:hover {
            opacity: 0.8;
        }
        
        .contact__hours {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 3rem;
        }
        
        .contact__hours h3 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 400;
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .contact__hours h3 i {
            width: 24px;
            height: 24px;
        }
        
        .hours-table {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        
        .hours-row {
            display: flex;
            justify-content: space-between;
            padding: 0.75rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .hours-row:last-child {
            border-bottom: none;
        }
        
        .hours-day {
            font-weight: 400;
        }
        
        .hours-time {
            font-weight: 300;
            opacity: 0.9;
        }
        
        .contact__note {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            font-style: italic;
            opacity: 0.8;
        }
        
        .contact__cta {
            margin-top: 2rem;
        }
        
        .btn--white {
            background: white;
            color: var(--rose-gold-dark);
            border: 1px solid white;
        }
        
        .btn--white:hover {
            background: transparent;
            color: white;
        }
        
        /* ========================================
           Map Section
        ======================================== */
        .map {
            height: 400px;
            background: var(--warm-200);
        }
        
        .map iframe {
            width: 100%;
            height: 100%;
            border: none;
            filter: grayscale(30%) contrast(0.95);
        }
        
        /* ========================================
           Footer
        ======================================== */
        .footer {
            padding: 3.5rem 0 2.5rem;
            background: var(--text-dark);
            color: white;
        }
        
        .footer__content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        
        .footer__brand {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .footer__brand img {
            height: 35px;
            filter: brightness(0) invert(1);
            opacity: 0.9;
        }
        
        .footer__brand-text {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 400;
        }
        
        .footer__links {
            display: flex;
            gap: 2.5rem;
        }
        
        .footer__link {
            font-size: 0.85rem;
            font-weight: 300;
            letter-spacing: 0.5px;
            opacity: 0.7;
            transition: opacity var(--transition-fast);
        }
        
        .footer__link:hover {
            opacity: 1;
        }
        
        .footer__copyright {
            font-size: 0.8rem;
            font-weight: 300;
            opacity: 0.5;
        }
        
        /* ========================================
           Scroll to Top Button
        ======================================== */
        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: white;
            color: var(--rose-gold);
            border: 1px solid var(--warm-200);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-medium);
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all var(--transition-normal);
            z-index: 100;
        }
        
        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .scroll-top:hover {
            background: var(--rose-gold);
            color: white;
            border-color: var(--rose-gold);
            transform: translateY(-3px);
        }
        
        /* ========================================
           Responsive Styles
        ======================================== */
        @media (max-width: 1024px) {
            .hero__content {
                max-width: 100%;
                text-align: center;
                padding: clamp(8rem, 18vw, 12rem) 0 clamp(5rem, 10vw, 7rem);
            }
            
            .hero__description {
                margin-left: auto;
                margin-right: auto;
            }
            
            .hero__actions {
                justify-content: center;
            }
            
            .hero .ornament {
                justify-content: center !important;
            }
            
            .philosophy__content {
                grid-template-columns: 1fr;
                gap: 4rem;
            }
            
            .philosophy__image {
                max-width: 450px;
                margin: 0 auto;
            }
            
            .philosophy__text .section-eyebrow,
            .philosophy__text .section-title {
                text-align: center;
            }
            
            .philosophy__text h3,
            .philosophy__text p {
                text-align: center;
            }
            
            .features__grid,
            .team__grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .services__grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .contact__content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
        }
        
        @media (max-width: 768px) {
            .nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 85%;
                max-width: 350px;
                height: 100vh;
                background: var(--warm-50);
                flex-direction: column;
                padding: 7rem 2.5rem 2.5rem;
                transition: right var(--transition-normal);
                z-index: 999;
            }
            
            .nav.active {
                right: 0;
            }
            
            .nav__list {
                flex-direction: column;
                gap: 0.5rem;
                width: 100%;
            }
            
            .nav__link {
                display: block;
                padding: 1rem 0;
                font-size: 1.1rem;
                border-bottom: 1px solid var(--warm-200);
            }
            
            .nav__link::after {
                display: none;
            }
            
            .header__cta {
                width: 100%;
                justify-content: center;
                margin-top: 1rem;
            }
            
            .menu-toggle {
                display: flex;
                z-index: 1001;
            }
            
            .menu-toggle.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }
            
            .menu-toggle.active span:nth-child(2) {
                opacity: 0;
            }
            
            .menu-toggle.active span:nth-child(3) {
                transform: rotate(-45deg) translate(5px, -5px);
            }
            
            .hero__scroll {
                display: none;
            }
            
            .features__grid,
            .team__grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .services__grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .philosophy__highlights {
                grid-template-columns: 1fr;
            }
            
            .philosophy__quote {
                position: relative;
                bottom: auto;
                right: auto;
                margin-top: -30px;
                margin-left: 20px;
                margin-right: 20px;
            }
            
            .team-card__image {
                height: 350px;
            }
        }
        
        @media (max-width: 480px) {
            .hero__values {
                flex-direction: column;
                gap: 1.5rem;
            }
            
            .hero__actions {
                flex-direction: column;
            }
            
            .btn {
                width: 100%;
                justify-content: center;
            }
            
            .services__grid {
                grid-template-columns: 1fr;
            }
            
            .footer__content {
                flex-direction: column;
                text-align: center;
            }
            
            .footer__links {
                flex-direction: column;
                gap: 0.75rem;
            }
        }

/* ========================================
   Additional Styles for Multi-Page Site
======================================== */

/* Skip Link */
.skip-link { position: absolute; top: -100%; left: 1rem; background: var(--rose-gold); color: white; padding: .5rem 1rem; z-index: 10000; font-weight: 500; }
.skip-link:focus { top: 1rem; }

/* Page Hero (Sub-pages) */
.page-hero {
    position: relative;
    padding: clamp(8rem, 16vw, 12rem) 0 clamp(4rem, 8vw, 6rem);
    text-align: center;
    overflow: hidden;
    color: white;
    background: linear-gradient(160deg, #3d3d3d 0%, #5a4a4a 50%, rgba(183, 110, 121, 0.6) 100%);
}
.page-hero--with-image {
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
}
.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(40,40,40,0.78) 0%, rgba(80,60,60,0.6) 50%, rgba(183,110,121,0.5) 100%);
    z-index: 1;
}
.page-hero__content {
    position: relative;
    z-index: 2;
}
.page-hero .section-eyebrow { color: var(--blush-300); margin-bottom: 1rem; }
.page-hero .section-title { margin-bottom: 0.75rem; color: white; }
.page-hero .section-title em { color: var(--blush-300); }
.page-hero .section-description { max-width: 540px; margin: 0 auto; color: rgba(255,255,255,0.88); font-size: 1.1rem; line-height: 1.7; }

/* Gallery Grid */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
.gallery__item {
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: all var(--transition-normal);
}
.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.85);
    transition: all var(--transition-slow);
}
.gallery__item:hover img {
    transform: scale(1.05);
    filter: saturate(1);
}

/* Leistungen Cards */
.leistungen__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}
.leistung-card {
    display: flex;
    gap: 2rem;
    background: white;
    padding: 2rem;
    transition: all var(--transition-normal);
    align-items: flex-start;
    border: 1px solid transparent;
}
.leistung-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-elevated);
    border-color: var(--warm-200);
}
.leistung-card__image {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    overflow: hidden;
}
.leistung-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.85);
    transition: all var(--transition-slow);
}
.leistung-card:hover .leistung-card__image img {
    transform: scale(1.05);
    filter: saturate(1);
}
.leistung-card__title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}
.leistung-card__text {
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 3rem;
    box-shadow: var(--shadow-soft);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.form-group {
    margin-bottom: 1.25rem;
}
.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid var(--warm-200);
    background: var(--warm-50);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-dark);
    transition: all var(--transition-normal);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--rose-gold-light);
    background: white;
    box-shadow: 0 0 0 3px rgba(183, 110, 121, 0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--rose-gold);
    flex-shrink: 0;
}
.checkbox-group label {
    font-size: 0.82rem;
    text-transform: none;
    letter-spacing: 0;
    color: var(--text-light);
    line-height: 1.5;
}

/* Prose (Impressum/Datenschutz) */
.prose {
    max-width: 800px;
    margin: 0 auto;
}
.prose h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
}
.prose h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}
.prose p {
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1rem;
}
.prose a {
    color: var(--rose-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.prose ul, .prose ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}
.prose li { margin-bottom: 0.35rem; font-weight: 300; }

/* Cookie Banner (GDPR) */
.cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    max-width: 460px;
    background: white;
    box-shadow: var(--shadow-elevated);
    padding: 2rem;
    z-index: 10000;
    display: none;
    animation: fadeInUp 0.5s ease;
}
.cookie-banner.active { display: block; }
.cookie-banner p {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--text-light);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}
.cookie-banner a {
    color: var(--rose-gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.cookie-buttons {
    display: flex;
    gap: 0.75rem;
}
.cookie-btn {
    flex: 1;
    padding: 0.7rem 1rem;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: var(--font-body);
    border: 1px solid var(--warm-300);
    background: transparent;
    color: var(--text-medium);
    transition: all var(--transition-normal);
}
.cookie-btn:hover {
    border-color: var(--rose-gold);
    color: var(--rose-gold);
}
.cookie-btn--accept {
    background: var(--rose-gold);
    color: white;
    border-color: var(--rose-gold);
}
.cookie-btn--accept:hover {
    background: var(--rose-gold-dark);
    border-color: var(--rose-gold-dark);
}

/* Additional responsive for new elements */
@media (max-width: 1024px) {
    .leistungen__grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .leistung-card { flex-direction: column; }
    .leistung-card__image { width: 100%; height: 200px; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 2rem 1.5rem; }
    .cookie-banner { left: 1rem; right: 1rem; max-width: none; bottom: 1rem; }
}
@media (max-width: 480px) {
    .leistungen__grid { gap: 1.5rem; }
}

/* Print */
@media print {
    .header, .footer, .cookie-banner, .scroll-top, .contact, .map { display: none; }
    body { color: #000; background: #fff; }
}

/* ============================================
   Location Card (GDPR-safe — no third-party embed)
   Replaces Google Maps with self-hosted address card.
   ============================================ */
.location-card {
    background: white;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}
.location-card__inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    min-height: 480px;
}
.location-card__info {
    padding: clamp(2rem, 5vw, 4rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.location-card__info .section-eyebrow { margin-bottom: 0.75rem; }
.location-card__info .section-title { margin-bottom: 1.25rem; }
.location-card__info > p {
    color: var(--text-medium, #5a5a5a);
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.7;
}
.location-card__address {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 0;
    border-top: 1px solid var(--warm-200, #ead8c8);
}
.location-card__address:last-of-type { border-bottom: 1px solid var(--warm-200, #ead8c8); }
.location-card__address svg {
    color: var(--rose-gold, #b76e79);
    flex-shrink: 0;
    margin-top: 2px;
}
.location-card__address div { font-size: 0.98rem; line-height: 1.6; color: var(--text-medium, #5a5a5a); font-weight: 300; }
.location-card__address strong { color: var(--text-dark, #3d3d3d); font-weight: 500; }
.location-card__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.location-card__actions .btn { font-size: 0.85rem; }
.location-card__notice {
    font-size: 0.78rem;
    color: var(--text-light, #7a7a7a);
    margin-top: 1.5rem;
    line-height: 1.7;
    font-style: italic;
}
.location-card__visual {
    background: linear-gradient(135deg, #fdf8f6 0%, #f5e6d8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
.location-card__visual svg { width: 100%; height: 100%; display: block; }

/* ─── Karten-Guard (OpenStreetMap mit Consent) ─── */
.map-guard {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100%;
    overflow: hidden;
}
.map-guard__placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.map-guard__placeholder svg {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.map-guard__consent {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(160deg, rgba(253,248,246,0.82) 0%, rgba(245,230,216,0.88) 100%);
    backdrop-filter: blur(2px);
    z-index: 2;
}
.map-guard__consent-inner {
    max-width: 340px;
    text-align: center;
    color: var(--text-medium, #5a5a5a);
}
.map-guard__consent-inner > svg {
    color: var(--rose-gold, #b76e79);
    margin-bottom: 0.75rem;
}
.map-guard__title {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--text-dark, #3d3d3d);
    margin: 0 0 0.5rem;
}
.map-guard__text {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 1.25rem;
}
.map-guard__btn {
    margin-bottom: 0.85rem;
}
.map-guard__remember {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light, #7a7a7a);
    cursor: pointer;
    margin-bottom: 0.75rem;
}
.map-guard__remember input {
    accent-color: var(--rose-gold, #b76e79);
    width: 16px;
    height: 16px;
    cursor: pointer;
}
.map-guard__legal {
    margin: 0;
    font-size: 0.82rem;
}
.map-guard__legal a {
    color: var(--rose-gold, #b76e79);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.map-guard__iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    z-index: 3;
}
.map-guard.is-loaded .map-guard__consent,
.map-guard.is-loaded .map-guard__placeholder {
    display: none;
}

@media (max-width: 768px) {
    .location-card__inner { grid-template-columns: 1fr; }
    .location-card__visual { min-height: 320px; order: -1; }
    .map-guard { min-height: 320px; }
}

/* ============================================
   Form Status Messages
   ============================================ */
.form-message {
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid;
    font-size: 0.95rem;
    font-weight: 400;
    background: white;
}
.form-message--success {
    border-color: var(--sage-400, #8db382);
    color: var(--sage-500, #6b9960);
    background: var(--sage-50, #f6f9f4);
}
.form-message--error {
    border-color: #d04444;
    color: #a23030;
    background: #fbeaea;
}

/* ============================================
   Footer button (Cookie-Einstellungen)
   ============================================ */
.footer__link--button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font: inherit;
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.footer__link--button:hover {
    color: var(--rose-gold, #b76e79);
}

/* Hidden honeypot field — never displayed */
input[name="zm_website"] {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Cookie banner accessibility */
.cookie-banner[hidden] { display: none !important; }

/* ============================================
   ─── WARM MODERN v2.0 ADDITIONS ───
   Editorial, asymmetric, human-scaled.
   Builds on existing palette: blush, rose-gold, sage, warm neutrals.
   ============================================ */

/* Refined hero — keep dark, but warmer */
.hero__overlay {
    background:
      radial-gradient(ellipse at 30% 40%, rgba(0,0,0,0.15) 0%, transparent 60%),
      linear-gradient(180deg, rgba(40,30,30,0.55) 0%, rgba(80,60,55,0.45) 50%, rgba(183,110,121,0.45) 100%);
}

/* Page hero — warmer, lighter overlay (let the photography breathe) */
.page-hero {
    padding: clamp(8rem, 14vw, 11rem) 0 clamp(4rem, 7vw, 5.5rem);
}
.page-hero__overlay {
    background:
      linear-gradient(180deg, rgba(35,25,25,0.62) 0%, rgba(55,40,40,0.6) 55%, rgba(150,90,100,0.62) 100%);
}
.page-hero .section-title {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: -0.01em;
    font-weight: 400;
    text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}
.page-hero .section-description {
    text-shadow: 0 1px 10px rgba(0,0,0,0.35);
}
.page-hero .section-eyebrow {
    color: rgba(255,255,255,0.92);
    font-family: var(--font-body, 'Jost', sans-serif);
    font-weight: 400;
    letter-spacing: 0.18em;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 10px rgba(0,0,0,0.35);
}

/* ─── Practice essentials strip (warm horizontal rail) ─── */
.essentials-strip {
    background: var(--cream, #faf6f1);
    border-top: 1px solid rgba(183,110,121,0.18);
    border-bottom: 1px solid rgba(183,110,121,0.18);
    padding: 1.75rem 0;
}
.essentials-strip__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: center;
}
.essentials-strip__item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    font-family: var(--font-body, 'Jost', sans-serif);
    font-size: 0.92rem;
    color: var(--text-medium, #5a5a5a);
}
.essentials-strip__item:not(:last-child) {
    border-right: 1px solid rgba(183,110,121,0.18);
    padding-right: 2rem;
}
.essentials-strip__icon {
    color: var(--rose-gold, #b76e79);
    flex-shrink: 0;
}
.essentials-strip__label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-light, #7a7a7a);
    margin-bottom: 0.15rem;
}
.essentials-strip__value {
    font-weight: 500;
    color: var(--text-dark, #3d3d3d);
    line-height: 1.3;
}
@media (max-width: 900px) {
    .essentials-strip__inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 2rem; }
    .essentials-strip__item:not(:last-child) { border-right: none; padding-right: 0; }
}
@media (max-width: 540px) {
    .essentials-strip__inner { grid-template-columns: 1fr; }
}

/* ─── Editorial split (asymmetric 5:7 or 7:5) ─── */
.editorial-split {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: clamp(2.5rem, 6vw, 6rem);
    align-items: start;
}
.editorial-split--reverse {
    grid-template-columns: 7fr 5fr;
}
.editorial-split__lede h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.08;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: var(--text-dark, #3d3d3d);
    margin-bottom: 1.5rem;
}
.editorial-split__lede h2 em {
    color: var(--rose-gold, #b76e79);
    font-style: italic;
    font-weight: 400;
}
.editorial-split__lede .section-eyebrow {
    margin-bottom: 1.25rem;
}
.editorial-split__body {
    font-size: 1.06rem;
    line-height: 1.75;
    color: var(--text-medium, #5a5a5a);
    max-width: 60ch;
}
.editorial-split__body p + p { margin-top: 1.1em; }
.editorial-split__body strong {
    color: var(--text-dark, #3d3d3d);
    font-weight: 500;
}
.editorial-split__pull {
    margin-top: 2.5rem;
    padding-left: 1.5rem;
    border-left: 2px solid var(--rose-gold, #b76e79);
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-style: italic;
    font-size: 1.4rem;
    line-height: 1.4;
    color: var(--text-dark, #3d3d3d);
}
@media (max-width: 880px) {
    .editorial-split,
    .editorial-split--reverse { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ─── Stats rail (numbered editorial) ─── */
.stats-rail {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid rgba(183,110,121,0.25);
    border-bottom: 1px solid rgba(183,110,121,0.25);
}
.stats-rail__cell {
    padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 2.5rem);
    position: relative;
}
.stats-rail__cell:not(:last-child) {
    border-right: 1px solid rgba(183,110,121,0.25);
}
.stats-rail__num {
    display: block;
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: clamp(3.5rem, 7vw, 5.5rem);
    line-height: 0.95;
    font-weight: 300;
    color: var(--rose-gold, #b76e79);
    font-feature-settings: "lnum" 1, "tnum" 0;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
.stats-rail__num sup {
    font-size: 0.4em;
    vertical-align: top;
    margin-left: 0.25em;
    color: var(--blush-400, #e0a894);
}
.stats-rail__label {
    display: block;
    font-family: var(--font-body, 'Jost', sans-serif);
    font-weight: 500;
    color: var(--text-dark, #3d3d3d);
    margin-bottom: 0.65rem;
    line-height: 1.4;
}
.stats-rail__detail {
    font-size: 0.92rem;
    color: var(--text-light, #7a7a7a);
    line-height: 1.6;
}
@media (max-width: 760px) {
    .stats-rail { grid-template-columns: 1fr; }
    .stats-rail__cell:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid rgba(183,110,121,0.25);
    }
}

/* ─── Services shelf (rail, not cards) ─── */
.services-shelf {
    margin-top: 2rem;
}
.service-row {
    display: grid;
    grid-template-columns: 60px 1fr 2fr auto;
    gap: clamp(1.5rem, 4vw, 3rem);
    padding: clamp(1.75rem, 3vw, 2.5rem) 0;
    border-bottom: 1px solid rgba(183,110,121,0.2);
    align-items: baseline;
    transition: padding 300ms ease;
    cursor: default;
}
.service-row:first-child { border-top: 1px solid rgba(183,110,121,0.2); }
.service-row:hover {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}
.service-row__num {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: 1.4rem;
    color: var(--rose-gold, #b76e79);
    font-style: italic;
    line-height: 1;
}
.service-row__name {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 400;
    color: var(--text-dark, #3d3d3d);
    line-height: 1.2;
    letter-spacing: -0.005em;
}
.service-row__name em {
    color: var(--rose-gold, #b76e79);
    font-style: italic;
}
.service-row__desc {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-medium, #5a5a5a);
    max-width: 50ch;
}
.service-row__arrow {
    color: var(--rose-gold, #b76e79);
    opacity: 0.5;
    transition: opacity 200ms, transform 200ms;
}
.service-row:hover .service-row__arrow {
    opacity: 1;
    transform: translateX(4px);
}
@media (max-width: 880px) {
    .service-row {
        grid-template-columns: 40px 1fr;
        grid-template-rows: auto auto;
        gap: 0.5rem 1.5rem;
        padding: 1.5rem 0;
    }
    .service-row__num { grid-row: 1; grid-column: 1; }
    .service-row__name { grid-row: 1; grid-column: 2; }
    .service-row__desc { grid-row: 2; grid-column: 1 / -1; margin-top: 0.5rem; }
    .service-row__arrow { display: none; }
}

/* ─── Team shelf (single row) ─── */
.team-shelf {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: clamp(1.25rem, 2.5vw, 2rem);
}
.team-shelf-card {
    text-align: center;
}
.team-shelf-card__portrait {
    aspect-ratio: 4/5;
    overflow: hidden;
    margin-bottom: 1rem;
    background: var(--blush-50, #fdf8f6);
    position: relative;
}
.team-shelf-card__portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    filter: saturate(0.92) brightness(1.02);
    transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}
.team-shelf-card:hover .team-shelf-card__portrait img {
    transform: scale(1.04);
}
.team-shelf-card__name {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-dark, #3d3d3d);
    margin-bottom: 0.15rem;
    line-height: 1.3;
}
.team-shelf-card__role {
    font-family: var(--font-body, 'Jost', sans-serif);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-light, #7a7a7a);
}

/* ─── FAQ section (warm modern) ─── */
.faq-section {
    background: var(--blush-50, #fdf8f6);
}
.faq-section__header {
    max-width: 700px;
    margin: 0 auto 3.5rem;
    text-align: center;
}
.faq-list {
    max-width: 820px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid rgba(183,110,121,0.2);
}
.faq-item:first-child { border-top: 1px solid rgba(183,110,121,0.2); }
.faq-item__question {
    display: grid;
    grid-template-columns: 50px 1fr auto;
    gap: 1.25rem;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    list-style: none;
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: clamp(1.1rem, 1.8vw, 1.4rem);
    font-weight: 500;
    color: var(--text-dark, #3d3d3d);
    line-height: 1.35;
    transition: color 200ms;
}
.faq-item__question::-webkit-details-marker { display: none; }
.faq-item__question:hover { color: var(--rose-gold, #b76e79); }
.faq-item__number {
    font-style: italic;
    color: var(--rose-gold, #b76e79);
    font-weight: 400;
    font-size: 0.95rem;
    font-feature-settings: "lnum" 1;
}
.faq-item__toggle {
    color: var(--rose-gold, #b76e79);
    transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item[open] .faq-item__toggle {
    transform: rotate(45deg);
}
.faq-item__answer {
    padding: 0 0 1.75rem calc(50px + 1.25rem);
    max-width: 70ch;
}
.faq-item__answer p {
    font-family: var(--font-body, 'Jost', sans-serif);
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-medium, #5a5a5a);
}
.faq-section__cta {
    margin: 3rem auto 0;
    text-align: center;
    color: var(--text-light, #7a7a7a);
    font-family: var(--font-body, 'Jost', sans-serif);
}
.faq-section__cta a {
    color: var(--rose-gold, #b76e79);
    margin-left: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;
    transition: color 200ms;
}
.faq-section__cta a:hover {
    color: var(--text-dark, #3d3d3d);
}
@media (max-width: 600px) {
    .faq-item__question {
        grid-template-columns: 36px 1fr auto;
        gap: 0.85rem;
        font-size: 1.08rem;
    }
    .faq-item__answer {
        padding-left: calc(36px + 0.85rem);
    }
}

/* ─── Founder note / editorial card with portrait ─── */
.founder-note {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    padding: clamp(3rem, 6vw, 5rem);
    background: linear-gradient(160deg, var(--cream, #faf6f1) 0%, var(--blush-100, #faeee9) 100%);
}
.founder-note__portrait {
    aspect-ratio: 4/5;
    overflow: hidden;
    position: relative;
}
.founder-note__portrait::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 1px solid rgba(183,110,121,0.35);
    pointer-events: none;
    z-index: 1;
}
.founder-note__portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    filter: saturate(0.92);
}
.founder-note__quote {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: clamp(1.6rem, 2.6vw, 2.1rem);
    line-height: 1.4;
    color: var(--text-dark, #3d3d3d);
    font-weight: 400;
    margin-bottom: 1.75rem;
    font-style: italic;
    letter-spacing: -0.005em;
}
.founder-note__signature {
    font-family: var(--font-body, 'Jost', sans-serif);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-medium, #5a5a5a);
}
.founder-note__signature strong {
    display: block;
    text-transform: none;
    letter-spacing: -0.005em;
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text-dark, #3d3d3d);
    margin-bottom: 0.3rem;
    letter-spacing: 0;
    font-weight: 500;
}
@media (max-width: 880px) {
    .founder-note { grid-template-columns: 1fr; padding: 2.5rem 1.5rem; }
    .founder-note__portrait { max-width: 280px; margin: 0 auto; }
}

/* ─── Section header (warm modern variant — left-aligned editorial) ─── */
.section-header--editorial {
    text-align: left;
    max-width: 720px;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-header--editorial .section-title {
    text-align: left;
    margin-left: 0;
}

/* ─── Subtle warm hover lifts ─── */
.feature-card,
.team-card,
.leistung-card {
    transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 300ms;
}
.feature-card:hover,
.team-card:hover,
.leistung-card:hover {
    transform: translateY(-3px);
}

/* ─── Improved buttons (warmer feedback) ─── */
.btn {
    transition: transform 200ms cubic-bezier(0.16, 1, 0.3, 1), background-color 250ms, color 250ms, border-color 250ms, box-shadow 250ms;
}
.btn:active {
    transform: scale(0.985);
}
.btn--primary:hover {
    box-shadow: 0 8px 24px rgba(183,110,121,0.25);
}


/* ─── Amenities grid (Die Praxis) ─── */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(183,110,121,0.2);
    border-left: 1px solid rgba(183,110,121,0.2);
}
.amenity-item {
    padding: clamp(1.5rem, 3vw, 2.25rem);
    border-right: 1px solid rgba(183,110,121,0.2);
    border-bottom: 1px solid rgba(183,110,121,0.2);
    background: rgba(255,255,255,0.5);
}
.amenity-item__num {
    display: block;
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: 0.95rem;
    font-style: italic;
    color: var(--rose-gold, #b76e79);
    margin-bottom: 0.75rem;
}
.amenity-item__title {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-dark, #3d3d3d);
    margin: 0 0 0.5rem;
    line-height: 1.25;
}
.amenity-item__text {
    font-family: var(--font-body, 'Jost', sans-serif);
    font-size: 0.95rem;
    color: var(--text-medium, #5a5a5a);
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 880px) { .amenities-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .amenities-grid { grid-template-columns: 1fr; } }

/* ─── Notdienst block (KZV emergency info) ─── */
.notdienst {
    background: linear-gradient(160deg, var(--cream, #faf6f1) 0%, #f5e6d8 100%);
    padding: clamp(2rem, 4vw, 3rem);
    border-left: 3px solid var(--rose-gold, #b76e79);
    margin-top: 2rem;
}
.notdienst__title {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-dark, #3d3d3d);
    margin: 0 0 0.25rem;
    line-height: 1.3;
}
.notdienst__source {
    font-family: var(--font-body, 'Jost', sans-serif);
    font-size: 0.85rem;
    color: var(--text-light, #7a7a7a);
    margin: 0 0 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.notdienst__intro {
    font-size: 0.98rem;
    line-height: 1.65;
    color: var(--text-medium, #5a5a5a);
    margin-bottom: 1.5rem;
}
.notdienst__rows {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}
.notdienst__row strong {
    display: block;
    font-family: var(--font-body, 'Jost', sans-serif);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-light, #7a7a7a);
    font-weight: 500;
    margin-bottom: 0.4rem;
}
.notdienst__row span {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: 1.1rem;
    color: var(--text-dark, #3d3d3d);
    line-height: 1.4;
}
.notdienst__phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: 1.3rem;
    color: var(--rose-gold, #b76e79);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
}
.notdienst__link {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-medium, #5a5a5a);
}
.notdienst__contact {
    display: flex;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    flex-wrap: wrap;
}
.notdienst__qr {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-medium, #5a5a5a);
}
.notdienst__qr img {
    display: block;
    width: 120px;
    height: 120px;
    padding: 8px;
    background: #fff;
    border: 1px solid rgba(183, 110, 121, 0.25);
    border-radius: 2px;
}
.notdienst__qr-caption {
    font-size: 0.78rem;
    line-height: 1.35;
    text-align: center;
    color: var(--text-light, #7a7a7a);
}
@media (max-width: 540px) {
    .notdienst__rows { grid-template-columns: 1fr; }
    .notdienst__contact { gap: 1.25rem; }
}

/* ─── Team bio (Unser Team page) ─── */
.team-bio {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
    margin-bottom: clamp(3rem, 6vw, 5rem);
    padding-bottom: clamp(3rem, 6vw, 5rem);
    border-bottom: 1px solid rgba(183,110,121,0.2);
}
.team-bio:last-of-type { border-bottom: none; }
.team-bio--reverse { grid-template-columns: 1.5fr 1fr; }
.team-bio--reverse .team-bio__portrait { order: 2; }
.team-bio__portrait {
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--blush-50, #fdf8f6);
    position: relative;
}
.team-bio__portrait::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 1px solid rgba(183,110,121,0.3);
    pointer-events: none;
    z-index: 1;
}
.team-bio__portrait img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center 15%;
    filter: saturate(0.92);
}
.team-bio__eyebrow {
    font-family: var(--font-body, 'Jost', sans-serif);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.78rem;
    color: var(--rose-gold, #b76e79);
    margin-bottom: 0.75rem;
    display: block;
}
.team-bio__name {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    font-weight: 500;
    color: var(--text-dark, #3d3d3d);
    margin: 0 0 0.25rem;
    line-height: 1.2;
}
.team-bio__role {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--rose-gold, #b76e79);
    margin: 0 0 1.5rem;
}
.team-bio__text {
    font-family: var(--font-body, 'Jost', sans-serif);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-medium, #5a5a5a);
}
.team-bio__text p { margin: 0 0 1rem; }
.team-bio__cv {
    margin-top: 1.5rem;
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-body, 'Jost', sans-serif);
    font-size: 0.9rem;
}
.team-bio__cv th, .team-bio__cv td {
    text-align: left;
    padding: 0.65rem 0;
    vertical-align: top;
    color: var(--text-medium, #5a5a5a);
}
.team-bio__cv th {
    width: 120px;
    color: var(--rose-gold, #b76e79);
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-style: italic;
    font-weight: 400;
    padding-right: 1.5rem;
    font-size: 0.95rem;
}
.team-bio__cv tr { border-bottom: 1px solid rgba(183,110,121,0.15); }
.team-bio__cv tr:last-child { border-bottom: none; }
.team-bio__badge {
    margin-top: 1.25rem;
    padding: 0.75rem 1rem;
    background: rgba(183,110,121,0.06);
    border-left: 2px solid var(--rose-gold, #b76e79);
    font-size: 0.92rem;
    color: var(--text-medium, #5a5a5a);
    line-height: 1.5;
}
@media (max-width: 880px) {
    .team-bio, .team-bio--reverse { grid-template-columns: 1fr; }
    .team-bio--reverse .team-bio__portrait { order: 0; }
    .team-bio__portrait { max-width: 320px; margin: 0 auto; }
}

/* ─── Karriere / Stellenangebot (Team-Seite) ─── */
.careers {
    background: linear-gradient(160deg, var(--blush-100, #faeee9) 0%, #f5e6d8 100%);
}
.careers__inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.careers__title {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--text-dark, #3d3d3d);
    margin: 0.5rem 0 1.25rem;
}
.careers__title em {
    color: var(--rose-gold, #b76e79);
    font-style: italic;
}
.careers__text {
    font-family: var(--font-body, 'Jost', sans-serif);
    font-size: 1.06rem;
    line-height: 1.75;
    color: var(--text-medium, #5a5a5a);
    max-width: 60ch;
    margin: 0 auto 2rem;
}
.careers__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
