:root {
  --black: #080808;
  --black-mid: #111111;
  --black-light: #1a1a1a;
  --gold: #C9A84C;
  --gold-light: #E2C96A;
  --gold-dark: #8B6914;
  --white: #F5F0E8;
  --muted: #777777;
  --transition: 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--black);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.gold { color: var(--gold); }

.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.section-text {
  font-size: 0.95rem;
  color: #bbb;
  max-width: 680px;
  margin-bottom: 1.5rem;
  line-height: 1.95;
}

.divider-gold {
  width: 55px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  margin-bottom: 2.5rem;
}

/* Layout */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.center { text-align: center; }
.center .divider-gold,
.center .section-text { margin-left: auto; margin-right: auto; }

section { padding: 7rem 0; }
.bg-dark { background-color: var(--black-mid); }

/* Navigation */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.8rem 0;
  transition: background var(--transition), padding var(--transition), border-bottom var(--transition);
}

#navbar.scrolled {
  background: rgba(8, 8, 8, 0.97);
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
  backdrop-filter: blur(12px);
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 38px;
  transition: height var(--transition);
}

#navbar.scrolled .nav-logo img { height: 32px; }

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--white);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--gold); }

.nav-links .nav-cta {
  border: 1px solid var(--gold);
  padding: 0.5rem 1.3rem;
  color: var(--gold);
  transition: all var(--transition);
}

.nav-links .nav-cta:hover {
  background: var(--gold);
  color: var(--black);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all var(--transition);
}

/* Hero */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}

.hero-video-container {
  position: absolute;
  inset: 0;
}

.hero-video-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.video-mobile { display: none; }

@media (max-width: 768px) {
  .video-desktop { display: none; }
  .video-mobile { display: block; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.35) 0%,
    rgba(8,8,8,0.55) 60%,
    rgba(8,8,8,0.88) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 2rem;
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4.5rem, 13vw, 10rem);
  font-weight: 300;
  letter-spacing: 0.18em;
  line-height: 0.9;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 45%, var(--gold) 70%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.6);
  margin-bottom: 3rem;
}

.sound-btn {
  position: absolute;
  bottom: 2.5rem;
  right: 2rem;
  z-index: 2;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--white);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}

.sound-btn:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--gold);
}

.sound-btn svg {
  width: 18px;
  height: 18px;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero-scroll span {
  display: block;
  width: 1px;
  height: 55px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollLine 2.2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  49%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* Buttons */
.btn-gold {
  display: inline-block;
  padding: 0.9rem 2.6rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-dark));
  color: var(--black);
  text-decoration: none;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  transition: opacity var(--transition), transform var(--transition);
}

.btn-gold:hover { opacity: 0.82; transform: translateY(-2px); }

.btn-outline {
  display: inline-block;
  padding: 0.9rem 2.6rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  transition: all var(--transition);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
}

/* Product Section */
.product-stats {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 3rem;
  border: 1px solid rgba(201, 168, 76, 0.2);
  width: fit-content;
}

.product-stat {
  padding: 2rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
}

.product-stat + .product-stat {
  border-left: 1px solid rgba(201, 168, 76, 0.2);
}

.stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* B2B Section */
.b2b-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}

.b2b-card {
  border: 1px solid rgba(201, 168, 76, 0.18);
  padding: 2.5rem 2rem;
  transition: border-color var(--transition), background var(--transition);
}

.b2b-card:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.04);
}

.b2b-card-line {
  width: 2px;
  height: 28px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin-bottom: 1.5rem;
}

.b2b-card h3 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.b2b-card p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
}

/* CTA Section */
#contact-cta {
  background: linear-gradient(135deg, #0c0800 0%, #161000 50%, #0c0800 100%);
  border-top: 1px solid rgba(201, 168, 76, 0.18);
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
  text-align: center;
}

.cta-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 1rem;
}

.cta-sub {
  color: #888;
  font-size: 0.9rem;
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.9;
}

/* Footer */
footer {
  background: var(--black);
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  padding: 4.5rem 0 2.5rem;
  text-align: center;
}

.footer-logo {
  height: 42px;
  margin-bottom: 1.2rem;
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--gold); }

.footer-copy {
  font-size: 0.65rem;
  color: #333;
  letter-spacing: 0.04em;
}

.nix18-logo {
  height: 50px;
  margin-bottom: 1.5rem;
  opacity: 0.7;
  filter: brightness(0) invert(1);
}

/* Page Hero (sub-pages) */
.page-hero {
  padding: 14rem 0 6rem;
  text-align: center;
  background: linear-gradient(to bottom, #0f0a00 0%, var(--black) 100%);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.page-hero .section-label { margin-bottom: 1.2rem; }
.page-hero .section-title { margin-bottom: 0; }

/* Contact Form */
.contact-form-section { padding: 6rem 0 7rem; }
.contact-form-section .container { max-width: 740px; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  background: var(--black-light);
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--white);
  padding: 0.85rem 1.1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #444;
}

.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }

.form-group textarea {
  height: 160px;
  resize: vertical;
}

.form-submit { margin-top: 1.5rem; }

.form-success {
  display: none;
  text-align: center;
  padding: 4rem 2rem;
  border: 1px solid rgba(201, 168, 76, 0.25);
  margin-top: 2rem;
}

.form-success h3 {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.form-success p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Verhaal Page */
.story-section { padding: 6rem 0 8rem; }

.story-content {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 2rem;
}

.story-content p {
  color: #bbb;
  line-height: 1.95;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.story-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  border-left: 2px solid var(--gold);
  padding: 0.5rem 0 0.5rem 2rem;
  margin: 3.5rem 0;
  line-height: 1.45;
}

/* Age Gate */
#age-gate {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 8, 0.97);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.age-gate-box {
  text-align: center;
  max-width: 480px;
}

.age-gate-box img {
  height: 60px;
  margin-bottom: 2.5rem;
}

.age-gate-sub {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.age-gate-question {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 2.5rem;
}

.age-gate-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Cookie Bar */
#cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(17, 17, 17, 0.97);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  z-index: 999;
  flex-wrap: wrap;
}

#cookie-bar p {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}

#cookie-bar a {
  color: var(--gold);
  text-decoration: none;
}

#cookie-bar button {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 0.5rem 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity var(--transition);
}

#cookie-bar button:hover { opacity: 0.82; }

/* Responsive */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(8, 8, 8, 0.98);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.18);
  }

  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 1rem 2rem; }
  .nav-links .nav-cta { border: none; border-top: 1px solid rgba(201, 168, 76, 0.15); }
  .nav-toggle { display: flex; }

  .nav-container {
    position: relative;
    justify-content: center;
  }

  .nav-toggle {
    position: absolute;
    right: 2rem;
  }

  .product-stats { flex-direction: column; width: 100%; }
  .product-stat + .product-stat { border-left: none; border-top: 1px solid rgba(201, 168, 76, 0.2); }

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

  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }

  section { padding: 5rem 0; }
  .page-hero { padding: 11rem 0 4rem; }
}
