:root { --bg-color:#030303; --text-color:#F5F5F5; --gold:#CDB88D; --font-serif:'Cinzel',serif; --font-sans:'Syne',sans-serif; }
* { margin:0; padding:0; box-sizing:border-box; }
::selection { background: rgba(205,184,141,0.9); color: #030303; }
::-moz-selection { background: rgba(205,184,141,0.9); color: #030303; }
body { background:var(--bg-color); color:var(--text-color); font-family:var(--font-sans); overflow-x:hidden; cursor:none; }

/* Preloader */
.preloader {
    position: fixed; inset: 0; background: var(--bg-color); z-index: 99999;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.loader-num { font-family: var(--font-sans); font-size: 10vw; color: var(--gold); }
.loader-text { font-family: var(--font-serif); font-size: 14px; letter-spacing: 0.4em; color: var(--gold); text-transform: uppercase; margin-top: 20px;}

.noise { position:fixed; inset:0; z-index:9000; pointer-events:none; opacity:0.06; background:url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E'); }
canvas#fluid { position:fixed; top:0; left:0; width:100vw; height:100vh; z-index:-1; opacity:0.8; filter:blur(40px); }

/* Luxury Cursor */
.cursor { position:fixed; width:4px; height:4px; background:var(--gold); border-radius:50%; pointer-events:none; z-index:10000; mix-blend-mode:difference; transform:translate(-50%,-50%); transition:opacity 0.3s; }
.cursor-ring { position:fixed; width:40px; height:40px; border:1px solid rgba(205,184,141,0.3); border-radius:50%; pointer-events:none; z-index:9999; transform:translate(-50%,-50%); transition:width 0.6s cubic-bezier(0.16, 1, 0.3, 1), height 0.6s cubic-bezier(0.16, 1, 0.3, 1), background 0.6s, border-color 0.6s; }
body.hover .cursor-ring { width:80px; height:80px; background:rgba(205,184,141,0.3); border-color:var(--gold); }

/* Buttons */
.btn-wrap { display:inline-block; }
.btn { display:inline-flex; padding:24px 50px; font-family:var(--font-sans); font-size:11px; font-weight:600; text-transform:uppercase; letter-spacing:0.15em; color:var(--text-color); text-decoration:none; border:1px solid rgba(205,184,141,0.3); position:relative; overflow:hidden; cursor:pointer; box-shadow: inset 0 0 0 0 var(--gold); transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);}
.btn:hover { color:var(--bg-color); border-color:var(--gold); box-shadow: inset 0 -100px 0 0 var(--gold); }

nav { position:fixed; top:0; width:100%; padding:40px 5vw; display:flex; justify-content:space-between; align-items:center; z-index:100; mix-blend-mode:difference; }
.logo { font-family:var(--font-serif); font-size:28px; color:var(--text-color); text-decoration:none; letter-spacing:0.2em; text-transform:uppercase;}
.nav-links { display:flex; gap:60px; font-size:10px; text-transform:uppercase; letter-spacing:0.2em; }
.nav-links a { color:rgba(205,184,141,0.5); text-decoration:none; transition:color 0.4s;}
.nav-links a:hover { color:var(--gold); }

/* Layering logic */
.relative-z { position: relative; z-index: 10; }

/* Enhanced Hero */
.hero { height:100vh; display:flex; flex-direction:column; justify-content:center; align-items:center; text-align:center; padding:0 5vw; position:relative; overflow: hidden; background: transparent; z-index:10;}
.hero-content { position: relative; z-index: 2; width: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; pointer-events: none;}
.hero-content .btn-wrap { pointer-events: auto; }

/* Global Fixed CSS Bottle */
.bottle-container {
    position: fixed; top: 50%; left: 50%; width: 260px; height: 360px;
    margin-top: -180px; margin-left: -130px;
    z-index: 5; pointer-events: auto; cursor: crosshair;
}
.bottle-wrapper {
    width: 100%; height: 100%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    transform-style: preserve-3d;
}
.bottle-cap {
    width: 70px; height: 40px; border-radius: 4px 4px 0 0; margin-bottom: 6px;
    background: linear-gradient(90deg, #111, #333, #151515);
    border: 1px solid rgba(255,255,255,0.05); border-bottom: none;
    box-shadow: inset 0 2px 10px rgba(255,255,255,0.1); position: relative;
}
.bottle-cap::before {
    content:''; position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%);
    width: 24px; height: 16px; background: linear-gradient(90deg, #D4AF37, #FDE08B, #D4AF37);
    border-radius: 2px 2px 0 0; opacity: 0.8;
}
.bottle-body {
    width: 260px; height: 360px; border-radius: 12px;
    background: rgba(255,255,255,0.01);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 40px 100px rgba(0,0,0,0.8), inset 0 0 20px rgba(255,255,255,0.05), inset 0 0 60px rgba(197,160,89,0.05);
    position: relative; overflow: hidden;
}
.bottle-glare {
    position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.03) 45%, rgba(255,255,255,0.15) 50%, transparent 55%);
    transform: rotate(45deg); pointer-events: none; z-index: 3;
}
.bottle-logo {
    position: absolute; top: 65%; left: 50%; transform: translate(-50%, -50%);
    text-align: center; width: 100%; pointer-events: none; z-index: 2;
}
.bottle-logo span:first-child {
    font-family: var(--font-serif); font-size: 26px; color: var(--gold); letter-spacing: 0.25em; text-transform: uppercase; display: block;
}
.bottle-logo .l-sub {
    font-family: var(--font-sans); font-size: 8px; color: var(--gold); letter-spacing: 0.35em; text-transform: uppercase; display: block; margin-top: 12px;
}

/* Mist Spray Elements */
.mist-particle { 
    position: fixed; top: 0; left: 0; width: 16px; height: 16px; border-radius: 50%; 
    background: radial-gradient(circle, rgba(205,184,141,0.8) 0%, rgba(205,184,141,0) 70%); 
    pointer-events: none; filter: blur(3px); mix-blend-mode: screen; z-index: 10000;
}

.d-block { display: block; width: 100%; }
.h-title { font-family:var(--font-serif); font-size:clamp(3.5rem,8vw,8rem); line-height:1; text-transform:uppercase; font-weight:400; letter-spacing:-0.01em; width: 100%; margin-bottom: 2rem;}
.h-stroke { -webkit-text-stroke: 1.5px var(--text-color); color: transparent; }
.h-sub { font-size: 0.9rem; margin:2rem 0; color:rgba(205,184,141,0.6); max-width:500px; letter-spacing:0.05em; font-weight:500; text-transform:uppercase; text-align: center; }

/* Tactical Hero Overlays */
.hero-overlays { position: absolute; inset: 0; pointer-events: none; z-index: 3; }
.overlay-clock { position: absolute; top: 50%; left: 4vw; transform: translateY(-50%) rotate(-90deg); font-family: var(--font-sans); font-size: 10px; color: rgba(255,255,255,0.4); letter-spacing: 0.2em; text-transform: uppercase; transform-origin: left center;}
.overlay-coords { position: absolute; top: 50%; right: 4vw; transform: translateY(-50%) rotate(90deg); font-family: var(--font-sans); font-size: 10px; color: rgba(255,255,255,0.4); letter-spacing: 0.2em; text-transform: uppercase; transform-origin: right center;}

.about { padding:20vw 5vw; display:grid; grid-template-columns:1fr 1fr; gap:15vw; align-items:center; }
.a-title { font-family:var(--font-serif); font-size:clamp(3rem,5vw,6rem); line-height:1; letter-spacing:-0.01em;}
.a-p { font-size:1.1rem; line-height:1.8; color:rgba(205,184,141,0.6); margin-top:3rem; font-weight:400; max-width:400px;}
.a-vis-spacer { height:80vh; background:transparent; }

.exp-wrap { height:400vh; position:relative; }
.exp-sticky { position:sticky; top:0; height:100vh; overflow:hidden; display:flex; align-items:center; background:#020202;}
.exp-track { display:flex; width:400vw; height:100%; }
.exp-step { width:100vw; height:100%; flex-shrink:0; display:flex; flex-direction:column; justify-content:center; align-items:flex-start; text-align:left; position:relative; padding:0 15vw;}
.step-n { font-family:var(--font-sans); font-size:15vw; color:rgba(205,184,141,0.06); position:absolute; top: 15vh; left: 15vw; line-height:0.8; font-weight: 700; letter-spacing: -0.05em;}
.step-c { z-index:1; max-width: 600px; }
.step-t { font-family:var(--font-serif); font-size:clamp(2.5rem,4.5vw,5rem); margin-bottom:1.5rem; text-transform:uppercase; letter-spacing:0.02em;}
.step-d { font-size: 1rem; color: rgba(205,184,141,0.6); max-width: 400px; margin: 0; letter-spacing: 0.05em; line-height: 1.8; }

/* Finder Section */
.finder { padding:15vw 5vw; min-height:100vh; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; border-top: 1px solid rgba(205,184,141,0.08);}
.f-opts { display:flex; gap:3vw; margin-top:6vw; flex-wrap:wrap; justify-content:center; }
.f-opt { width:180px; height:180px; border:1px solid rgba(205,184,141,0.1); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:10px; text-transform:uppercase; letter-spacing:0.2em; transition:all 0.6s cubic-bezier(0.16,1,0.3,1); cursor:pointer; background: transparent; color: rgba(205,184,141,0.5);}
.f-opt:hover { border-color:var(--gold); color: var(--gold); transform: scale(1.05);}
.f-res { margin-top:6vw; font-family:var(--font-serif); font-size:2rem; color:var(--gold); opacity:0; transition:opacity 0.6s; height:60px; font-style: italic;}

.proof { padding:12vw 0; overflow:hidden; border-top:1px solid rgba(205,184,141,0.08); }
.p-track { display:flex; width:max-content; animation:scrollP 45s linear infinite; }
.p-item { font-family:var(--font-serif); font-size:clamp(3rem,6vw,7rem); padding-right:12vw; color:rgba(205,184,141,0.25); white-space:nowrap; text-transform:uppercase;}
.p-item span { color:var(--gold); font-style:italic; }
@keyframes scrollP { to { transform:translateX(-50%); } }

.cta { height:100vh; display:flex; flex-direction:column; justify-content:center; align-items:flex-start; text-align:left; padding-left: 10vw; width: 100%;}
.cta-t { font-family:var(--font-serif); font-size:clamp(4rem,9vw,11rem); line-height:0.8; text-transform:uppercase; margin-bottom:4rem; }
.f-bot { position:absolute; bottom:40px; left:0; width:100%; display:flex; justify-content:space-between; padding:0 5vw; font-size:9px; text-transform:uppercase; letter-spacing:0.2em; color:rgba(205,184,141,0.4); }

.gs-rev { opacity:0; transform:translateY(80px); }

@media (max-width:768px){ 
    .nav-links{display:none;} 
    .about{grid-template-columns:1fr;gap:15vw;} 
    .exp-wrap{height:auto;} 
    .exp-sticky{position:relative;height:auto;} 
    .exp-track{flex-direction:column;width:100vw;} 
    .exp-step{height:80vh;} 
    .f-opts{gap:5vw;} 
    .f-opt{width:120px;height:120px;} 
    .cursor,.cursor-ring{display:none;} 
    body{cursor:auto;} 
    .f-bot{flex-direction:column;gap:30px;} 
    .d-block { text-align: center !important; padding: 0 !important; } 
    .overlay-clock, .overlay-coords { display:none; } 
    .bottle-container { display: none; }
}
