/* ============================================================
   DRIP HOUSE — Global Stylesheet v2
   Aesthetic: Maximalist Luxury × Gen-Z Editorial
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Bebas+Neue&family=Outfit:wght@300;400;500;600;700&family=Space+Mono:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  --black:    #080808;
  --deep:     #111111;
  --card:     #161616;
  --white:    #F5F0EB;
  --muted:    #9A9590;
  --gold:     #C9A84C;
  --gold-lt:  #E8C96A;
  --hot:      #FF2D55;
  --electric: #00F5A0;

  --font-display: 'Cormorant Garamond', serif;
  --font-impact:  'Bebas Neue', sans-serif;
  --font-body:    'Outfit', sans-serif;
  --font-mono:    'Space Mono', monospace;

  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --nav-h: 80px;
  --section-gap: clamp(80px, 10vw, 140px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: none; border: none; background: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }

/* ── Image helpers ── */
.card-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out-expo), filter 0.5s ease;
  filter: brightness(0.6) saturate(0.85);
}
.card-img-hover:hover .card-img {
  transform: scale(1.07);
  filter: brightness(0.45) saturate(1.1);
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: brightness(0.25) saturate(0.7);
  z-index: 0;
}

/* ── Custom Cursor ── */
#cursor {
  position: fixed; top: 0; left: 0;
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .3s var(--ease-out-expo), height .3s var(--ease-out-expo), background .3s ease;
  mix-blend-mode: difference;
}
#cursor.hovered { width: 44px; height: 44px; background: var(--hot); }
#cursor-trail {
  position: fixed; top: 0; left: 0;
  width: 38px; height: 38px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  opacity: 0.5;
}

/* ── Preloader ── */
#preloader {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 10000;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 28px;
  transition: opacity .8s ease, visibility .8s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.pre-logo {
  font-family: var(--font-impact);
  font-size: clamp(52px, 9vw, 110px);
  letter-spacing: 0.12em;
  color: var(--white);
}
.pre-logo span {
  display: inline-block;
  animation: preReveal .7s var(--ease-out-expo) both;
}
.pre-logo span:nth-child(1){animation-delay:.05s}
.pre-logo span:nth-child(2){animation-delay:.12s}
.pre-logo span:nth-child(3){animation-delay:.19s}
.pre-logo span:nth-child(4){animation-delay:.26s}
.pre-logo span:nth-child(5){animation-delay:.33s}
.pre-logo span:nth-child(6){animation-delay:.40s}
.pre-logo span:nth-child(7){animation-delay:.47s}
.pre-logo span:nth-child(8){animation-delay:.54s}
.pre-logo span:nth-child(9){animation-delay:.61s}
.pre-logo span:nth-child(10){animation-delay:.68s}
@keyframes preReveal {
  from { transform: translateY(110%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.pre-bar { width: 220px; height: 2px; background: #1a1a1a; border-radius: 2px; overflow: hidden; }
.pre-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--hot));
  animation: preLoad 1.9s var(--ease-out-expo) forwards;
}
@keyframes preLoad { from{width:0} to{width:100%} }
.pre-tagline {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .32em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ── Navigation ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex; align-items: center;
  padding: 0 clamp(20px, 4vw, 60px);
  justify-content: space-between;
  transition: background .4s ease, backdrop-filter .4s ease;
}
#nav.scrolled {
  background: rgba(8,8,8,.95);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(201,168,76,.18);
}
.nav-logo { font-family: var(--font-impact); font-size: 28px; letter-spacing: .15em; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted);
  transition: color .3s ease;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .3s var(--ease-out-expo);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-cta {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: .2em; text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid var(--gold); color: var(--gold);
  transition: all .3s ease;
}
.nav-cta:hover { background: var(--gold); color: var(--black); }
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: none; }
.nav-burger span { display: block; width: 26px; height: 1.5px; background: var(--white); transition: all .3s ease; }

/* Mobile drawer */
#nav-drawer {
  position: fixed; top: 0; right: -100%;
  width: min(320px, 85vw); height: 100vh;
  background: var(--deep); z-index: 999;
  padding: 100px 40px 40px;
  display: flex; flex-direction: column; gap: 32px;
  transition: right .5s var(--ease-out-expo);
  border-left: 1px solid rgba(201,168,76,.15);
}
#nav-drawer.open { right: 0; }
.drawer-link {
  font-family: var(--font-impact); font-size: 32px;
  letter-spacing: .08em; color: var(--white);
  transition: color .3s ease;
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding-bottom: 20px;
}
.drawer-link:hover { color: var(--gold); }
#drawer-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.75);
  z-index: 998; opacity: 0; visibility: hidden;
  transition: opacity .4s ease, visibility .4s ease;
  backdrop-filter: blur(4px);
}
#drawer-overlay.show { opacity: 1; visibility: visible; }

/* ── Marquee ── */
.marquee-strip {
  overflow: hidden; background: var(--gold);
  padding: 13px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.marquee-track { display: flex; width: max-content; animation: marqueeScroll 24s linear infinite; }
.marquee-strip.rev .marquee-track { animation-direction: reverse; }
.marquee-item {
  display: flex; align-items: center; gap: 24px;
  padding: 0 24px;
  font-family: var(--font-impact); font-size: 13px;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--black); white-space: nowrap;
}
.marquee-dot { width: 5px; height: 5px; background: var(--black); border-radius: 50%; flex-shrink: 0; }
@keyframes marqueeScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── Section Headings ── */
.section-tag {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: .35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.section-tag::before { content:''; display:block; width:30px; height:1px; background:var(--gold); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 600; line-height: 1.1;
}
.section-title em { font-style: italic; color: var(--gold); }

/* ── Reveal ── */
.reveal { opacity:0; transform:translateY(40px); transition:opacity .8s var(--ease-out-expo),transform .8s var(--ease-out-expo); }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-left { opacity:0; transform:translateX(-40px); transition:opacity .8s var(--ease-out-expo),transform .8s var(--ease-out-expo); }
.reveal-left.visible { opacity:1; transform:translateX(0); }
.reveal-right { opacity:0; transform:translateX(40px); transition:opacity .8s var(--ease-out-expo),transform .8s var(--ease-out-expo); }
.reveal-right.visible { opacity:1; transform:translateX(0); }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 36px;
  background: var(--gold); color: var(--black);
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  position: relative; overflow: hidden;
  transition: color .3s ease;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: var(--hot); transform: translateX(-101%);
  transition: transform .4s var(--ease-out-expo);
}
.btn-primary:hover::after { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 32px;
  border: 1px solid rgba(245,240,235,.3); color: var(--white);
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .2em; text-transform: uppercase;
  transition: all .3s ease;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ── Footer ── */
#footer {
  background: var(--deep);
  border-top: 1px solid rgba(201,168,76,.15);
  padding: 80px clamp(20px,6vw,100px) 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 60px;
}
.footer-brand .nav-logo { font-size: 32px; margin-bottom: 20px; }
.footer-brand p { font-size: 14px; color: var(--muted); line-height: 1.8; max-width: 280px; }
.footer-col h4 { font-family:var(--font-impact); font-size:16px; letter-spacing:.15em; margin-bottom:20px; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:10px; }
.footer-col ul a { font-size:13px; color:var(--muted); font-family:var(--font-mono); transition:color .3s ease; }
.footer-col ul a:hover { color:var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 30px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-family:var(--font-mono); font-size:11px; color:var(--muted); letter-spacing:.1em; }
.footer-socials { display:flex; gap:20px; }
.footer-socials a { font-family:var(--font-mono); font-size:11px; color:var(--muted); transition:color .3s ease; }
.footer-socials a:hover { color:var(--gold); }

/* ── Noise grain ── */
body::before {
  content:''; position:fixed; inset:0;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity:.022; pointer-events:none; z-index:9990;
}

/* ── Progress bar ── */
#progress-bar {
  position:fixed; top:0; left:0; height:2px;
  background:linear-gradient(90deg,var(--gold),var(--hot));
  z-index:10001; width:0; transition:width .1s linear;
}

/* ── Responsive ── */
@media(max-width:900px) {
  .nav-links,.nav-cta{display:none}
  .nav-burger{display:flex}
  .footer-grid{grid-template-columns:1fr 1fr;gap:40px}
  .footer-brand{grid-column:1/-1}
}
@media(max-width:600px) {
  .footer-grid{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column;gap:16px;text-align:center}
}
