        :root {
            --beige: #f5efe6;
            --terracotta: #b66c53;
            --dark-brown: #1e0d01;
            --sage: #8D8B63;
            --white: #FFFFFF;
            --light-gray: #f9f9f9;
            --dark-sage: #6d6b4d;
            --cream: #faf8f5;
            --gold: #d4af37;
        }

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

        body {
            font-family: 'Red Hat Display', sans-serif;
            line-height: 1.6;
            color: var(--dark-brown);
            background-color: var(--white);
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            padding: 0 20px;
        }

        /* Hero Section */
        .hero {
            height: 60vh;
            min-height: 500px;
            background: linear-gradient(135deg, rgba(30, 13, 1, 0.7) 0%, rgba(182, 108, 83, 0.4) 50%, rgba(141, 139, 99, 0.3) 100%), 
                        url('https://images.unsplash.com/photo-1551882547-ff40c63fe5fa?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.3) 100%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 2rem;
        }

        .hero-content h1 {
            font-size: 5rem;
            margin-bottom: 2rem;
            font-weight: 200;
            letter-spacing: 5px;
            text-shadow: 3px 3px 12px rgba(0,0,0,0.5);
            background: linear-gradient(45deg, var(--white), var(--beige), var(--gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shimmer 3s ease-in-out infinite;
        }

        @keyframes shimmer {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .hero-content p {
            font-size: 1.4rem;
            margin-bottom: 2rem;
            font-weight: 300;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
            opacity: 0.95;
            line-height: 1.8;
        }

        .hero-ornament {
            width: 100px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            margin: 2rem auto;
            position: relative;
        }

        .hero-ornament::before,
        .hero-ornament::after {
            content: '';
            position: absolute;
            width: 8px;
            height: 8px;
            background: var(--gold);
            border-radius: 50%;
            top: -3px;
        }

        .hero-ornament::before { left: -10px; }
        .hero-ornament::after { right: -10px; }

        /* Floating elements */
        .floating-element {
            position: absolute;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

        .floating-element:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            top: 60%;
            right: 15%;
            animation-delay: 2s;
        }

        .floating-element:nth-child(3) {
            bottom: 30%;
            left: 20%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        /* Sections */
        .section {
            padding: 120px 0;
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 5rem;
            position: relative;
        }

        .section-title h2 {
            font-size: 3.5rem;
            color: var(--dark-brown);
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
            font-weight: 300;
            letter-spacing: 2px;
        }

        .section-title h2::before {
            content: '';
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--terracotta), transparent);
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 3px;
            background: linear-gradient(90deg, var(--terracotta), var(--gold), var(--sage));
            border-radius: 3px;
        }

        .section-title p {
            font-size: 1.4rem;
            color: var(--sage);
            font-style: italic;
            margin-top: 2rem;
            font-weight: 300;
        }

        /* Story Section */
        .story {
            background: linear-gradient(135deg, var(--cream) 0%, var(--white) 50%, var(--beige) 100%);
            position: relative;
            overflow: hidden;
        }

        .story::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(182, 108, 83, 0.03) 0%, transparent 70%);
            animation: rotate 60s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .story-content {
            position: relative;
            z-index: 2;
        }

        .story-image-container {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.15);
        }

        .story-image {
            background: url('https://images.unsplash.com/photo-1582719478250-c89cae4dc85b?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            height: 500px;
            transition: all 0.8s ease;
            position: relative;
        }

        .story-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(182, 108, 83, 0.1), rgba(141, 139, 99, 0.1));
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .story-image-container:hover .story-image {
            transform: scale(1.05);
        }

        .story-image-container:hover .story-image::before {
            opacity: 1;
        }

        .story-text {
            padding-left: 4rem;
            position: relative;
        }

        .story-text::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 4px;
            height: 100px;
            background: linear-gradient(180deg, var(--terracotta), var(--sage));
            border-radius: 2px;
        }

        .story-text .lead {
            font-size: 1.8rem;
            line-height: 1.8;
            margin-bottom: 2.5rem;
            color: var(--dark-brown);
            font-weight: 300;
            position: relative;
        }

        .story-text .lead::first-letter {
            font-size: 4rem;
            float: left;
            line-height: 1;
            padding-right: 8px;
            padding-top: 4px;
            font-weight: 400;
            color: var(--terracotta);
        }

        .story-text p {
            font-size: 1.2rem;
            line-height: 2;
            margin-bottom: 2rem;
            color: var(--sage);
            position: relative;
        }

        /* Values Section */
        .values {
            background: var(--dark-brown);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .values::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://images.unsplash.com/photo-1544306094-84c0e7bd0a1d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            opacity: 0.1;
        }

        .values .section-title h2,
        .values .section-title p {
            color: var(--white);
        }

        .value-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 25px;
            padding: 4rem 3rem;
            margin-bottom: 2rem;
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            height: 100%;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .value-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            transition: left 0.6s ease;
        }

        .value-card:hover::before {
            left: 100%;
        }

        .value-card:hover {
            transform: translateY(-15px) scale(1.02);
            background: rgba(255, 255, 255, 0.1);
            box-shadow: 0 30px 60px rgba(0,0,0,0.3);
            border-color: rgba(212, 175, 55, 0.3);
        }

        .value-icon {
            font-size: 4rem;
            margin-bottom: 2rem;
            background: linear-gradient(45deg, var(--gold), var(--beige));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: all 0.5s ease;
            position: relative;
        }

        .value-card:hover .value-icon {
            transform: scale(1.2) rotateY(360deg);
        }

        .value-card h4 {
            font-size: 1.8rem;
            color: var(--beige);
            margin-bottom: 1.5rem;
            font-weight: 400;
            letter-spacing: 1px;
        }

        .value-card p {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.8;
            font-size: 1.1rem;
        }

        /* Team Section */
        .team {
            background: linear-gradient(45deg, var(--sage) 0%, var(--dark-sage) 100%);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .team::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="1.5" fill="rgba(255,255,255,0.02)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
        }

        .team .section-title h2,
        .team .section-title p {
            color: var(--white);
            position: relative;
            z-index: 2;
        }

        .team-member {
            text-align: center;
            padding: 3rem;
            background: rgba(255,255,255,0.08);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            margin-bottom: 2rem;
            transition: all 0.5s ease;
            border: 1px solid rgba(255,255,255,0.1);
            height: 100%;
            position: relative;
            z-index: 2;
            overflow: hidden;
        }

        .team-member::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--gold) 0%, var(--beige) 50%, var(--terracotta) 100%);
        }

        .team-member:hover {
            background: rgba(255,255,255,0.15);
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.2);
        }

        .team-photo {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(212,175,55,0.3));
            margin: 0 auto 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3.5rem;
            color: var(--beige);
            transition: all 0.5s ease;
            border: 3px solid rgba(255,255,255,0.2);
            position: relative;
            overflow: hidden;
        }

        .team-photo::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, transparent, rgba(255,255,255,0.1), transparent);
            animation: rotate 3s linear infinite;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .team-member:hover .team-photo::before {
            opacity: 1;
        }

        .team-member:hover .team-photo {
            transform: scale(1.1);
            border-color: var(--gold);
        }

        .team-member h4 {
            color: var(--beige);
            margin-bottom: 0.8rem;
            font-size: 1.6rem;
            font-weight: 400;
            letter-spacing: 1px;
        }

        .team-member .role {
            color: var(--gold);
            font-weight: 500;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .team-member p {
            color: rgba(255,255,255,0.9);
            line-height: 1.7;
            font-size: 1rem;
        }

        /* Location Section */
        .location {
            background: linear-gradient(135deg, var(--beige) 0%, var(--cream) 50%, var(--white) 100%);
            position: relative;
        }

        .location-feature {
            background: var(--white);
            border-radius: 20px;
            padding: 3rem;
            margin-bottom: 2rem;
            transition: all 0.5s ease;
            height: 100%;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.08);
            border: 1px solid rgba(182, 108, 83, 0.1);
        }

        .location-feature::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--terracotta), var(--gold), var(--sage));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }

        .location-feature:hover::before {
            transform: scaleX(1);
        }

        .location-feature:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }

        .location-icon {
            font-size: 3.5rem;
            background: linear-gradient(45deg, var(--terracotta), var(--sage));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 2rem;
            transition: all 0.5s ease;
        }

        .location-feature:hover .location-icon {
            transform: scale(1.2) rotateY(360deg);
        }

        .location-feature h4 {
            font-size: 1.6rem;
            margin-bottom: 1.2rem;
            color: var(--dark-brown);
            font-weight: 400;
            letter-spacing: 1px;
        }

        .location-feature p {
            color: var(--sage);
            line-height: 1.8;
            font-size: 1.1rem;
        }

        /* Scroll animations */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 1199.98px) {
            .container {
                max-width: 100%;
                padding: 0 30px;
            }
        }

        @media (max-width: 991.98px) {
            .section {
                padding: 100px 0;
            }
            
            .hero-content h1 {
                font-size: 4rem;
            }
            
            .section-title h2 {
                font-size: 3rem;
            }

            .story-text {
                padding-left: 0;
                margin-top: 3rem;
            }

            .story-text::before {
                display: none;
            }
        }

        @media (max-width: 767.98px) {
            .section {
                padding: 80px 0;
            }
            
            .hero {
                min-height: 600px;
            }
            
            .hero-content h1 {
                font-size: 3rem;
                letter-spacing: 3px;
            }
            
            .hero-content p {
                font-size: 1.3rem;
            }
            
            .section-title h2 {
                font-size: 2.5rem;
            }
            
            .story-image {
                height: 350px;
                margin-bottom: 30px;
            }

            .story-text .lead {
                font-size: 1.4rem;
            }

            .value-card,
            .team-member,
            .location-feature {
                padding: 2.5rem;
            }
        }

        @media (max-width: 575.98px) {
            .hero-content h1 {
                font-size: 2.5rem;
                letter-spacing: 2px;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }

            .value-card,
            .team-member,
            .location-feature {
                padding: 2rem;
            }

            .story-text .lead::first-letter {
                font-size: 3rem;
            }
        }