/* ============================================
   DOLLARCHIC'S — CELESTIAL EDITION
   ✦ Sparkles · Floating Gold Dust · Cinematic Light Rays ✦
   Design Philosophy: Digital Alchemy · Haute Couture · Ethereal Luxury
   ============================================ */

/* ========== CSS RESET ========== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ========== DESIGN SYSTEM VARIABLES ========== */
:root {
    /* Obsidian Palette — deep, velvet blacks */
    --obs-void: #04080a;
    --obs-deep: #080f12;
    --obs-mid: #0d1a1f;
    --obs-surface: #111f25;
    --obs-elevated: #162730;
    --obs-highlight: #1e3540;

    /* Liquid Gold — warm, luminous, alive */
    --gold-molten: #c9a227;
    --gold-pure: #e2b842;
    --gold-bright: #f5d070;
    --gold-champagne: #f9e9a8;
    --gold-blush: #fdf5dc;
    --gold-sparkle: rgba(245, 208, 112, 0.6);
    --gold-smoke: rgba(210, 170, 50, 0.08);
    --gold-veil: rgba(210, 170, 50, 0.04);

    /* Alabaster — warm whites, barely-there tones */
    --alabaster: #faf6f0;
    --alabaster-warm: #f4ece0;
    --alabaster-deep: #ecddd0;
    --alabaster-fog: #e4d5c3;

    /* Merlot Smoke — dramatic accent */
    --merlot: #6b1a2e;
    --merlot-mid: #8c2340;
    --merlot-light: rgba(107, 26, 46, 0.15);

    /* Stone & Smoke neutrals */
    --smoke-light: rgba(255, 255, 255, 0.06);
    --smoke-mid: rgba(255, 255, 255, 0.12);
    --smoke-heavy: rgba(255, 255, 255, 0.2);
    --ash: #9a9284;
    --parchment: #d4c9b8;

    /* Gradients */
    --grad-obsidian: linear-gradient(160deg, var(--obs-void) 0%, var(--obs-deep) 40%, #0a1820 100%);
    --grad-gold-luxe: linear-gradient(
        105deg,
        var(--gold-molten) 0%,
        var(--gold-pure) 20%,
        var(--gold-champagne) 38%,
        var(--gold-bright) 50%,
        var(--gold-champagne) 62%,
        var(--gold-pure) 80%,
        var(--gold-molten) 100%
    );
    --grad-gold-subtle: linear-gradient(135deg, rgba(210, 170, 50, 0.12) 0%, rgba(210, 170, 50, 0.04) 100%);
    --grad-card-dark: linear-gradient(180deg, rgba(6, 14, 18, 0) 0%, rgba(6, 14, 18, 0.97) 100%);
    --grad-hero: linear-gradient(160deg, rgba(4, 8, 10, 0.88) 0%, rgba(4, 8, 10, 0.55) 60%, rgba(4, 8, 10, 0.2) 100%);
    --grad-shine: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
    --grad-alabaster: linear-gradient(160deg, var(--alabaster) 0%, var(--alabaster-warm) 100%);
    --grad-radial-gold: radial-gradient(circle at 50% 50%, rgba(210, 170, 50, 0.15) 0%, transparent 70%);
    --grad-radial-sparkle: radial-gradient(circle, rgba(245, 208, 112, 0.4) 0%, transparent 60%);
    --grad-light-ray: repeating-linear-gradient(
        45deg,
        transparent 0%,
        transparent 45%,
        rgba(245, 208, 112, 0.03) 50%,
        transparent 55%,
        transparent 100%
    );

    /* Shadows — deep and atmospheric */
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.18);
    --shadow-lg: 0 20px 56px rgba(0, 0, 0, 0.28);
    --shadow-xl: 0 32px 80px rgba(0, 0, 0, 0.38);
    --shadow-2xl: 0 48px 100px rgba(0, 0, 0, 0.5);
    --shadow-gold-sm: 0 4px 20px rgba(210, 170, 50, 0.2);
    --shadow-gold: 0 16px 48px rgba(210, 170, 50, 0.28);
    --shadow-gold-lg: 0 24px 72px rgba(210, 170, 50, 0.35);
    --shadow-gold-glow: 0 0 60px rgba(210, 170, 50, 0.18), 0 0 120px rgba(210, 170, 50, 0.08);
    --shadow-inset-gold: inset 0 1px 0 rgba(210, 170, 50, 0.3);

    /* Typography — haute editorial */
    --font-display: 'Cormorant Garamond', 'Palatino Linotype', 'Book Antiqua', Georgia, serif;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Josefin Sans', 'Futura', 'Century Gothic', sans-serif;
    --font-mono: 'Courier New', monospace;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 7rem;
    --space-2xl: 10rem;
    --space-3xl: 14rem;

    /* Transitions */
    --ease-luxury: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-cinematic: cubic-bezier(0.77, 0, 0.175, 1);
    --t-fast: 0.25s var(--ease-luxury);
    --t-base: 0.55s var(--ease-luxury);
    --t-slow: 0.85s var(--ease-luxury);
    --t-epic: 1.2s var(--ease-cinematic);

    /* Borders */
    --border-gold: 1px solid rgba(210, 170, 50, 0.35);
    --border-gold-bright: 1px solid rgba(210, 170, 50, 0.65);
    --border-smoke: 1px solid rgba(255, 255, 255, 0.07);
    --border-smoke-mid: 1px solid rgba(255, 255, 255, 0.14);

    /* Z-index */
    --z-negative: -1;
    --z-base: 1;
    --z-overlay: 50;
    --z-nav: 100;
    --z-modal: 1000;
    --z-cursor: 9999;
    --z-loader: 10000;
    --z-particles: -2;
}

/* ========== GOOGLE FONTS IMPORT ========== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Josefin+Sans:wght@100;200;300;400;600&display=swap');

/* ========== BASE ========== */
html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-sans);
    font-weight: 300;
    line-height: 1.7;
    color: var(--obs-mid);
    background-color: var(--alabaster);
    overflow-x: hidden;
    cursor: none;
    position: relative;
}

/* ========== ✦ BACKGROUND ANIMATIONS — CELESTIAL SPARKLES ✦ ========== */

/* Main animated background container */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-particles);
    pointer-events: none;
    overflow: hidden;
}

/* Floating gold dust particles */
.gold-dust-particle {
    position: absolute;
    background: radial-gradient(circle, var(--gold-bright) 0%, var(--gold-pure) 40%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    filter: blur(0.5px);
}

.gold-dust-particle:nth-child(1) { animation: floatDust1 18s ease-in-out infinite; top: 0; left: 10%; width: 4px; height: 4px; }
.gold-dust-particle:nth-child(2) { animation: floatDust2 22s ease-in-out infinite; top: 0; left: 30%; width: 6px; height: 6px; }
.gold-dust-particle:nth-child(3) { animation: floatDust3 15s ease-in-out infinite; top: 0; left: 50%; width: 3px; height: 3px; }
.gold-dust-particle:nth-child(4) { animation: floatDust4 25s ease-in-out infinite; top: 0; left: 70%; width: 5px; height: 5px; }
.gold-dust-particle:nth-child(5) { animation: floatDust5 20s ease-in-out infinite; top: 0; left: 85%; width: 7px; height: 7px; }
.gold-dust-particle:nth-child(6) { animation: floatDust1 30s ease-in-out infinite; top: 0; left: 20%; width: 4px; height: 4px; }
.gold-dust-particle:nth-child(7) { animation: floatDust2 28s ease-in-out infinite; top: 0; left: 60%; width: 5px; height: 5px; }
.gold-dust-particle:nth-child(8) { animation: floatDust3 35s ease-in-out infinite; top: 0; left: 90%; width: 3px; height: 3px; }

@keyframes floatDust1 {
    0% { transform: translate(0vw, 100vh) rotate(0deg) scale(1); opacity: 0; }
    10% { opacity: 0.6; }
    50% { opacity: 0.8; }
    90% { opacity: 0.4; }
    100% { transform: translate(20vw, -20vh) rotate(360deg) scale(0.3); opacity: 0; }
}

@keyframes floatDust2 {
    0% { transform: translate(80vw, 100vh) rotate(0deg) scale(0.8); opacity: 0; }
    10% { opacity: 0.5; }
    50% { opacity: 0.7; }
    90% { opacity: 0.3; }
    100% { transform: translate(60vw, -30vh) rotate(-360deg) scale(0.2); opacity: 0; }
}

@keyframes floatDust3 {
    0% { transform: translate(40vw, 100vh) rotate(0deg) scale(0.6); opacity: 0; }
    15% { opacity: 0.7; }
    55% { opacity: 0.9; }
    85% { opacity: 0.5; }
    100% { transform: translate(50vw, -50vh) rotate(540deg) scale(0.1); opacity: 0; }
}

@keyframes floatDust4 {
    0% { transform: translate(90vw, 100vh) rotate(0deg) scale(1.2); opacity: 0; }
    12% { opacity: 0.8; }
    48% { opacity: 1; }
    88% { opacity: 0.6; }
    100% { transform: translate(10vw, -40vh) rotate(-720deg) scale(0.2); opacity: 0; }
}

@keyframes floatDust5 {
    0% { transform: translate(30vw, 100vh) rotate(0deg) scale(0.5); opacity: 0; }
    20% { opacity: 0.9; }
    60% { opacity: 1; }
    80% { opacity: 0.7; }
    100% { transform: translate(70vw, -60vh) rotate(450deg) scale(0); opacity: 0; }
}

/* ✨ Sparkle twinkling stars ✨ */
.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold-bright);
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 8px rgba(245, 208, 112, 0.8), 0 0 16px rgba(245, 208, 112, 0.4);
}

.sparkle:nth-child(9) { top: 15%; left: 10%; animation: sparkleTwinkle 4s ease-in-out infinite; animation-delay: 0s; }
.sparkle:nth-child(10) { top: 35%; left: 85%; animation: sparkleTwinkle 3.5s ease-in-out infinite; animation-delay: 0.5s; }
.sparkle:nth-child(11) { top: 65%; left: 25%; animation: sparkleTwinkle 4.5s ease-in-out infinite; animation-delay: 1s; }
.sparkle:nth-child(12) { top: 80%; left: 70%; animation: sparkleTwinkle 3.8s ease-in-out infinite; animation-delay: 1.5s; }
.sparkle:nth-child(13) { top: 20%; left: 55%; animation: sparkleTwinkle 5s ease-in-out infinite; animation-delay: 0.8s; }
.sparkle:nth-child(14) { top: 50%; left: 15%; animation: sparkleTwinkle 4.2s ease-in-out infinite; animation-delay: 2s; }
.sparkle:nth-child(15) { top: 75%; left: 45%; animation: sparkleTwinkle 3.6s ease-in-out infinite; animation-delay: 0.3s; }
.sparkle:nth-child(16) { top: 10%; left: 40%; animation: sparkleTwinkle 4.8s ease-in-out infinite; animation-delay: 1.2s; }
.sparkle:nth-child(17) { top: 45%; left: 95%; animation: sparkleTwinkle 5.2s ease-in-out infinite; animation-delay: 0.7s; }
.sparkle:nth-child(18) { top: 85%; left: 5%; animation: sparkleTwinkle 3.3s ease-in-out infinite; animation-delay: 2.2s; }
.sparkle:nth-child(19) { top: 55%; left: 50%; animation: sparkleTwinkle 4.6s ease-in-out infinite; animation-delay: 1.8s; }
.sparkle:nth-child(20) { top: 30%; left: 75%; animation: sparkleTwinkle 3.9s ease-in-out infinite; animation-delay: 0.4s; }
.sparkle:nth-child(21) { top: 70%; left: 60%; animation: sparkleTwinkle 4.4s ease-in-out infinite; animation-delay: 2.5s; }
.sparkle:nth-child(22) { top: 5%; left: 30%; animation: sparkleTwinkle 5.5s ease-in-out infinite; animation-delay: 1.1s; }
.sparkle:nth-child(23) { top: 60%; left: 80%; animation: sparkleTwinkle 3.7s ease-in-out infinite; animation-delay: 0.9s; }

@keyframes sparkleTwinkle {
    0%, 100% { opacity: 0; transform: scale(0.5); box-shadow: 0 0 4px var(--gold-bright); }
    50% { opacity: 1; transform: scale(1.2); box-shadow: 0 0 20px var(--gold-bright), 0 0 40px rgba(245, 208, 112, 0.6); }
}

/* Floating orbs — larger luminous spheres */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.3;
    animation: orbFloat 12s ease-in-out infinite alternate;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(210, 170, 50, 0.2) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation-duration: 15s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(210, 170, 50, 0.15) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    animation-duration: 20s;
    animation-delay: -5s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(245, 208, 112, 0.12) 0%, transparent 70%);
    top: 40%;
    left: 20%;
    animation-duration: 18s;
}

@keyframes orbFloat {
    from { transform: translate(0, 0) scale(1); opacity: 0.2; }
    to { transform: translate(5%, 5%) scale(1.1); opacity: 0.4; }
}

/* Light rays sweeping across */
.light-ray {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 208, 112, 0.08), transparent);
    animation: sweepRay 8s ease-in-out infinite;
    pointer-events: none;
    transform: skewX(-20deg);
}

.light-ray:nth-child(24) { animation-delay: 0s; }
.light-ray:nth-child(25) { animation-delay: 4s; width: 60%; left: -60%; }
.light-ray:nth-child(26) { animation-delay: 2s; width: 120%; left: -120%; background: linear-gradient(90deg, transparent, rgba(245, 208, 112, 0.05), transparent); }

@keyframes sweepRay {
    0% { left: -100%; opacity: 0; }
    30% { opacity: 1; }
    70% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

/* ✦ Liquid gold drip animation for hero section ✦ */
.gold-drip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-pure), var(--gold-champagne), var(--gold-pure), transparent);
    animation: dripPulse 3s ease-in-out infinite;
}

@keyframes dripPulse {
    0%, 100% { opacity: 0.3; height: 1px; }
    50% { opacity: 1; height: 3px; box-shadow: 0 0 20px var(--gold-pure); }
}

/* Animated gold border for sections */
.gold-border-animated {
    position: relative;
}

.gold-border-animated::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-pure), transparent);
    animation: borderGlow 4s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.8; box-shadow: 0 0 10px var(--gold-pure); }
}

/* ========== CUSTOM CURSOR — liquid mercury ========== */
.cursor-dot {
    width: 5px;
    height: 5px;
    background: var(--gold-pure);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: var(--z-cursor);
    transform: translate(-50%, -50%);
    transition: transform 0.08s ease;
    mix-blend-mode: difference;
    box-shadow: 0 0 10px var(--gold-pure);
}

.cursor-outline {
    width: 36px;
    height: 36px;
    border: 1px solid var(--gold-pure);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: var(--z-cursor);
    transform: translate(-50%, -50%);
    transition: transform 0.22s var(--ease-luxury),
                width 0.3s var(--ease-luxury),
                height 0.3s var(--ease-luxury),
                opacity 0.3s ease;
    opacity: 0.7;
    box-shadow: 0 0 20px rgba(210, 170, 50, 0.3);
}

.cursor-outline.hovering {
    width: 64px;
    height: 64px;
    opacity: 0.4;
    border-color: var(--gold-bright);
    box-shadow: 0 0 40px rgba(245, 208, 112, 0.4);
}

/* ========== TYPOGRAPHY — grand editorial ========== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.1;
    color: var(--obs-deep);
    letter-spacing: -0.01em;
}

h1 {
    font-size: clamp(3.5rem, 7vw, 7rem);
    font-weight: 300;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    letter-spacing: -0.02em;
}

h3 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 400;
}

h4 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 400;
}

.display-italic {
    font-style: italic;
    font-weight: 300;
    color: var(--gold-molten);
}

p {
    margin-bottom: 1rem;
    color: var(--ash);
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    font-weight: 300;
}

/* ========== CONTAINER ========== */
.container {
    max-width: 1440px;
    width: 88%;
    margin: 0 auto;
    padding: 0 var(--space-md);
    position: relative;
    z-index: var(--z-base);
}

/* ========== UTILITY CLASSES ========== */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }
.hidden      { display: none !important; }
.visible     { display: block !important; }

.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }

/* ========== TEXT GRADIENT WITH SPARKLE ========== */
.text-gradient {
    background: var(--grad-gold-luxe);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200% 100%;
    animation: goldShimmer 4s ease infinite, textSparkle 3s ease-in-out infinite;
    position: relative;
    display: inline-block;
}

@keyframes goldShimmer {
    0%   { background-position: 100% 0; }
    50%  { background-position: 0% 0; }
    100% { background-position: 100% 0; }
}

@keyframes textSparkle {
    0%, 100% { text-shadow: 0 0 5px rgba(245, 208, 112, 0); }
    50% { text-shadow: 0 0 15px rgba(245, 208, 112, 0.5); }
}

.text-accent {
    color: var(--gold-pure);
}

/* ========== LOADING SCREEN — cinematic ========== */
.loader {
    position: fixed;
    inset: 0;
    background: var(--obs-void);
    z-index: var(--z-loader);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1s var(--ease-cinematic), visibility 1s;
}

.loader.hide {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    position: relative;
}

.loader-ring {
    width: 80px;
    height: 80px;
    margin: 0 auto 2.5rem;
    position: relative;
}

.loader-ring::before,
.loader-ring::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid transparent;
}

.loader-ring::before {
    border-top-color: var(--gold-pure);
    border-right-color: var(--gold-molten);
    animation: spinGold 1.4s linear infinite;
}

.loader-ring::after {
    border-bottom-color: rgba(210, 170, 50, 0.3);
    animation: spinGold 2s linear infinite reverse;
}

@keyframes spinGold {
    to { transform: rotate(360deg); }
}

.loader-ring-inner {
    position: absolute;
    inset: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--gold-pure);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation: pulseDiamond 1.4s ease infinite alternate;
}

@keyframes pulseDiamond {
    from { opacity: 0.4; transform: translate(-50%, -50%) scale(0.8) rotate(0deg); }
    to   { opacity: 1;   transform: translate(-50%, -50%) scale(1.2) rotate(45deg); }
}

.loader-text {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 300;
    letter-spacing: 0.25em;
    color: var(--gold-pure);
    text-transform: uppercase;
}

.loader-text span {
    display: inline-block;
    animation: floatIn 0.6s var(--ease-luxury) both;
}

.loader-text span:nth-child(1)  { animation-delay: 0.05s; }
.loader-text span:nth-child(2)  { animation-delay: 0.10s; }
.loader-text span:nth-child(3)  { animation-delay: 0.15s; }
.loader-text span:nth-child(4)  { animation-delay: 0.20s; }
.loader-text span:nth-child(5)  { animation-delay: 0.25s; }
.loader-text span:nth-child(6)  { animation-delay: 0.30s; }
.loader-text span:nth-child(7)  { animation-delay: 0.35s; }
.loader-text span:nth-child(8)  { animation-delay: 0.40s; }
.loader-text span:nth-child(9)  { animation-delay: 0.45s; }
.loader-text span:nth-child(10) { animation-delay: 0.50s; }

@keyframes floatIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.loader-content p {
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-family: var(--font-sans);
    font-weight: 200;
}

/* ========== NAVIGATION — obsidian glass ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-nav);
    padding: 2rem 0;
    transition: all 0.7s var(--ease-luxury);
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 5%;
    width: 90%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-pure), transparent);
    opacity: 0;
    transition: opacity 0.7s ease;
}

.navbar.scrolled {
    background: rgba(4, 8, 10, 0.88);
    backdrop-filter: blur(24px) saturate(1.8);
    -webkit-backdrop-filter: blur(24px) saturate(1.8);
    padding: 1.1rem 0;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
}

.navbar.scrolled::after {
    opacity: 1;
}

.nav-container {
    max-width: 1440px;
    width: 88%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--alabaster);
    text-decoration: none;
    letter-spacing: 0.08em;
    position: relative;
    transition: color var(--t-fast);
}

.logo-icon {
    color: var(--gold-pure);
    margin-right: 0.2rem;
    font-style: italic;
    animation: iconPulse 2s ease-in-out infinite;
    display: inline-block;
}

@keyframes iconPulse {
    0%, 100% { text-shadow: 0 0 0px transparent; }
    50% { text-shadow: 0 0 8px var(--gold-pure); }
}

.logo-sub {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.55rem;
    font-weight: 200;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold-molten);
    margin-top: -0.2rem;
    text-align: right;
}

.nav-menu {
    display: flex;
    gap: 3rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: color var(--t-fast);
    position: relative;
    padding-bottom: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-pure);
    transition: width var(--t-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-champagne);
}

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

.nav-icons {
    display: flex;
    gap: 1.75rem;
    align-items: center;
}

.icon-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    cursor: pointer;
    transition: color var(--t-fast), transform var(--t-fast);
    position: relative;
    display: flex;
    align-items: center;
}

.icon-btn:hover {
    color: var(--gold-pure);
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -14px;
    background: var(--gold-molten);
    color: var(--obs-deep);
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0;
}

.menu-toggle {
    display: none;
}

/* ========== BUTTONS — sculptural, deliberate ========== */
.btn-primary,
.btn-secondary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    padding: 1.1rem 2.5rem;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 300;
    letter-spacing: 0.22em;
    text-decoration: none;
    text-transform: uppercase;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: var(--t-base);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before,
.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: var(--grad-shine);
    transition: left 0.7s var(--ease-luxury);
    z-index: -1;
}

.btn-primary:hover::before,
.btn-outline:hover::before {
    left: 150%;
}

.btn-primary {
    background: var(--gold-molten);
    color: var(--obs-deep);
    box-shadow: var(--shadow-gold-sm);
}

.btn-primary:hover {
    background: var(--gold-pure);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--alabaster);
    border: 1px solid rgba(250, 246, 240, 0.35);
    letter-spacing: 0.2em;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(250, 246, 240, 0.06);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t-base);
    z-index: -1;
}

.btn-secondary:hover {
    color: var(--alabaster);
    border-color: rgba(250, 246, 240, 0.7);
    transform: translateY(-3px);
}

.btn-secondary:hover::after {
    transform: scaleX(1);
}

.btn-outline {
    background: transparent;
    color: var(--obs-deep);
    border: 1px solid rgba(201, 162, 39, 0.5);
}

.btn-outline:hover {
    background: var(--obs-deep);
    color: var(--gold-champagne);
    border-color: var(--obs-deep);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.full-width { width: 100%; }

/* ========== HERO — cinematic viewport ========== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 760px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-light-ray);
    pointer-events: none;
    z-index: 3;
    animation: rayShift 15s linear infinite;
}

@keyframes rayShift {
    from { background-position: 0 0; }
    to { background-position: 100% 0; }
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 2s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.38) contrast(1.1) saturate(0.85);
    animation: heroBreath 18s ease-in-out infinite alternate;
    transform-origin: center center;
}

@keyframes heroBreath {
    from { transform: scale(1) translateY(0); }
    to   { transform: scale(1.06) translateY(-1%); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(0,0,0,0.6) 0%, transparent 70%),
        var(--grad-hero);
}

.hero-overlay::after {
    content: '';
    position: absolute;
    left: 6%;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--gold-molten), transparent);
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--alabaster);
    padding: 0 var(--space-md);
    padding-top: 6rem;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.badge-line {
    width: 44px;
    height: 1px;
    background: var(--gold-pure);
    opacity: 0.7;
}

.hero-badge span {
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    font-weight: 200;
    text-transform: uppercase;
    color: var(--gold-champagne);
    opacity: 0.9;
}

.hero-title {
    font-size: clamp(3rem, 7.5vw, 7.5rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--alabaster);
    letter-spacing: -0.02em;
    line-height: 1.0;
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 200;
    letter-spacing: 0.15em;
    margin-bottom: 3rem;
    max-width: 520px;
    color: rgba(250, 246, 240, 0.65);
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero sparkle overlay */
.hero-sparkles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.hero-sparkles .sparkle {
    animation-duration: 3s;
}

/* Scroll indicator — refined */
.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
}

.hero-scroll span {
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--font-sans);
    font-size: 0.58rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.75rem;
}

.scroll-mouse {
    width: 22px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    margin: 0 auto;
    position: relative;
}

.scroll-mouse::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 1.5px;
    height: 7px;
    background: var(--gold-pure);
    border-radius: 2px;
    animation: scrollDrop 2.4s var(--ease-luxury) infinite;
}

@keyframes scrollDrop {
    0%   { transform: translateX(-50%) translateY(0); opacity: 1; }
    60%  { transform: translateX(-50%) translateY(12px); opacity: 0; }
    61%  { transform: translateX(-50%) translateY(0); opacity: 0; }
    100% { transform: translateX(-50%) translateY(0); opacity: 1; }
}

/* ========== SECTIONS — generous breathing room ========== */
section {
    padding: var(--space-2xl) 0;
    position: relative;
    z-index: var(--z-base);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-subtitle {
    font-family: var(--font-sans);
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-molten);
    font-weight: 300;
    display: inline-block;
    margin-bottom: 1.25rem;
    position: relative;
}

.section-title {
    margin-bottom: 1rem;
}

.section-line {
    width: 40px;
    height: 1px;
    background: var(--grad-gold-luxe);
    margin: 1.5rem auto 0;
}

.section-description {
    max-width: 560px;
    margin: 1.25rem auto 0;
    color: var(--ash);
    font-size: 0.875rem;
    line-height: 1.8;
}

/* ========== SIGNATURE COLLECTIONS — gallery layout ========== */
.signature-collections {
    background: var(--alabaster);
    overflow: hidden;
    position: relative;
}

/* Atmospheric grain texture */
.signature-collections::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.4;
    z-index: 0;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    position: relative;
    z-index: 1;
}

.collection-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 600px;
}

.card-background {
    position: absolute;
    inset: 0;
}

.card-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.4s var(--ease-cinematic),
                filter 0.8s ease;
    filter: brightness(0.72) saturate(0.9);
}

.collection-card:hover .card-image img {
    transform: scale(1.1);
    filter: brightness(0.6) saturate(1.1);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(4, 8, 10, 0.92) 0%, rgba(4, 8, 10, 0.15) 50%, transparent 100%),
        linear-gradient(to right, rgba(4, 8, 10, 0.3) 0%, transparent 50%);
}

.card-border-reveal {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(210, 170, 50, 0);
    transition: border-color 0.6s ease;
    pointer-events: none;
    z-index: 3;
}

.collection-card:hover .card-border-reveal {
    border-color: rgba(210, 170, 50, 0.4);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem;
    color: var(--alabaster);
    z-index: 2;
    transform: translateY(12px);
    transition: transform var(--t-slow);
}

.collection-card:hover .card-content {
    transform: translateY(0);
}

.card-number {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: var(--gold-molten);
    margin-bottom: 1.25rem;
    display: block;
    font-style: italic;
}

.card-icon {
    width: 52px;
    height: 52px;
    background: rgba(210, 170, 50, 0.1);
    border: 1px solid rgba(210, 170, 50, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    color: var(--gold-pure);
    transition: background var(--t-fast), border-color var(--t-fast);
}

.collection-card:hover .card-icon {
    background: rgba(210, 170, 50, 0.2);
    border-color: rgba(210, 170, 50, 0.6);
}

.card-content h3 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 300;
    margin-bottom: 0.6rem;
    color: var(--alabaster);
    letter-spacing: -0.01em;
}

.card-content p {
    color: rgba(250, 246, 240, 0.65);
    margin-bottom: 1rem;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    line-height: 1.7;
}

.card-stats {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.card-stats span {
    font-family: var(--font-sans);
    font-size: 0.58rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3rem 0.85rem;
    border: 1px solid rgba(210, 170, 50, 0.2);
    color: var(--gold-champagne);
    background: rgba(210, 170, 50, 0.05);
}

.card-link {
    color: var(--gold-pure);
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 300;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: gap var(--t-fast), color var(--t-fast);
}

.card-link:hover {
    gap: 1.5rem;
    color: var(--gold-champagne);
}

.card-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.8s ease;
    background: radial-gradient(ellipse at 50% 80%, rgba(210, 170, 50, 0.12) 0%, transparent 70%);
    z-index: 1;
}

.collection-card:hover .card-glow {
    opacity: 1;
}

/* ========== COMING SOON — atmospheric ========== */
.coming-soon {
    background: var(--obs-void);
    position: relative;
    overflow: hidden;
}

.coming-soon-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.06;
    filter: saturate(0.3);
}

.coming-soon::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(210, 170, 50, 0.15) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.coming-soon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-molten), transparent);
    opacity: 0.4;
}

.coming-soon-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    color: var(--alabaster);
}

.coming-soon-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(210, 170, 50, 0.07);
    border: 1px solid rgba(210, 170, 50, 0.3);
    font-family: var(--font-sans);
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 200;
    color: var(--gold-champagne);
    margin-bottom: 2.5rem;
}

.coming-soon-content h2 {
    color: var(--alabaster);
    margin-bottom: 1.5rem;
}

.coming-soon-content p {
    color: rgba(250, 246, 240, 0.5);
}

.coming-soon-items {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 3.5rem 0;
    flex-wrap: wrap;
}

.soon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.soon-item:hover {
    transform: translateY(-5px);
}

.soon-item i {
    font-size: 1.75rem;
    color: var(--gold-pure);
    opacity: 0.8;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.soon-item:hover i {
    transform: translateY(-5px);
    opacity: 1;
}

.soon-item span {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 200;
    color: rgba(250, 246, 240, 0.55);
}

/* ========== FEATURED PREVIEW ========== */
.featured-preview {
    padding: var(--space-xl) 0;
    background: var(--alabaster-warm);
    position: relative;
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.view-all-link {
    color: var(--gold-molten);
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 0.62rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: gap var(--t-fast), color var(--t-fast);
}

.view-all-link:hover {
    gap: 1.5rem;
    color: var(--obs-deep);
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.product-card-preview {
    background: var(--alabaster);
    overflow: hidden;
    transition: transform var(--t-base), box-shadow var(--t-base);
    cursor: pointer;
    border: 1px solid var(--alabaster-fog);
}

.product-card-preview:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(210, 170, 50, 0.2);
}

.product-image-preview {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.product-image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease-cinematic),
                filter 0.8s ease;
    filter: saturate(0.95);
}

.product-card-preview:hover .product-image-preview img {
    transform: scale(1.08);
    filter: saturate(1.05);
}

.product-info-preview {
    padding: 1.25rem;
    text-align: center;
    border-top: 1px solid var(--alabaster-fog);
}

.product-name-preview {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--obs-mid);
    margin-bottom: 0.35rem;
}

.product-price-preview {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: var(--gold-molten);
    font-weight: 300;
}

/* ========== PRODUCTS SECTION — editorial grid ========== */
.products-section {
    padding: var(--space-xl) 0;
    background: var(--alabaster);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2px;
}

.product-card {
    background: var(--alabaster-warm);
    overflow: hidden;
    transition: var(--t-base);
    border: 1px solid transparent;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(210, 170, 50, 0.15);
    z-index: 2;
    position: relative;
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease-cinematic), filter 0.8s ease;
    filter: saturate(0.9) brightness(0.98);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
    filter: saturate(1) brightness(1);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold-molten);
    color: var(--obs-deep);
    padding: 0.2rem 0.85rem;
    font-family: var(--font-sans);
    font-size: 0.55rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    z-index: 2;
}

.product-actions {
    position: absolute;
    bottom: -70px;
    left: 0;
    right: 0;
    display: flex;
    gap: 0;
    transition: bottom 0.5s var(--ease-luxury);
}

.product-card:hover .product-actions {
    bottom: 0;
}

.product-action-btn {
    flex: 1;
    padding: 1rem;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: var(--t-fast);
}

.product-action-btn:first-child {
    background: var(--obs-deep);
    color: var(--alabaster);
}

.product-action-btn:first-child:hover {
    background: var(--obs-surface);
}

.product-action-btn:last-child {
    background: var(--gold-molten);
    color: var(--obs-deep);
}

.product-action-btn:last-child:hover {
    background: var(--gold-pure);
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-category {
    font-family: var(--font-sans);
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-molten);
    margin-bottom: 0.6rem;
    font-weight: 300;
}

.product-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--obs-mid);
    margin-bottom: 0.4rem;
}

.product-price {
    font-family: var(--font-sans);
    color: var(--gold-molten);
    font-weight: 300;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
}

/* ========== PAGE HEADER — immersive ========== */
.page-header {
    position: relative;
    height: 58vh;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.4) saturate(0.85);
    animation: heroBreath 20s ease-in-out infinite alternate;
}

.scent-header .page-header-bg {
    background-image: url('https://images.unsplash.com/photo-1594035910387-fea47794261f?w=2000');
}

.bags-header .page-header-bg {
    background-image: url('https://images.unsplash.com/photo-1590874103328-eac38a683ce7?w=2000');
}

.page-header-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(4, 8, 10, 0.7) 0%, rgba(4, 8, 10, 0.2) 100%),
        linear-gradient(to top, rgba(4, 8, 10, 0.5) 0%, transparent 60%);
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    color: var(--alabaster);
}

.breadcrumb {
    margin-bottom: 2rem;
    font-family: var(--font-sans);
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(250, 246, 240, 0.45);
    font-weight: 200;
}

.breadcrumb a {
    color: rgba(250, 246, 240, 0.45);
    text-decoration: none;
    transition: color var(--t-fast);
}

.breadcrumb a:hover {
    color: var(--gold-pure);
}

.breadcrumb i {
    margin: 0 0.75rem;
    font-size: 0.5rem;
    opacity: 0.5;
}

.page-header-content h1 {
    color: var(--alabaster);
}

/* ========== FILTER BAR — refined controls ========== */
.scent-filter-bar,
.bags-filter-bar {
    background: var(--alabaster);
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--alabaster-fog);
    position: sticky;
    top: 78px;
    z-index: 90;
    backdrop-filter: blur(12px);
}

.filter-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-group {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.45rem 1.25rem;
    background: transparent;
    border: 1px solid var(--alabaster-fog);
    cursor: pointer;
    transition: all var(--t-fast);
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ash);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--obs-deep);
    color: var(--gold-champagne);
    border-color: var(--obs-deep);
}

.sort-select {
    padding: 0.45rem 1.5rem;
    border: 1px solid var(--alabaster-fog);
    background: transparent;
    cursor: pointer;
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ash);
    appearance: none;
}

/* ========== TESTIMONIALS — editorial quote ========== */
.testimonials {
    background: var(--obs-mid);
    overflow: hidden;
    position: relative;
}

/* Gold grid lines */
.testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(210, 170, 50, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(210, 170, 50, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.testimonial-wrapper {
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.quote-icon {
    font-size: 4rem;
    color: var(--gold-pure);
    opacity: 0.2;
    margin-bottom: 2rem;
    font-family: var(--font-display);
    font-style: italic;
    line-height: 1;
}

.testimonial p {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-style: italic;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 2.5rem;
    color: var(--alabaster-warm);
    letter-spacing: 0.01em;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
}

.author-avatar img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(210, 170, 50, 0.4);
    filter: grayscale(20%);
}

.testimonial-author h4 {
    margin-bottom: 0.2rem;
    color: var(--alabaster);
    font-size: 1rem;
    font-weight: 400;
    font-family: var(--font-display);
    letter-spacing: 0.05em;
}

.testimonial-author span {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    color: var(--gold-molten);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 200;
}

/* ========== NEWSLETTER — obsidian card ========== */
.newsletter {
    padding: var(--space-xl) 0;
    background: var(--alabaster-warm);
}

.newsletter-card {
    background: var(--obs-void);
    overflow: hidden;
    position: relative;
}

/* Fine grid overlay */
.newsletter-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(210, 170, 50, 0.08) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.6;
}

/* Top gold border */
.newsletter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--grad-gold-luxe);
    z-index: 2;
}

.newsletter-content {
    position: relative;
    z-index: 2;
    padding: 5rem 4rem;
    text-align: center;
    color: var(--alabaster);
}

.newsletter-content h3 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    color: var(--alabaster);
    margin-bottom: 0.75rem;
    font-weight: 300;
}

.newsletter-content p {
    color: rgba(250, 246, 240, 0.45);
    font-size: 0.8rem;
}

.input-group {
    display: flex;
    max-width: 520px;
    margin: 2.5rem auto 0;
}

.input-group input {
    flex: 1;
    padding: 1.1rem 1.75rem;
    border: 1px solid rgba(210, 170, 50, 0.2);
    border-right: none;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    outline: none;
    background: rgba(255, 255, 255, 0.04);
    color: var(--alabaster);
    transition: border-color var(--t-fast), background var(--t-fast);
}

.input-group input::placeholder {
    color: rgba(250, 246, 240, 0.3);
    font-weight: 200;
}

.input-group input:focus {
    border-color: rgba(210, 170, 50, 0.5);
    background: rgba(255, 255, 255, 0.07);
}

.input-group button {
    padding: 1.1rem 2.25rem;
    background: var(--gold-molten);
    border: none;
    color: var(--obs-deep);
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background var(--t-fast), transform var(--t-fast);
    white-space: nowrap;
}

.input-group button:hover {
    background: var(--gold-pure);
    transform: translateX(2px);
}

.newsletter-note {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    opacity: 0.3;
    margin-top: 1.25rem;
    letter-spacing: 0.1em;
}

/* ========== CART SIDEBAR — premium panel ========== */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 480px;
    max-width: 92vw;
    height: 100vh;
    background: var(--alabaster);
    z-index: var(--z-modal);
    transition: right var(--t-base);
    box-shadow: var(--shadow-2xl);
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(210, 170, 50, 0.15);
}

.cart-sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grad-gold-luxe);
}

.cart-sidebar.open {
    right: 0;
}

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(4, 8, 10, 0.75);
    backdrop-filter: blur(8px);
    z-index: calc(var(--z-modal) - 1);
    opacity: 0;
    visibility: hidden;
    transition: var(--t-base);
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-header {
    padding: 2rem;
    border-bottom: 1px solid var(--alabaster-fog);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--obs-mid);
    letter-spacing: 0.02em;
}

.close-cart {
    background: none;
    border: 1px solid var(--alabaster-fog);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--t-fast);
    padding: 0.5rem;
    color: var(--ash);
    display: flex;
    align-items: center;
}

.close-cart:hover {
    border-color: var(--gold-molten);
    color: var(--gold-molten);
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
    scrollbar-width: thin;
    scrollbar-color: var(--alabaster-fog) transparent;
}

.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-cart i {
    font-size: 2.5rem;
    color: var(--alabaster-fog);
    margin-bottom: 1.5rem;
}

.empty-cart p {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--ash);
}

.cart-footer {
    padding: 2rem;
    border-top: 1px solid var(--alabaster-fog);
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
    color: var(--obs-mid);
    letter-spacing: 0.02em;
}

.cart-shipping-note {
    font-family: var(--font-sans);
    font-size: 0.62rem;
    color: var(--ash);
    text-align: center;
    margin-bottom: 1.75rem;
    letter-spacing: 0.1em;
    font-weight: 200;
}

/* ========== FOOTER — obsidian editorial ========== */
.footer {
    background: var(--obs-void);
    color: var(--alabaster);
    padding: var(--space-xl) 0 var(--space-md);
    position: relative;
}

/* Top gold rule */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-molten), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--alabaster);
    letter-spacing: 0.06em;
}

.footer-logo p {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 200;
    letter-spacing: 0.05em;
    color: rgba(250, 246, 240, 0.4);
    line-height: 1.8;
    margin-top: 0.75rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(250, 246, 240, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all var(--t-fast);
}

.social-links a:hover {
    border-color: var(--gold-molten);
    color: var(--gold-molten);
    background: rgba(210, 170, 50, 0.06);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 300;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--gold-molten);
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 0.75rem; }

.footer-col ul li a {
    color: rgba(250, 246, 240, 0.4);
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 200;
    letter-spacing: 0.04em;
    transition: all var(--t-fast);
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--gold-champagne);
    padding-left: 6px;
}

.footer-bottom {
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 200;
    letter-spacing: 0.1em;
    color: rgba(250, 246, 240, 0.25);
    margin: 0;
}

.payment-icons {
    display: flex;
    gap: 1rem;
    font-size: 1.2rem;
    color: rgba(250, 246, 240, 0.25);
}

/* ========== SCROLL REVEAL ANIMATIONS ========== */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUpIn 1s var(--ease-luxury) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.35s; }
.delay-4 { animation-delay: 0.5s; }

@keyframes fadeUpIn {
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s var(--ease-luxury), transform 1s var(--ease-luxury);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-luxury), transform 0.8s var(--ease-luxury);
}

.reveal-stagger.active > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0s; }
.reveal-stagger.active > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.12s; }
.reveal-stagger.active > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.24s; }
.reveal-stagger.active > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.36s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .collections-grid {
        grid-template-columns: 1fr;
    }

    .collections-grid .collection-card {
        height: 520px;
    }
}

@media (max-width: 768px) {
    :root {
        --space-xl: 5rem;
        --space-2xl: 7rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: var(--obs-void);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: right var(--t-base);
        z-index: calc(var(--z-nav) + 1);
        border-left: 1px solid rgba(210, 170, 50, 0.15);
    }

    .nav-menu.open {
        right: 0;
    }

    .menu-toggle {
        display: block;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .preview-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .filter-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .coming-soon-items {
        gap: 2rem;
    }

    .newsletter-content {
        padding: 3rem 2rem;
    }

    .input-group {
        flex-direction: column;
    }

    .input-group input,
    .input-group button {
        width: 100%;
        border-radius: 50px;
    }

    .input-group input {
        border-right: 1px solid rgba(210, 170, 50, 0.2);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    body {
        cursor: auto;
    }

    .cursor-dot,
    .cursor-outline {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        width: 94%;
        padding: 0 var(--space-sm);
    }

    .card-content {
        padding: 1.75rem;
    }

    .testimonial p {
        font-size: 1.25rem;
    }

    .newsletter-content {
        padding: 2.5rem 1.5rem;
    }

    .coming-soon-items {
        gap: 1.5rem;
    }
}

/* ========== NOTIFICATION TOAST ========== */
.notification-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--obs-void);
    color: var(--alabaster);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: var(--z-modal);
    transform: translateX(400px);
    transition: transform 0.4s var(--ease-luxury);
    border-left: 2px solid var(--gold-pure);
    box-shadow: var(--shadow-lg);
}

.notification-toast.show {
    transform: translateX(0);
}

.notification-toast i {
    color: var(--gold-pure);
    font-size: 1.1rem;
}

/* ========== UTILITY EXTRA CLASSES ========== */
.glass-effect {
    background: rgba(4, 8, 10, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hover-lift {
    transition: transform var(--t-base), box-shadow var(--t-base);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

/* ========== END ========== */