        /* ==============================
           STICKY HEADER & NAVIGATION
        ============================== */
        .sticky-logo-btn {
            position: fixed;
            top: 22px;
            left: 50%;
            transform: translateX(-50%) translateY(-70px);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            cursor: pointer;
            background: rgba(8, 21, 42, 0.80);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: 1px solid rgba(212, 175, 55, 0.22);
            border-radius: 50px;
            padding: 7px 10px;
            opacity: 0;
            transition:
                transform 0.55s cubic-bezier(0.34, 1.36, 0.64, 1),
                opacity 0.40s ease,
                border-color 0.36s ease,
                box-shadow 0.36s ease;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.40);
        }

        .sticky-logo-btn.visible {
            transform: translateX(-50%) translateY(0);
            opacity: 1;
        }

        .sticky-logo-btn:hover {
            border-color: rgba(212, 175, 55, 0.58);
            box-shadow: 0 6px 40px rgba(212, 175, 55, 0.18), 0 4px 28px rgba(0, 0, 0, 0.42);
        }

        .sticky-logo-btn img {
            height: 34px;
            width: auto;
            object-fit: contain;
            display: block;
            filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.28));
            transition: filter 0.36s ease;
        }

        .sticky-logo-btn:hover img {
            filter: drop-shadow(0 0 14px rgba(212, 175, 55, 0.60));
        }

        /* Mobile Menu Toggle button */
        .hero-mobile-toggle {
            position: fixed;
            top: 34px;
            left: 24px;
            z-index: 10001;
            width: 36px;
            height: 28px;
            padding: 0;
            border: 0;
            background: transparent;
            cursor: pointer;
            color: var(--white);
            opacity: 0.84;
            -webkit-tap-highlight-color: transparent;
            transition: opacity 0.3s ease, transform 0.3s ease;
            display: none;
        }

        .hero-mobile-toggle:hover {
            opacity: 1;
            transform: translateY(-1px);
        }

        .hero-mobile-toggle-core {
            position: relative;
            display: block;
            width: 100%;
            height: 100%;
        }

        .hero-mobile-toggle-core::before {
            content: '';
            position: absolute;
            left: 0;
            top: 2px;
            bottom: 2px;
            width: 1px;
            background: rgba(255, 255, 255, 0.24);
            opacity: 0;
            transform: scaleY(0.35);
            transform-origin: top center;
            transition: opacity 0.24s ease, transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .hero-mobile-line {
            position: absolute;
            left: 8px;
            height: 1px;
            background: rgba(255, 255, 255, 0.9);
            transform-origin: left center;
            transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), width 0.34s ease, opacity 0.22s ease;
        }

        .hero-mobile-line-top {
            top: 3px;
            width: 28px;
        }

        .hero-mobile-line-mid {
            top: 13px;
            width: 16px;
        }

        .hero-mobile-line-bot {
            top: 23px;
            width: 22px;
        }

        .hero-mobile-toggle[aria-expanded="true"] .hero-mobile-toggle-core::before {
            opacity: 1;
            transform: scaleY(1);
        }

        .hero-mobile-toggle[aria-expanded="true"] .hero-mobile-line-top {
            width: 28px;
            transform: translateY(10px) rotate(38deg);
        }

        .hero-mobile-toggle[aria-expanded="true"] .hero-mobile-line-mid {
            opacity: 0;
            transform: translateX(-8px);
        }

        .hero-mobile-toggle[aria-expanded="true"] .hero-mobile-line-bot {
            width: 28px;
            transform: translateY(-10px) rotate(-38deg);
        }

        /* Mobile Navigation Panel Overlay */
        .hero-mobile-nav {
            position: fixed;
            inset: 0;
            z-index: 10000;
            pointer-events: none;
            display: none;
        }

        .hero-mobile-nav-backdrop {
            position: absolute;
            inset: 0;
            border: 0;
            background: linear-gradient(90deg, rgba(3, 7, 18, 0.88) 0%, rgba(3, 7, 18, 0.62) 28%, rgba(3, 7, 18, 0.18) 54%, rgba(3, 7, 18, 0) 76%);
            opacity: 0;
            cursor: pointer;
            transition: opacity 0.28s ease;
        }

        .hero-mobile-nav-panel {
            position: fixed;
            top: 96px;
            left: 24px;
            display: flex;
            flex-direction: column;
            gap: 18px;
            padding-left: 18px;
            max-width: calc(100vw - 48px);
            transform: translateX(-18px);
            opacity: 0;
            transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.24s ease;
        }

        .hero-mobile-nav-panel::before {
            content: '';
            position: absolute;
            left: 0;
            top: 2px;
            bottom: 2px;
            width: 1px;
            background: linear-gradient(to bottom, rgba(212, 175, 55, 0.72) 0%, rgba(212, 175, 55, 0.24) 62%, transparent 100%);
        }

        .hero-mobile-nav.is-open {
            pointer-events: auto;
        }

        .hero-mobile-nav.is-open .hero-mobile-nav-backdrop {
            opacity: 1;
        }

        .hero-mobile-nav.is-open .hero-mobile-nav-panel {
            transform: translateX(0);
            opacity: 1;
        }

        .hero-mobile-nav-links {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .hero-mobile-link {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            width: fit-content;
            text-decoration: none;
            opacity: 0;
            transform: translateX(-10px);
            transition: opacity 0.22s ease, transform 0.36s cubic-bezier(0.22, 1, 0.36, 1), color 0.32s ease;
        }

        .hero-mobile-link::before {
            content: '';
            display: block;
            width: 18px;
            height: 1px;
            background: rgba(212, 175, 55, 0.50);
            flex-shrink: 0;
            transition: width 0.36s ease, background 0.36s ease;
        }

        .hero-mobile-link span {
            font-family: 'Jost', sans-serif;
            font-size: 13px;
            font-weight: 400;
            letter-spacing: 0.26em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.52);
            white-space: nowrap;
            transition: color 0.32s ease, letter-spacing 0.36s ease;
        }

        .hero-mobile-nav.is-open .hero-mobile-link {
            opacity: 1;
            transform: translateX(0);
        }

        .hero-mobile-nav.is-open .hero-mobile-link:nth-child(1) {
            transition-delay: 0.03s;
        }

        .hero-mobile-nav.is-open .hero-mobile-link:nth-child(2) {
            transition-delay: 0.08s;
        }

        .hero-mobile-nav.is-open .hero-mobile-link:nth-child(3) {
            transition-delay: 0.13s;
        }

        .hero-mobile-nav.is-open .hero-mobile-link:nth-child(4) {
            transition-delay: 0.18s;
        }

        .hero-mobile-nav.is-open .hero-mobile-link:nth-child(5) {
            transition-delay: 0.23s;
        }

        .hero-mobile-link:hover::before,
        .hero-mobile-link:focus-visible::before {
            width: 30px;
            background: #D4AF37;
        }

        .hero-mobile-link:hover span,
        .hero-mobile-link:focus-visible span {
            color: rgba(212, 175, 55, 0.95);
            letter-spacing: 0.38em;
        }

        /* Desktop Left Navigation menu */
        .hero-nav {
            position: absolute;
            left: 46px;
            top: 0;
            z-index: 10;
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .h-nav-item {
            position: absolute;
            left: 0;
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            cursor: pointer;
            animation: navSlideIn 0.8s cubic-bezier(0.34, 1.28, 0.64, 1) both;
        }

        .h-nav-item::before {
            content: '';
            display: block;
            width: 18px;
            height: 1px;
            background: rgba(212, 175, 55, 0.50);
            flex-shrink: 0;
            transition: width 0.36s ease, background 0.36s ease;
        }

        .h-nav-item:hover::before {
            width: 30px;
            background: #D4AF37;
        }

        .h-nav-item span {
            font-family: 'Jost', sans-serif;
            font-size: 13px;
            font-weight: 400;
            letter-spacing: 0.26em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.52);
            transition: color 0.32s ease, letter-spacing 0.36s ease;
            white-space: nowrap;
        }

        .h-nav-item:hover span {
            color: rgba(212, 175, 55, 0.95);
            letter-spacing: 0.38em;
        }

        @keyframes navSlideIn {
            from {
                opacity: 0;
                transform: translateX(-28px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .h-nav-item:nth-child(1) {
            top: 110px;
            animation-delay: 0.55s;
        }

        .h-nav-item:nth-child(2) {
            top: 162px;
            animation-delay: 0.68s;
        }

        .h-nav-item:nth-child(3) {
            top: 214px;
            animation-delay: 0.81s;
        }

        .h-nav-item:nth-child(4) {
            top: 266px;
            animation-delay: 0.94s;
        }

        .h-nav-item:nth-child(5) {
            top: 318px;
            animation-delay: 1.07s;
        }

        /* Social Media Rail */
        .hero-social-rail {
            position: absolute;
            top: 50%;
            right: 0;
            z-index: 11;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 18px;
            transform: translateY(-50%);
            animation: socialRailEntry 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.95s both;
        }

        @keyframes socialRailEntry {
            from {
                opacity: 0;
                transform: translate(18px, -50%);
            }

            to {
                opacity: 1;
                transform: translate(0, -50%);
            }
        }

        .hero-social-tab {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 58px;
            width: 24px;
            color: #ffffff;
            text-decoration: none;
            clip-path: polygon(10px 0, 100% 0, 100% 100%, 10px 100%, 0 calc(100% - 10px), 0 10px);
            border-radius: 0;
            background: linear-gradient(180deg, rgba(116, 122, 130, 0.78), rgba(90, 96, 104, 0.88));
            box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
            opacity: 0.76;
            filter: saturate(0.48) brightness(0.84);
            transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease, box-shadow 0.34s ease, filter 0.34s ease;
        }

        .hero-social-tab::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--social-hover);
            opacity: 0;
            transition: opacity 0.34s ease;
            z-index: 0;
        }

        .hero-social-tab::after {
            content: '';
            position: absolute;
            inset: 1px 0 1px 1px;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 54%);
            pointer-events: none;
            opacity: 0.2;
            z-index: 1;
        }

        .hero-social-tab:hover,
        .hero-social-tab:focus-visible {
            transform: translateX(-4px);
            box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
            opacity: 1;
            filter: saturate(1) brightness(1.03);
        }

        .hero-social-tab:hover::before,
        .hero-social-tab:focus-visible::before {
            opacity: 1;
        }

        .hero-social-tab svg {
            width: 13px;
            height: 13px;
            fill: currentColor;
            position: relative;
            z-index: 2;
        }

        .hero-social-tab.is-facebook {
            --social-hover: #1877F2;
        }

        .hero-social-tab.is-facebook svg {
            width: 12px;
            height: 12px;
        }

        .hero-social-tab.is-instagram {
            --social-hover: linear-gradient(135deg, #F58529 0%, #FEDA77 20%, #DD2A7B 52%, #8134AF 76%, #515BD4 100%);
        }

        .hero-social-tab.is-instagram svg {
            width: 11px;
            height: 11px;
        }

        .hero-social-tab.is-linkedin {
            --social-hover: #0A66C2;
        }

        .hero-social-tab.is-linkedin svg {
            width: 10.5px;
            height: 10.5px;
        }

        @media (max-width: 1140px) {
            .hero-nav {
                left: 20px;
            }

            .hero-social-rail {
                transform: translateY(-50%) scale(0.92);
                transform-origin: right center;
            }
        }

        @media (max-width: 700px) {
            .hero-mobile-toggle {
                display: inline-flex;
            }

            .hero-mobile-nav {
                display: block;
            }

            .hero-nav {
                display: none;
            }

            .hero-social-rail {
                top: 47%;
                gap: 12px;
                transform: translateY(-50%);
            }

            .hero-social-tab {
                height: 46px;
                width: 20px;
                clip-path: polygon(8px 0, 100% 0, 100% 100%, 8px 100%, 0 calc(100% - 8px), 0 8px);
                opacity: 0.8;
            }

            .hero-social-tab svg {
                width: 11px;
                height: 11px;
            }
        }

        /* ==============================
           PAGE HERO
        ============================== */
        .pg-hero {
            position: sticky;
            top: 0;
            z-index: 1;
            width: 100%;
            height: 50vh;
            min-height: 300px;
            overflow: hidden;
            background: var(--navy);
            display: flex;
            align-items: flex-end;
            justify-content: center;
        }

        .pg-content-wrap {
            position: relative;
            z-index: 10;
            background: var(--navy);
            width: 100%;
        }

        .pg-hero-bg {
            position: absolute;
            inset: 0;
            background-image: url('../contact-bg.jpg');
            background-size: cover;
            background-position: center 30%;
            transform: scale(1.06);
            animation: pgHeroKenBurns 18s ease-in-out infinite alternate;
        }

        @keyframes pgHeroKenBurns {
            from {
                transform: scale(1.06) translateX(-1%);
            }

            to {
                transform: scale(1.00) translateX(1%);
            }
        }

        .pg-hero-vignette {
            position: absolute;
            inset: 0;
            z-index: 2;
            pointer-events: none;
            background:
                linear-gradient(to top, rgba(4, 9, 28, 0.98) 0%, rgba(4, 9, 28, 0.72) 28%, rgba(4, 9, 28, 0.18) 58%, transparent 76%),
                linear-gradient(to right, rgba(4, 9, 28, 0.78) 0%, rgba(4, 9, 28, 0.32) 22%, transparent 46%),
                linear-gradient(to bottom, rgba(4, 9, 28, 0.72) 0%, transparent 28%);
        }

        .pg-hero-diag {
            position: absolute;
            inset: 0;
            z-index: 3;
            pointer-events: none;
            overflow: hidden;
        }

        .pg-hero-diag::before {
            content: '';
            position: absolute;
            top: 0;
            left: -20%;
            width: 1px;
            height: 140%;
            background: linear-gradient(to bottom, transparent 0%, rgba(212, 175, 55, 0.18) 30%, rgba(212, 175, 55, 0.45) 52%, rgba(212, 175, 55, 0.18) 70%, transparent 100%);
            transform: rotate(-24deg);
            transform-origin: top left;
            animation: diagDrift 12s ease-in-out infinite alternate;
        }

        @keyframes diagDrift {
            from {
                left: -20%;
                opacity: 0.5;
            }

            to {
                left: -8%;
                opacity: 1;
            }
        }

        .pg-hero-grain {
            position: absolute;
            inset: 0;
            z-index: 4;
            pointer-events: none;
            opacity: 0.032;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
            background-size: 256px 256px;
        }

        .pg-hero-dust {
            position: absolute;
            inset: 0;
            z-index: 5;
            pointer-events: none;
            overflow: hidden;
        }

        .ph-dust-p {
            position: absolute;
            border-radius: 50%;
            background: rgba(212, 175, 55, 0.55);
            animation: phDustFloat linear infinite;
        }

        @keyframes phDustFloat {
            0% {
                transform: translateY(100vh) translateX(0px);
                opacity: 0;
            }

            10% {
                opacity: 1;
            }

            90% {
                opacity: 0.5;
            }

            100% {
                transform: translateY(-12vh) translateX(var(--drift, 20px));
                opacity: 0;
            }
        }

        .pg-hero-copy {
            position: relative;
            z-index: 10;
            padding: 0 120px 50px;
            max-width: 860px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .pg-hero-eyebrow {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            font-family: 'Jost', sans-serif;
            font-size: 9px;
            font-weight: 500;
            letter-spacing: 0.48em;
            text-transform: uppercase;
            color: var(--cyan);
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(14px);
            animation: fadeUpIn 0.8s ease 0.4s both;
        }

        .pg-hero-eyebrow::before,
        .pg-hero-eyebrow::after {
            content: '';
            width: 24px;
            height: 1px;
            background: var(--cyan);
            flex-shrink: 0;
        }

        .pg-hero-breadcrumb {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-bottom: 32px;
            opacity: 0;
            animation: fadeUpIn 0.7s ease 0.6s both;
        }

        .pg-hero-breadcrumb a,
        .pg-hero-breadcrumb span {
            font-family: 'Jost', sans-serif;
            font-size: 10px;
            font-weight: 300;
            letter-spacing: 0.24em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.30);
            text-decoration: none;
            transition: color 0.28s ease;
        }

        .pg-hero-breadcrumb a:hover {
            color: rgba(212, 175, 55, 0.70);
        }

        .pg-hero-breadcrumb .sep {
            font-size: 8px;
            color: rgba(212, 175, 55, 0.28);
        }

        .pg-hero-breadcrumb .current {
            color: rgba(212, 175, 55, 0.55);
        }

        .pg-hero-title {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            font-size: clamp(4.2rem, 9vw, 12rem);
            line-height: 0.86;
            letter-spacing: -0.03em;
            background: linear-gradient(148deg, #ffffff 0%, #f5f5f0 22%, #eed99a 50%, #D4AF37 74%, #9a7218 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 12px;
            text-align: center;
            opacity: 0;
            transform: translateY(36px);
            animation: fadeUpIn 1.0s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
        }

        .pg-hero-sub {
            font-family: 'Cormorant Garamond', serif;
            font-style: italic;
            font-weight: 300;
            font-size: clamp(1.1rem, 2vw, 2.2rem);
            color: rgba(255, 255, 255, 0.38);
            letter-spacing: 0.06em;
            margin-bottom: 32px;
            text-align: center;
            opacity: 0;
            transform: translateY(18px);
            animation: fadeUpIn 0.8s ease 1.0s both;
        }

        .pg-hero-desc {
            font-family: 'Jost', sans-serif;
            font-size: 0.85rem;
            font-weight: 300;
            line-height: 1.82;
            color: rgba(255, 255, 255, 0.46);
            max-width: 480px;
            margin-inline: auto;
            text-align: center;
            opacity: 0;
            transform: translateY(16px);
            animation: fadeUpIn 0.8s ease 1.2s both;
        }

        @media (max-width: 900px) {
            .pg-hero-copy {
                padding: 0 28px 60px;
            }
        }

        @media (max-width: 540px) {
            .pg-hero-copy {
                padding: 0 20px 65px;
            }
        }

        /* ==============================
           UTILITY KEYFRAMES & REVEALS
        ============================== */
        @keyframes fadeUpIn {
            from {
                opacity: 0;
                transform: translateY(18px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .sv-reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .sv-reveal.vis {
            opacity: 1;
            transform: translateY(0);
        }

        .sv-reveal-left {
            opacity: 0;
            transform: translateX(-32px);
            transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .sv-reveal-left.vis {
            opacity: 1;
            transform: translateX(0);
        }

        .sv-reveal-right {
            opacity: 0;
            transform: translateX(32px);
            transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .sv-reveal-right.vis {
            opacity: 1;
            transform: translateX(0);
        }

        /* ==============================
           CONTACT GRID LAYOUT
        ============================== */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.25fr;
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 110px 46px 80px;
        }

        .contact-sec-heading {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.1rem;
            font-weight: 500;
            letter-spacing: -0.01em;
            color: var(--white);
            margin-bottom: 32px;
            text-transform: capitalize;
        }

        .contact-sec-heading::after {
            content: '';
            display: block;
            width: 40px;
            height: 1px;
            background: var(--gold);
            margin-top: 10px;
        }

        .contact-sec-heading.centered::after {
            margin-left: auto;
            margin-right: auto;
        }

        /* Cards and Info */
        .contact-info-card {
            background: rgba(255, 255, 255, 0.012);
            border: 1px solid rgba(212, 175, 55, 0.12);
            padding: 44px 38px;
            margin-bottom: 30px;
            clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02), 0 30px 60px rgba(0, 0, 0, 0.20);
            position: relative;
            overflow: hidden;
            transition: border-color 0.35s ease, transform 0.35s ease, background-color 0.35s ease;
        }

        .contact-info-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.18) 50%, transparent 100%);
        }

        .contact-info-card:hover {
            border-color: rgba(212, 175, 55, 0.38);
            background: rgba(255, 255, 255, 0.024);
            transform: translateY(-4px);
        }

        .contact-card-kicker {
            font-family: 'Jost', sans-serif;
            font-size: 8.5px;
            font-weight: 500;
            letter-spacing: 0.36em;
            text-transform: uppercase;
            color: var(--gold);
            display: block;
            margin-bottom: 24px;
        }

        .contact-card-desc {
            font-family: 'Jost', sans-serif;
            font-size: 0.88rem;
            font-weight: 300;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.52);
            margin-bottom: 24px;
        }

        .contact-detail-items {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }

        .contact-detail-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .contact-item-icon {
            width: 36px;
            height: 36px;
            border: 1px solid rgba(212, 175, 55, 0.16);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 2px;
            transition: border-color 0.3s ease, background-color 0.3s ease;
            background: rgba(212, 175, 55, 0.02);
        }

        .contact-info-card:hover .contact-item-icon {
            border-color: rgba(212, 175, 55, 0.38);
            background: rgba(212, 175, 55, 0.05);
        }

        .contact-item-icon svg {
            width: 14px;
            height: 14px;
            stroke: rgba(212, 175, 55, 0.65);
            stroke-width: 1.5;
            fill: none;
            transition: stroke 0.3s ease, transform 0.3s ease;
        }

        .contact-info-card:hover .contact-item-icon svg {
            stroke: rgba(212, 175, 55, 0.95);
            transform: scale(1.08);
        }

        .contact-item-content {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .contact-item-label {
            font-family: 'Jost', sans-serif;
            font-size: 8px;
            font-weight: 400;
            letter-spacing: 0.24em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.32);
        }

        .contact-item-link {
            font-family: 'Jost', sans-serif;
            font-size: 0.92rem;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.82);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-item-link:hover {
            color: var(--gold-lt);
        }

        .contact-item-text {
            font-family: 'Jost', sans-serif;
            font-style: normal;
            font-size: 0.92rem;
            font-weight: 300;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.82);
        }

        /* Regions & Team list */
        .region-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .region-badge {
            font-family: 'Jost', sans-serif;
            font-size: 9px;
            font-weight: 300;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.65);
            background: rgba(255, 255, 255, 0.015);
            border: 1px solid rgba(212, 175, 55, 0.12);
            padding: 6px 14px;
            transition: border-color 0.3s ease, color 0.3s ease, background-color 0.3s ease;
        }

        .region-badge:hover {
            border-color: rgba(212, 175, 55, 0.45);
            color: var(--gold-lt);
            background: rgba(212, 175, 55, 0.04);
        }

        .contact-team-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .contact-team-member {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .member-name {
            font-family: 'Jost', sans-serif;
            font-size: 13px;
            font-weight: 400;
            letter-spacing: 0.05em;
            color: rgba(255, 255, 255, 0.9);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .member-name small {
            font-size: 9px;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--gold);
            font-weight: 300;
        }

        .contact-team-member a {
            font-family: 'Jost', sans-serif;
            font-size: 12px;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.52);
            text-decoration: none;
            transition: color 0.25s ease;
        }

        .contact-team-member a:hover {
            color: var(--gold);
        }

        /* ==============================
           PREMIUM CONTACT FORM
        ============================== */
        .form-wrapper-card {
            background: rgba(255, 255, 255, 0.012);
            border: 1px solid rgba(212, 175, 55, 0.12);
            padding: 48px;
            clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02), 0 30px 60px rgba(0, 0, 0, 0.20);
            position: relative;
            overflow: hidden;
        }

        .form-wrapper-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.18) 50%, transparent 100%);
        }

        .form-instructions {
            font-family: 'Jost', sans-serif;
            font-size: 0.88rem;
            font-weight: 300;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.46);
            margin-bottom: 40px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
        }

        @media (max-width: 560px) {
            .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }
        }

        .form-group {
            position: relative;
            margin-bottom: 36px;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            background: rgba(255, 255, 255, 0.015);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 18px 20px;
            font-family: 'Jost', sans-serif;
            font-size: 0.9rem;
            font-weight: 300;
            color: var(--white);
            border-radius: 0;
            outline: none;
            transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
            clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
        }

        .form-group textarea {
            resize: vertical;
            min-height: 130px;
        }

        .form-group select {
            appearance: none;
            -webkit-appearance: none;
            cursor: pointer;
        }

        .form-group select option {
            background-color: var(--navy-mid);
            color: var(--white);
        }

        /* Autofill / Autocomplete overrides to keep text visible */
        .form-group input:-webkit-autofill,
        .form-group input:-webkit-autofill:hover, 
        .form-group input:-webkit-autofill:focus,
        .form-group textarea:-webkit-autofill,
        .form-group textarea:-webkit-autofill:hover,
        .form-group textarea:-webkit-autofill:focus,
        .form-group select:-webkit-autofill,
        .form-group select:-webkit-autofill:hover,
        .form-group select:-webkit-autofill:focus {
            -webkit-text-fill-color: var(--white) !important;
            -webkit-box-shadow: 0 0 0px 1000px #081026 inset !important;
            transition: background-color 5000s ease-in-out 0s;
        }

        /* Float labels on browser autofill state */
        .form-group input:-webkit-autofill~label,
        .form-group textarea:-webkit-autofill~label,
        .form-group select:-webkit-autofill~label {
            transform: translateY(-28px) scale(0.85) !important;
            color: var(--gold-lt) !important;
        }

        .form-group label {
            position: absolute;
            left: 20px;
            top: 19px;
            font-family: 'Jost', sans-serif;
            font-size: 0.88rem;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.35);
            pointer-events: none;
            transition: transform 0.3s ease, font-size 0.3s ease, color 0.3s ease;
            transform-origin: left top;
        }

        .form-group input:focus~label,
        .form-group input:not(:placeholder-shown)~label,
        .form-group textarea:focus~label,
        .form-group textarea:not(:placeholder-shown)~label {
            transform: translateY(-28px) scale(0.85);
            color: var(--gold-lt);
        }

        .form-group select:focus~label,
        .form-group select.has-value~label {
            transform: translateY(-28px) scale(0.85);
            color: var(--gold-lt);
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: rgba(212, 175, 55, 0.4);
            background: rgba(255, 255, 255, 0.03);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }

        .focus-border {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1.5px;
            background: var(--gold);
            transition: width 0.3s ease;
            z-index: 2;
        }

        .form-group input:focus~.focus-border,
        .form-group textarea:focus~.focus-border,
        .form-group select:focus~.focus-border {
            width: 100%;
        }

        .select-wrapper {
            position: relative;
        }

        .select-wrapper::after {
            content: '';
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-left: 5px solid transparent;
            border-right: 5px solid transparent;
            border-top: 5px solid rgba(255, 255, 255, 0.38);
            pointer-events: none;
            transition: border-top-color 0.3s ease;
        }

        .form-group select:focus~.select-wrapper::after {
            border-top-color: var(--gold);
        }

        /* Form validation styles */
        .form-group.has-error input,
        .form-group.has-error textarea,
        .form-group.has-error select {
            border-color: rgba(255, 77, 77, 0.5);
            background: rgba(255, 77, 77, 0.015);
        }

        .form-group.has-error label {
            color: rgba(255, 77, 77, 0.8);
        }

        .form-group.has-error .focus-border {
            background: #ff4d4d;
        }

        .form-error-msg {
            position: absolute;
            left: 4px;
            bottom: -20px;
            font-family: 'Jost', sans-serif;
            font-size: 10px;
            color: #ff4d4d;
            font-weight: 300;
            letter-spacing: 0.04em;
            opacity: 0;
            transform: translateY(-4px);
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .form-group.has-error .form-error-msg {
            opacity: 1;
            transform: translateY(0);
        }

        /* Buttons styles (from services.html) */
        .svc-btn-primary {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            text-decoration: none;
            font-family: 'Jost', sans-serif;
            font-size: 9.5px;
            font-weight: 600;
            letter-spacing: 0.36em;
            text-transform: uppercase;
            color: var(--navy);
            background: linear-gradient(135deg, var(--gold-lt) 0%, var(--gold) 50%, var(--gold-dk) 100%);
            padding: 13px 24px;
            clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
            transition: background 0.30s ease, transform 0.2s ease, box-shadow 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.25);
        }

        .svc-btn-primary:hover {
            background: linear-gradient(135deg, #ffffff 0%, var(--gold-lt) 40%, var(--gold) 100%);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
        }

        .svc-btn-primary:active {
            transform: translateY(1px);
        }

        .svc-btn-primary svg {
            width: 13px;
            height: 13px;
            stroke: var(--navy);
            stroke-width: 1.6;
            fill: none;
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .svc-btn-primary:hover svg {
            transform: translateX(2px) scale(1.05);
        }

        .svc-btn-ghost {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            text-decoration: none;
            font-family: 'Jost', sans-serif;
            font-size: 9.5px;
            font-weight: 500;
            letter-spacing: 0.36em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.85);
            border: 1px solid rgba(212, 175, 55, 0.32);
            padding: 12px 24px;
            clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
            transition: border-color 0.30s ease, color 0.30s ease, background 0.30s ease, transform 0.2s ease, box-shadow 0.30s ease;
            background: rgba(255, 255, 255, 0.02);
            cursor: pointer;
        }

        .svc-btn-ghost:hover {
            border-color: rgba(212, 175, 55, 0.75);
            color: var(--gold-lt);
            background: rgba(212, 175, 55, 0.06);
            box-shadow: 0 4px 20px rgba(212, 175, 55, 0.12);
        }

        .svc-btn-ghost:active {
            transform: translateY(1px);
        }

        .svc-btn-ghost svg {
            width: 13px;
            height: 13px;
            stroke: rgba(212, 175, 55, 0.75);
            stroke-width: 1.6;
            fill: none;
            flex-shrink: 0;
            transition: stroke 0.3s ease, transform 0.3s ease;
        }

        .svc-btn-ghost:hover svg {
            stroke: var(--gold-lt);
            transform: scale(1.08);
        }

        .form-submit-btn {
            width: fit-content;
            min-width: 200px;
            padding: 14px 28px;
            margin-top: 10px;
            margin-inline: 0 auto;
        }

        @media (max-width: 560px) {
            .form-submit-btn {
                width: 100%;
                margin-inline: 0;
            }
        }

        /* Success Message Panel */
        .contact-success-card {
            display: none;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 30px 10px;
        }

        .contact-success-card.active {
            display: flex;
            animation: fadeInSuccess 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        @keyframes fadeInSuccess {
            from {
                opacity: 0;
                transform: translateY(12px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .success-icon-wrap {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            border: 1px solid var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(212, 175, 55, 0.04);
            margin-bottom: 28px;
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
        }

        .success-icon-wrap svg {
            width: 26px;
            height: 26px;
            stroke: var(--gold);
            stroke-width: 2;
            fill: none;
        }

        .contact-success-card h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.2rem;
            font-weight: 500;
            color: var(--white);
            margin-bottom: 16px;
        }

        .success-accent {
            font-family: 'Jost', sans-serif;
            font-size: 0.95rem;
            font-weight: 400;
            color: var(--gold-lt);
            letter-spacing: 0.02em;
            line-height: 1.6;
            margin-bottom: 16px;
            max-width: 420px;
        }

        .success-p-body {
            font-family: 'Jost', sans-serif;
            font-size: 0.88rem;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.52);
            line-height: 1.7;
            margin-bottom: 36px;
            max-width: 440px;
        }

        .contact-success-card .reset-btn {
            width: auto;
            min-width: 220px;
        }

        /* ==============================
           GOOGLE MAPS SECTION
        ============================== */
        .contact-map-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 46px 120px;
        }

        .contact-map-inner {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .contact-map-desc {
            font-family: 'Jost', sans-serif;
            font-size: 0.88rem;
            font-weight: 300;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.46);
            text-align: center;
            max-width: 520px;
            margin-bottom: 40px;
        }

        .map-wrapper {
            width: 100%;
            max-width: 960px;
            height: 380px;
            clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
            border: 1px solid rgba(212, 175, 55, 0.16);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
            overflow: hidden;
            margin-bottom: 32px;
            margin-inline: auto;
        }

        .map-wrapper iframe {
            width: 100%;
            height: 100%;
            filter: grayscale(1) invert(0.92) contrast(1.1) brightness(0.9);
            transition: filter 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .map-wrapper:hover iframe {
            filter: grayscale(0.15) invert(0) contrast(1.05) brightness(1.02);
        }

        .map-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            justify-content: center;
            width: 100%;
        }

        .map-actions .svc-btn-primary,
        .map-actions .svc-btn-ghost {
            min-width: 160px;
            padding: 12px 24px;
            font-size: 9px;
            letter-spacing: 0.28em;
        }

        @media (max-width: 768px) {
            .contact-map-section {
                padding: 0 24px 80px;
            }
            .map-wrapper {
                height: 280px;
            }
            .map-actions .svc-btn-primary,
            .map-actions .svc-btn-ghost {
                width: 100%;
                min-width: 0;
            }
        }

