        :root {
            --gold-light: #E8D5A3;
            --gold: #C9A962;
            --gold-dark: #8B7355;
            --slate-dark: #2A3B47;
            --slate: #4A5C6A;
            --slate-light: #6B7D8A;
            --cream: #FAF8F5;
            --cream-dark: #F0EDE7;
            --charcoal: #1A1A1A;
            --white: #FFFFFF;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background: var(--cream);
            color: var(--charcoal);
            overflow-x: hidden;
            line-height: 1.7;
        }

        .noise {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 9999;
            opacity: 0.03;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1.5rem 4rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(250,248,245,0.98);
            backdrop-filter: blur(20px);
            box-shadow: 0 1px 0 rgba(42,59,71,0.08);
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 1rem;
            text-decoration: none;
        }

        .nav-logo img {
            height: 50px;
            width: auto;
        }

        .nav-wordmark {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.4rem;
            font-weight: 500;
            letter-spacing: 0.15em;
            color: var(--slate-dark);
            text-transform: uppercase;
        }

        .nav-links {
            display: flex;
            gap: 3rem;
            list-style: none;
        }

        .nav-links a {
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--slate);
            text-decoration: none;
            position: relative;
            padding: 0.5rem 0;
            transition: color 0.3s ease;
        }

        .nav-links a.active {
            color: var(--gold-dark);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        /* Page Header */
        .page-header {
            padding: 12rem 4rem 6rem;
            background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
            position: relative;
            overflow: hidden;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: radial-gradient(ellipse at 80% 50%, rgba(201,169,98,0.08) 0%, transparent 60%);
        }

        .page-header-content {
            max-width: 800px;
            position: relative;
            z-index: 10;
        }

        .page-label {
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 1rem;
        }

        .page-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(3rem, 7vw, 5rem);
            font-weight: 300;
            color: var(--slate-dark);
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .page-subtitle {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-weight: 300;
            color: var(--slate);
            max-width: 600px;
        }

        /* Content Sections */
        section {
            padding: 6rem 4rem;
        }

        .section-label {
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 1rem;
        }

        .section-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 300;
            color: var(--slate-dark);
            line-height: 1.2;
            margin-bottom: 2rem;
        }

        /* Origin Story */
        .origin {
            background: var(--white);
        }

        .origin-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .origin-text {
            columns: 2;
            column-gap: 4rem;
            font-size: 1.05rem;
            color: var(--slate);
            line-height: 1.9;
        }

        .origin-text p {
            margin-bottom: 1.5rem;
            break-inside: avoid;
        }

        .origin-text p:first-of-type::first-letter {
            font-family: 'Cormorant Garamond', serif;
            font-size: 5rem;
            float: left;
            line-height: 0.8;
            padding-right: 1rem;
            padding-top: 0.5rem;
            color: var(--gold-dark);
            font-weight: 500;
        }

        /* Founders Section */
        .founders {
            background: var(--cream);
        }

        .founders-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .founder-card {
            background: var(--white);
            padding: 3rem;
            position: relative;
        }

        .founder-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 60px;
            background: var(--gold);
        }

        .founder-image {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, var(--cream-dark), var(--cream));
            border-radius: 50%;
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid var(--gold-light);
        }

        .founder-image img {
            width: 60%;
            opacity: 0.6;
        }

        .founder-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            font-weight: 400;
            color: var(--slate-dark);
            margin-bottom: 0.5rem;
        }

        .founder-role {
            font-size: 0.75rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 1.5rem;
        }

        .founder-bio {
            font-size: 1rem;
            color: var(--slate);
            line-height: 1.8;
        }

        .founder-skills {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--cream-dark);
        }

        .founder-skill {
            font-size: 0.65rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--slate-light);
            padding: 0.4rem 0.8rem;
            background: var(--cream);
            border: 1px solid var(--cream-dark);
        }

        /* Timeline */
        .timeline {
            background: var(--slate-dark);
            color: var(--cream);
        }

        .timeline .section-title {
            color: var(--cream);
            text-align: center;
        }

        .timeline-container {
            max-width: 800px;
            margin: 4rem auto 0;
            position: relative;
        }

        .timeline-container::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 1px;
            background: rgba(201,169,98,0.3);
            transform: translateX(-50%);
        }

        .timeline-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 3rem;
            position: relative;
        }

        .timeline-item:nth-child(odd) {
            flex-direction: row-reverse;
            text-align: right;
        }

        .timeline-item:nth-child(odd) .timeline-content {
            padding-right: 4rem;
            padding-left: 0;
        }

        .timeline-content {
            flex: 1;
            padding-left: 4rem;
        }

        .timeline-year {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
            font-weight: 300;
            color: var(--gold);
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .timeline-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.25rem;
            font-weight: 400;
            color: var(--cream);
            margin-bottom: 0.5rem;
        }

        .timeline-desc {
            font-size: 0.9rem;
            color: rgba(250,248,245,0.7);
            line-height: 1.7;
        }

        .timeline-dot {
            position: absolute;
            left: 50%;
            top: 0.5rem;
            width: 12px;
            height: 12px;
            background: var(--gold);
            border-radius: 50%;
            transform: translateX(-50%);
        }

        /* Values */
        .values {
            background: 
                linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
        }

        .values-content {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            margin-top: 4rem;
        }

        .value-item {
            padding: 2rem;
        }

        .value-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--gold-light);
            border-radius: 50%;
        }

        .value-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--gold);
        }

        .value-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-weight: 400;
            color: var(--slate-dark);
            margin-bottom: 0.75rem;
        }

        .value-desc {
            font-size: 0.95rem;
            color: var(--slate);
            line-height: 1.7;
        }

        /* CTA Section */
        .cta {
            background: var(--charcoal);
            color: var(--cream);
            text-align: center;
            padding: 8rem 4rem;
        }

        .cta .section-title {
            color: var(--cream);
            max-width: 600px;
            margin: 0 auto 2rem;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--charcoal);
            text-decoration: none;
            padding: 1.25rem 3rem;
            background: var(--gold);
            border: none;
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .cta-button:hover {
            background: var(--gold-light);
            transform: translateY(-2px);
        }

        .cta-button svg {
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
        }

        .cta-button:hover svg {
            transform: translateX(4px);
        }

        /* Footer */
        footer {
            background: var(--charcoal);
            padding: 2rem 4rem;
            border-top: 1px solid rgba(250,248,245,0.08);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-copyright {
            font-size: 0.75rem;
            color: rgba(250,248,245,0.4);
            letter-spacing: 0.1em;
        }

        .footer-links {
            display: flex;
            gap: 2rem;
        }

        .footer-links a {
            font-size: 0.7rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: rgba(250,248,245,0.4);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--gold);
        }

        /* Animations */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            nav {
                padding: 1rem 2rem;
            }

            section {
                padding: 4rem 2rem;
            }

            .page-header {
                padding: 10rem 2rem 4rem;
            }

            .origin-text {
                columns: 1;
            }

            .founders-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .values-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .timeline-container::before {
                left: 20px;
            }

            .timeline-item,
            .timeline-item:nth-child(odd) {
                flex-direction: column;
                text-align: left;
            }

            .timeline-content,
            .timeline-item:nth-child(odd) .timeline-content {
                padding-left: 50px;
                padding-right: 0;
            }

            .timeline-dot {
                left: 20px;
            }

            footer {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
        }
