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

        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 {
            padding: 12rem 4rem 6rem; background: var(--slate-dark);
            position: relative; overflow: hidden;
        }
        .page-header::before {
            content: ''; position: absolute; top: 0; right: 0; width: 60%; height: 100%;
            background: radial-gradient(ellipse at 80% 50%, rgba(201,169,98,0.15) 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(--cream); line-height: 1.1; margin-bottom: 1.5rem;
        }
        .page-subtitle {
            font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 300;
            color: rgba(250,248,245,0.8); max-width: 600px;
        }

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

        .services-list { background: var(--cream); }
        .services-intro { max-width: 800px; margin: 0 auto 5rem; text-align: center; }
        .services-intro p {
            font-family: 'Cormorant Garamond', serif; font-size: 1.5rem;
            font-weight: 300; color: var(--slate); line-height: 1.7;
        }

        .service-detail {
            display: grid; grid-template-columns: 1fr 2fr; gap: 4rem;
            max-width: 1200px; margin: 0 auto; padding: 5rem 0;
            border-top: 1px solid var(--cream-dark);
        }
        .service-detail:first-of-type { border-top: none; padding-top: 0; }
        .service-detail-left { position: sticky; top: 120px; height: fit-content; }
        .service-number {
            font-family: 'Cormorant Garamond', serif; font-size: 5rem;
            font-weight: 300; color: var(--gold); opacity: 0.4; line-height: 1;
        }
        .service-detail-title {
            font-family: 'Cormorant Garamond', serif; font-size: 2.5rem;
            font-weight: 400; color: var(--slate-dark); margin-top: 1rem;
        }
        .service-detail-right h4 {
            font-size: 0.75rem; font-weight: 500; letter-spacing: 0.2em;
            text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
        }
        .service-detail-right p {
            font-size: 1.05rem; color: var(--slate); line-height: 1.9; margin-bottom: 2rem;
        }
        .service-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
        .service-feature { padding: 1.5rem; background: var(--white); border: 1px solid var(--cream-dark); }
        .service-feature-title {
            font-family: 'Cormorant Garamond', serif; font-size: 1.25rem;
            font-weight: 400; color: var(--slate-dark); margin-bottom: 0.5rem;
        }
        .service-feature-desc { font-size: 0.9rem; color: var(--slate-light); line-height: 1.6; }

        .approach { background: var(--white); }
        .approach-content { max-width: 1000px; margin: 0 auto; }
        .approach-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 4rem; }
        .approach-step {
            padding: 2.5rem; position: relative; border-right: 1px solid var(--cream-dark);
        }
        .approach-step:last-child { border-right: none; }
        .approach-step::before {
            content: ''; position: absolute; top: 0; left: 2.5rem; right: 2.5rem; height: 2px;
            background: linear-gradient(90deg, var(--gold), var(--gold-light));
        }
        .approach-num {
            font-family: 'Cormorant Garamond', serif; font-size: 3rem;
            font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 1.5rem;
        }
        .approach-title {
            font-family: 'Cormorant Garamond', serif; font-size: 1.25rem;
            font-weight: 400; color: var(--slate-dark); margin-bottom: 0.75rem;
        }
        .approach-desc { font-size: 0.9rem; color: var(--slate); line-height: 1.7; }

        .industries { background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%); }
        .industries-content { max-width: 1000px; margin: 0 auto; text-align: center; }
        .industries-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 3rem; }
        .industry-tag {
            font-size: 0.8rem; letter-spacing: 0.1em; color: var(--slate);
            padding: 0.75rem 1.5rem; background: var(--white); border: 1px solid var(--cream-dark);
            transition: all 0.3s ease;
        }
        .industry-tag:hover { background: var(--slate-dark); color: var(--cream); border-color: var(--slate-dark); }

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

        .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); }

        @media (max-width: 1024px) {
            nav { padding: 1rem 2rem; }
            section { padding: 4rem 2rem; }
            .page-header { padding: 10rem 2rem 4rem; }
            .service-detail { grid-template-columns: 1fr; gap: 2rem; }
            .service-detail-left { position: static; }
            .service-features { grid-template-columns: 1fr; }
            .approach-grid { grid-template-columns: 1fr 1fr; }
            .approach-step { border-bottom: 1px solid var(--cream-dark); }
            .approach-step:nth-child(2) { border-right: none; }
        }
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .approach-grid { grid-template-columns: 1fr; }
            .approach-step { border-right: none; }
            footer { flex-direction: column; gap: 1rem; text-align: center; }
        }
