        :root {
            --c-bg: #f9f8f3;
            --c-bg-warm: #f3ecdc;
            --c-bg-deep: #ebe1cb;
            --c-paper: #ffffff;
            --c-ink: #2a2418;
            --c-ink-soft: #5a4f3d;
            --c-brown: #53432f;
            --c-brown-dark: #6f593f;
            --c-brown-deep: #715C42;
            --c-brown-light: #e2d7c0;
            --c-brown-pale: #efe7d4;
            --c-gold: #927955;
            --c-gold-light: #b89870;
            --c-navy: #000030;
            --c-divider: rgba(83, 67, 47, 0.14);

            --r-sm: 14px;
            --r-md: 24px;
            --r-lg: 32px;
            --r-xl: 44px;
            --r-pill: 999px;

            --shadow-xs: 0 2px 8px -2px rgba(83, 67, 47, 0.12);
            --shadow-sm: 0 10px 30px -10px rgba(83, 67, 47, 0.18);
            --shadow-md: 0 30px 60px -25px rgba(83, 67, 47, 0.30);
            --shadow-lg: 0 60px 100px -40px rgba(83, 67, 47, 0.40);

            --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
            --container: 1320px;
        }

        * { box-sizing: border-box; }

        html { scroll-behavior: smooth; }

        body {
            margin: 0;
            font-family: 'Roboto', Arial, sans-serif;
            font-size: 17px;
            line-height: 1.65;
            color: var(--c-ink);
            background: var(--c-bg);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        ::selection { background: var(--c-gold); color: #fff; }

        a { color: var(--c-brown-dark); text-decoration: none; transition: color 0.3s var(--ease-out); }
        a:hover { color: var(--c-gold); }

        img { max-width: 100%; height: auto; display: block; }

        .container {
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 32px;
        }

        /* Decorative background blurs */
        .blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.55;
            pointer-events: none;
            z-index: 0;
        }

        /* Eyebrow label */
        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-family: 'Roboto', sans-serif;
            color: var(--c-gold);
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin: 0 0 22px;
        }

        /* === Header === */
        .site-header {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: calc(100% - 40px);
            max-width: 1360px;
            z-index: 100;
            transition: top 0.4s var(--ease-out);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(20px) saturate(160%);
            -webkit-backdrop-filter: blur(20px) saturate(160%);
            border: 1px solid rgba(255, 255, 255, 0.6);
            box-shadow: 0 12px 40px -16px rgba(83, 67, 47, 0.18);
            border-radius: var(--r-pill);
            padding: 10px 14px 10px 28px;
            transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), padding 0.4s var(--ease-out);
        }

        .site-header.is-scrolled .header-inner {
            background: rgba(255, 255, 255, 0.92);
            box-shadow: 0 18px 48px -20px rgba(83, 67, 47, 0.28);
        }

        .site-logo img {
            height: 44px;
            width: auto;
            transition: height 0.4s var(--ease-out);
        }

        .main-nav ul {
            display: flex;
            gap: 36px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .main-nav a {
            color: var(--c-brown);
            font-family: 'Roboto', sans-serif;
            font-size: 13px;
            letter-spacing: 0.5px;
            font-weight: 500;
            position: relative;
            padding: 8px 4px;
        }

        .main-nav a::after {
            content: "";
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            bottom: 2px;
            width: 0;
            height: 2px;
            background: var(--c-gold);
            border-radius: 2px;
            transition: width 0.4s var(--ease-out);
        }

        .main-nav a:hover { color: var(--c-gold); }
        .main-nav a:hover::after { width: 22px; }

        .header-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--c-brown);
            color: #fff;
            font-family: 'Roboto', sans-serif;
            font-size: 12px;
            letter-spacing: 0.5px;
            font-weight: 500;
            padding: 12px 22px;
            border-radius: var(--r-pill);
            transition: background 0.3s var(--ease-out), transform 0.3s var(--ease-out);
        }

        .header-cta:hover { background: var(--c-gold); color: #fff; transform: translateY(-1px); }

        .nav-toggle {
            display: none;
            width: 44px;
            height: 44px;
            background: var(--c-brown);
            border: 0;
            border-radius: 50%;
            cursor: pointer;
            position: relative;
        }

        .nav-toggle span {
            display: block;
            position: absolute;
            left: 50%;
            top: 50%;
            width: 16px;
            height: 1.5px;
            background: #fff;
            border-radius: 2px;
            transform: translate(-50%, -50%);
            transition: transform 0.35s var(--ease-out), opacity 0.3s;
        }

        .nav-toggle span:nth-child(1) { transform: translate(-50%, calc(-50% - 5px)); }
        .nav-toggle span:nth-child(3) { transform: translate(-50%, calc(-50% + 5px)); }

        .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
        .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
        .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }

        /* === Hero === */
        .hero {
            position: relative;
            padding: 160px 0 80px;
            overflow: hidden;
        }

        .hero .blob-1 {
            top: -120px;
            right: -120px;
            width: 520px;
            height: 520px;
            background: radial-gradient(circle, rgba(146, 121, 85, 0.45), transparent 70%);
        }

        .hero .blob-2 {
            bottom: -180px;
            left: -160px;
            width: 580px;
            height: 580px;
            background: radial-gradient(circle, rgba(226, 215, 192, 0.7), transparent 70%);
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 6fr 6fr;
            gap: 64px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-text { position: relative; }

        .hero-title {
            font-family: 'Roboto', sans-serif;
            color: var(--c-brown);
            font-size: clamp(48px, 7vw, 96px);
            font-weight: 600;
            letter-spacing: -2px;
            margin: 0 0 20px;
            line-height: 0.95;
            text-transform: none;
        }

        .hero-title em {
            font-style: normal;
            font-weight: inherit;
            color: inherit;
            letter-spacing: inherit;
        }

        .hero-subtitle {
            color: var(--c-navy);
            font-size: clamp(22px, 2.2vw, 30px);
            font-style: normal;
            font-weight: 300;
            margin: 0 0 36px;
            line-height: 1.3;
            opacity: 0.85;
            letter-spacing: 0.2px;
        }

        .hero-body p {
            color: var(--c-ink-soft);
            font-size: 16px;
            line-height: 1.75;
            margin: 0 0 14px;
            max-width: 540px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-top: 36px;
        }

        /* Hero photo composition */
        .hero-photo {
            position: relative;
            aspect-ratio: 4 / 5;
        }

        .hero-photo-main {
            position: absolute;
            inset: 0;
            border-radius: var(--r-xl);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            background: var(--c-brown-light);
        }

        .hero-photo-main img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* === Buttons === */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 16px 28px;
            font-family: 'Roboto', sans-serif;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.5px;
            text-decoration: none;
            border-radius: var(--r-pill);
            border: 0;
            cursor: pointer;
            transition: transform 0.3s var(--ease-out), background 0.3s var(--ease-out), color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
            white-space: nowrap;
        }

        .btn--primary {
            background: var(--c-brown);
            color: #fff;
            box-shadow: 0 14px 30px -14px rgba(83, 67, 47, 0.5);
        }

        .btn--primary:hover {
            background: var(--c-gold);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 20px 36px -14px rgba(146, 121, 85, 0.55);
        }

        .btn--ghost {
            background: rgba(255, 255, 255, 0.6);
            border: 1px solid var(--c-divider);
            color: var(--c-brown);
            backdrop-filter: blur(6px);
        }

        .btn--ghost:hover {
            background: var(--c-paper);
            color: var(--c-brown);
            transform: translateY(-2px);
            box-shadow: var(--shadow-sm);
            text-decoration: none;
        }

        .btn .arrow {
            display: inline-block;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.18);
            position: relative;
            transition: background 0.3s, transform 0.4s var(--ease-out);
        }

        .btn--ghost .arrow {
            background: var(--c-brown-pale);
        }

        .btn .arrow::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            width: 6px;
            height: 6px;
            border-top: 1.5px solid currentColor;
            border-right: 1.5px solid currentColor;
            transform: translate(-65%, -50%) rotate(45deg);
        }

        .btn:hover .arrow { transform: translateX(3px); }

        /* === Section heading === */
        .section-heading {
            text-align: center;
            padding: 140px 0 60px;
            max-width: 720px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .section-heading .eyebrow {
            justify-content: center;
        }

        .section-heading h2 {
            font-family: 'Roboto', sans-serif;
            color: var(--c-navy);
            font-size: clamp(40px, 5.5vw, 72px);
            font-weight: 300;
            letter-spacing: -1.5px;
            margin: 0;
            line-height: 1.05;
        }

        .section-heading h2 em {
            font-style: normal;
            font-weight: inherit;
            color: inherit;
        }

        .section-heading p {
            margin: 20px auto 0;
            font-size: 17px;
            line-height: 1.7;
            color: var(--c-ink-soft);
            max-width: 560px;
        }

        /* === Projects === */
        .projects {
            padding: 20px 0 100px;
            position: relative;
        }

        .project {
            padding: 80px 0;
            position: relative;
        }

        .project-grid {
            display: grid;
            grid-template-columns: 7fr 5fr;
            gap: 80px;
            align-items: center;
        }

        .project--reverse .project-grid {
            grid-template-columns: 5fr 7fr;
        }

        .project--reverse .project-media { order: 2; }
        .project--reverse .project-info { order: 1; }

        .project-media {
            position: relative;
            border-radius: var(--r-xl);
            overflow: hidden;
            aspect-ratio: 5 / 4;
            box-shadow: var(--shadow-md);
            transition: box-shadow 0.6s var(--ease-out), transform 0.6s var(--ease-out);
            isolation: isolate;
        }

        .project-media::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 50%, rgba(42, 36, 24, 0.45) 100%);
            opacity: 0;
            transition: opacity 0.6s var(--ease-out);
            z-index: 1;
        }

        .project-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1.4s var(--ease-out);
        }

        .project-media:hover { transform: translateY(-4px); }
        .project-media:hover img { transform: scale(1.06); }
        .project-media:hover::after { opacity: 1; }

        .project-badge {
            position: absolute;
            top: 22px;
            left: 22px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(10px);
            padding: 8px 16px;
            border-radius: var(--r-pill);
            font-family: 'Roboto', sans-serif;
            font-size: 11px;
            font-weight: 500;
            color: var(--c-brown);
            letter-spacing: 1px;
            z-index: 2;
            box-shadow: var(--shadow-xs);
        }

        .project-badge::before {
            content: "";
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--c-gold);
        }

        .project-info {
            position: relative;
            padding: 10px 0;
        }

        .project-info .eyebrow { margin-bottom: 16px; }

        .project-info h3 {
            color: var(--c-navy);
            font-family: 'Roboto', sans-serif;
            font-size: clamp(30px, 3.4vw, 48px);
            font-weight: 400;
            margin: 0 0 14px;
            line-height: 1.05;
            letter-spacing: -0.8px;
            position: relative;
            z-index: 1;
        }

        .project-info h3 em {
            font-style: normal;
            font-weight: inherit;
            color: inherit;
        }

        .project-tagline {
            color: var(--c-brown);
            font-style: normal;
            font-size: 20px;
            font-weight: 300;
            margin: 0 0 26px;
            letter-spacing: 0.2px;
        }

        .project-lead {
            color: var(--c-ink);
            font-size: 19px;
            line-height: 1.55;
            font-weight: 400;
            margin: 0 0 22px;
            font-family: 'Roboto', sans-serif;
        }

        .project-desc {
            font-size: 15px;
            line-height: 1.8;
            color: var(--c-ink-soft);
            margin: 0 0 32px;
        }

        /* === Contacts === */
        .contacts-section {
            background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-bg-warm) 50%, var(--c-bg) 100%);
            padding: 0 0 100px;
            position: relative;
            overflow: hidden;
        }

        .contacts-section .blob-c {
            top: 20%;
            right: -200px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(146, 121, 85, 0.18), transparent 70%);
        }

        .contacts-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            padding: 30px 0 60px;
            position: relative;
            z-index: 1;
        }

        .contact-card {
            background: var(--c-paper);
            padding: 36px 28px;
            border-radius: var(--r-lg);
            box-shadow: var(--shadow-sm);
            transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
            position: relative;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.8);
        }

        .contact-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-md);
        }

        .contact-card-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 96px;
            margin-bottom: 22px;
            background: var(--c-bg-warm);
            border-radius: var(--r-md);
            padding: 14px;
            transition: background 0.4s var(--ease-out);
        }

        .contact-card:hover .contact-card-logo { background: var(--c-brown-light); }

        .contact-card-logo img {
            max-height: 70px;
            max-width: 160px;
            width: auto;
            object-fit: contain;
        }

        .contact-card h4 {
            color: var(--c-navy);
            font-family: 'Roboto', sans-serif;
            font-size: 17px;
            font-weight: 600;
            margin: 0 0 18px;
            line-height: 1.3;
        }

        .contact-card .card-divider {
            width: 32px;
            height: 2px;
            background: var(--c-gold);
            border-radius: 2px;
            margin: 0 auto 18px;
        }

        .contact-card p {
            font-size: 14px;
            line-height: 1.6;
            margin: 8px 0;
            color: var(--c-ink-soft);
        }

        .contact-card a {
            color: var(--c-brown-dark);
            font-weight: 500;
            transition: color 0.3s;
        }
        .contact-card a:hover { color: var(--c-gold); }

        /* === Footer === */
        .site-footer {
            background: var(--c-brown);
            color: rgba(255, 255, 255, 0.7);
            margin: 30px;
            border-radius: var(--r-lg);
            padding: 50px 50px;
            position: relative;
            overflow: hidden;
        }

        .site-footer::before {
            content: "";
            position: absolute;
            top: -180px;
            right: -100px;
            width: 360px;
            height: 360px;
            background: radial-gradient(circle, rgba(146, 121, 85, 0.45), transparent 70%);
            filter: blur(60px);
            border-radius: 50%;
        }

        .footer-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 24px;
            font-family: 'Roboto', sans-serif;
            font-size: 13px;
            position: relative;
            z-index: 1;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 14px;
            color: #fff;
            font-weight: 500;
        }

        .footer-brand-mark {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--c-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 18px;
            font-weight: 500;
        }

        .footer-inner a {
            color: var(--c-brown-light);
            border-bottom: 1px solid transparent;
            transition: color 0.3s, border-color 0.3s;
        }
        .footer-inner a:hover {
            color: #fff;
            border-bottom-color: var(--c-gold);
        }

        /* === Reveal === */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
        }

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

        .reveal-stagger > * {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
        }

        .reveal-stagger.is-visible > * {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
        .reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.15s; }
        .reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.25s; }
        .reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.35s; }
        .reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.45s; }
        .reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.55s; }
        .reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 0.65s; }

        /* === Responsive === */
        @media (max-width: 1024px) {
            .hero-grid,
            .project-grid,
            .project--reverse .project-grid {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .project--reverse .project-media { order: 1; }
            .project--reverse .project-info { order: 2; }

            .project { padding: 50px 0; }
            .section-heading { padding: 100px 0 40px; }

            .hero { padding: 140px 0 80px; }
            .hero-photo { max-width: 520px; margin: 0 auto; aspect-ratio: 4/5; }

            .contacts-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 720px) {
            .container { padding: 0 20px; }

            .site-header { top: 12px; width: calc(100% - 24px); }
            .header-inner { padding: 8px 8px 8px 18px; }

            .header-cta { display: none; }
            .main-nav { display: none; }

            .nav-toggle { display: block; }

            .main-nav.is-open {
                display: block;
                position: absolute;
                left: 0;
                right: 0;
                top: calc(100% + 12px);
                background: var(--c-paper);
                padding: 24px;
                border-radius: var(--r-md);
                box-shadow: var(--shadow-md);
            }

            .main-nav.is-open ul {
                flex-direction: column;
                gap: 16px;
                align-items: flex-start;
            }

            .site-logo img { height: 38px; }

            .contacts-grid { grid-template-columns: 1fr; }

            .site-footer { margin: 20px; padding: 36px 28px; }
            .footer-inner { justify-content: center; text-align: center; flex-direction: column; }

            .hero-title { letter-spacing: -1px; }
        }

        @media (prefers-reduced-motion: reduce) {
            * { animation: none !important; transition: none !important; }
            .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
        }
    