/* HERO */
.hero {
  position: relative;
  padding: var(--space-7) 0 var(--space-6);
  background:
    radial-gradient(1200px 400px at 80% -10%, rgba(126,217,87,.18), transparent 60%),
    radial-gradient(900px 500px at 0% 0%, rgba(17,53,151,.15), transparent 60%),
    var(--c-bg);
  overflow: hidden;
}
/* Compacte hero: kortere versie zodat flow direct zichtbaar is zonder scroll */
.hero--compact {
  padding: var(--space-5) 0 var(--space-4);
}
.hero--compact .container { display: flex; flex-direction: column; gap: var(--space-3); }
.hero--compact .hero__title {
  font-size: clamp(24px, 6vw, 36px);
  margin: 0;
  line-height: 1.1;
}
.hero--compact .hero__sub {
  font-size: var(--fs-md);
  margin: 0;
  max-width: 36ch;
}
.hero--compact .hero__cta { margin-top: var(--space-2); }
.hero--compact .section__eyebrow { margin-bottom: 0; }
.hero__meta {
  margin: 0;
  font-size: var(--fs-xs);
  color: rgba(255,255,255,.9);
}
.hero--photo .hero__meta { color: rgba(255,255,255,.9); text-shadow: 0 1px 4px rgba(0,0,0,.4); }
.hero__meta a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.hero--photo {
  color: #fff;
  background-size: cover;
  background-position: center;
}
.hero--photo::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(17,53,151,.75), rgba(17,53,151,.35) 55%, rgba(0,0,0,.55));
  z-index: 0;
}
.hero--photo .container { position: relative; z-index: 1; }
.hero--photo .hero__sub,
.hero--photo .section__eyebrow,
.hero--photo .hero__title { color: #fff; text-shadow: 0 2px 6px rgba(0,0,0,.35); }
.hero--photo .hero__sub { color: rgba(255,255,255,.95); }

/* Ghost-button op foto-hero: goed leesbaar wit */
.hero--photo .btn--ghost {
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.65);
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero--photo .btn--ghost:hover {
  background: rgba(255,255,255,.18);
  border-color: #fff;
}
.hero__title {
  font-size: clamp(28px, 7vw, 44px);
  letter-spacing: -.01em;
}
.hero__sub {
  color: var(--c-text-muted);
  font-size: var(--fs-lg);
  max-width: 38ch;
}
.hero__cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-5);
}
@media (min-width: 560px) {
  .hero__cta { flex-direction: row; }
}

/* SECTION HEADER */
.section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: var(--space-4);
}
.section__eyebrow {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--c-text-muted);
}

/* STEP BADGE — prominent voor de wizard-stappen op homepage */
.step-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 8px;
  background: var(--c-accent-blue);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  font-size: var(--fs-md);
  margin-bottom: var(--space-3);
  box-shadow: 0 4px 12px rgba(17,53,151,.28);
  letter-spacing: -.005em;
}
.step-badge__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #fff;
  color: var(--c-accent-blue);
  font-size: var(--fs-md);
  font-weight: 800;
}
.step-badge__total { opacity: .9; font-weight: 500; font-size: var(--fs-sm); margin-left: 4px; }

.step-progress {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: var(--space-5) 0;
  justify-content: center;
}
.step-progress__dot {
  width: 12px; height: 12px;
  border-radius: 999px;
  background: var(--c-border);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.step-progress__dot--done { background: var(--c-primary); }
.step-progress__dot--active {
  background: var(--c-primary);
  transform: scale(1.4);
  box-shadow: 0 0 0 5px rgba(31,161,26,.22);
}
.step-progress__line {
  flex: 0 0 40px;
  height: 3px;
  border-radius: 2px;
  background: var(--c-border);
  transition: background .2s ease;
}
.step-progress__line--done { background: var(--c-primary); }

/* STEP 3 TEASER — CTA naar flow onder stap 2 */
.step-teaser {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--space-3);
  align-items: center;
  margin-top: var(--space-5);
  padding: var(--space-4);
  background: linear-gradient(135deg, rgba(17,53,151,.06), rgba(31,161,26,.08));
  border: 1px solid var(--c-border);
  border-left: 4px solid var(--c-primary);
  border-radius: var(--radius-md);
  color: var(--c-text);
  text-decoration: none;
  transition: box-shadow .15s ease, transform .05s ease;
}
.step-teaser:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }
.step-teaser__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: var(--c-accent-blue);
  color: #fff;
  border-radius: 999px;
}
.step-teaser__badge .step-badge__num {
  width: auto; height: auto;
  background: transparent;
  color: #fff;
  font-size: var(--fs-lg);
}
.step-teaser__body { display: flex; flex-direction: column; gap: 2px; }
.step-teaser__body strong { font-size: var(--fs-md); color: var(--c-text); }
.step-teaser__body span { font-size: var(--fs-sm); color: var(--c-text-muted); }
.step-teaser__arrow {
  font-size: 22px;
  color: var(--c-primary);
  transition: transform .15s ease;
}
.step-teaser:hover .step-teaser__arrow { transform: translateX(4px); }

/* Zorgt dat smooth-scroll doelen niet onder de sticky site-header verdwijnen */
[id="int-title"], [id="aud-title"], [id="cat-title"],
#int-section, #aud-section {
  scroll-margin-top: 80px;
}

/* Aangekomen op een stap-sectie — subtiele "attentie" animatie */
.is-arrived .step-badge {
  animation: stepArrive .9s ease-out;
}
@keyframes stepArrive {
  0%   { transform: translateY(-4px) scale(.98); box-shadow: 0 4px 12px rgba(17,53,151,.28); }
  40%  { transform: translateY(0) scale(1.04); box-shadow: 0 8px 22px rgba(17,53,151,.4); }
  100% { transform: translateY(0) scale(1);    box-shadow: 0 4px 12px rgba(17,53,151,.28); }
}
.is-arrived .step-progress__dot--active {
  animation: dotPop .9s ease-out;
}
@keyframes dotPop {
  0%   { transform: scale(1.4); }
  40%  { transform: scale(1.9); box-shadow: 0 0 0 10px rgba(31,161,26,.2); }
  100% { transform: scale(1.4); box-shadow: 0 0 0 5px rgba(31,161,26,.22); }
}
@media (prefers-reduced-motion: reduce) {
  .is-arrived .step-badge, .is-arrived .step-progress__dot--active { animation: none; }
}

/* DOELGROEP GRID */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

/* INTENTIE — mobile-first: dominante hero + compacte secundaire opties */
.intent-stack {
  display: grid;
  gap: var(--space-3);
}

/* Hero-kaart voor primaire keuze (Activiteit + eten) */
.intent-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-3);
  align-items: end;
  min-height: 168px;
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  color: #fff;
  text-align: left;
  text-decoration: none;
  background-size: cover;
  background-position: center;
  border: 2px solid var(--c-primary);
  box-shadow: 0 8px 24px rgba(17,53,151,.22);
  overflow: hidden;
  cursor: pointer;
  transition: transform .1s ease, box-shadow .15s ease;
}
.intent-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(17,53,151,.05) 30%, rgba(17,53,151,.88) 100%);
  pointer-events: none;
}
.intent-hero:hover { box-shadow: 0 10px 28px rgba(17,53,151,.28); }
.intent-hero:active { transform: scale(.99); }
.intent-hero.is-selected {
  outline: 3px solid var(--c-primary);
  outline-offset: 2px;
}
.intent-hero__label {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
}
.intent-hero__body {
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 6px rgba(0,0,0,.4);
}
.intent-hero__title {
  font-size: 22px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -.01em;
  margin-bottom: 4px;
  color: #fff;
}
.intent-hero__sub {
  font-size: var(--fs-md);
  color: rgba(255,255,255,.95);
}
.intent-hero__arrow {
  position: relative;
  z-index: 1;
  width: 46px; height: 46px;
  background: #fff;
  color: var(--c-primary);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  flex: 0 0 auto;
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
}

/* Secundaire opties — compact, nog steeds duidelijk klikbaar */
.intent-compact {
  display: grid;
  gap: var(--space-2);
}
.intent-compact__item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 14px var(--space-4);
  background: #fff;
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--c-text);
  min-height: var(--tap-target);
  cursor: pointer;
  text-align: left;
  transition: border-color .15s ease, box-shadow .15s ease, transform .05s ease;
}
.intent-compact__item:hover {
  border-color: var(--c-primary);
  box-shadow: 0 2px 10px rgba(17,53,151,.08);
}
.intent-compact__item:active { transform: scale(.995); }
.intent-compact__item.is-selected {
  border-color: var(--c-primary);
  background: rgba(31,161,26,.06);
  box-shadow: var(--glow-primary);
}

/* Aanbevolen optie — dezelfde rij-structuur, alleen met accent + inline badge */
.intent-compact__item--recommended {
  border-color: var(--c-primary);
  background: linear-gradient(180deg, #fff 0%, rgba(31,161,26,.05) 100%);
  box-shadow: 0 4px 14px rgba(31,161,26,.14);
}
.intent-compact__item--recommended .intent-compact__icon {
  background: var(--c-primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(31,161,26,.3);
}
.intent-compact__badge {
  display: inline-block;
  margin-left: 8px;
  font-size: 9px;
  padding: 2px 7px;
  vertical-align: middle;
}
.intent-compact__icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--c-accent-blue), #1d2f7a);
  color: #fff;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex: 0 0 auto;
}
.intent-compact__item[data-tone="secondary"] .intent-compact__icon {
  background: linear-gradient(135deg, #6b7280, #4b5563);
}
.intent-compact__text { flex: 1; min-width: 0; }
.intent-compact__title {
  font-weight: 700;
  font-size: var(--fs-md);
  line-height: 1.2;
  margin-bottom: 2px;
}
.intent-compact__sub {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  line-height: 1.3;
}
.intent-compact__arrow {
  color: var(--c-text-muted);
  font-size: 22px;
  line-height: 1;
  flex: 0 0 auto;
  padding-left: 4px;
}

/* Mobiel: beetje extra ruimte voor hero, minder witruimte erboven */
@media (max-width: 559px) {
  .intent-hero { min-height: 180px; padding: var(--space-4); }
  .intent-hero__title { font-size: 24px; }
}

/* ACTIVITEITEN CATEGORIEEN */
.cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

/* Secundaire sectie — mag nooit concurreren met de boekflow */
.section--secondary {
  background: var(--c-surface);
  padding-top: var(--space-5);
  padding-bottom: var(--space-5);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.section--secondary .section__eyebrow {
  color: var(--c-text-muted);
  text-transform: none;
  letter-spacing: 0;
  font-size: var(--fs-sm);
  font-weight: 500;
}
.section--secondary .section__title--sm {
  font-size: var(--fs-lg);
  font-weight: 700;
  margin: 2px 0 0;
  letter-spacing: -.005em;
}
.section__head--simple { margin-bottom: var(--space-3); }
.section--secondary__cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  align-items: center;
  margin-top: var(--space-4);
}
.section--secondary__cta .btn--primary {
  order: 1;
  width: 100%;
  max-width: 360px;
  padding: 14px 24px;
  font-size: var(--fs-md);
  font-weight: 700;
  min-height: 52px;
  box-shadow: 0 6px 18px rgba(31,161,26,.28);
}
/* "Alles bekijken" als subtiele tekstlink — mag nooit concurreren */
.section--secondary__cta .btn--ghost {
  order: 2;
  background: transparent;
  border: none;
  color: var(--c-text-muted);
  font-size: var(--fs-sm);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 6px 10px;
  min-height: 0;
  box-shadow: none;
}
.section--secondary__cta .btn--ghost:hover {
  color: var(--c-text);
  background: transparent;
}

/* Compacte tiles — minder dominant, grotere scanbaarheid */
.cat-grid--compact { gap: var(--space-2); }
.cat-grid--compact .tile.tile--compact {
  min-height: 104px;
  padding: var(--space-3);
  border-radius: var(--radius-md);
  filter: saturate(.7) brightness(.92);
  opacity: .92;
  transition: filter .15s ease, opacity .15s ease, transform .05s ease;
}
.cat-grid--compact .tile.tile--compact .tile__title {
  font-size: var(--fs-md);
}
.cat-grid--compact .tile.tile--compact .tile__info {
  font-size: var(--fs-xs);
  opacity: .88;
}
.cat-grid--compact .tile.tile--compact:hover {
  filter: saturate(1) brightness(1);
  opacity: 1;
}
.cat-grid--compact .tile.tile--compact:active { transform: scale(.99); }

@media (min-width: 560px) {
  .section--secondary__cta { flex-direction: row; justify-content: center; gap: var(--space-3); }
  .section--secondary__cta .btn--primary { order: 0; width: auto; }
  .section--secondary__cta .btn--ghost   { order: 1; }
}

/* SOCIAL PROOF — compact, ondersteunend aan de boekflow */
.proof-compact { padding: var(--space-5) 0; }
.proof-score {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 28px;
  color: var(--c-text);
  margin-bottom: var(--space-2);
  flex-wrap: wrap;
  text-align: center;
}
.proof-score__star { font-size: 32px; }
.proof-score__stars {
  position: relative;
  display: inline-block;
  font-size: 36px;
  letter-spacing: 2px;
  line-height: 1;
}
.proof-score__stars-bg { color: rgba(0,0,0,.18); }
.proof-score__stars-fg {
  position: absolute;
  top: 0; left: 0;
  width: var(--fill, 100%);
  overflow: hidden;
  white-space: nowrap;
  color: var(--c-rating-star);
}
/* Standaard sterren op review-lijsten (home-proof-grid, recensies, product) */
.proof__stars { color: var(--c-rating-star); letter-spacing: 1px; line-height: 1; }

/* Ervaringenpagina — zachte warme achtergrond */
body.reviews-page { background: var(--c-reviews-page-bg); }

/* Review-formulier ("Schrijf een ervaring") — mobile-first accordion */
.review-form { margin: 0 0 var(--space-4); }
.review-form__toggle { min-height: var(--tap-target); }
.review-form__body {
  margin-top: var(--space-3);
  padding: var(--space-4);
  background: var(--c-review-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.review-form__body[hidden] { display: none; }
.review-form__field { display: flex; flex-direction: column; gap: 6px; }
.review-form__label { font-size: var(--fs-sm); font-weight: 600; }
.review-form__field input,
.review-form__field textarea {
  padding: 12px 14px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  background: #fff;
  font: inherit;
  min-height: var(--tap-target);
  width: 100%;
  box-sizing: border-box;
}
.review-form__field textarea { min-height: 110px; resize: vertical; }
.review-form__field input:focus,
.review-form__field textarea:focus {
  outline: 2px solid var(--c-accent-orange);
  outline-offset: 1px;
  border-color: var(--c-accent-orange);
}
.review-form__error {
  font-size: var(--fs-xs);
  color: var(--c-label-popular);
  min-height: 1em;
}
.review-form__submit { align-self: flex-start; min-height: var(--tap-target); }
.proof-score strong { font-weight: 800; letter-spacing: -.005em; }
.proof-score__meta { color: var(--c-text-muted); }
.proof-compact .section__title--sm { margin: 0 0 var(--space-3); }
.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2);
}
@media (min-width: 560px) {
  .proof-grid { grid-template-columns: 1fr 1fr; gap: var(--space-3); }
}
.proof-card {
  margin: 0;
  padding: var(--space-3) var(--space-4);
  background: var(--c-review-surface);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-float);
  transition: transform 180ms ease-out, box-shadow 180ms ease-out;
}
.proof-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-float-hover);
}
.proof-card blockquote {
  margin: 0 0 6px;
  font-size: var(--fs-sm);
  line-height: 1.45;
  color: var(--c-text);
}
.proof-card figcaption {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
}
.proof-cta {
  text-align: center;
  margin-top: var(--space-3);
}
.proof-cta .btn--ghost { font-size: var(--fs-sm); }

/* CHATBOT BLOK — alternatieve route voor twijfelaars, mag nooit dominant zijn */
.chatblock {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-3);
  align-items: center;
  padding: var(--space-4);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(17,53,151,.06), rgba(156,26,161,.07));
  border: 1px solid var(--c-border);
}
.chatblock__icon {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--c-secondary);
  border-radius: 999px;
  font-size: 20px;
  flex: 0 0 auto;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.chatblock__body { min-width: 0; }
.chatblock__title {
  font-size: var(--fs-md);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 2px;
}
.chatblock__sub {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  margin: 0;
  line-height: 1.35;
}
.chatblock__cta {
  grid-column: 1 / -1;
  justify-self: stretch;
  margin-top: var(--space-2);
  font-size: var(--fs-md);
  font-weight: 700;
  padding: 12px 18px;
  box-shadow: 0 4px 14px rgba(156,26,161,.28);
}
.chatblock__cta:hover { box-shadow: 0 6px 18px rgba(156,26,161,.35); }

@media (min-width: 560px) {
  .chatblock { grid-template-columns: auto 1fr auto; gap: var(--space-4); padding: var(--space-4) var(--space-5); }
  .chatblock__cta { grid-column: auto; justify-self: end; margin-top: 0; }
}

/* FINAL CTA */
.cta-section {
  text-align: center;
  padding: var(--space-7) var(--space-4);
  background: var(--c-surface);
  border-radius: var(--radius-lg);
}
