﻿* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-dark: #1A2E2A;
            --primary: #2C4A3A;
            --primary-light: #3F6B4F;
            --gold: #B59D7A;
            --gold-light: #D4BC98;
            --cream: #F8F5F0;
            --white: #FFFFFF;
            --black: #1E1E1E;
            --gray-light: #F0F0F0;
            --gray: #6B6B6B;
            --gray-dark: #4A4A4A;
            
            --spacing-xs: 8px;
            --spacing-sm: 16px;
            --spacing-md: 32px;
            --spacing-lg: 64px;
            --spacing-xl: 96px;
            
            --container: 1280px;
            --radius-sm: 8px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --radius-xl: 32px;
            --transition: all 0.3s ease;
            --header-height: 88px;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--cream);
            color: var(--black);
            line-height: 1.5;
            overflow-x: hidden;
        }

        .container {
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 var(--spacing-md);
        }

        .section {
            padding: var(--spacing-xl) 0;
            scroll-margin-top: 120px;
        }

        .section-bg-white {
            background: var(--white);
        }

        .section-bg-cream {
            background: var(--cream);
        }

        .section-bg-light {
            background: var(--gray-light);
        }

        /* ===== TOP BAR ===== */
        .top-bar {
            background: var(--primary-dark);
            color: var(--white);
            padding: 12px 0;
            border-bottom: 2px solid var(--gold);
        }

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: var(--spacing-sm);
        }

        .contact-info {
            display: flex;
            gap: 32px;
            flex-wrap: wrap;
        }

        .contact-info span {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
        }

        .office-hours {
            display: flex;
            gap: 24px;
            color: var(--gold-light);
            font-size: 0.9rem;
        }

        /* ===== HEADER ===== */
        .header {
            position: sticky;
            top: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            z-index: 1000;
            border-bottom: 1px solid rgba(181, 157, 122, 0.2);
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: var(--header-height);
        }

        .logo {
            display: flex;
            flex-direction: column;
            text-decoration: none;
            cursor: pointer;
            transition: var(--transition);
        }

        .logo:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }

        .logo-main {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary-dark);
            font-family: 'Playfair Display', serif;
            line-height: 1.2;
        }

        .logo-sub {
            font-size: 0.7rem;
            font-weight: 400;
            letter-spacing: 0.3em;
            color: var(--gray);
            text-transform: uppercase;
        }

        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            z-index: 1001;
            position: relative;
        }

        .mobile-menu-btn span {
            display: block;
            width: 28px;
            height: 2px;
            background: var(--primary-dark);
            margin: 6px 0;
            transition: var(--transition);
            border-radius: 2px;
        }

        /* Desktop Navigation */
        .nav-links {
            display: flex;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-link {
            font-weight: 500;
            color: var(--primary-dark);
            text-decoration: none;
            position: relative;
            padding: 8px 0;
            white-space: nowrap;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width 0.3s;
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        .btn-nav {
            background: var(--gold);
            color: var(--primary-dark);
            padding: 10px 24px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            white-space: nowrap;
        }

        .btn-nav:hover {
            background: var(--primary-dark);
            color: var(--gold);
            transform: translateY(-2px);
        }

        /* ===== HERO ===== */
        .hero {
            min-height: 80vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .hero-bg-animation {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 50%, var(--gold) 0%, transparent 30%),
                        radial-gradient(circle at 70% 30%, var(--gold-light) 0%, transparent 40%);
            opacity: 0.1;
            animation: rotateBg 40s infinite linear;
        }

        @keyframes rotateBg {
            from { transform: rotate(0deg) scale(1); }
            to { transform: rotate(360deg) scale(1.2); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 700px;
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hero-sub {
            display: inline-block;
            font-size: 0.9rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 24px;
            padding: 8px 20px;
            background: rgba(255,255,255,0.05);
            border-radius: 40px;
            border: 1px solid rgba(181,157,122,0.3);
        }

        .hero-title {
            font-size: clamp(3rem, 8vw, 5.5rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 24px;
            font-family: 'Playfair Display', serif;
        }

        .hero-text {
            font-size: clamp(1rem, 4vw, 1.2rem);
            max-width: 600px;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            border-radius: 60px;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            cursor: pointer;
            border: 1px solid transparent;
            text-decoration: none;
        }

        .btn-primary {
            background: var(--gold);
            color: var(--primary-dark);
        }

        .btn-primary:hover {
            background: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        .btn-outline {
            border-color: var(--gold);
            color: var(--primary-dark);
            background: transparent;
        }

        .btn-outline:hover {
            background: var(--gold);
            color: var(--primary-dark);
            transform: translateY(-3px);
        }

        .hero .btn-outline {
            color: var(--white);
        }

        .hero .btn-outline:hover {
            color: var(--primary-dark);
        }

        .section-cta {
            text-align: center;
            margin-top: 36px;
        }
        
        .btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        /* ===== LEITBILD ===== */
        .philosophy-box {
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
            padding: clamp(40px, 5vw, 60px);
            background: var(--white);
            border-radius: var(--radius-lg);
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
            border: 1px solid var(--gold-light);
        }

        .philosophy-tag {
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 0.3em;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 24px;
        }

        .philosophy-title {
            font-size: clamp(2rem, 5vw, 2.8rem);
            color: var(--primary-dark);
            margin-bottom: 32px;
            font-family: 'Playfair Display', serif;
            line-height: 1.2;
        }

        .philosophy-text {
            color: var(--gray);
            font-size: clamp(1rem, 3vw, 1.2rem);
            line-height: 1.8;
        }

        /* ===== ORGANIGRAM ===== */
        .organigram {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 40px;
            margin: 60px 0 20px;
        }

        .parent-node {
            background: var(--primary-dark);
            color: white;
            padding: clamp(20px, 4vw, 24px) clamp(30px, 5vw, 60px);
            border-radius: 60px;
            font-size: clamp(1.3rem, 4vw, 2rem);
            font-weight: 700;
            border: 3px solid var(--gold);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
            z-index: 10;
            text-align: center;
        }

        .connector-line {
            width: 2px;
            height: 40px;
            background: linear-gradient(to bottom, var(--gold), var(--gold-light));
        }

        .children-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 25px;
            width: 100%;
            align-items: stretch;
        }

        .child-node {
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            grid-template-rows: auto auto 1fr auto;
            justify-items: center;
            align-content: start;
            gap: 10px 0;
            width: 100%;
            min-width: 0;
            min-height: 100%;
            background: var(--white);
            padding: clamp(20px, 3vw, 28px) clamp(15px, 2vw, 20px);
            border-radius: var(--radius-lg);
            border: 1px solid var(--gold-light);
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
            text-align: center;
            cursor: pointer;
            transition: var(--transition);
            font: inherit;
            color: inherit;
            text-decoration: none;
            appearance: none;
            -webkit-appearance: none;
            white-space: normal;
            line-height: 1.4;
        }

        .child-node:hover {
            transform: translateY(-5px);
            border-color: var(--gold);
            box-shadow: 0 15px 30px rgba(181,157,122,0.1);
        }

        .child-badge {
            display: inline-block;
            width: auto;
            max-width: 100%;
            padding: 4px 12px;
            background: rgba(181,157,122,0.08);
            color: var(--gold);
            border-radius: 40px;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.05em;
            margin: 0;
            line-height: 1.3;
            white-space: nowrap;
        }

        .child-name {
            display: block;
            width: 100%;
            font-size: clamp(1rem, 2.2vw, 1.25rem);
            font-weight: 600;
            color: var(--primary-dark);
            margin: 0;
            font-family: 'Playfair Display', serif;
            line-height: 1.3;
            overflow-wrap: anywhere;
        }

        .child-desc {
            display: block;
            width: 100%;
            font-size: 0.85rem;
            color: var(--gray);
            margin: 0;
            min-height: 40px;
            line-height: 1.45;
        }

        .child-detail-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            border: 1px solid var(--gold-light);
            color: var(--primary-dark);
            padding: 8px 16px;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            margin-top: 6px;
            white-space: nowrap;
        }

        .child-node:hover .child-detail-btn {
            background: var(--gold);
            color: var(--white);
            border-color: var(--gold);
        }

        /* ===== INVESTITIONSENTWICKLUNG ===== */
        .investment-timeline {
            margin: 40px 0;
        }

        .timeline-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }

        .timeline-year-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: clamp(25px, 4vw, 35px) clamp(20px, 3vw, 25px);
            text-align: center;
            border: 1px solid var(--gold-light);
            box-shadow: 0 10px 25px rgba(0,0,0,0.03);
            transition: var(--transition);
        }

        .timeline-year-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(181,157,122,0.1);
            border-color: var(--gold);
        }

        .timeline-year {
            font-size: clamp(1.8rem, 5vw, 2.5rem);
            font-weight: 700;
            color: var(--gold);
            margin-bottom: 20px;
            font-family: 'Playfair Display', serif;
        }

        .timeline-value {
            font-size: clamp(2rem, 6vw, 3rem);
            font-weight: 700;
            color: var(--primary-dark);
            line-height: 1;
            margin-bottom: 10px;
            font-family: 'Playfair Display', serif;
        }

        .timeline-label {
            font-size: 0.85rem;
            color: var(--gray);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 15px;
        }

        .timeline-trend {
            display: inline-block;
            padding: 4px 12px;
            background: rgba(181,157,122,0.08);
            border-radius: 40px;
            font-size: 0.8rem;
            color: var(--primary-dark);
        }

        .timeline-trend.up {
            color: #2e7d32;
        }

        .timeline-trend.up::before {
            content: '';
            display: inline-block;
            width: 0;
            height: 0;
            margin-right: 6px;
            vertical-align: middle;
            border-left: 4px solid transparent;
            border-right: 4px solid transparent;
            border-bottom: 6px solid currentColor;
        }

        .secondary-stats {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 10px;
            width: 100%;
            flex-wrap: wrap;
        }

        .secondary-stat {
            background: var(--white);
            padding: clamp(25px, 4vw, 30px) clamp(20px, 3vw, 25px);
            border-radius: var(--radius-lg);
            text-align: center;
            border: 1px solid var(--gold-light);
            transition: var(--transition);
            flex: 1;
            min-width: 200px;
        }

        .secondary-stat:hover {
            transform: translateY(-5px);
            border-color: var(--gold);
        }

        .secondary-value {
            font-size: clamp(1.8rem, 5vw, 2.5rem);
            font-weight: 700;
            color: var(--primary-dark);
            font-family: 'Playfair Display', serif;
            line-height: 1;
            margin-bottom: 10px;
        }

        .secondary-label {
            font-size: 0.85rem;
            color: var(--gray);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* ===== KARRIERE ===== */
        .career-box {
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
            padding: clamp(40px, 5vw, 60px);
            background: var(--white);
            border-radius: var(--radius-lg);
            border: 1px solid var(--gold-light);
        }

        .career-tag {
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 0.3em;
            font-size: 0.9rem;
            margin-bottom: 24px;
        }

        .career-title {
            font-size: clamp(2rem, 5vw, 2.8rem);
            color: var(--primary-dark);
            margin-bottom: 24px;
            font-family: 'Playfair Display', serif;
        }

        /* ===== FAQ ===== */
        .faq-grid {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 16px;
            border: 1px solid var(--gold-light);
            border-radius: var(--radius-md);
            overflow: hidden;
        }

        .faq-question {
            background: var(--white);
            padding: clamp(15px, 3vw, 20px) clamp(20px, 4vw, 30px);
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
            color: var(--primary-dark);
            transition: var(--transition);
            font-size: clamp(0.95rem, 3vw, 1rem);
        }

        .faq-question:hover {
            background: var(--cream);
        }

        .faq-icon {
            font-size: 1.8rem;
            color: var(--gold);
            transition: transform 0.3s;
        }

        .faq-item.open .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            background: var(--white);
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s;
            color: var(--gray);
        }

        .faq-item.open .faq-answer {
            padding: 20px 30px;
            max-height: 200px;
            border-top: 1px solid var(--gold-light);
        }

        /* ===== KONTAKT ===== */
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .contact-card {
            background: var(--white);
            padding: clamp(30px, 5vw, 50px);
            border-radius: var(--radius-lg);
            border: 1px solid var(--gold-light);
        }

        .contact-detail {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 20px 0;
            border-bottom: 1px solid var(--cream);
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--cream);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            flex-shrink: 0;
            transition: var(--transition);
        }

        .contact-icon svg {
            width: 22px;
            height: 22px;
            display: block;
        }

        .contact-detail:hover .contact-icon {
            background: var(--gold);
            color: var(--white);
            transform: scale(1.1);
        }

        .hours-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 15px;
            margin: 30px 0;
        }

        .hours-item {
            background: var(--cream);
            padding: 15px;
            border-radius: var(--radius-sm);
            text-align: center;
            transition: var(--transition);
        }

        .hours-item:hover {
            background: var(--gold-light);
            transform: scale(1.02);
        }

        .hours-day {
            font-weight: 600;
            color: var(--primary-dark);
            margin-bottom: 5px;
        }

        .hours-time {
            color: var(--gold);
            font-size: 0.9rem;
        }

        .form-group {
            margin-bottom: 20px;
        }

        input, textarea {
            width: 100%;
            padding: 16px 20px;
            border: 1px solid var(--cream);
            border-radius: var(--radius-sm);
            font-family: inherit;
            transition: var(--transition);
            background: var(--cream);
        }

        input:focus, textarea:focus {
            outline: none;
            border-color: var(--gold);
            background: var(--white);
            transform: scale(1.01);
        }
        
        input.error, textarea.error {
            border-color: #d32f2f;
            background: #fff5f5;
        }
        
        .error-message {
            color: #d32f2f;
            font-size: 0.75rem;
            margin-top: 5px;
            display: block;
        }

        .honeypot {
            display: none;
        }

        .checkbox-group {
            text-align: left;
            margin: 15px 0;
        }

        .checkbox-label {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            cursor: pointer;
            font-size: 14px;
            line-height: 1.5;
            color: var(--gray-dark);
        }

        .checkbox-label input[type="checkbox"] {
            width: auto;
            margin-top: 3px;
            cursor: pointer;
        }

        .checkbox-text {
            flex: 1;
        }

        .checkbox-text a {
            color: var(--primary-dark);
            text-decoration: underline;
            text-underline-offset: 2px;
        }

        .checkbox-text a:hover {
            color: var(--gold);
        }

        /* ===== COOKIE BANNER ===== */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--primary-dark);
            color: var(--white);
            padding: 20px 0;
            z-index: 1000;
            box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
            border-top: 2px solid var(--gold);
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }

        .cookie-text {
            flex: 1;
            min-width: 280px;
        }

        .cookie-text p {
            margin-bottom: 10px;
            color: var(--gold-light);
        }

        .cookie-text a {
            color: var(--gold);
            text-decoration: underline;
        }

        .cookie-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .cookie-btn {
            padding: 12px 24px;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            font-size: 0.95rem;
        }

        .cookie-btn-accept {
            background: var(--gold);
            color: var(--primary-dark);
        }

        .cookie-btn-accept:hover {
            background: var(--white);
            transform: translateY(-2px);
        }

        .cookie-btn-essential {
            background: transparent;
            color: var(--white);
            border: 1px solid var(--gold);
        }

        .cookie-btn-essential:hover {
            background: rgba(181,157,122,0.2);
            transform: translateY(-2px);
        }

        /* ===== TOAST ===== */
        .toast {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--primary-dark);
            color: var(--white);
            padding: 16px 28px;
            border-radius: 60px;
            border: 2px solid var(--gold);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            z-index: 1000;
            opacity: 0;
            transition: opacity 0.3s;
            pointer-events: none;
            max-width: 90%;
            font-size: clamp(0.85rem, 3vw, 1rem);
        }

        .toast.show {
            opacity: 1;
        }
        
        .toast.error {
            background: #8B3A3A;
            border-color: #d32f2f;
        }

        /* ===== MODAL ===== */
        .modal {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.5);
            backdrop-filter: blur(8px);
            align-items: center;
            justify-content: center;
            z-index: 2000;
            padding: 20px;
        }

        .modal-content {
            background: var(--white);
            max-width: 700px;
            width: 100%;
            border-radius: var(--radius-xl);
            position: relative;
            max-height: 85vh;
            overflow-y: auto;
            box-shadow: 0 30px 60px rgba(0,0,0,0.2);
        }

        .modal-header {
            background: var(--primary-dark);
            color: white;
            padding: clamp(20px, 5vw, 30px) clamp(20px, 5vw, 40px);
            border-radius: var(--radius-xl) var(--radius-xl) 0 0;
            border-bottom: 2px solid var(--gold);
        }

        .modal-badge {
            display: inline-block;
            padding: 4px 12px;
            background: rgba(255,255,255,0.1);
            color: var(--gold-light);
            border-radius: 40px;
            font-size: 0.7rem;
            letter-spacing: 0.1em;
            margin-bottom: 15px;
        }

        .modal-header h2 {
            font-size: clamp(1.5rem, 5vw, 2.2rem);
            color: white;
            font-family: 'Playfair Display', serif;
            margin-bottom: 5px;
        }

        .modal-header-sub {
            font-size: clamp(0.85rem, 3vw, 1rem);
            opacity: 0.8;
            color: var(--gold-light);
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 25px;
            font-size: 2rem;
            background: none;
            border: none;
            cursor: pointer;
            color: rgba(255,255,255,0.7);
            transition: var(--transition);
        }

        .modal-close:hover {
            color: white;
            transform: rotate(90deg);
        }

        .modal-body {
            padding: clamp(20px, 5vw, 40px);
        }

        .modal-section {
            margin-bottom: 30px;
        }

        .modal-section h3 {
            color: var(--primary-dark);
            margin-bottom: 15px;
            font-size: 1.2rem;
            font-family: 'Playfair Display', serif;
            border-left: 3px solid var(--gold);
            padding-left: 15px;
        }

        .modal-description {
            color: var(--gray-dark);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .modal-list {
            list-style: none;
        }

        .modal-list li {
            padding: 8px 0;
            color: var(--gray-dark);
            border-bottom: 1px solid var(--cream);
        }

        .modal-list li:last-child {
            border-bottom: none;
        }

        .modal-footer {
            background: var(--cream);
            padding: clamp(15px, 4vw, 25px) clamp(20px, 5vw, 40px);
            border-radius: 0 0 var(--radius-xl) var(--radius-xl);
            display: flex;
            justify-content: flex-end;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .modal-button {
            background: var(--primary-dark);
            color: white;
            padding: 12px 25px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
        }

        .modal-button:hover {
            background: var(--gold);
            color: var(--primary-dark);
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--primary-dark);
            color: var(--white);
            padding: 70px 0 40px;
            margin-top: 60px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
        }

        .footer-logo {
            font-size: 2rem;
            font-weight: 700;
            color: var(--gold);
            font-family: 'Playfair Display', serif;
            margin-bottom: 20px;
        }

        .footer-link {
            color: var(--white) !important;
            text-decoration: none;
            display: block;
            margin-bottom: 12px;
            transition: var(--transition);
            opacity: 0.85;
        }

        .footer-link:hover {
            color: var(--gold) !important;
            transform: translateX(5px);
            opacity: 1;
        }

        .footer p {
            color: var(--white);
            opacity: 0.85;
        }

        .footer-bottom {
            padding-top: 30px;
            border-top: 1px solid rgba(181,157,122,0.2);
            text-align: center;
            color: var(--white);
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* ===== MOBILE RESPONSIVE (FIXED DROPDOWN MENU) ===== */
        @media (max-width: 992px) {
            .children-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .timeline-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .mobile-menu-btn {
                display: block;
            }

            .nav-links {
                position: absolute;
                top: var(--header-height);
                left: 0;
                right: 0;
                background: var(--white);
                flex-direction: column;
                align-items: stretch;
                gap: 0;
                padding: 0;
                box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
                border-bottom: 1px solid var(--gold-light);
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: transform 0.3s ease, opacity 0.2s ease;
                z-index: 999;
                display: flex !important;
                pointer-events: none;
            }

            .nav-links.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
            }

            .nav-link {
                padding: 16px 24px;
                border-bottom: 1px solid var(--cream);
                font-size: 1.1rem;
                white-space: normal;
                text-align: left;
            }

            .nav-link::after {
                display: none;
            }

            .btn-nav {
                margin: 16px 24px;
                text-align: center;
                background: var(--gold);
                color: var(--primary-dark);
                border-radius: 60px;
            }

            .btn-nav:hover {
                background: var(--primary-dark);
                color: var(--gold);
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 var(--spacing-sm);
            }
            
            .section {
                padding: var(--spacing-lg) 0;
            }
            
            .top-bar .container {
                flex-direction: column;
                text-align: center;
            }
            
            .contact-info {
                justify-content: center;
            }
            
            .office-hours {
                justify-content: center;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .hero-content {
                text-align: center;
            }
            
            .hero-text {
                margin-left: auto;
                margin-right: auto;
            }
            
            .children-grid {
                grid-template-columns: 1fr;
            }
            
            .timeline-grid {
                grid-template-columns: 1fr;
            }
            
            .secondary-stats {
                flex-direction: column;
            }
            
            .secondary-stat {
                width: 100%;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 30px;
            }
            
            .footer-link:hover {
                transform: translateX(0);
            }
            
            .cookie-content {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-buttons {
                justify-content: center;
            }
            
            .modal-content {
                width: 95%;
                margin: 20px;
            }
            
            .toast {
                bottom: 20px;
                right: 20px;
                left: 20px;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .contact-info {
                gap: 15px;
            }
            
            .contact-info span {
                font-size: 0.8rem;
            }
            
            .office-hours {
                gap: 15px;
                font-size: 0.8rem;
            }
            
            .parent-node {
                font-size: 1.2rem;
                padding: 15px 25px;
            }
            
            .philosophy-box,
            .career-box,
            .contact-card {
                padding: 30px 20px;
            }
            
            .btn {
                padding: 12px 24px;
                font-size: 0.9rem;
            }
            
            .hours-grid {
                grid-template-columns: 1fr;
            }
        }

img, svg, video {
    max-width: 100%;
    height: auto;
}

body {
    overflow-wrap: anywhere;
    word-break: normal;
}

.top-bar a {
    color: inherit;
    text-decoration: none;
}

.top-bar a:hover {
    color: var(--gold-light);
}

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--primary-dark);
    color: var(--white);
    padding: 12px 18px;
    z-index: 10000;
}

.skip-link:focus {
    left: 16px;
    top: 16px;
}

.mobile-menu-btn[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-menu-btn[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

body.nav-open {
    overflow: hidden;
}

body.modal-open {
    overflow: hidden;
}

.section-title {
    font-size: clamp(2rem, 6vw, 3rem);
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.section-intro {
    text-align: center;
    color: var(--gray);
    margin-bottom: 50px;
}


.faq-question {
    width: 100%;
    border: 0;
    background: var(--white);
    font: inherit;
    text-align: left;
}

.faq-answer {
    max-height: none;
}

.faq-answer[hidden] {
    display: none;
}

.faq-item.open .faq-answer {
    display: block;
    max-height: none;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.form-status {
    min-height: 1.2em;
    margin-top: 12px;
    font-size: 0.9rem;
}

.form-status.is-error {
    color: #d32f2f;
}

.form-status.is-success {
    color: #2e7d32;
}

.modal {
    display: none;
}

.modal.open {
    display: flex;
}

.modal-close {
    line-height: 1;
}

.table-scroll {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.legal-card {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: clamp(28px, 5vw, 60px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border: 1px solid var(--gold-light);
}

.legal-card h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-family: 'Playfair Display', serif;
    color: var(--primary-dark);
    margin-bottom: 24px;
    line-height: 1.2;
    border-left: 5px solid var(--gold);
    padding-left: 25px;
}

.legal-card h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-family: 'Playfair Display', serif;
    color: var(--primary-dark);
    margin: 36px 0 14px;
}

.legal-card h3 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-family: 'Playfair Display', serif;
    color: var(--primary-dark);
    margin: 28px 0 12px;
}

.legal-card h4 {
    font-size: 1.25rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary-dark);
    margin: 24px 0 8px;
}

.legal-card p,
.legal-card li {
    color: var(--gray-dark);
    margin-bottom: 14px;
    line-height: 1.7;
}

.legal-card a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px dotted var(--gold);
    overflow-wrap: anywhere;
}

.legal-card a:hover {
    color: var(--gold);
}

.legal-card hr {
    margin: 40px 0;
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-light), transparent);
}

.legal-card address {
    font-style: normal;
    background: var(--cream);
    padding: 25px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--gold);
    margin: 20px 0;
}

.legal-card ul,
.legal-card ol {
    margin: 15px 0 15px 22px;
}

.legal-card .highlight-box {
    background: var(--cream);
    padding: 20px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--gold);
    margin: 20px 0;
}

.legal-card .back-link {
    display: inline-block;
    margin-top: 40px;
    background: var(--cream);
    padding: 12px 28px;
    border-radius: 40px;
    color: var(--primary-dark);
    font-weight: 600;
    border: 1px solid var(--gold-light);
    text-decoration: none;
}

.legal-card .back-link:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    min-width: 560px;
}

.cookie-table th {
    background: var(--primary-dark);
    color: var(--white);
    padding: 12px;
    text-align: left;
}

.cookie-table td {
    padding: 12px;
    border-bottom: 1px solid var(--gold-light);
    color: var(--gray-dark);
}

.footer-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .hero-bg-animation {
        display: none;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
