/* ============================================================
   MINDLOCK RESIDENCE — stylesheet
   Donker + rood huisstijl (#c8102e)
   ============================================================ */

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

:root {
  --black:    #080808;
  --dark:     #0d0d0d;
  --card:     #141414;
  --card-2:   #1a1a1a;
  --border:   #242424;
  --red:      #e10600;
  --red-hot:  #ff2a17;
  --red-dim:  #8f0500;
  --red-glow: rgba(225,6,0,.35);
  --white:    #f5f5f5;
  --muted:    #8a8a8a;
  --light:    #cfcfcf;
  --maxw:     1280px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  overflow-x: hidden;
  line-height: 1.5;
}

@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
}

img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--red); color: #fff; }

/* ── CUSTOM CURSOR ── */
#cursor, #cursor-ring { display: none; }
@media (hover: hover) and (pointer: fine) {
  #cursor {
    display: block;
    position: fixed; width: 10px; height: 10px;
    background: var(--red); border-radius: 50%;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform .15s ease, width .2s, height .2s, background .2s;
  }
  #cursor-ring {
    display: block;
    position: fixed; width: 34px; height: 34px;
    border: 1px solid var(--red); border-radius: 50%;
    pointer-events: none; z-index: 9998;
    transform: translate(-50%, -50%);
    transition: left .12s ease, top .12s ease, width .2s, height .2s, opacity .2s;
    opacity: .5;
  }
  body.hovered #cursor { width: 18px; height: 18px; background: var(--white); }
  body.hovered #cursor-ring { width: 54px; height: 54px; border-color: var(--white); opacity: .3; }
}

/* ── NOISE OVERLAY ── */
body::before {
  content: ''; position: fixed; inset: 0; z-index: 1;
  pointer-events: none; opacity: .4;
  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)' opacity='0.04'/%3E%3C/svg%3E");
}

/* ── SCROLL PROGRESS ── */
#progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: var(--red); z-index: 200;
  box-shadow: 0 0 12px var(--red-glow);
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.3rem clamp(1.5rem, 5vw, 4rem);
  transition: background .4s ease, backdrop-filter .4s ease, border-color .4s ease, padding .4s ease;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(8,8,8,.82);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  padding-top: 1rem; padding-bottom: 1rem;
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.55rem; letter-spacing: .14em;
  color: var(--white); text-decoration: none; white-space: nowrap;
}
.nav-logo span { color: var(--red); }
.nav-logo i { font-style: normal; color: var(--muted); letter-spacing: .2em; }
.nav-links { display: flex; gap: 2.2rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: .78rem; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted);
  text-decoration: none; position: relative; transition: color .25s;
}
.nav-links a:not(.nav-cta)::after {
  content: ''; position: absolute; bottom: -5px; left: 0; right: 0;
  height: 1px; background: var(--red);
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.nav-links a:not(.nav-cta):hover { color: var(--white); }
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--red); color: #fff !important;
  padding: .55rem 1.3rem; border-radius: 2px;
  font-size: .72rem !important; font-weight: 600 !important; letter-spacing: .12em !important;
  transition: background .25s, transform .25s, box-shadow .25s !important;
}
.nav-cta:hover { background: var(--red-hot); transform: translateY(-1px); box-shadow: 0 6px 24px var(--red-glow); }

/* hamburger */
#menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px; z-index: 101;
}
#menu-toggle span { width: 24px; height: 2px; background: var(--white); transition: transform .3s, opacity .3s; }
body.menu-open #menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open #menu-toggle span:nth-child(2) { opacity: 0; }
body.menu-open #menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

#mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(8,8,8,.98); backdrop-filter: blur(10px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem;
  opacity: 0; visibility: hidden; transition: opacity .35s ease, visibility .35s;
}
body.menu-open #mobile-menu { opacity: 1; visibility: visible; }
#mobile-menu a {
  font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: .08em;
  color: var(--light); text-decoration: none; transition: color .2s;
}
#mobile-menu a:hover { color: var(--red); }
#mobile-menu .nav-cta { font-family: 'Space Grotesk'; font-size: .9rem !important; padding: .7rem 1.6rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .9rem 2rem; font-family: 'Space Grotesk', sans-serif;
  font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px; border: none;
  transition: transform .25s, box-shadow .25s, background .25s, border-color .25s;
}
@media (hover: hover) and (pointer: fine) { .btn { cursor: none; } }
.btn svg { width: 16px; height: 16px; }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 0 30px var(--red-glow); }
.btn-primary:hover { background: var(--red-hot); transform: translateY(-2px); box-shadow: 0 0 50px var(--red-glow); }
.btn-ghost { background: transparent; color: var(--white); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--white); transform: translateY(-2px); }

/* ── HERO ── */
#hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 72% 45%, var(--red-glow) 0%, transparent 60%),
    radial-gradient(ellipse 45% 60% at 12% 85%, rgba(225,6,0,.13) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0; opacity: .3;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-content { position: relative; z-index: 2; padding: 0 clamp(1.5rem, 5vw, 4rem); max-width: 960px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .7rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--red); margin-bottom: 1.6rem;
}
.hero-tag::before { content: ''; width: 28px; height: 1px; background: var(--red); }
h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4.5rem, 13vw, 12rem); line-height: .86; letter-spacing: .02em; margin-bottom: 1.4rem;
}
h1 .line { display: block; overflow: hidden; }
h1 .line > span { display: block; animation: slideUp .9s cubic-bezier(.16,1,.3,1) both; }
h1 .line:nth-child(2) > span { animation-delay: .12s; }
h1 em { font-style: normal; color: var(--red); }
@keyframes slideUp { from { transform: translateY(110%); } to { transform: translateY(0); } }

.hero-rotator {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(1.4rem, 3vw, 2.2rem);
  letter-spacing: .06em; margin-bottom: 1.4rem; color: var(--light);
  animation: fadeIn 1s .35s both;
}
.hero-rotator .rotate { color: var(--red); display: inline-block; min-width: 6ch; transition: opacity .3s; }
.hero-sub {
  font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 300; color: var(--light);
  max-width: 520px; line-height: 1.75; margin-bottom: 2.4rem; animation: fadeIn 1s .5s both;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeIn 1s .65s both; }

.hero-stats {
  position: absolute; right: clamp(1.5rem, 5vw, 4rem); bottom: 3rem; z-index: 2;
  display: flex; flex-direction: column; gap: 1.2rem; animation: fadeIn 1s .8s both;
}
.stat { text-align: right; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem; line-height: 1; }
.stat-label { font-size: .62rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.stat-divider { width: 100%; height: 1px; background: var(--border); }

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: clamp(1.5rem, 5vw, 4rem); z-index: 2;
  display: flex; align-items: center; gap: .8rem;
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted);
  text-decoration: none; animation: fadeIn 1.2s .9s both;
}
.hero-scroll .line { width: 40px; height: 1px; background: linear-gradient(90deg, var(--red), transparent); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: .3; } 50% { opacity: 1; } }

/* ── MARQUEE ── */
.marquee-wrap { position: relative; overflow: hidden; background: var(--red); padding: .85rem 0; z-index: 2; }
.marquee-track { display: flex; gap: 3rem; white-space: nowrap; width: max-content; animation: marquee 26s linear infinite; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item { display: inline-flex; align-items: center; gap: 3rem; font-family: 'Bebas Neue', sans-serif; font-size: 1.05rem; letter-spacing: .18em; color: rgba(255,255,255,.9); }
.marquee-dot { width: 5px; height: 5px; background: rgba(255,255,255,.45); border-radius: 50%; }

/* ── SECTIONS SHARED ── */
section { position: relative; z-index: 2; }
.section-tag {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .64rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--red); margin-bottom: 1rem;
}
.section-tag::before { content: ''; width: 20px; height: 1px; background: var(--red); }
h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.8rem, 6vw, 5rem); letter-spacing: .04em; line-height: 1; }
h2 em { font-style: normal; color: var(--red); }

/* ── DIENSTEN ── */
#diensten { padding: clamp(5rem, 9vw, 8rem) clamp(1.5rem, 5vw, 4rem); max-width: var(--maxw); margin: 0 auto; }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; margin-bottom: 3.5rem; flex-wrap: wrap; }
.services-header p { max-width: 360px; font-family: 'Inter'; font-size: .9rem; color: var(--muted); line-height: 1.75; font-weight: 300; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.service-card { background: var(--card); padding: 2.5rem; position: relative; overflow: hidden; transition: background .3s; }
@media (hover: hover) and (pointer: fine) { .service-card { cursor: none; } }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .4s ease; }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: var(--card-2); }
.service-card:hover .service-num { color: var(--red); }
.service-num { font-family: 'Bebas Neue', sans-serif; font-size: .85rem; letter-spacing: .2em; color: var(--border); margin-bottom: 1.4rem; transition: color .3s; }
.service-icon { width: 48px; height: 48px; border: 1px solid var(--border); border-radius: 4px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.4rem; transition: border-color .3s, background .3s; }
.service-card:hover .service-icon { border-color: var(--red-dim); background: rgba(225,6,0,.08); }
.service-icon svg { width: 22px; height: 22px; color: var(--muted); transition: color .3s; }
.service-card:hover .service-icon svg { color: var(--red); }
.service-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: .05em; margin-bottom: .7rem; }
.service-desc { font-family: 'Inter'; font-size: .85rem; color: var(--muted); line-height: 1.7; font-weight: 300; margin-bottom: 1.4rem; }
.service-link { display: inline-flex; align-items: center; gap: .5rem; font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color .25s, gap .25s; }
.service-link:hover { color: var(--red); gap: .8rem; }
.service-link svg { width: 14px; height: 14px; }

/* ── WERK ── */
#werk { padding: clamp(5rem, 9vw, 8rem) clamp(1.5rem, 5vw, 4rem); background: var(--dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.werk-header, .shop-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; max-width: var(--maxw); margin: 0 auto 2rem; flex-wrap: wrap; }
.werk-header p, .shop-header p { max-width: 320px; font-family: 'Inter'; font-size: .9rem; color: var(--muted); line-height: 1.7; font-weight: 300; }

.filter-bar { display: flex; flex-wrap: wrap; gap: .6rem; max-width: var(--maxw); margin: 0 auto 2.5rem; }
.filter-btn {
  background: transparent; border: 1px solid var(--border); color: var(--muted);
  padding: .5rem 1.1rem; border-radius: 2px;
  font-family: 'Space Grotesk'; font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  transition: border-color .25s, color .25s, background .25s;
}
@media (hover: hover) and (pointer: fine) { .filter-btn { cursor: none; } }
.filter-btn:hover { color: var(--white); border-color: var(--muted); }
.filter-btn.active { background: var(--red); border-color: var(--red); color: #fff; }

.werk-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; max-width: var(--maxw); margin: 0 auto; }
.work-card { grid-column: span 1; background: var(--card); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; transition: transform .3s, border-color .3s; }
@media (hover: hover) and (pointer: fine) { .work-card { cursor: none; } }
.work-card.large { grid-column: span 2; grid-row: span 2; }
.work-card:hover { transform: translateY(-4px); border-color: var(--red-dim); }
.work-media { position: relative; padding-top: 75%; background: linear-gradient(135deg, #1c1c1c, #0d0d0d); overflow: hidden; }
.work-card.large .work-media { padding-top: 0; height: calc(100% - 76px); min-height: 260px; }
.work-media::after { content: attr(data-label); position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: #3a3a3a; }
.work-media::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 70% 20%, rgba(225,6,0,.12), transparent 60%); opacity: 0; transition: opacity .3s; }
.work-card:hover .work-media::before { opacity: 1; }
.work-cat { position: absolute; top: 1rem; left: 1rem; z-index: 2; font-size: .58rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--white); background: rgba(225,6,0,.85); padding: .25rem .6rem; border-radius: 1px; }
.work-info { padding: 1.1rem 1.3rem; }
.work-title { font-size: .95rem; font-weight: 600; margin-bottom: .25rem; }
.work-card.large .work-title { font-family: 'Bebas Neue'; font-size: 1.6rem; letter-spacing: .04em; }
.work-meta { font-family: 'Inter'; font-size: .75rem; color: var(--muted); }
.werk-empty { text-align: center; color: var(--muted); margin-top: 2rem; font-family: 'Inter'; }

/* ── MUZIEK ── */
#muziek { padding: clamp(5rem, 9vw, 8rem) clamp(1.5rem, 5vw, 4rem); }
.muziek-inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: .85fr 1.15fr; gap: 4rem; align-items: start; }
.muziek-intro p { font-family: 'Inter'; font-size: .92rem; color: var(--light); line-height: 1.8; font-weight: 300; margin: 1.2rem 0 1.8rem; }
.muziek-platforms { display: flex; flex-wrap: wrap; gap: .6rem; }
.platform-btn { padding: .5rem 1.1rem; border: 1px solid var(--border); border-radius: 2px; font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-decoration: none; color: var(--muted); transition: border-color .25s, color .25s, background .25s; }
.platform-btn:hover { border-color: var(--red); color: var(--red); background: rgba(225,6,0,.06); }

.release-list { display: flex; flex-direction: column; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.release-row { display: grid; grid-template-columns: 56px 1fr auto 18px; align-items: center; gap: 1.2rem; padding: 1rem 1.3rem; background: var(--card); text-decoration: none; transition: background .25s; }
@media (hover: hover) and (pointer: fine) { .release-row { cursor: none; } }
.release-row:hover { background: var(--card-2); }
.release-art { width: 56px; height: 56px; border-radius: 3px; background: linear-gradient(135deg, var(--red-dim), #0d0d0d); position: relative; flex-shrink: 0; }
.release-art::after { content: attr(data-label); position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: .5rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); }
.release-title { font-size: .92rem; font-weight: 600; color: var(--white); }
.release-meta { font-family: 'Inter'; font-size: .76rem; color: var(--muted); margin-top: .15rem; }
.release-year { font-family: 'Bebas Neue'; font-size: 1.1rem; color: var(--muted); letter-spacing: .06em; }
.release-arrow { width: 18px; height: 18px; color: var(--border); transition: color .25s, transform .25s; }
.release-row:hover .release-arrow { color: var(--red); transform: translateX(3px); }

/* ── SHOP ── */
#shop { padding: clamp(5rem, 9vw, 8rem) clamp(1.5rem, 5vw, 4rem); background: var(--dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.shop-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); max-width: var(--maxw); margin: 0 auto; }
.shop-card { background: var(--card); overflow: hidden; position: relative; transition: background .3s; }
@media (hover: hover) and (pointer: fine) { .shop-card { cursor: none; } }
.shop-card:hover { background: var(--card-2); }
.shop-image { position: relative; padding-top: 110%; background: linear-gradient(135deg, #1c1c1c, #0d0d0d); overflow: hidden; }
.shop-image-inner { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.shop-image-inner::after { content: attr(data-label); font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; color: #3a3a3a; }
.shop-card:hover .shop-image::after { content: ''; position: absolute; inset: 0; background: rgba(225,6,0,.07); }
.shop-badge { position: absolute; top: 1rem; left: 1rem; z-index: 2; background: var(--red); font-size: .58rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding: .22rem .55rem; border-radius: 1px; }
.shop-info { padding: 1.1rem 1.3rem 1.4rem; }
.shop-name { font-weight: 600; font-size: .9rem; margin-bottom: .2rem; }
.shop-sub { font-family: 'Inter'; font-size: .73rem; color: var(--muted); margin-bottom: .6rem; }
.shop-price { font-family: 'Bebas Neue'; font-size: 1.35rem; color: var(--red); letter-spacing: .05em; }
.shop-cta { text-align: center; margin-top: 2rem; }

/* ── PROCES ── */
#proces { padding: clamp(5rem, 9vw, 8rem) clamp(1.5rem, 5vw, 4rem); max-width: var(--maxw); margin: 0 auto; }
.proces-header { margin-bottom: 3.5rem; }
.proces-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.proces-step { position: relative; padding-top: 2rem; border-top: 1px solid var(--border); }
.proces-step .proces-num { font-family: 'Bebas Neue'; font-size: 2.4rem; color: var(--red); letter-spacing: .05em; line-height: 1; margin-bottom: .8rem; }
.proces-step h3 { font-family: 'Bebas Neue'; font-size: 1.5rem; letter-spacing: .05em; margin-bottom: .6rem; }
.proces-step p { font-family: 'Inter'; font-size: .85rem; color: var(--muted); line-height: 1.7; font-weight: 300; }

/* ── OVER ── */
#over { padding: clamp(5rem, 9vw, 8rem) clamp(1.5rem, 5vw, 4rem); max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: center; }
.about-visual { position: relative; }
.about-image-frame { position: relative; width: 100%; padding-top: 120%; border-radius: 4px; overflow: hidden; background: var(--card); border: 1px solid var(--border); }
.about-image-frame::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--red-dim) 0%, var(--black) 65%); opacity: .55; }
.about-image-frame::after { content: attr(data-label); position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: .64rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); z-index: 2; }
.about-image-frame.has-photo { background-size: cover; background-position: center; }
.about-image-frame.has-photo::before { opacity: .2; }
.about-image-frame.has-photo::after { content: none; }
/* work-card met echte foto */
.work-media.has-photo { background-size: cover; background-position: center; }
.work-media.has-photo::after { content: none; }
/* release-cover met echte afbeelding */
.release-art.has-photo { background-size: cover; background-position: center; }
.release-art.has-photo::after { content: none; }
/* work-card met klikbare video */
.work-card.has-video { cursor: pointer; }
.work-card.has-video .work-media::before { opacity: 1; }
.work-play { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); z-index: 3; width: 56px; height: 56px; border-radius: 50%; background: rgba(225,6,0,.92); display: flex; align-items: center; justify-content: center; box-shadow: 0 0 28px var(--red-glow); transition: transform .25s ease, background .25s; }
.work-card.has-video:hover .work-play { transform: translate(-50%,-50%) scale(1.12); background: var(--red-hot); }
.work-play svg { width: 20px; height: 20px; color: #fff; margin-left: 3px; }
.work-card.large .work-play { width: 72px; height: 72px; }
.work-card.large .work-play svg { width: 26px; height: 26px; }
.about-accent { position: absolute; top: -20px; right: -20px; width: 120px; height: 120px; border: 1px solid var(--red-dim); border-radius: 4px; z-index: 0; }
.about-accent-2 { position: absolute; bottom: -20px; left: -20px; width: 64px; height: 64px; background: var(--red); border-radius: 2px; z-index: 3; display: flex; align-items: center; justify-content: center; }
.about-accent-2 span { font-family: 'Bebas Neue'; font-size: 1.2rem; letter-spacing: .08em; color: #fff; }
.about-text h2 { margin-bottom: 1.4rem; }
.about-text p { font-family: 'Inter'; font-size: .95rem; font-weight: 300; color: var(--light); line-height: 1.85; margin-bottom: 1.2rem; }
.about-text p strong { color: var(--white); font-weight: 600; }
.about-quote { border-left: 2px solid var(--red); padding-left: 1.3rem; margin: 1.8rem 0; font-family: 'Space Grotesk'; font-size: 1.05rem; font-style: italic; color: var(--white); line-height: 1.6; }
.about-skills { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.8rem; }
.skill-tag { padding: .35rem .9rem; border: 1px solid var(--border); border-radius: 1px; font-size: .66rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); transition: border-color .25s, color .25s; }
.skill-tag:hover { border-color: var(--red); color: var(--red); }

/* ── CONTACT ── */
#contact { padding: clamp(5rem, 9vw, 8rem) clamp(1.5rem, 5vw, 4rem); background: var(--dark); border-top: 1px solid var(--border); }
.contact-inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { font-family: 'Inter'; font-size: .92rem; color: var(--light); line-height: 1.8; font-weight: 300; margin-bottom: 2.2rem; max-width: 420px; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-detail { display: flex; align-items: center; gap: 1rem; text-decoration: none; transition: transform .2s; }
.contact-detail:hover { transform: translateX(3px); }
.contact-detail-icon { width: 38px; height: 38px; flex-shrink: 0; border: 1px solid var(--border); border-radius: 4px; display: flex; align-items: center; justify-content: center; transition: border-color .25s, background .25s; }
.contact-detail:hover .contact-detail-icon { border-color: var(--red-dim); background: rgba(225,6,0,.08); }
.contact-detail-icon svg { width: 16px; height: 16px; color: var(--red); }
.contact-detail-text { font-family: 'Inter'; font-size: .82rem; color: var(--muted); line-height: 1.5; }
.contact-detail-text strong { display: block; color: var(--white); font-weight: 600; font-size: .85rem; font-family: 'Space Grotesk'; }

.contact-form { background: var(--card); border: 1px solid var(--border); padding: 2.4rem; border-radius: 4px; }
.form-title { font-family: 'Bebas Neue'; font-size: 1.5rem; letter-spacing: .06em; margin-bottom: 1.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: .66rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: .5rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: var(--black); border: 1px solid var(--border); border-radius: 2px;
  padding: .8rem 1rem; font-family: 'Space Grotesk'; font-size: .85rem; color: var(--white);
  outline: none; transition: border-color .25s; appearance: none; -webkit-appearance: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #3a3a3a; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 110px; }
@media (hover: hover) and (pointer: fine) { .form-group select { cursor: none; } }
.form-submit {
  width: 100%; margin-top: .4rem; padding: .95rem; background: var(--red); border: none; border-radius: 2px;
  font-family: 'Space Grotesk'; font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: #fff; transition: background .25s, transform .25s, box-shadow .25s; box-shadow: 0 0 30px var(--red-glow);
}
@media (hover: hover) and (pointer: fine) { .form-submit { cursor: none; } }
.form-submit:hover { background: var(--red-hot); transform: translateY(-1px); box-shadow: 0 0 50px var(--red-glow); }

/* ── FOOTER ── */
footer { background: var(--black); border-top: 1px solid var(--border); padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem) 2.5rem; position: relative; z-index: 2; }
.footer-newsletter { max-width: var(--maxw); margin: 0 auto 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; }
.footer-newsletter h3 { font-family: 'Bebas Neue'; font-size: 2rem; letter-spacing: .05em; margin-bottom: .3rem; }
.footer-newsletter p { font-family: 'Inter'; font-size: .85rem; color: var(--muted); font-weight: 300; }
.newsletter-form { display: flex; gap: .6rem; flex-wrap: wrap; }
.newsletter-form input { background: var(--card); border: 1px solid var(--border); border-radius: 2px; padding: .8rem 1rem; font-family: 'Space Grotesk'; font-size: .85rem; color: var(--white); outline: none; min-width: 240px; transition: border-color .25s; }
.newsletter-form input:focus { border-color: var(--red); }
.newsletter-form input::placeholder { color: #3a3a3a; }
.newsletter-form button { background: var(--red); border: none; border-radius: 2px; padding: .8rem 1.6rem; font-family: 'Space Grotesk'; font-size: .76rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: #fff; transition: background .25s, transform .25s; }
@media (hover: hover) and (pointer: fine) { .newsletter-form button { cursor: none; } }
.newsletter-form button:hover { background: var(--red-hot); transform: translateY(-1px); }

.footer-top { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--border); margin-bottom: 1.8rem; }
.footer-brand .logo { font-family: 'Bebas Neue'; font-size: 1.8rem; letter-spacing: .1em; display: block; margin-bottom: 1rem; }
.footer-brand .logo span { color: var(--red); }
.footer-brand .logo i { font-style: normal; color: var(--muted); letter-spacing: .18em; }
.footer-brand p { font-family: 'Inter'; font-size: .82rem; color: var(--muted); line-height: 1.7; font-weight: 300; max-width: 280px; margin-bottom: 1.4rem; }
.socials { display: flex; gap: .7rem; }
.social-btn { width: 38px; height: 38px; border: 1px solid var(--border); border-radius: 4px; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: border-color .25s, background .25s; }
.social-btn svg { width: 16px; height: 16px; color: var(--muted); transition: color .25s; }
.social-btn:hover { border-color: var(--red); background: rgba(225,6,0,.08); }
.social-btn:hover svg { color: var(--red); }
.footer-col h4 { font-size: .66rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.footer-col ul a { font-family: 'Inter'; font-size: .82rem; color: var(--muted); text-decoration: none; font-weight: 300; transition: color .25s; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom { max-width: var(--maxw); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; font-family: 'Inter'; font-size: .72rem; color: var(--muted); gap: 1rem; flex-wrap: wrap; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { text-decoration: none; color: var(--muted); transition: color .25s; }
.footer-legal a:hover { color: var(--red); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .muziek-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  #over { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { max-width: 420px; }
  .proces-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}
@media (max-width: 820px) {
  .nav-links { display: none; }
  #menu-toggle { display: flex; }
  .hero-stats { display: none; }
  .werk-grid { grid-template-columns: repeat(2, 1fr); }
  .work-card.large { grid-column: span 2; grid-row: span 1; }
  .work-card.large .work-media { height: auto; padding-top: 60%; min-height: 0; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-newsletter { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 520px) {
  .services-grid { grid-template-columns: 1fr; }
  .werk-grid { grid-template-columns: 1fr; }
  .work-card.large { grid-column: span 1; }
  .shop-grid { grid-template-columns: 1fr 1fr; }
  .proces-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .newsletter-form input { min-width: 0; flex: 1; }
}

/* ============================================================
   MLR REDESIGN — comp layout (nav, hero, ecosystem, footer)
   ============================================================ */

/* ── NAV (text wordmark + right cluster) ── */
.nav-logo-text { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.3rem; letter-spacing: .04em; text-transform: uppercase; color: var(--white); text-decoration: none; white-space: nowrap; }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-dash { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border: 1px solid var(--border); border-radius: 7px; color: var(--light); transition: border-color .25s, color .25s, background .25s; }
.nav-dash svg { width: 17px; height: 17px; }
.nav-dash:hover { border-color: var(--red); color: var(--red); background: rgba(225,6,0,.08); }
@media (hover: hover) and (pointer: fine) { .nav-dash { cursor: none; } }
#menu-toggle { display: flex; }            /* visible on desktop too, per comp */
nav .nav-links a.active { color: var(--white); }
nav .nav-links a.active::after { transform: scaleX(1); }

/* ── generic image placeholder (shown until real asset is added) ── */
.img-placeholder { align-items: center; justify-content: center; flex-direction: column; gap: .35rem; text-align: center;
  font-family: 'Space Grotesk', sans-serif; font-size: .72rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: #5a5a5a;
  border: 1px dashed #2e2e2e; border-radius: 8px; background: rgba(255,255,255,.015); padding: 1rem; }
.img-placeholder small { font-size: .58rem; letter-spacing: .04em; color: #444; text-transform: none; max-width: 220px; }

/* ── COMP HERO ── */
#hero.comp-hero { min-height: 100vh; display: block; position: relative; overflow: hidden; background: var(--black); }
.hero-banner { position: absolute; inset: 0; z-index: 0;
  background: url('assets/banner.png') center 45% / cover no-repeat;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 16%, #000 54%, transparent 84%);
          mask-image: linear-gradient(to bottom, transparent 0%, #000 16%, #000 54%, transparent 84%); }
.hero-vignette { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(ellipse 52% 42% at 50% 40%, rgba(225,6,0,.20), transparent 60%),
    radial-gradient(ellipse 120% 75% at 50% 38%, transparent 50%, rgba(0,0,0,.55) 100%); }

.hero-center { position: relative; z-index: 3; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.6rem; padding: 5rem 1.5rem 34vh; text-align: center; }
.hero-logo { display: flex; align-items: center; justify-content: center; animation: fadeIn 1s .2s both; }
.hero-logo img { max-height: min(36vh, 330px); width: auto; filter: drop-shadow(0 0 60px rgba(225,6,0,.45)); }
.logo-ph { width: 240px; height: 280px; }
.hero-center .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; animation: fadeIn 1s .45s both; }

/* scroll-down (left) */
.scroll-down { position: absolute; left: clamp(1.5rem, 4vw, 4rem); top: 46%; z-index: 4; display: flex; flex-direction: column; gap: 1rem; text-decoration: none; }
.scroll-down .scroll-label { font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.scroll-down .scroll-line { width: 1px; height: 120px; background: linear-gradient(var(--red), rgba(225,6,0,.05)); position: relative; }
.scroll-down .scroll-line::after { content: ''; position: absolute; bottom: 0; left: -3px; width: 7px; height: 7px; border-right: 1.5px solid var(--red); border-bottom: 1.5px solid var(--red); transform: rotate(45deg); animation: pulse 2s infinite; }

/* socials (right) */
.hero-socials { position: absolute; right: clamp(1rem, 3.5vw, 2.4rem); top: 50%; transform: translateY(-50%); z-index: 4; display: flex; flex-direction: column; gap: .7rem; }
.hero-socials a { width: 38px; height: 38px; border-radius: 9px; display: flex; align-items: center; justify-content: center; color: var(--light); background: rgba(18,18,20,.55); border: 1px solid var(--border); backdrop-filter: blur(6px); transition: color .25s, border-color .25s, background .25s, transform .25s; }
.hero-socials a:hover { color: #fff; border-color: var(--red); background: rgba(225,6,0,.2); transform: translateY(-2px); }
.hero-socials svg { width: 18px; height: 18px; }

/* creators band (bottom) */
.hero-creators { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; display: flex; align-items: flex-end; justify-content: center; pointer-events: none; }
.hero-creators img { width: 100%; max-width: var(--maxw); height: auto; max-height: 44vh; object-fit: contain; object-position: bottom center; filter: drop-shadow(0 20px 40px rgba(0,0,0,.6)); }
.creators-ph { width: min(94%, var(--maxw)); height: 110px; margin: 0 auto 1.4rem; }

/* ── ECOSYSTEEM ── */
.ecosystem { max-width: var(--maxw); margin: 0 auto; padding: clamp(4rem, 7vw, 7rem) clamp(1.5rem, 5vw, 4rem); }
.eco-head { margin-bottom: 2.5rem; }
.eco-head h2 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(1.9rem, 4.2vw, 3.1rem); letter-spacing: .01em; text-transform: uppercase; line-height: 1; }
.eco-head h2 span { color: var(--red); }
.eco-grid { display: grid; grid-template-columns: 2.7fr 1.15fr; gap: 1.2rem; align-items: stretch; }
.eco-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.eco-card { position: relative; min-height: 340px; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.4rem; isolation: isolate; transition: transform .3s, border-color .3s, box-shadow .3s; }
@media (hover: hover) and (pointer: fine) { .eco-card { cursor: none; } }
.eco-card::before { content: ''; position: absolute; inset: 0; z-index: -2;
  background-color: #0c0c0e;
  background-image: var(--card-img, linear-gradient(160deg, #1b1b1e, #0c0c0e));
  background-size: cover; background-position: center; background-repeat: no-repeat; }
.eco-card::after { content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(8,8,8,.2) 0%, rgba(8,8,8,.55) 45%, rgba(8,8,8,.94) 100%); }
.eco-card:hover { transform: translateY(-5px); border-color: var(--red-dim); }
.eco-card.featured { border-color: var(--red); box-shadow: 0 0 0 1px var(--red), 0 0 40px rgba(225,6,0,.25); }
.eco-card-body h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; text-transform: uppercase; font-size: 1.15rem; line-height: 1.1; color: var(--red); margin-bottom: .55rem; letter-spacing: .01em; }
.eco-card-body p { font-family: 'Inter', sans-serif; font-size: .72rem; letter-spacing: .05em; text-transform: uppercase; color: var(--light); line-height: 1.5; }
.eco-explore { display: inline-flex; align-items: center; gap: .45rem; margin-top: 1.3rem; font-size: .62rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color .25s, gap .25s; }
.eco-explore svg { width: 13px; height: 13px; }
.eco-card:hover .eco-explore, .eco-card.featured .eco-explore { color: var(--red); }
.eco-card:hover .eco-explore { gap: .7rem; }

/* spotlight panel */
.spotlight { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; display: flex; background: linear-gradient(160deg, #141416, #0b0b0d); min-height: 340px; }
.spotlight-photo { flex: 1.05; position: relative; min-width: 0; background: linear-gradient(160deg, var(--red-dim), #0c0c0e); }
.spotlight-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.spotlight-photo .img-placeholder { color: rgba(255,255,255,.45); }
.spotlight-body { flex: 1; padding: 1.6rem 1.4rem; display: flex; flex-direction: column; justify-content: center; }
.spotlight-body h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; text-transform: uppercase; font-size: 1.3rem; line-height: 1.08; margin: .3rem 0 1.3rem; }
.checklist { list-style: none; display: flex; flex-direction: column; gap: .8rem; }
.checklist li { position: relative; padding-left: 1.7rem; font-family: 'Inter', sans-serif; font-size: .84rem; color: var(--light); }
.checklist li::before { content: ''; position: absolute; left: 2px; top: 2px; width: 13px; height: 8px; border-left: 2px solid var(--red); border-bottom: 2px solid var(--red); transform: rotate(-45deg); }

/* ── COMP FOOTER ── */
.comp-footer { background: var(--black); border-top: 1px solid var(--border); padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 5vw, 4rem) 2rem; position: relative; z-index: 2; }
.footer-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.85fr 1fr; gap: 1.4rem; align-items: stretch; }
.footer-main { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; padding: 1.8rem; border: 1px solid var(--border); border-radius: 12px; background: linear-gradient(160deg, #0e0e10, #0a0a0c); }
.footer-logo { font-family: 'Space Grotesk', sans-serif; font-weight: 300; font-size: 1.45rem; line-height: 1.05; letter-spacing: .16em; text-transform: uppercase; color: var(--white); margin-bottom: .9rem; }
.footer-brand p { font-family: 'Inter', sans-serif; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); line-height: 1.5; }
.footer-brand p strong { color: var(--red); font-weight: 700; }
.footer-cta { position: relative; overflow: hidden; border: 1px solid var(--border); border-radius: 12px; padding: 2rem; display: flex; flex-direction: column; justify-content: center; gap: .4rem;
  background: radial-gradient(ellipse 80% 100% at 82% 0%, rgba(225,6,0,.2), transparent 60%), linear-gradient(160deg, #121214, #0a0a0c); }
.footer-cta h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.7rem; letter-spacing: -.01em; }
.footer-cta p { font-family: 'Inter', sans-serif; font-size: .8rem; color: var(--muted); margin-bottom: .8rem; text-transform: uppercase; letter-spacing: .06em; }
.cta-actions { display: flex; gap: .7rem; flex-wrap: wrap; }
.cta-actions .btn { padding: .72rem 1.2rem; font-size: .68rem; }
.cta-diamond { position: absolute; right: 1.6rem; bottom: 1.3rem; width: 24px; height: 24px; background: linear-gradient(135deg, #a8e9ff, #39b6e6); transform: rotate(45deg); border-radius: 5px; box-shadow: 0 0 26px rgba(80,200,255,.5); }
.comp-footer .footer-bottom { max-width: var(--maxw); margin: 2rem auto 0; padding-top: 1.5rem; border-top: 1px solid var(--border); }

/* ── RESPONSIVE (comp) ── */
@media (max-width: 1024px) {
  .eco-grid { grid-template-columns: 1fr; }
  .eco-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 820px) {
  .hero-socials { right: .7rem; gap: .5rem; }
  .hero-socials a { width: 34px; height: 34px; }
  .scroll-down { display: none; }
  .hero-center { padding-bottom: 26vh; }
}
.nav-cta { white-space: nowrap; }
@media (max-width: 560px) {
  .eco-cards { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .spotlight { flex-direction: column; }
  .spotlight-photo { min-height: 220px; }
  .hero-logo img { max-height: 32vh; }
  .nav-logo-text { font-size: 1.05rem; }
  .nav-right { gap: .6rem; }
  .nav-cta { padding: .5rem 1rem; font-size: .68rem !important; }
}

/* ============================================================
   INTRO ANIMATIE + SITE-ENTRANCE
   ============================================================ */
body.loading { overflow: hidden; }

#intro {
  position: fixed; inset: 0; z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(ellipse 55% 55% at 50% 50%, rgba(225,6,0,.14), transparent 62%), var(--black);
  transition: opacity .9s ease, visibility .9s ease;
}
.intro-stage { position: relative; display: flex; align-items: center; justify-content: center; }
.intro-ring {
  position: absolute; width: 260px; height: 260px;
  border: 1px solid var(--red); border-radius: 50%; opacity: 0;
  animation: introRing 1.9s cubic-bezier(.16,1,.3,1) .25s both;
}
.intro-logo {
  width: min(46vw, 300px); height: auto; opacity: 0;
  animation: introLogoIn 1.7s cubic-bezier(.16,1,.3,1) both,
             introPulse 2.4s 1.5s ease-in-out infinite;
}
@keyframes introLogoIn {
  0%   { opacity: 0; transform: scale(.55); filter: drop-shadow(0 0 0 rgba(225,6,0,0)) brightness(.4); }
  35%  { opacity: 1; }
  62%  { transform: scale(1.06); filter: drop-shadow(0 0 55px rgba(225,6,0,.75)) brightness(1.12); }
  100% { opacity: 1; transform: scale(1); filter: drop-shadow(0 0 35px rgba(225,6,0,.5)) brightness(1); }
}
@keyframes introPulse {
  0%, 100% { filter: drop-shadow(0 0 26px rgba(225,6,0,.45)); }
  50%      { filter: drop-shadow(0 0 58px rgba(225,6,0,.85)); }
}
@keyframes introRing {
  0%   { transform: scale(.3); opacity: 0; }
  30%  { opacity: .55; }
  100% { transform: scale(2.7); opacity: 0; }
}
body.loaded #intro { opacity: 0; visibility: hidden; pointer-events: none; }

/* site entrance (plays after the intro lifts) */
#nav { opacity: 0; transform: translateY(-14px);
  transition: opacity .7s ease, transform .7s ease, background .4s ease, backdrop-filter .4s ease, border-color .4s ease; }
.hero-logo,
.hero-center .hero-actions,
.hero-socials,
.scroll-down,
.hero-creators {
  animation: none !important; opacity: 0; transform: translateY(18px);
  transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1);
}
.hero-logo { transform: scale(.9); }
body.loaded #nav { opacity: 1; transform: none; }
body.loaded .hero-logo { opacity: 1; transform: none; transition-delay: .15s; }
body.loaded .hero-center .hero-actions { opacity: 1; transform: none; transition-delay: .45s; }
body.loaded .hero-creators { opacity: 1; transform: none; transition-delay: .3s; }
body.loaded .hero-socials { opacity: 1; transform: none; transition-delay: .6s; }
body.loaded .scroll-down { opacity: 1; transform: none; transition-delay: .7s; }

@media (prefers-reduced-motion: reduce) {
  .intro-logo, .intro-ring { animation-duration: .001ms !important; }
  #nav, .hero-logo, .hero-center .hero-actions, .hero-socials, .scroll-down, .hero-creators {
    transition-duration: .001ms !important; opacity: 1 !important; transform: none !important;
  }
}

/* ============================================================
   MULTI-PAGE + TAALWISSEL
   ============================================================ */
/* language toggle */
.lang-toggle { display: inline-flex; align-items: center; gap: 2px; border: 1px solid var(--border); border-radius: 7px; padding: 2px; }
.lang-toggle button { background: none; border: none; color: var(--muted); font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: .68rem; letter-spacing: .08em; padding: .32rem .55rem; border-radius: 5px; text-transform: uppercase; transition: color .2s, background .2s; }
@media (hover: hover) and (pointer: fine) { .lang-toggle button { cursor: none; } }
.lang-toggle button:hover { color: var(--white); }
.lang-toggle button.active { background: var(--red); color: #fff; }

/* inner pages: solid nav + gentle entrance */
body.inner #nav { background: rgba(8,8,8,.9); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
body.inner main { animation: fadeIn .5s ease both; }

/* mobile menu language toggle */
#mobile-menu .lang-toggle { margin-top: .6rem; }
@media (max-width: 820px) {
  .nav-right .lang-toggle { display: none; }
}

/* ============================================================
   ABOUT — verhaal, beloftes, afsluiter
   ============================================================ */
body[data-page="over"] #over { align-items: start; }
@media (min-width: 1025px) {
  body[data-page="over"] .about-visual { position: sticky; top: 96px; }
}

#belofte { max-width: var(--maxw); margin: 0 auto; padding: clamp(3rem,6vw,5rem) clamp(1.5rem,5vw,4rem) clamp(4rem,7vw,6rem); }
.commit-head { margin-bottom: 2.4rem; }
.commit-head h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.4rem,5vw,4rem); letter-spacing: .04em; line-height: 1; }
.commit-head h2 em { font-style: normal; color: var(--red); }
.commit-list { display: flex; flex-direction: column; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.commit { display: grid; grid-template-columns: 64px 1fr; gap: 1.4rem; align-items: start; background: var(--card); padding: 1.7rem 1.9rem; transition: background .25s; }
.commit:hover { background: var(--card-2); }
.commit-num { font-family: 'Bebas Neue', sans-serif; font-size: 1.9rem; color: var(--red); line-height: 1.1; }
.commit-if { font-family: 'Inter', sans-serif; font-size: .95rem; color: var(--light); line-height: 1.7; font-weight: 300; margin-bottom: .7rem; }
.commit-then { font-family: 'Space Grotesk', sans-serif; font-size: 1.02rem; font-weight: 600; color: var(--white); line-height: 1.5; display: flex; gap: .7rem; }
.commit-then::before { content: ''; flex: 0 0 auto; width: 18px; height: 2px; background: var(--red); margin-top: .6em; }

#mogelijk { text-align: center; border-top: 1px solid var(--border); padding: clamp(5rem,10vw,8rem) clamp(1.5rem,5vw,4rem); background: radial-gradient(ellipse 70% 120% at 50% 0%, rgba(225,6,0,.13), transparent 60%); }
.closing-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(3rem,9vw,7rem); letter-spacing: .03em; line-height: .92; }
.closing-title em { font-style: normal; color: var(--red); }
.closing-sub { margin-top: 1.3rem; font-family: 'Space Grotesk', sans-serif; font-size: clamp(.8rem,1.8vw,1.05rem); letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.closing-purpose { max-width: 620px; margin: 1.3rem auto 0; font-family: 'Inter', sans-serif; font-size: .95rem; line-height: 1.7; font-weight: 300; color: var(--light); }
.commit-intro { margin-top: .8rem; font-family: 'Inter', sans-serif; font-size: .95rem; font-weight: 300; color: var(--muted); }

@media (max-width: 560px) {
  .commit { grid-template-columns: 1fr; gap: .5rem; padding: 1.4rem; }
  .commit-num { font-size: 1.5rem; }
}

/* ============================================================
   HOMEPAGE — extra secties
   ============================================================ */
.home-section { padding: clamp(4rem,7vw,7rem) clamp(1.5rem,5vw,4rem); }
.home-section.alt { background: var(--dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.home-wrap { max-width: var(--maxw); margin: 0 auto; }
.home-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; max-width: var(--maxw); margin: 0 auto 2.5rem; flex-wrap: wrap; }
.home-head h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.2rem,5vw,3.6rem); letter-spacing: .04em; line-height: 1; }
.home-band { text-align: center; }
.home-band .home-wrap { max-width: 720px; }
.home-band h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.4rem,6vw,4rem); letter-spacing: .04em; line-height: 1; margin-bottom: 1.2rem; }
.home-band p { font-family: 'Inter', sans-serif; color: var(--light); line-height: 1.8; font-weight: 300; font-size: 1rem; margin-bottom: 2rem; }
.home-werk-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; max-width: var(--maxw); margin: 0 auto; }
.home-cta { text-align: center; border-top: 1px solid var(--border); background: radial-gradient(ellipse 70% 130% at 50% 0%, rgba(225,6,0,.13), transparent 60%); }
.home-cta .home-wrap { max-width: 680px; }
.home-cta h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.6rem,7vw,5rem); letter-spacing: .03em; line-height: .95; margin-bottom: 1rem; }
.home-cta p { font-family: 'Inter', sans-serif; color: var(--light); font-weight: 300; line-height: 1.7; margin-bottom: 2rem; }
.footer-credit { display: inline-flex; flex-direction: column; align-items: center; gap: 7px; line-height: 1; text-decoration: none; }
.footer-credit-by { font-family: 'Space Grotesk', sans-serif; font-size: .62rem; font-weight: 700; letter-spacing: .28em; text-indent: .28em; text-transform: uppercase; color: var(--muted); transition: color .25s ease; }
.footer-credit-logo { width: 62px; height: auto; filter: brightness(0) invert(1); opacity: .75; transition: filter .3s ease, opacity .3s ease; }
.footer-credit:hover .footer-credit-by { color: var(--red); }
.footer-credit:hover .footer-credit-logo { filter: none; opacity: 1; }
.footer-legal { align-items: center; }
.footer-credit-bar { max-width: var(--maxw); margin: 1.6rem auto 0; padding-top: 1.6rem; border-top: 1px solid var(--border); display: flex; justify-content: center; }

/* ============================================================
   SHOP (storefront + winkelwagen)
   ============================================================ */
#shop .shop-loading, .shop-empty { color: var(--muted); font-family: 'Inter', sans-serif; padding: 2rem 0; }
.shop-type { display: inline-block; font-size: .56rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--red); margin-bottom: .4rem; }
.shop-add { width: 100%; margin-top: .9rem; padding: .7rem; background: var(--red); border: none; border-radius: 2px; font-family: 'Space Grotesk', sans-serif; font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: #fff; transition: background .2s, transform .2s; }
@media (hover: hover) and (pointer: fine) { .shop-add { cursor: none; } }
.shop-add:hover:not(:disabled) { background: var(--red-hot); transform: translateY(-1px); }
.shop-add:disabled { background: #2a2a2a; color: var(--muted); }

#cart-fab { position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 9000; width: 54px; height: 54px; border-radius: 50%; background: var(--red); border: none; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 30px var(--red-glow); transition: transform .2s, background .2s; }
@media (hover: hover) and (pointer: fine) { #cart-fab { cursor: none; } }
#cart-fab:hover { transform: translateY(-2px); background: var(--red-hot); }
#cart-fab svg { width: 22px; height: 22px; }
.cart-count { position: absolute; top: -4px; right: -4px; min-width: 20px; height: 20px; padding: 0 5px; border-radius: 10px; background: #fff; color: var(--black); font-family: 'Space Grotesk'; font-size: .68rem; font-weight: 700; display: none; align-items: center; justify-content: center; }

body.cart-lock { overflow: hidden; }
#cart-drawer { position: fixed; inset: 0; z-index: 9500; display: none; }
#cart-drawer.open { display: block; }
.cart-backdrop { position: absolute; inset: 0; background: rgba(4,4,5,.7); backdrop-filter: blur(4px); }
.cart-panel { position: absolute; top: 0; right: 0; height: 100%; width: min(400px, 92vw); background: var(--dark); border-left: 1px solid var(--border); display: flex; flex-direction: column; animation: cartIn .3s cubic-bezier(.16,1,.3,1) both; }
@keyframes cartIn { from { transform: translateX(100%); } to { transform: none; } }
.cart-top { display: flex; align-items: center; justify-content: space-between; padding: 1.3rem 1.4rem; border-bottom: 1px solid var(--border); }
.cart-top h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: .05em; }
.cart-close { background: none; border: none; color: var(--muted); font-size: 1.6rem; line-height: 1; }
@media (hover: hover) and (pointer: fine) { .cart-close { cursor: none; } }
.cart-close:hover { color: var(--red); }
.cart-items { flex: 1; overflow-y: auto; padding: 1.2rem 1.4rem; }
.cart-empty { color: var(--muted); font-family: 'Inter', sans-serif; }
.cart-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .8rem 0; border-bottom: 1px solid var(--border); }
.cart-row-name { font-weight: 600; font-size: .9rem; }
.cart-row-price { font-family: 'Inter', sans-serif; font-size: .8rem; color: var(--muted); margin-top: .15rem; }
.cart-qty { display: flex; align-items: center; gap: .6rem; }
.cart-qty button { width: 26px; height: 26px; border: 1px solid var(--border); background: transparent; color: var(--white); border-radius: 4px; }
@media (hover: hover) and (pointer: fine) { .cart-qty button { cursor: none; } }
.cart-qty button:hover { border-color: var(--red); color: var(--red); }
.cart-qty span { min-width: 18px; text-align: center; font-size: .9rem; }
.cart-foot { padding: 1.3rem 1.4rem; border-top: 1px solid var(--border); }
.cart-total { display: flex; justify-content: space-between; font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1.05rem; margin-bottom: .4rem; }
.cart-note { font-family: 'Inter', sans-serif; font-size: .72rem; color: var(--muted); margin-bottom: 1rem; }

/* ============================================================
   VIDEO GALERIJ + LIGHTBOX
   ============================================================ */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; max-width: var(--maxw); margin: 0 auto; }
.video-card { position: relative; display: block; width: 100%; text-align: left; padding: 0; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; background: var(--card); color: inherit; transition: transform .3s, border-color .3s, box-shadow .3s; }
@media (hover: hover) and (pointer: fine) { .video-card { cursor: none; } }
.video-card:hover { transform: translateY(-4px); border-color: var(--red-dim); box-shadow: 0 14px 40px rgba(0,0,0,.5); }
.video-thumb { position: relative; display: block; padding-top: 56.25%; background: #0d0d0d; overflow: hidden; }
.video-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease, opacity .3s; opacity: .92; }
.video-card:hover .video-thumb img { transform: scale(1.06); opacity: 1; }
.video-thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(8,8,8,.85)); }
.video-play { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); z-index: 2; width: 60px; height: 60px; border-radius: 50%; background: rgba(225,6,0,.92); display: flex; align-items: center; justify-content: center; box-shadow: 0 0 30px var(--red-glow); transition: transform .25s ease, background .25s; }
.video-card:hover .video-play { transform: translate(-50%,-50%) scale(1.12); background: var(--red-hot); }
.video-play svg { width: 22px; height: 22px; color: #fff; margin-left: 3px; }
.video-meta { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 1rem 1.2rem; }
.video-cat { font-size: .58rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--red); }
.video-title { font-weight: 600; font-size: .95rem; color: var(--white); margin-top: .2rem; line-height: 1.3; }

/* lightbox */
body.vlb-lock { overflow: hidden; }
#video-lightbox { position: fixed; inset: 0; z-index: 10001; display: none; align-items: center; justify-content: center; padding: clamp(1rem, 4vw, 3rem); }
#video-lightbox.open { display: flex; }
.vlb-backdrop { position: absolute; inset: 0; background: rgba(4,4,5,.92); backdrop-filter: blur(8px); animation: fadeIn .25s ease; }
.vlb-dialog { position: relative; z-index: 1; width: min(1100px, 100%); animation: vlbIn .35s cubic-bezier(.16,1,.3,1) both; }
@keyframes vlbIn { from { opacity: 0; transform: scale(.95) translateY(10px); } to { opacity: 1; transform: none; } }
.vlb-frame { position: relative; width: 100%; padding-top: 56.25%; background: #000; border-radius: 8px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,.7); border: 1px solid var(--border); }
.vlb-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
/* staande (telefoon) video: smaller kader, 9:16 */
#video-lightbox.vlb-portrait .vlb-dialog { width: min(420px, 92vw); }
#video-lightbox.vlb-portrait .vlb-frame { padding-top: 177.78%; }

/* ============================================================
   BEAT-SPELER (floating)
   ============================================================ */
#beat-player { position: fixed; left: 1.2rem; bottom: 1.2rem; z-index: 9000; display: inline-flex; align-items: center; gap: .55rem; height: 44px; padding: 0 1rem 0 .8rem; border: 1px solid var(--border); border-radius: 999px; background: rgba(14,14,16,.82); backdrop-filter: blur(12px); color: var(--white); transition: border-color .25s, background .25s, transform .25s; }
@media (hover: hover) and (pointer: fine) { #beat-player { cursor: none; } }
#beat-player:hover { border-color: var(--red); transform: translateY(-2px); }
#beat-player .beat-ic { display: inline-flex; width: 20px; height: 20px; color: var(--red); }
#beat-player .beat-ic svg { width: 20px; height: 20px; }
#beat-player .beat-ic-pause { display: none; }
#beat-player.playing .beat-ic-play { display: none; }
#beat-player.playing .beat-ic-pause { display: inline-flex; }
#beat-player .beat-label { font-family: 'Space Grotesk', sans-serif; font-size: .7rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--light); }
#beat-player .beat-eq { display: inline-flex; align-items: flex-end; gap: 2px; height: 16px; }
#beat-player .beat-eq i { width: 3px; height: 4px; background: var(--red); border-radius: 1px; }
#beat-player.playing .beat-eq i { animation: beatEq .9s ease-in-out infinite; }
#beat-player.playing .beat-eq i:nth-child(2) { animation-delay: .18s; }
#beat-player.playing .beat-eq i:nth-child(3) { animation-delay: .36s; }
#beat-player.playing .beat-eq i:nth-child(4) { animation-delay: .54s; }
@keyframes beatEq { 0%,100% { height: 4px; } 50% { height: 16px; } }
@media (max-width: 560px) { #beat-player .beat-label { display: none; } #beat-player { padding: 0 .7rem; } }
@media (prefers-reduced-motion: reduce) { #beat-player.playing .beat-eq i { animation: none; height: 10px; } }
.vlb-close { position: absolute; top: -2.8rem; right: 0; width: 40px; height: 40px; border: 1px solid var(--border); background: rgba(20,20,22,.6); border-radius: 50%; color: var(--white); font-size: 1.4rem; line-height: 1; display: flex; align-items: center; justify-content: center; transition: border-color .25s, background .25s, transform .25s; }
@media (hover: hover) and (pointer: fine) { .vlb-close { cursor: none; } }
.vlb-close:hover { border-color: var(--red); background: rgba(225,6,0,.2); transform: rotate(90deg); }

@media (max-width: 900px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .video-grid { grid-template-columns: 1fr; } .vlb-close { top: -2.6rem; } }
@media (max-width: 900px) { .home-werk-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .home-werk-grid { grid-template-columns: 1fr; } }
