:root {
  --primary: #2d6a4f;          /* outdoor green */
  --primary-dark: #1b4332;
  --accent: #f59e0b;            /* warm amber */
  --secondary: #1d3557;
  --bg: #fbf9f4;                /* warm off-white */
  --bg-soft: #f1ede4;
  --text: #1d2433;
  --text-muted: #6b6f7a;
  --border: #e3ddd0;
  --white: #ffffff;
  --danger: #c0392b;
  --shadow-sm: 0 2px 8px rgba(29, 36, 51, 0.06);
  --shadow: 0 8px 28px rgba(29, 36, 51, 0.10);
  --shadow-lg: 0 18px 48px rgba(29, 36, 51, 0.14);
  --radius: 14px;
  --radius-sm: 8px;
  --maxw: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
section { padding: 72px 0; }
h1, h2, h3 { color: var(--secondary); line-height: 1.25; }
h1 { font-size: 2.5rem; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 14px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
p.lead { font-size: 1.1rem; color: var(--text-muted); }
p.sub { color: var(--text-muted); margin-bottom: 28px; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 760px; }

/* ── Buttons ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
  text-align: center;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary {
  background: var(--primary); color: var(--white); border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); box-shadow: var(--shadow); }
.btn-outline {
  background: transparent; color: var(--primary); border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-danger {
  background: var(--danger); color: var(--white); border-color: var(--danger);
}
.btn-sm { padding: 8px 14px; font-size: 0.88rem; }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }

/* ── Header ──────────────────────────────────────────────────────────── */
.hdr {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  box-shadow: var(--shadow-sm);
}
.hdr-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo { display: inline-flex; align-items: center; color: var(--secondary); font-weight: 700; font-size: 1.35rem; letter-spacing: -0.01em; }
.logo:hover { text-decoration: none; }
.logo-text strong { color: var(--primary); }
.hdr-nav { display: flex; gap: 22px; align-items: center; }
.hdr-nav a:not(.btn) { color: var(--secondary); font-weight: 500; font-size: 0.96rem; }
.hdr-nav a:not(.btn):hover { color: var(--primary); text-decoration: none; }
.hdr-nav .btn-primary { color: var(--white) !important; }

/* ── Flashes ─────────────────────────────────────────────────────────── */
.flashes { max-width: var(--maxw); margin: 12px auto 0; padding: 0 24px; }
.flash { padding: 12px 18px; border-radius: var(--radius-sm); margin-bottom: 10px; font-size: 0.95rem; }
.flash-error { background: #fde7e3; color: #8b1b12; border: 1px solid #f3a89e; }
.flash-ok { background: #e3f2e9; color: #1b4332; border: 1px solid #a3c9b1; }

/* ── Hero ────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 120px 24px 100px;
  color: var(--white);
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-dark) 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.45;
  z-index: 0;
}
.hero-inner { position: relative; z-index: 1; max-width: 880px; margin: 0 auto; }
.hero h1 { color: var(--white); font-size: clamp(2rem, 5vw, 3.4rem); margin-bottom: 20px; }
.hero .lead { color: rgba(255,255,255,0.92); font-size: 1.2rem; margin-bottom: 32px; }
.hero .badge {
  display: inline-block; padding: 6px 14px;
  background: rgba(255,255,255,0.15); color: var(--white);
  border-radius: 999px; font-size: 0.85rem; margin-bottom: 20px;
  backdrop-filter: blur(6px);
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.hero .btn-outline { background: rgba(255,255,255,0.10); color: var(--white); border-color: rgba(255,255,255,0.4); }
.hero .btn-outline:hover { background: rgba(255,255,255,0.22); }
.hero-trust {
  list-style: none; display: flex; gap: 22px; justify-content: center; flex-wrap: wrap;
  font-size: 0.92rem; color: rgba(255,255,255,0.85);
}

/* ── Intro ───────────────────────────────────────────────────────────── */
.intro { background: var(--white); padding: 60px 0; }
.intro h2 { margin-bottom: 12px; }

/* ── Camper / specs ──────────────────────────────────────────────────── */
.camper { background: var(--bg-soft); }
.specs-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px; margin: 32px 0 40px;
}
.spec {
  background: var(--white); padding: 22px 20px; border-radius: var(--radius);
  border: 1px solid var(--border);
}
.spec-icon { font-size: 1.6rem; margin-bottom: 8px; }
.spec-key { color: var(--text-muted); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 4px; }
.spec-val { color: var(--secondary); font-weight: 600; font-size: 1.02rem; }

.inclusions {
  list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 8px 18px; margin: 14px 0 32px;
}
.inclusions li { font-size: 0.96rem; color: var(--text); }

.photo-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px; margin-top: 16px;
}
.photo-grid figure {
  border-radius: var(--radius); overflow: hidden; background: var(--white); box-shadow: var(--shadow-sm);
}
.photo-grid img { aspect-ratio: 4/3; object-fit: cover; }
.photo-grid figcaption { padding: 10px 14px; font-size: 0.88rem; color: var(--text-muted); }

/* ── Routes ──────────────────────────────────────────────────────────── */
.routes { background: var(--white); }
.routes-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px; margin-top: 28px;
}
.route-card {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.route-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--primary); }
.route-meta {
  display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap;
}
.route-kms, .route-diff {
  display: inline-block; padding: 3px 10px; border-radius: 999px;
  font-size: 0.78rem; font-weight: 600;
}
.route-kms { background: var(--primary); color: var(--white); }
.route-diff { background: var(--accent); color: var(--secondary); }
.route-card h3 { color: var(--secondary); margin-bottom: 10px; font-size: 1.15rem; }
.route-card p { color: var(--text); font-size: 0.95rem; line-height: 1.55; }

/* ── Waarom ──────────────────────────────────────────────────────────── */
.waarom { background: var(--bg-soft); }
.waarom-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px; margin-top: 28px;
}
.waarom-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px 24px;
  border-top: 4px solid var(--primary);
}
.waarom-card h3 { color: var(--secondary); font-size: 1.08rem; margin-bottom: 8px; }
.waarom-card p { color: var(--text-muted); font-size: 0.94rem; line-height: 1.55; }

/* ── Voorwaarden ─────────────────────────────────────────────────────── */
.voorwaarden { background: var(--white); }
.voorwaarden-list {
  list-style: none; max-width: 820px; margin: 28px auto 0;
}
.voorwaarden-list li {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 18px 20px; margin-bottom: 12px;
  background: var(--bg-soft); border-radius: var(--radius); border: 1px solid var(--border);
}
.voor-num {
  flex-shrink: 0;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.05rem;
}
.voorwaarden-list h3 { color: var(--secondary); font-size: 1.05rem; margin-bottom: 4px; }
.voorwaarden-list p { color: var(--text); font-size: 0.95rem; line-height: 1.55; }

/* ── Seizoen (NB: section.seizoen — niet .seizoen, omdat .seizoen óók wordt
   gebruikt als label-class in prijs-cards) ─────────────────────────────── */
section.seizoen { background: var(--bg-soft); }
.seizoen-timeline {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin-top: 28px;
}
.seizoen-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px 24px;
  position: relative;
}
.seizoen-hoog { border-top: 4px solid var(--danger); }
.seizoen-mid { border-top: 4px solid var(--accent); }
.seizoen-laag { border-top: 4px solid var(--primary); }
.seizoen-card h3 { color: var(--secondary); font-size: 1.15rem; margin-bottom: 4px; }
.seizoen-period {
  font-size: 0.85rem; color: var(--text-muted); margin-bottom: 14px;
  font-style: italic;
}
.seizoen-card p { color: var(--text); font-size: 0.94rem; line-height: 1.55; }
.seizoen-tip {
  margin-top: 24px; padding: 16px 22px;
  background: var(--white); border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm); color: var(--text);
  font-size: 0.96rem; max-width: 820px;
}

/* ── Prijzen ─────────────────────────────────────────────────────────── */
.prijzen { background: var(--white); }
.prijzen-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px; margin: 28px 0 32px;
}
.prijs-card {
  background: var(--bg-soft); padding: 28px 24px; border-radius: var(--radius);
  border: 1px solid var(--border); text-align: center;
}
.prijs-card-mid { background: linear-gradient(180deg, var(--bg-soft), #fff5e0); border-color: var(--accent); }
.prijs-card-high { background: var(--primary); color: var(--white); border-color: var(--primary); }
.prijs-card-high .seizoen, .prijs-card-high .periode, .prijs-card-high .prijs { color: var(--white); }
.seizoen { font-size: 1.3rem; font-weight: 700; color: var(--secondary); margin-bottom: 4px; }
.periode { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 14px; }
.prijs { font-size: 1rem; color: var(--text); }
.prijzen-info { list-style: none; display: flex; flex-direction: column; gap: 8px; max-width: 720px; margin: 0 auto; padding: 18px 22px; background: var(--bg-soft); border-radius: var(--radius-sm); font-size: 0.95rem; }

/* ── FAQ ─────────────────────────────────────────────────────────────── */
.faq { background: var(--bg-soft); }
.faq-list { max-width: 820px; margin: 28px auto 0; }
.faq details {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm);
  margin-bottom: 10px;
}
.faq details[open] { border-color: var(--primary); }
.faq summary {
  padding: 16px 22px; cursor: pointer; font-weight: 600; color: var(--secondary);
  display: flex; justify-content: space-between; align-items: center; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { color: var(--primary); font-size: 1.3rem; transition: transform 0.2s; }
.faq details[open] summary span { transform: rotate(45deg); }
.faq details p { padding: 0 22px 18px; color: var(--text-muted); }

/* ── Aanvraag form ───────────────────────────────────────────────────── */
.aanvraag {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-dark) 100%);
  color: var(--white);
}
.aanvraag h2 { color: var(--white); }
.aanvraag .sub { color: rgba(255,255,255,0.78); }
.form {
  max-width: 720px; margin: 0 auto;
  background: var(--white); padding: 28px 30px; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); color: var(--text);
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px;
}
.form label { display: block; }
.form-block { display: block; margin-bottom: 18px; }
.form span {
  display: block; font-size: 0.86rem; color: var(--text-muted);
  margin-bottom: 6px; font-weight: 500;
}
.form input, .form select, .form textarea {
  width: 100%; padding: 11px 14px;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-size: 1rem; font-family: inherit; background: var(--white);
  color: var(--text); transition: border-color 0.15s;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none; border-color: var(--primary);
}
.form textarea { resize: vertical; min-height: 100px; }
.form-hint { font-size: 0.86rem; color: var(--text-muted); margin: -8px 0 14px; }
.form button[type="submit"] { width: 100%; }

/* ── Thank you / 404 ─────────────────────────────────────────────────── */
.thank-you { background: var(--bg-soft); min-height: 60vh; display: flex; align-items: center; }
.thank-card {
  max-width: 560px; margin: 0 auto; background: var(--white); padding: 48px 36px;
  border-radius: var(--radius); box-shadow: var(--shadow); text-align: center;
}
.thank-icon {
  width: 72px; height: 72px; border-radius: 50%; background: var(--primary); color: var(--white);
  font-size: 2.4rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px;
}
.thank-sub { color: var(--text-muted); font-size: 0.94rem; margin-top: 14px; }

/* ── Footer ──────────────────────────────────────────────────────────── */
.ftr { background: var(--secondary); color: rgba(255,255,255,0.78); padding-top: 48px; }
.ftr-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; padding-bottom: 30px; }
.ftr-col strong { color: var(--white); font-size: 1.15rem; display: block; margin-bottom: 12px; font-weight: 700; }
.ftr-col strong span { color: var(--accent); }
.ftr-col p { font-size: 0.92rem; line-height: 1.65; }
.ftr-col ul { list-style: none; }
.ftr-col li { margin-bottom: 8px; font-size: 0.92rem; }
.ftr-col a { color: rgba(255,255,255,0.82); }
.ftr-col a:hover { color: var(--white); }
.ftr-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 16px 0;
  font-size: 0.85rem; color: rgba(255,255,255,0.55);
}
.ftr-bottom .wrap {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px 18px;
}
.ftr-by a {
  color: rgba(255,255,255,0.78);
  border-bottom: 1px dotted rgba(255,255,255,0.30);
}
.ftr-by a:hover {
  color: var(--white); text-decoration: none; border-bottom-color: var(--white);
}
@media (max-width: 560px) {
  .ftr-bottom .wrap { justify-content: center; text-align: center; }
}

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 760px) {
  .hdr-nav { gap: 14px; flex-wrap: wrap; justify-content: flex-end; }
  .hdr-nav a:not(.btn) { display: none; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-row > label { margin-bottom: 18px; }
  .ftr-inner { grid-template-columns: 1fr; gap: 28px; }
  .seizoen-timeline { grid-template-columns: 1fr; }
  .voorwaarden-list li { flex-direction: column; gap: 10px; }
  section { padding: 56px 0; }
  .hero { padding: 80px 20px 70px; }
  .hero h1 { font-size: 2rem; }
}
