/* ============================================================
   Baantjes tegen kinderarmoede — extra styling
   builds on style.css; only adds zwem-specific pieces
   ============================================================ */

:root {
  --pool-1: #6CADD3;     /* light pool blue */
  --pool-2: #3E7FA3;     /* mid pool blue   */
  --pool-3: #1E4F73;     /* deep pool blue  */
  --water:  #C9E6F2;     /* shallow tint    */
  --water-soft: #E6F2F8;
}

/* ====== HERO swim variant ====== */
.hero-swim {
  background:
    radial-gradient(ellipse at 80% 10%, rgba(108, 173, 211, 0.30), transparent 60%),
    radial-gradient(ellipse at 10% 90%, rgba(126, 34, 206, 0.14), transparent 55%),
    var(--cream);
}

.hero-swim h1 .italic { color: var(--pool-2); }
.hero-swim h1 .underline::after { background: var(--pool-1); }

.hero-swim .hero-eyebrow { color: var(--pool-3); background: var(--water-soft); }
.hero-swim .hero-eyebrow .pulse { background: var(--pool-2); }

/* lane illustration */
.lane-art {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 480px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background:
    linear-gradient(180deg, var(--pool-1) 0%, var(--pool-2) 60%, var(--pool-3) 100%);
}
.lane-art .lanes {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.lane-art .lane {
  border-right: 2px dashed rgba(255,255,255,0.35);
  position: relative;
}
.lane-art .lane:last-child { border-right: none; }
.lane-art .lane::before, .lane-art .lane::after {
  content: ""; position: absolute; left: 4px; right: 4px; height: 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.55);
}
.lane-art .lane::before { top: 14%; }
.lane-art .lane::after  { bottom: 14%; }

.lane-art .ripple {
  position: absolute; left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,0.18);
}
.lane-art .ripple.r1 { top: 30%; }
.lane-art .ripple.r2 { top: 50%; }
.lane-art .ripple.r3 { top: 70%; }

.lane-art .label {
  position: absolute; left: -16px; bottom: 28px;
  background: var(--yellow);
  border-radius: 999px;
  padding: 10px 18px;
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow);
  transform: rotate(-3deg);
  display: inline-flex; align-items: center; gap: 8px;
}
.lane-art .label .sw {
  width: 6px; height: 6px; border-radius: 50%; background: var(--ink);
}
.lane-art .price-badge {
  position: absolute; right: -20px; top: 32px;
  background: var(--white);
  border-radius: 50%;
  width: 116px; height: 116px;
  display: grid; place-items: center;
  text-align: center;
  box-shadow: var(--shadow);
  transform: rotate(8deg);
  font-family: var(--font-display);
  animation: bob 4s ease-in-out infinite;
}
.lane-art .price-badge .e { font-size: 30px; font-weight: 600; line-height: 1; color: var(--pool-3); }
.lane-art .price-badge .l { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); margin-top: 4px; }

/* ====== Stappen / hoe werkt het ====== */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 760px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }

.step-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--pool-2); }
.step-card .num {
  font-family: var(--font-display);
  font-size: 64px; font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--pool-1);
  margin-bottom: 18px;
}
.step-card h3 {
  font-size: 24px; font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.step-card p { color: var(--ink-mute); margin: 0; font-size: 16px; }
.step-card .pill {
  display: inline-block;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--water-soft); color: var(--pool-3);
  padding: 4px 10px; border-radius: 999px;
  margin-top: 14px;
}

/* ====== Pool grid (calendar) ====== */
.pool-section {
  background: var(--cream);
  padding: 100px 0;
}

.pool-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: end;
  margin-bottom: 36px;
}
@media (min-width: 880px) { .pool-head { grid-template-columns: 1fr auto; } }

.legend {
  display: flex; gap: 18px;
  font-family: var(--font-mono); font-size: 12px;
  color: var(--ink-mute);
  flex-wrap: wrap;
}
.legend-chip {
  display: inline-flex; align-items: center; gap: 8px;
}
.legend-sw {
  width: 14px; height: 14px; border-radius: 4px;
  border: 1px solid var(--line);
}
.legend-sw.free { background: var(--white); }
.legend-sw.some { background: var(--water-soft); border-color: var(--pool-1); }
.legend-sw.almost { background: var(--pool-1); border-color: var(--pool-2); }
.legend-sw.full { background: var(--pool-3); border-color: var(--pool-3); }
.legend-sw.you  { background: var(--yellow); border-color: var(--ink); }

.pool-grid-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow);
  overflow-x: auto;
}
@media (max-width: 720px) { .pool-grid-card { padding: 20px 16px; } }

.pool-grid {
  display: grid;
  grid-template-columns: 88px repeat(8, minmax(96px, 1fr));
  gap: 6px;
  min-width: 880px;
}
.pool-grid .corner {}
.pool-grid .day-head {
  text-align: center;
  padding: 12px 6px 14px;
  border-radius: var(--radius);
  background: var(--cream);
  border: 1px dashed var(--line);
}
.pool-grid .day-head .dow {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-mute);
}
.pool-grid .day-head .num {
  font-family: var(--font-display); font-size: 26px; font-weight: 600;
  color: var(--ink); letter-spacing: -0.02em; line-height: 1;
  margin-top: 2px;
}
.pool-grid .day-head .mo {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--ink-mute); letter-spacing: 0.14em; text-transform: uppercase;
  margin-top: 2px;
}

.pool-grid .time-head {
  display: flex; align-items: center; justify-content: flex-end;
  padding: 0 10px;
  font-family: var(--font-mono); font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
  border-right: 1px dashed var(--line);
}

.slot {
  position: relative;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 8px 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: all .15s ease;
  min-height: 76px;
}
.slot:hover:not(.full):not(.disabled) {
  transform: translateY(-2px);
  border-color: var(--pool-2);
  box-shadow: 0 6px 16px rgba(62, 127, 163, 0.15);
}
.slot.fill-some   { background: var(--water-soft); border-color: rgba(108, 173, 211, 0.5); }
.slot.fill-mid    { background: var(--water);      border-color: var(--pool-1); }
.slot.fill-almost { background: var(--pool-1);     border-color: var(--pool-2); color: white; }
.slot.full        { background: var(--pool-3);     border-color: var(--pool-3); color: rgba(255,255,255,0.85); cursor: not-allowed; }
.slot.full .lanes-strip i { background: rgba(255,255,255,0.25); }
.slot.full .lanes-strip i.taken { background: rgba(255,255,255,0.85); }
.slot.disabled    { background: repeating-linear-gradient(45deg, var(--cream), var(--cream) 6px, var(--white) 6px, var(--white) 12px); border-color: var(--line); cursor: not-allowed; color: var(--ink-mute); }

.slot .top {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.08em; text-transform: uppercase;
  opacity: 0.85;
}
.slot .free-num {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600; line-height: 1;
  letter-spacing: -0.02em;
}
.slot .free-of {
  font-family: var(--font-mono); font-size: 10px;
  opacity: 0.7;
}
.slot .lanes-strip {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 2px;
  margin-top: 4px;
}
.slot .lanes-strip i {
  display: block; height: 5px; border-radius: 1px;
  background: rgba(62, 127, 163, 0.18);
}
.slot .lanes-strip i.taken { background: var(--pool-3); }
.slot.fill-almost .lanes-strip i { background: rgba(255,255,255,0.35); }
.slot.fill-almost .lanes-strip i.taken { background: white; }

.slot.selected {
  background: var(--yellow) !important;
  border-color: var(--ink) !important;
  color: var(--ink) !important;
  box-shadow: 0 0 0 3px rgba(255, 226, 54, 0.35), 0 8px 18px rgba(26, 22, 38, 0.18);
}
.slot.selected .lanes-strip i { background: rgba(26, 22, 38, 0.18); }
.slot.selected .lanes-strip i.taken { background: var(--ink); }

.slot.selected::after {
  content: "✓";
  position: absolute; top: -8px; right: -8px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--ink); color: var(--yellow);
  font-family: var(--font-mono); font-size: 13px; font-weight: 700;
  display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
}

/* selection summary bar */
.selection-bar {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  margin-top: 22px;
}
.selection-bar .left {
  display: flex; align-items: center; gap: 14px;
  flex: 1; min-width: 0;
}
.selection-bar .badge-cnt {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 14px; font-weight: 700;
  flex-shrink: 0;
}
.selection-bar .titles {
  display: flex; flex-direction: column; gap: 2px;
}
.selection-bar .titles .t {
  font-family: var(--font-display); font-size: 18px; font-weight: 600;
  letter-spacing: -0.01em;
}
.selection-bar .titles .s {
  font-family: var(--font-mono); font-size: 12px;
  color: rgba(250, 246, 232, 0.55);
  letter-spacing: 0.06em;
}
.selection-bar .total {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 600;
  color: var(--yellow);
  letter-spacing: -0.02em;
}
.selection-bar button {
  background: var(--yellow); color: var(--ink);
  border: none; padding: 12px 22px;
  border-radius: 999px;
  font-family: inherit; font-size: 15px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform .15s ease, background .15s ease;
}
.selection-bar button:hover:not(:disabled) { background: white; transform: translateY(-1px); }
.selection-bar button:disabled { opacity: 0.45; cursor: not-allowed; }

/* ====== Boekform ====== */
.boek-section {
  background: var(--pool-3);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.boek-section::before {
  content: "";
  position: absolute;
  right: -120px; top: -120px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: var(--pool-2);
  opacity: 0.45;
}
.boek-section::after {
  content: "";
  position: absolute;
  left: -100px; bottom: -100px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: 0.12;
}

.boek-section .section-title { color: white; }
.boek-section .section-title .italic { color: var(--yellow); }
.boek-section .section-eyebrow { color: var(--water); }
.boek-section .section-eyebrow .num { background: var(--yellow); color: var(--ink); }
.boek-section .section-lead { color: rgba(255,255,255,0.7); }

.boek-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  position: relative;
}
@media (min-width: 1000px) {
  .boek-grid { grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: start; }
}

/* selected slots summary card */
.sum-card {
  background: var(--ink);
  border-radius: var(--radius-xl);
  padding: 32px;
  color: var(--cream);
  position: sticky; top: 88px;
}
.sum-card h4 {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(250, 246, 232, 0.55);
  margin-bottom: 16px; font-weight: 500;
}
.sum-card .empty {
  color: rgba(250, 246, 232, 0.55);
  font-family: var(--font-mono); font-size: 13px;
  padding: 24px 0;
  text-align: center;
  border: 1px dashed rgba(250, 246, 232, 0.18);
  border-radius: var(--radius);
}
.sum-list {
  display: grid; gap: 8px;
  margin-bottom: 18px;
}
.sum-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  background: rgba(250, 246, 232, 0.05);
  border-radius: var(--radius);
}
.sum-row .when {
  display: flex; flex-direction: column; gap: 2px;
  min-width: 0;
}
.sum-row .when .day {
  font-family: var(--font-display); font-size: 16px; font-weight: 600;
  letter-spacing: -0.01em;
  color: white;
}
.sum-row .when .time {
  font-family: var(--font-mono); font-size: 12px;
  color: rgba(250, 246, 232, 0.55);
  letter-spacing: 0.04em;
}
.sum-row .price {
  font-family: var(--font-display); font-size: 16px; font-weight: 600;
  color: var(--yellow);
}
.sum-row .rm {
  background: transparent; border: 1px solid rgba(250,246,232,0.15);
  width: 28px; height: 28px; border-radius: 50%;
  color: rgba(250,246,232,0.55);
  display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 14px;
  transition: all .15s ease;
}
.sum-row .rm:hover { background: var(--error); border-color: var(--error); color: white; }

.sum-total {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed rgba(250, 246, 232, 0.15);
  display: flex; align-items: baseline; justify-content: space-between;
}
.sum-total .l {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(250, 246, 232, 0.55);
}
.sum-total .v {
  font-family: var(--font-display); font-size: 44px; font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--yellow);
  line-height: 1;
}
.sum-foot {
  margin-top: 14px;
  font-family: var(--font-mono); font-size: 11px;
  color: rgba(250, 246, 232, 0.45);
  display: flex; align-items: center; gap: 8px;
}
.sum-foot .ok { color: var(--success); }

/* mollie button */
.mollie-btn {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  width: 100%;
  background: var(--yellow); color: var(--ink);
  border: none;
  padding: 18px 24px;
  border-radius: 999px;
  font-family: inherit; font-size: 17px; font-weight: 600;
  margin-top: 18px;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease;
}
.mollie-btn:hover:not(:disabled) { background: white; transform: translateY(-2px); }
.mollie-btn:disabled { opacity: 0.45; cursor: not-allowed; }
.mollie-logo {
  background: var(--ink); color: var(--yellow);
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  padding: 4px 8px; border-radius: 4px;
  letter-spacing: 0.04em;
}

/* boek form fields on dark bg */
.boek-form-card {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 720px) { .boek-form-card { padding: 24px; } }

.boek-form-card .form-step h3 { font-size: 20px; }

.lane-pick {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
@media (max-width: 600px) { .lane-pick { grid-template-columns: 1fr; } }
.lane-pick label {
  position: relative;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  cursor: pointer;
  display: flex; align-items: center; gap: 10px;
  transition: all .15s ease;
}
.lane-pick label:hover { border-color: var(--pool-2); }
.lane-pick input { position: absolute; opacity: 0; }
.lane-pick label:has(input:checked) {
  border-color: var(--pool-2);
  background: var(--water-soft);
}
.lane-pick .lp-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--water-soft);
  display: grid; place-items: center;
  font-size: 18px;
  flex-shrink: 0;
}
.lane-pick label:has(input:checked) .lp-icon { background: var(--pool-1); color: white; }
.lane-pick .lp-name {
  font-family: var(--font-display); font-size: 15px; font-weight: 600;
  letter-spacing: -0.01em; line-height: 1.1;
}
.lane-pick .lp-sub {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--ink-mute); margin-top: 2px;
}

/* facts strip under hero */
.facts {
  background: var(--ink);
  color: var(--cream);
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.facts-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  align-items: center;
}
.fact .v {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--yellow);
  line-height: 1;
}
.fact .l {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(250, 246, 232, 0.55);
  margin-top: 6px;
}

/* venue block */
.venue {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: stretch;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px;
}
@media (min-width: 880px) {
  .venue { grid-template-columns: 1fr 1fr; padding: 48px; gap: 48px; }
  .venue-photo { aspect-ratio: auto; }
  .venue-photo img { position: absolute; inset: 0; }
}
.venue h3 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 14px;
}
.venue h3 .italic { color: var(--pool-2); font-style: italic; font-weight: 400; }
.venue p { color: var(--ink-mute); margin: 0 0 14px; }
.venue ul {
  list-style: none; padding: 0; margin: 18px 0 0;
  display: grid; gap: 10px;
}
.venue ul li {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 13px;
  color: var(--ink);
}
.venue ul li .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--pool-2);
}
.venue-photo {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--pool-1);
}
.venue-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.venue-photo .stamp {
  position: absolute; right: 24px; bottom: 24px;
  background: var(--yellow); color: var(--ink);
  border-radius: 999px;
  padding: 10px 18px;
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.04em;
  transform: rotate(-3deg);
  box-shadow: var(--shadow);
}

/* topbar swim variant */
.topbar-swim .brand-dot { background: var(--pool-2); }
.topbar-swim .topbar-cta:hover { background: var(--pool-2); }

/* ====== MATHIEU lane highlight in hero ====== */
.lane-art .lane.lane-mathieu {
  background: linear-gradient(180deg, rgba(255, 226, 54, 0.42), rgba(255, 226, 54, 0.18));
  position: relative;
}
.lane-art .lane.lane-mathieu::before,
.lane-art .lane.lane-mathieu::after { background: var(--yellow); }

.lane-tag-mathieu {
  position: absolute;
  left: 22%; top: 18px;
  background: var(--ink); color: var(--yellow);
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  display: inline-flex; align-items: center; gap: 6px;
  transform: rotate(-2deg);
  white-space: nowrap;
  z-index: 2;
}
.lane-tag-mathieu .ar { color: var(--yellow); }

/* ====== MATHIEU dark block ====== */
.mathieu-block {
  background: var(--ink);
  border-radius: var(--radius-xl);
  padding: 64px;
  position: relative;
  overflow: hidden;
}
.mathieu-block::before {
  content: "";
  position: absolute;
  right: -120px; top: -120px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: var(--pool-2); opacity: 0.32;
}
.mathieu-block::after {
  content: "";
  position: absolute;
  left: -80px; bottom: -80px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: var(--yellow); opacity: 0.10;
}
.mathieu-inner { position: relative; max-width: 820px; }
.mathieu-block .section-eyebrow { color: rgba(255,255,255,0.6); }
.mathieu-block .section-eyebrow .num { background: var(--yellow); color: var(--ink); }

.mathieu-lead {
  color: rgba(250, 246, 232, 0.78);
  font-size: 18px;
  max-width: 720px;
  margin: 0 0 32px;
}

.mathieu-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-top: 1px dashed rgba(250,246,232,0.18);
  border-bottom: 1px dashed rgba(250,246,232,0.18);
  margin-bottom: 32px;
}
.mathieu-stats .v {
  font-family: var(--font-display); font-size: 30px; font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--yellow);
  line-height: 1;
}
.mathieu-stats .l {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(250,246,232,0.5);
  margin-top: 6px;
}

.mathieu-usp {
  background: var(--yellow);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}
.usp-eyebrow {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--purple-deep);
  margin-bottom: 8px;
}
.usp-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px); font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.usp-title .italic { font-style: italic; font-weight: 400; color: var(--purple-deep); }
.usp-sub {
  color: rgba(26,22,38,0.78);
  font-size: 15px;
  max-width: 620px;
}

/* ====== MOBILE TWEAKS ====== */
@media (max-width: 720px) {
  .hero { padding: 56px 0 60px; }
  .hero h1 { font-size: clamp(40px, 12vw, 56px); }
  .hero p.lead { font-size: 17px; }
  .hero-photo-badge,
  .lane-art .price-badge { width: 86px; height: 86px; right: -10px; }
  .lane-art .price-badge .e { font-size: 22px; }
  .lane-art .label { left: -8px; font-size: 11px; padding: 8px 14px; }
  .lane-tag-mathieu { font-size: 10px; padding: 6px 10px; left: 16%; top: 12px; }

  .section { padding: 64px 0; }
  .section-title { font-size: clamp(28px, 8vw, 40px); }

  .facts-inner { grid-template-columns: 1fr 1fr; gap: 18px; }
  .fact .v { font-size: 22px; }

  .mathieu-block { padding: 36px 24px; border-radius: var(--radius-lg); }
  .mathieu-stats { grid-template-columns: 1fr; gap: 14px; }
  .mathieu-stats > div { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
  .mathieu-stats .v { font-size: 24px; }
  .mathieu-stats .l { margin-top: 0; text-align: right; }
  .mathieu-usp { padding: 22px 22px; }

  .step-card { padding: 24px; }
  .step-card .num { font-size: 48px; margin-bottom: 12px; }
  .step-card h3 { font-size: 20px; }

  .pool-section { padding: 64px 0; }
  .pool-grid-card { padding: 16px 12px; }
  .pool-grid {
    grid-template-columns: 56px repeat(8, minmax(64px, 1fr));
    gap: 4px;
    min-width: 620px;
  }
  .pool-grid .day-head { padding: 8px 4px 10px; }
  .pool-grid .day-head .num { font-size: 20px; }
  .pool-grid .day-head .dow,
  .pool-grid .day-head .mo { font-size: 9px; }
  .pool-grid .time-head { font-size: 11px; padding: 0 6px; }
  .slot { min-height: 64px; padding: 8px 6px 6px; }
  .slot .top { font-size: 9px; letter-spacing: 0.04em; }
  .slot .lanes-strip { gap: 1px; }
  .slot .lanes-strip i { height: 4px; }

  .selection-bar { padding: 14px 16px; gap: 12px; }
  .selection-bar .badge-cnt { width: 30px; height: 30px; font-size: 12px; }
  .selection-bar .titles .t { font-size: 15px; }
  .selection-bar .titles .s { font-size: 11px; }
  .selection-bar .total { font-size: 22px; }
  .selection-bar a { width: 100%; }
  .selection-bar button { width: 100%; padding: 12px 18px; font-size: 14px; justify-content: center; }

  .boek-section { padding: 64px 0; }
  .sum-card { padding: 24px; position: static; }
  .sum-total .v { font-size: 36px; }
  .mollie-btn { padding: 16px 18px; font-size: 15px; }

  .venue { padding: 28px 22px; }
  .venue h3 { font-size: 26px; }
  .venue-photo .stamp { right: 16px; bottom: 16px; padding: 8px 14px; font-size: 11px; }

  .topbar-mini { display: none !important; }
  .topbar-inner { padding: 12px 16px; gap: 10px; }
  .brand-mark { font-size: 14px; }
  .brand-mark .brand-dot { width: 28px; height: 28px; font-size: 10px; }
  .topbar-cta { padding: 8px 14px; font-size: 13px; }

  .footer { padding: 56px 0 28px; }
}

@media (max-width: 480px) {
  .pool-grid {
    grid-template-columns: 48px repeat(8, minmax(56px, 1fr));
    min-width: 540px;
  }
  .selection-bar .total { margin-left: auto; }
}

/* horizontal scroll hint on mobile pool grid */
.pool-grid-card {
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.pool-grid-card::-webkit-scrollbar { height: 8px; }
.pool-grid-card::-webkit-scrollbar-thumb { background: var(--line); border-radius: 999px; }
.pool-grid-card::-webkit-scrollbar-track { background: transparent; }

/* ============================================================
   Schedule update: per-day windows, closed slots, Lago logo,
   donate CTA & partners — builds on the blocks above
   ============================================================ */

/* ----- closed (no-swim) slots in the pool grid ----- */
.slot.closed {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  background: repeating-linear-gradient(45deg, var(--cream), var(--cream) 6px, var(--white) 6px, var(--white) 12px);
  border: 1.5px dashed var(--line);
  border-radius: var(--radius);
  cursor: default;
}
.slot.closed .closed-mark {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--ink-mute);
  opacity: 0.45;
}
.legend-sw.closed {
  background: repeating-linear-gradient(45deg, var(--cream), var(--cream) 3px, var(--white) 3px, var(--white) 6px);
  border-color: var(--line);
}
@media (max-width: 720px) {
  .slot.closed { min-height: 64px; }
}

/* ----- Lago Brugge logo lockup ----- */
.hero-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero-lockup .lago-logo {
  height: 40px;
  width: auto;
  display: block;
}
.hero-lockup .hero-event-name {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding-left: 16px;
  border-left: 1px solid var(--line);
}
@media (max-width: 600px) {
  .hero-lockup { gap: 12px; }
  .hero-lockup .lago-logo { height: 32px; }
  .hero-lockup .hero-event-name { padding-left: 0; border-left: none; }
}
/* Lago-logo in de topbar-brandmark (vervangt de oude B50-dot) */
.topbar-swim .brand-mark .brand-lago {
  height: 40px;
  width: auto;
  display: block;
}
@media (max-width: 600px) {
  .topbar-swim .brand-mark .brand-lago { height: 30px; }
}

/* ----- partners strip above the footer ----- */
.partners-section {
  background: var(--white);
  padding: 80px 0;
  border-top: 1px solid var(--line);
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
  margin-top: 32px;
}
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 20px;
  min-height: 96px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all .15s ease;
}
.partner-logo:hover {
  background: var(--white);
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.partner-logo img {
  max-width: 100%;
  max-height: 46px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.65;
  transition: filter .15s ease, opacity .15s ease;
}
.partner-logo:hover img {
  filter: none;
  opacity: 1;
}
@media (max-width: 600px) {
  .partners-section { padding: 56px 0; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .partner-logo { padding: 18px 14px; min-height: 80px; }
}

/* ============================================================
   HUISSTIJL — brand-kleuren (zwart/goud/wit/ocean/forrest) + Jost + hero-foto
   override-laag, geladen na de base-tokens
   ============================================================ */
:root {
  --ink:          #0c0c0c;
  --ink-mute:     #5a5a5a;
  --cream:        #f5f4f1;
  --line:         #d9d8d3;
  --yellow:       #9c8651;   /* GOLD — hoofd-accent */
  --yellow-soft:  #ece5d3;
  --purple:       #9c8651;
  --purple-deep:  #7a6a3f;
  --purple-soft:  rgba(156, 134, 81, 0.13);
  --orange:       #b89a5e;
  --orange-deep:  #9c8651;
  --pool-1:       #899d97;   /* OCEAN */
  --pool-2:       #6e837c;
  --pool-3:       #2A342F;   /* FORREST */
  --water:        #c9d3cf;
  --water-soft:   #e3e8e6;
  --font-display: "Jost", -apple-system, system-ui, sans-serif;
  --font-body:    "Jost", -apple-system, system-ui, sans-serif;
}

.hero-swim {
  background:
    radial-gradient(ellipse at 80% 10%, rgba(137, 157, 151, 0.28), transparent 60%),
    radial-gradient(ellipse at 10% 90%, rgba(156, 134, 81, 0.12), transparent 55%),
    var(--cream);
}

/* hero-lockup compacter */
.hero-lockup { gap: 12px; margin-bottom: 10px; }
.hero-lockup .lago-logo { height: 30px; }
.hero-lockup .hero-event-name { font-size: 11px; letter-spacing: 0.16em; padding-left: 12px; }
.hero-eyebrow { margin-bottom: 14px; }
@media (max-width: 600px) {
  .hero-lockup { gap: 10px; margin-bottom: 8px; }
  .hero-lockup .lago-logo { height: 26px; }
}

/* hero-foto (vervangt de lane-art illustratie) */
.hero-photo {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--pool-1);
  box-shadow: var(--shadow);
}
.hero-photo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 580px;
  object-fit: cover;
  object-position: center 12%;
}
.hero-photo-badge {
  position: absolute;
  right: 18px; bottom: 18px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--white);
  display: grid; place-items: center; text-align: center;
  box-shadow: var(--shadow);
}
.hero-photo-badge .e {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 600; line-height: 1; color: var(--ink);
}
.hero-photo-badge .l {
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-mute); margin-top: 4px;
}
@media (max-width: 880px) {
  .hero-photo img { max-height: 440px; }
  .hero-photo-badge { width: 78px; height: 78px; right: 12px; bottom: 12px; }
  .hero-photo-badge .e { font-size: 20px; }
}

/* Lago-logo + link in de venue-sectie */
.venue-lago { display: inline-block; margin: 4px 0 18px; }
.venue-lago img { height: 34px; width: auto; display: block; transition: opacity .15s ease; }
.venue-lago:hover img { opacity: 0.7; }

/* ----- sfeerstrook: foto's uit het 50m-bad ----- */
.sfeer-section .section-title { margin-bottom: 28px; }
.sfeer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.sfeer-item {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--pool-1);
}
.sfeer-item img {
  display: block;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform .4s ease;
}
.sfeer-item:hover img { transform: scale(1.04); }
@media (max-width: 760px) {
  .sfeer-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}
