@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:wght@300;400;600;700&family=Barlow:wght@300;400;500&display=swap');

:root {
  --black:   #0a0a0a;
  --ink:     #111113;
  --red:     #c8161e;
  --red-dim: #8c0f14;
  --gold:    #c8a84b;
  --white:   #f4f1ec;
  --grey:    #888;
  --line:    rgba(255,255,255,0.08);
  --max: 1240px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── UTILS ── */
.container {
  width: min(calc(100% - 2.4rem), var(--max));
  margin: 0 auto;
}

.label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 1.8rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover { background: var(--red-dim); border-color: var(--red-dim); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-ghost:hover { border-color: var(--white); transform: translateY(-2px); }

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s;
}
.site-header.scrolled {
  background: rgba(10,10,10,0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(10,10,10,0.88);
  padding: 0.45rem 0.9rem 0.45rem 0.6rem;
  border-radius: 3px;
}
.brand img { height: 46px; width: auto; object-fit: contain; }
.brand-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  line-height: 1.1;
  white-space: nowrap;
}
.brand-text small {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
}

.site-nav { display: flex; align-items: center; gap: 1.2rem; }
.site-nav a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color 0.15s;
  position: relative;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.site-nav a:hover, .site-nav a.active { color: var(--white); }
.site-nav a:hover::after, .site-nav a.active::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 1rem; }

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--white);
  padding: 0.6rem 1rem;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: #111;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.55;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.1) 0%,
    rgba(10,10,10,0.2) 40%,
    rgba(10,10,10,0.85) 80%,
    rgba(10,10,10,1) 100%
  );
}

/* red diagonal stripe */
.hero-bg::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 6px;
  height: 100%;
  background: var(--red);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 0 5rem;
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.hero-eyebrow .line { width: 40px; height: 2px; background: var(--red); }

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 10vw, 10rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  max-width: 14ch;
  margin-bottom: 1.4rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--red);
}

.hero-desc {
  max-width: 48ch;
  color: rgba(244,241,236,0.72);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-scroll {
  position: absolute;
  bottom: 2.4rem;
  right: 2.4rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  writing-mode: vertical-rl;
}
.hero-scroll .arrow {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--grey));
}

/* ── SECTION BASE ── */
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

.section-header { margin-bottom: 3rem; }
.section-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-top: 0.5rem;
}

/* ── PARTNER STRIP ── */
.partner-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2rem 0;
  background: rgba(255,255,255,0.025);
}
.partner-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 1.2rem 2.5rem;
  border-right: 1px solid var(--line);
  text-decoration: none;
  transition: background 0.18s;
}
.partner-item:first-child { border-left: 1px solid var(--line); }
.partner-item:hover { background: rgba(255,255,255,0.04); }
.partner-item img {
  height: 44px;
  width: auto;
  object-fit: contain;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.partner-item:hover img { opacity: 1; }
.partner-item span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244,241,236,0.4);
  text-align: center;
  white-space: nowrap;
}

/* ── WAAROM CARDS ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
}
.why-card {
  padding: 2.4rem;
  border-right: 1px solid var(--line);
  transition: background 0.2s;
}
.why-card:last-child { border-right: none; }
.why-card:hover { background: rgba(200,22,30,0.06); }

.why-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: rgba(200,22,30,0.18);
  line-height: 1;
  margin-bottom: 0.8rem;
}
.why-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
}
.why-card p { color: rgba(244,241,236,0.65); font-size: 0.95rem; }

/* ── PHOTO SPLIT SECTION ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.split-img { position: relative; overflow: hidden; min-height: 520px; }
.split-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.split-img:hover img { transform: scale(1.03); }
.split-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,22,30,0.4) 0%, transparent 60%);
}

.split-content {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ink);
}
.split-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1;
  margin-bottom: 1.2rem;
}
.split-content p { color: rgba(244,241,236,0.7); margin-bottom: 1rem; }
.split-content .btn { margin-top: 1.2rem; align-self: flex-start; }

/* ── SENSEI ── */
.sensei-section { background: var(--ink); }
.sensei-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0;
  align-items: stretch;
}
.sensei-photo {
  position: relative;
  overflow: hidden;
  min-height: 560px;
}
.sensei-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(15%);
}
.sensei-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--ink) 100%);
}
.sensei-badge {
  position: absolute;
  bottom: 2rem; left: 2rem;
  z-index: 2;
  background: var(--red);
  padding: 0.5rem 1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.sensei-info {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sensei-info h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1;
  margin-bottom: 1.4rem;
}
.sensei-info p { color: rgba(244,241,236,0.7); margin-bottom: 1rem; font-size: 1.02rem; }

.certs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}
.cert-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--line);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.cert-badge .dot { width: 6px; height: 6px; background: var(--red); border-radius: 50%; flex-shrink: 0; }

/* ── SCHEDULE ── */
.schedule-section { background: #0d0d0d; }
.schedule-wrap {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
}
.schedule-table thead th {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  text-align: left;
  padding: 0.8rem 1.2rem;
  border-bottom: 2px solid var(--red);
}
.schedule-table tbody tr {
  border-bottom: 1px solid var(--line);
  transition: background 0.15s;
}
.schedule-table tbody tr:hover { background: rgba(255,255,255,0.03); }
.schedule-table tbody tr.no-class { opacity: 0.35; }
.schedule-table td {
  padding: 1rem 1.2rem;
  font-size: 0.97rem;
  color: rgba(244,241,236,0.8);
}
.schedule-table td:first-child {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  width: 130px;
}
.schedule-table .time {
  color: var(--gold);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
}

.schedule-aside {
  position: sticky;
  top: 100px;
  padding: 2.4rem;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
}
.schedule-aside h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.04em;
  margin-bottom: 1.2rem;
}
.aside-tip {
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--red);
  background: rgba(200,22,30,0.06);
  margin-bottom: 1.2rem;
  font-size: 0.92rem;
  color: rgba(244,241,236,0.75);
}
.aside-tip strong { display: block; color: var(--white); margin-bottom: 0.3rem; }

/* ── CTA ── */
.cta-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 6rem 0;
}
.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.25;
}
.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--black) 0%, transparent 30%, transparent 70%, var(--black) 100%);
}
.cta-content {
  position: relative;
  z-index: 2;
}
.cta-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 8rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 1.2rem;
}
.cta-content p {
  color: rgba(244,241,236,0.7);
  max-width: 44ch;
  margin: 0 auto 2rem;
}
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── FOOTER ── */
.site-footer {
  background: #070707;
  border-top: 1px solid var(--line);
  padding: 3.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-brand img { height: 28px; width: auto; opacity: 0.5; }
.footer-brand p { color: var(--grey); font-size: 0.92rem; max-width: 30ch; }

.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.2rem;
}
.footer-col a, .footer-col address {
  display: block;
  color: var(--grey);
  font-size: 0.95rem;
  font-style: normal;
  margin-bottom: 0.5rem;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { color: var(--grey); font-size: 0.82rem; }

/* ── PAGE HERO ── */
.page-hero {
  padding: 9rem 0 4rem;
  background: var(--ink);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: attr(data-title);
  position: absolute;
  right: -0.05em;
  bottom: -0.2em;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20vw;
  color: rgba(255,255,255,0.025);
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
}
.breadcrumbs {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 1rem;
}
.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  max-width: 18ch;
  margin-bottom: 1rem;
}
.page-hero .lead {
  max-width: 52ch;
  color: rgba(244,241,236,0.65);
}

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.contact-box {
  padding: 2.4rem;
  border: 1px solid var(--line);
  background: var(--ink);
}
.contact-box h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  margin-bottom: 1.4rem;
}
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 1.8rem;
}
.contact-detail a, .contact-detail span {
  color: rgba(244,241,236,0.75);
  font-size: 1rem;
  transition: color 0.15s;
}
.contact-detail a:hover { color: var(--white); }
.contact-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }

.vcp-note {
  padding: 1.2rem 1.4rem;
  border-left: 3px solid var(--gold);
  background: rgba(200,168,75,0.06);
  font-size: 0.9rem;
  color: rgba(244,241,236,0.65);
}
.vcp-note strong { color: var(--gold); display: block; margin-bottom: 0.3rem; }

/* ── OVER ONS / INFO BLOCKS ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
}
.value-card {
  padding: 2rem;
  border-right: 1px solid var(--line);
  transition: background 0.2s;
}
.value-card:last-child { border-right: none; }
.value-card:hover { background: rgba(200,22,30,0.05); }
.value-letter {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--red);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.value-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
.value-card p { color: rgba(244,241,236,0.6); font-size: 0.92rem; }

/* ── PROEFLES STEPS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
}
.step-card {
  padding: 2.4rem;
  border-right: 1px solid var(--line);
  position: relative;
}
.step-card:last-child { border-right: none; }
.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  color: rgba(200,22,30,0.15);
  line-height: 1;
  margin-bottom: 0.6rem;
}
.step-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.7rem;
}
.step-card p { color: rgba(244,241,236,0.65); font-size: 0.95rem; margin-bottom: 1.4rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .why-grid,
  .values-grid,
  .steps-grid { grid-template-columns: 1fr; }
  .why-card, .value-card, .step-card { border-right: none; border-bottom: 1px solid var(--line); }
  .why-card:last-child, .value-card:last-child, .step-card:last-child { border-bottom: none; }

  .split { grid-template-columns: 1fr; }
  .split-img { min-height: 340px; }
  .split-content { padding: 2.4rem; }

  .sensei-grid { grid-template-columns: 1fr; }
  .sensei-photo { min-height: 420px; }
  .sensei-photo::after { background: linear-gradient(to bottom, transparent 60%, var(--ink) 100%); }
  .sensei-info { padding: 2.4rem; }

  .schedule-wrap { grid-template-columns: 1fr; }
  .schedule-aside { position: static; }

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

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

  .menu-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.2rem;
  }
  .site-nav.open { display: flex; }
  .site-nav a::after { display: none; }
  .nav-actions .btn { display: none; }
}

@media (max-width: 640px) {
  .hero h1 { font-size: clamp(3rem, 14vw, 5rem); }
  .footer-grid { grid-template-columns: 1fr; }
  .partner-inner img { height: 32px; }
  .schedule-table td:first-child { width: 80px; }
}

/* ══════════════════════════════════════════════
   PHOTO STRIP — auto-scrolling marquee
   ══════════════════════════════════════════════ */
.photo-strip {
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
  padding: 2px 0;
  background: var(--black);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.photo-strip-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 6px;
  width: max-content;
  min-width: max-content;
  will-change: transform;
  animation: strip-scroll 55s linear infinite;
}

/* hide duplicates on mobile; show native scroll instead */
@media (max-width: 768px) {
  .photo-strip {
    display: block;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .photo-strip::-webkit-scrollbar { display: none; }
  .photo-strip-track {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: stretch;
    animation: none !important;
    transform: none !important;
    width: max-content;
    min-width: max-content;
    white-space: nowrap;
    will-change: auto;
  }
  /* hide the duplicate set on mobile */
  .photo-strip-track img:nth-child(n+11) {
    display: none;
  }
  .photo-strip-track img {
    display: block !important;
    flex: 0 0 auto !important;
    width: min(46vw, 220px) !important;
    min-width: 150px;
    height: 180px !important;
    max-width: none !important;
  }
}

.photo-strip:hover .photo-strip-track {
  animation-play-state: paused;
}

@keyframes strip-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.photo-strip-track img {
  height: 260px;
  width: auto;
  object-fit: cover;
  display: block;
  flex: 0 0 auto;
  max-width: none;
  filter: brightness(0.88) contrast(1.05);
  transition: filter 0.3s, transform 0.3s;
}

.photo-strip-track img:hover {
  filter: brightness(1) contrast(1.05);
  transform: scale(1.02);
  z-index: 1;
  position: relative;
}

/* ══════════════════════════════════════════════
   COLLAGE GRID — over-ons personality section
   ══════════════════════════════════════════════ */
.collage {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 260px 260px;
  gap: 6px;
}

.collage-item {
  overflow: hidden;
  position: relative;
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.collage-item:hover img { transform: scale(1.05); }

.collage-item .collage-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.6rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  opacity: 0;
  transition: opacity 0.3s;
}

.collage-item:hover .collage-cap { opacity: 1; }

/* layout assignments */
.collage-item:nth-child(1) { grid-column: 1 / 5;  grid-row: 1 / 2; }
.collage-item:nth-child(2) { grid-column: 5 / 8;  grid-row: 1 / 2; }
.collage-item:nth-child(3) { grid-column: 8 / 13; grid-row: 1 / 3; }
.collage-item:nth-child(4) { grid-column: 1 / 4;  grid-row: 2 / 3; }
.collage-item:nth-child(5) { grid-column: 4 / 8;  grid-row: 2 / 3; }

/* red accent overlay on first item */
.collage-item:nth-child(1)::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,22,30,0.25), transparent 55%);
  pointer-events: none;
}

/* ══════════════════════════════════════════════
   MASONRY GALLERY — leden & wedstrijden page
   ══════════════════════════════════════════════ */
.masonry {
  columns: 3;
  column-gap: 8px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 8px;
  overflow: hidden;
  position: relative;
}

.masonry-item img {
  width: 100%;
  display: block;
  filter: brightness(0.9);
  transition: filter 0.3s, transform 0.4s;
}

.masonry-item:hover img {
  filter: brightness(1);
  transform: scale(1.02);
}

.masonry-item .masonry-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transform: translateY(100%);
  transition: transform 0.3s;
}

.masonry-item:hover .masonry-cap { transform: translateY(0); }

/* Section with category label tabs */
.gallery-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 2.5rem;
}
.gallery-tab {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.9rem 1.6rem;
  color: var(--grey);
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all 0.15s;
}
.gallery-tab.active,
.gallery-tab:hover {
  color: var(--white);
  border-bottom-color: var(--red);
}

/* Press / media mention card */
.press-card {
  padding: 2rem;
  border: 1px solid var(--line);
  background: var(--ink);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  align-items: center;
}
.press-card img {
  width: 100%;
  border-radius: 4px;
}
.press-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.7rem;
}
.press-card p { color: rgba(244,241,236,0.68); font-size: 0.97rem; }
.press-card .press-meta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
}

/* Schedule bg image */
.schedule-with-bg {
  position: relative;
}
.schedule-with-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('overig_3.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.07;
  pointer-events: none;
}
.schedule-with-bg > * { position: relative; z-index: 1; }

@media (max-width: 900px) {
  .collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .collage-item:nth-child(1),
  .collage-item:nth-child(2),
  .collage-item:nth-child(3),
  .collage-item:nth-child(4),
  .collage-item:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
  }
  .collage-item { height: 220px; }
  .masonry { columns: 2; }
  .press-card { grid-template-columns: 1fr; }
  .press-card img { max-height: 200px; object-fit: cover; }
}

@media (max-width: 580px) {
  .photo-strip-track img { height: 180px; }
  .masonry { columns: 1; }
}

/* ── REVERSE STRIP ── */
.photo-strip-track.reverse {
  animation-name: strip-scroll-reverse;
  animation-duration: 48s;
}

@keyframes strip-scroll-reverse {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
