/* ==========================================================================
   Team New Talents — design tokens
   ========================================================================== */
:root {
  --black: #0a0a0a;
  --black-soft: #131313;
  --panel: #161616;
  --panel-2: #1c1c1c;
  --line: #2a2a2a;
  --yellow: #f4d000;
  --yellow-soft: #ffe75e;
  --white: #f7f7f5;
  --grey: #9a9a94;

  --font-display: "Anton", "Inter", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1180px;
  --radius: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
/* Het hidden-attribuut moet altijd winnen van display:flex/grid op dezelfde elementen. */
[hidden] { display: none !important; }

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

a { color: inherit; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0;
}

.accent { color: var(--yellow); }

.eyebrow {
  color: var(--yellow);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 0.6rem;
}

/* subtle grain texture for depth */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--yellow);
  color: var(--black);
}
.btn-primary:hover { background: var(--yellow-soft); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(247,247,245,0.35);
}
.btn-ghost:hover { border-color: var(--yellow); color: var(--yellow); }

.btn-block { width: 100%; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  position: relative;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  margin-left: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  margin-right: auto;
}
.brand-logo {
  height: 38px;
  width: 38px;
  object-fit: contain;
  border-radius: 8px;
}
.brand-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  color: var(--white);
}

.main-nav {
  display: flex;
  gap: 1.8rem;
}
.main-nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--grey);
  transition: color 0.15s ease;
  position: relative;
}
.main-nav a:hover { color: var(--white); }
.main-nav a.is-active { color: var(--yellow); }

.nav-cta { flex-shrink: 0; }

.nav-toggle {
  margin-left: auto;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  filter: grayscale(35%) contrast(1.1);
  transform: scale(1.05);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.75) 55%, var(--black) 100%),
    linear-gradient(90deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.35) 55%, rgba(10,10,10,0.85) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
  max-width: 780px;
}

.hero-title {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  line-height: 0.98;
  margin-bottom: 1.2rem;
}

.hero-sub {
  color: rgba(247,247,245,0.82);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 0 2rem;
}

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

.hero-ghost-word {
  position: absolute;
  z-index: 1;
  right: -1rem;
  bottom: -2.5rem;
  font-family: var(--font-display);
  font-size: clamp(6rem, 18vw, 15rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(247,247,245,0.16);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.scroll-cue {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(247,247,245,0.4);
  border-radius: 999px;
  z-index: 2;
}
.scroll-cue span {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--yellow);
  border-radius: 999px;
  animation: scrollDown 1.6s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { top: 6px; opacity: 1; }
  70% { top: 22px; opacity: 0; }
  100% { top: 22px; opacity: 0; }
}

/* ==========================================================================
   Tape marquee (caution-tape style scrolling banner)
   ========================================================================== */
.tape-marquee {
  position: relative;
  background: #050505;
  padding: 1rem 0;
  overflow: hidden;
}
.tape-marquee::before,
.tape-marquee::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 7px;
  background: repeating-linear-gradient(135deg, var(--yellow) 0 16px, #050505 16px 32px);
}
.tape-marquee::before { top: 0; }
.tape-marquee::after { bottom: 0; }

.tape-marquee-track {
  display: flex;
  width: max-content;
  animation: tapeSlide 18s linear infinite alternate;
}
.tape-marquee-track span {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.5rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--yellow);
  white-space: nowrap;
  padding-right: 1.6rem;
}
.tape-marquee-track span i {
  font-style: normal;
  color: rgba(244,208,0,0.4);
  margin: 0 1.1rem;
}

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

@media (prefers-reduced-motion: reduce) {
  .tape-marquee-track {
    animation: none;
  }
}

/* ==========================================================================
   Sections
   ========================================================================== */
.section {
  padding: 6rem 0;
  background: var(--black);
  overflow-x: hidden;
}
.section-dark {
  background: var(--black-soft);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.section-head {
  margin-bottom: 3rem;
  max-width: 640px;
}
.section-head h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}

.lead {
  font-size: 1.15rem;
  color: var(--white);
}

/* ---- About ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: start;
}
.about-text p { color: rgba(247,247,245,0.78); }

.stat-row {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.2rem;
  flex-wrap: wrap;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--yellow);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--grey);
  margin-top: 0.4rem;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.value-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  position: relative;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.value-card:hover {
  border-color: var(--yellow);
  transform: translateY(-3px);
}
.value-num {
  font-family: var(--font-display);
  color: var(--yellow);
  font-size: 1rem;
  opacity: 0.7;
}
.value-card h3 {
  font-size: 1.15rem;
  margin: 0.4rem 0 0.4rem;
}
.value-card p {
  margin: 0;
  color: var(--grey);
  font-size: 0.92rem;
}

/* ---- Lessons ---- */
.lessons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.lesson-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.lesson-card:hover {
  transform: translateY(-4px);
  border-color: var(--yellow);
}
.lesson-card.featured {
  background: linear-gradient(160deg, var(--yellow) 0%, var(--yellow-soft) 100%);
  color: var(--black);
  border-color: transparent;
}
.lesson-card.featured .lesson-meta { color: rgba(10,10,10,0.65); }
.lesson-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}
.lesson-card p {
  font-size: 0.92rem;
  color: var(--grey);
  margin: 0 0 1rem;
}
.lesson-card.featured p { color: rgba(10,10,10,0.75); }
.lesson-meta {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--yellow);
}
.lessons-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ---- Trainers ---- */
.trainers-grid {
  display: grid;
  /* auto-fit + gecentreerd: ook met twee trainers blijft het beeld in balans */
  grid-template-columns: repeat(auto-fit, minmax(220px, 340px));
  justify-content: center;
  gap: 1.6rem;
}
.trainer-card { text-align: center; }
.trainer-photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.1rem;
  background: var(--panel);
}
.trainer-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter 0.25s ease, transform 0.3s ease;
}
.trainer-card:hover .trainer-photo img {
  filter: grayscale(0%);
  transform: scale(1.04);
}
.trainer-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
}
.trainer-role {
  color: var(--yellow);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ---- News ---- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.news-card {
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.news-card:hover {
  border-color: var(--yellow);
  transform: translateY(-3px);
}
.news-date {
  font-size: 0.78rem;
  color: var(--grey);
  font-weight: 700;
  letter-spacing: 0.05em;
}
.news-card h3 {
  font-size: 1.1rem;
  margin: 0.5rem 0 0.6rem;
  text-transform: none;
}
.news-card p {
  font-size: 0.9rem;
  color: var(--grey);
  margin: 0 0 1rem;
}
.news-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--yellow);
  text-decoration: none;
}

/* ---- Sponsors ---- */
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.sponsor-slot {
  aspect-ratio: 2 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--line);
  border-radius: 10px;
  color: var(--grey);
  font-size: 0.78rem;
  text-align: center;
  padding: 0.5rem;
}
.sponsor-cta {
  margin-top: 2.2rem;
  color: var(--grey);
  font-size: 0.95rem;
}
.sponsor-cta a {
  color: var(--yellow);
  font-weight: 700;
  text-decoration: none;
}

/* ---- Contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
}
.contact-info dl { margin: 0; }
.contact-row {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-row dt {
  font-size: 0.78rem;
  color: var(--yellow);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 0.3rem;
}
.contact-row dd {
  margin: 0;
  font-size: 1rem;
  color: var(--white);
}
.social-links {
  display: flex;
  gap: 1.4rem;
  margin-top: 1.6rem;
}
.social-links a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--grey);
  transition: color 0.15s ease;
}
.social-links a:hover { color: var(--yellow); }

.contact-form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
}
.form-row {
  margin-bottom: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-row label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--grey);
}
.form-row input,
.form-row textarea,
.form-row select {
  /* Volle breedte en mag krimpen: anders steekt bijv. een datumveld uit zijn rasterkolom op mobiel. */
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  background: var(--black-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.75rem 0.9rem;
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  resize: vertical;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--yellow);
}
.form-note {
  margin: 1rem 0 0;
  color: var(--yellow);
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--black-soft);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 2.2rem 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
}
.footer-brand .brand-logo { height: 30px; width: 30px; }
.footer-copy {
  color: var(--grey);
  font-size: 0.85rem;
  margin: 0;
}
.back-to-top {
  text-decoration: none;
  color: var(--grey);
  font-size: 0.85rem;
  font-weight: 600;
}
.back-to-top:hover { color: var(--yellow); }

/* ==========================================================================
   Inner page header (non-hero pages)
   ========================================================================== */
.page-header {
  padding: 9.5rem 0 2.5rem;
  background: var(--black-soft);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.page-header h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.empty-state {
  color: var(--grey);
  font-size: 1rem;
  padding: 2rem 0;
}

/* ---- Home teasers ---- */
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.teaser-card {
  display: block;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  text-decoration: none;
  color: var(--white);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.teaser-card:hover {
  transform: translateY(-4px);
  border-color: var(--yellow);
}
.teaser-num {
  font-family: var(--font-display);
  color: var(--yellow);
  font-size: 1rem;
  opacity: 0.7;
}
.teaser-card h3 {
  font-size: 1.15rem;
  margin: 0.5rem 0 0.5rem;
}
.teaser-card p {
  margin: 0;
  color: var(--grey);
  font-size: 0.9rem;
}

.about-teaser {
  max-width: 720px;
}
.about-teaser p.lead {
  color: rgba(247,247,245,0.8);
  margin: 1rem 0 1.6rem;
}

/* ---- About split (homepage) ---- */
/* ---- About (editorial poster layout) ---- */
.about-creative { overflow: hidden; }

.about-stage {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 460px;
  padding-top: 3rem;
}

.about-ghost-text {
  position: absolute;
  top: -1.5rem;
  left: -0.5rem;
  z-index: 0;
  font-family: var(--font-display);
  font-size: clamp(6rem, 15vw, 12rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(244,208,0,0.22);
  pointer-events: none;
  user-select: none;
}

.about-photo {
  position: relative;
  z-index: 1;
  width: 62%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 87% 100%, 0 100%);
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  filter: grayscale(20%) contrast(1.05);
}

.about-card {
  position: relative;
  z-index: 2;
  width: 48%;
  margin-left: -14%;
  margin-bottom: -2.5rem;
  background: var(--black);
  border: 1px solid var(--line);
  border-left: 4px solid var(--yellow);
  padding: 2.4rem 2.6rem;
}
.about-card h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.about-card .lead {
  color: rgba(247,247,245,0.8);
  margin: 1rem 0 1.6rem;
}

.about-values-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 5.5rem;
}
.about-value-big {
  padding-top: 1.1rem;
  border-top: 2px solid var(--line);
  transition: border-color 0.25s ease;
}
.about-value-big:hover { border-color: var(--yellow); }
.about-value-ghost {
  display: block;
  font-family: var(--font-display);
  font-size: 3.2rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--yellow);
  margin-bottom: 0.6rem;
}
.about-value-label {
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.9rem;
  color: var(--white);
}

/* ---- Values mosaic (homepage) ---- */
.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.mosaic-tile {
  position: relative;
  display: flex;
  align-items: flex-end;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.25s ease;
}
.mosaic-tile:hover { transform: translateY(-4px); }
.mosaic-tile-bg {
  position: absolute;
  inset: 0;
  background-image: var(--tile-img);
  background-size: cover;
  background-position: center;
  filter: grayscale(45%) brightness(0.8) contrast(1.1);
  transform: scale(1.04);
  transition: transform 0.3s ease, filter 0.3s ease;
}
.mosaic-tile:hover .mosaic-tile-bg {
  transform: scale(1.1);
  filter: grayscale(20%) brightness(0.85) contrast(1.1);
}
.mosaic-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.2) 60%, rgba(10,10,10,0.05) 100%);
  transition: background 0.3s ease;
}
.mosaic-tile:hover .mosaic-tile-overlay {
  background: linear-gradient(0deg, rgba(244,208,0,0.9) 0%, rgba(10,10,10,0.35) 65%, rgba(10,10,10,0.05) 100%);
}
.mosaic-tile-content {
  position: relative;
  z-index: 2;
  padding: 1.6rem;
}
.mosaic-tile-title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.4rem;
  transition: color 0.3s ease;
}
.mosaic-tile:hover .mosaic-tile-title { color: var(--black); }
.mosaic-tile-text {
  display: block;
  font-size: 0.85rem;
  color: rgba(247,247,245,0.85);
  transition: color 0.3s ease;
}
.mosaic-tile:hover .mosaic-tile-text { color: rgba(10,10,10,0.8); }

/* ---- Trainers preview (homepage) ---- */
.trainer-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 360px));
  justify-content: center;
  gap: 1.4rem;
}
.trainer-preview-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  transition: transform 0.25s ease;
}
.trainer-preview-card:hover { transform: translateY(-4px); }
.trainer-preview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.05) 55%);
}
.trainer-preview-info {
  position: relative;
  z-index: 2;
  padding: 1.4rem;
}
.trainer-preview-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--white);
}
.trainer-preview-role {
  display: block;
  font-size: 0.82rem;
  color: var(--yellow);
  font-weight: 600;
  margin-top: 0.2rem;
}

/* ---- Final CTA banner ---- */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 6.5rem 0;
  text-align: center;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 25%;
  filter: contrast(1.05);
  transform: scale(1.05);
}
.cta-banner-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(6,6,6,0.88), rgba(6,6,6,0.88)),
    linear-gradient(90deg, rgba(6,6,6,0.5) 0%, rgba(6,6,6,0.15) 50%, rgba(6,6,6,0.5) 100%);
}
.cta-banner-inner {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  max-width: 640px;
}
.cta-banner h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-bottom: 0.8rem;
  color: var(--white);
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}
.cta-banner p {
  font-size: 1.05rem;
  color: rgba(247,247,245,0.9);
  margin: 0 0 2rem;
  text-shadow: 0 1px 10px rgba(0,0,0,0.5);
}
.cta-banner-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   Scroll-reveal animation
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.3s; }

@keyframes fadeUpIn {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-inner .eyebrow,
.hero-inner .hero-title,
.hero-inner .hero-sub,
.hero-inner .hero-actions {
  opacity: 0;
  animation: fadeUpIn 0.8s ease forwards;
}
.hero-inner .eyebrow { animation-delay: 0.1s; }
.hero-inner .hero-title { animation-delay: 0.25s; }
.hero-inner .hero-sub { animation-delay: 0.4s; }
.hero-inner .hero-actions { animation-delay: 0.55s; }

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-stagger > *,
  .hero-inner .eyebrow,
  .hero-inner .hero-title,
  .hero-inner .hero-sub,
  .hero-inner .hero-actions {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ---- Schedule table ---- */
.schedule-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}
.schedule-table th {
  text-align: left;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
  background: var(--panel);
  padding: 1rem 1.2rem;
}
.schedule-table td {
  padding: 1rem 1.2rem;
  border-top: 1px solid var(--line);
  color: rgba(247,247,245,0.85);
  font-size: 0.95rem;
}
.schedule-table tbody tr:hover { background: var(--panel-2); }

/* ---- Gallery ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.gallery-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  position: relative;
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item figcaption {
  padding: 0.7rem 1rem;
  font-size: 0.85rem;
  color: var(--grey);
}

/* ---- Notices ---- */
.notice-banner {
  background: var(--panel);
  border: 1px solid var(--yellow);
  color: var(--yellow-soft);
  border-radius: 10px;
  padding: 1rem 1.3rem;
  font-size: 0.92rem;
  margin-bottom: 2rem;
}
.notice-banner.notice-error {
  border-color: #ff4d4d;
  color: #ff8080;
}

/* ---- Shop ---- */
.shop-category { margin-bottom: 3.5rem; }
.shop-category h2 {
  font-size: 1.5rem;
  margin-bottom: 1.4rem;
  color: var(--yellow);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}
.product-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.product-card:hover {
  border-color: var(--yellow);
  transform: translateY(-3px);
}
.product-type {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--yellow);
}
.product-card h3 { font-size: 1.2rem; }
.product-card p {
  color: var(--grey);
  font-size: 0.9rem;
  margin: 0;
  flex-grow: 1;
}
.product-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
}
.product-price-unit {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--grey);
  font-weight: 600;
}

.confirmation-section {
  padding-top: 10rem;
  text-align: center;
}
.confirmation-section .lead {
  max-width: 480px;
  margin: 1rem auto 2rem;
  color: rgba(247,247,245,0.8);
}

/* ==========================================================================
   Admin
   ========================================================================== */
.admin-login-section {
  padding-top: 10rem;
  min-height: 100vh;
}
.admin-login-wrap {
  max-width: 420px;
  text-align: center;
}
.admin-login-brand {
  justify-content: center;
  margin-bottom: 2rem;
}
.admin-login-wrap h1 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}
.admin-login-wrap .contact-form { text-align: left; }
.back-link {
  display: inline-block;
  margin-top: 1.6rem;
  color: var(--grey);
  text-decoration: none;
  font-size: 0.85rem;
}
.back-link:hover { color: var(--yellow); }

.admin-header { position: sticky; }
.admin-header-actions {
  display: flex;
  gap: 0.8rem;
  margin-left: auto;
}
.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.82rem;
}
.btn-danger {
  background: transparent;
  color: #ff8080;
  border-color: rgba(255,77,77,0.4);
}
.btn-danger:hover {
  background: rgba(255,77,77,0.1);
  border-color: #ff4d4d;
}

.admin-main {
  padding: 7.5rem 0 5rem;
}
.admin-section { margin-bottom: 4rem; }

.admin-table {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.4rem;
}
.admin-table-head,
.admin-table-row {
  display: grid;
  grid-template-columns: 1fr 0.8fr 0.8fr 1.4fr 1fr 1fr auto auto;
  gap: 0.6rem;
  align-items: center;
  padding: 0.7rem 1rem;
}
.admin-table-head {
  background: var(--panel);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--yellow);
}
.admin-table-row {
  border-top: 1px solid var(--line);
  background: var(--panel-2);
}
/* Rooster: kop en rijen zijn aparte grids; met vaste breedtes voor de knopkolommen
   komen de kolommen van de kopregel exact boven de velden uit. */
.admin-schedule-table .admin-table-head,
.admin-schedule-table .admin-table-row {
  grid-template-columns: 1fr 0.8fr 0.8fr 1.4fr 1fr 1fr 6rem 8rem;
}
.admin-schedule-table select,
.admin-schedule-table input {
  min-width: 0;
}
.admin-options-card .admin-two-col { gap: 1.6rem; }
.admin-options-card .admin-three-col { grid-template-columns: repeat(3, 1fr); }
.admin-options-card h4 { font-size: 1rem; margin-bottom: 0.4rem; }
.admin-option-list {
  list-style: none;
  margin: 0 0 0.9rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.admin-option-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.45rem 0.7rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.admin-option-add {
  display: flex;
  gap: 0.6rem;
}
.admin-option-add input[type="text"] {
  flex: 1;
  min-width: 0;
}
.product-stripe-status { margin: 0.2rem 0 0.9rem; word-break: break-all; }
.product-stripe-status a { color: var(--yellow); }
.product-stripe-actions { margin-top: 0.8rem; }
.product-migrate {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
}
.product-migrate-notify {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
}
.admin-row-form {
  display: contents;
}
.admin-row-form select,
.admin-row-form input {
  background: var(--black-soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.5rem 0.6rem;
  color: var(--white);
  font-family: inherit;
  font-size: 0.85rem;
  width: 100%;
}
.admin-row-delete { display: contents; }

.admin-add-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
}
.admin-add-card h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  text-transform: none;
}
.admin-row-form--add {
  display: grid;
  grid-template-columns: 1fr 0.8fr 0.8fr 1.4fr 1fr 1fr auto;
  gap: 0.6rem;
}
.admin-row-form--add select,
.admin-row-form--add input {
  background: var(--black-soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.6rem 0.7rem;
  color: var(--white);
  font-family: inherit;
  font-size: 0.85rem;
  width: 100%;
}

.admin-upload-form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  margin-bottom: 2rem;
  max-width: 480px;
}

.admin-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.2rem;
}
.admin-gallery-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  padding-bottom: 0.8rem;
}
.admin-gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.admin-gallery-caption {
  display: block;
  font-size: 0.78rem;
  color: var(--grey);
  padding: 0.6rem 0.8rem 0;
}
.admin-gallery-item form {
  padding: 0.6rem 0.8rem 0;
}

.admin-quicknav {
  display: flex;
  gap: 1.6rem;
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.admin-quicknav a {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--grey);
}
.admin-quicknav a:hover { color: var(--yellow); }

.admin-hint {
  background: var(--panel);
  border: 1px dashed var(--line);
  border-radius: 10px;
  padding: 1rem 1.3rem;
  color: var(--grey);
  font-size: 0.88rem;
  margin-bottom: 1.6rem;
  max-width: 720px;
}

/* ---- Klanten ---- */
.admin-customers-table .admin-table-head,
.admin-customers-table .admin-table-row {
  grid-template-columns: 1.1fr 1.3fr 1.3fr 0.8fr auto;
}
.admin-customer-name {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.admin-customer-notes {
  font-size: 0.78rem;
  color: var(--grey);
}
.admin-customer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.88rem;
  color: rgba(247,247,245,0.8);
}
.admin-customer-actions {
  display: flex;
  gap: 0.5rem;
}
.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.status-active {
  background: rgba(244,208,0,0.15);
  color: var(--yellow);
}
.status-paused {
  background: rgba(154,154,148,0.15);
  color: var(--grey);
}
.admin-customer-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 1.2rem;
  max-width: 720px;
}
.admin-customer-form .form-row:nth-child(5),
.admin-customer-form button {
  grid-column: 1 / -1;
}
.admin-customer-form button { margin-top: 0.4rem; }

/* ==========================================================================
   Shop: bestellen, succes, kaartpagina
   ========================================================================== */
.shop-intro { max-width: 640px; margin-bottom: 2.5rem; }
.shop-intro .lead { color: rgba(247,247,245,0.8); }
.product-card--featured { border-color: rgba(244,208,0,0.45); }
.product-validity {
  font-size: 0.8rem;
  color: var(--grey);
  font-weight: 600;
}
.product-note {
  font-size: 0.78rem;
  color: var(--grey);
  text-align: center;
}
.shop-howto { margin-top: 4rem; }
.shop-howto h2 { font-size: 1.4rem; margin-bottom: 1.4rem; }
.howto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.howto-step {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.4rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--grey);
}
.howto-step strong { color: var(--white); }
.howto-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--yellow);
  line-height: 1;
}

.order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.order-summary h2 { font-size: 1.6rem; margin: 0.4rem 0 0.6rem; }
.order-summary p { color: var(--grey); }
.order-bullets {
  margin: 1.4rem 0 0;
  padding-left: 1.1rem;
  color: var(--grey);
  font-size: 0.88rem;
  line-height: 1.7;
}
.order-form .back-link { display: inline-block; margin-top: 1.2rem; }
.form-row-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1rem;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 0.4rem 0 1.3rem;
  font-size: 0.88rem;
  color: rgba(247,247,245,0.85);
  cursor: pointer;
}
.form-check input {
  margin-top: 0.2rem;
  width: 18px;
  height: 18px;
  accent-color: var(--yellow);
  flex-shrink: 0;
}
.form-check a { color: var(--yellow); }
.footer-copy a { color: var(--grey); }
.footer-copy a:hover { color: var(--yellow); }

.legal-text { max-width: 760px; }
.legal-text h2 { font-size: 1.2rem; margin: 2rem 0 0.6rem; }
.legal-text p, .legal-text li { color: rgba(247,247,245,0.82); font-size: 0.95rem; line-height: 1.7; }
.legal-text ul { padding-left: 1.2rem; }
.legal-text .lead { color: var(--white); }
.legal-updated { margin-top: 2.5rem; font-size: 0.8rem; color: var(--grey); }
.member-meta { display: flex; gap: 1rem; flex-wrap: wrap; font-size: 0.85rem; color: var(--grey); margin-top: 0.3rem; }

.admin-copy-field {
  width: 100%;
  margin-top: 0.5rem;
  background: var(--black-soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.5rem 0.7rem;
  color: var(--white);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.8rem;
}

.product-admin-list { display: flex; flex-direction: column; gap: 1.2rem; }
.product-admin-head { display: flex; align-items: baseline; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.product-admin-head h3 { margin: 0; text-transform: none; font-size: 1.1rem; }
.product-admin-head code { color: var(--grey); font-size: 0.78rem; }
.admin-hint code { color: var(--yellow); }
.pass-card-stats a { color: var(--grey); }
.pass-card-stats a:hover { color: var(--yellow); }

/* ---- Ledenaccount ---- */
.account-section { padding-top: 9.5rem; }
.account-narrow { max-width: 460px; }
.account-narrow h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.account-narrow .lead { color: rgba(247,247,245,0.8); margin: 0.8rem 0 1.6rem; }
.account-narrow .contact-form { text-align: left; }
.form-links { display: flex; flex-direction: column; gap: 0.4rem; margin: 1.2rem 0 0; font-size: 0.85rem; color: var(--grey); text-align: center; }
.form-links a { color: var(--yellow); }
.account-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 1rem; flex-wrap: wrap; }
.account-head h1 { font-size: clamp(2rem, 5vw, 3rem); }
.account-activate-box {
  max-width: 720px;
  margin: 2rem auto 0;
  padding: 1.6rem;
  background: var(--panel);
  border: 1px solid var(--yellow);
  border-radius: var(--radius);
  text-align: left;
}
.account-activate-box h2 { font-size: 1.3rem; margin-bottom: 0.4rem; }
.account-activate-box p { color: var(--grey); margin: 0 0 1rem; font-size: 0.95rem; }
.account-activate-box .contact-form { padding: 0; border: 0; background: transparent; }

.qr-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 720px;
  margin: 2rem auto 0;
  padding: 1.6rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: left;
}
.qr-image {
  width: 280px;
  height: 280px;
  border-radius: 12px;
  background: #fff;
  padding: 10px;
}
.qr-image--small { width: 200px; height: 200px; }
.qr-card-info { display: flex; flex-direction: column; gap: 0.4rem; }
.qr-card-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
}
.qr-card-big {
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--white);
}
.qr-card-big small {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--grey);
  font-weight: 600;
}
.qr-card-meta { color: rgba(247,247,245,0.85); font-weight: 600; }
.qr-card-link {
  font-size: 0.8rem;
  color: var(--grey);
  word-break: break-all;
}
.qr-card-hint { margin: 0.6rem 0 0; font-size: 0.85rem; color: var(--grey); }
.pass-section { padding-top: 9.5rem; }
.pass-section h1 { font-size: clamp(2rem, 5vw, 3rem); }
.pass-history-title { font-size: 1.3rem; margin: 3rem 0 1rem; }
.status-badge.status-expired,
.status-badge.status-depleted,
.status-badge.status-cancelled {
  background: rgba(255,77,77,0.14);
  color: #ff8080;
}
.status-badge.status-none { background: rgba(154,154,148,0.15); color: var(--grey); }

/* ==========================================================================
   Check-in kiosk
   ========================================================================== */
.kiosk {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem 4.5rem;
  background: radial-gradient(circle at 50% 30%, #1c1c1c 0%, var(--black) 65%);
  text-align: center;
  transition: background 0.3s ease;
}
.kiosk--ok { background: radial-gradient(circle at 50% 30%, #3a3400 0%, #0f0e00 70%); }
.kiosk--warn { background: radial-gradient(circle at 50% 30%, #3a2a00 0%, #120c00 70%); }
.kiosk--error { background: radial-gradient(circle at 50% 30%, #3a0c0c 0%, #120303 70%); }
.kiosk-panel {
  max-width: 420px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.kiosk-panel .contact-form { width: 100%; text-align: left; }
.kiosk-panel code { color: var(--yellow); }
.kiosk-idle { display: flex; flex-direction: column; align-items: center; gap: 1.2rem; max-width: 560px; }
.kiosk-idle h1 { font-size: clamp(2rem, 6vw, 3.6rem); }
.kiosk-idle p { color: var(--grey); margin: 0; font-size: 1.1rem; }
.kiosk-qr-mark {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0.5rem 0;
}
.kiosk-qr-mark span {
  position: absolute;
  width: 34px;
  height: 34px;
  border: 5px solid var(--yellow);
}
.kiosk-qr-mark span:nth-child(1) { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.kiosk-qr-mark span:nth-child(2) { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.kiosk-qr-mark span:nth-child(3) { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.kiosk-qr-mark span:nth-child(4) { bottom: 0; right: 0; border-left: 0; border-top: 0; }
.kiosk-qr-mark::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 50%;
  height: 3px;
  background: var(--yellow);
  box-shadow: 0 0 18px var(--yellow);
  animation: kioskScan 2.2s ease-in-out infinite;
}
@keyframes kioskScan {
  0%, 100% { transform: translateY(-48px); opacity: 0.4; }
  50% { transform: translateY(48px); opacity: 1; }
}
.kiosk-actions { display: flex; gap: 0.8rem; }
.kiosk-camera {
  width: min(92vw, 520px);
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--yellow);
  background: #000;
}
.kiosk-camera video { width: 100%; height: 100%; object-fit: cover; }
.kiosk-manual {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.78rem;
  color: var(--grey);
  margin-top: 0.5rem;
}
.kiosk-manual input {
  width: min(92vw, 360px);
  background: var(--black-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.6rem 0.9rem;
  color: var(--white);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.9rem;
  text-align: center;
}
.kiosk-manual input:focus { outline: none; border-color: var(--yellow); }

.kiosk-result {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  max-width: 720px;
  width: 100%;
  animation: kioskPop 0.25s ease;
}
@keyframes kioskPop {
  from { transform: scale(0.94); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.kiosk-result-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  background: var(--yellow);
  color: var(--black);
}
.kiosk--warn .kiosk-result-icon { background: #ffb020; }
.kiosk--error .kiosk-result-icon { background: #ff4d4d; color: var(--white); }
.kiosk-result h2 { font-size: clamp(2.2rem, 7vw, 4.2rem); }
.kiosk-result-message { font-size: 1.25rem; color: rgba(247,247,245,0.9); margin: 0; }
.kiosk-result-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: 100%;
  margin-top: 1rem;
}
.kiosk-stat {
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.kiosk-stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
  font-weight: 700;
}
.kiosk-stat-value { font-weight: 700; font-size: 1.05rem; }
.kiosk-stat-value--big { font-family: var(--font-display); font-size: 3rem; line-height: 1; color: var(--yellow); }
.kiosk-progress {
  width: 100%;
  max-width: 320px;
  height: 4px;
  background: rgba(255,255,255,0.12);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 1.2rem;
}
.kiosk-progress span { display: block; height: 100%; width: 100%; background: var(--yellow); }
.kiosk-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 0.8rem 1.5rem;
  font-size: 0.78rem;
  color: var(--grey);
  background: rgba(10,10,10,0.7);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.kiosk-status { margin-left: auto; }
.kiosk-footer-form { margin: 0; }
.kiosk-footer-link {
  background: none;
  border: none;
  padding: 0;
  color: var(--grey);
  font: inherit;
  cursor: pointer;
  text-decoration: none;
}
.kiosk-footer-link:hover { color: var(--yellow); }

/* ==========================================================================
   Admin: leden & kaarten, QR-print
   ========================================================================== */
.admin-nav { display: flex; gap: 1.4rem; margin-left: 2rem; }
.admin-nav a {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--grey);
}
.admin-nav a:hover, .admin-nav a.is-active { color: var(--yellow); }
.admin-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 200px));
  gap: 1rem;
  margin-bottom: 1.6rem;
}
.admin-stat {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  display: flex;
  flex-direction: column;
}
.admin-stat-num { font-family: var(--font-display); font-size: 2rem; color: var(--yellow); line-height: 1; }
.admin-stat-label { font-size: 0.75rem; color: var(--grey); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; margin-top: 0.3rem; }
.admin-toolbar { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.admin-search {
  flex: 1;
  max-width: 380px;
  background: var(--black-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.65rem 0.9rem;
  color: var(--white);
  font-family: inherit;
  font-size: 0.9rem;
}
.admin-search:focus { outline: none; border-color: var(--yellow); }
.admin-toolbar-count { font-size: 0.82rem; color: var(--grey); }
.admin-members-table .admin-table-head,
.admin-members-table .admin-table-row {
  grid-template-columns: 1.1fr 1.4fr 1fr 0.7fr 0.9fr 0.8fr 1.1fr auto;
}
.admin-cell-muted { font-size: 0.82rem; color: var(--grey); word-break: break-word; }
.admin-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
.admin-card-hint { font-size: 0.85rem; color: var(--grey); margin: -0.4rem 0 1rem; }
.admin-customer-form .form-row--full { grid-column: 1 / -1; }
.admin-customer-form select {
  background: var(--black-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.75rem 0.9rem;
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
}
.admin-checkin-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.admin-checkin-list li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
  flex-wrap: wrap;
}
.admin-checkin-list li .inline-form { margin-left: auto; }
.admin-checkin-time { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 0.8rem; color: var(--grey); }
.admin-checkin-name a { color: var(--white); text-decoration: none; font-weight: 600; }
.admin-checkin-name a:hover { color: var(--yellow); }

.member-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin: 1rem 0 2rem;
  flex-wrap: wrap;
}
.member-header h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
.member-header-actions { display: flex; gap: 0.6rem; align-items: center; }
.member-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.4rem;
  margin-bottom: 3rem;
}
.member-qr { display: flex; flex-direction: column; align-items: center; gap: 0.8rem; text-align: center; }
.pass-cards { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.6rem; }
.pass-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem 1.5rem;
}
.pass-card--active { border-color: var(--yellow); }
.pass-card-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.pass-card-head strong { display: block; font-size: 1.05rem; }
.pass-card-stats { display: flex; gap: 2.5rem; margin: 1rem 0; flex-wrap: wrap; }
.pass-card-stats > div { display: flex; flex-direction: column; gap: 0.2rem; }
.pass-card-num { font-family: var(--font-display); font-size: 1.5rem; line-height: 1; }
.pass-card-note { font-size: 0.85rem; color: var(--grey); margin: 0 0 1rem; }
.pass-card-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; align-items: center; }
.inline-form { display: inline-flex; margin: 0; gap: 0.4rem; align-items: center; }
.inline-form--field input {
  width: 130px;
  background: var(--black-soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.45rem 0.6rem;
  color: var(--white);
  font-family: inherit;
  font-size: 0.85rem;
}
.admin-danger-zone { border-top: 1px solid var(--line); padding-top: 1.5rem; }

.qr-print {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
  background: #fff;
  color: #0a0a0a;
}
.qr-print-card { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 0.6rem; }
.qr-print-card .brand-text { color: #0a0a0a; }
.qr-print-card h1 { font-size: 2.4rem; }
.qr-print-card small { color: #666; word-break: break-all; }
.qr-print-actions { display: flex; gap: 0.8rem; }
@media print {
  .qr-print-actions, .noise-overlay { display: none !important; }
  .qr-print { min-height: auto; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  /* Bestellen: samenvatting boven het formulier in plaats van twee smalle kolommen. */
  .order-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-stage {
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
  }
  .about-ghost-text { display: none; }
  .about-photo {
    width: 100%;
    aspect-ratio: 16 / 9;
    clip-path: none;
  }
  .about-card {
    width: auto;
    margin-left: 0;
    margin-bottom: 0;
    margin-top: -2rem;
    margin-right: 1.5rem;
  }
  .about-values-row { grid-template-columns: repeat(3, 1fr); margin-top: 3rem; }

  .lessons-grid,
  .trainers-grid,
  .news-grid,
  .teaser-grid,
  .gallery-grid,
  .mosaic-grid,
  .trainer-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sponsor-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .admin-table-head { display: none; }
  .admin-table-row,
  .admin-schedule-table .admin-table-row,
  .admin-row-form,
  .admin-row-form--add {
    grid-template-columns: 1fr 1fr;
  }
  .admin-options-card .admin-two-col { grid-template-columns: 1fr; }
  .admin-row-delete { margin-top: 0.6rem; }
}

@media (max-width: 760px) {
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }

  .site-header.nav-open .nav-menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black);
    padding: 1.2rem 1.5rem 1.6rem;
    gap: 1.1rem;
    border-bottom: 1px solid var(--line);
  }

  .site-header.nav-open .main-nav {
    flex-direction: column;
    gap: 1.1rem;
  }

  .site-header.nav-open .nav-cta {
    justify-content: center;
  }

  .lessons-grid,
  .trainers-grid,
  .news-grid,
  .teaser-grid,
  .gallery-grid,
  .mosaic-grid,
  .trainer-preview-grid,
  .about-values-row,
  .admin-table-row,
  .admin-schedule-table .admin-table-row,
  .admin-row-form,
  .admin-row-form--add {
    grid-template-columns: 1fr;
  }
  .admin-option-add { flex-direction: column; }
  /* Formulieren op de telefoon: één veld per rij en wat minder binnenruimte. */
  .form-row-group { grid-template-columns: 1fr; }
  .contact-form { padding: 1.3rem; }
  .sponsor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-row { gap: 1.6rem; }
  .about-card { margin-right: 0; padding: 1.8rem; }

  .admin-header-actions { gap: 0.5rem; }
  .admin-main { padding-top: 6.5rem; }
}

/* ---- Gallerij: categorieën ---- */
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
}
.gallery-filter-btn {
  font: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.gallery-filter-btn:hover { border-color: var(--yellow); }
.gallery-filter-btn.is-active {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #111;
}
.gallery-item.is-hidden { display: none; }
.gallery-tag {
  display: inline-block;
  margin-left: 0.4rem;
  padding: 0.1rem 0.5rem;
  border-radius: 999px;
  background: rgba(245, 196, 0, 0.16);
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: middle;
}
.admin-gallery-edit {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 0.6rem 0;
}
.admin-gallery-edit select,
.admin-gallery-edit input { min-width: 0; width: 100%; }
