:root {
  --ink: #0b0b0c;
  --muted: #646568;
  --line: #e2e2df;
  --soft: #f5f5f2;
  --paper: #fff;
  --accent: #f4a900;
  --accent2: #ff7a00;
  --dark: #111113;
  --radius: 24px;
  --max: 1380px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.45;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.topbar {
  height: 84px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 46px;
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.brand img {
  width: auto;
  height: 56px;
}

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.nav a {
  padding: 27px 0;
  border-bottom: 2px solid transparent;
}

.nav a:hover,
.nav a.active {
  border-bottom-color: #111;
}

.actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 24px;
  border: 1px solid #111;
  background: #111;
  color: white;
  font-weight: 600;
  min-height: 48px;
  transition: .25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,.16);
}

.btn.light {
  background: white;
  color: #111;
}

.btn.ghost {
  background: transparent;
  color: #111;
  border-color: #d0d0cc;
}

.btn.accent {
  background: linear-gradient(135deg,var(--accent),var(--accent2));
  border: 0;
  color: #111;
}

.mobile-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 28px;
}

.hero {
  min-height: calc(100svh - 84px);
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #111;
  color: white;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.62);
}

.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(0,0,0,.62),rgba(0,0,0,.10) 58%,rgba(0,0,0,.18)),linear-gradient(0deg,rgba(0,0,0,.62),transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 42px 84px;
}

.eyebrow {
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
}

.hero h1 {
  font-size: clamp(48px,8vw,112px);
  line-height: .92;
  letter-spacing: -.07em;
  margin: 18px 0 24px;
  max-width: 900px;
}

.hero p {
  font-size: clamp(18px,2vw,25px);
  max-width: 650px;
  color: rgba(255,255,255,.88);
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.quick-strip {
  background: white;
  border-bottom: 1px solid var(--line);
}

.quick-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  padding: 0 42px;
}

.quick-card {
  padding: 34px 20px;
  border-left: 1px solid var(--line);
  min-height: 132px;
}

.quick-card:last-child {
  border-right: 1px solid var(--line);
}

.quick-card b {
  display: block;
  font-size: 18px;
}

.quick-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.section {
  padding: 94px 42px;
}

.section.soft {
  background: var(--soft);
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 42px;
}

.section-head h2 {
  font-size: clamp(36px,5vw,72px);
  letter-spacing: -.055em;
  line-height: .98;
  margin: 0;
}

.section-head p {
  max-width: 440px;
  color: var(--muted);
  font-size: 18px;
}

.model-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 18px;
  background: white;
  cursor: pointer;
}

.pill.active {
  background: #111;
  color: white;
  border-color: #111;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}

.product-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  transition: .25s ease;
  min-height: 100%;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

.product-card .img {
  aspect-ratio: 4/2.3;
  background: #f8f8f6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card .body {
  padding: 24px;
}

.product-card h3 {
  font-size: 24px;
  margin: 0 0 8px;
  letter-spacing: -.03em;
}

.meta {
  color: var(--muted);
  font-size: 14px;
}

.price {
  font-weight: 700;
  margin-top: 16px;
}

.card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}

.large-copy h2 {
  font-size: clamp(40px,6vw,82px);
  line-height: .95;
  letter-spacing: -.06em;
  margin: 0 0 24px;
}

.large-copy p {
  font-size: 20px;
  color: var(--muted);
  max-width: 640px;
}

.image-panel {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 560px;
  background: #ddd;
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-panel.floating {
  box-shadow: 0 35px 80px rgba(0,0,0,.14);
}

.parallax-band {
  height: 86vh;
  position: relative;
  overflow: hidden;
  color: white;
  background: #111;
  display: flex;
  align-items: center;
}

.parallax-bg {
  position: absolute;
  inset: -16% 0;
  background: url('assets/outside-showroom.png') center/cover no-repeat;
  will-change: transform;
  filter: brightness(.65);
}

.parallax-band:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(0,0,0,.72),rgba(0,0,0,.16));
}

.parallax-content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 42px;
}

.parallax-content h2 {
  font-size: clamp(46px,7vw,96px);
  line-height: .93;
  letter-spacing: -.06em;
  margin: 0 0 20px;
  max-width: 850px;
}

.parallax-content p {
  max-width: 560px;
  font-size: 20px;
  color: rgba(255,255,255,.84);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 18px;
}

.service {
  border: 1px solid var(--line);
  padding: 28px;
  border-radius: 20px;
  background: white;
}

.service .num {
  color: var(--accent2);
  font-weight: 800;
}

.service h3 {
  font-size: 22px;
  margin: 18px 0 8px;
}

.service p {
  color: var(--muted);
}

.footer {
  background: #111;
  color: white;
  padding: 72px 42px 30px;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr repeat(3,1fr);
  gap: 40px;
}

.footer img {
  width: 120px;
  filter: invert(1);
}

.footer a,
.footer p {
  color: rgba(255,255,255,.72);
}

.footer h4 {
  margin: 0 0 16px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px;
}

.small {
  max-width: var(--max);
  margin: 50px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.5);
}

.page-hero {
  padding: 92px 42px 54px;
  background: var(--soft);
}

.page-hero .wrap {
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: 30px;
  align-items: end;
}

.page-hero h1 {
  font-size: clamp(46px,7vw,96px);
  letter-spacing: -.06em;
  line-height: .96;
  margin: 0;
}

.page-hero p {
  font-size: 20px;
  color: var(--muted);
}

.detail {
  padding: 72px 42px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.gallery {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 14px;
}

.thumbs {
  display: grid;
  gap: 12px;
}

.thumbs img {
  background: #fff;
  border: 1px solid var(--line);
  cursor: pointer;
}

.main-shot {
  background: #fff;
  border: 1px solid var(--line);
  padding: 30px;
}

.specs {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 12px;
  margin: 30px 0;
}

.spec {
  background: var(--soft);
  padding: 18px;
  border-radius: 14px;
}

.form {
  display: grid;
  gap: 16px;
}

.form label {
  font-weight: 600;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 16px;
  border: 1px solid #c9c9c6;
  background: white;
  font: inherit;
}

.form textarea {
  min-height: 140px;
}

.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.notice {
  padding: 22px;
  border-radius: 18px;
  background: #fff8e2;
  border: 1px solid #f4db95;
  color: #5b4211;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease,transform .7s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media(max-width:900px) {
  .topbar {
    grid-template-columns: auto 1fr auto;
    padding: 0 22px;
  }

  .brand img {
    width: auto;
    height: 46px;
  }

  .mobile-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    top: 84px;
    left: 0;
    right: 0;
    background: white;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    border-bottom: 1px solid var(--line);
  }

  .nav.open {
    display: flex;
  }

  .actions .btn {
    display: none;
  }

  .nav .nav-cta {
    display: block;
  }

  .lang-opt {
    padding: 7px 10px;
    font-size: 12px;
  }

  .quick-grid,
  .product-grid,
  .service-grid,
  .split,
  .page-hero .wrap,
  .detail-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .hero-content,
  .page-hero,
  .detail {
    padding-left: 22px;
    padding-right: 22px;
  }

  .quick-grid {
    padding: 0;
  }

  .quick-card {
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero h1 {
    font-size: 54px;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .thumbs {
    display: flex;
    overflow: auto;
  }

  .thumbs img {
    width: 90px;
  }

  .two {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   NEW FEATURES · brand grouping, badges, compare, packs, offerte
   ============================================================ */

/* --- Brand grouping on catalogue pages --- */
.brand-group {
  margin: 0 0 56px;
}

.brand-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 0 0 18px;
  margin: 0 0 26px;
  border-bottom: 2px solid var(--ink);
}

.brand-head h2 {
  font-size: clamp(26px,3.4vw,40px);
  letter-spacing: -.04em;
  margin: 0;
  text-transform: uppercase;
}

.brand-head .count {
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.brand-group.is-empty {
  display: none;
}

/* condition badge on cards (Occasie / Demo / Nieuw) */
.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.badge.new {
  background: #eef1ee;
  color: #2c2f2c;
}

.badge.occasie {
  background: linear-gradient(135deg,var(--accent),var(--accent2));
  color: #111;
}

.badge.demo {
  background: #111;
  color: #fff;
}

.card-empty {
  border: 1px dashed var(--line);
  border-radius: 4px;
  padding: 40px 28px;
  text-align: center;
  color: var(--muted);
  background: var(--soft);
}

/* --- Comparison tool --- */
.compare-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 14px;
}

.compare-slot label {
  display: block;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.compare-slot select {
  width: 100%;
  padding: 16px;
  border: 1px solid #c9c9c6;
  background: white;
  font: inherit;
  border-radius: 2px;
}

.compare-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin: 8px 0 26px;
}

.compare-card {
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  background: white;
}

.compare-card .img {
  aspect-ratio: 4/2.3;
  background: #f8f8f6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.compare-card .body {
  padding: 18px 22px 22px;
}

.compare-card .meta {
  font-size: 13px;
}

.compare-card h3 {
  margin: 4px 0 6px;
  font-size: 22px;
  letter-spacing: -.03em;
}

.compare-card .price {
  margin-top: 8px;
}

.compare-empty {
  border: 1px dashed var(--line);
  border-radius: 4px;
  background: var(--soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  min-height: 200px;
  text-align: center;
  padding: 24px;
}

/* foldable spec sections (Yamaha-style accordion) */
.spec-accordion {
  border-top: 1px solid var(--line);
}

.fold {
  border-bottom: 1px solid var(--line);
}

.fold > summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 4px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.01em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fold > summary::-webkit-details-marker {
  display: none;
}

.fold > summary::after {
  content: "+";
  font-size: 26px;
  font-weight: 500;
  color: var(--muted);
  transition: transform .25s ease;
  line-height: 1;
}

.fold[open] > summary::after {
  content: "\2013";
}

.fold .rows {
  padding: 2px 0 22px;
}

.spec-row {
  display: grid;
  grid-template-columns: 1.1fr repeat(var(--n,2),1fr);
  gap: 22px;
  padding: 12px 4px;
  border-top: 1px solid var(--soft);
  font-size: 15px;
}

.spec-row .label {
  color: var(--muted);
  font-weight: 600;
}

.spec-row .v {
  font-weight: 600;
}

/* --- Accessory packs --- */
.pack-group {
  margin-bottom: 54px;
}

.pack-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}

.pack {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: white;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
}

.pack:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,.07);
  transform: translateY(-4px);
  transition: .25s ease;
}

.pack h3 {
  font-size: 22px;
  letter-spacing: -.02em;
  margin: 0 0 6px;
}

.pack .pack-for {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 18px;
}

.pack ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 10px;
}

.pack li {
  padding-left: 26px;
  position: relative;
  color: #2c2f2c;
}

.pack li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--accent2);
  font-weight: 800;
}

.pack .pack-price {
  margin-top: auto;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.pack .pack-price small {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0;
}

.pack .btn {
  margin-top: 18px;
}

/* --- Offerte page --- */
.offerte-model {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 26px;
}

.offerte-model span {
  display: block;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
}

.offerte-model b {
  font-size: 26px;
  letter-spacing: -.02em;
}

/* --- responsive --- */
@media(max-width:900px) {
  .compare-controls,
  .compare-head,
  .pack-grid {
    grid-template-columns: 1fr;
  }

  /* comparison sheet keeps its columns and scrolls sideways on small screens */
  .cmp-sheet-inner {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .cmp-cards,
  .cmp-specs {
    min-width: 540px;
  }
}

/* ============================================================
   COMPARE · card buttons, bottom tray, slide-up sheet
   ============================================================ */

/* card restructure: media+body is the link, actions sit below */
.card-link {
  display: block;
  color: inherit;
}

.product-card .card-link .body {
  padding-bottom: 14px;
}

/* push the actions to the bottom so buttons align across a row */
.product-card {
  display: flex;
  flex-direction: column;
}

.card-foot {
  padding: 0 24px 22px;
  margin-top: auto;
}

/* compact, left-aligned action buttons (not full width) */
.card-foot .btn {
  width: auto;
  min-height: 0;
  padding: 9px 16px;
  font-size: 13px;
}

.compare-btn {
  cursor: pointer;
  gap: 6px;
}

/* compare sheet cards: keep "Bekijk model" pinned to the bottom */
.compare-card {
  display: flex;
  flex-direction: column;
}

.compare-card .body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.compare-card .card-actions {
  margin-top: auto;
}

.compare-btn.active {
  background: linear-gradient(135deg,var(--accent),var(--accent2));
  border-color: transparent;
  color: #111;
}

/* --- bottom tray (minimal, rounded, Apple-style) --- */
.cmp-tray {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: calc(100vw - 28px);
  padding: 12px 14px 12px 18px;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 24px;
  box-shadow: 0 18px 55px rgba(0,0,0,.22);
  animation: cmpTrayUp .35s cubic-bezier(.22,1,.36,1);
}

.cmp-tray[hidden] {
  display: none;
}

@keyframes cmpTrayUp {
  from { opacity: 0; transform: translate(-50%, 24px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}

.cmp-slots {
  display: flex;
  gap: 10px;
}

.cmp-slot {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  flex: none;
}

.cmp-slot.empty {
  border: 2px dashed #c9c9c6;
  color: #b7b7b1;
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
}

.cmp-slot.filled {
  border: 1px solid var(--line);
  background: #f4f4f1;
  overflow: hidden;
}

.cmp-slot.filled img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cmp-slot .rm {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  border: 2px solid #fff;
}

.cmp-tray-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cmp-clear {
  background: none;
  border: 0;
  color: var(--muted);
  font: inherit;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  padding: 8px 6px;
}

.cmp-clear:hover {
  color: #111;
}

.cmp-go {
  min-height: 44px;
  padding: 12px 22px;
}

.cmp-go:disabled {
  opacity: .4;
  cursor: not-allowed;
  pointer-events: none;
}

/* --- slide-up comparison sheet --- */
.cmp-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(0,0,0,.42);
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.cmp-overlay[hidden] {
  display: none;
}

.cmp-sheet {
  background: var(--paper);
  width: 100%;
  max-width: 1120px;
  max-height: 92vh;
  border-radius: 28px 28px 0 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 -20px 60px rgba(0,0,0,.28);
  animation: cmpSheetUp .4s cubic-bezier(.22,1,.36,1);
}

@keyframes cmpSheetUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}

.cmp-sheet-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid var(--line);
}

.cmp-sheet-bar h2 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -.03em;
}

.cmp-close {
  background: var(--soft);
  border: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: #111;
}

.cmp-close:hover {
  background: #ecece8;
}

.cmp-sheet-inner {
  padding: 26px 28px 36px;
  overflow-y: auto;
}

.cmp-cards {
  display: grid;
  gap: 18px;
  margin-bottom: 26px;
}

@media(max-width:760px) {
  .cmp-tray {
    gap: 10px;
    padding: 9px 12px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: calc(100vw - 20px);
    bottom: 14px;
  }

  .cmp-slot {
    width: 38px;
    height: 38px;
  }

  .cmp-clear {
    padding: 8px 4px;
  }

  .cmp-go {
    padding: 11px 16px;
  }

  .cmp-sheet {
    max-height: 88vh;
  }
}

/* --- accessory pack detail: included-items list --- */
.pack-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 26px;
  display: grid;
  gap: 12px;
  max-width: 520px;
}

.pack-list li {
  position: relative;
  padding-left: 28px;
  color: #2c2f2c;
}

.pack-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--accent2);
  font-weight: 800;
}


/* --- language switch (NL / FR) --- */
.lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}

.lang-opt {
  border: 0;
  background: none;
  padding: 9px 13px;
  font: inherit;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
}

.lang-opt.active {
  background: #111;
  color: #fff;
}

.lang-opt:not(.active):hover {
  color: #111;
}

/* header CTAs cloned into the mobile menu — hidden on desktop */
.nav-cta {
  display: none;
}
