        :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;
        }

        /* Utility */
        .serif { font-family: 'Cormorant Garamond', serif; }
        .sans { font-family: 'Montserrat', sans-serif; }

        /* Noise Texture Overlay */
        .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: linear-gradient(to bottom, rgba(250,248,245,0.98) 0%, rgba(250,248,245,0) 100%);
            transition: all 0.4s ease;
        }

        nav.scrolled {
            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;
        }

        .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::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: width 0.3s ease;
        }

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

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

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(ellipse at 20% 80%, rgba(201,169,98,0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(42,59,71,0.05) 0%, transparent 50%),
                linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
        }

        .hero-lines {
            position: absolute;
            inset: 0;
            opacity: 0.4;
        }

        .hero-lines::before,
        .hero-lines::after {
            content: '';
            position: absolute;
            background: var(--gold-light);
        }

        .hero-lines::before {
            top: 30%;
            left: 0;
            right: 60%;
            height: 1px;
        }

        .hero-lines::after {
            bottom: 35%;
            left: 55%;
            right: 0;
            height: 1px;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            max-width: 900px;
            padding: 0 2rem;
        }

        .hero-logo {
            width: 300px;
            height: 300px;
            margin: 0 auto 3rem;
            animation: fadeInUp 1s ease 0.2s both;
        }

        .hero-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 20px 40px rgba(42,59,71,0.15));
        }

        .hero-tagline {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 0.4em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s ease 0.4s both;
        }

        .hero-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(3rem, 8vw, 5.5rem);
            font-weight: 300;
            line-height: 1.1;
            color: var(--slate-dark);
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s ease 0.6s both;
        }

        .hero-title em {
            font-style: italic;
            color: var(--gold-dark);
        }

        .hero-subtitle {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-weight: 300;
            color: var(--slate);
            max-width: 600px;
            margin: 0 auto 3rem;
            animation: fadeInUp 1s ease 0.8s both;
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--slate-dark);
            text-decoration: none;
            padding: 1rem 2.5rem;
            border: 1px solid var(--slate-light);
            background: transparent;
            cursor: pointer;
            transition: all 0.4s ease;
            animation: fadeInUp 1s ease 1s both;
        }

        .hero-cta:hover {
            background: var(--slate-dark);
            color: var(--cream);
            border-color: var(--slate-dark);
        }

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

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

        .hero-scroll {
            position: absolute;
            bottom: 3rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
            color: var(--slate-light);
            font-size: 0.65rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            animation: fadeIn 1s ease 1.5s both;
        }

        .hero-scroll-line {
            width: 1px;
            height: 40px;
            background: linear-gradient(to bottom, var(--slate-light) 0%, transparent 100%);
            animation: scrollPulse 2s ease infinite;
        }

        /* Sections */
        section {
            padding: 8rem 4rem;
            position: relative;
        }

        .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(2.5rem, 5vw, 4rem);
            font-weight: 300;
            color: var(--slate-dark);
            line-height: 1.2;
            margin-bottom: 2rem;
        }

        /* About Section */
        .about {
            background: var(--white);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            max-width: 1400px;
            margin: 0 auto;
            align-items: center;
        }

        .about-image {
            position: relative;
        }

        .about-image-frame {
            position: relative;
            aspect-ratio: 4/5;
            background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .about-image-frame::before {
            content: '';
            position: absolute;
            inset: 20px;
            border: 1px solid var(--gold-light);
        }

        .about-image-accent {
            position: absolute;
            top: -20px;
            right: -20px;
            width: 150px;
            height: 150px;
            border: 1px solid var(--gold-light);
            opacity: 0.6;
        }

        .about-emblem {
            width: 60%;
            opacity: 0.8;
        }

        .about-content p {
            font-size: 1.1rem;
            color: var(--slate);
            margin-bottom: 1.5rem;
            line-height: 1.9;
        }

        .about-content p:first-of-type::first-letter {
            font-family: 'Cormorant Garamond', serif;
            font-size: 4rem;
            float: left;
            line-height: 1;
            padding-right: 1rem;
            color: var(--gold-dark);
            font-weight: 500;
        }

        .about-signature {
            display: flex;
            gap: 3rem;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid var(--cream-dark);
        }

        .about-signature-item {
            display: flex;
            flex-direction: column;
        }

        .about-signature-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-style: italic;
            color: var(--slate-dark);
        }

        .about-signature-role {
            font-size: 0.7rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--slate-light);
            margin-top: 0.25rem;
        }

        /* Services Section */
        .services {
            background: var(--slate-dark);
            color: var(--cream);
        }

        .services .section-title {
            color: var(--cream);
            text-align: center;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1400px;
            margin: 4rem auto 0;
        }

        .service-card {
            padding: 3rem 2.5rem;
            background: rgba(255,255,255,0.02);
            border: 1px solid rgba(255,255,255,0.08);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .service-card:hover {
            background: rgba(255,255,255,0.05);
            transform: translateY(-4px);
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-number {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3rem;
            font-weight: 300;
            color: var(--gold);
            opacity: 0.5;
            line-height: 1;
            margin-bottom: 1.5rem;
        }

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

        .service-desc {
            font-size: 0.95rem;
            color: rgba(250,248,245,0.7);
            line-height: 1.8;
        }

        /* Legacy Section */
        .legacy {
            background: 
                linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
            position: relative;
            overflow: hidden;
        }

        .legacy::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(201,169,98,0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .legacy-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 10;
        }

        .legacy-quote {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            font-weight: 300;
            font-style: italic;
            color: var(--slate-dark);
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        .legacy-attribution {
            font-size: 0.8rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--slate-light);
        }

        .legacy-years {
            display: flex;
            justify-content: center;
            gap: 6rem;
            margin-top: 5rem;
        }

        .legacy-year {
            text-align: center;
        }

        .legacy-year-num {
            font-family: 'Cormorant Garamond', serif;
            font-size: 4rem;
            font-weight: 300;
            color: var(--gold);
            line-height: 1;
        }

        .legacy-year-label {
            font-size: 0.7rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--slate-light);
            margin-top: 0.5rem;
        }

        /* Contact Section */
        .contact {
            background: var(--charcoal);
            color: var(--cream);
            text-align: center;
        }

        .contact .section-title {
            color: var(--cream);
        }

        .contact-email {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.5rem, 4vw, 2.5rem);
            font-style: italic;
            color: var(--gold);
            text-decoration: none;
            display: inline-block;
            margin-top: 1rem;
            transition: color 0.3s ease;
        }

        .contact-email:hover {
            color: var(--gold-light);
        }

        .contact-divider {
            width: 60px;
            height: 1px;
            background: var(--gold);
            margin: 4rem auto;
            opacity: 0.5;
        }

        .contact-address {
            font-size: 0.85rem;
            color: rgba(250,248,245,0.6);
            line-height: 2;
        }

        /* 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 */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes scrollPulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

        /* Scroll 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: 5rem 2rem;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .legacy-years {
                gap: 3rem;
            }
        }

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

            .hero-logo {
                width: 140px;
                height: 140px;
            }

            .about-signature {
                flex-direction: column;
                gap: 1.5rem;
            }

            .legacy-years {
                flex-direction: column;
                gap: 2rem;
            }

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