:root {
  --nacht: #07151c;
  --diep: #0b2430;
  --petrol: #0e4a52;
  --teal: #1a7a76;
  --koraal: #e25b48;
  --koraal-donker: #c44736;
  --goud: #d7b06a;
  --goud-licht: #efd7a3;
  --zand: #f4eadb;
  --creme: #fbf6ee;
  --tekst: #1c2a30;
  --muted: #5b6b72;
  --lijn: rgba(215, 176, 106, 0.28);
  --radius: 18px;
  --shadow: 0 18px 50px rgba(7, 21, 28, 0.18);
  --font-display: "Fraunces", Georgia, serif;
  --font-sans: "Outfit", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--tekst);
  background: var(--creme);
  line-height: 1.55;
}

img { max-width: 100%; display: block; }
a { color: var(--teal); }
.wrap { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }

.topbar {
  background: var(--nacht);
  color: var(--goud-licht);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  flex-wrap: wrap;
}
.topbar a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 246, 238, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--lijn);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--nacht);
}
.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--nacht);
  box-shadow: 0 0 0 2px var(--goud);
}
.brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.brand span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

nav { display: flex; gap: 6px; flex-wrap: wrap; }
nav a {
  text-decoration: none;
  color: var(--tekst);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.95rem;
}
nav a:hover { background: rgba(26, 122, 118, 0.1); }
nav a.active {
  background: var(--nacht);
  color: var(--zand);
}

.hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: end start;
  color: white;
  overflow: hidden;
  background: var(--nacht);
}
.hero img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,21,28,0.78) 0%, rgba(7,21,28,0.28) 58%, rgba(7,21,28,0.45) 100%),
    linear-gradient(180deg, rgba(7,21,28,0.15), rgba(7,21,28,0.55));
}
.hero-copy {
  position: relative;
  z-index: 1;
  padding: 80px 0 64px;
  max-width: 640px;
}
.eyebrow {
  color: var(--goud);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.76rem;
  margin: 0 0 10px;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.05;
  margin: 0 0 16px;
}
.hero p { font-size: 1.12rem; max-width: 46ch; color: #f4eadb; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 560;
  border: 1px solid transparent;
}
.btn-primary { background: var(--koraal); color: white; }
.btn-primary:hover { background: var(--koraal-donker); }
.btn-ghost { border-color: var(--goud); color: var(--goud-licht); }
.btn-dark { background: var(--nacht); color: var(--zand); }
.btn-line { border-color: var(--petrol); color: var(--nacht); }

section { padding: 72px 0; }
.section-head { max-width: 640px; margin-bottom: 32px; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  margin: 0 0 10px;
}
.lede { color: var(--muted); margin: 0; }

.styles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.style-card {
  background: white;
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--goud);
}
.style-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
}
.style-card p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.split img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.preview-list { list-style: none; padding: 0; margin: 18px 0 0; }
.preview-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--lijn);
}
.preview-list span { color: var(--muted); }

.price-grid, .day-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.card {
  background: white;
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.card h3 {
  font-family: var(--font-display);
  margin: 0 0 6px;
  font-weight: 500;
  font-size: 1.7rem;
}
.price {
  font-size: 2.4rem;
  font-family: var(--font-display);
  color: var(--petrol);
  margin: 12px 0 4px;
}
.price small { font-size: 1rem; color: var(--muted); font-family: var(--font-sans); }

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
th, td { text-align: left; padding: 14px 16px; }
th {
  background: var(--nacht);
  color: var(--zand);
  font-weight: 500;
  letter-spacing: 0.04em;
}
tr:nth-child(even) { background: #f7f1e6; }
td.time { font-variant-numeric: tabular-nums; color: var(--petrol); font-weight: 600; width: 140px; }
.note { font-size: 0.92rem; color: var(--muted); margin-top: 14px; }

.page-hero {
  background:
    linear-gradient(180deg, rgba(7,21,28,0.55), rgba(7,21,28,0.72)),
    url("img/texture.jpg") center/cover;
  color: var(--zand);
  padding: 72px 0 56px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 500;
  margin: 0 0 10px;
}

.contact-strip {
  background: var(--nacht);
  color: var(--zand);
}
.contact-strip .wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
}
.contact-strip a { color: var(--goud); }

footer {
  background: #051017;
  color: #c9b89a;
  padding: 28px 0;
  font-size: 0.9rem;
}
footer .wrap { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
footer a { color: var(--goud-licht); text-decoration: none; }

.swatches { display: flex; gap: 12px; flex-wrap: wrap; }
.swatch {
  width: 92px;
  border-radius: 14px;
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow);
  font-size: 0.75rem;
}
.swatch i { display: block; height: 58px; }
.swatch b { display: block; padding: 8px; font-weight: 500; }


@media (max-width: 860px) {
  .styles, .split, .price-grid, .day-grid, .contact-strip .wrap {
    grid-template-columns: 1fr;
  }
  .split img { height: 280px; }
  .site-header .wrap {
    flex-wrap: wrap;
    align-items: center;
    row-gap: 10px;
  }
  .mbsov-mark img { width: 40px; height: 40px; }
  .brand { flex: 1 1 auto; min-width: 0; }
  .brand strong { font-size: 1.15rem; }
  .brand span { font-size: 0.62rem; letter-spacing: 0.12em; }
  nav {
    flex: 1 1 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 4px;
  }
  nav a {
    padding: 8px 10px;
    font-size: 0.88rem;
  }
  .topbar .wrap { font-size: 0.75rem; }
}
@media (max-width: 520px) {
  .wrap { width: min(1120px, calc(100% - 24px)); }
  .hero-copy { padding: 48px 0 40px; }
  .hero h1 { font-size: 2.1rem; }
  .page-hero { padding: 48px 0 36px; }
  .brand img { width: 44px; height: 44px; }
}



.mbsov-mark {
  display: flex;
  align-items: center;
  margin-right: 8px;
}
.mbsov-mark img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
}
