
        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --gold: #c9a84c;
            --gold-light: #e8d5a3;
            --gold-glow: rgba(201, 168, 76, 0.25);
            --dark: #0c0a08;
            --dark-card: #14110e;
            --dark-surface: #1c1814;
            --text-light: #f2ede8;
            --text-muted: #b3a89c;
            --border-subtle: rgba(201, 168, 76, 0.15);
            --shadow-premium: 0 20px 60px rgba(0, 0, 0, 0.7);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--dark);
            color: var(--text-light);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        img {
            display: block;
            max-width: 100%;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* ── Scrollbar ── */
        ::-webkit-scrollbar {
            width: 6px;
        }
        ::-webkit-scrollbar-track {
            background: var(--dark);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--gold);
            border-radius: 3px;
        }

        /* ── Utility ── */
        .section-label {
            font-family: 'Cormorant Garamond', serif;
            font-size: 0.85rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 12px;
            display: inline-block;
            border-bottom: 1px solid var(--gold);
            padding-bottom: 6px;
        }

        .section-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.4rem, 5vw, 3.8rem);
            font-weight: 700;
            line-height: 1.15;
            letter-spacing: -0.02em;
            color: var(--text-light);
        }

        .section-title span {
            color: var(--gold);
        }

        .section-sub {
            font-size: 1.05rem;
            color: var(--text-muted);
            max-width: 560px;
            margin-top: 16px;
            font-weight: 300;
            line-height: 1.7;
        }

        /* ─────────────────────────────────────────────── */
        /*  HERO SLIDER                                  */
        /* ─────────────────────────────────────────────── */
        .hero-slider {
            position: relative;
            width: 100%;
            height: 700px;
            margin-top: 52px;
            overflow: hidden;
            background: var(--dark);
        }

        .slider-container {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1.2s ease-in-out;
            z-index: 1;
        }

        .slide.active {
            opacity: 1;
            z-index: 2;
        }

        .slide::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg,
                    rgba(12, 10, 8, 0.70) 0%,
                    rgba(12, 10, 8, 0.30) 50%,
                    rgba(12, 10, 8, 0.10) 100%);
            z-index: 1;
            pointer-events: none;
        }

        .hero-content-wrapper {
            position: absolute;
            inset: 0;
            z-index: 5;
            display: flex;
            align-items: center;
            pointer-events: none;
        }

        .hero-content-wrapper .container {
            pointer-events: auto;
            width: 100%;
        }

        .hero-content {
            max-width: 680px;
            padding: 0 0;
            margin-top: -20px;
        }

        .hero-content .label {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--gold);
            border-bottom: 1px solid var(--gold);
            padding-bottom: 8px;
            margin-bottom: 24px;
        }

        .hero-content h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 4.2rem;
            font-weight: 700;
            line-height: 1.1;
            color: var(--text-light);
            margin-bottom: 16px;
        }

        .hero-content h1 .gold-highlight {
            color: var(--gold);
            position: relative;
            display: inline-block;
        }

        .hero-content .gold-divider {
            width: 60px;
            height: 2px;
            background: var(--gold);
            margin: 16px 0 24px 0;
        }

        .hero-content .desc {
            font-size: 1rem;
            font-weight: 300;
            color: var(--text-muted);
            max-width: 480px;
            line-height: 1.8;
        }

        .hero-content .desc strong {
            color: var(--text-light);
            font-weight: 500;
        }

        .hero-content .desc-secondary {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-top: 4px;
            font-weight: 300;
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            margin-top: 36px;
            background: var(--gold);
            color: var(--dark);
            padding: 16px 44px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 0.8rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            transition: all 0.4s ease;
            border: none;
            cursor: pointer;
            pointer-events: auto;
        }

        .hero-cta i {
            font-size: 1.2rem;
        }

        .hero-cta:hover {
            background: var(--gold-light);
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(201, 168, 76, 0.2);
        }

        .slider-controls {
            position: absolute;
            bottom: 32px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            display: flex;
            gap: 12px;
            background: rgba(12, 10, 8, 0.5);
            backdrop-filter: blur(6px);
            padding: 10px 18px;
            border-radius: 40px;
            border: 1px solid rgba(201, 168, 76, 0.15);
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            cursor: pointer;
            transition: all 0.4s ease;
            border: none;
            padding: 0;
        }

        .dot.active {
            background: var(--gold);
            transform: scale(1.2);
            box-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
        }

        .dot:hover {
            background: var(--gold);
            opacity: 0.8;
        }

        /* ─────────────────────────────────────────────── */
        /*  TRUST / QUALITY BAR                          */
        /* ─────────────────────────────────────────────── */
        .trust-bar {
            background: var(--dark-card);
            border-top: 1px solid rgba(201, 168, 76, 0.12);
            border-bottom: 1px solid rgba(201, 168, 76, 0.12);
            padding: 40px 0;
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 18px;
            padding: 8px 24px;
            position: relative;
        }

        .trust-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 10%;
            height: 80%;
            width: 1px;
            background: rgba(201, 168, 76, 0.15);
            opacity: 0.5;
        }

        .trust-item .icon {
            font-size: 1.6rem;
            color: var(--gold);
            min-width: 32px;
            text-align: center;
            opacity: 0.8;
        }

        .trust-item .content h4 {
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--text-light);
            margin-bottom: 2px;
        }

        .trust-item .content p {
            font-size: 0.75rem;
            font-weight: 300;
            color: var(--text-muted);
            line-height: 1.4;
            margin: 0;
        }

        /* ── Featured Section ── */
        .featured {
            padding: 100px 0 80px;
            background: var(--dark);
            border-top: 1px solid rgba(201, 168, 76, 0.04);
        }

        .featured-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 56px;
        }

        .featured-header .view-all {
            color: var(--gold);
            font-weight: 400;
            font-size: 0.9rem;
            letter-spacing: 1px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: gap 0.3s ease;
            border-bottom: 1px solid transparent;
            padding-bottom: 4px;
        }

        .featured-header .view-all:hover {
            gap: 16px;
            border-color: var(--gold);
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
            gap: 32px;
        }

        .product-card {
            background: var(--dark-card);
            border-radius: 28px;
            padding: 28px 24px 32px;
            border: 1px solid rgba(201, 168, 76, 0.04);
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .product-card:hover {
            transform: translateY(-12px);
            border-color: rgba(201, 168, 76, 0.15);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
        }

        .product-card:hover::before {
            opacity: 1;
        }

        .product-card .badge-tag {
            position: absolute;
            top: 18px;
            right: 18px;
            background: var(--dark-card);
            color: var(--gold);
            font-size: 0.6rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 4px 14px;
            border-radius: 30px;
            border: 1px solid var(--dark-card);
            backdrop-filter: blur(4px);
        }

        .product-card .image-wrap {
            aspect-ratio: 1/1;
            background:
                radial-gradient(ellipse at 30% 30%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
                #d9d7d5;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            border: 1px solid rgba(255, 255, 255, 0.02);
            transition: background 0.4s ease;
            overflow: hidden;
            position: relative;
        }

        .product-card:hover .image-wrap {
            background:
                radial-gradient(ellipse at 30% 30%, rgba(201, 168, 76, 0.12) 0%, transparent 60%),
                #b6b6b5;
        }

        .product-card .image-wrap i {
            font-size: 4.2rem;
            color: var(--gold);
            opacity: 0.5;
            transition: all 0.5s ease;
        }

        .product-card .image-wrap img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }

        .product-card:hover .image-wrap i {
            opacity: 0.8;
            transform: scale(1.06);
        }

        .product-card .wood-grade {
            display: inline-block;
            font-size: 0.6rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gold);
            background: rgba(201, 168, 76, 0.06);
            padding: 2px 14px;
            border-radius: 20px;
            margin-bottom: 10px;
            border: 1px solid rgba(201, 168, 76, 0.04);
        }

        .product-card h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-weight: 600;
            letter-spacing: -0.01em;
            color: var(--text-light);
            margin-bottom: 6px;
        }

        .product-card .origin {
            font-size: 0.8rem;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 14px;
        }

        .product-card .origin i {
            color: var(--gold);
            font-size: 0.7rem;
            opacity: 0.6;
        }

      .product-card .desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 18px;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;

    min-height: calc(1.6em * 2);
    max-height: calc(1.6em * 2);
}

        .product-card .meta-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 16px;
            border-top: 1px solid rgba(255, 255, 255, 0.03);
        }

        .product-card .meta-row .weight {
            font-size: 0.7rem;
            color: var(--text-muted);
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .product-card .meta-row .weight i {
            color: var(--gold);
            opacity: 0.5;
        }

        .product-card .meta-row .learn-more {
            font-size: 0.7rem;
            color: var(--gold);
            letter-spacing: 0.8px;
            text-transform: uppercase;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: gap 0.3s ease;
            font-weight: 500;
        }

        .product-card .meta-row .learn-more:hover {
            gap: 12px;
        }

        /* ── Product Image Slider ── */
.product-card .product-image-slider {
    position: relative;
    overflow: hidden;
    touch-action: pan-y;
    cursor: grab;
}

.product-card .product-image-slider:active {
    cursor: grabbing;
}

.product-card .product-images {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease;
    user-select: none;
}

.product-card .product-images img {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    pointer-events: none;
    user-select: none;
}

/* Dots */
.product-card .product-image-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    padding: 5px 9px;
    border-radius: 20px;
    background: rgba(12, 10, 8, 0.55);
    backdrop-filter: blur(5px);
    z-index: 5;
}

.product-card .product-image-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    transition: all 0.3s ease;
}

.product-card .product-image-dots span.active {
    background: var(--gold);
    transform: scale(1.25);
}


/* ─────────────────────────────────────────────── */
/*  PRODUCT SKELETON LOADING                      */
/* ─────────────────────────────────────────────── */

.product-card.loading {
    pointer-events: none;
}

.product-card.loading .image-wrap,
.product-card.loading .wood-grade,
.product-card.loading h3,
.product-card.loading .origin,
.product-card.loading .desc,
.product-card.loading .meta-row {
    color: transparent;
    background: #24201b;
    border-color: transparent;
    position: relative;
    overflow: hidden;
}

/* Skeleton animation */
.product-card.loading .image-wrap::after,
.product-card.loading .wood-grade::after,
.product-card.loading h3::after,
.product-card.loading .origin::after,
.product-card.loading .desc::after,
.product-card.loading .meta-row::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.07) 50%,
        transparent 100%
    );
    animation: productSkeleton 1.4s ease-in-out infinite;
}

/* Image skeleton */
.product-card.loading .image-wrap {
    background: #24201b;
}

/* Hide real image */
.product-card.loading .image-wrap img,
.product-card.loading .product-images,
.product-card.loading .product-image-dots,
.product-card.loading .badge-tag {
    visibility: hidden;
}

/* Grade skeleton */
.product-card.loading .wood-grade {
    width: 85px;
    height: 22px;
    border-radius: 20px;
    margin-bottom: 10px;
}

/* Title skeleton */
.product-card.loading h3 {
    width: 65%;
    height: 25px;
    border-radius: 6px;
    margin-bottom: 10px;
}

/* Origin skeleton */
.product-card.loading .origin {
    width: 75%;
    height: 16px;
    border-radius: 5px;
    margin-bottom: 14px;
}

/* Description skeleton */
.product-card.loading .desc {
    width: 100%;
    height: 52px;
    border-radius: 6px;
    margin-bottom: 18px;
}

/* Bottom row skeleton */
.product-card.loading .meta-row {
    height: 40px;
    border-radius: 5px;
}

/* Hide icons inside skeleton */
.product-card.loading i {
    visibility: hidden;
}

@keyframes productSkeleton {
    0% {
        left: -150%;
    }

    100% {
        left: 150%;
    }
}

        /* ── Collection Banner ── */
        .collection-banner {
            padding: 80px 0;
            background:
                linear-gradient(135deg, rgba(12, 10, 8, 0.92) 0%, rgba(20, 17, 14, 0.95) 100%),
                var(--dark);
            border-top: 1px solid rgba(201, 168, 76, 0.04);
            border-bottom: 1px solid rgba(201, 168, 76, 0.04);
            position: relative;
        }

        .collection-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 70% 30%, rgba(201, 168, 76, 0.04) 0%, transparent 60%);
            pointer-events: none;
        }

        .banner-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .banner-inner .left h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.4rem, 4vw, 3.4rem);
            font-weight: 700;
            line-height: 1.1;
        }

        .banner-inner .left h2 span {
            color: var(--gold);
        }

        .banner-inner .left p {
            color: var(--text-muted);
            font-weight: 300;
            font-size: 1rem;
            max-width: 420px;
            margin-top: 16px;
            line-height: 1.8;
        }

        .banner-inner .right {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
            justify-content: flex-end;
        }

        .banner-inner .right .stat-block {
            background: var(--dark-card);
            padding: 28px 34px;
            border-radius: 24px;
            border: 1px solid rgba(201, 168, 76, 0.04);
            text-align: center;
            min-width: 140px;
            transition: all 0.4s ease;
        }

        .banner-inner .right .stat-block:hover {
            border-color: rgba(201, 168, 76, 0.12);
            transform: translateY(-4px);
        }

        .banner-inner .right .stat-block .num {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.6rem;
            font-weight: 700;
            color: var(--gold);
            line-height: 1;
        }

        .banner-inner .right .stat-block .label {
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--text-muted);
            margin-top: 8px;
        }

        /* ── Testimonial ── */
        .testimonial {
            padding: 80px 0;
            background: var(--dark);
            border-bottom: 1px solid rgba(201, 168, 76, 0.04);
        }

        .testimonial-inner {
            max-width: 780px;
            margin: 0 auto;
            text-align: center;
        }

        .testimonial-inner .quote-icon {
            font-size: 2.4rem;
            color: var(--gold);
            opacity: 0.25;
            margin-bottom: 16px;
        }

        .testimonial-inner blockquote {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.6rem, 2.8vw, 2.4rem);
            font-weight: 400;
            font-style: italic;
            color: var(--text-light);
            line-height: 1.5;
            letter-spacing: 0.01em;
        }

        .testimonial-inner blockquote span {
            color: var(--gold);
        }

        .testimonial-inner .author {
            margin-top: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
        }

        .testimonial-inner .author .avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--dark-surface);
            border: 1px solid rgba(201, 168, 76, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-size: 1.2rem;
        }

        .testimonial-inner .author .name {
            font-weight: 500;
            font-size: 0.9rem;
            color: var(--text-light);
        }

        .testimonial-inner .author .title {
            font-size: 0.7rem;
            color: var(--text-muted);
            letter-spacing: 0.5px;
        }

        /* ── Our Work ── */
.our-work {
    max-width: 900px;
    margin: 0 auto;
}

.our-work h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 35px;
}

.our-work ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 16px;
}

.our-work li {
    position: relative;
    padding: 18px 22px 18px 50px;
    background: var(--dark-card);
    border: 1px solid rgba(201, 168, 76, 0.08);
    border-radius: 12px;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.our-work li::before {
    content: '✓';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 1rem;
    font-weight: 600;
}

.our-work li:hover {
    border-color: rgba(201, 168, 76, 0.2);
    transform: translateX(5px);
    background: var(--dark-surface);
}

/* Mobile */
@media (max-width: 768px) {
    .our-work {
        padding: 0 20px;
    }

    .our-work h2 {
        margin-bottom: 25px;
    }

    .our-work li {
        padding: 16px 18px 16px 45px;
        font-size: 0.88rem;
    }

    .our-work li::before {
        left: 17px;
    }
}

        /* ── Responsive (non-header, non-footer) ── */
        @media (max-width: 1024px) {
            .hero-slider {
                height: 600px;
                margin-top: 52px;
            }
            .hero-content h1 {
                font-size: 3.2rem;
            }
            .trust-grid {
                padding: 0 24px;
                gap: 16px;
            }
            .banner-inner {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .banner-inner .left p {
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
            }
            .banner-inner .right {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 20px;
            }

            .hero-slider {
                height: 620px;
                margin-top: 50px;
            }

            .slide::before {
                background: linear-gradient(180deg,
                        rgba(12, 10, 8, 0.20) 0%,
                        rgba(12, 10, 8, 0.70) 70%,
                        rgba(12, 10, 8, 0.85) 100%);
            }

            .hero-content-wrapper .container {
                padding: 0 24px;
            }

            .hero-content {
                max-width: 100%;
                margin-top: 20px;
                padding: 0;
            }

            .hero-content h1 {
                font-size: 2.6rem;
            }
            .hero-content .desc {
                font-size: 0.9rem;
            }
            .hero-cta {
                padding: 14px 32px;
                font-size: 0.7rem;
                width: 100%;
                justify-content: center;
            }

            .slider-controls {
                bottom: 20px;
                padding: 8px 14px;
                gap: 10px;
            }
            .dot {
                width: 8px;
                height: 8px;
            }

            .trust-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px 16px;
                padding: 0 20px;
            }
            .trust-item {
                padding: 0;
                flex-direction: column;
                align-items: flex-start;
                gap: 6px;
            }
            .trust-item:not(:last-child)::after {
                display: none;
            }
            .trust-item .icon {
                font-size: 1.4rem;
            }
            .trust-item .content h4 {
                font-size: 0.65rem;
            }
            .trust-item .content p {
                font-size: 0.7rem;
            }

            .product-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .product-card {
                padding: 20px 16px 24px;
            }
        }

        @media (max-width: 480px) {
            .hero-slider {
                height: 560px;
                margin-top: 48px;
            }
            .hero-content h1 {
                font-size: 2.2rem;
            }
            .trust-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .trust-item {
                flex-direction: row;
                align-items: center;
                gap: 14px;
            }
            .product-grid {
                grid-template-columns: 1fr;
            }
            .banner-inner .right .stat-block {
                min-width: 100px;
                padding: 20px;
            }
        }