/* ============================================================
   OnDestination - Aanbod page styles
   Builds on home.css + colors_and_type.css.
   Reuses .pg-header / breadcrumb / stats from the inner-page
   pattern; adds the service-card system + audience split.
   ============================================================ */

/* Active nav item */
.nav .ni-link.is-current { color: #F8F5EE; }
.nav .ni-link.is-current::after {
  content: ""; display: block; height: 2px; background: #6FE000;
  border-radius: 2px; margin-top: 3px;
}

/* ============================================================
   PAGE HEADER  (shared inner-page pattern, inlined here)
   ============================================================ */
.pg-header {
  background: #000; color: #F8F5EE;
  padding: 108px 0 84px; position: relative; overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.pg-header::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 100% at 0% 70%, rgba(111,224,0,.13), transparent 60%),
    radial-gradient(ellipse 40% 60% at 90% 10%, rgba(111,224,0,.07), transparent 55%);
}
.pg-header .wrap { position: relative; z-index: 2; }

.breadcrumb {
  display: flex; align-items: center; gap: 7px; font-size: 12px;
  color: rgba(255,255,255,.32); margin-bottom: 26px; letter-spacing: .05em;
}
.breadcrumb a { color: rgba(255,255,255,.32); transition: color 160ms; }
.breadcrumb a:hover { color: #6FE000; }
.breadcrumb .sep { color: rgba(255,255,255,.16); }
.breadcrumb .cur { color: rgba(255,255,255,.62); }

.pg-h1 {
  font-family: 'Kardige', sans-serif; font-size: clamp(46px, 7.5vw, 104px);
  font-weight: 400; line-height: .96; letter-spacing: -.025em;
  margin: 0 0 28px; color: #F8F5EE; max-width: 15ch;
}
.pg-h1 em { font-style: normal; color: #6FE000; text-shadow: 0 0 52px rgba(111,224,0,.38); }

.pg-lead {
  font-size: clamp(16px, 1.5vw, 19px); line-height: 1.58; font-weight: 300;
  color: #C0C0C0; max-width: 60ch; margin: 0 0 52px;
}

.pg-stats { display: flex; gap: 0; padding-top: 36px; border-top: 1px solid rgba(255,255,255,.09); flex-wrap: nowrap; }
.pg-stat { padding-right: 40px; margin-right: 40px; border-right: 1px solid rgba(255,255,255,.09); }
.pg-stat:last-child { border-right: 0; padding-right: 0; margin-right: 0; }
.pg-stat-num {
  font-family: 'Kardige', sans-serif; font-size: 44px; font-weight: 400; color: #6FE000;
  line-height: 1; letter-spacing: -.02em; display: block; margin-bottom: 5px;
}
.pg-stat-label {
  font-size: 11.5px; letter-spacing: .13em; text-transform: uppercase;
  color: rgba(255,255,255,.32); font-weight: 700; display: block;
}

/* ============================================================
   VOOR WIE  -  Particulier / Zakelijk split
   ============================================================ */
.aud-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
a.aud-card {
  position: relative; overflow: hidden; display: flex; flex-direction: column;
  background: #141414; border: 1px solid rgba(255,255,255,.09); border-radius: 22px;
  padding: 40px 38px 34px; min-height: 340px;
  transition: border-color 260ms cubic-bezier(.22,.61,.36,1), transform 260ms cubic-bezier(.22,.61,.36,1);
}
a.aud-card:hover { border-color: rgba(111,224,0,.42); transform: translateY(-4px); }
.aud-card .aud-mark {
  position: absolute; top: -30px; right: -10px; font-family: 'Kardige', sans-serif;
  font-size: 190px; line-height: 1; color: rgba(255,255,255,.035); pointer-events: none; user-select: none;
}
.aud-card .eye { margin-bottom: 16px; }
.aud-card h3 {
  font-family: 'Kardige', sans-serif; font-weight: 400; font-size: clamp(28px, 3vw, 38px);
  line-height: 1.05; letter-spacing: -.02em; color: #F8F5EE; margin: 0 0 16px;
}
.aud-card > p {
  font-size: 15.5px; line-height: 1.6; color: rgba(248,245,238,.62); margin: 0 0 22px; max-width: 42ch;
}
.aud-tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 0 0 28px; }
.aud-tags span {
  font-size: 12.5px; color: rgba(248,245,238,.7); padding: 6px 13px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14); transition: all 200ms;
}
a.aud-card:hover .aud-tags span { border-color: rgba(111,224,0,.28); }
.aud-card .arrow-link { margin-top: auto; color: #F8F5EE; }

/* ============================================================
   DIENSTEN  -  clusters of service cards (paper band)
   ============================================================ */
.svc-cluster { margin-bottom: 64px; }
.svc-cluster:last-child { margin-bottom: 0; }
.svc-cluster-head {
  display: flex; align-items: baseline; gap: 16px; margin-bottom: 22px;
  padding-bottom: 16px; border-bottom: 1px solid rgba(0,0,0,.1);
}
.svc-cluster-head .ix {
  font-family: 'Kardige', sans-serif; font-size: 20px; color: #3F8A00; line-height: 1; letter-spacing: -.02em;
}
.svc-cluster-head h2 {
  font-family: 'Kardige', sans-serif; font-weight: 400; font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -.02em; line-height: 1; margin: 0; color: #0A0A0A; flex: 1;
}
.svc-cluster-head .ct {
  font-size: 11.5px; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(0,0,0,.32); font-weight: 700; white-space: nowrap;
}

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

a.svc-card {
  display: flex; flex-direction: column; background: #fff; border: 1px solid rgba(0,0,0,.07);
  border-radius: 18px; padding: 28px 26px 24px; min-height: 248px;
  transition: transform 240ms cubic-bezier(.22,.61,.36,1), box-shadow 240ms cubic-bezier(.22,.61,.36,1), border-color 240ms;
}
a.svc-card:hover { transform: translateY(-4px); box-shadow: 0 22px 48px rgba(0,0,0,.12); border-color: rgba(111,224,0,.5); }

.svc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.svc-ico {
  width: 50px; height: 50px; border-radius: 13px; background: #0A0A0A; color: #6FE000;
  display: grid; place-items: center; flex-shrink: 0; transition: background 240ms;
}
.svc-ico svg { width: 23px; height: 23px; }
.svc-card:hover .svc-ico { background: #6FE000; }
.svc-card:hover .svc-ico svg { stroke: #0A0A0A; }
.svc-arr {
  width: 34px; height: 34px; border-radius: 50%; background: rgba(0,0,0,.05); color: #0A0A0A;
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 220ms;
}
.svc-card:hover .svc-arr { background: #6FE000; transform: translateX(3px); }
.svc-card:hover .svc-arr svg { stroke: #000; }

.svc-card h3 {
  font-family: 'Kardige', sans-serif; font-weight: 400; font-size: 25px; letter-spacing: -.01em;
  line-height: 1.08; color: #0A0A0A; margin: 0 0 10px;
}
.svc-card .svc-desc { font-size: 14.5px; line-height: 1.55; color: #5a5a56; margin: 0; max-width: 34ch; }
.svc-card .svc-foot { margin-top: auto; }
.svc-kick {
  font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
  color: #3F8A00; margin: 14px 0 0;
}

/* Featured wide card - Complete event organisatie */
a.svc-card.svc-wide { grid-column: span 2; }
.svc-wide h3 { font-size: 32px; }
.svc-wide .svc-desc { font-size: 15.5px; max-width: 52ch; }
.svc-chips { display: flex; flex-wrap: wrap; gap: 7px; margin: 18px 0 0; }
.svc-chips span {
  font-size: 12px; color: #4A4A4A; padding: 6px 12px; border-radius: 999px;
  border: 1px solid rgba(0,0,0,.13); background: rgba(0,0,0,.015); white-space: nowrap;
}
.svc-chips .svc-chip-more { color: #3F8A00; border-color: rgba(63,138,0,.3); font-weight: 600; }

/* ============================================================
   STEL JE BELEVING SAMEN  -  dark feature band
   ============================================================ */
.compose-d { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.compose-d .compose-copy h2 { font-size: clamp(34px, 4.4vw, 60px); line-height: 1.04; margin: 0 0 20px; color: #F8F5EE; }
.compose-d .compose-copy h2 em { font-style: normal; color: #6FE000; text-shadow: 0 0 44px rgba(111,224,0,.35); }
.compose-d .compose-copy p { font-size: 17px; line-height: 1.65; color: rgba(248,245,238,.66); margin: 0 0 28px; max-width: 46ch; }
.bd-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.bd-block {
  background: #141414; border: 1px solid rgba(255,255,255,.09); border-radius: 14px;
  padding: 18px 18px 16px; display: flex; align-items: flex-start; gap: 13px; transition: all 220ms cubic-bezier(.22,.61,.36,1);
}
.bd-block:hover { border-color: rgba(111,224,0,.42); transform: translateY(-3px); }
.bd-block .bnum { font-family: 'Kardige', sans-serif; font-size: 15px; color: #6FE000; line-height: 1; padding-top: 3px; }
.bd-block b { display: block; font-size: 15.5px; font-weight: 700; color: #F8F5EE; margin-bottom: 3px; }
.bd-block span { font-size: 12.5px; color: rgba(248,245,238,.5); line-height: 1.45; }
.bd-block .check {
  margin-left: auto; width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.2);
  flex-shrink: 0; display: grid; place-items: center; transition: all 220ms;
}
.bd-block:hover .check { background: #6FE000; border-color: #6FE000; }
.bd-block .check svg { width: 13px; height: 13px; opacity: 0; transition: opacity 160ms; }
.bd-block:hover .check svg { opacity: 1; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  a.svc-card.svc-wide { grid-column: span 2; }
}
@media (max-width: 900px) {
  .pg-header { padding: 80px 0 60px; }
  .pg-h1 { font-size: clamp(38px, 12vw, 64px); }
  .pg-stat { padding-right: 26px; margin-right: 26px; }
  .pg-stat-num { font-size: 34px; }
  .aud-grid { grid-template-columns: 1fr; }
  .compose-d { grid-template-columns: 1fr; gap: 38px; }
}
@media (max-width: 640px) {
  .svc-grid { grid-template-columns: 1fr; }
  a.svc-card.svc-wide { grid-column: span 1; }
  .bd-list { grid-template-columns: 1fr; }
  .pg-stats { gap: 0; }
  .pg-stat { padding-right: 14px; margin-right: 14px; }
  .pg-stat-num { font-size: 26px; }
  .pg-stat-label { font-size: 9.5px; letter-spacing: .08em; }
}
@media (max-width: 380px) {
  .pg-stat { padding-right: 10px; margin-right: 10px; }
  .pg-stat-num { font-size: 22px; }
  .pg-stat-label { font-size: 9px; letter-spacing: .05em; }
}
