
        :root {
            --gold: #b8924a;
            --gold-light: #d4ac6a;
            --gold-pale: rgba(184, 146, 74, 0.06);
            --gold-glow: rgba(184, 146, 74, 0.12);
            --white: #ffffff;
            --ivory: #faf8f4;
            --cream: #f7f3eb;
            --charcoal: #1a1714;
            --ink: #2c2823;
            --smoke: #6b635b;
            --ash: #a0988f;
            --border: rgba(0, 0, 0, 0.06);
            --border-hover: rgba(184, 146, 74, 0.3);
            --shadow-xs: 0 1px 3px rgba(26, 23, 20, 0.04);
            --shadow-sm: 0 4px 16px rgba(26, 23, 20, 0.05);
            --shadow-md: 0 10px 36px rgba(26, 23, 20, 0.07);
            --shadow-lg: 0 18px 50px rgba(26, 23, 20, 0.09);
            --shadow-xl: 0 26px 64px rgba(26, 23, 20, 0.11);
            --font-serif: 'Cormorant Garamond', Georgia, serif;
            --font-sans: 'Inter', sans-serif;
            --font-cap: 'Cinzel', serif;
            --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html.lenis,
        html.lenis body {
            height: auto;
        }
        .lenis.lenis-smooth {
            scroll-behavior: auto !important;
        }
        .lenis.lenis-smooth [data-lenis-prevent] {
            overscroll-behavior: contain;
        }
        .lenis.lenis-stopped {
            overflow: hidden;
        }
        body {
            background-color: var(--white);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            font-family: var(--font-sans);
            color: var(--ink);
            font-weight: 400;
            line-height: 1.5;
        }

        /* ═══════════════ HERO BANNER ═══════════════ */
        .hero-contact {
            position: relative;
            height: 80vh;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
            background: #0a0806;
        }
        .hero-contact-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 45%;
            filter: brightness(0.55) saturate(0.9);
            transform: scale(1.02);
        }
        .hero-contact-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg,
                    rgba(10, 8, 6, 0.6) 0%,
                    rgba(10, 8, 6, 0.2) 40%,
                    rgba(10, 8, 6, 0.65) 100%);
            z-index: 1;
        }
        .hero-contact-content {
            position: relative;
            z-index: 2;
            max-width: 1000px;
            padding: 0 32px;
            animation: fadeUpHero 1.2s var(--ease-out-expo) both;
        }
        @keyframes fadeUpHero {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .hero-contact-eyebrow {
            font-family: var(--font-cap);
            font-size: 10px;
            letter-spacing: 5px;
            text-transform: uppercase;
            color: var(--gold);
            display: block;
            margin-bottom: 18px;
            font-weight: 500;
        }
        .hero-contact-title {
            font-family: var(--font-serif);
            font-size: clamp(48px, 8vw, 80px);
            font-weight: 400;
            color: #fff;
            letter-spacing: 4px;
            text-transform: uppercase;
            line-height: 1.08;
            margin-bottom: 20px;
            text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
        }
        .hero-contact-subtitle {
            font-family: var(--font-sans);
            font-size: clamp(14px, 2vw, 18px);
            font-weight: 300;
            color: rgba(255, 255, 255, 0.85);
            letter-spacing: 2px;
            max-width: 600px;
            margin: 0 auto;
        }

        /* ═══════════════ CONTACT SECTION ═══════════════ */
        .contact-section {
            padding: clamp(80px, 10vw, 130px) clamp(20px, 6vw, 48px);
            background: var(--white);
            position: relative;
        }
        .contact-container {
            max-width: 1280px;
            margin: 0 auto;
        }
        .section-header {
            text-align: center;
            margin-bottom: clamp(50px, 7vw, 80px);
        }
        .section-header .overline {
            font-family: var(--font-cap);
            font-size: 20px;
            letter-spacing: 5px;
            text-transform: uppercase;
            color: var(--gold);
            display: block;
            margin-bottom: 14px;
            font-weight: 500;
        }
        .section-title {
            font-family: var(--font-serif);
            font-size: clamp(36px, 5.5vw, 56px);
            font-weight: 400;
            color: var(--charcoal);
            letter-spacing: 1px;
            text-transform: uppercase;
            line-height: 1.1;
            margin-bottom: 12px;
        }
        .section-subtitle {
            font-family: var(--font-sans);
            font-size: 12px;
            color: var(--ash);
            letter-spacing: 3px;
            text-transform: uppercase;
            font-weight: 500;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: clamp(40px, 6vw, 70px);
            align-items: start;
        }

        /* ── FORM ── */
        .form-panel {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: clamp(36px, 5vw, 56px) clamp(28px, 4.5vw, 50px);
            box-shadow: var(--shadow-sm);
            transition: box-shadow 0.5s var(--ease-out-expo), border-color 0.5s var(--ease-out-expo);
            position: relative;
            overflow: hidden;
        }
        .form-panel::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 3px;
            height: 0;
            background: linear-gradient(180deg, var(--gold), var(--gold-light));
            transition: height 0.6s var(--ease-out-expo);
        }
        .form-panel:hover {
            box-shadow: var(--shadow-xl);
            border-color: var(--border-hover);
        }
        .form-panel:hover::before {
            height: 100%;
        }
        .form-title {
            font-family: var(--font-serif);
            font-size: 28px;
            font-weight: 500;
            color: var(--charcoal);
            margin-bottom: 6px;
        }
        .form-subtitle {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 2.5px;
            color: var(--ash);
            margin-bottom: 38px;
            font-weight: 500;
        }
        .input-group {
            position: relative;
            margin-bottom: 32px;
        }
        .input-group input,
        .input-group textarea {
            width: 100%;
            padding: 16px 0;
            font-size: 14px;
            font-family: var(--font-sans);
            color: var(--charcoal);
            background: transparent;
            border: none;
            border-bottom: 1.5px solid rgba(0, 0, 0, 0.1);
            outline: none;
            transition: border-color 0.35s;
            letter-spacing: 0.4px;
        }
        .input-group textarea {
            resize: vertical;
            min-height: 100px;
        }
        .input-group label {
            position: absolute;
            top: 16px;
            left: 0;
            font-size: 13px;
            color: var(--ash);
            pointer-events: none;
            transition: all 0.35s var(--ease-out-expo);
            font-weight: 400;
        }
        .input-group input:focus~label,
        .input-group input:valid~label,
        .input-group textarea:focus~label,
        .input-group textarea:valid~label {
            top: -18px;
            font-size: 10px;
            color: var(--gold);
            font-family: var(--font-cap);
            letter-spacing: 2px;
            font-weight: 600;
        }
        .input-group input:focus,
        .input-group textarea:focus {
            border-bottom-color: var(--gold);
        }
        .btn-contact {
            margin-top: 8px;
            padding: 17px 52px;
            background: var(--charcoal);
            border: none;
            color: #fff;
            font-family: var(--font-cap);
            font-size: 10px;
            letter-spacing: 3px;
            text-transform: uppercase;
            font-weight: 600;
            cursor: pointer;
            border-radius: 4px;
            transition: all 0.45s var(--ease-out-expo);
            display: inline-flex;
            align-items: center;
            gap: 12px;
        }
        .btn-contact:hover {
            background: var(--gold);
            box-shadow: 0 16px 40px rgba(184, 146, 74, 0.35);
            transform: translateY(-3px);
        }
        .btn-contact .arrow {
            font-size: 16px;
            transition: transform 0.4s var(--ease-out-expo);
        }
        .btn-contact:hover .arrow {
            transform: translateX(6px);
        }

        /* ── INFO CARDS ── */
        .info-panel {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }
        .premium-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 28px 30px;
            display: flex;
            align-items: flex-start;
            gap: 18px;
            box-shadow: var(--shadow-xs);
            transition: all 0.5s var(--ease-out-expo);
            position: relative;
            overflow: hidden;
        }
        .premium-card::after {
            content: '';
            position: absolute;
            inset: 0;
            border: 1px solid var(--gold);
            border-radius: 8px;
            opacity: 0;
            transition: opacity 0.5s var(--ease-out-expo);
            pointer-events: none;
        }
        .premium-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: var(--border-hover);
        }
        .premium-card:hover::after {
            opacity: 0.5;
        }
        .card-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--gold-pale);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            border: 1px solid rgba(184, 146, 74, 0.15);
            transition: all 0.5s var(--ease-out-expo);
        }
        .premium-card:hover .card-icon {
            background: var(--gold);
            border-color: var(--gold);
            box-shadow: 0 12px 30px rgba(184, 146, 74, 0.3);
            transform: scale(1.05);
        }
        .card-icon svg {
            width: 20px;
            height: 20px;
            stroke: var(--gold);
            fill: none;
            stroke-width: 1.5;
            transition: stroke 0.5s;
        }
        .premium-card:hover .card-icon svg {
            stroke: #fff;
        }
        .card-text h4 {
            font-family: var(--font-serif);
            font-size: 18px;
            font-weight: 500;
            color: var(--charcoal);
            margin-bottom: 2px;
            letter-spacing: 0.5px;
        }
        .card-text .card-label {
            font-family: var(--font-cap);
            font-size: 13px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            display: block;
            margin-bottom: 8px;
            font-weight: 900;
        }
        .card-text p,
        .card-text a {
            font-size: 13px;
            color: var(--smoke);
            line-height: 1.7;
            text-decoration: none;
            transition: color 0.3s;
        }
        .card-text a:hover {
            color: var(--gold);
        }

        /* ═══════════════ TRUST STRIP ═══════════════ */
        .trust-section {
            padding: 90px 20px 110px;
            background: var(--ivory);
            text-align: center;
        }
        .trust-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 24px;
            max-width: 1100px;
            margin: 0 auto;
        }
        .trust-card {
            background: #fff;
            padding: 36px 24px;
            border-radius: 8px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-xs);
            transition: all 0.4s var(--ease-out-expo);
        }
        .trust-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-md);
            border-color: var(--border-hover);
        }
        .trust-icon {
            display: inline-flex;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--gold-pale);
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            border: 1px solid rgba(184, 146, 74, 0.15);
            transition: all 0.4s var(--ease-out-expo);
        }
        .trust-card:hover .trust-icon {
            background: var(--gold);
            border-color: var(--gold);
            box-shadow: 0 10px 28px rgba(184, 146, 74, 0.25);
        }
        .trust-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--gold);
            fill: none;
            stroke-width: 1.6;
            transition: stroke 0.4s;
        }
        .trust-card:hover .trust-icon svg {
            stroke: #fff;
        }
        .trust-card h4 {
            font-family: var(--font-serif);
            font-size: 19px;
            font-weight: 500;
            color: var(--charcoal);
            margin-bottom: 8px;
        }
        .trust-card p {
            font-size: 13px;
            color: var(--smoke);
            line-height: 1.7;
        }

        /* ═══════════════ FOOTER ═══════════════ */
        .site-footer {
            background: #111;
            color: #999;
            padding: 50px 30px 30px;
            text-align: center;
            font-size: 11px;
            letter-spacing: 2px;
            font-family: var(--font-sans);
        }

        /* ═══════════════ REVEAL ═══════════════ */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ═══════════════ RESPONSIVE ═══════════════ */
        @media (max-width: 992px) {
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }
        @media (max-width: 768px) {
            .form-panel {
                padding: 32px 24px;
            }
            .btn-contact {
                width: 100%;
                justify-content: center;
            }
            .premium-card {
                padding: 22px 20px;
                gap: 14px;
            }
            .card-icon {
                width: 42px;
                height: 42px;
            }
            .card-icon svg {
                width: 17px;
                height: 17px;
            }
            .hero-contact-title {
                font-size: 36px;
            }
        }
        @media (max-width: 480px) {
            .contact-section {
                padding: 60px 14px;
            }
            .form-panel {
                padding: 24px 16px;
            }
            .premium-card {
                padding: 18px 14px;
            }
            .trust-section {
                padding: 60px 14px 80px;
            }
            .hero-contact-title {
                font-size: 28px;
            }
        }
    