/* ═══════════ HIT IT — High Haven × IC Collective ═══════════ */
:root {
  --black: #0c0a09;
  --black-2: #14100d;
  --black-3: #1d1712;
  --copper: #c97f45;
  --copper-light: #f0c08a;
  --copper-dark: #8a4b2a;
  --teal: #2dd4bf;
  --cream: #f5efe6;
  --muted: #a89d8d;
  --grad-copper: linear-gradient(120deg, #8a4b2a 0%, #d99058 35%, #f4d3a3 50%, #d99058 65%, #8a4b2a 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  line-height: 1.6;
}
h1, h2 { font-family: 'Cormorant Garamond', serif; font-weight: 600; line-height: 1.1; }
h3 { font-family: 'Marcellus', serif; font-weight: 400; }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── Buttons ── */
.btn {
  display: inline-block; padding: 0.9rem 2rem; border-radius: 999px;
  font-family: 'Inter', sans-serif; font-weight: 500; font-size: 0.95rem;
  letter-spacing: 0.04em; text-decoration: none; cursor: pointer;
  border: none; transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s;
}
.btn-copper {
  background: var(--grad-copper); background-size: 200% auto; color: #1a0f08;
  box-shadow: 0 4px 24px rgba(217, 144, 88, 0.35);
}
.btn-copper:hover { background-position: right center; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(217, 144, 88, 0.5); }
.btn-ghost {
  background: transparent; color: var(--cream);
  border: 1px solid rgba(245, 239, 230, 0.3);
}
.btn-ghost:hover { border-color: var(--copper-light); color: var(--copper-light); transform: translateY(-2px); }

/* ── Age gate ── */
.age-gate {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(8, 6, 5, 0.92); backdrop-filter: blur(18px);
  display: flex; align-items: center; justify-content: center;
  opacity: 1; transition: opacity 0.5s ease;
}
.age-gate.hidden { opacity: 0; pointer-events: none; }
.age-gate-inner {
  text-align: center; max-width: 420px; padding: 3rem 2rem;
  background: var(--black-2); border: 1px solid rgba(201, 127, 69, 0.25);
  border-radius: 20px; box-shadow: 0 0 80px rgba(217, 144, 88, 0.15);
}
.age-logo { width: 110px; margin: 0 auto 1.2rem; filter: drop-shadow(0 0 18px rgba(240, 192, 138, 0.4)); }
.age-gate-inner h2 { font-size: 1.9rem; margin-bottom: 0.4rem; }
.age-gate-inner > p { color: var(--muted); font-size: 0.95rem; }
.age-buttons { display: flex; gap: 0.8rem; justify-content: center; margin: 1.6rem 0 1.2rem; flex-wrap: wrap; }
.age-fine { font-size: 0.7rem; color: #6b6359; }

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2.5rem; transition: background 0.35s, padding 0.35s, box-shadow 0.35s;
}
.nav.scrolled {
  background: rgba(12, 10, 9, 0.82); backdrop-filter: blur(14px);
  padding: 0.6rem 2.5rem; box-shadow: 0 1px 0 rgba(201, 127, 69, 0.18);
}
.nav-brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; font-family: 'Marcellus', serif; letter-spacing: 0.18em; font-size: 1.05rem; }
.nav-brand img { width: 38px; }
.nav-links { display: flex; align-items: center; gap: 1.8rem; font-size: 0.85rem; letter-spacing: 0.06em; }
.nav-links a { text-decoration: none; color: var(--muted); transition: color 0.2s; }
.nav-links a:hover { color: var(--copper-light); }
.nav-cta {
  color: #1a0f08 !important; background: var(--grad-copper); background-size: 200% auto;
  padding: 0.5rem 1.3rem; border-radius: 999px; font-weight: 500;
}
.nav-cta:hover { background-position: right center; }

/* ── Hero ── */
.hero {
  min-height: 100svh; display: flex; align-items: center; justify-content: center;
  position: relative; text-align: center; padding: 7rem 1.5rem 4rem;
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.45; pointer-events: none; will-change: transform; }
.glow-1 { width: 560px; height: 560px; background: radial-gradient(circle, #c97f45 0%, transparent 70%); top: -8%; left: -8%; }
.glow-2 { width: 480px; height: 480px; background: radial-gradient(circle, #155e56 0%, transparent 70%); bottom: -12%; right: -6%; }
.hero-content { max-width: 760px; position: relative; z-index: 2; }
.hero-kicker {
  font-size: 0.8rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--copper);
  margin-bottom: 1.4rem;
}
.hero-logo {
  width: min(330px, 64vw); margin: 0 auto 1.8rem;
  filter: drop-shadow(0 0 34px rgba(240, 192, 138, 0.35));
  animation: logoFloat 7s ease-in-out infinite;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0) } 50% { transform: translateY(-13px) }
}
.hero-title { font-size: clamp(2.2rem, 5.2vw, 3.6rem); margin-bottom: 1.1rem; }
.hero-title em {
  font-style: italic;
  background: var(--grad-copper); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { color: var(--muted); max-width: 540px; margin: 0 auto 2.2rem; font-size: 1.05rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  width: 24px; height: 40px; border: 1.5px solid rgba(245,239,230,0.35); border-radius: 14px;
}
.scroll-hint span {
  position: absolute; top: 7px; left: 50%; width: 4px; height: 8px; margin-left: -2px;
  background: var(--copper-light); border-radius: 2px; animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot { 0%{opacity:1;transform:translateY(0)} 70%{opacity:0;transform:translateY(14px)} 100%{opacity:0} }

/* ── Marquee ── */
.marquee {
  overflow: hidden; border-top: 1px solid rgba(201,127,69,0.25); border-bottom: 1px solid rgba(201,127,69,0.25);
  background: var(--black-2); padding: 0.9rem 0;
}
.marquee-track {
  display: flex; width: max-content; animation: marquee 26s linear infinite;
  font-family: 'Marcellus', serif; letter-spacing: 0.28em; font-size: 0.85rem; color: var(--copper);
  text-transform: uppercase; white-space: nowrap;
}
@keyframes marquee { from { transform: translateX(0) } to { transform: translateX(-50%) } }

/* ── Sections shared ── */
section { padding: 6.5rem 1.5rem; }
.section-head { text-align: center; margin-bottom: 3.5rem; }
.section-kicker {
  font-size: 0.75rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--copper); margin-bottom: 0.8rem;
}
.section-head h2, .story h2, .find h2 { font-size: clamp(2rem, 4.4vw, 3rem); }

/* ── Product ── */
.product { background: radial-gradient(ellipse 90% 60% at 50% 0%, #18120d 0%, var(--black) 70%); }
.product-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; max-width: 1100px; margin: 0 auto; align-items: center;
}
.tilt-wrap { perspective: 1100px; }
.tilt-card {
  position: relative; border-radius: 22px; overflow: hidden;
  transform-style: preserve-3d; transition: transform 0.18s ease-out;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 60px rgba(217,144,88,0.12);
  border: 1px solid rgba(201,127,69,0.22);
}
.tilt-card img { width: 100%; }
.tilt-shine {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(255,235,205,0.16) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.3s;
}
.tilt-wrap:hover .tilt-shine { opacity: 1; }
.tilt-hint { text-align: center; color: #6b6359; font-size: 0.75rem; letter-spacing: 0.14em; margin-top: 1rem; text-transform: uppercase; }
.hotspot {
  position: absolute; width: 26px; height: 26px; border-radius: 50%;
  background: rgba(45, 212, 191, 0.18); border: 1.5px solid var(--teal);
  cursor: pointer; animation: pulse 2.4s ease-out infinite;
}
.hotspot::after { content: ''; position: absolute; inset: 7px; border-radius: 50%; background: var(--teal); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(45,212,191,0.45) } 70% { box-shadow: 0 0 0 14px rgba(45,212,191,0) } 100% { box-shadow: 0 0 0 0 rgba(45,212,191,0) }
}
.hs-1 { top: 33%; right: 27%; }
.hs-2 { top: 55%; left: 57%; }
.hs-3 { top: 43%; left: 50%; }
.features { display: flex; flex-direction: column; gap: 1.6rem; }
.feature {
  display: flex; gap: 1.3rem; padding: 1.4rem 1.5rem; border-radius: 16px;
  background: rgba(255,255,255,0.025); border: 1px solid rgba(201,127,69,0.14);
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.feature:hover { border-color: rgba(240,192,138,0.5); background: rgba(217,144,88,0.06); transform: translateX(6px); }
.feature-num {
  font-family: 'Marcellus', serif; color: var(--copper); font-size: 1rem; padding-top: 0.2rem; min-width: 2ch;
}
.feature h3 { font-size: 1.15rem; margin-bottom: 0.3rem; color: var(--copper-light); }
.feature p { font-size: 0.92rem; color: var(--muted); }

/* ── Gallery ── */
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; max-width: 1200px; margin: 0 auto;
}
.g-item {
  position: relative; border-radius: 18px; overflow: hidden; cursor: zoom-in;
  border: 1px solid rgba(201,127,69,0.16); aspect-ratio: 3/4;
}
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.2, 0.6, 0.2, 1); }
.g-item:hover img { transform: scale(1.06); }
.g-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 2rem 1.2rem 1rem;
  background: linear-gradient(transparent, rgba(8,6,5,0.85));
  font-family: 'Marcellus', serif; letter-spacing: 0.16em; font-size: 0.8rem; text-transform: uppercase;
  color: var(--copper-light); opacity: 0; transform: translateY(8px); transition: opacity 0.35s, transform 0.35s;
}
.g-item:hover figcaption { opacity: 1; transform: translateY(0); }
.gallery-wide {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; max-width: 1200px; margin: 1.1rem auto 0;
}
.g-item.wide { aspect-ratio: 16/9; }
.g-item.strip { aspect-ratio: 32/9; max-width: 1200px; margin: 1.1rem auto 0; }
.g-item.strip figcaption, .g-item.wide figcaption { opacity: 1; transform: none; }

/* ── Story ── */
.story { background: var(--black-2); border-top: 1px solid rgba(201,127,69,0.15); border-bottom: 1px solid rgba(201,127,69,0.15); }
.story-inner { max-width: 880px; margin: 0 auto; text-align: center; }
.story-cols {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 2.4rem; align-items: center; margin: 3rem 0 2.4rem;
}
.story-col h3 {
  font-size: 1.5rem; margin-bottom: 0.7rem;
  background: var(--grad-copper); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.story-col p { color: var(--muted); font-size: 0.95rem; }
.story-x { font-family: 'Cormorant Garamond', serif; font-size: 3rem; color: var(--copper); }
.story-line { font-size: 1.15rem; color: var(--cream); }
.story-line strong { font-family: 'Marcellus', serif; letter-spacing: 0.12em; color: var(--copper-light); }

/* ── Find / waitlist ── */
.find { text-align: center; background: radial-gradient(ellipse 70% 60% at 50% 100%, #1a120b 0%, var(--black) 70%); }
.find-inner { max-width: 620px; margin: 0 auto; }
.find-sub { color: var(--muted); margin: 1rem 0 2rem; }
.waitlist { display: flex; gap: 0.7rem; justify-content: center; flex-wrap: wrap; }
.waitlist input {
  flex: 1; min-width: 240px; padding: 0.9rem 1.4rem; border-radius: 999px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(201,127,69,0.3);
  color: var(--cream); font-family: 'Inter', sans-serif; font-size: 0.95rem; outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.waitlist input:focus { border-color: var(--copper-light); box-shadow: 0 0 0 4px rgba(217,144,88,0.15); }
.waitlist-done {
  display: none; margin-top: 1.4rem; color: var(--teal); font-family: 'Marcellus', serif; letter-spacing: 0.1em;
}
.waitlist-done.show { display: block; animation: fadeUp 0.6s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px) } to { opacity: 1; transform: translateY(0) } }
.find-meta { margin-top: 2.6rem; font-size: 0.85rem; color: var(--muted); display: flex; gap: 0.8rem; justify-content: center; }
.find-meta a { color: var(--copper); text-decoration: none; }
.find-meta a:hover { color: var(--copper-light); }

/* ── Footer ── */
.footer {
  text-align: center; padding: 4rem 1.5rem 3rem; border-top: 1px solid rgba(201,127,69,0.15);
}
.footer-logo { width: 86px; margin: 0 auto 1rem; opacity: 0.9; }
.footer-domains { font-family: 'Marcellus', serif; letter-spacing: 0.22em; color: var(--copper); font-size: 0.9rem; margin-bottom: 1.4rem; }
.footer-legal { max-width: 640px; margin: 0 auto 1rem; font-size: 0.72rem; color: #6b6359; }
.footer-copy { font-size: 0.75rem; color: #57504a; }

/* ── Lightbox ── */
.lightbox {
  position: fixed; inset: 0; z-index: 500; background: rgba(8,6,5,0.93); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 88vw; max-height: 86vh; border-radius: 14px; box-shadow: 0 30px 90px rgba(0,0,0,0.7); }
.lightbox-close {
  position: absolute; top: 1.4rem; right: 2rem; background: none; border: none; color: var(--cream);
  font-size: 2.6rem; cursor: pointer; line-height: 1; transition: color 0.2s;
}
.lightbox-close:hover { color: var(--copper-light); }

/* ── Tooltip ── */
.tooltip {
  position: fixed; z-index: 600; max-width: 240px; padding: 0.7rem 1rem; border-radius: 12px;
  background: #1d1712; border: 1px solid rgba(240,192,138,0.4); color: var(--cream);
  font-size: 0.82rem; pointer-events: none; opacity: 0; transform: translateY(6px); transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 10px 36px rgba(0,0,0,0.5);
}
.tooltip.show { opacity: 1; transform: translateY(0); }

/* ── Reveal animation ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.6, 0.2, 1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .product-grid { grid-template-columns: 1fr; gap: 2.6rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .story-cols { grid-template-columns: 1fr; gap: 1.4rem; }
  .story-x { font-size: 2rem; }
  .nav { padding: 0.9rem 1.2rem; }
  .nav.scrolled { padding: 0.6rem 1.2rem; }
  .nav-links { gap: 1rem; font-size: 0.78rem; }
  .nav-links a:not(.nav-cta) { display: none; }
}
@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-wide { grid-template-columns: 1fr; }
  .g-item.strip { aspect-ratio: 16/9; }
  section { padding: 4.5rem 1.1rem; }
}
