
    /* ====================================
        INTRO VIDEO BACKGROUND STYLES
        ==================================== */
    .s-intro {
        position: relative;
        overflow: hidden;
        min-height: 100vh;
    }

    /* Video Background Container - Full Size */
    .intro-video-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
    }

    .intro-video-background video {
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        width: 100%;
        height: 100%;
        transform: translateX(-50%) translateY(-50%);
        object-fit: cover;
    }

    /* Faded Overlay */
    .intro-video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.55);
        /* Dark fade - adjust opacity as needed */
        z-index: 1;
    }

    /* Fallback background if video doesn't load */
    .intro-video-background {
        background: url('images/fallback-image.jpg') center/cover no-repeat;
    }

    /* Ensure content appears above video */
    .s-intro__content {
        position: relative;
        z-index: 2;
    }

    /* Adjust text colors for better readability on video */
    .intro-header__big-type {
        text-shadow: 2px 2px 30px rgba(0, 0, 0, 0.7);
    }

    .intro-block-content__text {
        text-shadow: 1px 1px 15px rgba(0, 0, 0, 0.5);
    }

    .intro-header__overline {
        text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .intro-video-overlay {
            background: rgba(0, 0, 0, 0.7);
            /* Darker overlay on mobile for better text readability */
        }
    }

    /* ==========================================================
        STATS STRIP - Experience & Heritage Stats (No Bootstrap)
        ========================================================== */
    .stats-strip {
        background: #ffffff;
        border-top: 2px solid #d4af37;
        border-bottom: 2px solid #d4af37;
        padding: 2.5rem 0;
        box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    }

    .stats-strip .stats-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .stats-strip .stats-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 1.5rem 0;
    }

    .stats-strip .stats-col {
        flex: 0 0 25%;
        max-width: 25%;
        text-align: center;
        padding: 0.5rem 1rem;
    }

    .stats-strip .stat-item {
        font-family: "Bona Nova SC", serif;
        font-weight: 700;
        font-size: 2rem;
        letter-spacing: 2px;
        text-transform: uppercase;
        display: inline-block;
        padding: 0.4rem 0;
        line-height: 1.4;
    }

    .stats-strip .stat-item.gold-text {
        color: #9b8a6b;
    }

    .stats-strip .stat-item.dark-text {
        color: #181105;
    }

    /* ==========================================================
        STATS STRIP - MOBILE RESPONSIVE
        ========================================================== */
    /* Tablets and smaller screens */
    @media (max-width: 992px) {
        .stats-strip .stats-col {
            flex: 0 0 50%;
            max-width: 50%;
            padding: 0.3rem 0.8rem;
        }
        
        .stats-strip .stat-item {
            font-size: 1.2rem;
            letter-spacing: 1.5px;
        }
    }

    /* Mobile phones */
    @media (max-width: 576px) {
        .stats-strip {
            padding: 1.8rem 0;
        }
        
        .stats-strip .stats-container {
            padding: 0 1rem;
        }
        
        .stats-strip .stats-col {
            flex: 0 0 50%;
            max-width: 50%;
            padding: 0.2rem 0.4rem;
        }
        
        .stats-strip .stat-item {
            font-size: 0.85rem;
            letter-spacing: 0.8px;
            line-height: 1.3;
        }
    }

    /* Very small phones */
    @media (max-width: 400px) {
        .stats-strip .stat-item {
            font-size: 2rem;
            letter-spacing: 0.5px;
        }
        
        .stats-strip .stats-col {
            padding: 0.1rem 0.2rem;
        }
    }

    /* ==========================================================
        ROYAL LEGEND STRIP  –  "We Proudly Deliver Our Heritage Worldwide"
        ========================================================== */
    .legend-strip-royal {
        background: linear-gradient(135deg, #b8860b 0%, #d4af37 40%, #f5d78e 70%, #c9a050 100%);
        color: #1e1a0e;
        padding: 1.4rem 2rem;
        line-height: 6rem;
        letter-spacing: 1px;
        text-align: center;
        font-size: clamp(8rem, 4.2vw, 2.4rem);
        font-weight: 700;
        text-transform: uppercase;
        border-top: 3px solid #fce8b0;
        border-bottom: 3px solid #fce8b0;
        box-shadow: 0 6px 20px rgba(0,0,0,0.25), inset 0 2px 6px rgba(255, 235, 170, 0.6);
        width: 100%;
        font-family: "Bona Nova SC", serif;
        position: relative;
        text-shadow: 0 1px 2px rgba(255, 215, 120, 0.5);
    }

    .legend-strip-royal span {
        display: inline-block;
        padding: 0.3rem 2.2rem;
        border-radius: 60px;
    }

    @media (max-width: 600px) {
        .legend-strip-royal {
            padding: 1rem 0.75rem;
            line-height: 1.2;
            font-size: clamp(1.6rem, 5.4vw, 2.2rem);
            letter-spacing: 0.06em;
        }
        .legend-strip-royal span {
            display: block;
            width: fit-content;
            margin-inline: auto;
            padding: 0.15rem 0.85rem;
            line-height: 1.15;
        }
        .legend-strip-royal br {
            display: none;
        }
        .legend-strip-royal::before,
        .legend-strip-royal::after {
            font-size: 1.4rem;
            margin: 0 0.3rem;
        }
    }

    /* ==========================================================
        COLLECTION AREA – item wise items view
        ENHANCED LUXURY: gold border on hover, tags, price, inquiry button
        ========================================================== */
    .collection-area {
        padding: 6rem 0;
    }
    .collection-area .section-header {
        margin-bottom: 3rem;
    }
    .collection-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2.8rem;
    }
    .collection-item {
        background: #110404;
        border-radius: 1.2rem;
        box-shadow: 0 8px 30px rgba(0,0,0,0.05);
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
        display: flex;
        flex-direction: column;
        border: 1px solid transparent; /* base transparent, golden on hover */
    }
    .collection-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 16px 48px rgba(0,0,0,0.1);
        border: 1px solid #d4af37;
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.4), 0 16px 48px rgba(0,0,0,0.1);
    }
    .collection-item__image {
        width: 100%;
        aspect-ratio: 1/1;
        object-fit: cover;
        background: #eee;
        display: block;
    }
    .collection-item__content {
        padding: 1.6rem 1.8rem 2rem;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    .collection-item__name {
        font-size: 2.5rem;
        font-weight: 600;
        margin-bottom: 0.6rem;
        color: #ffc927;
        letter-spacing: -0.01em;
    }
    .collection-item__desc {
        font-size: 1.4rem;
        line-height: 1.5;
        color: #5a4e3a;
        margin-bottom: 1rem;
        flex: 1;
    }
    /* Price above inquiry button — golden */
    .collection-item__price {
        font-weight: 700;
        color: #b8860b;
        font-size: 1.7rem;
        margin-top: 0.2rem;
        margin-bottom: 0.4rem;
        letter-spacing: 0.5px;
        text-shadow: 0 0 6px rgba(184, 134, 11, 0.2);
    }
    /* Badge / tag style – craft, spiritual, heritage etc */
    .collection-item__badge {
        display: inline-block;
        background: #d4af37;
        color: #1e1a0e;
        font-size: 1.1rem;
        font-weight: 700;
        padding: 0.2rem 1.4rem;
        border-radius: 30px;
        align-self: flex-start;
        margin-top: 0.2rem;
        margin-bottom: 0.6rem;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        border: 1px solid #f5d78e;
        box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    }
    /* INQUIRY BUTTON - full width, golden border + golden text */
    .collection-item__inquiry {
        display: block;
        width: 100%;
        background: transparent;
        border: 2px solid #d4af37;
        border-radius: 40px;
        padding: 0.9rem 0;
        font-weight: 700;
        font-size: 1.5rem;
        letter-spacing: 1px;
        color: #d4af37;
        text-transform: uppercase;
        transition: all 0.25s ease;
        cursor: pointer;
        margin-top: 0.6rem;
        text-align: center;
        background: rgba(212, 175, 55, 0.04);
        box-shadow: 0 0 12px rgba(212, 175, 55, 0.15);
        font-family: inherit;
    }
    .collection-item__inquiry:hover {
        background: #d4af37;
        color: #1e1a0e;
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
        border-color: #f5d78e;
        transform: scale(1.01);
    }

    /* small fix for existing gallery header */
    .section-header-wrap {
        margin-bottom: 2rem;
    }

    /* make collection item content spacing clean */
    .collection-item__content .collection-item__price {
        order: 3;
    }
    .collection-item__content .collection-item__inquiry {
        order: 4;
    }
    .collection-item__content .collection-item__badge {
        order: 2;
    }
    .collection-item__content .collection-item__desc {
        order: 1;
    }
    .collection-item__content .collection-item__name {
        order: 0;
    }
    /* ensure full width button */
    .collection-item__inquiry-wrap {
        width: 100%;
        display: block;
        margin-top: 0.2rem;
    }

    /* override any button conflict */
    .collection-item .btn,
    .collection-item .btn--primary {
        background: transparent !important;
        border: 2px solid #d4af37 !important;
        color: #d4af37 !important;
        box-shadow: none !important;
        border-radius: 40px !important;
        width: 100% !important;
        padding: 0.9rem 0 !important;
        font-weight: 700 !important;
        font-size: 1.5rem !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
    }
    .collection-item .btn:hover,
    .collection-item .btn--primary:hover {
        background: #d4af37 !important;
        color: #1e1a0e !important;
        border-color: #f5d78e !important;
    }

    /* ensure collection-item__price is above inquiry */
    .collection-item__content {
        display: flex;
        flex-direction: column;
    }

    @media (max-width: 600px) {
        .collection-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 1.8rem;
        }
    }

    /* ==========================================================
        VIDEO REEL GALLERY  (16:9 aspect ratio - 1920x1080 proportion)
        ========================================================== */
    .video-reel-area {
        padding: 6rem 0;
    }
    .video-reel-area .section-header {
        margin-bottom: 3rem;
    }
    .video-reel-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 2.8rem;
    }
    .video-reel-item {
        position: relative;
        border-radius: 1.2rem;
        overflow: hidden;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        aspect-ratio: 9 / 16;  /* same tall card height as reel.php */
        background: #1a1208;
        cursor: pointer;
        background: #0f0b06;
    }
    .video-reel-item:hover {
        transform: scale(1.02);
        box-shadow: 0 16px 40px rgba(0,0,0,0.18);
    }
    .video-reel-item video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        background: #000;
    }
    /* fallback image if video not loaded */
    .video-reel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        position: absolute;
        top:0; left:0;
        z-index:0;
    }
    .video-reel-item .play-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 64px;
        height: 64px;
        background: rgba(212, 175, 55, 0.85);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #1e1a0e;
        font-size: 2.4rem;
        transition: background 0.3s ease, transform 0.3s ease;
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
        border: 2px solid #f5d78e;
        backdrop-filter: blur(2px);
        z-index: 2;
        pointer-events: none; /* click goes to item */
    }
    .video-reel-item:hover .play-icon {
        background: #d4af37;
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 0 0 50px rgba(212, 175, 55, 0.7);
    }
    .video-reel-item .play-icon svg {
        width: 32px;
        height: 32px;
        fill: #1e1a0e;
        margin-left: 4px;
    }
    .video-reel-item .video-label {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 1.2rem 1.6rem;
        background: linear-gradient(transparent, rgba(0,0,0,0.75));
        color: #f5d78e;
        font-weight: 600;
        font-size: 1.4rem;
        letter-spacing: 0.3px;
        z-index: 2;
        pointer-events: none;
    }
    /* overlay to catch clicks */
    .video-reel-item .click-overlay {
        position: absolute;
        top:0; left:0; width:100%; height:100%;
        z-index: 3;
        cursor: pointer;
    }
    @media (max-width: 600px) {
        .video-reel-grid {
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 1.8rem;
        }
    }
    /* ensure reel-style tall cards on all screens */
    .video-reel-item {
        aspect-ratio: 9 / 16;
    }

