:root {
  --blue: #163ea8;
  --blue-dark: #0c2568;
  --orange: #ff8a00;
  --green: #43b85c;
  --cream: #fff7e8;
  --paper: #fffdf7;
  --ink: #172033;
  --muted: #5d667a;
  --line: #e8dfcc;
  --shadow: 0 18px 45px rgba(18, 35, 80, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--cream);
  color: var(--ink);
}

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

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 247, 232, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 2px dashed rgba(22, 62, 168, 0.18);
}

.nav-wrap {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-pin {
  width: 46px;
  height: 46px;
  background: var(--orange);
  color: white;
  border: 4px solid var(--blue);
  border-radius: 50% 50% 50% 8px;
  transform: rotate(-45deg);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 28px;
  box-shadow: 0 8px 0 rgba(22, 62, 168, 0.12);
}

.brand-pin::first-letter {
  transform: rotate(45deg);
}

.brand strong {
  display: block;
  font-size: 1.35rem;
  color: var(--blue);
  line-height: 1;
}

.brand strong span {
  color: var(--orange);
}

.brand small {
  display: block;
  color: var(--green);
  font-weight: 800;
  margin-top: 4px;
}

.nav {
  display: flex;
  gap: 22px;
  font-weight: 800;
  color: var(--blue-dark);
}

.nav a:hover {
  color: var(--orange);
}

.menu-btn {
  display: none;
  border: 0;
  background: var(--blue);
  color: white;
  border-radius: 12px;
  padding: 10px 13px;
  font-size: 22px;
}

.hero {
  position: relative;
  padding: 76px 0 56px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 138, 0, 0.18), transparent 28%),
    radial-gradient(circle at 82% 30%, rgba(67, 184, 92, 0.18), transparent 30%),
    linear-gradient(135deg, #fff7e8, #eaf5ff);
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -5% -60px -5%;
  height: 160px;
  background: var(--green);
  opacity: 0.16;
  border-radius: 50% 50% 0 0;
  z-index: -1;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.stamp,
.mini-title {
  display: inline-block;
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.stamp {
  border: 3px solid var(--orange);
  border-radius: 999px;
  padding: 8px 14px;
  transform: rotate(-2deg);
  background: white;
}

.hero h1 {
  margin: 18px 0 16px;
  color: var(--blue-dark);
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.hero-text p {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.7;
  font-weight: 600;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 900;
  border: 0;
  cursor: pointer;
}

.btn.primary {
  background: var(--orange);
  color: white;
  box-shadow: 0 8px 0 #d86f00;
}

.btn.ghost {
  background: white;
  color: var(--blue);
  border: 2px solid rgba(22, 62, 168, 0.18);
}

.btn.small {
  padding: 10px 16px;
  background: var(--blue);
  color: white;
  font-size: 0.92rem;
}

.quick-types {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quick-types span {
  background: white;
  padding: 9px 13px;
  border-radius: 999px;
  font-weight: 850;
  color: var(--blue-dark);
  border: 1px solid rgba(22, 62, 168, 0.12);
}

.adventure-desk {
  position: relative;
  min-height: 450px;
}

.map-card,
.booklet,
.paper {
  background: var(--paper);
  border: 2px solid var(--line);
  box-shadow: var(--shadow);
}

.map-card {
  position: absolute;
  inset: 12px 34px auto 10px;
  height: 270px;
  border-radius: 28px;
  transform: rotate(2deg);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(22, 62, 168, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(22, 62, 168, 0.08) 1px, transparent 1px),
    #fffdf7;
  background-size: 36px 36px;
}

.dotted-route {
  position: absolute;
  width: 360px;
  height: 170px;
  left: 45px;
  top: 70px;
  border-bottom: 10px dashed var(--blue);
  border-left: 10px dashed var(--blue);
  border-radius: 20px 20px 20px 90px;
  transform: rotate(-8deg);
}

.map-pin {
  position: absolute;
  right: 64px;
  top: 42px;
  width: 82px;
  height: 82px;
  background: var(--orange);
  color: white;
  border: 6px solid var(--blue);
  border-radius: 50% 50% 50% 12px;
  transform: rotate(-45deg);
}

.map-pin span {
  display: block;
  transform: rotate(45deg);
  font-size: 44px;
  font-weight: 900;
}

.map-label {
  position: absolute;
  background: var(--green);
  color: white;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 900;
}

.map-label.one { left: 42px; top: 38px; }
.map-label.two { left: 180px; bottom: 48px; }
.map-label.three { right: 40px; bottom: 38px; background: var(--orange); }

.booklet {
  position: absolute;
  right: 0;
  bottom: 16px;
  width: 360px;
  min-height: 220px;
  border-radius: 12px;
  padding: 28px;
  transform: rotate(-4deg);
}

.booklet-label {
  display: inline-block;
  background: var(--blue);
  color: white;
  padding: 7px 13px;
  border-radius: 8px;
  font-weight: 900;
}

.booklet h2 {
  color: var(--orange);
  font-size: 2rem;
  line-height: 1;
  margin: 18px 0 8px;
}

.booklet p {
  color: var(--muted);
  font-weight: 700;
}

.booklet-row {
  margin-top: 20px;
  background: #f0f7ff;
  border-left: 6px solid var(--green);
  padding: 12px;
  border-radius: 10px;
}

.booklet-row span {
  display: block;
  color: var(--green);
  font-weight: 900;
}

.pencil,
.compass {
  position: absolute;
  background: white;
  border-radius: 999px;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.pencil {
  width: 68px;
  height: 68px;
  left: 20px;
  bottom: 52px;
  font-size: 34px;
  color: var(--orange);
}

.compass {
  width: 78px;
  height: 78px;
  right: 310px;
  bottom: 0;
  font-size: 36px;
  color: var(--blue);
}

.intro-strip {
  background: var(--blue);
  color: white;
  padding: 24px 0;
}

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

.strip-grid div {
  background: rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  padding: 18px;
}

.strip-grid strong {
  display: block;
  color: #fff;
  font-size: 1.1rem;
}

.strip-grid span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 650;
}

.section {
  padding: 76px 0;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 34px;
}

.section-head h2,
.example-text h2,
.custom-box h2,
.contact-layout h2 {
  color: var(--blue-dark);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  margin: 10px 0 12px;
}

.section-head p,
.example-text p,
.custom-box p,
.contact-layout p {
  color: var(--muted);
  font-weight: 650;
  line-height: 1.7;
}

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

.tour-card {
  background: white;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid rgba(22, 62, 168, 0.08);
}

.tour-top {
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.tour-top.bike {
  background: linear-gradient(135deg, #dff7e5, #aee9bd);
}

.tour-top.car {
  background: linear-gradient(135deg, #dceaff, #9fc0ff);
}

.tour-top.walk {
  background: linear-gradient(135deg, #fff0d5, #ffc477);
}

.tour-icon {
  font-size: 5.5rem;
}

.tour-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: white;
  color: var(--blue);
  border-radius: 999px;
  padding: 7px 12px;
  font-weight: 950;
}

.tour-body {
  padding: 24px;
}

.tour-body h3 {
  color: var(--blue-dark);
  font-size: 1.45rem;
  margin: 0 0 8px;
}

.tour-body p {
  color: var(--muted);
  font-weight: 650;
  line-height: 1.55;
}

.tour-body ul {
  padding-left: 18px;
  color: var(--ink);
  font-weight: 750;
  line-height: 1.8;
}

.paper-section {
  background: #eaf5ff;
}

.example-layout {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 46px;
  align-items: center;
}

.paper {
  border-radius: 18px;
  padding: 28px;
  transform: rotate(-1.5deg);
  position: relative;
}

.paper::before {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  top: -12px;
  height: 24px;
  background: rgba(255, 138, 0, 0.35);
  border-radius: 6px;
}

.paper-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--blue);
  font-weight: 950;
  margin-bottom: 18px;
}

.paper-header strong {
  background: var(--orange);
  color: white;
  border-radius: 999px;
  padding: 8px 14px;
}

.photo-placeholder {
  height: 210px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(67, 184, 92, 0.25), rgba(22, 62, 168, 0.16)),
    repeating-linear-gradient(-45deg, transparent 0 12px, rgba(255,255,255,0.45) 12px 24px);
  color: var(--blue-dark);
  font-weight: 950;
  font-size: 1.2rem;
}

.paper h2 {
  color: var(--orange);
  font-size: 2rem;
  margin-bottom: 8px;
}

.paper p {
  color: var(--muted);
  font-weight: 700;
}

.answers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.answers button {
  border: 2px solid rgba(22, 62, 168, 0.14);
  background: white;
  border-radius: 14px;
  padding: 13px;
  font-weight: 900;
  color: var(--blue-dark);
}

.custom-section {
  background: var(--cream);
}

.custom-box {
  background: var(--blue-dark);
  color: white;
  border-radius: 34px;
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  box-shadow: var(--shadow);
}

.custom-box h2,
.custom-box p {
  color: white;
}

.custom-box p {
  opacity: 0.82;
}

.contact-section {
  background: #fffdf7;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 38px;
}

.contact-form {
  background: white;
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow);
  border: 2px solid rgba(22, 62, 168, 0.08);
  display: grid;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 2px solid #e6eaf2;
  border-radius: 16px;
  padding: 15px;
  font: inherit;
  font-weight: 650;
}

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

.footer {
  background: var(--blue-dark);
  color: white;
  padding: 24px 0;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-weight: 800;
}

@media (max-width: 880px) {
  .nav {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .nav.open {
    display: flex;
    position: absolute;
    top: 78px;
    left: 16px;
    right: 16px;
    background: white;
    color: var(--blue);
    flex-direction: column;
    padding: 18px;
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .hero-layout,
  .example-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 46px;
  }

  .adventure-desk {
    min-height: 500px;
  }

  .strip-grid,
  .tour-grid {
    grid-template-columns: 1fr;
  }

  .custom-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-wrap {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .brand strong {
    font-size: 1.05rem;
  }

  .brand small {
    font-size: 0.75rem;
  }

  .brand-pin {
    width: 40px;
    height: 40px;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .map-card {
    left: 0;
    right: 0;
  }

  .booklet {
    width: 92%;
    right: 4%;
  }

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  width: fit-content;
  padding: 8px 13px;
  border-radius: 999px;

  color: white;
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: capitalize;
}

.badge-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 24px;
  height: 24px;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.25);
  color: white;
  font-size: 0.78rem;
  font-weight: 950;
}

.badge-auto {
  background: #163ea8;
}

.badge-fiets {
  background: #43b85c;
}

.badge-wandelen {
  background: #ff8a00;
}

.badge-route {
  background: #5d667a;
}