/* ══════════════════════════════════════════
   SD VISUALS — SHARED STYLESHEET
══════════════════════════════════════════ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

:root {
  --black:   #080808;
  --white:   #f0ede6;
  --cream:   #e8e3d8;
  --red:     #cc1111;
  --red-dim: #8a0e0e;
  --red-bg:  #3d0808;
  --mid:     #0f0707;
  --mid2:    #130909;
  --border:  rgba(204,17,17,0.2);
  --border-s:rgba(204,17,17,0.08);
  --D: 'Bebas Neue', sans-serif;
  --B: 'Crimson Pro', serif;
  --M: 'DM Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--B);
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}

/* ── LANG ── */
[data-lang="nl"] .en { display: none !important; }
[data-lang="en"] .nl { display: none !important; }

/* ── CURSOR ── */
#cursor {
  position: fixed; width: 10px; height: 10px;
  background: var(--red); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .25s, height .25s;
  mix-blend-mode: difference;
}
#cursor.grow { width: 22px; height: 22px; }
#cursor-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1px solid var(--red); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width .3s, height .3s, opacity .3s;
  opacity: .5;
}
#cursor-ring.grow { width: 56px; height: 56px; }

/* ── NAV ── */
nav {
  position: fixed; top:0; left:0; right:0;
  z-index: 500;
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 52px;
  transition: background .4s, padding .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(8,8,8,.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 16px 52px;
  border-bottom: 1px solid var(--border-s);
}

.logo {
  font-family: var(--D);
  font-size: 26px; letter-spacing: 6px;
  color: var(--white); text-decoration: none;
}
.logo span { color: var(--red); }

.nav-links {
  display: flex; gap: 36px; list-style: none;
  position: absolute; left:50%; transform:translateX(-50%);
}
.nav-links a {
  font-family: var(--M); font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--white);
  text-decoration: none; opacity: .6;
  transition: opacity .3s, color .3s;
}
.nav-links a:hover { opacity: 1; }
.nav-links a.active { opacity: 1; color: var(--red); }

.nav-right { display: flex; align-items: center; gap: 16px; }

.lang-btn {
  font-family: var(--M); font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(240,237,230,.5);
  background: none; border: 1px solid rgba(240,237,230,.15);
  padding: 6px 12px; cursor: none;
  transition: color .3s, border-color .3s;
}
.lang-btn:hover { color: var(--white); border-color: var(--red); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: none; z-index: 600;
}
.hamburger span {
  display: block; width: 24px; height: 1px; background: var(--white);
  transition: transform .4s, opacity .3s;
}
.hamburger.open span:nth-child(1){ transform:translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2){ opacity:0; }
.hamburger.open span:nth-child(3){ transform:translateY(-6px) rotate(-45deg); }

.mob-menu {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 490;
  display: none; flex-direction: column;
  justify-content: center; align-items: center; gap: 36px;
  opacity: 0; pointer-events: none;
  transition: opacity .5s;
}
.mob-menu.open { opacity: 1; pointer-events: all; }
.mob-menu a {
  font-family: var(--D);
  font-size: clamp(48px, 10vw, 80px); letter-spacing: 4px;
  color: var(--white); text-decoration: none;
  transition: color .3s;
}
.mob-menu a:hover { color: var(--red); }

/* ── MARQUEE ── */
.marquee-wrap {
  overflow: hidden; padding: 20px 0; background: var(--red);
}
.marquee-track {
  display: flex; white-space: nowrap;
  animation: marquee 24s linear infinite;
}
.marquee-item {
  font-family: var(--D); font-size: 18px; letter-spacing: 5px;
  color: var(--white); padding: 0 30px;
  display: flex; align-items: center; gap: 30px;
}
.marquee-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255,255,255,.35); flex-shrink: 0;
}
@keyframes marquee {
  from { transform:translateX(0); }
  to   { transform:translateX(-50%); }
}

/* ── SHARED SECTION ── */
.section { padding: 120px 52px; }
.section-sm { padding: 80px 52px; }

.label {
  font-family: var(--M); font-size: 10px; letter-spacing: 4px;
  text-transform: uppercase; color: var(--red); margin-bottom: 16px;
}
.h-display {
  font-family: var(--D);
  font-size: clamp(44px, 6vw, 92px);
  line-height: 1; letter-spacing: 2px;
}
.h-display em {
  font-style: italic; font-family: var(--B); color: var(--red);
}

/* ── REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.vis { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }

/* ── GRAIN ── */
.grain {
  position: absolute; inset: -50%; width: 200%; height: 200%;
  z-index: 3; opacity: .045; pointer-events: none;
  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");
  animation: grain .5s steps(2) infinite;
}
@keyframes grain {
  0%   { transform: translate(0,0); }
  20%  { transform: translate(-2%,-3%); }
  40%  { transform: translate(3%,1%); }
  60%  { transform: translate(-1%,4%); }
  80%  { transform: translate(2%,-2%); }
  100% { transform: translate(0,0); }
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--M); font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--black);
  background: var(--red); padding: 16px 34px;
  text-decoration: none;
  transition: background .3s, transform .3s;
}
.btn-primary:hover { background: var(--white); transform: translateX(4px); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--M); font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--white);
  border: 1px solid rgba(240,237,230,.25); padding: 16px 34px;
  text-decoration: none;
  transition: border-color .3s, color .3s;
}
.btn-secondary:hover { border-color: var(--red); color: var(--red); }

.btn-white {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--M); font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--red);
  background: var(--white); padding: 18px 36px;
  text-decoration: none; white-space: nowrap;
  transition: background .3s, color .3s, transform .3s;
  flex-shrink: 0;
}
.btn-white:hover { background: var(--black); color: var(--white); transform: translateX(4px); }

.link-red {
  font-family: var(--M); font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--red); text-decoration: none;
  opacity: .8; display: inline-flex; align-items: center; gap: 8px;
  transition: opacity .3s, transform .3s;
}
.link-red:hover { opacity: 1; transform: translateX(4px); }

/* ── FOOTER ── */
footer {
  background: var(--mid);
  padding: 40px 52px;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 24px;
  border-top: 1px solid var(--border-s);
}
.ft-left { display: flex; flex-direction: column; gap: 6px; }
.ft-logo { font-family: var(--D); font-size: 20px; letter-spacing: 5px; color: var(--white); }
.ft-logo span { color: var(--red); }
.ft-copy { font-family: var(--M); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: rgba(240,237,230,.22); }
.ft-center { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.ft-tagline { font-family: var(--B); font-style: italic; font-size: 14px; color: rgba(240,237,230,.28); }
.ft-socials { display: flex; gap: 22px; justify-content: flex-end; }
.ft-socials a { font-family: var(--M); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: rgba(240,237,230,.38); text-decoration: none; transition: color .3s; }
.ft-socials a:hover { color: var(--red); }

/* ── PAGE HERO (non-home) ── */
.page-hero {
  position: relative;
  padding: 180px 52px 100px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-s);
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(204,17,17,.07) 0%, transparent 65%),
    linear-gradient(180deg, rgba(8,8,8,0) 0%, var(--black) 100%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-eyebrow {
  font-family: var(--M); font-size: 10px; letter-spacing: 4px;
  text-transform: uppercase; color: var(--red); margin-bottom: 20px;
  opacity: 0; animation: fadeUp .9s ease .2s forwards;
}
.page-hero-title {
  font-family: var(--D);
  font-size: clamp(64px, 10vw, 150px);
  line-height: .92; letter-spacing: -1px;
  opacity: 0; animation: fadeUp .9s ease .4s forwards;
}
.page-hero-title em { font-style: italic; font-family: var(--B); color: var(--red); }
.page-hero-sub {
  max-width: 520px; font-size: 17px; line-height: 1.75;
  color: rgba(240,237,230,.58); margin-top: 24px;
  opacity: 0; animation: fadeUp .9s ease .6s forwards;
}

@keyframes fadeUp {
  from { opacity:0; transform:translateY(28px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeIn {
  from { opacity:0; } to { opacity:.6; }
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--red);
  padding: 80px 52px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px;
}
.cta-band-title {
  font-family: var(--D);
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1; color: var(--white);
}
.cta-band-title em { font-style: italic; font-family: var(--B); }

/* ── BADGE 48H ── */
.badge-48h {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--M); font-size: 9px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--red);
  border: 1px solid var(--red); padding: 5px 12px;
  margin-bottom: 24px;
}
.badge-48h::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--red);
  animation: blink 1.4s ease infinite;
}
@keyframes blink { 0%,100%{ opacity:1; } 50%{ opacity:.2; } }
@keyframes scrollPulse { 0%,100%{ transform:scaleY(1); opacity:1; } 50%{ transform:scaleY(.5); opacity:.3; } }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  nav { padding: 18px 24px; }
  nav.scrolled { padding: 14px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mob-menu { display: flex; }
  .section, .section-sm { padding: 80px 24px; }
  .page-hero { padding: 140px 24px 80px; }
  footer { grid-template-columns: 1fr; text-align: center; padding: 32px 24px; }
  .ft-socials { justify-content: center; }
  .cta-band { flex-direction: column; align-items: flex-start; padding: 60px 24px; }
}
@media (max-width: 480px) {
  .page-hero-title { font-size: clamp(52px, 14vw, 80px); }
}
