        /* CSS Reset & Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            /* Echinacea Purple Coneflower - Color-blind friendly purples */
            --primary-color: #8B4789;
            --primary-light: #A85FA6;
            --primary-dark: #6B3569;
            
            /* Sunflower Yellow - Color-blind friendly golds */
            --accent-color: #F4B942;
            --accent-light: #FFD166;
            --accent-dark: #D9A02E;
            
            /* Complementary colors for balance */
            --text-color: #2D2D2D;
            --text-light: #5A5A5A;
            --white: #ffffff;
            --light-bg: #FFF9F0;
            --gradient-start: #F4B942;
            --gradient-mid: #A85FA6;
            --gradient-end: #8B4789;
            --max-width: 1200px;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            font-size: 16px;
            position: relative;
            overflow-x: hidden;
        }
        
        /* Animated gradient background that responds to scroll */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                135deg,
                var(--gradient-start) 0%,
                var(--gradient-mid) 50%,
                var(--gradient-end) 100%
            );
            opacity: 0.05;
            z-index: -1;
            transition: opacity 0.3s ease;
        }
        
        /* Headings use distinctive font */
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Fraunces', Georgia, serif;
            font-weight: 700;
        }
        
        /* Skip to main content - accessibility */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: var(--primary-color);
            color: white;
            padding: 8px;
            text-decoration: none;
            z-index: 100;
        }
        
        .skip-link:focus {
            top: 0;
        }
        
        /* Header & Navigation */
        header {
            background: var(--white);
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 50;
        }
        
        nav {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            flex-wrap: wrap;
        }
        
        .nav-links a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-links a:hover,
        .nav-links a:focus {
            color: var(--primary-color);
            outline: 2px solid var(--primary-color);
            outline-offset: 4px;
        }
        
        /* Main Content Container */
        main {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 1rem;
        }
        
        /* Section Styling */
        section {
            margin: 3rem 0;
            padding: 2rem 0;
        }
        
        h1, h2, h3 {
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        
        h1 {
            font-size: clamp(2rem, 5vw, 3rem);
        }
        
        h2 {
            font-size: clamp(1.5rem, 4vw, 2.5rem);
            color: var(--primary-color);
            position: relative;
            padding-bottom: 0.5rem;
        }
        
        h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
            border-radius: 2px;
        }
        
        h3 {
            font-size: clamp(1.25rem, 3vw, 1.75rem);
        }
        
        p {
            margin-bottom: 1rem;
            max-width: 70ch;
        }
        
        /* Hero Section */
        .hero {
            text-align: center;
            padding: 4rem 1rem;
            background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 50%, #FFF5E6 100%);
            border-radius: 8px;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
            opacity: 0.1;
            animation: gradientShift 15s ease infinite;
        }
        
        @keyframes gradientShift {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(10%, 10%) scale(1.1); }
        }
        
        .hero > * {
            position: relative;
            z-index: 1;
        }
        
        .hero h1 {
            margin-bottom: 1.5rem;
        }
        
        .cta-button {
            display: inline-block;
            background: var(--primary-color);
            color: white;
            padding: 1rem 2rem;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 600;
            margin-top: 1rem;
            transition: background 0.3s, transform 0.2s;
        }
        
        .cta-button:hover,
        .cta-button:focus {
            background: var(--primary-dark);
            transform: translateY(-2px);
            outline: 2px solid var(--primary-dark);
            outline-offset: 4px;
            box-shadow: 0 8px 16px rgba(139, 71, 137, 0.3);
        }
        
        /* Image Gallery Grid */
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            aspect-ratio: 4/3;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }
        
        .gallery-item:hover img,
        .gallery-item:focus-within img {
            transform: scale(1.05);
        }
        
        /* Video Container - Responsive */
        .video-container {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            height: 0;
            overflow: hidden;
            margin: 2rem 0;
            border-radius: 8px;
        }
        
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* Social Media Links */
        .social-links {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            margin: 2rem 0;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            background: linear-gradient(135deg, var(--light-bg), #FFF5E6);
            color: var(--text-color);
            text-decoration: none;
            border-radius: 6px;
            font-weight: 500;
            transition: all 0.3s;
            border: 2px solid transparent;
        }
        
        .social-links a:hover,
        .social-links a:focus {
            background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
            color: var(--text-color);
            transform: translateY(-2px);
            outline: 2px solid var(--accent-dark);
            outline-offset: 4px;
            border-color: var(--accent-dark);
            box-shadow: 0 4px 12px rgba(244, 185, 66, 0.3);
        }
        
        /* Footer */
        footer {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
            color: white;
            text-align: center;
            padding: 2rem 1rem;
            margin-top: 4rem;
        }
        
        footer a {
            color: var(--accent-light);
            text-decoration: underline;
            transition: color 0.3s;
        }
        
        footer a:hover,
        footer a:focus {
            color: var(--accent-color);
        }
        
        /* Scroll-reactive gradient intensity */
        @media (prefers-reduced-motion: no-preference) {
            body.scrolled::before {
                opacity: 0.08;
            }
        }
        
        /* Responsive Design - Mobile First Approach Already Applied */
        @media (max-width: 768px) {
            nav {
                flex-direction: column;
                gap: 1rem;
            }
            
            .nav-links {
                gap: 1rem;
                justify-content: center;
            }
            
            .gallery {
                grid-template-columns: 1fr;
            }
        }
        
        /* Print Styles */
        @media print {
            header, footer, .social-links {
                display: none;
            }
        }