        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --brown-deep: #1A0D0A;
            --brown-primary: #4A2218;
            --brown-copper: #A4572A;
            --brown-glow: #D88A52;
            --beige: #F4EEE7;
            --ivory: #EAE2D8;
            --text-muted: rgba(244, 238, 231, 0.45);
            --text-dim: rgba(244, 238, 231, 0.25);
        }

        html,
        body {
            width: 100%;
            height: 100%;
            overflow: hidden;
            cursor: none;
            font-family: 'Inter', sans-serif;
            background: var(--brown-deep);
        }

        @media (max-width: 768px) {

            html,
            body {
                overflow-y: auto;
                overflow-x: hidden;
                height: auto;
                cursor: auto;
            }
        }

        #bg-canvas {
            position: fixed;
            inset: 0;
            z-index: 0;
            background: var(--brown-deep);
        }

        body::after {
            content: '';
            position: fixed;
            inset: 0;
            z-index: 1;
            pointer-events: none;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
            opacity: 0.04;
            mix-blend-mode: overlay;
        }

        #cursor-dot {
            position: fixed;
            z-index: 9999;
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: #FFD4A8;
            pointer-events: none;
            transform: translate(-50%, -50%);
            box-shadow:
                0 0 6px 3px rgba(255, 180, 100, 0.9),
                0 0 18px 8px rgba(212, 120, 60, 0.6),
                0 0 45px 20px rgba(164, 87, 42, 0.35),
                0 0 90px 40px rgba(74, 34, 24, 0.2);
        }

        #cursor-ring {
            position: fixed;
            z-index: 9998;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 1px solid rgba(212, 138, 82, 0.3);
            pointer-events: none;
            transform: translate(-50%, -50%);
        }

        @media (max-width: 850px) {

            #cursor-dot,
            #cursor-ring {
                display: none;
            }
        }

        #scene {
            position: fixed;
            inset: 0;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            height: 100vh;
            overflow: hidden;
        }

        @media (max-width: 768px) {
            #scene {
                position: relative;
                display: flex;
                flex-direction: column;
                height: auto;
                min-height: 100dvh;
                overflow: visible;
                padding-bottom: 80px;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            #scene {
                grid-template-columns: 1fr 1fr;
            }
        }

        #left {
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            padding: 0 56px 0 72px;
            overflow: hidden;
        }

        #left::after {
            content: '';
            position: absolute;
            right: 0;
            top: 15%;
            bottom: 15%;
            width: 1px;
            background: linear-gradient(to bottom, transparent, rgba(164, 87, 42, 0.25) 30%, rgba(164, 87, 42, 0.25) 70%, transparent);
        }

        @media (max-width: 768px) {
            #left {
                align-items: center;
                text-align: center;
                padding: 56px 28px 36px;
            }

            #left::after {
                display: none;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            #left {
                padding: 0 36px 0 40px;
            }
        }

        .status-pill {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: 'Inter', sans-serif;
            font-size: 13px;
            font-weight: 300;
            letter-spacing: 0.28em;
            color: rgba(216, 138, 82, 0.85);
            text-transform: uppercase;
            margin-bottom: 36px;
            opacity: 0;
            border: 1px solid rgba(216, 138, 82, 0.2);
            padding: 9px 18px 9px 14px;
            backdrop-filter: blur(8px);
        }

        .status-pill::before {
            content: '';
            display: block;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--brown-glow);
            box-shadow: 0 0 7px 3px rgba(216, 138, 82, 0.65);
            animation: blink 2.4s ease-in-out infinite;
            flex-shrink: 0;
        }

        @keyframes blink {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.25;
            }
        }

        @media (max-width: 768px) {
            .status-pill {
                font-size: 10px;
                margin-bottom: 28px;
            }
        }

        #logo-wrap {
            position: relative;
            width: 100%;
            margin-bottom: 40px;
            opacity: 0;
            left: 15%;
        }

        #logo-img {
            width: min(340px, 68%);
            display: block;
            animation: logoBreath 7s ease-in-out infinite;
            transform-origin: center;
            will-change: filter, transform;
        }

        @keyframes logoBreath {

            0%,
            100% {
                filter: drop-shadow(0 0 28px rgba(164, 87, 42, 0.18)) drop-shadow(0 0 70px rgba(74, 34, 24, 0.3));
                transform: scale(1);
            }

            50% {
                filter: drop-shadow(0 0 60px rgba(216, 138, 82, 0.5)) drop-shadow(0 0 140px rgba(164, 87, 42, 0.35));
                transform: scale(1.018);
            }
        }

        #logo-halo {
            position: absolute;
            top: 50%;
            left: min(170px, 34%);
            transform: translate(-50%, -50%);
            width: 320px;
            height: 320px;
            border-radius: 50%;
            background: radial-gradient(ellipse, rgba(164, 87, 42, 0.22) 0%, transparent 70%);
            pointer-events: none;
            animation: haloShift 7s ease-in-out infinite;
        }

        @keyframes haloShift {

            0%,
            100% {
                opacity: 0.5;
                transform: translate(-50%, -50%) scale(1);
            }

            50% {
                opacity: 1;
                transform: translate(-50%, -50%) scale(1.25);
            }
        }

        @media (max-width: 768px) {
            #logo-img {
                width: min(200px, 55vw);
            }

            #logo-halo {
                width: 200px;
                height: 200px;
                left: 50%;
                top: 40%;
            }

            #logo-wrap {
                left: 35%;
            }
        }

        @media (max-width: 450px) {
            #logo-wrap {
                left: 30%;
            }

            #logo-img {
                width: min(130px, 60vw);
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            #logo-img {
                width: min(260px, 60%);
            }
        }

        .brand-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(36px, 3.6vw, 54px);
            font-weight: 500;
            letter-spacing: 0.25em;
            color: var(--beige);
            text-transform: uppercase;
            line-height: 1;
            margin-bottom: 10px;
            opacity: 0;
        }

        .brand-tagline {
            font-family: 'Inter', serif;
            font-size: clamp(14px, 1.2vw, 17px);
            font-weight: 300;
            font-style: italic;
            letter-spacing: 0.18em;
            color: rgba(216, 138, 82, 0.72);
            margin-bottom: 44px;
            opacity: 0;
        }

        .brand-services {
            display: flex;
            gap: 18px;
            align-items: center;
            opacity: 0;
        }

        .brand-services span {
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            font-weight: 300;
            letter-spacing: 0.25em;
            color: var(--text-muted);
            text-transform: uppercase;
        }

        .brand-services i {
            display: block;
            width: 3px;
            height: 3px;
            border-radius: 50%;
            background: rgba(164, 87, 42, 0.5);
            font-style: normal;
        }

        @media (max-width: 768px) {
            .brand-name {
                font-size: clamp(28px, 8vw, 40px);
            }

            .brand-tagline {
                font-size: 14px;
            }

            .brand-services {
                justify-content: center;
                flex-wrap: wrap;
            }

            .brand-services span {
                font-size: 9px;
            }
        }

        #right {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 0 72px 0 56px;
            overflow: hidden;
        }

        @media (max-width: 768px) {
            #right {
                padding: 0 24px 40px;
                overflow: visible;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            #right {
                padding: 0 40px 0 36px;
            }
        }

        .section-label {
            font-family: 'Inter', sans-serif;
            font-size: 14.5px;
            font-weight: 300;
            letter-spacing: 0.32em;
            color: rgba(164, 87, 42, 0.6);
            text-transform: uppercase;
            margin-bottom: 32px;
            opacity: 0;
        }

        @media (max-width: 768px) {
            .section-label {
                font-size: 9px;
                margin-bottom: 20px;
            }
        }

        #cards-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 1fr 1fr;
            gap: 14px;
            flex: 1;
            max-height: 62vh;
        }

        @media (max-width: 768px) {
            #cards-grid {
                grid-template-columns: 1fr;
                grid-template-rows: auto;
                max-height: none;
                gap: 12px;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            #cards-grid {
                max-height: 58vh;
                gap: 12px;
            }
        }

        @media (max-width: 450px) {
            #cards-grid {
                grid-template-columns: 1fr 1fr;
                grid-template-rows: auto;
            }
        }

        .card {
            position: relative;
            padding: 28px 26px 26px;
            border: 1px solid rgba(164, 87, 42, 0.14);
            background: rgba(26, 13, 10, 0.55);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            overflow: hidden;
            cursor: none;
            opacity: 0;
            transform: translateY(18px);
            transition:
                border-color 0.45s ease,
                background 0.45s ease,
                box-shadow 0.45s ease,
                transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            will-change: transform;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 40px;
            height: 1px;
            background: linear-gradient(to right, rgba(216, 138, 82, 0.7), transparent);
            transition: width 0.5s ease;
        }

        .card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 65% 65% at var(--mx, 50%) var(--my, 50%), rgba(164, 87, 42, 0.09), transparent);
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .card:hover {
            border-color: rgba(164, 87, 42, 0.38);
            background: rgba(26, 13, 10, 0.70);
            box-shadow:
                0 16px 40px rgba(26, 13, 10, 0.7),
                0 4px 16px rgba(164, 87, 42, 0.12),
                0 0 0 1px rgba(164, 87, 42, 0.1);
        }

        .card:hover::before {
            width: 85px;
        }

        .card:hover::after {
            opacity: 1;
        }

        .card-num {
            font-family: 'Cormorant Garamond', serif;
            font-size: 18px;
            font-weight: 400;
            letter-spacing: 0.25em;
            color: rgba(164, 87, 42, 0.5);
            margin-bottom: 18px;
            display: block;
        }

        .card-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(21px, 2vw, 27px);
            font-weight: 300;
            letter-spacing: 0.1em;
            color: var(--beige);
            margin-bottom: 13px;
            line-height: 1.1;
        }

        .card-body {
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            font-weight: 300;
            line-height: 1.8;
            color: rgba(244, 238, 231, 0.42);
            letter-spacing: 0.02em;
        }

        @media (max-width: 768px) {
            .card {
                cursor: auto;
                padding: 5px 20px;
            }

            .card-body {
                font-size: 12px;
            }
        }

        @media (max-width: 450px) {
            .card-body {
                display: none;
            }
        }

        .card-pip {
            position: absolute;
            bottom: 22px;
            right: 22px;
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--brown-copper);
            box-shadow: 0 0 8px 3px rgba(164, 87, 42, 0.4);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .card:hover .card-pip {
            opacity: 1;
        }

        #bottom-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 10;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 72px;
            border-top: 1px solid rgba(164, 87, 42, 0.1);
            background: rgba(26, 13, 10, 0.5);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            opacity: 0;
        }

        @media (max-width: 768px) {
            #bottom-bar {
                padding: 14px 24px;
                flex-direction: column;
                gap: 6px;
                align-items: flex-start;
            }

            .bottom-center {
                display: none;
            }

            .bottom-item:last-child {
                text-align: left;
            }

            .bottom-item:last-child span {
                text-align: left;
            }
        }

        .bottom-item {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .bottom-label {
            font-size: 9px;
            font-weight: 300;
            letter-spacing: 0.3em;
            color: rgba(164, 87, 42, 0.5);
            text-transform: uppercase;
        }

        .bottom-value {
            font-family: 'Cormorant Garamond', serif;
            font-size: 14px;
            font-weight: 300;
            letter-spacing: 0.15em;
            color: rgba(244, 238, 231, 0.6);
            transition: none;
        }

        .email-link {
            display: inline-block;
            position: relative;
            color: rgba(244, 238, 231, 0.6);
            text-decoration: none;
            font-family: 'Cormorant Garamond', serif;
            font-size: 14px;
            font-weight: 300;
            letter-spacing: 0.15em;
            transition: color 0.4s ease;
            cursor: none;
        }

        .email-link::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 0;
            height: 1px;
            background: linear-gradient(to right, rgba(216, 138, 82, 0.8), rgba(164, 87, 42, 0.4));
            transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .email-link:hover {
            color: rgba(216, 138, 82, 0.9);
        }

        .email-link:hover::after {
            width: 100%;
        }

        @media (max-width: 768px) {
            .email-link {
                cursor: auto;
            }
        }

        .bottom-center {
            text-align: center;
            font-family: 'Inter', sans-serif;
            font-size: 9px;
            font-weight: 200;
            letter-spacing: 0.4em;
            color: rgba(244, 238, 231, 0.499);
            text-transform: uppercase;
        }

        /* ═══════════════════════════════════════
           FLOATING CONTACT BUTTON
        ═══════════════════════════════════════ */
        #contact-btn {
            position: fixed;
            top: 32px;
            right: 72px;
            z-index: 100;
            cursor: none;
            opacity: 0;
            /* revealed by GSAP */
        }

        .contact-btn-inner {
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
            border: 1px solid rgba(216, 138, 82, 0.45);
            padding: 0;
            background: transparent;
            outline: none;
            cursor: none;
        }

        /* fill layer that slides in from left on hover */
        .contact-btn-inner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #A4572A 0%, #D88A52 60%, #A4572A 100%);
            transform: translateX(-101%);
            transition: transform 0.55s cubic-bezier(0.76, 0, 0.24, 1);
        }

        .contact-btn-inner:hover::before,
        .contact-btn-inner.active::before {
            transform: translateX(0);
        }

        /* glow ring on hover */
        .contact-btn-inner::after {
            content: '';
            position: absolute;
            inset: -1px;
            border: 1px solid rgba(216, 138, 82, 0);
            transition: border-color 0.4s ease, box-shadow 0.4s ease;
            pointer-events: none;
        }

        .contact-btn-inner:hover::after {
            border-color: rgba(216, 138, 82, 0.3);
            box-shadow: 0 0 24px rgba(164, 87, 42, 0.25), 0 0 60px rgba(164, 87, 42, 0.1);
        }

        .btn-text-wrap {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            height: 44px;
            overflow: hidden;
            padding: 0 22px;
            justify-content: center;
        }

        .btn-text-default,
        .btn-text-hover {
            display: block;
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            font-weight: 300;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            line-height: 44px;
            white-space: nowrap;
            transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1), color 0.3s ease;
        }

        .btn-text-default {
            color: rgba(216, 138, 82, 0.9);
            transform: translateY(0);
        }

        .btn-text-hover {
            color: var(--beige);
            transform: translateY(0);
            position: absolute;
            top: 100%;
            left: 22px;
            right: 22px;
        }

        .contact-btn-inner:hover .btn-text-default {
            transform: translateY(-100%);
        }

        .contact-btn-inner:hover .btn-text-hover {
            transform: translateY(-100%);
        }

        /* glowing pip on the left of button */
        .btn-pip {
            position: relative;
            z-index: 1;
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--brown-glow);
            box-shadow: 0 0 6px 2px rgba(216, 138, 82, 0.6);
            margin-left: 16px;
            flex-shrink: 0;
            transition: background 0.3s ease, box-shadow 0.3s ease;
            animation: blink 2.4s ease-in-out infinite;
        }

        .contact-btn-inner:hover .btn-pip {
            background: var(--beige);
            box-shadow: 0 0 8px 3px rgba(244, 238, 231, 0.5);
            animation: none;
        }

        @media (max-width: 500px) {
            #contact-btn {
                top: 18px;
                right: 35%; 
                cursor: auto;
            }

            .contact-btn-inner {
                cursor: auto;
            }

            .btn-text-wrap {
                padding: 0 16px;
                height: 20px;
            }

            .btn-text-default,
            .btn-text-hover {
                font-size: 6px;
                line-height: 20px;
            }
        }

        @media (min-width: 650px) {
            
        }

        /* ═══════════════════════════════════════
           MODAL OVERLAY
        ═══════════════════════════════════════ */
        #modal-overlay {
            position: fixed;
            inset: 0;
            z-index: 200;
            display: flex;
            align-items: center;
            justify-content: center;
            pointer-events: none;
            opacity: 0;
        }

        #modal-overlay.open {
            pointer-events: all;
            opacity: 1;
        }

        #modal-backdrop {
            position: absolute;
            inset: 0;
            background: rgba(10, 5, 3, 0.75);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        #modal-overlay.open #modal-backdrop {
            opacity: 1;
        }

        #modal-box {
            position: relative;
            z-index: 1;
            width: min(680px, 92vw);
            background: linear-gradient(155deg, #F4EEE7 0%, #EAE2D8 55%, #E0D5C8 100%);
            padding: 56px 60px 52px;
            transform: translateY(28px) scale(0.97);
            opacity: 0;
            transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.5s ease;
            overflow: hidden;
        }

        @media (max-width: 768px) {
            #modal-box {
                padding: 40px 28px 36px;
            }
        }

        #modal-overlay.open #modal-box {
            transform: translateY(0) scale(1);
            opacity: 1;
        }

        /* warm grain on modal */
        #modal-box::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
            opacity: 0.045;
            pointer-events: none;
        }

        /* top accent line */
        #modal-box::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(to right, transparent, rgba(164, 87, 42, 0.55) 30%, rgba(216, 138, 82, 0.8) 50%, rgba(164, 87, 42, 0.55) 70%, transparent);
        }

        /* close button */
        #modal-close {
            position: absolute;
            top: 24px;
            right: 28px;
            width: 32px;
            height: 32px;
            background: none;
            border: 1px solid rgba(74, 34, 24, 0.2);
            cursor: none;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: border-color 0.3s ease, background 0.3s ease;
        }

        #modal-close:hover {
            border-color: rgba(164, 87, 42, 0.6);
            background: rgba(164, 87, 42, 0.07);
        }

        #modal-close svg {
            pointer-events: none;
        }

        @media (max-width: 768px) {
            #modal-close {
                cursor: auto;
            }
        }

        /* modal header: logo + brand */
        .modal-header {
            display: flex;
            align-items: center;
            gap: 22px;
            margin-bottom: 32px;
            padding-bottom: 28px;
            border-bottom: 1px solid rgba(74, 34, 24, 0.12);
        }

        .modal-logo {
            width: 62px;
            height: 62px;
            object-fit: contain;
            filter: drop-shadow(0 2px 12px rgba(164, 87, 42, 0.3));
            flex-shrink: 0;
        }

        .modal-brand {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .modal-brand-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 26px;
            font-weight: 500;
            letter-spacing: 0.3em;
            color: var(--brown-primary);
            text-transform: uppercase;
            line-height: 1;
        }

        .modal-brand-tag {
            font-family: 'Inter', sans-serif;
            font-size: 10px;
            font-weight: 300;
            letter-spacing: 0.22em;
            color: rgba(74, 34, 24, 0.45);
            text-transform: uppercase;
        }

        .modal-tagline {
            font-family: 'Inter', serif;
            font-size: 13px;
            font-weight: 300;
            font-style: italic;
            letter-spacing: 0.15em;
            color: rgba(164, 87, 42, 0.75);
            margin-top: 6px;
        }

        /* service tags */
        .modal-services {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 36px;
        }

        .modal-service-tag {
            font-family: 'Inter', sans-serif;
            font-size: 9px;
            font-weight: 300;
            letter-spacing: 0.25em;
            color: rgba(74, 34, 24, 0.55);
            text-transform: uppercase;
            border: 1px solid rgba(164, 87, 42, 0.25);
            padding: 5px 12px;
            background: rgba(164, 87, 42, 0.04);
        }

        /* contact section label */
        .modal-contact-label {
            font-family: 'Inter', sans-serif;
            font-size: 9px;
            font-weight: 300;
            letter-spacing: 0.35em;
            color: rgba(164, 87, 42, 0.55);
            text-transform: uppercase;
            margin-bottom: 18px;
        }

        /* contact rows */
        .modal-contacts {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-bottom: 40px;
        }

        .modal-contact-row {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 14px 18px;
            border: 1px solid rgba(74, 34, 24, 0.1);
            background: rgba(244, 238, 231, 0.4);
            text-decoration: none;
            transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
            cursor: none;
        }

        .modal-contact-row:hover {
            background: rgba(164, 87, 42, 0.07);
            border-color: rgba(164, 87, 42, 0.35);
            transform: translateX(4px);
        }

        @media (max-width: 768px) {
            .modal-contact-row {
                cursor: auto;
            }
        }

        .contact-icon {
            width: 36px;
            height: 36px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(164, 87, 42, 0.2);
            background: rgba(164, 87, 42, 0.06);
        }

        .contact-icon svg {
            width: 15px;
            height: 15px;
            stroke: rgba(164, 87, 42, 0.75);
            fill: none;
            stroke-width: 1.5;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .contact-type {
            font-family: 'Inter', sans-serif;
            font-size: 10px;
            font-weight: 500;
            letter-spacing: 0.28em;
            color: rgba(74, 34, 24, 0.5);
            text-transform: uppercase;
        }

        .contact-value {
            font-family: 'Inter', serif;
            font-size: 14px;
            font-weight: 300;
            letter-spacing: 0.08em;
            color: var(--brown-primary);
        }

        .contact-arrow {
            margin-left: auto;
            opacity: 0;
            transform: translateX(-6px);
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .contact-arrow svg {
            width: 14px;
            height: 14px;
            stroke: rgba(164, 87, 42, 0.6);
            fill: none;
            stroke-width: 1.5;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .modal-contact-row:hover .contact-arrow {
            opacity: 1;
            transform: translateX(0);
        }

        /* brochure button */
        #brochure-btn {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 22px;
            background: linear-gradient(135deg, #4A2218 0%, #A4572A 100%);
            border: none;
            cursor: none;
            text-decoration: none;
            position: relative;
            overflow: hidden;
            transition: box-shadow 0.4s ease;
        }

        #brochure-btn::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #A4572A 0%, #D88A52 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        #brochure-btn:hover {
            box-shadow: 0 8px 32px rgba(74, 34, 24, 0.4);
        }

        #brochure-btn:hover::before {
            opacity: 1;
        }

        @media (max-width: 768px) {
            #brochure-btn {
                cursor: auto;
            }
        }

        .brochure-left {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .brochure-label {
            font-family: 'Inter', sans-serif;
            font-size: 9px;
            font-weight: 300;
            letter-spacing: 0.3em;
            color: rgba(244, 238, 231, 0.5);
            text-transform: uppercase;
        }

        .brochure-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 18px;
            font-weight: 300;
            letter-spacing: 0.15em;
            color: var(--beige);
        }

        .brochure-icon {
            position: relative;
            z-index: 1;
            width: 38px;
            height: 38px;
            border: 1px solid rgba(244, 238, 231, 0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .brochure-icon svg {
            width: 16px;
            height: 16px;
            stroke: var(--beige);
            fill: none;
            stroke-width: 1.5;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        @media (max-width: 420px) {
            .modal-brand-name {
                font-size: 20px;
            }

            .modal-brand-tag {
                font-size: 8px;
            }

            .modal-tagline, .contact-type {
                font-size: 10px;
            }

            .modal-service-tag {
                font-size: 7px;
            }

            .contact-value {
                font-size: 12px;
            }
        }