@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=DM+Serif+Display:ital@0;1&family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --color-cream: #FFFDF5;
    --color-ivory: #FDFBF0;
    --color-maroon: #6B0D0D;
    --color-maroon-dark: #2D0505;
    --color-gold: #D4AF37;
    --color-gold-light: #E5C76B;
    --color-gold-dark: #A68926;
    --color-brown: #5D4037;
    --color-sandal: #F4E0C0;
    --color-sandal-dark: #E6CCB2;
    --color-text-dark: #2D2424;
    --color-text-light: #6D5D5D;

    --font-heading: 'Inter', sans-serif;
    --font-subheading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2.5rem;
    --spacing-lg: 5rem;
    --spacing-xl: 10rem;

    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.03);
    --shadow-premium: 0 25px 60px rgba(107, 13, 13, 0.12);

    --transition-smooth: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    --transition-quick: all 0.3s ease;
    --border-radius: 16px;

    /* Global Motion System */
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-in-out-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-text {
    overflow: hidden;
    position: relative;
    display: inline-block;
}

.reveal-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-gold);
    transform: translateX(-101%);
    z-index: 2;
}

.active .reveal-text::after {
    animation: textMask 1.2s var(--ease-out-expo) forwards;
}

@keyframes textMask {
    0% {
        transform: translateX(-101%);
    }

    50% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(101%);
    }
}

.float-slow {
    animation: floatY 10s ease-in-out infinite;
}

.float-fast {
    animation: floatY 6s ease-in-out infinite;
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Unified Cinematic Background - GPU Native */
.hero-bg::before,
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    transform: translateZ(0);
}

.hero-bg::before {
    background: radial-gradient(circle at 50% 50%, rgba(107, 13, 13, 0.1) 0%, rgba(10, 1, 1, 0.9) 80%);
    z-index: 1;
}

.shimmer-particles {
    position: absolute;
    inset: -100px;
    background-image: radial-gradient(circle at 50% 50%, var(--color-gold-light) 0.5px, transparent 0.5px);
    background-size: 80px 80px;
    opacity: 0.05;
    transform: translate3d(0, 0, 0);
    pointer-events: none;
    z-index: 1;
    will-change: transform;
}

.hero.active .shimmer-particles {
    animation: driftParticles 40s linear infinite;
}

@keyframes driftParticles {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(100px, 100px, 0);
    }
}

/* Low-Performance Fallback System */
.low-perf-mode .shimmer-particles,
.low-perf-mode .god-rays,
.low-perf-mode .glass-btn,
.low-perf-mode .navbar {
    animation: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    filter: none !important;
}

.low-perf-mode .hero-bg::before {
    opacity: 0.5;
}

/* Kinetic Gradient Border */
.kinetic-card {
    position: relative;
    background: white;
    z-index: 1;
}

.kinetic-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--color-gold), transparent, var(--color-maroon), transparent);
    background-size: 400% 400%;
    z-index: -1;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: gradientMove 10s linear infinite;
}

.kinetic-card:hover::before {
    opacity: 1;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Global Performance Engine */
.hero,
.hero-content,
.navbar {
    contain: layout style;
}

.hero-bg,
.parallax-bg,
.shimmer-particles,
.god-rays {
    contain: strict;
    will-change: transform;
}

/* Performance Optimizations - GPU Accelerated */
.reveal,
.hero-bg,
.parallax-bg,
.btn-3d,
.btn-3d-gold,
.kinetic-card,
.navbar,
.hero-title,
.god-rays,
.shimmer-particles {
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    /* Force 3D layer */
}

/* Optimized Grain Texture */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/natural-paper.png');
    opacity: 0.1;
    /* Further reduced for speed */
    pointer-events: none;
    z-index: 5000;
    transform: translate3d(0, 0, 0);
    /* Force GPU */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-cream);
    color: var(--color-text-dark);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.brand-font {
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

section {
    padding: var(--spacing-lg) 5%;
    position: relative;
}

/* Background Patterns */
.bg-pattern {
    background-image: radial-gradient(var(--color-gold-light) 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    background-color: var(--color-cream);
}

.temple-pattern {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l15 30-15 30L15 30z' fill='%23d4af37' fill-opacity='0.03'/%3E%3C/svg%3E");
}

/* Buttons */
/* Base Button Styles */
.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 100px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--color-maroon);
    color: white;
}

.btn-gold {
    background-color: var(--color-gold);
    color: white;
}

.btn-outline {
    border: 1px solid var(--color-gold);
    color: var(--color-maroon);
    background: transparent;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* 🚀 Ultra-Premium Cinematic Buttons */
.btn-3d,
.btn-3d-gold {
    position: relative;
    padding: 1.2rem 3.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    border: none;
    cursor: pointer;
    transition: all 0.5s var(--ease-out-expo);
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 10;
}

/* 🏆 The Royal Seal Button (Primary) */
.btn-3d {
    background: linear-gradient(135deg, var(--color-maroon) 0%, #4a0505 100%);
    color: #FFFFFF;
    box-shadow: 0 10px 40px rgba(107, 13, 13, 0.4);
    border: 1px solid rgba(229, 199, 107, 0.3);
}

.btn-3d::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(229, 199, 107, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-3d::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 60%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: rotate(35deg);
    animation: majesticSweep 4s infinite cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-3d:hover {
    transform: translateY(-5px) scale(1.08);
    /* Stronger lift */
    background: linear-gradient(135deg, #8a1a1a 0%, var(--color-maroon) 100%);
    box-shadow: 0 20px 50px rgba(107, 13, 13, 0.6);
    /* Deeper shadow */
    border-color: var(--color-gold);
    letter-spacing: 5px;
    /* Text expansion */
}

.btn-3d:hover::before {
    opacity: 1;
}

/* ✨ The Heritage Glass Button (Secondary) */
.btn-3d-gold {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-gold-light);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(229, 199, 107, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-3d-gold::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(229, 199, 107, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s var(--ease-out-expo);
}

.btn-3d-gold:hover {
    background: rgba(229, 199, 107, 0.2);
    color: #FFFFFF;
    border-color: var(--color-gold-light);
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 15px 45px rgba(212, 175, 55, 0.4);
    letter-spacing: 5px;
    /* Text expansion */
}

.btn-3d-gold:hover::before {
    transform: translateX(100%);
}

@keyframes majesticSweep {
    0% {
        left: -100%;
    }

    30% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-header span {
    text-transform: uppercase;
    color: var(--color-gold);
    letter-spacing: 5px;
    font-weight: 700;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--color-maroon);
    margin-bottom: var(--spacing-sm);
    line-height: 1.1;
    font-weight: 400;
}

.section-header p {
    color: var(--color-text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.collection-header-section p {
    color: var(--color-text-light);
    font-size: 1.1rem;
    max-width: 800px;
    /* Better line length for reading */
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .collection-header-section p {
        max-width: 90%;
        /* Responsive width for tablets */
        font-size: 1rem;
    }
}

/* 🏛️ Original Artisan Capsule Navbar */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translate3d(0, 0, 0);
    width: 95%;
    max-width: 1400px;
    z-index: 6000;
    padding: 0.1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(25px) saturate(180%) contrast(110%);
    -webkit-backdrop-filter: blur(25px) saturate(180%) contrast(110%);
    border: 1px solid rgba(229, 199, 107, 0.35);
    border-radius: 100px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.45);
    transition: all 0.4s var(--ease-out-expo);
    height: 70px;
    will-change: transform, top, background;
}

.navbar.scrolled {
    top: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    padding: 0.6rem 6%;
    height: 80px;
    background: rgba(255, 254, 250, 0.98);
    border-bottom: 2px solid rgba(166, 137, 38, 0.15);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.logo img {
    height: 110px;
    width: auto;
    max-width: 280px;
    margin: -20px 0;
    transition: all 0.5s var(--ease-out-expo);
    filter: brightness(0) invert(1) drop-shadow(0 0 15px rgba(212, 175, 55, 1));
    will-change: transform, filter;
    object-fit: contain;
    position: relative;
    z-index: 10;
}

.navbar.scrolled .logo img {
    height: 80px;
    margin: -5px 0;
    filter: brightness(1) contrast(1.4) drop-shadow(0 2px 10px rgba(107, 13, 13, 0.2));
}

.nav-links {
    display: flex;
    gap: 3.5rem;
    list-style: none;
    align-items: center;
}

.nav-item {
    text-decoration: none;
    color: #FFFFFF !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    position: relative;
    padding: 10px 0;
    transition: all 0.4s var(--ease-out-expo);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.navbar.scrolled .nav-item {
    color: var(--color-maroon) !important;
    text-shadow: none;
}

/* Light Pages Fix (Collection Pages) */
body.light-page .navbar:not(.scrolled) {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(107, 13, 13, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

body.light-page .navbar:not(.scrolled) .nav-item {
    color: var(--color-maroon) !important;
    text-shadow: none;
}

body.light-page .navbar:not(.scrolled) .logo img {
    filter: none;
    height: 80px;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: all 0.4s var(--ease-out-expo);
    transform: translateX(-50%);
}

.nav-item:hover {
    color: var(--color-gold-light) !important;
    transform: translateY(-2px);
}

.navbar.scrolled .nav-item:hover {
    color: var(--color-gold-dark) !important;
}

.nav-item:hover::after,
.nav-item.active::after {
    width: 100%;
}

/* Consolidated Premium Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    min-width: 260px;
    padding: 1rem 0;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(212, 175, 55, 0.15);
    list-style: none;
    z-index: 3000;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(10px);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu li a {
    padding: 0.8rem 2rem;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--color-text-dark) !important;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.5px;
    position: relative;
}

.dropdown-menu li a i {
    color: var(--color-gold);
    font-size: 0.85rem;
    width: 20px;
    text-align: center;
}

.dropdown-menu li a:hover {
    background: rgba(107, 13, 13, 0.05);
    color: var(--color-maroon) !important;
    padding-left: 2.2rem;
}

.dropdown-menu li a::after {
    display: none !important;
}

/* Header Specific 3D Button - Sync with Hero Button */
.btn-3d-header {
    background: linear-gradient(135deg, var(--color-maroon) 0%, #4a0505 100%);
    color: #FFFFFF;
    padding: 12px 30px;
    border-radius: 4px;
    /* Matches hero button corners */
    font-weight: 700;
    text-decoration: none;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(229, 199, 107, 0.3);
    box-shadow: 0 10px 30px rgba(107, 13, 13, 0.3);
    transition: all 0.5s var(--ease-out-expo);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.btn-3d-header::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 60%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(35deg);
    animation: majesticSweep 4s infinite cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-3d-header:hover {
    transform: translateY(-5px) scale(1.05);
    background: linear-gradient(135deg, #8a1a1a 0%, var(--color-maroon) 100%);
    box-shadow: 0 15px 40px rgba(107, 13, 13, 0.5);
    border-color: var(--color-gold);
    letter-spacing: 4px;
    color: #FFFFFF !important;
}

.btn-3d-header:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 #4a0505;
}

/* Navbar Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.social-nav {
    display: flex;
    gap: 0.8rem;
}

.social-nav a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(107, 13, 13, 0.05);
    color: var(--color-maroon);
    font-size: 0.9rem;
    transition: var(--transition-quick);
}

.social-nav a:hover {
    background: var(--color-maroon);
    color: white;
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    min-height: 120vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    padding-top: 80px;
    text-align: center;
}

.hero-bg {
    position: fixed;
    /* Fixed relative to viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    will-change: transform;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 253, 245, 0.1), rgba(255, 253, 245, 0.8));
    z-index: 0;
}

.hero-content {
    max-width: 1000px;
    z-index: 10;
    padding: 0 5%;
}

/* 3D Cinematic Typography */
.hero-title {
    font-size: clamp(3.5rem, 12vw, 8rem);
    line-height: 0.66;
    /* Tighter spacing between the three lines */
    color: var(--color-maroon);
    margin-bottom: 1rem;
    font-weight: 400;
    /* DM Serif Display looks best at normal weight */
    font-family: 'DM Serif Display', serif;
    perspective: 1200px;
    transform-style: preserve-3d;
    letter-spacing: -1px;
}

/* Fix for clipped 'g' in Elegance without redesigning effects */
.hero-title .reveal-text {
    padding-bottom: 0.3em;
}

/* 3D Cinematic Typography - Low-Blur Drop Shadow */
.hero-title span {
    display: block;
    position: relative;
    background: linear-gradient(180deg, #FFD700 0%, var(--color-gold-light) 30%, var(--color-gold) 60%, var(--color-maroon) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
    letter-spacing: 1px;
}

/* 3D Volumetric Extrusion */
.hero-title .reveal-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(212, 175, 55, 0.15);
    transform: translateZ(-30px);
    filter: blur(4px);
}

.hero-title .italic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--color-gold) !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    text-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    margin: 0 10px;
}

/* Cinematic God Rays - Super Lean */
.god-rays {
    position: absolute;
    inset: -100%;
    background: linear-gradient(115deg,
            transparent 48%,
            rgba(255, 255, 255, 0.015) 50%,
            transparent 52%);
    background-size: 200% 200%;
    pointer-events: none;
    z-index: 2;
    animation: efficientSweep 25s linear infinite;
    transform: translate3d(0, 0, 0);
}

@keyframes efficientSweep {
    0% {
        transform: translate3d(-5%, -5%, 0) rotate(-15deg);
    }

    100% {
        transform: translate3d(5%, 5%, 0) rotate(-15deg);
    }
}

/* Best First Impression: Entrance Animation */
.hero-bg img {
    animation: cinematicHeroLoad 3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes cinematicHeroLoad {
    from {
        transform: scale(1.3) rotate(2deg);
        filter: blur(10px) brightness(0);
    }

    to {
        transform: scale(1.1) rotate(0deg);
        filter: blur(0px) brightness(1);
    }
}

/* Resetting specialized styles */
.hero-title .italic {
    text-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
    color: var(--color-gold);
    z-index: 5;
    transform: translateZ(60px) rotate(-2deg);
    display: inline-block;
}

.hero-title .reveal-text {
    display: block;
    transform: translateZ(30px);
}

@keyframes float3D {

    0%,
    100% {
        transform: rotateY(-5deg) rotateX(5deg) translateZ(20px);
    }

    50% {
        transform: rotateY(5deg) rotateX(-5deg) translateZ(40px);
    }
}

.animate-3d-text {
    animation: float3D 8s ease-in-out infinite;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--color-text-light);
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    z-index: 10;
}

.scroll-indicator::after {
    content: '';
    display: block;
    width: 1px;
    height: 50px;
    background: linear-gradient(var(--color-maroon), transparent);
    margin: 1rem auto 0;
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Grid Layouts */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

/* Premium Product Cards */
.card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(212, 175, 55, 0.08);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
}

.card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--color-gold);
    transition: var(--transition-smooth);
}

.card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-premium);
}

.card:hover::after {
    width: 100%;
}

.card-img {
    height: 380px;
    overflow: hidden;
    position: relative;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card:hover .card-img img {
    transform: scale(1.12);
}

.card-content {
    padding: 2.5rem 2rem;
    text-align: center;
    flex-grow: 1;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-maroon);
}

.card-content p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Floating Elements */
.floating-deco {
    position: absolute;
    pointer-events: none;
    opacity: 0.15;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* 🏛️ Exclusive Collections Showcase - 120FPS Ready */
.showcase-section {
    padding: 6rem 5% 4rem;
    background: #FFFEFA;
    position: relative;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1500px;
    margin: 0 auto;
}

.showcase-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 450px;
    background: var(--color-maroon-dark);
    transition: all 0.6s var(--ease-out-expo);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    will-change: transform;
    cursor: pointer;
    contain: layout style;
}

.showcase-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s var(--ease-out-expo);
    filter: brightness(0.8) contrast(1.1);
    transform: scale(1.05);
    /* Pre-scale for smooth zoom out/in */
}

.showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(107, 13, 13, 0) 20%,
            rgba(10, 1, 1, 0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.2rem;
    z-index: 2;
}

.showcase-content {
    transform: translateY(120px);
    transition: all 0.6s var(--ease-out-expo);
}

.showcase-card:hover .showcase-content {
    transform: translateY(0);
}

.showcase-card:hover .showcase-image {
    transform: scale(1.1);
    filter: brightness(0.6) blur(2px);
}

.showcase-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(229, 199, 107, 0.9);
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-maroon-dark);
    backdrop-filter: blur(5px);
    z-index: 3;
}

.showcase-tag {
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    display: block;
}

.showcase-title {
    color: #FFFFFF;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.showcase-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    opacity: 0;
    transition: all 0.4s ease 0.1s;
}

.showcase-card:hover .showcase-list {
    opacity: 1;
}

.showcase-list li {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(229, 199, 107, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--color-gold-light);
    white-space: nowrap;
}

.showcase-btn {
    margin-top: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.4s var(--ease-out-expo);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.showcase-card:hover .showcase-btn {
    transform: scale(1.1) rotate(45deg);
    background: #FFFFFF;
    color: var(--color-maroon);
}

/* 📜 The Artisan Legacy Section - High Performance Narrative */
.heritage-section {
    padding: 5.5rem 5%;
    background: var(--color-maroon-dark);
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    contain: layout paint;
}

.heritage-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.heritage-content {
    position: relative;
    z-index: 2;
}

.heritage-subtitle {
    font-family: 'DM Serif Display', serif;
    color: var(--color-gold);
    letter-spacing: 3px;
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 0.8rem;
    display: block;
}

.heritage-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    /* Reduced */
    line-height: 1.2;
    margin-bottom: 1rem;
}

.heritage-text {
    font-size: 1rem;
    /* Reduced */
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.heritage-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.heritage-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(229, 199, 107, 0.15);
    padding: 2.8rem 2.2rem;
    /* Even more premium height */
    border-radius: 20px;
    transition: all 0.7s var(--ease-out-expo);
    will-change: transform, background, box-shadow;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}

/* 💎 Diagonal Glint Sweep Effect */
.heritage-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(212, 175, 55, 0.2),
            transparent);
    transform: skewX(-25deg);
    transition: 0.8s;
}

.heritage-card:hover {
    background: rgba(229, 199, 107, 0.2);
    transform: translateY(-20px) scale(1.03);
    border-color: var(--color-gold-light);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(212, 175, 55, 0.2);
}

.heritage-card:hover::after {
    left: 150%;
}

.heritage-card:hover i {
    transform: translateY(-12px) rotateY(180deg) scale(1.25);
    color: var(--color-gold-light);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.heritage-card:hover h4 {
    color: var(--color-gold-light);
    transform: translateX(5px);
}

.heritage-card i {
    font-size: 2.2rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    transition: all 0.6s var(--ease-out-expo);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    transform-origin: center;
    position: relative;
    /* Ensure z-index works */
    z-index: 6;
    /* High z-index to stay above glint */
}

.heritage-card h4 {
    transition: all 0.4s ease;
    position: relative;
    z-index: 5;
    color: #FFFFFF;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}

.heritage-card p {
    position: relative;
    z-index: 5;
    font-size: 0.85rem;
    color: rgba(255, 253, 245, 0.6);
}

/* Kinetic Light Source Decoration */
.heritage-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 140%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.heritage-visual {
    position: relative;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.heritage-portal-wrapper {
    position: relative;
    width: 100%;
    max-width: 620px;
    /* Increased for a grander look */
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    /* Increased gap slightly */
}

.heritage-img-half {
    width: 50%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) contrast(1.1);
    border: 1px solid rgba(229, 199, 107, 0.4);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    transition: transform 0.8s var(--ease-out-expo);
}

.left-half {
    border-radius: 500px 0 0 500px;
}

.right-half {
    border-radius: 0 500px 500px 0;
}

.heritage-portal-wrapper:hover .heritage-img-half {
    transform: scale(1.05);
}

/* Rotating Gold Orbit */
.heritage-portal-wrapper::before {
    content: '';
    position: absolute;
    inset: -15px;
    border: 1px dashed rgba(229, 199, 107, 0.3);
    border-radius: 50%;
    animation: rotateSlow 20s linear infinite;
}

.heritage-experience-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Exact Center */
    background: var(--color-gold);
    color: var(--color-maroon-dark);
    padding: 1rem;
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.6);
    z-index: 10;
    backdrop-filter: blur(10px);
    border: 4px solid rgba(255, 255, 255, 0.3);
    animation: pulseBadge 3s infinite ease-in-out;
}

@keyframes pulseBadge {

    0%,
    100% {
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        box-shadow: 0 0 60px rgba(212, 175, 55, 0.8);
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.heritage-experience-badge span {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    display: block;
}

.heritage-experience-badge small {
    font-size: 0.6rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .heritage-container {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .heritage-features {
        max-width: 600px;
        margin: 0 auto;
    }
}

.bespoke-cta {
    padding: 2.5rem 5% 5rem; /* Drastically reduced top padding */
    background: var(--color-maroon-dark);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.bespoke-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(229, 199, 107, 0.2);
    padding: 2.5rem 3rem 4rem; /* Slashed top inner padding */
    border-radius: 40px;
}

.bespoke-flare {
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 140%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    animation: drift 15s infinite alternate ease-in-out;
}

@keyframes drift {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(100px, 50px);
    }
}

.bespoke-cta-tag {
    color: var(--color-gold);
    letter-spacing: 8px;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1rem; /* Halved margin */
    display: block;
}

.bespoke-cta-title {
    font-family: 'DM Serif Display', serif;
    color: #FFFFFF;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1rem; /* Reduced margin */
    line-height: 1;
    font-weight: 400;
}

.bespoke-cta-content {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

/* Footer Section */
footer {
    background: #0F0808;
    /* Sacred Onyx - Distinct from Maroon */
    color: rgba(255, 253, 245, 0.6);
    padding: 5rem 5% 3rem;
    position: relative;
    overflow: hidden;
    /* 🎨 Subtle Premium Texture */
    background-image:
        radial-gradient(rgba(229, 199, 107, 0.03) 1px, transparent 0);
    background-size: 30px 30px;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold-light), var(--color-gold-dark));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer-col h4 {
    color: var(--color-gold);
    margin-bottom: 2rem;
    font-size: 1.3rem;
    letter-spacing: 2px;
}

.footer-links li {
    margin-bottom: 1.2rem;
}

.footer-links a {
    transition: var(--transition-quick);
}

.footer-links a:hover {
    color: var(--color-gold);
    padding-left: 10px;
}

.footer-social-links {
    display: flex;
    gap: 1.2rem;
    margin-top: 2rem;
}

.f-social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition-quick);
}

.f-social-icon:hover {
    background: var(--color-gold);
    color: white;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    border-color: var(--color-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 3rem;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Reveal on Scroll */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-section {
    padding: 2.5rem 0; /* Massive reduction from 5rem */
    background: radial-gradient(circle at 50% -20%, #FFFFFF, #FFFDF5);
    position: relative;
    overflow: hidden;
    /* 🏛️ 2026 Architectural Pattern (Zero-Lag) */
    background-image:
        radial-gradient(circle at 2px 2px, rgba(212, 175, 55, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
}

.testimonial-header {
    text-align: center;
    margin-bottom: 0.5rem; /* Cut completely from 2rem */
}

.testimonial-main-title {
    font-family: 'DM Serif Display', serif;
    color: var(--color-maroon);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.1;
    margin-top: 1rem;
}

.marquee-container {
    --cards: 3;
    overflow-x: hidden !important;
    white-space: nowrap;
    position: relative;
    padding: 1rem 0 2rem;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

@media (max-width: 992px) {
    .marquee-container {
        --cards: 2;
    }
}

@media (max-width: 768px) {
    .marquee-container {
        --cards: 1;
    }
}

.marquee-content {
    display: inline-flex;
    align-items: stretch; /* Forces equal height explicitly */
    gap: 2rem;
    width: max-content;
    animation: marquee-scroll 35s linear infinite;
    padding-right: 2rem; /* Matches the gap for seamless total width calculation */
}

.marquee-content:hover {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card-v2 {
    width: calc((90vw - (var(--cards) - 1) * 2rem) / var(--cards));
    min-width: unset;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    white-space: normal;
    background: rgba(255, 255, 255, 0.8);
    padding: 1.8rem 1.8rem; /* Slashed for tighter card height */
    border-radius: 16px;
    border: 1px solid rgba(229, 199, 107, 0.25);
    position: relative;
    transition: all 0.5s var(--ease-out-expo);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
    backdrop-filter: blur(8px);
    /* Subtle for performance */
    will-change: transform, box-shadow;
    overflow: hidden;
}

.testimonial-card-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--color-gold);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card-v2:hover {
    transform: translateY(-12px);
    background: #FFFFFF;
    box-shadow: 0 30px 60px rgba(107, 13, 13, 0.06);
    border-color: var(--color-gold);
}

.testimonial-card-v2:hover::before {
    opacity: 1;
}

.quote-icon {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    font-size: 1.5rem; /* Shrunk for smaller header */
    color: var(--color-gold);
    opacity: 0.15;
}

.testimonial-stars {
    color: var(--color-gold);
    font-size: 0.8rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 4px;
}

.testimonial-text-v2 {
    font-family: var(--font-subheading);
    font-size: 0.9rem;
    font-style: italic;
    color: var(--color-text-dark);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    flex-grow: 1; /* Pushes author down! */
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-img {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    /* Modern square-round look */
    object-fit: cover;
    border: 2px solid #FFFFFF;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s var(--ease-out-expo);
}

.testimonial-card-v2:hover .author-img {
    transform: scale(1.1) rotate(3deg);
}

.author-info h5 {
    color: var(--color-maroon);
    font-size: 1rem;
    margin-bottom: 0.1rem;
    font-weight: 700;
}

.author-info span {
    color: var(--color-gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    opacity: 0.8;
}

/* 📱 Responsive Engine 2026 - Ultra Performance */
@media (max-width: 1200px) {
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {

    .nav-links,
    .nav-actions,
    .nav-container {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: flex !important;
        margin-left: auto;
        /* Push to the right */
        z-index: 5000;
    }

    .hero {
        padding-top: 0 !important;
    }

    /* Fix gap on tablet */
    .hero-title {
        font-size: clamp(3rem, 10vw, 6rem);
    }

    .heritage-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .heritage-features {
        max-width: 600px;
        margin: 2rem auto 0;
    }

    .heritage-visual {
        order: -1;
    }

    .bespoke-container {
        padding: 3rem 2rem;
        border-radius: 24px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 5%;
    }

    .hero {
        min-height: 100vh;
        padding-top: 0;
    }

    /* Fixed gap issue */
    .hero-title {
        font-size: clamp(2.2rem, 12vw, 3.8rem);
        line-height: 1.0;
        margin-bottom: 2rem;
    }

    .hero-title .reveal-text {
        white-space: nowrap;
    }

    /* Force exactly 3 lines */
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-actions a {
        width: 100%;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card-v2 {
        min-width: 290px;
        padding: 2rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .heritage-features {
        grid-template-columns: 1fr;
    }

    .heritage-visual {
        margin-bottom: 2rem;
    }

    .logo img {
        height: 95px !important;
        margin: 0 !important;
    }

    .navbar {
        height: 85px !important;
        padding: 0 5%;
    }

    /* Increased height for better balance */

    /* Optimize Hero spacing for mobile */
    .hero-content {
        padding: 40px 5% 0;
    }

    .hero-content span.reveal {
        letter-spacing: 4px !important;
        font-size: 0.7rem !important;
        margin-bottom: 1.5rem !important;
    }

    .hero-content p {
        font-size: 1.1rem !important;
        margin: 1.5rem auto !important;
        line-height: 1.6 !important;
    }
}

/* 🍔 Modern Asymmetric Burger Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 38px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 5000;
    padding: 0;
    transition: var(--transition-smooth);
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 2px;
    background: #FFFFFF;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    transform-origin: right;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

body.light-page .mobile-menu-toggle .bar {
    background: var(--color-maroon);
    box-shadow: none;
}

.mobile-menu-toggle .bar:nth-child(2) {
    width: 70%;
    align-self: flex-end;
}

.mobile-menu-toggle .bar:nth-child(3) {
    width: 40%;
    align-self: flex-end;
}

.navbar.scrolled .mobile-menu-toggle .bar {
    background: var(--color-maroon);
    box-shadow: none;
}

/* Hover State - Gold Pulse */
.mobile-menu-toggle:hover .bar {
    background: var(--color-gold-light);
    box-shadow: 0 0 15px rgba(229, 199, 107, 0.6);
}

/* Active State - Refined 'X' */
.mobile-menu-toggle.active .bar {
    background: var(--color-gold) !important;
}

.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-2px, 2px);
    width: 100%;
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-2px, -2px);
    width: 100%;
}

/* �️ Close Label for Mobile Menu */
/* Removed MENU/CLOSE labels as requested */

.mobile-menu-toggle.active .bar {
    background: var(--color-gold) !important;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

/* 🌌 Modern Mobile Overlay Refresh */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(45, 5, 5, 0.98), rgba(10, 1, 1, 1));
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    z-index: 5500;
    /* Staying below navbar (6000) */
    display: flex;
    align-items: flex-start;
    /* Changed from center to allow scrolling from top */
    justify-content: center;
    padding-top: 100px;
    /* Space for the fixed navbar/toggle */
    padding-bottom: 50px;
    overflow-y: auto;
    /* Enable scrolling */
    opacity: 0;
    visibility: hidden;
    transition: all 0.7s cubic-bezier(0.85, 0, 0.15, 1);
}

.mobile-menu-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 50px;
    /* Bottom padding for scroll room */
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
    padding: 0;
    width: 100%;
}

.mobile-nav-links li {
    margin: 2.2rem 0;
    opacity: 0;
    transform: translateY(40px) scale(0.9);
    transition: all 0.6s var(--ease-out-expo);
}

.mobile-overlay.active .mobile-nav-links li {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* 💎 Premium Staggered Flow */
.mobile-nav-links li:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-nav-links li:nth-child(2) {
    transition-delay: 0.15s;
}

.mobile-nav-links li:nth-child(3) {
    transition-delay: 0.2s;
}

.mobile-nav-links li:nth-child(4) {
    transition-delay: 0.25s;
}

.mobile-nav-links li:nth-child(5) {
    transition-delay: 0.3s;
}

.mobile-nav-links li:nth-child(6) {
    transition-delay: 0.35s;
}

.mobile-nav-links a {
    font-family: 'DM Serif Display', serif;
    /* More elegant for mobile nav */
    color: #FFFFFF;
    font-size: 1.5rem;
    /* Slightly smaller for neatness */
    font-weight: 400;
    text-transform: capitalize;
    /* Cleaner look than all-caps */
    letter-spacing: 1px;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    padding: 0.5rem 1rem;
    display: inline-block;
}

.mobile-nav-links a:hover {
    color: var(--color-gold);
    transform: translateX(5px);
}

/* 📱 Mobile Submenu (Accordion) Styles */
.mobile-has-dropdown {
    position: relative;
}

.mobile-dropdown-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    font-family: 'DM Serif Display', serif;
    color: white;
    font-size: 1.5rem;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.mobile-dropdown-btn i {
    font-size: 0.9rem;
    transition: transform 0.4s ease;
    color: var(--color-gold);
}

.mobile-has-dropdown.active .mobile-dropdown-btn i {
    transform: rotate(180deg);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    list-style: none;
    padding: 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 10%;
}

.mobile-has-dropdown.active .mobile-submenu {
    max-height: 400px;
    padding: 1rem 0;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.mobile-submenu li {
    margin: 0.8rem 0 !important;
    transform: none !important;
    /* Reset staggered anim for submenu */
    opacity: 1 !important;
}

.mobile-submenu a {
    font-size: 1.1rem !important;
    font-family: 'Inter', sans-serif !important;
    opacity: 1;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    padding: 0.6rem 2rem;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.mobile-submenu a i {
    color: var(--color-gold);
    font-size: 0.9rem;
    width: 20px;
}

.mobile-submenu a:hover {
    opacity: 1;
    color: var(--color-gold);
}

.mobile-nav-links .btn-3d-header {
    background: var(--color-maroon);
    padding: 1.2rem 3rem;
    margin-top: 2.5rem;
    border-radius: 100px;
    font-size: 1rem;
    letter-spacing: 4px;
    box-shadow: 0 15px 40px rgba(107, 13, 13, 0.4);
    border: 1px solid var(--color-gold);
    color: #FFFFFF !important;
}

.mobile-nav-links .btn-3d-header:hover {
    background: #8a1a1a;
    transform: translateY(-5px) scale(1.05);
    letter-spacing: 6px;
    box-shadow: 0 20px 50px rgba(107, 13, 13, 0.6);
}

.mobile-nav-links a:hover::after {
    width: 60%;
}

.mobile-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(212, 175, 55, 0.05));
    pointer-events: none;
}

/* 🦋 Magical Butterfly Animation Engine */
.butterfly {
    position: absolute;
    width: 45px;
    height: auto;
    z-index: 50;
    pointer-events: none;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.6));
    opacity: 1;
}

.butterfly-c {
    top: -20px;
    left: -15px;
    transform: rotate(1px);
}

.butterfly-e {
    top: -15px;
    right: -15px;
    transform: rotate(1px);
}

.butterfly.flying-left {
    animation: flyOffLeft 3.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.butterfly.flying-right {
    animation: flyOffRight 3.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes flyOffLeft {
    0% {
        transform: translate(0, 0) rotate(-35deg) scale(1);
        opacity: 1;
    }

    20% {
        transform: translate(-40px, -60px) rotate(-55deg) scale(1.1);
    }

    100% {
        transform: translate(-600px, -800px) rotate(-120deg) scale(0.4);
        opacity: 0;
    }
}

@keyframes flyOffRight {
    0% {
        transform: translate(0, 0) rotate(35deg) scale(1);
        opacity: 1;
    }

    20% {
        transform: translate(40px, -60px) rotate(55deg) scale(1.1);
    }

    100% {
        transform: translate(600px, -800px) rotate(120deg) scale(0.4);
        opacity: 0;
    }
}

.refresh-pulse {
    animation: contentPulse 1s ease-out forwards;
}

@keyframes contentPulse {
    0% {
        filter: brightness(1) saturate(1);
    }

    30% {
        filter: brightness(1.5) saturate(1.2);
        transform: scale(1.01);
    }

    100% {
        filter: brightness(1) saturate(1);
        transform: scale(1);
    }
}

.animate-3d-text {
    animation: float3D 8s ease-in-out infinite;
}

@keyframes float3D {

    0%,
    100% {
        transform: rotateY(-5deg) rotateX(5deg) translateZ(20px);
    }

    50% {
        transform: rotateY(5deg) rotateX(-5deg) translateZ(40px);
    }
}

.perch-return {
    animation: perchReturn 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes perchReturn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.5);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1.1) rotate(10deg);
    }
}

/* 🎁 2026 Hyper-Modern Hero Reveal - The "Future Bloom" Engine */
.hero-gift-reveal .reveal-inner {
    opacity: 0;
    /* Deep starter state: Pushed down, rotated back, compressed */
    transform: translateY(100px) rotateX(45deg) scale(0.8);
    filter: blur(30px);
    will-change: transform, opacity, filter;
    backface-visibility: hidden;
    perspective: 1500px;
    transform-style: preserve-3d;
}

/* Disable existing text masks */
.hero-gift-reveal .reveal-text::after {
    display: none !important;
    content: none !important;
    animation: none !important;
}

/* 🚀 The Activation Trigger - Ultra Smooth Expo Ease */
.hero-gift-reveal.active .reveal-inner {
    animation: futureReveal 1.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

/* 🏁 Precision Sequencing */
.hero-gift-reveal.active .reveal-inner:nth-child(1) {
    animation-delay: 0.1s;
}

.hero-gift-reveal.active .reveal-inner:nth-child(2) {
    animation-delay: 0.25s;
}

.hero-gift-reveal.active .reveal-inner:nth-child(3) {
    animation-delay: 0.4s;
}

/* 🎥 The Animation: Fluid, Heavy, Impactful */
@keyframes futureReveal {
    0% {
        opacity: 0;
        transform: translateY(100px) rotateX(45deg) scale(0.8);
        filter: blur(30px);
        letter-spacing: -5px;
        /* Cinematic compression */
    }

    30% {
        opacity: 1;
        /* Fade in quickly */
        filter: blur(5px);
        /* Residual motion blur */
    }

    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg) scale(1);
        filter: blur(0);
        letter-spacing: normal;
    }
}

/* 🎞️ Global Motion Engine - Scroll Reveals */
.reveal,
.reveal-left,
.reveal-right,
.reveal-fade-up {
    opacity: 0;
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: transform, opacity;
}

/* Base states for directions */
.reveal.active,
.reveal-fade-up.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* Direction: From Left */
.reveal-left {
    transform: translateX(-100px);
}

/* Direction: From Right */
.reveal-right {
    transform: translateX(100px);
}

/* Direction: Fade Up (Default Elegant) */
.reveal-fade-up {
    transform: translateY(80px);
}

/* Collection Pages Styles */
.collection-breadcrumb {
    padding: 12px 6%;
    background: rgba(107, 13, 13, 0.88);
    /* Slightly more solid for text clarity */
    backdrop-filter: blur(20px);
    border-bottom: 0.5px solid rgba(212, 175, 55, 0.2);
    /* Almost invisible border */
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 100px;
    position: relative;
    z-index: 20;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    /* Very light shadow */
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .collection-breadcrumb {
        margin-top: 105px;
        padding: 15px 6%;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .collection-breadcrumb {
        margin-top: 100px;
        padding: 12px 5%;
    }
}

.collection-breadcrumb a {
    color: white !important;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.collection-breadcrumb a:hover {
    color: var(--color-gold-light) !important;
    transform: translateY(-1px);
}

.collection-breadcrumb i.fa-home {
    font-size: 1rem;
    color: var(--color-gold);
}

.collection-breadcrumb i.fa-chevron-right {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
}

.collection-breadcrumb span.breadcrumb-title {
    color: var(--color-gold);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.breadcrumb-subtitle {
    color: rgba(255, 254, 250, 0.7);
    font-size: 0.85rem;
    font-weight: 400;
    font-style: italic;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 15px;
    margin-left: 5px;
    line-height: 1.2;
    max-width: 800px;
    text-transform: none;
    /* Subtitles should stay as sentences */
    letter-spacing: 0;
}

@media (max-width: 992px) {
    .breadcrumb-subtitle {
        display: block;
        width: 100%;
        border-left: none;
        padding-left: 0;
        margin-left: 0;
        margin-top: 8px;
        font-size: 0.8rem;
    }
}

.collection-header-section {
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
    text-align: center;
}

.collection-header-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(107, 13, 13, 0.4), rgba(45, 5, 5, 0.75));
    z-index: 1;
}

/* Specific Banners */
.wedding-banner {
    background-image: url('../assets/images/wedding-collection.png');
}

.thematic-banner {
    background-image: url('../assets/images/Thematic-Occasions.png');
}

.golu-banner {
    background-image: url('../assets/images/golu.png');
}

.return-banner {
    background-image: url('../assets/images/return-gift.png');
}

.collection-header-section h1 {
    position: relative;
    z-index: 2;
    font-size: 4.5rem;
    font-family: 'DM Serif Display', serif;
    color: var(--color-gold);
    letter-spacing: 2px;
    margin: 0;
    transform: perspective(1000px) rotateX(5deg);
    text-shadow:
        0 5px 15px rgba(0, 0, 0, 0.5),
        0 10px 30px rgba(212, 175, 55, 0.2);
    animation: slideUpFade 1.2s var(--ease-out-expo);
}

.collection-header-section .header-accent {
    position: relative;
    z-index: 2;
    width: 60px;
    height: 2px;
    background: var(--color-gold);
    margin-top: 1rem;
    border-radius: 2px;
    box-shadow: 0 0 15px var(--color-gold);
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .collection-header-section {
        height: 350px;
    }

    .collection-header-section h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .collection-header-section {
        height: 300px;
    }

    .collection-header-section h1 {
        font-size: 2.8rem;
    }
}

/* Add a soft transition for section background */
.collection-header-section::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 50px;
    /* Reduced for minimal intrusion */
    background: linear-gradient(to top, var(--color-cream), transparent);
    z-index: 3;
    opacity: 0.7;
    /* Softened to let the image background breathe */
}

.collection-header-section p {
    color: var(--color-text-light);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .collection-header-section h1 {
        font-size: clamp(2.2rem, 8vw, 3rem);
    }

    .collection-header-section p {
        max-width: 90%;
        font-size: 1rem;
    }
}

.collection-filter {
    padding: 1.5rem 5%;
    background: #FFFFFF;
    position: sticky;
    top: 80px;
    z-index: 500;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(166, 137, 38, 0.1);
    display: flex;
    justify-content: center;
}

/* Desktop Filter Buttons */
.filter-btn-group {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid #eee;
    background: transparent;
    color: var(--color-maroon);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-maroon);
    color: white;
    border-color: var(--color-maroon);
}

/* 📱 Mobile Dropdown Filter */
.mobile-filter-container {
    display: none;
    width: 100%;
    max-width: 400px;
}

.filter-select-wrapper {
    position: relative;
    width: 100%;
}

.filter-select-display {
    width: 100%;
    padding: 14px 20px;
    background: white;
    border: 2px solid var(--color-gold-light);
    border-radius: 12px;
    color: var(--color-maroon);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.filter-select-display i {
    transition: transform 0.3s ease;
    color: var(--color-gold);
}

.filter-select-wrapper.active .filter-select-display i {
    transform: rotate(180deg);
}

.filter-options-list {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow-y: auto !important;
    overflow-x: hidden !important;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    visibility: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease-out;
    z-index: 9999;
}

.filter-select-wrapper.active .filter-options-list {
    max-height: 300px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.filter-option {
    padding: 12px 20px;
    color: var(--color-text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f9f9f9;
}

.filter-option:last-child {
    border-bottom: none;
}

.filter-option:hover {
    background: var(--color-cream);
    color: var(--color-maroon);
    padding-left: 25px;
}

.filter-option.active {
    background: var(--color-maroon);
    color: white;
}

@media (max-width: 992px) {
    .filter-btn-group {
        display: none;
    }

    .mobile-filter-container {
        display: block;
    }

    .collection-filter {
        top: 70px;
        padding: 1rem 6%;
    }
}

.collection-container {
    padding: var(--spacing-md) 5%;
}

.folder-section {
    margin-bottom: var(--spacing-lg);
}

.folder-title {
    font-size: 2.2rem;
    color: var(--color-maroon);
    border-left: 5px solid var(--color-gold);
    padding-left: 1.5rem;
    margin-bottom: 2rem;
    font-family: 'DM Serif Display', serif;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    /* Precise 30px gap */
    align-items: stretch;
}

.image-card {
    background: #FFFFFF;
    border-radius: 32px;
    /* Signature organic radius */
    padding: 15px;
    /* Editorial framing */
    overflow: hidden;
    position: relative;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.image-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(107, 13, 13, 0.08);
    /* Warm ambient glow */
    border-color: rgba(212, 175, 55, 0.15);
}

.image-container {
    width: 100%;
    height: 350px;
    border-radius: 20px;
    /* Internal frame radius */
    overflow: hidden;
    position: relative;
    background: #fdfaf5;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.image-card:hover .image-container img {
    transform: scale(1.15);
    /* More dynamic reveal */
}

/* Glass-Minimalist Interaction */
.card-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 30%, rgba(45, 5, 5, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 5;
}

.image-card:hover .card-overlay {
    opacity: 1;
}

.quick-inquire {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--color-maroon);
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: scale(0.9);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-card:hover .quick-inquire {
    transform: scale(1);
}

.quick-inquire:hover {
    background: var(--color-gold);
    color: white;
    transform: scale(1.05);
}

.image-info {
    padding: 1.5rem 0.5rem 1rem;
    text-align: center;
    background: transparent;
    position: relative;
    transition: all 0.4s ease;
}

.image-info h3 {
    font-size: 1.15rem;
    color: var(--color-maroon);
    margin: 0;
    font-weight: 700;
    font-family: 'DM Serif Display', serif;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.image-info::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 45%;
    width: 10%;
    height: 2px;
    background: var(--color-gold);
    opacity: 0;
    transition: all 0.4s ease;
}

.image-card:hover .image-info::after {
    opacity: 1;
    width: 20%;
    left: 40%;
}

.card-badge {
    position: absolute;
    top: 25px;
    /* Respect the 15px card padding + 10px offset */
    left: 25px;
    background: white;
    color: var(--color-maroon);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.6rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* 📱 Responsive Grid System (4-2-1 Pattern) */
@media (max-width: 1200px) {
    .image-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (max-width: 992px) {
    .image-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .image-container {
        height: 300px;
    }

    .image-card {
        padding: 10px;
        border-radius: 24px;
    }
}

@media (max-width: 600px) {
    .image-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 10px;
    }

    .image-container {
        height: 360px;
    }

    .folder-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        text-align: center;
        border-left: none;
        padding-left: 0;
        border-bottom: 3px solid var(--color-gold);
        display: inline-block;
        padding-bottom: 5px;
        width: auto;
        margin-left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .collection-filter {
        top: 70px;
    }
}

/* Stagger Child Utility */
.stagger-parent .stagger-child {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.stagger-parent.active .stagger-child {
    opacity: 1;
    transform: translateY(0);
}