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

        body {
            font-family: 'Space Grotesk', sans-serif;
            background-color: #0A0E14;
            color: #E8E6E3;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Smooth scroll behavior */
        html {
            scroll-behavior: smooth;
        }

        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #011627;
        }
        ::-webkit-scrollbar-thumb {
            background: #795663;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #D7BCAF;
        }

        /* Container */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 32px;
        }

        /* Typography */
        h1, h2, h3, .logo {
            font-family: 'Cormorant Garamond', serif;
        }

        h1 {
            font-size: 4.5rem;
            font-weight: 500;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, #D7BCAF 0%, #8A9F88 50%, #795663 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 0.5rem;
        }

        h2 {
            font-size: 2.5rem;
            font-weight: 500;
            margin-bottom: 2rem;
            color: #D7BCAF;
            position: relative;
            display: inline-block;
        }
        
        h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #795663, #D7BCAF);
        }

        h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #D7BCAF;
            font-weight: 500;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .animate {
            animation: fadeInUp 0.6s ease forwards;
        }
        
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }

        /* Header / Nav */
        .site-header {
            padding: 40px 0;
            border-bottom: 1px solid rgba(121, 86, 99, 0.3);
            margin-bottom: 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .logo {
            font-size: 2rem;
            font-weight: 600;
            letter-spacing: -0.02em;
        }
        
        .logo a {
            color: #D7BCAF;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .logo a:hover {
            color: #8A9F88;
        }
        
        .tagline {
            color: #8A9F88;
            font-size: 0.9rem;
            letter-spacing: 2px;
        }

        /* HERO SECTION */
        .hero {
            min-height: 70vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            margin-bottom: 80px;
            padding: 60px 0;
            position: relative;
            background: radial-gradient(circle at 50% 50%, rgba(121, 86, 99, 0.1), transparent);
        }
        
        .hero-content {
            max-width: 800px;
        }
        
        .hero-eyebrow {
            font-size: 0.8rem;
            letter-spacing: 4px;
            color: #8A9F88;
            margin-bottom: 20px;
            text-transform: uppercase;
        }
        
        .hero-title {
            font-size: 5rem;
            margin-bottom: 20px;
        }
        
        .hero-line {
            width: 80px;
            height: 2px;
            background: linear-gradient(90deg, #795663, #D7BCAF);
            margin: 20px auto;
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
            color: #D1CFCD;
            margin-bottom: 40px;
            line-height: 1.6;
        }
        
        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn-primary, .btn-secondary {
            padding: 14px 36px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            display: inline-block;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, #795663, #5a3d4a);
            color: white;
            border: none;
        }
        
        .btn-primary:hover {
            background: linear-gradient(135deg, #8A9F88, #5a7a57);
            transform: translateY(-2px);
        }
        
        .btn-secondary {
            border: 1px solid #795663;
            color: #D7BCAF;
            background: transparent;
        }
        
        .btn-secondary:hover {
            border-color: #D7BCAF;
            background: rgba(215, 188, 175, 0.1);
            transform: translateY(-2px);
        }

        /* Mantra Section */
        .mantra-section {
            text-align: center;
            padding: 60px 40px;
            margin: 40px 0 80px 0;
            background: rgba(1, 22, 39, 0.4);
            border-radius: 60px;
            border: 1px solid rgba(121, 86, 99, 0.3);
            position: relative;
        }
        
        .quote-mark, .quote-mark-right {
            font-size: 4rem;
            color: #795663;
            font-family: serif;
            opacity: 0.5;
        }
        
        .quote-mark {
            position: relative;
            top: 20px;
            left: -10px;
        }
        
        .quote-mark-right {
            position: relative;
            bottom: -20px;
            right: -10px;
        }
        
        .mantra-section p {
            font-size: 1.8rem;
            font-family: 'Cormorant Garamond', serif;
            font-style: italic;
            color: #D7BCAF;
            margin: 20px 0;
            line-height: 1.4;
        }
        
        .mantra-signature {
            font-size: 0.9rem;
            color: #8A9F88;
            letter-spacing: 2px;
        }

        /* Bio Section - Split with Photo */
        .bio-showcase {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-bottom: 80px;
            align-items: start;
        }

        @media (max-width: 968px) {
            .bio-showcase {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .bio-photo {
                order: -1;
            }
        }

        .bio-left {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .bio-card-dark {
            background: rgba(1, 22, 39, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(121, 86, 99, 0.3);
            border-radius: 24px;
            padding: 32px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .bio-card-dark:hover {
            border-color: #795663;
            transform: translateY(-4px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }
        
        .bio-card-dark:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #795663, #D7BCAF, #8A9F88);
        }
        
        .bio-card-dark p {
            margin-bottom: 1rem;
            color: #D1CFCD;
        }
        
        .bio-label {
            display: inline-block;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: #8A9F88;
            margin-bottom: 12px;
        }
        
        .bio-card-dark h3 {
            margin-top: 0;
            font-size: 1.8rem;
        }

        /* Photo Area */
        .bio-photo {
            background: linear-gradient(135deg, #011627, #0A1A2A);
            border-radius: 32px;
            padding: 20px;
            border: 1px solid rgba(215, 188, 175, 0.2);
            position: relative;
        }
        
        .photo-frame {
            background: rgba(121, 86, 99, 0.2);
            border-radius: 24px;
            overflow: hidden;
            aspect-ratio: 3/4;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(215, 188, 175, 0.3);
        }
        
        .photo-placeholder {
            text-align: center;
            padding: 60px 20px;
            color: #795663;
        }
        
        .photo-placeholder svg {
            width: 80px;
            height: 80px;
            margin-bottom: 20px;
            opacity: 0.5;
        }
        
        .photo-placeholder p {
            color: #8A9F88;
            font-size: 0.85rem;
        }
        
        .photo-caption {
            text-align: center;
            margin-top: 16px;
            font-size: 0.8rem;
            color: #795663;
            letter-spacing: 1px;
        }

        /* Schools Section */
        .schools-section {
            margin-bottom: 80px;
        }
        
        .schools-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 24px;
        }

        .school-tag {
            background: rgba(1, 22, 39, 0.8);
            border: 1px solid #795663;
            color: #D7BCAF;
            padding: 10px 24px;
            border-radius: 40px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .school-tag:hover {
            background: #795663;
            color: white;
            border-color: #D7BCAF;
        }

        /* Classes Section */
        .classes-section {
            margin-bottom: 80px;
        }
        
        .classes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 24px;
            margin-top: 24px;
        }

        .class-card {
            background: rgba(1, 22, 39, 0.4);
            border: 1px solid rgba(121, 86, 99, 0.3);
            border-radius: 20px;
            padding: 28px;
            transition: all 0.3s ease;
        }

        .class-card:hover {
            border-color: #D7BCAF;
            transform: translateY(-6px);
            background: rgba(1, 22, 39, 0.7);
        }

        .class-card h3 {
            margin-top: 0;
            font-size: 1.4rem;
        }
        
        .class-icon {
            font-size: 2rem;
            margin-bottom: 16px;
            display: inline-block;
        }

        /* Portfolio CTA */
        .portfolio-cta {
            position: relative;
            margin: 60px 0;
            border-radius: 32px;
            overflow: hidden;
        }
        
        .portfolio-cta-content {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 80px 40px;
            background: linear-gradient(135deg, rgba(121, 86, 99, 0.9), rgba(1, 22, 39, 0.95));
        }
        
        .portfolio-cta-content h3 {
            font-size: 2.2rem;
            margin-bottom: 16px;
        }
        
        .portfolio-cta-content p {
            margin-bottom: 32px;
            color: #D1CFCD;
        }
        
        .btn-outline-light {
            display: inline-block;
            padding: 14px 36px;
            border: 2px solid #D7BCAF;
            color: #D7BCAF;
            text-decoration: none;
            border-radius: 40px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .btn-outline-light:hover {
            background: #D7BCAF;
            color: #011627;
        }

        /* Testimonials */
        .testimonials-section {
            margin: 80px 0;
        }
        
        .testimonial-strip {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .testimonial-item {
            background: rgba(1, 22, 39, 0.4);
            border: 1px solid rgba(121, 86, 99, 0.3);
            border-radius: 20px;
            padding: 28px;
            transition: all 0.3s;
        }
        
        .testimonial-item:hover {
            border-color: #795663;
            transform: translateY(-4px);
        }
        
        .testimonial-item span {
            font-size: 2rem;
            display: block;
            margin-bottom: 16px;
        }
        
        .testimonial-item p {
            font-style: italic;
            margin-bottom: 16px;
        }
        
        .testimonial-item small {
            color: #8A9F88;
            font-size: 0.8rem;
        }

        /* Newsletter */
        .newsletter {
            background: rgba(1, 22, 39, 0.6);
            border-radius: 32px;
            padding: 48px;
            text-align: center;
            margin: 60px 0;
            border: 1px solid rgba(121, 86, 99, 0.3);
        }
        
        .newsletter p {
            margin-bottom: 24px;
        }
        
        .newsletter-form {
            display: flex;
            gap: 16px;
            max-width: 500px;
            margin: 0 auto;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .newsletter-form input {
            flex: 1;
            min-width: 250px;
        }

        /* Contact Section */
        .contact-section {
            margin-bottom: 60px;
        }
        
        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            background: rgba(1, 22, 39, 0.4);
            border-radius: 32px;
            padding: 48px;
            border: 1px solid rgba(121, 86, 99, 0.3);
        }

        @media (max-width: 768px) {
            .contact-wrapper {
                grid-template-columns: 1fr;
                padding: 28px;
            }
            .container {
                padding: 0 20px;
            }
            h1 {
                font-size: 2.8rem;
            }
            h2 {
                font-size: 2rem;
            }
            .hero-title {
                font-size: 3rem;
            }
            .mantra-section p {
                font-size: 1.2rem;
            }
        }

        .contact-info p {
            margin-bottom: 20px;
        }

        .contact-detail {
            margin: 28px 0;
            padding: 16px 0;
            border-bottom: 1px solid rgba(121, 86, 99, 0.3);
        }

        .contact-detail strong {
            color: #D7BCAF;
            display: inline-block;
            min-width: 120px;
        }

        /* Form */
        .form-group {
            margin-bottom: 24px;
        }

        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #D7BCAF;
        }

        input, textarea {
            width: 100%;
            padding: 14px 18px;
            background: rgba(1, 22, 39, 0.6);
            border: 1px solid rgba(121, 86, 99, 0.5);
            border-radius: 12px;
            font-family: inherit;
            font-size: 1rem;
            color: #E8E6E3;
            transition: 0.3s;
        }

        input:focus, textarea:focus {
            outline: none;
            border-color: #D7BCAF;
            background: rgba(1, 22, 39, 0.9);
        }

        button {
            background: linear-gradient(135deg, #795663, #5a3d4a);
            color: white;
            border: none;
            padding: 14px 36px;
            font-size: 1rem;
            border-radius: 40px;
            cursor: pointer;
            font-weight: 600;
            transition: 0.3s;
            font-family: inherit;
        }

        button:hover {
            background: linear-gradient(135deg, #8A9F88, #5a7a57);
            transform: scale(1.02);
        }

        .alert {
            padding: 16px;
            border-radius: 12px;
            margin-bottom: 24px;
        }

        .alert-success {
            background: rgba(138, 159, 136, 0.2);
            border: 1px solid #8A9F88;
            color: #8A9F88;
        }

        .alert-error {
            background: rgba(121, 86, 99, 0.2);
            border: 1px solid #795663;
            color: #D7BCAF;
        }

        /* Divider */
        .divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, #795663, #D7BCAF, #8A9F88, transparent);
            margin: 48px 0;
        }

        /* Footer */
        .site-footer {
            margin-top: 60px;
            padding: 40px 0;
            border-top: 1px solid rgba(121, 86, 99, 0.3);
            text-align: center;
            font-size: 0.85rem;
            color: #795663;
        }
        
        .color-dots {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 16px;
        }
        
        .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
        }
        
        .dot-1 { background: #D7BCAF; }
        .dot-2 { background: #8A9F88; }
        .dot-3 { background: #303A3B; }
        .dot-4 { background: #795663; }
        .dot-5 { background: #011627; }

        /* Floating Contact Button */
        .floating-contact {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
        }
        
        .float-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #795663, #5a3d4a);
            border-radius: 50%;
            text-decoration: none;
            font-size: 1.8rem;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }
        
        .float-btn:hover {
            transform: scale(1.1);
            background: linear-gradient(135deg, #8A9F88, #5a7a57);
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 50px;
            height: 50px;
            background: rgba(1, 22, 39, 0.8);
            border: 1px solid #795663;
            border-radius: 50%;
            color: #D7BCAF;
            font-size: 1.5rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background: #795663;
            color: white;
        }
        
        /* Loading spinner */
        .loading-spinner {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 50%;
            border-top-color: white;
            animation: spin 0.6s linear infinite;
            margin-right: 8px;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        button:disabled {
            opacity: 0.7;
            cursor: not-allowed;
        }