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

        body {
            font-family: 'Poppins', sans-serif;
            color: #2c1a15;
            background: #fff;
        }

        /* ── NAV ── */
        #navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all .4s ease;
        }

        #navbar.scrolled {
            background: rgba(78, 52, 46, .97);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, .25);
        }

        .nav-link {
            position: relative;
            color: #fff;
            font-size: .85rem;
            letter-spacing: .06em;
            text-transform: uppercase;
            font-weight: 500;
            transition: color .3s;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: #C9A227;
            transition: width .3s;
        }

        .nav-link:hover {
            color: #C9A227;
        }

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

        .nav-link.active {
            color: #C9A227;
        }

        .nav-link.active::after {
            width: 100%;
        }

        .brand-lockup {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .brand-mark {
            width: 46px;
            height: 46px;
            border-radius: 12px;
            background: linear-gradient(135deg, #C9A227, #E6C655);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 24px rgba(201, 162, 39, .35);
        }

        .brand-mark span {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: #2C1A15;
            letter-spacing: .04em;
            line-height: 1;
        }

        .brand-text {
            display: flex;
            flex-direction: column;
        }

        .brand-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.9rem;
            font-weight: 700;
            letter-spacing: .04em;
            color: #fff;
            line-height: .9;
        }

        .brand-subtitle {
            color: rgba(239, 235, 233, .82);
            text-transform: uppercase;
            letter-spacing: .24em;
            font-size: .62rem;
            font-weight: 500;
            margin-top: 4px;
        }

        .footer-brand .brand-mark {
            width: 42px;
            height: 42px;
            box-shadow: none;
        }

        .footer-brand .brand-title {
            font-size: 1.7rem;
            color: #fff;
        }

        .footer-brand .brand-subtitle {
            color: rgba(215, 204, 200, .66);
        }

        /* ── HERO ── */
        .hero-section {
            min-height: 100vh;
            background: linear-gradient(135deg, #3E2723 0%, #4E342E 40%, #5D4037 70%, #4E342E 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-grain {
            position: absolute;
            inset: 0;
            opacity: .04;
            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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
        }

        .hero-pattern {
            position: absolute;
            inset: 0;
            opacity: .06;
            background-image: repeating-linear-gradient(45deg, #C9A227 0, #C9A227 1px, transparent 0, transparent 50%);
            background-size: 30px 30px;
        }

        .hero-img {
            position: absolute;
            inset: 0;
            object-fit: cover;
            width: 100%;
            height: 100%;
            opacity: .18;
        }

        .gold-line {
            width: 60px;
            height: 3px;
            background: #C9A227;
            border-radius: 2px;
        }

        .btn-gold {
            background: linear-gradient(135deg, #C9A227, #E6C655);
            color: #3E2723;
            font-weight: 700;
            border-radius: 4px;
            transition: all .3s;
            letter-spacing: .04em;
            box-shadow: 0 4px 20px rgba(201, 162, 39, .35);
        }

        .btn-gold:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(201, 162, 39, .5);
        }

        .btn-outline-white {
            border: 2px solid rgba(255, 255, 255, .6);
            color: #fff;
            font-weight: 600;
            border-radius: 4px;
            transition: all .3s;
            letter-spacing: .04em;
        }

        .btn-outline-white:hover {
            background: rgba(255, 255, 255, .1);
            border-color: #fff;
            transform: translateY(-2px);
        }

        .btn-wa {
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: #fff;
            font-weight: 700;
            border-radius: 4px;
            transition: all .3s;
            letter-spacing: .04em;
            box-shadow: 0 4px 20px rgba(37, 211, 102, .35);
        }

        .btn-wa:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(37, 211, 102, .5);
        }

        /* ── SECTION STYLES ── */
        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: .75rem;
            letter-spacing: .15em;
            text-transform: uppercase;
            color: #C9A227;
            font-weight: 600;
        }

        .section-title {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 700;
            line-height: 1.15;
            color: #3E2723;
        }

        /* ── PRODUCT CARDS ── */
        .product-card {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(78, 52, 46, .1);
            transition: all .4s ease;
            background: #fff;
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(78, 52, 46, .2);
        }

        .product-card img {
            transition: transform .5s ease;
        }

        .product-card:hover img {
            transform: scale(1.06);
        }

        /* ── WHY US CARDS ── */
        .why-card {
            border: 1px solid #EFEBE9;
            border-radius: 12px;
            padding: 2rem;
            transition: all .35s;
            background: #fff;
        }

        .why-card:hover {
            border-color: #C9A227;
            background: #FFFDF5;
            box-shadow: 0 10px 40px rgba(201, 162, 39, .15);
            transform: translateY(-4px);
        }

        .icon-box {
            width: 56px;
            height: 56px;
            border-radius: 12px;
            background: linear-gradient(135deg, #4E342E, #6D4C41);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
        }

        /* ── GALLERY ── */
        .gallery-item {
            border-radius: 10px;
            overflow: hidden;
            cursor: pointer;
            position: relative;
            aspect-ratio: 1;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .5s;
        }

        .gallery-item:hover img {
            transform: scale(1.08);
        }

        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(62, 39, 35, .8) 0%, transparent 60%);
            opacity: 0;
            transition: opacity .3s;
            display: flex;
            align-items: flex-end;
            padding: 1rem;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        /* ── STATS ── */
        .stat-card {
            text-align: center;
            padding: 2rem 1rem;
            border-right: 1px solid rgba(215, 204, 200, .5);
        }

        .stat-card:last-child {
            border-right: none;
        }

        /* ── FLOATING WA ── */
        #wa-float {
            position: fixed;
            bottom: 28px;
            right: 28px;
            z-index: 9999;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #25D366, #128C7E);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 25px rgba(37, 211, 102, .5);
            cursor: pointer;
            transition: all .3s;
            text-decoration: none;
        }

        #wa-float:hover {
            transform: scale(1.12) translateY(-3px);
            box-shadow: 0 12px 35px rgba(37, 211, 102, .6);
        }

        #wa-float svg {
            width: 30px;
            height: 30px;
            fill: #fff;
        }

        .wa-pulse {
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            background: rgba(37, 211, 102, .4);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
                opacity: .6
            }

            50% {
                transform: scale(1.3);
                opacity: 0
            }
        }

        /* ── PAGE TRANSITIONS ── */
        .page {
            display: none;
        }

        .page.active {
            display: block;
            animation: fadeIn .5s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(12px)
            }

            to {
                opacity: 1;
                transform: none
            }
        }

        /* ── FOOTER ── */
        footer {
            background: #2C1A15;
            color: #D7CCC8;
        }

        .footer-link {
            color: #A1887F;
            font-size: .9rem;
            transition: color .2s;
            display: block;
            margin-bottom: .5rem;
        }

        .footer-link:hover {
            color: #C9A227;
        }

        .social-icon-btn {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all .25s ease;
        }

        .social-icon-btn svg {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
        }

        .social-icon-btn.phone,
        .social-icon-btn.map {
            background: #4E342E;
            color: #fff;
        }

        .social-icon-btn.phone:hover,
        .social-icon-btn.map:hover {
            background: #C9A227;
            color: #2C1A15;
            transform: translateY(-1px);
        }

        .social-icon-btn.whatsapp {
            background: #16A34A;
            color: #fff;
        }

        .social-icon-btn.whatsapp:hover {
            background: #22C55E;
            transform: translateY(-1px);
        }

        /* ── FORM ── */
        .form-input {
            width: 100%;
            padding: .75rem 1rem;
            border: 1.5px solid #EFEBE9;
            border-radius: 6px;
            font-family: 'Poppins', sans-serif;
            font-size: .9rem;
            outline: none;
            transition: border-color .25s, box-shadow .25s;
            color: #3E2723;
        }

        .form-input:focus {
            border-color: #C9A227;
            box-shadow: 0 0 0 3px rgba(201, 162, 39, .15);
        }

        /* ── MOBILE NAV ── */
        #mobile-menu {
            display: none;
        }

        #mobile-menu.open {
            display: block;
        }

        /* ── SCROLL REVEAL ── */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity .7s ease, transform .7s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: none;
        }

        .reveal-left {
            opacity: 0;
            transform: translateX(-30px);
            transition: opacity .7s ease, transform .7s ease;
        }

        .reveal-left.visible {
            opacity: 1;
            transform: none;
        }

        .reveal-right {
            opacity: 0;
            transform: translateX(30px);
            transition: opacity .7s ease, transform .7s ease;
        }

        .reveal-right.visible {
            opacity: 1;
            transform: none;
        }

        /* delay helpers */
        .delay-1 {
            transition-delay: .1s
        }

        .delay-2 {
            transition-delay: .2s
        }

        .delay-3 {
            transition-delay: .3s
        }

        .delay-4 {
            transition-delay: .4s
        }

        .delay-5 {
            transition-delay: .5s
        }

        .delay-6 {
            transition-delay: .6s
        }

        /* ── HERO SCROLL INDICATOR ── */
        .scroll-ind {
            position: absolute;
            bottom: 36px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            color: rgba(255, 255, 255, .5);
            font-size: .7rem;
            letter-spacing: .1em;
            text-transform: uppercase;
        }

        .scroll-ind .line {
            width: 1px;
            height: 40px;
            background: linear-gradient(to bottom, rgba(255, 255, 255, .5), transparent);
            animation: scrollLine 2s infinite;
        }

        @keyframes scrollLine {
            0% {
                transform: scaleY(0);
                transform-origin: top
            }

            50% {
                transform: scaleY(1);
                transform-origin: top
            }

            51% {
                transform-origin: bottom
            }

            100% {
                transform: scaleY(0);
                transform-origin: bottom
            }
        }

        /* ── TESTIMONIAL ── */
        .testimonial-card {
            background: #fff;
            border: 1px solid #EFEBE9;
            border-radius: 14px;
            padding: 2rem;
            transition: box-shadow .3s;
        }

        .testimonial-card:hover {
            box-shadow: 0 10px 40px rgba(78, 52, 46, .12);
        }

        /* tag pills */
        .tag {
            display: inline-block;
            padding: .25rem .75rem;
            border-radius: 100px;
            font-size: .75rem;
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .brand-title {
                font-size: 1.35rem;
            }

            .brand-subtitle {
                font-size: .56rem;
                letter-spacing: .2em;
            }
        }
