/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ─── Tokens ─── */
:root {
  --green:        #1a2b4a;
  --green-mid:    #22366a;
  --green-light:  #2d4d80;
  --cream:        #f9f5ef;
  --cream-dark:   #f0e9de;
  --orange:       #e07b39;
  --orange-dark:  #c86828;
  --text:         #2d2d2d;
  --text-mid:     #5a5a5a;
  --text-light:   #8a8a8a;
  --white:        #ffffff;
  --border:       #e5ddd3;
  --shadow:       0 2px 12px rgba(26,43,74,.08);
  --shadow-hover: 0 6px 28px rgba(26,43,74,.14);
  --radius:       8px;
  --max:          1100px;
  --nav-h:        68px;
  --transition:   .2s ease;
}

/* ─── Base ─── */
html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── Typography ─── */
h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; line-height: 1.15; letter-spacing: -.03em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; line-height: 1.2; letter-spacing: -.02em; }
h3 { font-size: 1.1rem; font-weight: 700; line-height: 1.3; }
h4 { font-size: .875rem; font-weight: 700; line-height: 1.4; }

.eyebrow {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .6rem;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 700;
  font-size: .875rem;
  padding: .7rem 1.5rem;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  line-height: 1;
  white-space: nowrap;
}

.btn:active { transform: translateY(1px); }

.btn-orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-orange:hover { background: var(--orange-dark); border-color: var(--orange-dark); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

.btn-outline-green {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline-green:hover { background: var(--green); color: var(--white); }

.btn-ghost {
  background: transparent;
  color: var(--orange);
  border-color: transparent;
  padding-left: 0; padding-right: 0;
  font-size: .875rem;
}
.btn-ghost:hover { color: var(--orange-dark); }
.btn-ghost::after { content: ' →'; }

/* ─── Navigation ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--green);
  height: var(--nav-h);
  border-bottom: 1px solid var(--green-mid);
}

.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--white);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -.02em;
}

.nav-logo-mark {
  width: 32px;
  height: 32px;
  background: var(--orange);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-mark svg { width: 18px; height: 18px; fill: var(--white); }

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .125rem;
  list-style: none;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.nav-contact-btn {
  background: var(--orange);
  color: var(--white);
  font-size: .875rem;
  font-weight: 700;
  padding: .5rem 1.25rem;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-contact-btn:hover { background: var(--orange-dark); }

.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  padding: .45rem .875rem;
  border-radius: 6px;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: var(--green-mid);
}

.nav-links .nav-contact {
  background: var(--orange);
  color: var(--white);
  margin-left: .5rem;
}
.nav-links .nav-contact:hover { background: var(--orange-dark); }

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--green);
  border-bottom: 1px solid var(--green-mid);
  padding: .75rem 1.5rem 1.25rem;
  flex-direction: column;
  gap: .125rem;
  z-index: 199;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-size: .95rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  padding: .65rem .875rem;
  border-radius: 6px;
  transition: var(--transition);
}

.nav-mobile a:hover,
.nav-mobile a.active { background: var(--green-mid); color: var(--white); }

/* ─── Hero ─── */
.hero {
  background: var(--green);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 540px;
  display: flex;
  align-items: center;
  padding: 5rem 1.5rem 10rem;
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-card {
  background: rgba(26, 43, 74, 0.85);
  border-radius: 10px;
  padding: 40px;
  max-width: 600px;
}

.hero-card h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  line-height: 1.15;
}

.hero-usps {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.hero-usps li {
  color: rgba(255,255,255,.92);
  font-size: .95rem;
  display: flex;
  align-items: center;
  gap: .65rem;
  line-height: 1.4;
}

.hero-usps li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.hero-actions { display: flex; gap: .875rem; flex-wrap: wrap; align-items: center; }

.hero h1 { color: var(--white); margin-bottom: .5rem; }
.hero-sub { color: rgba(255,255,255,.88); font-size: 1rem; margin: 0; }

/* ─── Small hero (inner pages) ─── */
.hero-sm {
  height: auto;
  min-height: 0;
  padding: 2.75rem 1.5rem;
}
.hero-sm .hero-inner { text-align: center; }

/* ─── Guarantee bar ─── */
.guarantee-bar {
  background: #1a2b4a;
  padding: 1rem 1.5rem;
}

.guarantee-bar-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.guarantee-bar-text {
  font-size: .9rem;
  font-weight: 600;
  color: var(--white);
}

.guarantee-bar-text span { font-weight: 400; opacity: .9; }

.guarantee-bar .btn {
  font-size: .8rem;
  padding: .5rem 1.1rem;
  background: #e07b39;
  border-color: #e07b39;
  color: var(--white);
  flex-shrink: 0;
}
.guarantee-bar .btn:hover { background: #c96b2e; border-color: #c96b2e; }

/* ─── Section ─── */
.section { padding: 5rem 1.5rem; }
.section-sm { padding: 3.5rem 1.5rem; }

/* ─── Pricing cards ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.pricing-card {
  background: var(--white);
  border: 2px solid #e8e4de;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.pricing-card--featured {
  border-color: var(--orange);
  box-shadow: 0 4px 24px rgba(224,123,57,.18);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: white;
  font-size: .7rem;
  font-weight: 700;
  padding: .3rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.pricing-duration {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .75rem;
}
.pricing-price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 1rem;
}
.pricing-card p { font-size: .875rem; color: var(--text-mid); }

/* ─── Exclude list ─── */
.exclude-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .6rem; }
.exclude-list li { display: flex; align-items: flex-start; gap: .65rem; color: var(--text-mid); font-size: .93rem; line-height: 1.45; }
.exclude-list li::before { content: '✕'; color: #c0392b; font-weight: 700; font-size: .8rem; flex-shrink: 0; margin-top: .15rem; }
.section-green { background: var(--green); }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }

.section-header { margin-bottom: 2.75rem; }
.section-header h2 { margin-bottom: .4rem; }
.section-header p { color: var(--text-mid); font-size: 1rem; max-width: 520px; }

/* ─── Camper Cards ─── */
#aanbod {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 2rem;
  margin-top: -75px;
  background: transparent;
  position: relative;
  z-index: 1;
  scroll-margin-top: 350px;
}

.cards-grid {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  gap: 24px;
  padding-top: 6px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-bottom: 16px;
  scroll-padding-left: 1.5rem;
  scrollbar-width: thin;
  scrollbar-color: #c8bfb0 transparent;
}
.cards-grid::-webkit-scrollbar { height: 6px; }
.cards-grid::-webkit-scrollbar-track { background: transparent; }
.cards-grid::-webkit-scrollbar-thumb { background: #c8bfb0; border-radius: 3px; }

.camper-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2.5px solid #1a2b4a;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.camper-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.camper-card.sold { pointer-events: none; }
.camper-card.sold:hover { transform: none; box-shadow: var(--shadow); }

/* Card image area */
.card-img {
  height: 240px;
  background: #d6ccbe;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card-img svg { width: 64px; height: 64px; color: #a89880; }

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

.card-badge {
  position: absolute;
  top: .875rem;
  left: .875rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .3rem .7rem;
  border-radius: 4px;
}

.badge-sale { background: var(--orange); color: var(--white); }
.badge-sold { background: #4a4a4a; color: var(--white); }

/* Sold overlay */
.sold-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,30,30,.55);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sold-stamp {
  background: var(--white);
  color: #2d2d2d;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .6rem 1.6rem;
  border: 3px solid #2d2d2d;
  border-radius: 4px;
  transform: rotate(-8deg);
}

/* Card body */
.card-body {
  padding: 1.25rem 1.25rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: .15rem;
}

.card-subtitle {
  font-size: .8rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.card-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem .875rem;
  padding: .875rem 0;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
  margin-bottom: 1rem;
}

.spec-item { display: flex; flex-direction: column; gap: .1rem; }

.spec-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-light);
}

.spec-val {
  font-size: .875rem;
  font-weight: 700;
  color: var(--text);
}

.card-equip {
  font-size: .8rem;
  color: var(--text-mid);
  line-height: 1.55;
  margin-bottom: .875rem;
  flex: 1;
}

.card-equip strong { color: var(--text); font-weight: 600; }

.card-note {
  font-size: .775rem;
  color: var(--text-mid);
  background: var(--cream);
  border-left: 3px solid var(--orange);
  padding: .55rem .75rem;
  border-radius: 0 4px 4px 0;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--cream-dark);
  margin-top: auto;
}

.card-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -.03em;
  line-height: 1;
}

.card-price-note {
  font-size: .7rem;
  font-weight: 400;
  color: var(--text-light);
  display: block;
  letter-spacing: 0;
  margin-top: .15rem;
}

.card-sold-tag {
  font-size: .82rem;
  font-weight: 700;
  color: var(--text-light);
  font-style: italic;
}

/* ─── USP bar ─── */
.usp-bar {
  background: var(--green);
  padding: 2.5rem 1.5rem;
}

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

.usp-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .5rem;
  padding: 1.25rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.1);
  text-decoration: none;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
a.usp-item:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(224,123,57,.6);
  transform: translateY(-2px);
}

.usp-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .25rem;
}

.usp-icon svg { width: 22px; height: 22px; }

.usp-item h4 { font-size: .875rem; color: var(--white); margin-bottom: .15rem; }
.usp-item p  { font-size: .775rem; color: rgba(255,255,255,.6); line-height: 1.4; }

/* ─── Steps ─── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  box-shadow: var(--shadow);
  position: relative;
}

.step-num {
  width: 40px;
  height: 40px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.step h3 { color: var(--green); margin-bottom: .4rem; font-size: 1rem; }
.step p  { font-size: .85rem; color: var(--text-mid); line-height: 1.6; }

/* ─── Info grid (werkwijze) ─── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.info-grid-2col {
  grid-template-columns: 1fr;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.info-card h3 { color: var(--green); margin-bottom: .5rem; font-size: 1rem; }
.info-card p  { font-size: .875rem; color: var(--text-mid); line-height: 1.7; }

/* ─── Prose ─── */
.prose { max-width: 680px; }
.prose p { color: var(--text-mid); line-height: 1.8; margin-bottom: 1.1rem; }
.prose p:last-child { margin-bottom: 0; }
.prose h3 { color: var(--green); font-size: 1.1rem; margin: 2rem 0 .6rem; }

/* ─── Callout ─── */
.callout {
  background: #edf0f7;
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.callout p { font-size: .9rem; color: var(--text); margin: 0; line-height: 1.7; }
.callout strong { color: var(--green); }

.callout-orange {
  background: #fef4ec;
  border-left-color: var(--orange);
}
.callout-orange strong { color: var(--orange-dark); }

/* ─── Guarantee blocks ─── */
.guarantee-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.g-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.g-box-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.g-box-icon svg { width: 28px; height: 28px; }
.icon-green { background: #e8eef5; }
.icon-green svg { color: var(--green); }
.icon-orange { background: #fef0e6; }
.icon-orange svg { color: var(--orange); }

.g-box h3 { color: var(--green); font-size: 1.05rem; margin-bottom: .4rem; }
.g-box p  { font-size: .875rem; color: var(--text-mid); line-height: 1.6; }

/* ─── Stats ─── */
.stats-row {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 2rem 0;
}

.stat-item { display: flex; flex-direction: column; gap: .15rem; }
.stat-num { font-size: 2.2rem; font-weight: 800; color: var(--green); line-height: 1; letter-spacing: -.04em; }
.stat-lbl { font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--text-light); }

/* ─── Profile ─── */
.profile-voordelen-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.profile-wrap {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  align-items: center;
}

.profile-avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: #d6ccbe;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--white);
  box-shadow: var(--shadow);
}

.profile-avatar svg { width: 80px; height: 80px; color: #a89880; }
.profile-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; border-radius: 50%; display: block; }

/* ─── Mission statement ─── */
.mission-quote {
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  position: relative;
  margin: 2rem 0;
}

.mission-quote p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,.9);
  max-width: 620px;
}

.mission-quote::before {
  content: '\201C';
  position: absolute;
  top: -.5rem;
  left: 1.5rem;
  font-size: 6rem;
  color: rgba(255,255,255,.1);
  font-family: Georgia, serif;
  line-height: 1;
}

/* ─── Two col layout ─── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* ─── CTA section ─── */
.cta-section {
  background: var(--green);
  padding: 4rem 1.5rem;
  text-align: center;
}

.cta-section h2 { color: var(--white); margin-bottom: .75rem; }
.cta-section p  { color: rgba(255,255,255,.75); font-size: 1rem; margin-bottom: 2rem; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ─── Footer ─── */
.footer {
  background: var(--green);
  border-top: 1px solid var(--green-mid);
  padding: 3.5rem 1.5rem 2rem;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--white);
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: .75rem;
}

.footer-brand p {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  max-width: 260px;
  line-height: 1.65;
}

.footer-col h4 {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }

.footer-col ul a {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--white); }

.footer-col address { font-style: normal; display: flex; flex-direction: column; gap: .5rem; }
.footer-col address a,
.footer-col address span { font-size: .875rem; color: rgba(255,255,255,.65); transition: var(--transition); }
.footer-col address a:hover { color: var(--white); }

.footer-bottom {
  max-width: var(--max);
  margin: 1.75rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}

/* ─── Fade in ─── */
.fade { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.fade.visible { opacity: 1; transform: none; }
.fade-delay-1 { transition-delay: .1s; }
.fade-delay-2 { transition-delay: .2s; }
.fade-delay-3 { transition-delay: .3s; }

/* ─── Divider ─── */
hr { border: none; border-top: 1px solid var(--border); margin: 2.5rem 0; }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .usp-grid              { grid-template-columns: repeat(2, 1fr); }
  .steps-grid            { grid-template-columns: repeat(2, 1fr); }
  .two-col               { grid-template-columns: 1fr; gap: 2.5rem; }
  .profile-voordelen-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .profile-avatar-col    { justify-content: flex-start; }
  .info-grid-2col        { grid-template-columns: 1fr; }
  .profile-wrap { grid-template-columns: 1fr; }
  .profile-avatar { width: 120px; height: 120px; }
  .profile-avatar svg { width: 54px; height: 54px; }
}

@media (max-width: 768px) {
  .nav-links  { display: none; }
  .nav-burger { display: flex; }
  .nav-inner  { display: flex; align-items: center; }
  .nav-logo   { flex-shrink: 0; }
  .nav-right  { margin-left: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .section { padding: 3.5rem 1.5rem; }
  #aanbod { padding-left: 0; padding-right: 0; padding-top: 0; margin-top: -40px; background: transparent; }
  .hero { height: auto; min-height: 480px; padding: 2.5rem 1.5rem; }
  .hero-sm { min-height: 0; padding: 2rem 1.5rem; }
  .hero-card { padding: 1.75rem; }
  .stats-row { gap: 1.75rem; }
}

/* ─── WhatsApp floating chat bubble ─── */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  left: 10px;
  display: flex;
  align-items: center;
  z-index: 9999;
  text-decoration: none;
  transition: transform .2s ease;
}
.whatsapp-btn:hover { transform: translateY(-2px); }

.whatsapp-avatar {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #e07b39;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 3px 14px rgba(0,0,0,.18);
}
.whatsapp-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

.whatsapp-text {
  background: #fff;
  border: 2.5px solid #e07b39;
  border-radius: 50px;
  padding: 11px 22px 11px 46px;
  margin-left: -38px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  box-shadow: 0 4px 18px rgba(0,0,0,.12);
}
.whatsapp-title {
  font-weight: 800;
  font-size: .92rem;
  color: #1a2b4a;
  white-space: nowrap;
}
.whatsapp-number {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .82rem;
  font-weight: 600;
  color: #1ab5d4;
  white-space: nowrap;
}
.whatsapp-number svg {
  width: 15px;
  height: 15px;
  fill: #1ab5d4;
  flex-shrink: 0;
}

/* ─── Carousel ─── */
.carousel-wrapper {
  overflow: hidden;
  padding-top: 6px;  /* prevents top border being clipped on hover */
}

/* ─── Card photo arrows ─── */
.card-photo-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: rgba(0,0,0,.45);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .15s, background .15s;
  z-index: 4;
  flex-shrink: 0;
  pointer-events: auto;
}
.card-photo-btn svg { width: 16px; height: 16px; }
.card-photo-btn:hover { background: rgba(0,0,0,.7); }
.card-photo-prev { left: 8px; }
.card-photo-next { right: 8px; }
.card-img:hover .card-photo-btn { opacity: 1; }
.camper-card.sold .card-photo-btn { pointer-events: auto; }
.cards-grid {
  scrollbar-width: none;
}
.cards-grid::-webkit-scrollbar { display: none; }

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px 0 4px;
}
.carousel-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e0d8ce;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .15s, box-shadow .15s;
}
.carousel-arrow:hover { background: #f5f5f5; box-shadow: 0 4px 14px rgba(0,0,0,.15); }
.carousel-arrow svg { width: 18px; height: 18px; stroke: #1a2b4a; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d0c9be;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}
.carousel-dot.active {
  background: #e07b39;
  transform: scale(1.25);
}
.carousel-dot.dot-visible {
  background: #b8b0a5;
  cursor: default;
}

@media (max-width: 600px) {
  /* WhatsApp: enkel groen icoon, zelfde hoogte als reviews badge */
  .whatsapp-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #25D366;
    bottom: 20px;
    left: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 12px rgba(0,0,0,.22);
    margin: 0;
  }
  .whatsapp-avatar { display: none; }
  .whatsapp-text { display: none; }
  .whatsapp-btn::after {
    content: '';
    display: block;
    width: 26px;
    height: 26px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347z'/%3E%3Cpath fill='white' d='M12 0C5.373 0 0 5.373 0 12c0 2.127.558 4.122 1.531 5.85L.057 23.5l5.81-1.45A11.942 11.942 0 0 0 12 24c6.627 0 12-5.373 12-12S18.627 0 12 0zm0 22c-1.853 0-3.6-.5-5.112-1.375l-.363-.215-3.793.948.996-3.694-.238-.38A9.956 9.956 0 0 1 2 12C2 6.477 6.477 2 12 2s10 4.477 10 10-4.477 10-10 10z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .reviews-badge {
    bottom: 20px;
    padding: 7px 12px;
    gap: 6px;
  }
  .reviews-badge-text { font-size: .74rem; }
  .reviews-badge-star,
  .reviews-badge-arrow { width: 13px; height: 13px; }
}

/* ─── Reviews badge ─── */
.reviews-badge {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  border: 1px solid rgba(0,0,0,.08);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  z-index: 9998;
  transition: transform .2s ease, box-shadow .2s ease;
}
.reviews-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.18);
}
.reviews-badge-text {
  font-size: .85rem;
  font-weight: 700;
  color: #1a2b4a;
  white-space: nowrap;
}
.reviews-badge-star {
  width: 16px;
  height: 16px;
  color: #e07b39;
  flex-shrink: 0;
}
.reviews-badge-arrow {
  width: 16px;
  height: 16px;
  stroke: #1a2b4a;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .usp-grid    { grid-template-columns: 1fr 1fr; }
  .steps-grid  { grid-template-columns: 1fr; }

  .guarantee-boxes { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .guarantee-bar-inner { flex-direction: column; align-items: flex-start; }
}

/* ─── Clickable card ─── */
.card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  flex: 0 0 340px;
  scroll-snap-align: start;
}
.card-link .camper-card { cursor: pointer; height: 100%; box-shadow: 0 8px 32px rgba(26,43,74,.18); }

/* ─── Breadcrumb ─── */
.breadcrumb {
  background: var(--green);
  border-bottom: 1px solid var(--green-mid);
  padding: .6rem 1.5rem;
}
.breadcrumb-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.breadcrumb a {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  transition: var(--transition);
}
.breadcrumb a:hover { color: var(--white); }

/* ─── Sold banner ─── */
.sold-banner {
  background: #c0392b;
  color: var(--white);
  text-align: center;
  padding: .75rem 1.5rem;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .04em;
}

/* ─── Back link in detail hero ─── */
.detail-back-bar {
  position: sticky;
  top: var(--nav-h);
  z-index: 90;
  background: #111e35;
  padding: .55rem 1.5rem;
}
.detail-back-bar .detail-back-link {
  margin-top: 0;
}

.detail-back-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color .15s;
}
.detail-back-link:hover { color: var(--white); }

/* ─── Detail hero ─── */
.detail-hero {
  background: var(--green);
  padding: 2.5rem 1.5rem 2rem;
}
.detail-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.detail-hero h1 {
  color: var(--white);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: .3rem;
}
.detail-hero-meta {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-wrap: wrap;
  margin-top: .5rem;
}
.detail-hero-meta span {
  font-size: .82rem;
  color: rgba(255,255,255,.65);
}
.detail-hero-meta .dot { opacity: .35; }
.detail-hero-price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  margin-top: .75rem;
  letter-spacing: -.03em;
}
.detail-hero-price small {
  font-size: .8rem;
  font-weight: 400;
  opacity: .65;
  margin-left: .35rem;
}
.sold-label {
  display: inline-block;
  background: #c0392b;
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 4px;
  margin-top: .75rem;
}

/* ─── Gallery ─── */
.gallery-section {
  background: var(--cream);
  padding: 2.5rem 1.5rem 3rem;
}
.gallery-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.gallery-main {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #d6ccbe;
  cursor: zoom-in;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-hover);
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .2s;
}

.gallery-main-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 .75rem;
  pointer-events: none;
}

.gallery-arrow {
  width: 40px;
  height: 40px;
  background: rgba(0,0,0,.45);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
  flex-shrink: 0;
}
.gallery-arrow:hover { background: rgba(0,0,0,.7); }
.gallery-arrow svg { width: 18px; height: 18px; }

.gallery-counter {
  position: absolute;
  bottom: .75rem;
  right: .875rem;
  background: rgba(0,0,0,.5);
  color: var(--white);
  font-size: .72rem;
  font-weight: 600;
  padding: .25rem .65rem;
  border-radius: 20px;
  letter-spacing: .04em;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: .5rem;
}

.gallery-thumb {
  aspect-ratio: 4/3;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .15s, opacity .15s;
  background: #d6ccbe;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumb:hover { opacity: .85; }
.gallery-thumb.active { border-color: var(--orange); }

/* Gallery placeholder */
.gallery-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  background: #e5ddd3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  color: #a89880;
  margin-bottom: 1rem;
}
.gallery-placeholder svg { width: 56px; height: 56px; }
.gallery-placeholder p { font-size: .875rem; font-weight: 500; }

/* ─── Lightbox ─── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.93);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }

.lightbox-img-wrap {
  position: relative;
  max-width: 92vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img-wrap img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.12);
  border: none;
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
  z-index: 10;
}
.lightbox-close:hover { background: rgba(255,255,255,.22); }
.lightbox-close svg { width: 20px; height: 20px; }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,.1);
  border: none;
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}
.lightbox-prev { left: -70px; }
.lightbox-next { right: -70px; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,.2); }
.lightbox-prev svg,
.lightbox-next svg { width: 24px; height: 24px; }

.lightbox-counter {
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  white-space: nowrap;
}

/* ─── Detail body ─── */
.detail-body {
  padding: 3rem 1.5rem 4rem;
  background: var(--cream);
}

.detail-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}

.detail-specs-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .1rem;
  margin-bottom: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.spec-row {
  display: contents;
}

.spec-row > span {
  padding: .7rem 1rem;
  font-size: .875rem;
  background: var(--white);
  border-bottom: 1px solid var(--cream-dark);
}

.spec-row > span:first-child {
  font-weight: 600;
  color: var(--text-mid);
  background: #f4ede3;
}

.spec-row > span:last-child {
  color: var(--text);
  font-weight: 500;
}

.detail-section-title {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .875rem;
}

.equip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .4rem .75rem;
  margin-bottom: 2rem;
}

.equip-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: var(--text-mid);
  line-height: 1.4;
}

.equip-item::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

/* Sidebar / contact card */
.detail-right-sticky {
  position: sticky;
  top: calc(var(--nav-h) + 4.4rem);
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  overflow: hidden;
}

.contact-card-header {
  background: var(--green);
  padding: 1.5rem;
  color: var(--white);
}

.contact-card-header .price {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: .25rem;
}

.contact-card-header .price-note {
  font-size: .8rem;
  opacity: .65;
}

.contact-card-body { padding: 1.5rem; }

.contact-card-body .btn {
  width: 100%;
  justify-content: center;
  font-size: .925rem;
  padding: .875rem;
  margin-bottom: .75rem;
}

.contact-usps {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.contact-usp {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .8rem;
  color: var(--text-mid);
}

.contact-usp::before {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='8' fill='%231a2b4a'/%3E%3Cpath d='M4.5 8L7 10.5L11.5 6' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.sold-card-header {
  background: #2d2d2d;
}

.note-box {
  background: #fef7f0;
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
}
.note-box p { font-size: .875rem; color: var(--text-mid); margin: 0; line-height: 1.6; }
.note-box strong { color: var(--text); }

.detail-description p {
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin: 0 0 .75rem;
}
.detail-description p:last-child { margin-bottom: 0; }

/* ─── New detail page two-column layout ─── */
.detail-page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  align-items: stretch;
}
.detail-left { min-width: 0; }
.detail-right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.detail-left .gallery-main { margin-bottom: 1rem; }
.detail-left .gallery-thumbs { margin-bottom: 0; }
.detail-left .detail-section-title:first-of-type { margin-top: 2.5rem; }

/* ─── Detail responsive ─── */
@media (max-width: 900px) {
  .detail-page { grid-template-columns: 1fr; }
  .detail-right { position: static; }
  .detail-right-sticky { position: static; }
}
@media (max-width: 860px) {
  .detail-grid { grid-template-columns: 1fr; }
  .contact-card { position: static; }
  .lightbox-prev { left: -54px; }
  .lightbox-next { right: -54px; }
}

@media (max-width: 600px) {
  .equip-grid { grid-template-columns: 1fr; }
  .detail-specs-table { grid-template-columns: 1fr 1fr; }
  .gallery-thumbs { grid-template-columns: repeat(auto-fill, minmax(72px, 1fr)); }
  .lightbox-prev { left: .5rem; }
  .lightbox-next { right: .5rem; }
}
