        @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Source+Sans+Pro:wght@300;400;600&family=Cinzel:wght@400;600&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }
        
        :root {
            --indigo-deep: #1a1b3a;
            --indigo-royal: #2d2b55;
            --indigo-bright: #3d3b6e;
            --copper: #b87333;
            --copper-light: #d4a574;
            --copper-dark: #8b5a2b;
            --stardust: #e6e6fa;
            --cosmic-blue: #4a4e8c;
            --warm-white: #faf8f5;
            --charcoal: #1a1a2e;
        }
        
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        
        @media (max-width: 768px) {
            html {
                font-size: 14px;
            }
        }
        
        body {
            font-family: 'Source Sans Pro', sans-serif;
            background: var(--warm-white);
            color: var(--charcoal);
            overflow-x: hidden;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        
        /* Mobile Optimized Loader */
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--indigo-deep);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.6s ease, visibility 0.6s;
        }
        
        .loader.hidden {
            opacity: 0;
            visibility: hidden;
        }
        
        .loader-content {
            text-align: center;
            padding: 1rem;
        }
        
        .loader-ring {
            width: 60px;
            height: 60px;
            border: 3px solid transparent;
            border-top-color: var(--copper);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 1rem;
        }
        
        @media (max-width: 480px) {
            .loader-ring {
                width: 50px;
                height: 50px;
                border-width: 2px;
            }
        }
        
        .loader-text {
            font-family: 'Cinzel', serif;
            font-size: 1.2rem;
            color: var(--copper-light);
            letter-spacing: 0.3em;
            animation: pulse 2s infinite;
        }
        
        @media (max-width: 480px) {
            .loader-text {
                font-size: 1rem;
                letter-spacing: 0.2em;
            }
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 0.4; }
            50% { opacity: 1; }
        }
        
        /* Mobile Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: all 0.3s ease;
            background: transparent;
        }
        
        @media (max-width: 768px) {
            nav {
                padding: 0.8rem 4%;
            }
        }
        
        nav.scrolled {
            background: rgba(26, 27, 58, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 0.8rem 5%;
            box-shadow: 0 2px 20px rgba(0,0,0,0.3);
        }
        
        @media (max-width: 768px) {
            nav.scrolled {
                padding: 0.6rem 4%;
            }
        }
        
        .logo {
            font-family: 'Cinzel', serif;
            font-size: 1.4rem;
            color: var(--copper);
            font-weight: 600;
            letter-spacing: 0.2em;
            position: relative;
            z-index: 1002;
        }
        
        @media (max-width: 480px) {
            .logo {
                font-size: 1.1rem;
                letter-spacing: 0.15em;
            }
        }
        
        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }
        
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                height: 100vh;
                height: 100dvh;
                background: var(--indigo-deep);
                flex-direction: column;
                padding: 5rem 2rem 2rem;
                transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                border-left: 1px solid rgba(184, 115, 51, 0.2);
                gap: 0;
                overflow-y: auto;
                -webkit-overflow-scrolling: touch;
            }
            
            .nav-links.active {
                right: 0;
                box-shadow: -10px 0 30px rgba(0,0,0,0.5);
            }
        }
        
        .nav-links li {
            position: relative;
        }
        
        @media (max-width: 768px) {
            .nav-links li {
                width: 100%;
                border-bottom: 1px solid rgba(184, 115, 51, 0.1);
            }
        }
        
        .nav-links a {
            font-family: 'Source Sans Pro', sans-serif;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--stardust);
            text-decoration: none;
            position: relative;
            padding: 0.5rem 0;
            font-weight: 400;
            transition: color 0.3s ease;
            display: block;
        }
        
        @media (max-width: 768px) {
            .nav-links a {
                padding: 1.2rem 0;
                font-size: 1rem;
                letter-spacing: 0.2em;
            }
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 1px;
            background: var(--copper);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        @media (max-width: 768px) {
            .nav-links a::after {
                display: none;
            }
        }
        
        .nav-links a:hover,
        .nav-links a:active {
            color: var(--copper);
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 44px;
            height: 44px;
            cursor: pointer;
            z-index: 1002;
            background: rgba(184, 115, 51, 0.1);
            border-radius: 50%;
            border: 1px solid rgba(184, 115, 51, 0.2);
            transition: all 0.3s ease;
        }
        
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: flex;
            }
        }
        
        .mobile-menu-btn:active {
            background: rgba(184, 115, 51, 0.2);
            transform: scale(0.95);
        }
        
        .mobile-menu-btn span {
            width: 20px;
            height: 2px;
            background: var(--copper);
            transition: all 0.3s ease;
            transform-origin: center;
            margin: 2px 0;
        }
        
        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(4px, 4px);
        }
        
        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }
        
        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(4px, -4px);
        }
        
        /* Overlay for mobile menu */
        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
        }
        
        .menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        /* Hero Section - Mobile Optimized */
        .hero {
            min-height: 100vh;
            min-height: 100dvh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: linear-gradient(135deg, var(--indigo-deep) 0%, var(--indigo-royal) 50%, var(--cosmic-blue) 100%);
            padding: 5rem 1rem;
        }
        
        @media (max-width: 768px) {
            .hero {
                padding: 4rem 1rem;
                align-items: flex-end;
                padding-bottom: 6rem;
            }
        }
        
        .constellation {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.8), transparent),
                radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.6), transparent),
                radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.9), transparent),
                radial-gradient(2px 2px at 130px 80px, rgba(255,255,255,0.5), transparent),
                radial-gradient(1px 1px at 160px 120px, rgba(255,255,255,0.7), transparent);
            background-repeat: repeat;
            background-size: 200px 200px;
            opacity: 0.3;
            animation: drift 100s linear infinite;
        }
        
        @media (max-width: 768px) {
            .constellation {
                background-size: 150px 150px;
                opacity: 0.2;
            }
        }
        
        @keyframes drift {
            from { transform: translateX(0); }
            to { transform: translateX(-200px); }
        }
        
        .stars {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }
        
        .star {
            position: absolute;
            background: white;
            border-radius: 50%;
            animation: twinkle var(--duration) ease-in-out infinite;
            opacity: 0;
        }
        
        @keyframes twinkle {
            0%, 100% { opacity: 0; transform: scale(0.5); }
            50% { opacity: var(--opacity); transform: scale(1); }
        }
        
        .hero-content {
            text-align: center;
            z-index: 2;
            padding: 1rem;
            max-width: 900px;
            position: relative;
            width: 100%;
        }
        
        @media (max-width: 768px) {
            .hero-content {
                padding: 0.5rem;
            }
        }
        
        .hero-subtitle {
            font-family: 'Source Sans Pro', sans-serif;
            font-size: 0.8rem;
            letter-spacing: 0.4em;
            color: var(--copper-light);
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            font-weight: 400;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s forwards 0.5s;
        }
        
        @media (max-width: 480px) {
            .hero-subtitle {
                font-size: 0.7rem;
                letter-spacing: 0.3em;
                margin-bottom: 1rem;
            }
        }
        
        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 12vw, 7rem);
            color: var(--warm-white);
            line-height: 1;
            margin-bottom: 1rem;
            text-shadow: 0 0 30px rgba(184, 115, 51, 0.3);
            font-weight: 700;
            letter-spacing: -0.02em;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s forwards 0.7s;
        }
        
        @media (max-width: 480px) {
            .hero-title {
                font-size: 2.2rem;
                margin-bottom: 0.8rem;
            }
        }
        
        .hero-title span {
            display: block;
            font-size: 0.25em;
            font-family: 'Cinzel', serif;
            letter-spacing: 0.4em;
            color: var(--copper);
            margin-top: 1rem;
            font-weight: 400;
        }
        
        @media (max-width: 480px) {
            .hero-title span {
                font-size: 0.22em;
                letter-spacing: 0.3em;
                margin-top: 0.8rem;
            }
        }
        
        .hero-tagline {
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            color: var(--stardust);
            font-style: italic;
            margin-bottom: 2rem;
            font-weight: 400;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s forwards 0.9s;
            padding: 0 1rem;
        }
        
        @media (max-width: 480px) {
            .hero-tagline {
                font-size: 0.95rem;
                margin-bottom: 1.5rem;
                padding: 0 0.5rem;
            }
        }
        
        .hero-cta {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: transparent;
            color: var(--copper);
            text-decoration: none;
            font-family: 'Source Sans Pro', sans-serif;
            font-size: 0.8rem;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s forwards 1.1s;
            border: 1px solid var(--copper);
            position: relative;
            overflow: hidden;
            min-height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        
        @media (max-width: 480px) {
            .hero-cta {
                padding: 0.9rem 2rem;
                font-size: 0.75rem;
                letter-spacing: 0.2em;
                width: 80%;
                max-width: 280px;
            }
        }
        
        .hero-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--copper);
            transition: left 0.4s ease;
            z-index: -1;
        }
        
        .hero-cta:hover,
        .hero-cta:active {
            color: var(--indigo-deep);
            box-shadow: 0 0 30px rgba(184, 115, 51, 0.4);
        }
        
        .hero-cta:hover::before,
        .hero-cta:active::before {
            left: 0;
        }
        
        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            opacity: 0;
            animation: fadeIn 1s forwards 1.5s, bounce 2s infinite 1.5s;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        @media (max-width: 768px) {
            .scroll-indicator {
                bottom: 1.5rem;
            }
        }
        
        .scroll-line {
            width: 1px;
            height: 40px;
            background: linear-gradient(to bottom, var(--copper), transparent);
        }
        
        @media (max-width: 480px) {
            .scroll-line {
                height: 30px;
            }
        }
        
        .scroll-text {
            font-family: 'Source Sans Pro', sans-serif;
            font-size: 0.65rem;
            letter-spacing: 0.3em;
            color: var(--copper-light);
            margin-top: 0.8rem;
            text-transform: uppercase;
        }
        
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeIn {
            to { opacity: 1; }
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-8px); }
            60% { transform: translateX(-50%) translateY(-4px); }
        }
        
        /* Section Styles - Mobile Optimized */
        section {
            padding: 5rem 5%;
            position: relative;
        }
        
        @media (max-width: 768px) {
            section {
                padding: 4rem 4%;
            }
        }
        
        @media (max-width: 480px) {
            section {
                padding: 3rem 1rem;
            }
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 3rem;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }
        
        @media (max-width: 480px) {
            .section-header {
                margin-bottom: 2rem;
            }
        }
        
        .section-header.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .section-label {
            font-family: 'Source Sans Pro', sans-serif;
            font-size: 0.75rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--copper);
            margin-bottom: 1rem;
            display: block;
            font-weight: 600;
        }
        
        @media (max-width: 480px) {
            .section-label {
                font-size: 0.7rem;
                letter-spacing: 0.25em;
                margin-bottom: 0.8rem;
            }
        }
        
        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.8rem, 6vw, 3rem);
            color: var(--indigo-deep);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
            font-weight: 600;
            line-height: 1.2;
        }
        
        @media (max-width: 480px) {
            .section-title {
                font-size: 1.6rem;
                margin-bottom: 0.8rem;
            }
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--copper), transparent);
        }
        
        @media (max-width: 480px) {
            .section-title::after {
                width: 40px;
                bottom: -8px;
            }
        }
        
        /* Geography Section */
        .geography {
            background: linear-gradient(to bottom, var(--warm-white), #f0ebe3);
        }
        
        .geo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        @media (max-width: 768px) {
            .geo-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }
        
        .geo-card {
            background: white;
            padding: 2rem;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.5s ease;
            border: 1px solid rgba(184, 115, 51, 0.1);
            box-shadow: 0 5px 20px rgba(26, 27, 58, 0.06);
            touch-action: manipulation;
        }
        
        @media (max-width: 480px) {
            .geo-card {
                padding: 1.5rem;
                border-radius: 4px;
            }
        }
        
        .geo-card.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .geo-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--copper), var(--copper-light));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }
        
        .geo-card:active::before,
        .geo-card:hover::before {
            transform: scaleX(1);
        }
        
        .geo-card:active {
            transform: scale(0.98);
        }
        
        .geo-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            display: block;
            filter: grayscale(100%) sepia(100%) hue-rotate(-10deg) saturate(200%);
            opacity: 0.8;
        }
        
        @media (max-width: 480px) {
            .geo-icon {
                font-size: 2rem;
                margin-bottom: 0.8rem;
            }
        }
        
        .geo-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            color: var(--indigo-deep);
            margin-bottom: 0.8rem;
            font-weight: 600;
        }
        
        @media (max-width: 480px) {
            .geo-card h3 {
                font-size: 1.2rem;
            }
        }
        
        .geo-card p {
            font-size: 0.95rem;
            color: #555;
            line-height: 1.7;
            font-weight: 300;
        }
        
        @media (max-width: 480px) {
            .geo-card p {
                font-size: 0.9rem;
                line-height: 1.6;
            }
        }
        
        /* History Section */
        .history {
            background: var(--indigo-deep);
            color: var(--stardust);
            position: relative;
            overflow: hidden;
        }
        
        .history::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -50%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(184, 115, 51, 0.08) 0%, transparent 60%);
            border-radius: 50%;
        }
        
        @media (max-width: 768px) {
            .history::before {
                width: 400px;
                height: 400px;
                top: -20%;
                right: -30%;
            }
        }
        
        .history .section-title {
            color: var(--copper-light);
        }
        
        .history .section-title::after {
            background: linear-gradient(90deg, transparent, var(--copper), transparent);
        }
        
        .history-content {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        
        @media (max-width: 768px) {
            .history-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }
        
        .history-text {
            opacity: 0;
            transform: translateX(-20px);
            transition: all 0.6s ease;
        }
        
        @media (max-width: 768px) {
            .history-text {
                transform: translateY(20px);
                order: 2;
            }
        }
        
        .history-text.visible {
            opacity: 1;
            transform: translateX(0);
        }
        
        @media (max-width: 768px) {
            .history-text.visible {
                transform: translateY(0);
            }
        }
        
        .history-text h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            color: var(--copper);
            margin-bottom: 1.5rem;
            font-weight: 600;
        }
        
        @media (max-width: 480px) {
            .history-text h3 {
                font-size: 1.3rem;
                margin-bottom: 1rem;
            }
        }
        
        .history-text p {
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 1rem;
            color: #b8b8d1;
            font-weight: 300;
        }
        
        @media (max-width: 480px) {
            .history-text p {
                font-size: 0.95rem;
                line-height: 1.7;
            }
        }
        
        .history-list {
            list-style: none;
            margin-top: 1.5rem;
        }
        
        .history-list li {
            padding: 0.8rem 0;
            padding-left: 2rem;
            position: relative;
            font-size: 0.95rem;
            opacity: 0;
            transform: translateX(-15px);
            transition: all 0.4s ease;
            border-bottom: 1px solid rgba(184, 115, 51, 0.1);
        }
        
        @media (max-width: 480px) {
            .history-list li {
                padding: 0.7rem 0;
                padding-left: 1.5rem;
                font-size: 0.9rem;
            }
        }
        
        .history-list li.visible {
            opacity: 1;
            transform: translateX(0);
        }
        
        .history-list li::before {
            content: '✦';
            position: absolute;
            left: 0;
            color: var(--copper);
            font-size: 0.8rem;
        }
        
        .history-visual {
            position: relative;
            opacity: 0;
            transform: scale(0.95);
            transition: all 0.6s ease 0.2s;
        }
        
        @media (max-width: 768px) {
            .history-visual {
                order: 1;
                transform: scale(0.95);
            }
        }
        
        .history-visual.visible {
            opacity: 1;
            transform: scale(1);
        }
        
        .ruler-card {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(184, 115, 51, 0.3);
            padding: 2.5rem 2rem;
            text-align: center;
            position: relative;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }
        
        @media (max-width: 480px) {
            .ruler-card {
                padding: 2rem 1.5rem;
            }
        }
        
        .ruler-card::before {
            content: '';
            position: absolute;
            inset: 10px;
            border: 1px solid rgba(184, 115, 51, 0.15);
            pointer-events: none;
        }
        
        .ruler-title {
            font-family: 'Source Sans Pro', sans-serif;
            font-size: 0.8rem;
            color: var(--copper-light);
            letter-spacing: 0.25em;
            margin-bottom: 1rem;
            text-transform: uppercase;
        }
        
        @media (max-width: 480px) {
            .ruler-title {
                font-size: 0.75rem;
            }
        }
        
        .ruler-name {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: var(--warm-white);
            margin-bottom: 0.5rem;
            line-height: 1.2;
            font-weight: 600;
        }
        
        @media (max-width: 480px) {
            .ruler-name {
                font-size: 1.6rem;
            }
        }
        
        .ruler-period {
            font-family: 'Source Sans Pro', sans-serif;
            font-size: 0.8rem;
            color: var(--copper);
            letter-spacing: 0.15em;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(184, 115, 51, 0.2);
        }
        
        /* Literature Section */
        .literature {
            background: linear-gradient(to bottom, #f0ebe3, var(--warm-white));
        }
        
        .lit-container {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }
        
        .quote-box {
            background: white;
            padding: 3rem;
            margin: 2rem 0;
            position: relative;
            box-shadow: 0 20px 60px rgba(26, 27, 58, 0.08);
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
            border-left: 3px solid var(--copper);
        }
        
        @media (max-width: 768px) {
            .quote-box {
                padding: 2rem 1.5rem;
                margin: 1.5rem 0;
            }
        }
        
        @media (max-width: 480px) {
            .quote-box {
                padding: 1.5rem;
                border-left-width: 2px;
            }
        }
        
        .quote-box.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .quote-box::before {
            content: '"';
            font-family: 'Playfair Display', serif;
            font-size: 6rem;
            color: var(--copper);
            opacity: 0.1;
            position: absolute;
            top: -10px;
            left: 20px;
            line-height: 1;
        }
        
        @media (max-width: 480px) {
            .quote-box::before {
                font-size: 4rem;
                top: -5px;
                left: 15px;
            }
        }
        
        .quote-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            font-style: italic;
            color: var(--indigo-deep);
            line-height: 1.7;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
            font-weight: 400;
        }
        
        @media (max-width: 480px) {
            .quote-text {
                font-size: 1.05rem;
                line-height: 1.6;
                margin-bottom: 1rem;
            }
        }
        
        .quote-author {
            font-family: 'Cinzel', serif;
            font-size: 0.9rem;
            color: var(--copper);
            letter-spacing: 0.15em;
        }
        
        @media (max-width: 480px) {
            .quote-author {
                font-size: 0.8rem;
            }
        }
        
        .timeline {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-top: 3rem;
            flex-wrap: wrap;
            position: relative;
        }
        
        @media (max-width: 768px) {
            .timeline {
                flex-direction: column;
                gap: 1.5rem;
                align-items: center;
            }
        }
        
        .timeline::before {
            content: '';
            position: absolute;
            top: 30px;
            left: 20%;
            right: 20%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--copper), transparent);
            opacity: 0.3;
        }
        
        @media (max-width: 768px) {
            .timeline::before {
                display: none;
            }
        }
        
        .timeline-item {
            text-align: center;
            opacity: 0;
            transform: scale(0.9);
            transition: all 0.5s ease;
            background: var(--warm-white);
            padding: 0 1.5rem;
            position: relative;
            z-index: 1;
            flex: 1;
            min-width: 150px;
            max-width: 250px;
        }
        
        @media (max-width: 768px) {
            .timeline-item {
                padding: 1rem;
                background: white;
                border: 1px solid rgba(184, 115, 51, 0.1);
                width: 100%;
                max-width: 300px;
                border-radius: 4px;
            }
        }
        
        .timeline-item.visible {
            opacity: 1;
            transform: scale(1);
        }
        
        .timeline-year {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: var(--copper);
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        
        @media (max-width: 480px) {
            .timeline-year {
                font-size: 1.6rem;
            }
        }
        
        .timeline-event {
            font-size: 0.9rem;
            color: var(--indigo-deep);
            line-height: 1.5;
            font-weight: 300;
        }
        
        @media (max-width: 480px) {
            .timeline-event {
                font-size: 0.85rem;
            }
        }
        
        /* Lineage Section */
        .lineage {
            background: var(--indigo-royal);
            color: var(--stardust);
            position: relative;
        }
        
        .lineage::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(184, 115, 51, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255,255,255,0.02) 0%, transparent 50%);
        }
        
        .lineage .section-title {
            color: var(--copper-light);
        }
        
        .lineage-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1rem;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        @media (max-width: 768px) {
            .lineage-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.8rem;
            }
        }
        
        @media (max-width: 480px) {
            .lineage-grid {
                grid-template-columns: 1fr;
                gap: 0.6rem;
            }
        }
        
        .lineage-card {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(184, 115, 51, 0.15);
            padding: 1.5rem 1rem;
            text-align: center;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(15px);
            position: relative;
            overflow: hidden;
            touch-action: manipulation;
        }
        
        @media (max-width: 480px) {
            .lineage-card {
                padding: 1.2rem 1rem;
                text-align: left;
                display: flex;
                justify-content: space-between;
                align-items: center;
            }
        }
        
        .lineage-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(184, 115, 51, 0.1), transparent);
            transition: left 0.5s ease;
        }
        
        .lineage-card.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .lineage-card:active {
            background: rgba(184, 115, 51, 0.1);
            transform: scale(0.98);
        }
        
        .lineage-card:active::before {
            left: 100%;
        }
        
        .lineage-name {
            font-family: 'Playfair Display', serif;
            font-size: 1rem;
            color: var(--warm-white);
            margin-bottom: 0.3rem;
            font-weight: 600;
        }
        
        @media (max-width: 480px) {
            .lineage-name {
                font-size: 0.95rem;
                margin-bottom: 0;
            }
        }
        
        .lineage-role {
            font-family: 'Source Sans Pro', sans-serif;
            font-size: 0.7rem;
            color: var(--copper);
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }
        
        @media (max-width: 480px) {
            .lineage-role {
                font-size: 0.65rem;
                text-align: right;
            }
        }
        
        /* Confluence Section */
        .confluence {
            background: linear-gradient(135deg, var(--indigo-deep) 0%, var(--indigo-royal) 100%);
            color: var(--stardust);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .confluence::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            border: 1px solid rgba(184, 115, 51, 0.1);
            border-radius: 50%;
            animation: rotate 30s linear infinite;
        }
        
        .confluence::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 300px;
            height: 300px;
            border: 1px solid rgba(184, 115, 51, 0.08);
            border-radius: 50%;
            animation: rotate 40s linear infinite reverse;
        }
        
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        .pillars {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 3rem;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }
        
        @media (max-width: 768px) {
            .pillars {
                gap: 1rem;
            }
        }
        
        .pillar {
            width: 120px;
            height: 120px;
            border: 2px solid var(--copper);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            color: var(--copper-light);
            position: relative;
            opacity: 0;
            transform: scale(0);
            transition: all 0.5s ease;
            background: rgba(184, 115, 51, 0.05);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }
        
        @media (max-width: 768px) {
            .pillar {
                width: 100px;
                height: 100px;
                font-size: 1rem;
                border-width: 1.5px;
            }
        }
        
        @media (max-width: 480px) {
            .pillar {
                width: 80px;
                height: 80px;
                font-size: 0.85rem;
            }
        }
        
        .pillar.visible {
            opacity: 1;
            transform: scale(1);
        }
        
        .pillar:nth-child(1) { transition-delay: 0.1s; }
        .pillar:nth-child(2) { transition-delay: 0.2s; }
        .pillar:nth-child(3) { transition-delay: 0.3s; }
        .pillar:nth-child(4) { transition-delay: 0.4s; }
        
        .pillar:active {
            background: rgba(184, 115, 51, 0.15);
            transform: scale(0.95);
        }
        
        /* Vision Section */
        .vision {
            background: var(--warm-white);
        }
        
        .vision-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        @media (max-width: 768px) {
            .vision-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }
        
        .vision-card {
            background: white;
            padding: 2rem;
            box-shadow: 0 5px 20px rgba(26, 27, 58, 0.06);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease;
            border: 1px solid rgba(184, 115, 51, 0.08);
            touch-action: manipulation;
        }
        
        @media (max-width: 480px) {
            .vision-card {
                padding: 1.5rem;
                border-radius: 4px;
            }
        }
        
        .vision-card.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .vision-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--copper), var(--copper-light));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }
        
        .vision-card:active::after,
        .vision-card:hover::after {
            transform: scaleX(1);
        }
        
        .vision-card:active {
            transform: scale(0.98);
        }
        
        .vision-icon {
            width: 50px;
            height: 50px;
            background: var(--indigo-deep);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            color: var(--copper);
            transition: all 0.3s ease;
        }
        
        @media (max-width: 480px) {
            .vision-icon {
                width: 45px;
                height: 45px;
                font-size: 1.3rem;
                margin-bottom: 1rem;
            }
        }
        
        .vision-card:active .vision-icon {
            background: var(--copper);
            color: var(--indigo-deep);
            transform: rotateY(180deg);
        }
        
        .vision-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            color: var(--indigo-deep);
            margin-bottom: 0.8rem;
            font-weight: 600;
        }
        
        @media (max-width: 480px) {
            .vision-card h3 {
                font-size: 1.1rem;
            }
        }
        
        .vision-card p {
            color: #555;
            line-height: 1.7;
            font-weight: 300;
            font-size: 0.95rem;
        }
        
        @media (max-width: 480px) {
            .vision-card p {
                font-size: 0.9rem;
                line-height: 1.6;
            }
        }
        
        /* Footer */
        footer {
            background: var(--indigo-deep);
            color: var(--stardust);
            padding: 4rem 5% 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        @media (max-width: 480px) {
            footer {
                padding: 3rem 1rem 1.5rem;
            }
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--copper), transparent);
        }
        
        .footer-content {
            max-width: 600px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .footer-logo {
            font-family: 'Cinzel', serif;
            font-size: 2rem;
            color: var(--copper);
            margin-bottom: 1rem;
            letter-spacing: 0.2em;
        }
        
        @media (max-width: 480px) {
            .footer-logo {
                font-size: 1.5rem;
            }
        }
        
        .footer-tagline {
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            font-style: italic;
            color: #b8b8d1;
            margin-bottom: 2rem;
            line-height: 1.6;
            padding: 0 1rem;
        }
        
        @media (max-width: 480px) {
            .footer-tagline {
                font-size: 0.95rem;
                margin-bottom: 1.5rem;
            }
        }
        
        .footer-divider {
            width: 50px;
            height: 1px;
            background: var(--copper);
            margin: 2rem auto;
            opacity: 0.5;
        }
        
        .copyright {
            font-family: 'Source Sans Pro', sans-serif;
            font-size: 0.75rem;
            color: #666;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            line-height: 1.8;
        }
        
        @media (max-width: 480px) {
            .copyright {
                font-size: 0.7rem;
            }
        }
        
        /* Touch device optimizations */
        @media (hover: none) {
            .geo-card:hover::before,
            .vision-card:hover::after {
                transform: scaleX(0);
            }
            
            .geo-card:active::before,
            .vision-card:active::after {
                transform: scaleX(1);
            }
        }
        
        /* Reduced motion */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }
        
        /* Landscape mode optimizations */
        @media (max-height: 500px) and (orientation: landscape) {
            .hero {
                min-height: 120vh;
                padding-top: 4rem;
            }
            
            .hero-title {
                font-size: 2rem;
            }
            
            .scroll-indicator {
                display: none;
            }
        }