/* ==========================================================================
   Bloedend Hart — website stylesheet
   Huisstijl: rood #ff0e17, staalgrijs #9aa0a3, zwart/antraciet.
   Fonts (zelf gehost, geen externe verzoeken): Playfair Display (koppen),
   Oswald (labels/navigatie), Source Sans 3 (lopende tekst).
   ========================================================================== */

@font-face { font-family: 'Oswald'; font-weight: 300 700; font-display: swap;
  src: url('../assets/fonts/oswald-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215; }
@font-face { font-family: 'Oswald'; font-weight: 300 700; font-display: swap;
  src: url('../assets/fonts/oswald-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1E00-1E9F, U+2020, U+2113; }
@font-face { font-family: 'Playfair Display'; font-weight: 700 900; font-display: swap;
  src: url('../assets/fonts/playfair-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122; }
@font-face { font-family: 'Playfair Display'; font-weight: 700 900; font-display: swap;
  src: url('../assets/fonts/playfair-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1E00-1E9F, U+2020, U+2113; }
@font-face { font-family: 'Playfair Display'; font-style: italic; font-weight: 400 900; font-display: swap;
  src: url('../assets/fonts/playfair-latin-italic.woff2') format('woff2'); }
@font-face { font-family: 'Source Sans 3'; font-weight: 200 900; font-display: swap;
  src: url('../assets/fonts/sourcesans-latin.woff2') format('woff2'); }
@font-face { font-family: 'Source Sans 3'; font-style: italic; font-weight: 200 900; font-display: swap;
  src: url('../assets/fonts/sourcesans-latin-italic.woff2') format('woff2'); }

:root {
  --red: #ff0e17;
  --red-deep: #b3080f;
  --grey: #9aa0a3;
  --grey-dim: #6f7477;
  --ink: #0a0a0a;
  --ink-2: #121212;
  --ink-3: #1b1b1c;
  --line: rgba(255, 255, 255, .09);
  --text: #eeeceb;
  --text-dim: #b4b7b9;

  --f-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --f-label: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  --f-body: 'Source Sans 3', 'Segoe UI', system-ui, sans-serif;

  --wrap: 1200px;
  --gutter: clamp(16px, 4vw, 40px);
  --header-h: 76px;
  --radius: 4px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font: 400 1.125rem/1.65 var(--f-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; }
::selection { background: var(--red); color: #fff; }

:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--red); color: #fff; padding: 10px 16px;
  font: 600 .9rem var(--f-label); letter-spacing: .08em; text-transform: uppercase; text-decoration: none;
}
.skip-link:focus { top: 16px; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }

/* ---------- typografie ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .75em;
  margin: 0 0 1.1rem;
  font: 500 .8rem/1 var(--f-label); letter-spacing: .32em; text-transform: uppercase;
  color: var(--red);
}
.eyebrow::before { content: ''; width: 36px; height: 2px; background: currentColor; }
.eyebrow--center::after { content: ''; width: 36px; height: 2px; background: currentColor; }

h1, h2, h3 { font-family: var(--f-display); font-weight: 900; line-height: 1.05; margin: 0; letter-spacing: -.01em; text-wrap: balance; }
h2 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); }
h3 { font-size: 1.5rem; }
p { margin: 0 0 1.1em; }
.lead { font-size: clamp(1.15rem, 1.6vw, 1.35rem); color: var(--text-dim); max-width: 60ch; }
.text-red { color: var(--red); }

/* ---------- knoppen ---------- */
.btn {
  --bg: var(--red); --fg: #fff; --bd: var(--red);
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  min-height: 52px; padding: 0 1.7em;
  background: var(--bg); color: var(--fg); border: 2px solid var(--bd); border-radius: var(--radius);
  font: 600 .95rem/1 var(--f-label); letter-spacing: .14em; text-transform: uppercase; text-decoration: none;
  cursor: pointer; transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.btn:hover { --bg: var(--red-deep); --bd: var(--red-deep); }
.btn:active { transform: translateY(1px); }
.btn--ghost { --bg: transparent; --fg: #fff; --bd: rgba(255,255,255,.55); }
.btn--ghost:hover { --bg: #fff; --fg: var(--ink); --bd: #fff; }
.btn--sm { min-height: 42px; padding: 0 1.2em; font-size: .82rem; }
.btn svg { width: 1.1em; height: 1.1em; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .5em;
  font: 600 .9rem var(--f-label); letter-spacing: .14em; text-transform: uppercase; text-decoration: none; color: #fff;
}
.link-arrow::after { content: '→'; color: var(--red); transition: transform .25s var(--ease); }
.link-arrow:hover::after { transform: translateX(5px); }

/* ---------- header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100; height: var(--header-h);
  transition: background .35s var(--ease), box-shadow .35s var(--ease), height .35s var(--ease);
}
.site-header.is-solid, .site-header.is-open {
  background: rgba(10, 10, 10, .94);
  box-shadow: 0 1px 0 var(--line);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.site-header .wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; max-width: 1400px; }
.brand { display: flex; align-items: center; text-decoration: none; }
.brand img { height: 62px; width: auto; filter: drop-shadow(0 2px 8px rgba(0,0,0,.6)); }

.nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 34px); }
.nav a:not(.btn) {
  position: relative; padding: 6px 0;
  font: 500 .88rem var(--f-label); letter-spacing: .16em; text-transform: uppercase; text-decoration: none; color: #fff;
}
.nav a:not(.btn)::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--red);
  transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav a:not(.btn):hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }

.nav-toggle {
  display: none; width: 46px; height: 46px; margin-right: -8px; padding: 0;
  background: none; border: 0; color: #fff; cursor: pointer;
}
.nav-toggle span { display: block; width: 26px; height: 2px; margin: 6px auto; background: currentColor; transition: transform .3s var(--ease), opacity .2s; }
.site-header.is-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.site-header.is-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.is-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 900px) {
  :root { --header-h: 66px; }
  .brand img { height: 48px; }
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto; height: calc(100dvh - var(--header-h));
    flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 0;
    padding: 24px var(--gutter) 40px; background: rgba(10,10,10,.98);
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
  }
  .site-header.is-open .nav { opacity: 1; visibility: visible; transform: none; }
  .nav a:not(.btn) { width: 100%; padding: 16px 0; font-size: 1.35rem; border-bottom: 1px solid var(--line); }
  .nav a:not(.btn)::after { display: none; }
  .nav a[aria-current="page"] { color: var(--red); }
  .nav .btn { margin-top: 28px; width: 100%; }
}

/* ---------- hero met promovideo ---------- */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: flex-end; overflow: hidden; background: #000;
}
.hero__media { position: absolute; inset: 0; }
.hero__media video, .hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,0) 22%),
    linear-gradient(0deg, rgba(10,10,10,1) 0%, rgba(10,10,10,.75) 22%, rgba(0,0,0,.1) 60%),
    linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,0) 60%);
}
.hero__content { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(48px, 9vh, 96px); padding-top: calc(var(--header-h) + 40px); }
.hero__title {
  font-size: clamp(3.4rem, 11vw, 9.5rem); line-height: .9; letter-spacing: -.02em;
  text-shadow: 0 4px 40px rgba(0,0,0,.5);
}
.hero__title span { display: block; }
.hero__title .accent { color: var(--red); }
/* Logo als titel, met rode neon-gloed zodat het loskomt van de video */
.hero__logo { margin: 0; line-height: 0; }
.hero__logo img {
  width: clamp(280px, 46vw, 680px); height: auto; margin-left: -1.2%;
  filter:
    drop-shadow(0 0 6px rgba(255, 14, 23, .55))
    drop-shadow(0 0 22px rgba(255, 14, 23, .35))
    drop-shadow(0 4px 30px rgba(0, 0, 0, .6));
}
.hero__sub { margin: 1.4rem 0 2rem; max-width: 34ch; font-size: clamp(1.1rem, 1.7vw, 1.4rem); color: #e6e4e2; text-shadow: 0 2px 16px rgba(0,0,0,.6); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__controls { position: absolute; z-index: 3; right: var(--gutter); bottom: clamp(48px, 9vh, 96px); display: flex; gap: 10px; }
.icon-btn {
  display: grid; place-items: center; width: 48px; height: 48px; padding: 0;
  background: rgba(0,0,0,.45); color: #fff; border: 1px solid rgba(255,255,255,.35); border-radius: 50%;
  cursor: pointer; transition: background .25s, border-color .25s;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.icon-btn:hover { background: var(--red); border-color: var(--red); }
.icon-btn svg { width: 20px; height: 20px; }
.sound-btn {
  display: inline-flex; align-items: center; gap: 10px; height: 48px; padding: 0 20px 0 16px;
  background: rgba(0,0,0,.45); color: #fff; border: 1px solid rgba(255,255,255,.35); border-radius: 999px;
  font: 600 .82rem/1 var(--f-label); letter-spacing: .16em; text-transform: uppercase;
  cursor: pointer; transition: background .25s, border-color .25s;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.sound-btn:hover, .sound-btn[aria-pressed="false"] { background: var(--red); border-color: var(--red); }
.sound-btn[aria-pressed="true"]:hover { background: rgba(0,0,0,.7); }
.sound-btn svg { width: 20px; height: 20px; }
.icon-btn .when-on, .sound-btn .when-on { display: none; }
.icon-btn[aria-pressed="true"] .when-on, .sound-btn[aria-pressed="true"] .when-on { display: block; }
.icon-btn[aria-pressed="true"] .when-off, .sound-btn[aria-pressed="true"] .when-off { display: none; }

.next-gig {
  display: inline-flex; align-items: center; gap: 14px; margin-top: 2.2rem; padding: 12px 18px 12px 12px;
  background: rgba(0,0,0,.5); border: 1px solid rgba(255,255,255,.14); border-left: 3px solid var(--red);
  text-decoration: none; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  transition: border-color .25s;
}
.next-gig:hover { border-color: rgba(255,255,255,.35); border-left-color: var(--red); }
.next-gig[hidden] { display: none; }
.next-gig__label { font: 500 .7rem var(--f-label); letter-spacing: .26em; text-transform: uppercase; color: var(--red); }
.next-gig__text { font: 500 1rem/1.3 var(--f-label); letter-spacing: .06em; text-transform: uppercase; }

@media (max-width: 640px) {
  .hero__controls { bottom: auto; top: calc(var(--header-h) + 12px); }
  .hero__actions .btn { flex: 1 1 100%; }
}

.promo-modal { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: 56px 16px; background: rgba(0,0,0,.94); }
.promo-modal[hidden] { display: none; }
.promo-modal__inner { position: relative; width: min(1280px, 100%); }
.promo-modal video { width: 100%; aspect-ratio: 16 / 9; background: #000; box-shadow: 0 20px 80px rgba(0,0,0,.7); }
.promo-modal__close { position: absolute; right: -4px; top: -52px; padding: 6px 10px; background: none; border: 0; color: #fff; font: 300 2.4rem/1 var(--f-label); cursor: pointer; }
.promo-modal__close:hover { color: var(--red); }

/* ---------- secties ---------- */
.section { padding-block: clamp(72px, 11vw, 140px); position: relative; }
.section--tight { padding-block: clamp(56px, 8vw, 96px); }
.section--alt { background: var(--ink-2); }
.section__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 20px 40px; margin-bottom: clamp(36px, 5vw, 60px); }
.section__head h2 { max-width: 18ch; }
.section__head--center { flex-direction: column; align-items: center; text-align: center; }

/* page hero (subpagina's) */
.page-hero {
  position: relative; display: flex; align-items: flex-end;
  min-height: clamp(360px, 52vh, 540px); padding-top: var(--header-h); overflow: hidden; background: #000;
}
.page-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.page-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, var(--ink) 0%, rgba(10,10,10,.2) 70%); }
.page-hero .wrap { position: relative; z-index: 1; padding-bottom: clamp(40px, 6vw, 72px); }
.page-hero h1 { font-size: clamp(3rem, 8vw, 6.2rem); }
.page-hero .lead { margin-top: 1rem; color: #d8d6d4; }

/* ---------- intro / split ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(36px, 6vw, 88px); align-items: center; }
.split--rev .split__media { order: 2; }
/* Foto houdt zijn eigen (liggende) verhouding; het rode kader omsluit hem volledig */
.split__media { position: relative; padding: 12px; border: 2px solid var(--red); }
.split__media img { width: 100%; height: auto; }
.split__body p { color: var(--text-dim); }
.split__body p strong { color: var(--text); font-weight: 600; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .split__media { padding: 8px; }
}

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 2.2rem; background: var(--line); border: 1px solid var(--line); }
.stat { background: var(--ink); padding: 20px 18px; }
.section--alt .stat { background: var(--ink-2); }
.stat__num { font: 900 clamp(2rem, 3.5vw, 2.8rem)/1 var(--f-display); color: var(--red); }
.stat__label { margin-top: 8px; font: 500 .74rem/1.3 var(--f-label); letter-spacing: .16em; text-transform: uppercase; color: var(--grey); }

/* ---------- agenda ---------- */
.gigs { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.gig {
  display: grid; grid-template-columns: 110px 1fr auto; align-items: center; gap: 12px clamp(20px, 3vw, 40px);
  padding: 26px 8px; border-bottom: 1px solid var(--line);
  transition: background .25s var(--ease);
}
.gig:hover { background: rgba(255,255,255,.025); }
.gig__date { text-align: center; line-height: 1; }
.gig__day { display: block; font: 900 3.2rem/0.9 var(--f-display); color: #fff; }
.gig__month { display: block; margin-top: 6px; font: 600 .85rem var(--f-label); letter-spacing: .22em; text-transform: uppercase; color: var(--red); }
.gig__year { display: block; margin-top: 4px; font: 400 .78rem var(--f-label); letter-spacing: .18em; color: var(--grey-dim); }
.gig__venue { font: 700 clamp(1.3rem, 2.2vw, 1.75rem)/1.15 var(--f-display); }
.gig__meta { margin-top: 8px; display: flex; flex-wrap: wrap; gap: 6px 18px; font: 400 .92rem var(--f-label); letter-spacing: .1em; text-transform: uppercase; color: var(--grey); }
.gig__meta span { display: inline-flex; align-items: center; gap: 7px; }
.gig__meta svg { width: 15px; height: 15px; color: var(--red); flex: none; }
.gig__note { margin: 8px 0 0; font-size: 1rem; color: var(--text-dim); }
.gig__actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.badge {
  display: inline-block; padding: 5px 10px; border: 1px solid currentColor; border-radius: 2px;
  font: 500 .72rem/1 var(--f-label); letter-spacing: .18em; text-transform: uppercase; color: var(--grey);
}
.badge--red { color: var(--red); }
.badge--sold { background: var(--red); border-color: var(--red); color: #fff; }
/* Gespeelde optredens: gedimd en lichtjes doorgestreept */
.gig--past { opacity: .55; }
.gig--past:hover { opacity: .8; }
.gig--past .gig__day, .gig--past .gig__venue { color: var(--text-dim); }
.gig--past .gig__venue {
  text-decoration: line-through; text-decoration-color: rgba(255, 14, 23, .75);
  text-decoration-thickness: 2px;
}
.gig--past .gig__month { color: var(--grey-dim); }
.gigs-divider { list-style: none; display: flex; align-items: center; gap: 16px; padding: 30px 0 12px; border-bottom: 1px solid var(--line); }
.gigs-divider span { font: 600 .8rem var(--f-label); letter-spacing: .26em; text-transform: uppercase; color: var(--red); }
.gigs-divider::after { content: ''; flex: 1; height: 2px; background: var(--red); opacity: .5; }

@media (max-width: 700px) {
  .gig { grid-template-columns: 76px 1fr; padding-inline: 0; }
  .gig__day { font-size: 2.5rem; }
  .gig__actions { grid-column: 1 / -1; justify-content: flex-start; padding-left: calc(76px + 20px); }
}
@media (max-width: 420px) { .gig__actions { padding-left: 0; } .gig__actions .btn { flex: 1; } }

.gigs-empty {
  padding: 40px 28px; border: 1px dashed rgba(255,255,255,.18); text-align: center; color: var(--text-dim);
}
.gigs-empty p { margin: 0 0 1.2rem; }

details.archive { margin-top: 56px; }
details.archive summary {
  cursor: pointer; list-style: none; display: inline-flex; align-items: center; gap: 10px;
  font: 600 .9rem var(--f-label); letter-spacing: .16em; text-transform: uppercase; color: var(--grey);
}
details.archive summary::-webkit-details-marker { display: none; }
details.archive summary::before { content: '+'; color: var(--red); font-size: 1.3rem; line-height: 1; }
details.archive[open] summary::before { content: '−'; }
details.archive .gigs { margin-top: 20px; }

/* ---------- quote ---------- */
.quote { position: relative; text-align: center; overflow: hidden; }
.quote__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .22; filter: grayscale(1); }
.quote::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(10,10,10,.4), var(--ink) 75%); z-index: 1; }
.quote .wrap { position: relative; z-index: 2; }
.quote blockquote { margin: 0 auto; max-width: 900px; }
.quote__mark { display: block; font: 900 7rem/0.6 var(--f-display); color: var(--red); height: .5em; }
.quote p { font: italic 700 clamp(1.7rem, 3.6vw, 2.9rem)/1.25 var(--f-display); color: #fff; margin: 0 0 1.4rem; text-wrap: balance; }
.quote cite { font: 500 .85rem var(--f-label); font-style: normal; letter-spacing: .26em; text-transform: uppercase; color: var(--grey); }

/* ---------- pijlers ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.pillar { background: var(--ink); padding: clamp(28px, 3.5vw, 44px); }
.pillar__num { font: 600 .8rem var(--f-label); letter-spacing: .3em; color: var(--red); }
.pillar h3 { margin: 18px 0 12px; font-size: 1.55rem; }
.pillar p { margin: 0; color: var(--text-dim); font-size: 1.05rem; }
@media (max-width: 860px) { .pillars { grid-template-columns: 1fr; } }

/* ---------- band ---------- */
.members { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 2vw, 24px); }
.member { position: relative; margin: 0; }
.member__photo { position: relative; overflow: hidden; aspect-ratio: 3 / 4; background: var(--ink-3); }
.member__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; filter: grayscale(.35) contrast(1.05); transition: transform .6s var(--ease), filter .6s var(--ease); }
.member:hover .member__photo img { transform: scale(1.04); filter: none; }
.member__photo::after { content: ''; position: absolute; inset: 50% 0 0; background: linear-gradient(0deg, rgba(10,10,10,.85), transparent); }
.member__name { position: absolute; left: 18px; right: 18px; bottom: 16px; z-index: 1; }
.member__name strong { display: block; font: 900 1.7rem/1 var(--f-display); }
.member__name span { display: block; margin-top: 6px; font: 500 .74rem var(--f-label); letter-spacing: .2em; text-transform: uppercase; color: var(--red); }
.member figcaption { padding: 16px 2px 0; font-size: 1rem; line-height: 1.55; color: var(--text-dim); }
@media (max-width: 1000px) { .members { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .members { grid-template-columns: repeat(2, 1fr); } .member__name strong { font-size: 1.35rem; } .member figcaption { font-size: .95rem; } }

.members-teaser { display: grid; grid-template-columns: repeat(8, 1fr); gap: 6px; }
.members-teaser a { position: relative; display: block; overflow: hidden; aspect-ratio: 3 / 4; }
.members-teaser img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; filter: grayscale(1); transition: filter .4s, transform .5s var(--ease); }
.members-teaser a:hover img { filter: none; transform: scale(1.05); }
.members-teaser span {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 6px 10px; text-align: center;
  background: linear-gradient(0deg, rgba(0,0,0,.85), transparent);
  font: 600 .78rem var(--f-label); letter-spacing: .14em; text-transform: uppercase;
}
@media (max-width: 860px) { .members-teaser { grid-template-columns: repeat(4, 1fr); } }

/* ---------- galerij ---------- */
.gallery { columns: 3 320px; column-gap: 12px; }
.gallery a { display: block; margin-bottom: 12px; break-inside: avoid; overflow: hidden; background: var(--ink-3); cursor: zoom-in; }
.gallery img { width: 100%; height: auto; transition: transform .6s var(--ease), opacity .3s; }
.gallery a:hover img { transform: scale(1.03); }
.gallery-group + .gallery-group { margin-top: clamp(56px, 8vw, 96px); }
.gallery-group__head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 20px; margin-bottom: 24px; }
.gallery-group__head h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.gallery-group__head span { font: 500 .85rem var(--f-label); letter-spacing: .2em; text-transform: uppercase; color: var(--grey); }

/* Alle vakken hebben de 3:2-verhouding van de foto's, zodat er niemand wordt afgekapt */
.photo-strip { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 8px; }
.photo-strip a { overflow: hidden; display: block; aspect-ratio: 3 / 2; }
.photo-strip a:first-child { grid-row: span 2; aspect-ratio: auto; }
.photo-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.photo-strip a:hover img { transform: scale(1.04); }
@media (max-width: 640px) { .photo-strip { grid-template-columns: 1fr 1fr; } .photo-strip a:first-child { grid-column: span 2; grid-row: auto; aspect-ratio: 3 / 2; } }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; background: rgba(0,0,0,.95); padding: 56px 16px; }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 100%; max-height: 100%; object-fit: contain; box-shadow: 0 20px 80px rgba(0,0,0,.6); }
.lightbox button { position: absolute; background: none; border: 0; color: #fff; cursor: pointer; padding: 12px; font: 300 2.4rem/1 var(--f-label); opacity: .8; }
.lightbox button:hover { opacity: 1; color: var(--red); }
.lightbox__close { top: 8px; right: 12px; }
.lightbox__prev { left: 8px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 8px; top: 50%; transform: translateY(-50%); }
.lightbox__count { position: absolute; bottom: 18px; left: 0; right: 0; text-align: center; font: 500 .8rem var(--f-label); letter-spacing: .2em; color: var(--grey); }

/* ---------- boeken / CTA ---------- */
.cta { position: relative; overflow: hidden; background: var(--red-deep); }
.cta__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .18; mix-blend-mode: luminosity; }
.cta::before { content: ''; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(120,4,8,.95) 0%, rgba(179,8,15,.75) 55%, rgba(179,8,15,.45) 100%); z-index: 1; }
.cta .wrap { position: relative; z-index: 2; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 32px; }
.cta h2 { max-width: 16ch; }
.cta p { margin: 1rem 0 0; max-width: 46ch; color: #ffe3e4; font-size: 1.15rem; }
.cta .eyebrow { color: #fff; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.cta .btn { --bg: #fff; --fg: var(--ink); --bd: #fff; }
.cta .btn:hover { --bg: var(--ink); --fg: #fff; --bd: var(--ink); }
.cta .btn--ghost { --bg: transparent; --fg: #fff; --bd: rgba(255,255,255,.7); }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(40px, 6vw, 88px); align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-list { list-style: none; padding: 0; margin: 28px 0 32px; }
.contact-list li { display: flex; gap: 16px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-list li:first-child { border-top: 1px solid var(--line); }
.contact-list svg { width: 22px; height: 22px; color: var(--red); flex: none; }
.contact-list small { display: block; font: 500 .72rem var(--f-label); letter-spacing: .22em; text-transform: uppercase; color: var(--grey); }
.contact-list a { font-size: 1.2rem; text-decoration: none; }
.contact-list a:hover { color: var(--red); }
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li { position: relative; padding: 8px 0 8px 30px; color: var(--text-dim); }
.checklist li::before { content: ''; position: absolute; left: 0; top: .95em; width: 14px; height: 2px; background: var(--red); }

.form { background: var(--ink-2); border: 1px solid var(--line); padding: clamp(24px, 4vw, 48px); }
.form h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 8px; }
.form > p { color: var(--text-dim); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label { font: 500 .76rem var(--f-label); letter-spacing: .2em; text-transform: uppercase; color: var(--grey); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; background: var(--ink); color: var(--text);
  border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius);
  font: 400 1.05rem var(--f-body); transition: border-color .2s;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--grey) 50%), linear-gradient(135deg, var(--grey) 50%, transparent 50%); background-position: calc(100% - 22px) 50%, calc(100% - 16px) 50%; background-size: 6px 6px; background-repeat: no-repeat; }
.hp { position: absolute; left: -9999px; }
.form-status { margin: 16px 0 0; font-size: 1rem; }
.form-status.is-ok { color: #7bd88f; }
.form-status.is-err { color: #ff7a7f; }

/* ---------- footer ---------- */
.site-footer { background: #050505; border-top: 1px solid var(--line); padding: 72px 0 28px; font-size: 1rem; color: var(--text-dim); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-grid img { width: 200px; height: auto; margin-bottom: 16px; }
.footer-grid h4 { margin: 0 0 16px; font: 600 .8rem var(--f-label); letter-spacing: .24em; text-transform: uppercase; color: #fff; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { text-decoration: none; }
.footer-grid a:hover { color: var(--red); }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; transition: background .25s, border-color .25s; }
.socials a:hover { background: var(--red); border-color: var(--red); color: #fff; }
.socials svg { width: 18px; height: 18px; }
.footer-bottom { margin-top: 56px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; font-size: .88rem; color: var(--grey-dim); }
.bandspot-badge img { height: 44px; width: auto; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-grid > :first-child { grid-column: 1 / -1; } }

/* ---------- reveal-animatie ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }
.no-js .reveal { opacity: 1; transform: none; }

/* Homepage: het kleine logo in de menubalk verschijnt pas na scrollen (het grote logo staat al in beeld) */
.brand--late { transition: opacity .35s var(--ease); }
.site-header:not(.is-solid):not(.is-open) .brand--late { opacity: 0; pointer-events: none; }

.credit a { color: var(--text-dim); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.2); transition: color .2s, border-color .2s; }
.credit a:hover { color: var(--red); border-color: var(--red); }

/* Bandpagina: groepsfoto hoger en met de gezichten in beeld (mensen staan in de bovenste helft van de foto) */
.page-hero--band { min-height: clamp(460px, 72vh, 760px); }
.page-hero--band .page-hero__img { object-position: center 12%; opacity: .75; }
.page-hero--band::after { background: linear-gradient(0deg, var(--ink) 0%, rgba(10,10,10,.55) 22%, rgba(10,10,10,0) 55%); }
@media (max-width: 700px) {
  /* Op smalle schermen de hele groepsfoto tonen, zodat niemand wordt afgesneden */
  .page-hero--band { display: block; min-height: 0; }
  .page-hero--band .page-hero__img { position: relative; height: auto; opacity: 1; }
  .page-hero--band::after { display: none; }
  .page-hero--band .wrap { padding-top: 28px; }
}
