:root {
  --zwart: #0A0A0A;
  --paneel: #131211;
  --paneel-op: #191716;
  --rand: #262322;
  --goud: #D8A84B;
  --goud-licht: #F0D28A;
  --wit: #F6F3EE;
  --grijs: #9C958A;
  --groen: #25D366;
  --breed: 1180px;
  --soepel: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--zwart);
  color: var(--wit);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; cursor: pointer; }

h1, h2, h3 {
  font-family: Oswald, Impact, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin: 0;
}

h1 { font-size: clamp(2.3rem, 8vw, 4.2rem); }
h2 { font-size: clamp(1.7rem, 5vw, 2.6rem); }
h3 { font-size: 1.15rem; letter-spacing: 0.05em; }

p { margin: 0 0 1rem; }

/* ---------- animaties ---------- */

.op {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--soepel), transform 0.7s var(--soepel);
}

.op.zichtbaar { opacity: 1; transform: none; }

.op:nth-child(2) { transition-delay: 0.08s; }
.op:nth-child(3) { transition-delay: 0.16s; }
.op:nth-child(4) { transition-delay: 0.24s; }

@keyframes opkomen {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}

/* ---------- kop en menu ---------- */

.kop {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 1rem;
  background: rgba(10, 10, 10, 0.55);
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, padding 0.35s ease;
}

.kop.gescrold {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--rand);
}

.merk {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.95rem;
  z-index: 2;
}

.merk img { border-radius: 50%; width: 40px; height: 40px; transition: transform 0.4s var(--soepel); }
.merk:hover img { transform: rotate(-8deg) scale(1.06); }

.nav { display: none; margin-left: auto; gap: 1.7rem; }

.nav a {
  position: relative;
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--grijs);
  padding: 0.2rem 0;
  transition: color 0.25s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 1px;
  width: 100%;
  background: var(--goud);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--soepel);
}

.nav a:hover, .nav a.actief { color: var(--wit); }
.nav a:hover::after, .nav a.actief::after { transform: scaleX(1); }

.kop .kop-knop { display: none; }

.menuknop {
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--rand);
  border-radius: 12px;
  background: rgba(19, 18, 17, 0.6);
  display: grid;
  place-items: center;
  z-index: 2;
}

.menuknop span, .menuknop span::before, .menuknop span::after {
  content: "";
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--wit);
  transition: transform 0.35s var(--soepel), opacity 0.2s ease;
}

.menuknop span::before { transform: translateY(-6px); }
.menuknop span::after { transform: translateY(4.5px); }

.menu-open .menuknop span { background: transparent; }
.menu-open .menuknop span::before { transform: rotate(45deg); }
.menu-open .menuknop span::after { transform: rotate(-45deg) translateY(0); }

.menu {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: rgba(10, 10, 10, 0.97);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
  padding: 5rem 1.6rem 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.menu-open .menu { opacity: 1; pointer-events: auto; }

.menu a {
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  font-size: 1.9rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--rand);
  transform: translateY(14px);
  opacity: 0;
}

.menu-open .menu a { animation: opkomen 0.5s var(--soepel) forwards; }
.menu-open .menu a:nth-child(2) { animation-delay: 0.06s; }
.menu-open .menu a:nth-child(3) { animation-delay: 0.12s; }
.menu-open .menu a:nth-child(4) { animation-delay: 0.18s; }
.menu-open .menu a:nth-child(5) { animation-delay: 0.24s; }

.menu .knop { margin-top: 1.4rem; opacity: 0; animation-delay: 0.3s; }
.menu-open .menu .knop { animation: opkomen 0.5s var(--soepel) 0.3s forwards; }

/* ---------- knoppen ---------- */

.knop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  border: 1px solid transparent;
  transition: transform 0.2s var(--soepel), background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.knop:hover { transform: translateY(-2px); }
.knop:active { transform: translateY(0) scale(0.98); }

.knop-app { background: var(--groen); color: #062611; }
.knop-app:hover { background: #1fbb59; box-shadow: 0 10px 24px rgba(37, 211, 102, 0.22); }

.knop-leeg { border-color: var(--rand); color: var(--wit); }
.knop-leeg:hover { border-color: var(--goud); color: var(--goud); }

.knop-goud { background: var(--goud); color: #1A1204; }
.knop-goud:hover { background: var(--goud-licht); box-shadow: 0 10px 24px rgba(216, 168, 75, 0.2); }

.knop.groot { padding: 1.05rem 1.7rem; font-size: 1rem; }

.wa-icoon {
  width: 18px;
  height: 18px;
  flex: none;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12.04 2C6.58 2 2.13 6.45 2.13 11.91c0 1.75.46 3.45 1.32 4.95L2 22l5.25-1.38a9.9 9.9 0 0 0 4.79 1.22h.01c5.46 0 9.91-4.45 9.91-9.91 0-2.65-1.03-5.14-2.9-7.01A9.82 9.82 0 0 0 12.04 2zm0 1.67c2.2 0 4.27.86 5.83 2.42a8.2 8.2 0 0 1 2.41 5.82c0 4.54-3.7 8.24-8.25 8.24a8.23 8.23 0 0 1-4.19-1.15l-.3-.18-3.12.82.83-3.04-.2-.31a8.19 8.19 0 0 1-1.26-4.38c0-4.54 3.7-8.24 8.25-8.24zm-3.2 4.2c-.16 0-.42.06-.64.3-.22.24-.85.83-.85 2.02 0 1.19.87 2.34.99 2.5.12.16 1.7 2.6 4.12 3.64.58.25 1.03.4 1.38.51.58.18 1.11.16 1.53.1.47-.07 1.44-.59 1.64-1.16.2-.57.2-1.06.14-1.16-.06-.1-.22-.16-.46-.28-.24-.12-1.44-.71-1.66-.79-.22-.08-.38-.12-.54.12-.16.24-.62.79-.76.95-.14.16-.28.18-.52.06-.24-.12-1.02-.38-1.94-1.2-.72-.64-1.2-1.43-1.34-1.67-.14-.24-.02-.37.1-.49.11-.11.24-.28.36-.42.12-.14.16-.24.24-.4.08-.16.04-.3-.02-.42-.06-.12-.54-1.3-.74-1.78-.19-.46-.39-.4-.54-.41-.14 0-.3-.01-.46-.01z'/></svg>") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12.04 2C6.58 2 2.13 6.45 2.13 11.91c0 1.75.46 3.45 1.32 4.95L2 22l5.25-1.38a9.9 9.9 0 0 0 4.79 1.22h.01c5.46 0 9.91-4.45 9.91-9.91 0-2.65-1.03-5.14-2.9-7.01A9.82 9.82 0 0 0 12.04 2zm0 1.67c2.2 0 4.27.86 5.83 2.42a8.2 8.2 0 0 1 2.41 5.82c0 4.54-3.7 8.24-8.25 8.24a8.23 8.23 0 0 1-4.19-1.15l-.3-.18-3.12.82.83-3.04-.2-.31a8.19 8.19 0 0 1-1.26-4.38c0-4.54 3.7-8.24 8.25-8.24zm-3.2 4.2c-.16 0-.42.06-.64.3-.22.24-.85.83-.85 2.02 0 1.19.87 2.34.99 2.5.12.16 1.7 2.6 4.12 3.64.58.25 1.03.4 1.38.51.58.18 1.11.16 1.53.1.47-.07 1.44-.59 1.64-1.16.2-.57.2-1.06.14-1.16-.06-.1-.22-.16-.46-.28-.24-.12-1.44-.71-1.66-.79-.22-.08-.38-.12-.54.12-.16.24-.62.79-.76.95-.14.16-.28.18-.52.06-.24-.12-1.02-.38-1.94-1.2-.72-.64-1.2-1.43-1.34-1.67-.14-.24-.02-.37.1-.49.11-.11.24-.28.36-.42.12-.14.16-.24.24-.4.08-.16.04-.3-.02-.42-.06-.12-.54-1.3-.74-1.78-.19-.46-.39-.4-.54-.41-.14 0-.3-.01-.46-.01z'/></svg>") center / contain no-repeat;
}

/* ---------- hero ---------- */

.hero { position: relative; overflow: hidden; margin-top: -68px; }

.hero-beeld {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 62% 50%;
  animation: heroZoom 14s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.hero-tekst {
  position: relative;
  z-index: 2;
  padding: 1.6rem 1.2rem 2.6rem;
  max-width: var(--breed);
  margin: 0 auto;
  width: 100%;
}

.hero-tekst > * { animation: opkomen 0.8s var(--soepel) backwards; }
.hero-tekst > *:nth-child(1) { animation-delay: 0.1s; }
.hero-tekst > *:nth-child(2) { animation-delay: 0.2s; }
.hero-tekst > *:nth-child(3) { animation-delay: 0.32s; }
.hero-tekst > *:nth-child(4) { animation-delay: 0.44s; }

.hero-plek {
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.75rem;
  color: var(--goud);
  margin-bottom: 0.8rem;
}

.hero-onder { max-width: 34rem; margin-top: 1rem; color: #DDD8D0; }

.hero-knoppen { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.4rem; }

/* kleine kop voor de andere pagina's */

.paginakop {
  padding: 5.5rem 1.2rem 2.5rem;
  max-width: var(--breed);
  margin: 0 auto;
  border-bottom: 1px solid var(--rand);
}

.paginakop h1 { font-size: clamp(2rem, 7vw, 3.4rem); }
.paginakop p { color: var(--grijs); max-width: 40rem; margin-top: 1rem; }

.kruimel {
  font-size: 0.78rem;
  color: var(--grijs);
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.kruimel a { text-decoration: none; }
.kruimel a:hover { color: var(--goud); }

/* ---------- balk ---------- */

.balk { display: grid; grid-template-columns: repeat(2, 1fr); border-bottom: 1px solid var(--rand); }

.balk-item {
  padding: 1.1rem 1rem;
  border-top: 1px solid var(--rand);
  border-right: 1px solid var(--rand);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  transition: background 0.3s ease;
}

.balk-item:hover { background: var(--paneel); }

.balk-item strong {
  font-family: Oswald, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
}

.balk-item span { color: var(--grijs); font-size: 0.82rem; }

/* ---------- secties ---------- */

.sectie { max-width: var(--breed); margin: 0 auto; padding: 3.5rem 1.2rem; }
.sectie-kop { margin-bottom: 2rem; max-width: 42rem; }

.oog {
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
  color: var(--goud);
  margin-bottom: 0.6rem;
}

.sectie-onder { color: var(--grijs); margin-top: 0.9rem; }

.sectie-voet { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.7rem; }

/* ---------- kaarten ---------- */

.raster { display: grid; gap: 1.6rem; grid-template-columns: 1fr; }

.kaart {
  background: var(--paneel);
  border: 1px solid var(--rand);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--soepel), border-color 0.3s ease, box-shadow 0.4s var(--soepel);
}

.kaart:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 168, 75, 0.45);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.45);
}

.kaart-beeld { position: relative; display: block; overflow: hidden; }

.kaart-beeld img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.7s var(--soepel);
}

.kaart:hover .kaart-beeld img { transform: scale(1.05); }

.kaart-beeld .label { position: absolute; top: 0.9rem; left: 0.9rem; }

.kaart-body { padding: 1.2rem 1.2rem 1.4rem; display: flex; flex-direction: column; flex: 1; }

.kaart-onder { color: var(--grijs); font-size: 0.9rem; margin: 0.45rem 0 1rem; }

.kaart-knoppen { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: auto; }

.kaart-knoppen .knop { padding: 0.75rem 1.15rem; font-size: 0.82rem; }

/* ---------- prijs, specs, chips ---------- */

.prijs { display: flex; align-items: baseline; gap: 0.6rem; margin-bottom: 1.2rem; flex-wrap: wrap; }

.prijs-nu { font-family: Oswald, sans-serif; font-size: 2rem; color: var(--goud); line-height: 1; }
.prijs-oud { color: var(--grijs); text-decoration: line-through; font-size: 1rem; }
.prijs-per { color: var(--grijs); font-size: 0.85rem; }

.specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.2rem;
}

.spec { background: var(--paneel); box-shadow: 0 0 0 1px var(--rand); padding: 0.75rem 0.9rem; }

.spec dt {
  color: var(--grijs);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  white-space: nowrap;
  margin-bottom: 0.15rem;
}

.spec dd { margin: 0; font-family: Oswald, sans-serif; font-size: 1rem; letter-spacing: 0.03em; }

.chips { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0 0 1.4rem; padding: 0; list-style: none; }

.chips li {
  border: 1px solid var(--rand);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  font-size: 0.78rem;
  color: #CFC9BF;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.chips li:hover { border-color: var(--goud); color: var(--goud); }

.label {
  display: inline-block;
  background: rgba(216, 168, 75, 0.16);
  color: var(--goud);
  border: 1px solid rgba(216, 168, 75, 0.45);
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  font-family: Oswald, sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  backdrop-filter: blur(6px);
}

/* ---------- filters ---------- */

.filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.8rem; }

.filter {
  background: transparent;
  border: 1px solid var(--rand);
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: var(--grijs);
  transition: all 0.25s ease;
}

.filter:hover { color: var(--wit); border-color: var(--goud); }
.filter.aan { background: var(--goud); border-color: var(--goud); color: #1A1204; }

/* ---------- galerij ---------- */

.galerij { position: relative; border-radius: 16px; overflow: hidden; background: #000; }

.galerij-spoor {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.galerij-spoor::-webkit-scrollbar { display: none; }

.galerij-spoor img {
  flex: 0 0 100%;
  scroll-snap-align: center;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.galerij.groot .galerij-spoor img { aspect-ratio: 3 / 4; }

.galerij-pijl {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(246, 243, 238, 0.25);
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  transition: background 0.25s ease, opacity 0.25s ease, transform 0.25s var(--soepel);
  z-index: 3;
}

.galerij-pijl::before {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--wit);
  border-bottom: 2px solid var(--wit);
}

.galerij-pijl.links { left: 0.7rem; }
.galerij-pijl.links::before { transform: rotate(135deg) translate(-2px, 2px); }
.galerij-pijl.rechts { right: 0.7rem; }
.galerij-pijl.rechts::before { transform: rotate(-45deg) translate(-2px, 2px); }

.galerij-pijl:hover { background: var(--goud); border-color: var(--goud); }
.galerij-pijl:hover::before { border-color: #1A1204; }

.galerij.bij-begin .galerij-pijl.links,
.galerij.bij-eind .galerij-pijl.rechts { opacity: 0.25; }

.galerij-teller {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 3;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(246, 243, 238, 0.16);
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  font-family: Oswald, sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

.galerij-stippen {
  position: absolute;
  bottom: 0.8rem;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 0.4rem;
}

.stip {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  border: none;
  background: rgba(246, 243, 238, 0.4);
  transition: all 0.3s var(--soepel);
}

.stip.aan { background: var(--goud); width: 22px; border-radius: 999px; }

.galerij-hint {
  position: absolute;
  left: 50%;
  bottom: 2.2rem;
  transform: translateX(-50%);
  z-index: 3;
  background: rgba(10, 10, 10, 0.7);
  border: 1px solid rgba(246, 243, 238, 0.16);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.75rem;
  color: var(--wit);
  animation: wiegen 2.4s ease-in-out infinite;
  transition: opacity 0.4s ease;
}

.galerij-hint.weg { opacity: 0; pointer-events: none; }

@keyframes wiegen {
  0%, 100% { transform: translateX(-50%); }
  50% { transform: translateX(calc(-50% - 8px)); }
}

/* ---------- detailpagina ---------- */

.detail { display: grid; gap: 1.8rem; }

.detail-onder { color: var(--grijs); margin: 0.6rem 0 1.2rem; }

.detail-klein { color: var(--grijs); font-size: 0.85rem; margin-top: 1rem; }

.detail-verhaal {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rand);
  max-width: 46rem;
}

.detail-verhaal h2 { margin-bottom: 1rem; }
.detail-verhaal p { color: #CFC9BF; }

/* ---------- sfeer ---------- */

.sfeer { position: relative; }

.sfeer img { width: 100%; height: 58vh; object-fit: cover; }

.sfeer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.3) 100%);
}

.sfeer-tekst {
  position: absolute;
  inset: 0;
  z-index: 2;
  max-width: var(--breed);
  margin: 0 auto;
  padding: 2rem 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.4rem;
}

.sfeer-tekst p { max-width: 26rem; color: #DDD8D0; }

/* ---------- stappen ---------- */

.stappen { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }

.stappen li {
  background: var(--paneel);
  border: 1px solid var(--rand);
  border-radius: 14px;
  padding: 1.3rem;
  transition: transform 0.35s var(--soepel), border-color 0.3s ease;
}

.stappen li:hover { transform: translateY(-4px); border-color: rgba(216, 168, 75, 0.4); }

.stap-nr {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--goud);
  color: var(--goud);
  font-family: Oswald, sans-serif;
  margin-bottom: 0.8rem;
}

.stappen p { margin: 0.5rem 0 0; color: var(--grijs); font-size: 0.92rem; }

/* ---------- tabel en lijstjes ---------- */

.tabel-omhulsel { overflow-x: auto; border: 1px solid var(--rand); border-radius: 14px; }

table { border-collapse: collapse; width: 100%; min-width: 520px; }

th, td { padding: 0.85rem 1rem; text-align: left; border-bottom: 1px solid var(--rand); font-size: 0.9rem; }

th {
  font-family: Oswald, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: var(--grijs);
  background: var(--paneel);
}

tbody tr { transition: background 0.25s ease; }
tbody tr:hover { background: var(--paneel); }
tbody tr:last-child td { border-bottom: none; }

td:first-child { font-family: Oswald, sans-serif; letter-spacing: 0.02em; }

.punten { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: 0.6rem; }

.punten li { position: relative; padding-left: 1.4rem; color: var(--grijs); font-size: 0.92rem; }

.punten li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  background: var(--goud);
  border-radius: 50%;
}

/* ---------- uitklap ---------- */

.vraag {
  border-bottom: 1px solid var(--rand);
}

.vraag summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 2.4rem 1.1rem 0;
  position: relative;
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.02rem;
  transition: color 0.25s ease;
}

.vraag summary::-webkit-details-marker { display: none; }
.vraag summary:hover { color: var(--goud); }

.vraag summary::after {
  content: "";
  position: absolute;
  right: 0.4rem;
  top: 1.5rem;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--goud);
  border-bottom: 2px solid var(--goud);
  transform: rotate(45deg);
  transition: transform 0.35s var(--soepel);
}

.vraag[open] summary::after { transform: rotate(-135deg); }

.vraag-body { padding: 0 0 1.2rem; color: var(--grijs); animation: opkomen 0.4s var(--soepel); }

/* ---------- contact en voet ---------- */

.contact-knoppen { display: flex; flex-wrap: wrap; gap: 0.7rem; }

.contactblokken { display: grid; gap: 1rem; margin-top: 2rem; }

.contactblok {
  background: var(--paneel);
  border: 1px solid var(--rand);
  border-radius: 14px;
  padding: 1.3rem;
  transition: border-color 0.3s ease, transform 0.35s var(--soepel);
}

.contactblok:hover { border-color: rgba(216, 168, 75, 0.4); transform: translateY(-4px); }

.contactblok h3 { margin-bottom: 0.5rem; }
.contactblok p { color: var(--grijs); font-size: 0.92rem; margin-bottom: 0.8rem; }
.contactblok a.los { color: var(--goud); text-decoration: none; font-size: 0.95rem; }
.contactblok a.los:hover { text-decoration: underline; }

.voet { border-top: 1px solid var(--rand); padding: 3rem 1.2rem 7rem; color: var(--grijs); }

.voet-binnen {
  max-width: var(--breed);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.voet img { border-radius: 50%; margin-bottom: 0.8rem; }

.voet-naam {
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--wit);
  margin-bottom: 0.4rem;
}

.voet-regel { font-size: 0.88rem; margin: 0.2rem 0; }
.voet a { text-decoration: none; }
.voet a:hover { color: var(--goud); }

.voet-kop {
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--wit);
  margin-bottom: 0.7rem;
}

.voet-lijst { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.4rem; font-size: 0.9rem; }

.voet-onder {
  border-top: 1px solid var(--rand);
  margin-top: 1rem;
  padding-top: 1.2rem;
  font-size: 0.78rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: space-between;
}

.mobiel-app {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
}

/* ---------- breder scherm ---------- */

@media (min-width: 700px) {
  .hero { min-height: 82vh; display: flex; align-items: flex-end; }
  .hero-beeld { position: absolute; inset: 0; height: 100%; aspect-ratio: auto; object-position: 50% 38%; }
  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.65) 0%, rgba(10,10,10,0.15) 40%, rgba(10,10,10,0.92) 92%);
  }
  .hero-tekst { padding: 3rem 1.5rem 4rem; }
  .balk { grid-template-columns: repeat(4, 1fr); }
  .specs { grid-template-columns: repeat(4, 1fr); }
  .stappen { grid-template-columns: repeat(3, 1fr); }
  .raster { grid-template-columns: repeat(2, 1fr); }
  .contactblokken { grid-template-columns: repeat(2, 1fr); }
  .detail { grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
  .galerij.groot .galerij-spoor img { aspect-ratio: 4 / 5; }
}

@media (min-width: 950px) {
  .nav { display: flex; }
  .kop .kop-knop { display: inline-flex; padding: 0.6rem 1.1rem; }
  .menuknop, .menu { display: none; }
  .mobiel-app { display: none; }
  .voet { padding-bottom: 3rem; }
  .voet-binnen { grid-template-columns: 1.4fr 1fr 1fr; }
  .voet-onder { grid-column: 1 / -1; }
  .sectie { padding: 5rem 1.5rem; }
  .paginakop { padding: 7rem 1.5rem 3rem; }
  .raster { grid-template-columns: repeat(3, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .op { opacity: 1; transform: none; }
}
