*, *::before, *::after { box-sizing: border-box; }

:root {
  --black: #000000;
  --ink: #111111;
  --panel: #141414;
  --line: #2a2a2a;
  --white: #ffffff;
  --paper: #f7f7f5;
  --copy: #f3f3f3;
  --muted: #b8b8b8;
  --yellow: #fdc500;
  --yellow-ink: #111111;
  --yellow-hover: #ffd54a;
  --max: 1080px;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, system-ui, Segoe UI, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.45;
  color: var(--ink);
  background: var(--white);
}

a { color: inherit; }
a:hover { color: inherit; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 0.75rem;
  top: -3rem;
  background: var(--yellow);
  color: var(--yellow-ink);
  padding: 0.4rem 0.7rem;
  font-weight: 700;
  text-decoration: none;
  z-index: 30;
}
.skip:focus { top: 0.75rem; }

.wrap {
  width: min(var(--max), calc(100% - 1.75rem));
  margin-inline: auto;
}

/* --- Light mast: logo + headline, not on the photos --- */
.mast {
  background: var(--white);
  color: var(--ink);
  padding: 1rem 0 0.75rem;
}

.mast-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}

.logo {
  display: block;
  width: min(176px, 52vw);
  height: auto;
}

.mast h1 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.28;
  font-weight: 700;
  letter-spacing: -0.025em;
  max-width: 22ch;
}

/* --- Slider: images only, full-bleed, fixed box --- */
.slider {
  position: relative;
  width: 100%;
  background: var(--white);
}

.slider-viewport {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--white);
}

.slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pos-golf { object-position: 80% 50%; }
.pos-mech { object-position: 20% 70%; }
.pos-booth { object-position: 60% 50%; }

.dots {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 44px;
  background: var(--white);
  border-top: 1px solid #ececec;
}

.dots button {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.dots button::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 9px;
  margin: -4.5px 0 0 -4.5px;
  border-radius: 50%;
  background: #b0b0b0;
}

.dots button[aria-current="true"]::after {
  background: var(--yellow);
  box-shadow: 0 0 0 2px #111;
}

/* --- Yellow door: fixed under slider, not per-slide --- */
.door {
  background: var(--yellow);
  color: var(--yellow-ink);
}

.door-inner {
  width: min(var(--max), calc(100% - 1.5rem));
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.5rem 0;
  gap: 0;
}

.door a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  letter-spacing: 0.01em;
}

.door a:hover { color: #000; }

.door-addr { font-weight: 650; font-size: 0.95rem; }
.door-mob { font-weight: 800; }

/* --- Dark facts --- */
.facts {
  background: var(--black);
  color: var(--copy);
  padding: 1.15rem 0 2.6rem;
}

.block + .block { margin-top: 2rem; }

h2 {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
}

.cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.cards li {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 0.55rem 0.65rem;
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.3;
}

.rdw {
  margin: 1.15rem 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.hours {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
}

.form {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 1.15rem;
  display: grid;
  gap: 0.8rem;
}

.form label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #0a0a0a;
  color: var(--copy);
  padding: 0.65rem 0.7rem;
  font: inherit;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.75rem;
  padding: 0.55rem 1rem;
  background: var(--yellow);
  color: var(--yellow-ink);
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  border: 2px solid var(--yellow);
  cursor: pointer;
}
.btn:hover { background: var(--yellow-hover); }

.kvk {
  margin: 1.1rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (min-width: 720px) {
  body { font-size: 1.05rem; }
  .wrap { width: min(var(--max), calc(100% - 2.5rem)); }

  .mast { padding: 1.7rem 0 1.35rem; }
  .mast-row {
    flex-direction: row;
    align-items: center;
    gap: 1.8rem;
  }
  .logo { width: 214px; }
  .mast h1 { font-size: 1.7rem; max-width: 18ch; }

  .slider-viewport { height: 360px; }

  .dots { height: 36px; }

  .door-inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem 1.35rem;
    padding: 1rem 0;
  }
  .door a { min-height: 2.2rem; font-size: 1.02rem; }

  .facts { padding: 2.6rem 0 3.4rem; }
  .block + .block { margin-top: 2.4rem; }
  .cards { grid-template-columns: repeat(4, 1fr); gap: 0.7rem; }
  .cards li { padding: 0.9rem 0.95rem; font-size: 0.98rem; }
  .form { padding: 1.35rem; max-width: 32rem; }
}

@media (min-width: 1100px) {
  .slider-viewport { height: 440px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .slide { transition: none; }
}
