/* ================================================================
   STYLE.CSS — Living Hope v4
   Mobile-first | Premium animaties | Alle afbeeldingen verwerkt
   ================================================================ */

/* ── 0. VARIABELEN & RESET ─────────────────────────────────── */
:root {
  --bronze:     #7E6D4C;
  --gold:       #BFA775;
  --gold-light: #D9C49A;
  --black:      #080806;
  --near-black: #0F0F0C;
  --dark:       #1A1915;
  --white:      #FFFFFF;

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:  'Montserrat', 'Segoe UI', system-ui, sans-serif;

  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:   cubic-bezier(0.16, 1, 0.30, 1);

  --nav-h:  68px;
  --max:    1120px;
  --px:     clamp(1.25rem, 5vw, 2.5rem);
  --py:     clamp(4rem, 10vw, 8rem);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-sans); background: var(--black); color: var(--white); overflow-x: hidden; line-height: 1.65; }
img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul   { list-style: none; }
::selection { background: var(--gold); color: var(--black); }

/* ── 1. TYPE HELPERS ───────────────────────────────────────── */
.label {
  display: flex; align-items: center; gap: .7rem;
  font-size: .68rem; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: var(--gold);
}
.label::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); flex-shrink: 0; }
.section-title { font-family: var(--font-serif); font-size: clamp(2rem, 6vw, 3.5rem); font-weight: 400; line-height: 1.1; }
.gold-line { display: block; width: 48px; height: 1.5px; background: var(--gold); margin: 1.2rem 0 2rem; }

/* ── 2. NAV ────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; 
  z-index: 1000; /* Prioriteit boven iframes/video's */
  height: var(--nav-h);
  display: flex; align-items: center; padding: 0 var(--px);
  background: rgba(8,8,6,.82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(191,167,117,.12); transition: background .4s;
}

.nav.scrolled { background: rgba(8,8,6,.97); }

.nav__logo { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.nav__logo img { height: 38px; mix-blend-mode: screen; filter: brightness(1.1); }
.nav__logo-text { font-family: var(--font-serif); font-size: 1.1rem; font-style: italic; color: var(--gold); letter-spacing: .04em; }

.nav__links { display: none; margin-left: auto; gap: 2.25rem; }
.nav__links a {
  font-size: .72rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.5); position: relative; padding-bottom: 2px; transition: color .25s;
}
.nav__links a::after { content: ''; position: absolute; bottom: -2px; left: 0; height: 1px; width: 0; background: var(--gold); transition: width .28s var(--ease); }
.nav__links a:hover, .nav__links a.active { color: var(--gold); }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }

/* Hamburger: Geoptimaliseerd voor touch */
.nav__hamburger { 
  margin-left: auto; 
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
  gap: 5px; 
  width: 44px; 
  height: 44px; 
  padding: 10px; 
  cursor: pointer;
  z-index: 1001;
}

.nav__hamburger span { display: block; height: 1.5px; background: var(--white); border-radius: 2px; transition: transform .35s var(--ease), opacity .25s; }
.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__mobile-menu {
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: rgba(8,8,6,.98); backdrop-filter: blur(20px);
  padding: 2rem var(--px) 3rem; display: flex; flex-direction: column;
  transform: translateY(-110%); transition: transform .4s var(--ease-out);
  z-index: 999;
  border-bottom: 1px solid rgba(191,167,117,.15);
  pointer-events: none; 
  visibility: hidden;
}

.nav__mobile-menu.open { 
  transform: translateY(0); 
  pointer-events: auto; 
  visibility: visible;
}

.nav__mobile-menu a {
  font-size: 1rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.55); padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .2s, padding-left .2s;
}
.nav__mobile-menu a:last-child { border-bottom: none; }
.nav__mobile-menu a:hover, .nav__mobile-menu a.active { color: var(--gold); padding-left: .5rem; }

/* ── 3. HERO ───────────────────────────────────────────────── */
.hero {
  position: relative; width: 100%; 
  height: 100vh;
  height: 100dvh;
  min-height: 580px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 35%, #2C200E 0%, #100C06 55%, #040403 100%);
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(0,0,0,.12) 0%, rgba(0,0,0,.5) 65%, rgba(0,0,0,.85) 100%);
}
.hero__content { position: relative; z-index: 2; text-align: center; padding: 0 var(--px); animation: fadeUp 1.5s var(--ease-out) both; }
.hero__subtitle { font-size: clamp(.7rem,2vw,.88rem); font-weight: 300; letter-spacing: .4em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; opacity: .85; }
.hero__title { font-family: var(--font-serif); font-size: clamp(4.5rem,13vw,10.5rem); font-weight: 700; line-height: .88; letter-spacing: .06em; color: var(--white); text-transform: uppercase; text-shadow: 0 6px 60px rgba(0,0,0,.6); }
.hero__title-hope { display: block; font-size: .78em; font-style: italic; font-weight: 400; color: var(--gold); letter-spacing: .04em; text-transform: none; margin-top: .15em; }
.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  animation: fadeUpScroll 2.2s var(--ease-out) both; color: rgba(255,255,255,.38);
}
.hero__scroll span { font-size: .6rem; letter-spacing: .38em; text-transform: uppercase; }
.hero__scroll svg { animation: bounce 2.4s ease-in-out infinite; }
@keyframes bounce { 0%,100% { transform: translateY(0); opacity:.5; } 50% { transform: translateY(9px); opacity:.2; } }
@keyframes fadeUp { from { opacity:0; transform:translateY(26px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeUpScroll {
  from { opacity:0; transform: translateX(-50%) translateY(26px); }
  to   { opacity:1; transform: translateX(-50%) translateY(0); }
}

/* ── Notenbalk ── */
.hero__staff {
  position: absolute;
  top: calc(var(--nav-h) + 1.5rem);
  left: 0; right: 0;
  z-index: 1;
  opacity: .08;
  pointer-events: none;
  animation: staffFloat 11s ease-in-out infinite;
}
.hero__staff svg { width: 100%; display: block; }

@keyframes staffFloat {
  0%, 100% { transform: translateY(0);   opacity: .08; }
  50%       { transform: translateY(-8px); opacity: .11; }
}

.snote { animation-duration: 6s; animation-timing-function: ease-in-out; animation-iteration-count: infinite; }
.s1 { animation-name: nb1; animation-delay:  0s;   }
.s2 { animation-name: nb2; animation-delay:  .9s;  }
.s3 { animation-name: nb1; animation-delay: 1.7s;  }
.s4 { animation-name: nb3; animation-delay:  .4s;  }
.s5 { animation-name: nb2; animation-delay: 2.2s;  }
.s6 { animation-name: nb3; animation-delay: 1.1s;  }
.s7 { animation-name: nb1; animation-delay: 3.0s;  }

@keyframes nb1 {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}
@keyframes nb2 {
  0%, 100% { transform: translateY(0); }
  40%       { transform: translateY(-5px); }
  70%       { transform: translateY(-10px); }
}
@keyframes nb3 {
  0%, 100% { transform: translateY(0); }
  30%       { transform: translateY(-9px); }
  65%       { transform: translateY(-3px); }
}

/* ── 4. VISIE — HOOGTE CORRECTIE & DESKTOP TUNING (V12) ── */

/* ── 4. VISIE ──────────────────────────────────────────────── */
.vision {
  background-color: var(--bronze) !important;
  padding: var(--py) var(--px);
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* Header */
.vision__header { text-align: center; max-width: var(--max); margin: 0 auto 3.5rem; }
.vision__header .label { justify-content: center; }
.vision__header .gold-line { margin-left: auto; margin-right: auto; }

/* ── MOBIEL: flex column ── */
.vision__scene {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Logo */
.vision__logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  order: -1; /* Logo bovenaan op mobiel */
}
.vision__logo-img {
  width: clamp(240px, 55vw, 360px);
  max-width: none;                   /* ← reset blocker */
  mix-blend-mode: screen;
  filter: brightness(1.1);
  position: relative;
  z-index: 5;
}

/* Kaarten */
.vision__card {
  background: rgba(40, 35, 25, 0.4);
  border: 1px solid rgba(191, 167, 117, 0.3);
  backdrop-filter: blur(4px);
  padding: 2rem 2.2rem;
  position: relative;
  z-index: 2;
  /* Reveal-animatie */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.vision__card.revealed { opacity: 1; transform: translateY(0); }

.vision__card h3 { font-family: var(--font-serif); font-size: 1.2rem; color: var(--gold); margin-bottom: .75rem; }
.vision__card p  { font-size: .9rem; line-height: 1.75; color: rgba(255,255,255,.85); }
.vision__card-ref { display: block; margin-top: .9rem; font-size: .75rem; color: var(--gold); font-style: italic; }

@media (min-width: 1024px) {

  .vision__scene {
    display: grid !important;
    grid-template-columns: 1fr 504px 1fr !important;
    grid-template-rows: auto auto !important;
    align-items: center !important;
    gap: 2.5rem 0 !important;
    max-width: 100% !important;                        /* ← was var(--max) = 1120px */
    padding: 0 clamp(1rem, 3vw, 3rem) !important;     /* ← kleine marge aan de buitenkant */
  }

  .vision__side--left {
    grid-column: 1 !important;
    grid-row: 1 !important;
    text-align: right;
    align-self: center;
    display: flex;
    justify-content: flex-end;
    padding-right: 40px !important;                  /* ← !important toegevoegd */
    margin-right: 0 !important;                       /* ← reset 768px margin */
  }

  .vision__logo-wrap {
    grid-column: 2 !important;
    grid-row: 1 !important;
    order: 0;
    align-self: center;
  }

  .vision__logo-img {
    width: 504px !important;
    max-width: none !important;
  }

  .vision__side--right {
    grid-column: 3 !important;
    grid-row: 1 !important;
    text-align: left;
    align-self: center;
    display: flex;
    justify-content: flex-start;
    padding-left: 40px !important;                   /* ← !important toegevoegd */
    margin-left: 0 !important;                        /* ← reset 768px margin */
  }

  .vision__side--left .vision__card,
  .vision__side--right .vision__card {
    max-width: 500px !important;
    width: 100%;
    margin: 0 !important;                             /* ← reset 768px margins */
  }

  #cardTakje {
    grid-column: 2 !important;
    grid-row: 2 !important;
    text-align: center;
    margin: 0 auto !important;
    width: 100%;
    margin-top: 40px !important;
  }

  .vision__svg { grid-column: 1 / -1; grid-row: 1 / -1; }

  .vision__card::before {
    content: '';
    position: absolute;
    top: -1px;
    width: 26px; height: 26px;
  }
  #cardDuif::before {
    right: -1px; left: auto;
    border-top: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
  }
  #cardMuziek::before {
    left: -1px; right: auto;
    border-top: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
  }
  #cardTakje::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 2px;
    background: var(--gold);
    border: none;
  }
}

/* SVG pijlen */
.vision__svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  overflow: visible;
  z-index: 10;
  display: none;
}
@media (min-width: 1024px) { .vision__svg { display: block; } }

.vision__path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.2;
  opacity: 0.5;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: stroke-dashoffset 1.6s ease-in-out;
}
.vision__svg.revealed .vision__path { stroke-dashoffset: 0; }

/* ── 5. WIE ZIJN WIJ ───────────────────────────────────────── */
.about { padding: var(--py) var(--px); background: var(--near-black); }
.about__inner { max-width: var(--max); margin: 0 auto; }
.about__header { margin-bottom: 3rem; }
.about__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }
.about__photo { width: 100%; overflow: hidden; border: 1px solid rgba(191,167,117,.18); position: relative; }
.about__photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .8s var(--ease); }
.about__photo:hover img { transform: scale(1.03); }
.about__photo-caption {
  position: absolute; top: 0; left: 0; right: 0;
  padding: .9rem 1.25rem 2.5rem; 
  background: linear-gradient(to bottom, rgba(0,0,0,.72), transparent);
  font-size: .67rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); opacity: .85;
}
.about__text p { font-size: .93rem; line-height: 1.9; color: rgba(255,255,255,.76); margin-bottom: 1.25rem; }
.about__text a { color: var(--gold); }
.about__members { display: grid; grid-template-columns: repeat(2,1fr); gap: .85rem; margin-top: 2.5rem; }
.member {
  padding: 1rem 1.25rem 2rem; /* extra onderruimte voor de hint */
  border: 1px solid rgba(191,167,117,.18);
  border-left: 3px solid var(--gold);
  transition: background .25s;
  position: relative;
  cursor: pointer;
}
.member:hover { background: rgba(191,167,117,.07); }

/* Visuele hint: 'Bekijk profiel' */
.member::after {
  content: 'Bekijk profiel ›';
  position: absolute;
  bottom: .65rem;
  right: .9rem;
  font-size: .58rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .35;
  transition: opacity .25s;
}
.member:hover::after { opacity: 1; }
.member__name { font-family: var(--font-serif); font-size: 1rem; color: var(--white); margin-bottom: .2rem; }
.member__role { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); opacity: .85; }

/* ── 6. INSTRUMENTEN ───────────────────────────────────────── */
.instruments { padding: var(--py) var(--px); background: var(--black); }
.instruments__inner { max-width: var(--max); margin: 0 auto; }
.instruments__header { margin-bottom: 2.5rem; }

/* Nieuwe container voor de navigatie-rij */
.inst-nav-container { 
  display: flex; 
  align-items: center; 
  gap: 0.5rem; 
  margin-bottom: 1.5rem; 
  border-bottom: 1px solid rgba(191,167,117,.18);
}

.inst-tabs { 
  display: flex; 
  flex-wrap: nowrap; 
  overflow-x: auto;
  overflow-y: hidden;           /* vastzetten in hoogte */
  overscroll-behavior-x: contain; /* geen leeg scroll voorbij eerste/laatste tab */
  touch-action: pan-x;          /* voorkomt verticaal meeslepen */
  scrollbar-width: none; 
  flex: 1;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.inst-tabs::-webkit-scrollbar { display: none; }

.inst-tab {
  font-size: .7rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.35); padding: .85rem 1.1rem; white-space: nowrap;
  position: relative; transition: color .25s; flex-shrink: 0;
  background: transparent; border: none; cursor: pointer;
}
.inst-tab::after { content: ''; position: absolute; bottom: -1px; left: 0; height: 2px; width: 0; background: var(--gold); transition: width .28s var(--ease); }
.inst-tab:hover { color: rgba(255,255,255,.65); }
.inst-tab:hover::after, .inst-tab.active::after { width: 100%; }
.inst-tab.active { color: var(--gold); }

/* Luxe Gouden Pijltjes */
.inst-nav-arrow {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: transparent; border: 1px solid rgba(191,167,117,.4);
  color: var(--gold); font-size: 1.2rem; cursor: pointer;
  transition: all .25s var(--ease); flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.inst-nav-arrow:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.inst-nav-arrow.left { padding-right: 2px; }
.inst-nav-arrow.right { padding-left: 2px; }
.inst-nav-arrow:disabled,
.inst-nav-arrow[disabled] {
  opacity: .2;
  cursor: default;
  pointer-events: none;
}

/* Verberg pijltjes op desktop als alles past */
@media (min-width: 1024px) {
  .inst-nav-arrow { display: none; }
  .inst-tabs { justify-content: center; overflow: visible; }
}

/* De rest van de display styles blijven gelijk */
.inst-display { transition: opacity .22s ease, transform .22s ease; min-height: 380px; }
.inst-display.is-out { opacity: 0; transform: translateY(8px); }

.inst-hero {
  position: relative; width: 100%; overflow: hidden; background: var(--dark);
  aspect-ratio: 21/8;
}
.inst-hero img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.inst-hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to bottom, rgba(0,0,0,.02) 40%, rgba(0,0,0,.72) 100%);
}
.inst-hero__label { position: absolute; bottom: 1.5rem; left: 1.75rem; z-index: 2; }
.inst-hero__name {
  font-family: var(--font-serif); font-size: clamp(1.8rem,3.5vw,3rem);
  color: var(--white); line-height: 1; margin-bottom: .35rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.55);
}
.inst-hero__musician { font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); opacity: .9; }

.inst-body { display: grid; grid-template-columns: 1fr; gap: 2rem; padding: 2.25rem 0 .5rem; }
.inst-facts-label { font-size: .65rem; letter-spacing: .28em; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 1rem; }
.inst-facts { display: flex; flex-direction: column; gap: .8rem; }
.inst-facts li { display: flex; align-items: flex-start; gap: .8rem; font-size: .875rem; color: rgba(255,255,255,.74); line-height: 1.6; }
.inst-facts li::before { content: ''; flex-shrink: 0; width: 16px; height: 1px; background: var(--gold); margin-top: .76em; }

.inst-details { display: grid; grid-template-columns: repeat(2,1fr); gap: .85rem; }
.inst-detail { position: relative; overflow: hidden; background: var(--dark); border: 1px solid rgba(191,167,117,.1); }
.inst-detail img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; transition: transform .55s var(--ease); }
.inst-detail.on-black img { mix-blend-mode: screen; background: #000; }
.inst-detail:hover img { transform: scale(1.08); }

.inst-detail__lbl {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2.2rem .85rem .85rem;
  background: linear-gradient(to top, rgba(0,0,0,.88), transparent);
}
.inst-detail__key { font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: .18rem; }
.inst-detail__val { font-size: .76rem; color: rgba(255,255,255,.7); line-height: 1.4; }

.inst-detail__pin {
  position: absolute; top: 8px; right: 8px;
  width: 22px; height: 22px; border-radius: 50%;
  border: 1px solid rgba(191,167,117,.5); background: rgba(0,0,0,.5);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: .6rem;
}

/* ── Uitgebreid instrument panel ── */

/* Intro tekst onder de hero */
.inst-intro {
  font-size: .92rem;
  line-height: 1.85;
  color: rgba(255,255,255,.68);
  padding: 1.75rem 0 0;
  border-top: 1px solid rgba(191,167,117,.12);
  margin-bottom: 0;
}

/* Quote / bijbeltekst */
.inst-quote {
  margin: 2rem 0;
  padding: 1.25rem 1.75rem;
  border-left: 3px solid var(--gold);
  background: rgba(191,167,117,.06);
}
.inst-quote__text {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  margin-bottom: .5rem;
}
.inst-quote__ref {
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .8;
}

/* Onderdelen-grid: kleine fotos met labels */
.inst-parts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
  margin-top: 2rem;
}

.inst-part {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  border: 1px solid rgba(191,167,117,.12);
  cursor: default;
}
.inst-part img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease);
}
.inst-part.on-black { background: #080808; }
.inst-part.on-black img { mix-blend-mode: screen; }
.inst-part:hover img { transform: scale(1.07); }

/* Placeholder als er geen foto is */
.inst-part__placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: rgba(191,167,117,.05);
}
.inst-part__placeholder-icon { font-size: 2.5rem; opacity: .2; }
.inst-part__placeholder-text { font-size: .6rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(191,167,117,.3); text-align: center; padding: 0 .5rem; }

.inst-part__lbl {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.5rem .85rem .75rem;
  background: linear-gradient(to top, rgba(0,0,0,.9), transparent);
}
.inst-part__key {
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .15rem;
}
.inst-part__val {
  font-size: .72rem;
  color: rgba(255,255,255,.65);
  line-height: 1.35;
}

/* Statistieken-balk */
.inst-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(191,167,117,.12);
  margin: 2rem 0;
  border: 1px solid rgba(191,167,117,.12);
}
.inst-stat {
  background: var(--dark);
  padding: 1.1rem .75rem;
  text-align: center;
}
.inst-stat__val {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .3rem;
}
.inst-stat__key {
  font-size: .62rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  line-height: 1.3;
}

.inst-panel.is-entering .inst-hero { animation: heroWipe .65s var(--ease-out) both; }
.inst-panel.is-entering .inst-hero__label { animation: fadeUp .5s var(--ease-out) .28s both; }
.inst-panel.is-entering .inst-facts-col { animation: fadeUp .5s var(--ease-out) .18s both; }
.inst-panel.is-entering .inst-detail:nth-child(n) { animation: detailIn .45s var(--ease-out) both; }

@keyframes heroWipe { from { opacity:0; clip-path: inset(0 35% 0 0); } to { opacity:1; clip-path: inset(0 0% 0 0); } }
@keyframes fadeUp { from { opacity:0; transform: translateY(15px); } to { opacity:1; transform: translateY(0); } }
@keyframes detailIn { from { opacity:0; transform: scale(.87) translateY(14px); } to { opacity:1; transform: scale(1) translateY(0); } }

/* ── 7. FOOTER ─────────────────────────────────────────────── */
.footer { background: #000; padding: 3.5rem var(--px) 2rem; border-top: 1px solid rgba(191,167,117,.1); }
.footer__inner { max-width: var(--max); margin: 0 auto; display: flex; flex-direction: column; gap: 2rem; }
.footer__brand { display: flex; align-items: center; gap: .85rem; }
.footer__brand img { height: 40px; mix-blend-mode: screen; filter: brightness(.9); }
.footer__brand-name { font-family: var(--font-serif); font-size: 1.25rem; font-style: italic; color: var(--gold); }
.footer__nav { display: flex; flex-wrap: wrap; gap: 1rem 1.75rem; }
.footer__nav a { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.38); transition: color .22s; }
.footer__nav a:hover { color: var(--gold); }
.footer__copy { font-size: .7rem; color: rgba(255,255,255,.16); padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.05); }

/* ── 8. VIDEO-PAGINA ───────────────────────────────────────── */
.page-hero { padding: calc(var(--nav-h) + 4rem) var(--px) 4rem; background: var(--near-black); text-align: center; }
.page-hero__title { font-family: var(--font-serif); font-size: clamp(2.2rem,7vw,4rem); margin-top: .75rem; }
.videos-section { padding: var(--py) var(--px); background: var(--black); }
.videos__inner { max-width: var(--max); margin: 0 auto; }
.videos-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
.video-card { background: var(--dark); border: 1px solid rgba(191,167,117,.13); overflow: hidden; transition: transform .3s var(--ease), border-color .3s; }
.video-card:hover { transform: translateY(-4px); border-color: rgba(191,167,117,.38); }
.video-card__embed { position: relative; width: 100%; padding-top: 56.25%; background: #000; }
.video-card__embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.video-card__info { padding: 1.25rem 1.5rem 1.5rem; }
.video-card__title { font-family: var(--font-serif); font-size: 1.1rem; color: var(--white); margin-bottom: .35rem; line-height: 1.3; }
.video-card__meta { font-size: .72rem; color: var(--gold); letter-spacing: .1em; opacity: .75; }
.videos__cta { margin-top: 3.5rem; text-align: center; }
.btn-outline { display: inline-flex; align-items: center; gap: .6rem; padding: .85rem 2rem; border: 1px solid var(--gold); color: var(--gold); font-size: .78rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; transition: background .25s, color .25s; }
.btn-outline:hover { background: var(--gold); color: var(--black); }

/* ── 9. CONTACT-PAGINA ─────────────────────────────────────── */
.contact-section { padding: var(--py) var(--px); background: var(--black); }
.contact__inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 3.5rem; }
.contact-info__item { display: flex; align-items: flex-start; gap: 1.1rem; margin-bottom: 1.75rem; }
.contact-info__icon { flex-shrink: 0; width: 40px; height: 40px; border: 1px solid rgba(191,167,117,.3); display: flex; align-items: center; justify-content: center; color: var(--gold); }
.contact-info__label { font-size: .67rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: .2rem; }
.contact-info__value { font-size: .93rem; color: rgba(255,255,255,.8); }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .45rem; }
.form-group label { font-size: .68rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.4); }
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255,255,255,.04); border: 1px solid rgba(191,167,117,.22); color: var(--white);
  font-family: var(--font-sans); font-size: .9rem; padding: .85rem 1rem; outline: none;
  border-radius: 0; appearance: none; -webkit-appearance: none; transition: border-color .25s, background .25s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); background: rgba(191,167,117,.05); }
.btn-submit { display: inline-flex; align-items: center; justify-content: center; gap: .6rem; padding: 1rem 2.5rem; background: var(--gold); color: var(--black); font-family: var(--font-sans); font-size: .78rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; cursor: pointer; align-self: flex-start; transition: background .25s, transform .2s; }
.form-success { display: none; padding: 1.5rem; border: 1px solid rgba(191,167,117,.35); border-left: 3px solid var(--gold); color: rgba(255,255,255,.8); font-size: .9rem; line-height: 1.7; }
.form-success.visible { display: block; }

/* ── 10. REVEAL ────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .75s var(--ease-out), transform .75s var(--ease-out); }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .12s; }
.reveal-d2 { transition-delay: .26s; }
.reveal-d3 { transition-delay: .40s; }

/* ── 11. RESPONSIVE ────────────────────────────────────────── */
@media (min-width: 768px) {
  .nav__links { display: flex; }
  .nav__hamburger { display: none; }
  .nav__mobile-menu { display: none !important; }

  .vision__scene {
    display: grid;
    grid-template-columns: 1fr 260px 1fr;
    grid-template-rows: auto;
    align-items: center;
    gap: 0;
  }
  .vision__logo-wrap { grid-column: 2; grid-row: 1; margin: 0; }
  .vision__cards { display: contents; }
  .vision__card:nth-child(1) { grid-column: 1; grid-row: 1; align-self: center; margin-right: 1.5rem; }
  .vision__card:nth-child(2) { grid-column: 3; grid-row: 1; align-self: end; margin-left: 1.5rem; margin-bottom: .75rem; }
  .vision__card:nth-child(3) { grid-column: 3; grid-row: 1; align-self: start; margin-left: 1.5rem; margin-top: .75rem; }

  .vision__svg { display: block; }
  .about__grid { grid-template-columns: 1fr 1fr; }
  .about__members { grid-template-columns: repeat(3,1fr); }
  .inst-body { grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
  .inst-details { grid-template-columns: repeat(2,1fr); }
  .inst-parts { grid-template-columns: repeat(3, 1fr); }
  .inst-parts.parts-4 { grid-template-columns: repeat(4, 1fr); }
  .videos-grid { grid-template-columns: repeat(3,1fr); }
  .contact__inner { grid-template-columns: 1fr 1.6fr; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .footer__inner { flex-direction: row; align-items: flex-start; justify-content: space-between; }
  .footer__copy { padding-top: 0; border-top: none; margin-left: auto; text-align: right; }
}

@media (min-width: 1100px) {
  .inst-details { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 767px) {
  .vision__scene { display: flex; flex-direction: column; align-items: center; gap: 2.5rem; }
  .vision__cards { display: grid !important; grid-template-columns: 1fr; gap: 1.25rem; width: 100%; }
  .vision__card:nth-child(n) { grid-column: auto !important; grid-row: auto !important; align-self: auto !important; margin: 0 !important; }
}

/* ═══════════════════════════════════════════════════
   MEMBER MODAL
   ═══════════════════════════════════════════════════ */

/* Backdrop */
.member-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, background .3s ease;
}
.member-modal-backdrop.is-open {
  opacity: 1;
  pointer-events: all;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* Panel */
.member-modal {
  position: relative;
  background: #0f0f0d;
  border: 1px solid rgba(191,167,117,.25);
  max-width: 540px;
  width: 100%;
  padding: 2.8rem 2.6rem 2.4rem;
  transform: translateY(28px) scale(.97);
  transition: transform .35s cubic-bezier(.22,.68,0,1.2), opacity .3s ease;
  opacity: 0;
  max-height: 90vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(191,167,117,.3) transparent;
  padding-bottom: 5.5rem;
}
.member-modal-backdrop.is-open .member-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Gouden streep bovenaan */
.member-modal::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Sluit-knop */
.member-modal__close {
  position: absolute;
  top: 1.1rem;
  right: 1.2rem;
  width: 32px;
  height: 32px;
  background: none;
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.6);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, color .2s;
  border-radius: 2px;
}
.member-modal__close:hover { border-color: var(--gold); color: var(--gold); }

/* Nav pijltjes */
.member-modal__nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.07);
}

.member-modal__nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  color: var(--black);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
  line-height: 1;
  box-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.member-modal__nav-btn:hover {
  background: var(--gold-light);
  transform: scale(1.1);
}

.member-modal__role {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .7rem;
}
.member-modal__name {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.4rem;
  line-height: 1.15;
}
.member-modal__line {
  width: 36px;
  height: 1.5px;
  background: var(--gold);
  margin-bottom: 1.6rem;
}
.member-modal__quote {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,.85);
  line-height: 1.8;
  margin-bottom: 1.4rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(191,167,117,.4);
}
.member-modal__bio {
  font-size: .87rem;
  color: rgba(255,255,255,.6);
  line-height: 1.85;
}
.member-modal__bio p + p { margin-top: .9rem; }
.member-modal__instrument {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,.07);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
}
.member-modal__dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1.8rem;
}
.member-modal__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  transition: background .25s;
}
.member-modal__dot.is-active { background: var(--gold); }

/* Klik-hint op member-kaartjes — cursor al gezet in hoofdregel */

@media (max-width: 540px) {
  .member-modal { padding: 2.2rem 1.6rem 2rem; max-height: 85vh; }
  .member-modal__name { font-size: 1.5rem; }
/* Slide-animatie voor modal-inhoud */
.member-modal__content {
  will-change: transform, opacity;
  transition: transform .32s cubic-bezier(.4, 0, .2, 1), opacity .26s ease;
}
.member-modal__content.slide-out-left  { transform: translateX(-52px); opacity: 0; pointer-events: none; }
.member-modal__content.slide-out-right { transform: translateX( 52px); opacity: 0; pointer-events: none; }
.member-modal__content.slide-in-left   { transform: translateX( 52px); opacity: 0; transition: none; }
.member-modal__content.slide-in-right  { transform: translateX(-52px); opacity: 0; transition: none; }

/* Dots klikbaar maken */
.member-modal__dot {
  cursor: pointer;
  border: none;
  background: rgba(255,255,255,.2);
  padding: 0;
  transition: background .25s, transform .2s;
}
.member-modal__dot:hover { transform: scale(1.3); }
.member-modal__dot.is-active { background: var(--gold); }
}

/* ═══════════════════════════════════════════════════════
   INSTRUMENTEN — vernieuwd paneel
   ═══════════════════════════════════════════════════════ */

/* Sectie-label (klein uppercase onderschrift boven blokken) */
.inst-section-label {
  font-size: .6rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(191,167,117,.45);
  margin-bottom: 1rem;
}

/* ─── Hoofdgrid: anatomie links, kenmerken rechts ─── */
.inst-main-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-top: 2rem;
}

@media (min-width: 900px) {
  .inst-main-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
  }
}

/* ─── Anatomie-diagram ─── */
.inst-anatomy__figure {
  position: relative;
  display: block;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(191,167,117,.1);
  overflow: visible; /* pins mogen buiten het kader steken */
}

.inst-anatomy__figure img {
  width: 100%;
  display: block;
  object-fit: contain;
}

.inst-anatomy__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 260px;
  font-size: 4rem;
  opacity: .1;
}

/* ─── Anatomie-pins (genummerde badges op de afbeelding) ─── */
.anat-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 4;
  cursor: default;
  pointer-events: none;
}

.anat-pin__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: #080806;
  font-family: var(--font-sans);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: 0;
  box-shadow: 0 0 0 3px rgba(191,167,117,.25), 0 2px 8px rgba(0,0,0,.5);
  transition: transform .2s ease;
}

.anat-pin__num::after {
  content: '';
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(191,167,117,.3);
  animation: pinPulse 2.4s ease-in-out infinite;
}

@keyframes pinPulse {
  0%   { transform: scale(.8); opacity: .7; }
  60%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(.8); opacity: 0; }
}

/* ─── Legenda onder de anatomie-afbeelding ─── */
.anat-legend {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  margin-top: 1.1rem;
}

.anat-legend__item {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
}

.anat-legend__num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(191,167,117,.15);
  border: 1px solid rgba(191,167,117,.4);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: .58rem;
  font-weight: 700;
  margin-top: .05rem;
}

.anat-legend__body { flex: 1; }

.anat-legend__name {
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  margin-bottom: .18rem;
  letter-spacing: .02em;
}

.anat-legend__desc {
  font-size: .72rem;
  color: rgba(255,255,255,.48);
  line-height: 1.5;
}

/* ─── Kenmerken-grid (rechterkolom) ─── */
.inst-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: 2rem;
}

.inst-feature {
  padding: .9rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1rem;
  align-items: baseline;
}

.inst-feature:first-child { border-top: 1px solid rgba(255,255,255,.06); }

.inst-feature__title {
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-sans);
  font-weight: 600;
  padding-top: .05rem;
  flex-shrink: 0;
}

.inst-feature__desc {
  font-size: .8rem;
  color: rgba(255,255,255,.62);
  line-height: 1.65;
}

/* ─── Quote / bijbeltekst ─── */
.inst-quote {
  margin-top: 2rem;
  padding: 1.4rem 1.5rem;
  border-left: 2px solid var(--gold);
  background: rgba(191,167,117,.05);
}

.inst-quote__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: .92rem;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin: 0 0 .65rem;
}

.inst-quote__ref {
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ─── Detail-foto's strip ─── */
.inst-photos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1px;
  background: rgba(191,167,117,.08);
  border: 1px solid rgba(191,167,117,.08);
  margin-top: .75rem;
}

.inst-photo {
  display: flex;
  flex-direction: column;
  background: var(--dark);
  overflow: hidden;
}

.inst-photo.on-black .inst-photo__img-wrap {
  background: #080806;
}

.inst-photo.on-black img {
  mix-blend-mode: screen;
}

.inst-photo__img-wrap {
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #111;
}

.inst-photo__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s var(--ease);
}

.inst-photo:hover .inst-photo__img-wrap img {
  transform: scale(1.06);
}

.inst-photo figcaption {
  padding: .85rem 1rem .9rem;
  border-top: 1px solid rgba(191,167,117,.08);
  display: flex;
  flex-direction: column;
  gap: .22rem;
}

.inst-photo figcaption strong {
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.inst-photo figcaption span {
  font-size: .72rem;
  color: rgba(255,255,255,.5);
  line-height: 1.45;
}

/* ─── Animaties bij wisselen van tab ─── */
.inst-panel.is-entering .inst-anatomy { animation: fadeUp .5s var(--ease-out) .1s both; }
.inst-panel.is-entering .inst-features-col { animation: fadeUp .5s var(--ease-out) .22s both; }
.inst-panel.is-entering .inst-photos { animation: fadeUp .45s var(--ease-out) .35s both; }