        :root {
            --parchment: #F7F4EF;
            --ink: #1C1B1A;
            --gray: #6F6B67;
            --oxide: #9C6B4E;
            --forest: #3F5D50;
            --gold: #C2A25D;
        }

        body {
            background-color: var(--parchment);
            color: var(--ink);
            font-family: 'Libre Baskerville', serif;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        .serif-title { font-family: 'Playfair Display', serif; font-weight: 900; }
        .mono { font-family: 'IBM Plex Mono', monospace; text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.65rem; }
        .cursive { font-family: 'Great Vibes', cursive; color: var(--oxide); }

        /* Background Texture */
        .grain {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background-image: url("https://www.transparenttextures.com/patterns/natural-paper.png");
            pointer-events: none; z-index: 500; opacity: 0.4;
        }

        /* Nav Glassmorphism */
        nav {
            background: rgba(247, 244, 239, 0.85);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(28, 27, 26, 0.05);
        }

        /* Page Transitions */
        .page-node {
            display: none;
            animation: fadeIn 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
        }
        .page-node.active { display: block; }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

        /* Shelf Hover Mechanics */
        .event-card {
            background: white;
            transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
            border: 1px solid rgba(28, 27, 26, 0.05);
            overflow: hidden;
        }
        .event-card:hover {
            transform: translateY(-20px);
            box-shadow: 0 40px 80px rgba(0,0,0,0.08);
            border-color: var(--gold);
        }
        .event-card img {
            transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
            filter: grayscale(100%);
        }
        .event-card:hover img {
            transform: scale(1.1);
            filter: grayscale(0%);
        }

        /* Custom Drawer */
        .drawer {
            position: fixed; top: 0; right: -100%; width: 100%; max-width: 500px;
            height: 100vh; background: var(--parchment); z-index: 1000;
            box-shadow: -20px 0 60px rgba(0,0,0,0.1);
            transition: 0.8s cubic-bezier(0.77, 0, 0.175, 1);
            padding: 4rem 2rem;
        }
        .drawer.open { right: 0; }

        .btn-archival {
            position: relative;
            padding: 1rem 2rem;
            border: 1px solid var(--ink);
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            overflow: hidden;
            transition: 0.4s;
        }
        .btn-archival:hover { background: var(--ink); color: var(--parchment); }

        /* Section Spacing */
        .content-section { padding: 8rem 0; }
        
        /* Mobile Adjustments */
        @media (max-width: 768px) {
            .serif-title { font-size: 3rem !important; }
            .content-section { padding: 4rem 0; }
        }
            /* Keyframe Animations */
    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes slideLeft {
        from {
            opacity: 0;
            transform: translateX(-50px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    @keyframes slideRight {
        from {
            opacity: 0;
            transform: translateX(50px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(50px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes scaleIn {
        from {
            opacity: 0;
            transform: scale(0.9);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }
    
    @keyframes float {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-20px);
        }
    }
    
    @keyframes cardFloat {
        0%, 100% {
            transform: translateY(0) rotate(0deg);
        }
        33% {
            transform: translateY(-10px) rotate(0.5deg);
        }
        66% {
            transform: translateY(-5px) rotate(-0.5deg);
        }
    }
    
    @keyframes bounceSlow {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-10px);
        }
    }
    
    @keyframes pulseSlow {
        0%, 100% {
            opacity: 0.5;
        }
        50% {
            opacity: 1;
        }
    }
    
    @keyframes spinSlow {
        from {
            transform: rotate(0deg);
        }
        to {
            transform: rotate(360deg);
        }
    }
    
    @keyframes scrollIndicator {
        0% {
            transform: translate(-50%, 0);
            opacity: 0;
        }
        50% {
            opacity: 1;
        }
        100% {
            transform: translate(-50%, 20px);
            opacity: 0;
        }
    }
    
    @keyframes typewriter {
        from {
            width: 0;
        }
        to {
            width: 100%;
        }
    }
    
    @keyframes letterStagger {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Animation Classes */
    .animate-fade-up {
        animation: fadeUp 0.8s ease-out forwards;
        opacity: 0;
    }
    
    .animate-slide-left {
        animation: slideLeft 0.8s ease-out forwards;
        opacity: 0;
    }
    
    .animate-slide-right {
        animation: slideRight 0.8s ease-out forwards;
        opacity: 0;
    }
    
    .animate-slide-up {
        animation: slideUp 0.8s ease-out forwards;
        opacity: 0;
    }
    
    .animate-scale-in {
        animation: scaleIn 0.6s ease-out forwards;
        opacity: 0;
    }
    
    .animate-float {
        animation: float 6s ease-in-out infinite;
    }
    
    .animate-card-float {
        animation: cardFloat 8s ease-in-out infinite;
    }
    
    .animate-bounce-slow {
        animation: bounceSlow 2s ease-in-out infinite;
    }
    
    .animate-pulse-slow {
        animation: pulseSlow 4s ease-in-out infinite;
    }
    
    .animate-spin-slow {
        animation: spinSlow 20s linear infinite;
    }
    
    .animate-scroll-indicator {
        animation: scrollIndicator 2s ease-in-out infinite;
    }
    
    .animate-typewriter {
        overflow: hidden;
        white-space: nowrap;
        animation: typewriter 2s steps(40) forwards;
        display: inline-block;
        border-right: 2px solid transparent;
    }
    
    .letter-stagger {
        display: inline-block;
    }
    
    .letter-stagger span {
        display: inline-block;
        opacity: 0;
        animation: letterStagger 0.5s ease-out forwards;
    }
    
    /* Stagger children animation */
    .animate-stagger-children > * {
        opacity: 0;
        animation: fadeUp 0.6s ease-out forwards;
    }
    
    /* Count up animation */
    .animate-count-up {
        opacity: 0;
        animation: fadeUp 0.8s ease-out forwards;
    }
    
    /* Floating Elements */
    .floating-element {
        position: absolute;
        border: 1px solid rgba(0, 0, 0, 0.05);
        border-radius: 50%;
    }
    
    .floating-1 {
        width: 300px;
        height: 300px;
        top: 10%;
        right: 10%;
        animation: float 20s ease-in-out infinite;
    }
    
    .floating-2 {
        width: 200px;
        height: 200px;
        bottom: 20%;
        left: 5%;
        animation: float 15s ease-in-out infinite reverse;
    }
    
    .floating-3 {
        width: 150px;
        height: 150px;
        top: 60%;
        right: 20%;
        animation: float 25s ease-in-out infinite;
    }
    
    /* Grid Patterns */
    .grid-pattern {
        background-image: 
            linear-gradient(rgba(0, 0, 0, 0.1) 1px, transparent 1px),
            linear-gradient(90deg, rgba(0, 0, 0, 0.1) 1px, transparent 1px);
        background-size: 50px 50px;
    }
    
    .grid-pattern-dense {
        background-image: 
            linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
            linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
        background-size: 20px 20px;
    }
    
    .grid-pattern-white {
        background-image: 
            linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
        background-size: 50px 50px;
    }
    
    /* Edition Card Styles */
    .edition-card {
        background: white;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .edition-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        border-color: rgba(139, 92, 51, 0.3);
    }
    
    .edition-image-container {
        position: relative;
        overflow: hidden;
        height: 280px;
    }
    
    .edition-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.6s ease;
    }
    
    .edition-card:hover .edition-image {
        transform: scale(1.05);
    }
    
    .edition-badge {
        position: absolute;
        top: 16px;
        left: 16px;
        background: rgba(255, 255, 255, 0.95);
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.5px;
        color: #8B5C33;
    }
    
    .edition-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
        display: flex;
        align-items: flex-end;
        padding: 24px;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .edition-card:hover .edition-overlay {
        opacity: 1;
    }
    
    .btn-view-archive {
        background: #8B5C33;
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 6px;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        width: 100%;
    }
    
    .btn-view-archive:hover {
        background: #7a4f2b;
        transform: translateY(-2px);
    }
    
    .edition-content {
        padding: 24px;
    }
    
    /* Process Steps */
    .process-step {
        position: relative;
        padding: 32px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        border: 1px solid rgba(139, 92, 51, 0.2);
        transition: all 0.3s ease;
    }
    
    .process-step:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-5px);
        border-color: rgba(139, 92, 51, 0.4);
    }
    
    .process-number {
        font-size: 48px;
        font-weight: 300;
        color: rgba(139, 92, 51, 0.3);
        margin-bottom: 16px;
        line-height: 1;
    }
    
    /* Process Visualization */
    .process-visualization {
        position: relative;
        height: 2px;
        background: rgba(255, 255, 255, 0.2);
        margin: 0 100px;
    }
    
    .process-line {
        position: absolute;
        height: 100%;
        width: 0;
        background: #8B5C33;
        animation: processLine 2s ease-out forwards;
    }
    
    .process-dot {
        position: absolute;
        width: 12px;
        height: 12px;
        background: #8B5C33;
        border-radius: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        animation: processDot 0.5s ease-out forwards;
        animation-delay: calc(var(--dot-index) * 0.5s);
    }
    
    @keyframes processLine {
        to {
            width: 100%;
        }
    }
    
    @keyframes processDot {
        from {
            opacity: 0;
            transform: translate(-50%, -50%) scale(0);
        }
        to {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }
    }
    
    /* Responsive Design */
    @media (max-width: 768px) {
        .floating-element {
            display: none;
        }
        
        .letter-stagger span {
            animation-duration: 0.3s;
        }
        
        .edition-card {
            margin-bottom: 24px;
        }
        
        .process-step {
            margin-bottom: 16px;
        }
    }
    
    /* Reduced Motion Support */
    @media (prefers-reduced-motion: reduce) {
        .animate-fade-up,
        .animate-slide-left,
        .animate-slide-right,
        .animate-slide-up,
        .animate-scale-in,
        .animate-float,
        .animate-card-float,
        .animate-bounce-slow,
        .animate-pulse-slow,
        .animate-spin-slow,
        .animate-scroll-indicator,
        .animate-typewriter,
        .letter-stagger span,
        .floating-1,
        .floating-2,
        .floating-3 {
            animation: none !important;
            opacity: 1 !important;
            transform: none !important;
        }
        
        .edition-card:hover {
            transform: none;
        }
    }
    /* Manifesto-specific Animations */
    @keyframes typewriterGlow {
        0% {
            width: 0;
            text-shadow: 0 0 0 rgba(139, 92, 51, 0);
        }
        50% {
            text-shadow: 0 0 10px rgba(139, 92, 51, 0.3);
        }
        100% {
            width: 100%;
            text-shadow: 0 0 0 rgba(139, 92, 51, 0);
        }
    }
    
    @keyframes wordReveal {
        0% {
            opacity: 0;
            transform: translateY(20px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes wordRevealLight {
        0% {
            opacity: 0;
            transform: translateY(10px);
            filter: blur(5px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
            filter: blur(0);
        }
    }
    
    @keyframes lineExtend {
        0% {
            width: 0;
            opacity: 0;
        }
        100% {
            width: 128px;
            opacity: 1;
        }
    }
    
    @keyframes lineExtendSlow {
        0% {
            width: 0;
            opacity: 0;
        }
        100% {
            width: 96px;
            opacity: 1;
        }
    }
    
    @keyframes textReveal {
        0% {
            clip-path: inset(0 100% 0 0);
            opacity: 0;
        }
        100% {
            clip-path: inset(0 0 0 0);
            opacity: 1;
        }
    }
    
    @keyframes floatSlow {
        0%, 100% {
            transform: translateY(0) rotate(0deg);
        }
        33% {
            transform: translateY(-15px) rotate(0.5deg);
        }
        66% {
            transform: translateY(-7px) rotate(-0.5deg);
        }
    }
    
    /* Animation Classes */
    .animate-typewriter-glow {
        overflow: hidden;
        white-space: nowrap;
        animation: typewriterGlow 2.5s steps(40) forwards;
        display: inline-block;
    }
    
    .word-reveal {
        display: inline-block;
        opacity: 0;
        animation: wordReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }
    
    .word-reveal-light {
        display: inline-block;
        opacity: 0;
        animation: wordRevealLight 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }
    
    .animate-line-extend {
        animation: lineExtend 1.2s ease-out forwards;
        animation-delay: 0.8s;
        opacity: 0;
    }
    
    .animate-line-extend-slow {
        animation: lineExtendSlow 1.5s ease-out forwards;
        animation-delay: 0.5s;
        opacity: 0;
    }
    
    .animate-text-reveal {
        animation: textReveal 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        clip-path: inset(0 100% 0 0);
    }
    
    .animate-float-slow {
        animation: floatSlow 8s ease-in-out infinite;
    }
    
    /* Grid Pattern */
    .grid-pattern-manifesto {
        background-image: 
            linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
        background-size: 40px 40px;
    }
    
    /* Particles */
    .particle {
        position: absolute;
        background: rgba(139, 92, 51, 0.1);
        border-radius: 50%;
        animation: float 20s infinite linear;
    }
    
    .particle-1 {
        width: 4px;
        height: 4px;
        top: 20%;
        left: 10%;
        animation-delay: 0s;
    }
    
    .particle-2 {
        width: 6px;
        height: 6px;
        top: 60%;
        right: 15%;
        animation-delay: 3s;
        animation-duration: 25s;
    }
    
    .particle-3 {
        width: 3px;
        height: 3px;
        bottom: 30%;
        left: 20%;
        animation-delay: 6s;
        animation-duration: 30s;
    }
    
    .particle-4 {
        width: 5px;
        height: 5px;
        top: 40%;
        right: 25%;
        animation-delay: 9s;
        animation-duration: 35s;
    }
    
    .particle-5 {
        width: 4px;
        height: 4px;
        bottom: 50%;
        left: 30%;
        animation-delay: 12s;
        animation-duration: 40s;
    }
    
    /* 3D Perspective */
    .perspective-1000 {
        perspective: 1000px;
    }
    
    .transform-gpu {
        transform-style: preserve-3d;
        backface-visibility: hidden;
    }
    
    .group:hover .group-hover\:rotate-y-6 {
        transform: rotateY(6deg);
    }
    
    /* Principle Cards */
    .principle-card {
        background: white;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 16px;
        overflow: hidden;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .principle-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
        border-color: rgba(139, 92, 51, 0.3);
    }
    
    .principle-number {
        position: absolute;
        top: 24px;
        left: 24px;
        font-size: 64px;
        line-height: 1;
        color: rgba(139, 92, 51, 0.1);
        z-index: 1;
    }
    
    .principle-content {
        position: relative;
        padding: 32px;
        z-index: 2;
        background: white;
    }
    
    .principle-image {
        height: 200px;
        overflow: hidden;
    }
    
    .principle-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.6s ease;
    }
    
    .principle-card:hover .principle-image img {
        transform: scale(1.1);
    }
    
    /* Extended Principles */
    .extended-principle {
        padding: 32px;
        background: white;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 12px;
        transition: all 0.3s ease;
    }
    
    .extended-principle:hover {
        border-color: rgba(139, 92, 51, 0.3);
        transform: translateX(5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }
    
    /* Testimonial Cards */
    .testimonial-card {
        padding: 32px;
        background: white;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 12px;
        transition: all 0.3s ease;
    }
    
    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        border-color: rgba(139, 92, 51, 0.3);
    }
    
    /* Responsive Design */
    @media (max-width: 768px) {
        .particle {
            display: none;
        }
        
        .word-reveal,
        .word-reveal-light {
            animation-duration: 0.5s;
        }
        
        .principle-card {
            margin-bottom: 24px;
        }
        
        .extended-principle {
            padding: 24px;
        }
    }
    
    /* Reduced Motion Support */
    @media (prefers-reduced-motion: reduce) {
        .animate-typewriter-glow,
        .word-reveal,
        .word-reveal-light,
        .animate-line-extend,
        .animate-line-extend-slow,
        .animate-text-reveal,
        .animate-float-slow,
        .particle,
        .group-hover\:rotate-y-6 {
            animation: none !important;
            opacity: 1 !important;
            transform: none !important;
            clip-path: none !important;
            filter: none !important;
        }
        
        .principle-card:hover,
        .extended-principle:hover,
        .testimonial-card:hover {
            transform: none;
        }
    }
    /* Curator-specific Animations */
    @keyframes typewriterCurator {
        0% {
            width: 0;
            opacity: 0;
        }
        100% {
            width: 100%;
            opacity: 1;
        }
    }
    
    @keyframes charStagger {
        0% {
            opacity: 0;
            transform: translateY(20px) rotateX(90deg);
        }
        100% {
            opacity: 1;
            transform: translateY(0) rotateX(0);
        }
    }
    
    @keyframes lineExtendCurator {
        0% {
            width: 0;
            opacity: 0;
            transform: translateX(-50%);
        }
        100% {
            width: 128px;
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    /* Animation Classes */
    .animate-typewriter-curator {
        overflow: hidden;
        white-space: nowrap;
        animation: typewriterCurator 2s steps(40) forwards;
        display: inline-block;
        opacity: 0;
    }
    
    .char-stagger {
        display: inline-block;
        opacity: 0;
        animation: charStagger 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        transform-origin: center bottom;
    }
    
    .animate-line-extend-curator {
        animation: lineExtendCurator 1.2s ease-out forwards;
        animation-delay: 0.8s;
        opacity: 0;
    }
    
    /* Grid Pattern */
    .grid-pattern-curators {
        background-image: 
            linear-gradient(rgba(139, 92, 51, 0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(139, 92, 51, 0.03) 1px, transparent 1px);
        background-size: 60px 60px;
    }
    
    /* Floating Elements */
    .curator-floating-element {
        position: absolute;
        border: 1px solid rgba(139, 92, 51, 0.1);
        border-radius: 50%;
    }
    
    .floating-1 {
        width: 200px;
        height: 200px;
        top: 20%;
        right: 15%;
        animation: float 25s ease-in-out infinite;
    }
    
    .floating-2 {
        width: 150px;
        height: 150px;
        bottom: 30%;
        left: 10%;
        animation: float 20s ease-in-out infinite reverse;
    }
    
    .floating-3 {
        width: 100px;
        height: 100px;
        top: 60%;
        right: 25%;
        animation: float 30s ease-in-out infinite;
    }
    
    /* Stat Cards */
    .stat-card {
        background: white;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 12px;
        padding: 24px;
        text-align: center;
        transition: all 0.3s ease;
    }
    
    .stat-card:hover {
        border-color: rgba(139, 92, 51, 0.3);
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }
    
    /* Curator Cards */
    .curator-card {
        background: white;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 16px;
        overflow: hidden;
        transition: all 0.3s ease;
        position: relative;
        cursor: pointer;
    }
    
    .curator-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
        border-color: rgba(139, 92, 51, 0.3);
    }
    
    .curator-image-container {
        position: relative;
        overflow: hidden;
        height: 320px;
    }
    
    .curator-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.6s ease;
    }
    
    .curator-card:hover .curator-image {
        transform: scale(1.1);
    }
    
    .curator-badge {
        position: absolute;
        top: 16px;
        right: 16px;
        background: rgba(255, 255, 255, 0.95);
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.5px;
        color: #8B5C33;
        z-index: 2;
    }
    
    .curator-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
        display: flex;
        align-items: flex-end;
        padding: 24px;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .curator-card:hover .curator-overlay {
        opacity: 1;
    }
    
    .curator-social {
        display: flex;
        gap: 8px;
        width: 100%;
    }
    
    .social-btn {
        width: 36px;
        height: 36px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    
    .social-btn:hover {
        background: #8B5C33;
        transform: translateY(-2px);
    }
    
    .social-btn:hover svg {
        fill: white;
    }
    
    .curator-content {
        padding: 24px;
    }
    
    /* Discipline Cards */
    .discipline-card {
        padding: 32px;
        background: white;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 12px;
        transition: all 0.3s ease;
    }
    
    .discipline-card:hover {
        border-color: rgba(139, 92, 51, 0.3);
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    }
    
    .discipline-icon {
        width: 64px;
        height: 64px;
        background: rgba(139, 92, 51, 0.1);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }
    
    /* Process Steps */
    .process-step {
        display: flex;
        gap: 16px;
        align-items: flex-start;
    }
    
    .process-step-number {
        width: 32px;
        height: 32px;
        background: #8B5C33;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-weight: 600;
        flex-shrink: 0;
    }
    
    /* Application Steps */
    .application-step {
        padding: 32px;
        background: white;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 12px;
        text-align: center;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .application-step:hover {
        border-color: rgba(139, 92, 51, 0.3);
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    }
    
    .step-number {
        width: 48px;
        height: 48px;
        background: rgba(139, 92, 51, 0.1);
        color: #8B5C33;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        font-weight: 600;
        margin: 0 auto 20px;
    }
    
    /* Insight Cards */
    .insight-card {
        background: white;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .insight-card:hover {
        border-color: rgba(139, 92, 51, 0.3);
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    }
    
    .insight-image {
        height: 200px;
        overflow: hidden;
    }
    
    .insight-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.6s ease;
    }
    
    .insight-card:hover .insight-image img {
        transform: scale(1.1);
    }
    
    .insight-content {
        padding: 24px;
    }
    
    /* Responsive Design */
    @media (max-width: 768px) {
        .curator-floating-element {
            display: none;
        }
        
        .char-stagger {
            animation-duration: 0.4s;
        }
        
        .curator-image-container {
            height: 240px;
        }
        
        .stat-card {
            padding: 16px;
        }
        
        .discipline-card {
            padding: 24px;
        }
    }
    
    /* Reduced Motion Support */
    @media (prefers-reduced-motion: reduce) {
        .animate-typewriter-curator,
        .char-stagger,
        .animate-line-extend-curator,
        .curator-floating-element,
        .social-btn:hover {
            animation: none !important;
            opacity: 1 !important;
            transform: none !important;
        }
        
        .stat-card:hover,
        .curator-card:hover,
        .discipline-card:hover,
        .application-step:hover,
        .insight-card:hover {
            transform: none;
        }
    }