
/*** T3SB identifier: darkModeToggler */

.dm-toggler .bi {
	width: 1em;
	height: 1em;
	vertical-align: -.125em;
	fill: currentcolor;
}



/*** T3SB identifier: t3sbsCSSassets_59176 */

/* t3sbs_assets_59176 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --color-cream: #FAF7F2;
            --color-sage: #A8B5A0;
            --color-terracotta: #D97757;
            --color-blue: #7B9FB8;
            --color-lavender: #B5A7C4;
            --color-ochre: #D4A574;
            --color-text: #2C3028;
            --color-text-soft: #5A5F54;
            
            --font-display: 'Cormorant', serif;
            --font-body: 'Outfit', sans-serif;
        }

        body {
            font-family: var(--font-body);
            color: var(--color-text);
            background: var(--color-cream);
            line-height: 1.7;
            overflow-x: hidden;
        }

        /* Floating Background Circles */
        .bg-circles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }

        .circle {
            position: absolute;
            border-radius: 50%;
            opacity: 0.08;
            animation: float 20s infinite ease-in-out;
        }

        .circle-1 {
            width: 400px;
            height: 400px;
            background: var(--color-sage);
            top: -100px;
            right: -100px;
            animation-delay: 0s;
        }

        .circle-2 {
            width: 300px;
            height: 300px;
            background: var(--color-terracotta);
            bottom: 10%;
            left: -50px;
            animation-delay: 3s;
        }

        .circle-3 {
            width: 250px;
            height: 250px;
            background: var(--color-blue);
            top: 40%;
            right: 5%;
            animation-delay: 6s;
        }

        .circle-4 {
            width: 200px;
            height: 200px;
            background: var(--color-lavender);
            bottom: 30%;
            left: 10%;
            animation-delay: 9s;
        }

        @keyframes float {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            33% {
                transform: translate(30px, -30px) scale(1.1);
            }
            66% {
                transform: translate(-20px, 20px) scale(0.9);
            }
        }

        /* Header */
        header {
            position: relative;
            z-index: 100;
            padding: 2rem 4rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            animation: fadeInDown 1s ease-out;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo-circles {
            display: flex;
            gap: 4px;
        }

        .logo-circle {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .logo-text {
            font-family: var(--font-display);
            font-size: 1.8rem;
            font-weight: 300;
            letter-spacing: 3px;
            color: var(--color-text);
        }



        /* Hero Section */
        .hero {
            position: relative;
            z-index: 10;
            min-height: 85vh;
            display: flex;
            align-items: center;
            padding: 0 4rem;
            animation: fadeIn 1.2s ease-out;
        }

        .hero-content {
            max-width: 800px;
        }

        .hero-subtitle {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--color-terracotta);
            margin-bottom: 1.5rem;
            font-weight: 500;
            animation: fadeInUp 1s ease-out 0.2s backwards;
        }

        .hero-title {
            font-family: var(--font-display);
            font-size: 5.5rem;
            font-weight: 300;
            line-height: 1.1;
            margin-bottom: 2rem;
            color: var(--color-text);
            animation: fadeInUp 1s ease-out 0.4s backwards;
        }

        .hero-description {
            font-size: 1.25rem;
            color: var(--color-text-soft);
            margin-bottom: 3rem;
            max-width: 600px;
            font-weight: 300;
            animation: fadeInUp 1s ease-out 0.6s backwards;
        }

        .cta-button {
            display: inline-block;
            padding: 1.2rem 3rem;
            background: var(--color-terracotta);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s;
            box-shadow: 0 10px 30px rgba(217, 119, 87, 0.2);
            animation: fadeInUp 1s ease-out 0.8s backwards;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(217, 119, 87, 0.3);
        }

        /* Section Styling */
        section {
            position: relative;
            z-index: 10;
            padding: 6rem 4rem;
        }

        .section-tag {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--color-terracotta);
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: 3.5rem;
            font-weight: 400;
            margin-bottom: 3rem;
            color: var(--color-text);
        }

        /* Arbeitsweise Section */
        .arbeitsweise {
            background: linear-gradient(135deg, rgba(168, 181, 160, 0.05) 0%, rgba(181, 167, 196, 0.05) 100%);
        }

        .principles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .principle-card {
            padding: 2.5rem;
            background: white;
            border-radius: 20px;
            transition: all 0.4s;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .principle-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
        }

        .principle-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .principle-title {
            font-family: var(--font-display);
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--color-text);
        }

        .principle-text {
            color: var(--color-text-soft);
            line-height: 1.8;
            font-size: 0.95rem;
        }

        /* Methods Section */
        .methods {
            background: white;
        }

        .methods-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
            margin-top: 3rem;
        }

        .method-item {
            padding: 2rem 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
        }

        .method-item:last-child {
            border-bottom: none;
        }

        .method-item:hover .method-name {
            color: var(--color-terracotta);
        }

        .method-name {
            font-family: var(--font-display);
            font-size: 1.6rem;
            margin-bottom: 0.8rem;
            color: var(--color-text);
            transition: color 0.3s;
        }

        .method-desc {
            color: var(--color-text-soft);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .methods-visual {
            position: sticky;
            top: 100px;
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .visual-circles {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .visual-circle {
            aspect-ratio: 1;
            border-radius: 50%;
            opacity: 0.6;
            transition: all 0.4s;
            cursor: pointer;
        }

        .visual-circle:hover {
            opacity: 1;
            transform: scale(1.1);
        }

        /* About Section */
        .about {
            background: var(--color-cream);
        }

        .about-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .about-text {
            font-size: 1.15rem;
            line-height: 2;
            color: var(--color-text-soft);
            margin-bottom: 2rem;
        }

        .about-highlight {
            background: linear-gradient(135deg, rgba(217, 119, 87, 0.08) 0%, rgba(168, 181, 160, 0.08) 100%);
            padding: 2.5rem;
            border-radius: 20px;
            border-left: 4px solid var(--color-terracotta);
            margin-top: 3rem;
        }

        .highlight-text {
            font-family: var(--font-display);
            font-size: 1.5rem;
            line-height: 1.8;
            color: var(--color-text);
        }

        /* Contact Section */
        .contact {
            background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-blue) 100%);
            color: white;
            text-align: center;
        }

        .contact .section-tag {
            color: rgba(255, 255, 255, 0.8);
        }

        .contact .section-title {
            color: white;
        }

        .contact-info {
            margin-top: 3rem;
            display: flex;
            justify-content: center;
            gap: 4rem;
            flex-wrap: wrap;
        }

        .contact-item {
            text-align: center;
        }

        .contact-label {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 0.8rem;
            opacity: 0.9;
        }

        .contact-value {
            font-family: var(--font-display);
            font-size: 1.4rem;
        }

        .contact-value a {
            color: white;
            text-decoration: none;
            transition: opacity 0.3s;
        }

        .contact-value a:hover {
            opacity: 0.8;
        }

        .location {
            margin-top: 4rem;
            font-size: 1rem;
            opacity: 0.9;
        }

        /* Footer */


        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .methods-container {
                grid-template-columns: 1fr;
            }

            .methods-visual {
                position: relative;
                top: 0;
            }
        }

        @media (max-width: 768px) {
            header {
                padding: 1.5rem 2rem;
                flex-direction: column;
                gap: 1.5rem;
            }

            nav {
                gap: 1.5rem;
            }

            .hero {
                padding: 0 2rem;
                min-height: 70vh;
            }

            .hero-title {
                font-size: 3.5rem;
            }

            section {
                padding: 4rem 2rem;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .principles-grid {
                grid-template-columns: 1fr;
            }

            .contact-info {
                flex-direction: column;
                gap: 2rem;
            }
        }
	

