/* ============================================================
   HIBOO , Je call staat gepland
   Merkrichtlijnen intact · zonder Bordeaux · conversiegericht
   ============================================================ */

:root {
  /* Brandboek kleuren */
  --rose:        #BC8474;
  --rose-deep:   #A9695A;
  --rose-ink:    #8E5546;
  --night:       #2E3A4D;
  --night-soft:  #46536b;
  --peach:       #F2C3AE;
  --blush:       #F6E4DE;
  --ivory:       #FBF7F3;
  --paper:       #FFFDFB;
  --line:        rgba(46,58,77,.12);
  --line-soft:   rgba(46,58,77,.07);

  --shadow-sm: 0 2px 10px rgba(142,85,70,.06);
  --shadow-md: 0 18px 44px -22px rgba(65,40,34,.28);
  --shadow-lg: 0 40px 90px -40px rgba(65,40,34,.45);

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Jost", "Segoe UI", sans-serif;

  --maxw: 1160px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);
  --radius: 20px;
  --radius-sm: 13px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(15px, 1.05vw, 16.5px);
  line-height: 1.65;
  color: var(--night);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Warme atmosferische achtergrond */
body::before {
  content: "";
  position: fixed; inset: 0;
  z-index: -2;
  background:
    radial-gradient(60% 45% at 82% -5%, rgba(242,195,174,.55), transparent 60%),
    radial-gradient(50% 40% at -8% 12%, rgba(246,228,222,.9), transparent 62%),
    radial-gradient(65% 55% at 108% 78%, rgba(242,195,174,.35), transparent 60%),
    var(--ivory);
}
/* subtiele korrel voor premium diepte */
body::after {
  content: "";
  position: fixed; inset: 0;
  z-index: -1; pointer-events: none; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

/* ---------- Typografie ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 500; color: var(--night); line-height: 1.06; letter-spacing: -.01em; }
h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); font-weight: 600; }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.55rem); font-weight: 600; }
em { font-style: italic; }

.label {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(11px, .82vw, 12.5px);
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--rose-deep);
  display: inline-flex; align-items: center; gap: .6rem;
}
.label::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--rose);
  display: inline-block; opacity: .9;
}
.lead { font-size: clamp(1.02rem, 1.5vw, 1.22rem); color: var(--night-soft); font-weight: 300; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
section { padding-block: clamp(3.4rem, 8vw, 6.5rem); position: relative; }
.eyebrow-block { max-width: 640px; }
.eyebrow-block h2 { margin-top: 1rem; }
.eyebrow-block .lead { margin-top: 1.15rem; }

/* ---------- Reveal animatie ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
[data-stagger] > * { transition-delay: calc(var(--i,0) * 80ms); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   TOP NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 130;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: .85rem var(--gutter);
  background: rgba(251,247,243,.72);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color .4s, background .4s, box-shadow .4s;
}
.nav.scrolled { border-bottom-color: var(--line-soft); box-shadow: var(--shadow-sm); }
.brand { display: flex; align-items: center; gap: .62rem; }
.brand svg, .brand img { width: 34px; height: 34px; }
.brand .wordmark {
  font-family: var(--serif); font-weight: 600; font-size: 1.55rem;
  letter-spacing: .18em; color: var(--night); padding-left: .12em;
}
.nav-right { display: flex; align-items: center; gap: 1.4rem; }
.nav-status {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; letter-spacing: .04em; color: var(--night-soft);
}
.nav-status .dot { width: 8px; height: 8px; border-radius: 50%; background: #4CAF7D; box-shadow: 0 0 0 0 rgba(76,175,125,.5); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(76,175,125,.45)} 70%{box-shadow:0 0 0 9px rgba(76,175,125,0)} 100%{box-shadow:0 0 0 0 rgba(76,175,125,0)} }
@media (max-width: 620px){ .nav-status span.txt{ display:none } }

/* ---------- Nav menu ---------- */
.nav-links { display: flex; align-items: center; gap: 1.9rem; }
.nav-links a { font-size: .92rem; letter-spacing: .01em; color: var(--night); position: relative; padding: .3rem 0; transition: color .3s; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 1.5px;
  background: var(--rose); transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease); }
.nav-links a:hover { color: var(--rose-deep); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.hamburger { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px;
  background: rgba(255,255,255,.6); cursor: pointer; padding: 0; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.hamburger span { width: 20px; height: 2px; background: var(--night); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.hamburger.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2){ opacity: 0; }
.hamburger.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { position: fixed; top: 0; left: 0; right: 0; z-index: 125;
  height: 100dvh; overflow-y: auto; -webkit-overflow-scrolling: touch;
  background: var(--paper); box-shadow: var(--shadow-lg); padding: 5.2rem var(--gutter) 2rem;
  display: flex; flex-direction: column; gap: .3rem;
  transform: translateY(-110%); transition: transform .5s var(--ease); }
.mobile-menu.open { transform: none; }
.mobile-menu a { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--night); padding: .7rem 0; border-bottom: 1px solid var(--line-soft); }
.mobile-menu a.btn { font-family: var(--sans); font-size: .95rem; font-weight: 500; color: #fff; margin-top: 1rem; justify-content: center; border-bottom: none; }
@media (max-width: 940px){
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav .btn.js-book { display: none; }
}
@media (min-width: 941px){ .mobile-menu { display: none; } }

/* ---------- Buttons ---------- */
.btn {
  --pad: 1rem 1.7rem;
  font-family: var(--sans); font-weight: 500; font-size: .92rem; letter-spacing: .02em;
  padding: var(--pad); border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; display: inline-flex; align-items: center; gap: .55rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s;
  white-space: nowrap;
}
.btn .arw { transition: transform .35s var(--ease); }
.btn:hover .arw { transform: translateX(4px); }
.btn-primary {
  background: linear-gradient(120deg, var(--rose) 0%, var(--rose-deep) 100%);
  color: #fff; box-shadow: 0 14px 30px -14px rgba(169,105,90,.85);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -14px rgba(169,105,90,.95); }
.btn-ghost { background: transparent; color: var(--night); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--rose); color: var(--rose-deep); transform: translateY(-2px); }
.btn-lg { --pad: 1.15rem 2.15rem; font-size: 1rem; }
.nav .btn { --pad: .72rem 1.35rem; font-size: .86rem; }
@media (max-width: 720px){ .nav .btn span.long{ display:none } }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-top: clamp(2.5rem, 6vw, 4.5rem); padding-bottom: clamp(2.5rem, 6vw, 4rem); }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
@media (max-width: 900px){ .hero-grid { grid-template-columns: 1fr; } }

.pill {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .5rem 1rem .5rem .6rem; border-radius: 999px;
  background: rgba(255,255,255,.7); border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm); backdrop-filter: blur(6px);
  font-size: .82rem; letter-spacing: .03em; color: var(--night);
}
.pill .check { width: 22px; height: 22px; border-radius: 50%; background: linear-gradient(135deg,var(--rose),var(--rose-deep)); color:#fff; display: grid; place-items: center; font-size: .7rem; }

.hero h1 {
  font-size: clamp(2.55rem, 6.4vw, 4.5rem);
  margin: 1.35rem 0 0;
  letter-spacing: -.018em;
}
.hero h1 .accent { font-style: italic; color: var(--rose-deep); }
.hero .lead { margin-top: 1.5rem; max-width: 33ch; }
.hero-cta { margin-top: 2.1rem; display: flex; flex-wrap: wrap; gap: .9rem 1.1rem; align-items: center; }
.hero-note { margin-top: 1.5rem; font-size: .86rem; color: var(--night-soft); display: flex; align-items: center; gap: .55rem; }
.hero-note .av { display: inline-flex; }
.hero-note .av img { width: 34px; height: 34px; border-radius: 50%; border: 2.5px solid var(--ivory); object-fit: cover; margin-left: -11px; box-shadow: var(--shadow-sm); }
.hero-note .av img:first-child { margin-left: 0; }

/* Hero visual , bewijs collage */
.hero-visual { position: relative; min-height: 380px; }
.hero-orb { position: absolute; inset: -6% 4% auto auto; width: 74%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, #F8D8C8, #C98C79 58%, #9E5E50); filter: blur(2px); opacity: .5; z-index: 0; }
.hero-cards { position: relative; z-index: 1; }
.hero-cards .rcard {
  position: absolute; width: 60%; background: #fff; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md); padding: .5rem; border: 1px solid var(--line-soft);
  overflow: hidden;
}
.hero-cards .rcard img { border-radius: 8px; }
.hero-cards .c1 { top: 0; left: 2%; transform: rotate(-4deg); width: 58%; animation: floaty 7s ease-in-out infinite; }
.hero-cards .c2 { top: 26%; right: 0; transform: rotate(4deg); width: 55%; z-index: 2; animation: floaty 8s ease-in-out infinite reverse; }
.hero-cards .c3 { bottom: -2%; left: 12%; transform: rotate(-2deg); width: 52%; animation: floaty 9s ease-in-out infinite; }
@keyframes floaty { 0%,100%{ translate: 0 0 } 50%{ translate: 0 -12px } }
@media (max-width: 900px){ .hero-visual{ min-height: 340px; margin-top: 1rem; } }
@media (max-width: 460px){ .hero-cards .rcard{ width: 62% } .hero-cards .c2{ width:58% } }

/* Marquee logobalk (vertrouwen) */
.trust { border-block: 1px solid var(--line-soft); background: rgba(255,255,255,.4); padding-block: 1.1rem; overflow: hidden; }
.trust .row { display: flex; gap: 3.2rem; align-items: center; white-space: nowrap; animation: slide 32s linear infinite; width: max-content; }
.trust .row span { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--night-soft); display: inline-flex; align-items: center; gap: .7rem; }
.trust .row span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--rose); display: inline-block; }
@keyframes slide { to { transform: translateX(-50%); } }
.trust:hover .row { animation-play-state: paused; }

/* ============================================================
   DE CALL
   ============================================================ */
.call-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
@media (max-width: 860px){ .call-grid{ grid-template-columns: 1fr } }
.steps { list-style: none; display: grid; gap: 1rem; margin-top: 2rem; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; align-items: start;
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius-sm);
  padding: 1.25rem 1.4rem; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s; }
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.step .n { font-family: var(--serif); font-weight: 600; font-size: 1.5rem; color: var(--rose-deep);
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: var(--blush); border: 1px solid rgba(188,132,116,.25); }
.step h3 { font-size: 1.12rem; margin-bottom: .25rem; }
.step p { font-size: .92rem; color: var(--night-soft); }

.call-aside { background: linear-gradient(160deg, var(--night) 0%, #263141 100%); color: #fff; border-radius: var(--radius);
  padding: clamp(1.6rem,3vw,2.4rem); box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.call-aside::after { content: ""; position: absolute; right: -30%; top: -30%; width: 70%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(242,195,174,.5), transparent 65%); }
.call-aside .label { color: var(--peach); }
.call-aside h3 { color: #fff; font-size: clamp(1.4rem,2.4vw,1.9rem); margin: .8rem 0 1rem; position: relative; }
.call-aside p { color: rgba(255,255,255,.8); font-size: .95rem; position: relative; }
.aside-meta { display: flex; gap: 1.6rem; margin-top: 1.6rem; position: relative; flex-wrap: wrap; }
.aside-meta div { display: grid; }
.aside-meta b { font-family: var(--serif); font-size: 1.8rem; font-weight: 600; color: var(--peach); }
.aside-meta small { font-size: .78rem; letter-spacing: .06em; color: rgba(255,255,255,.65); text-transform: uppercase; }

/* ============================================================
   DIT IS VOOR JOU
   ============================================================ */
.fit-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(1.5rem,4vw,3rem); align-items: start; margin-top: 2.4rem; }
@media (max-width: 860px){ .fit-grid{ grid-template-columns: 1fr } }
.fit-list { list-style: none; display: grid; gap: .5rem; }
.fit-list li { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start;
  padding: 1.05rem 1.25rem; background: var(--paper); border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); }
.fit-list .tick { width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg,var(--rose),var(--rose-deep));
  color: #fff; display: grid; place-items: center; font-size: .8rem; flex: none; }
.fit-list b { font-weight: 500; color: var(--night); }
.fit-list span { color: var(--night-soft); }
.fit-not { background: var(--blush); border-radius: var(--radius); padding: 1.6rem 1.5rem; border: 1px solid rgba(188,132,116,.2); align-self: start; }
.fit-not h3 { font-size: 1.15rem; margin-bottom: .9rem; }
.fit-not ul { list-style: none; display: grid; gap: .7rem; }
.fit-not li { display: grid; grid-template-columns: auto 1fr; gap: .7rem; font-size: .9rem; color: var(--night-soft); }
.fit-not .x { color: var(--rose-ink); font-weight: 600; }

/* ============================================================
   RESULTATEN , de muur
   ============================================================ */
.results { position: relative; }
.results-head { display: flex; justify-content: space-between; align-items: end; gap: 1.5rem; flex-wrap: wrap; }
.stat-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin: 2.4rem 0 2.8rem; }
@media (max-width: 760px){ .stat-row{ grid-template-columns: repeat(2,1fr) } }
.stat { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius-sm);
  padding: 1.35rem 1.3rem; box-shadow: var(--shadow-sm); }
.stat b { font-family: var(--serif); font-weight: 600; font-size: clamp(1.9rem,3.6vw,2.7rem); color: var(--rose-deep); display: block; line-height: 1; }
.stat small { display: block; margin-top: .5rem; font-size: .82rem; color: var(--night-soft); letter-spacing: .02em; }

.wall { columns: 4 250px; column-gap: 1.1rem; }
.wall .tile {
  break-inside: avoid; margin-bottom: 1.1rem; background: #fff; border-radius: var(--radius-sm);
  border: 1px solid var(--line-soft); box-shadow: var(--shadow-sm); overflow: hidden; padding: 6px;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  cursor: zoom-in; position: relative;
}
.wall .tile img { border-radius: 9px; width: 100%; height: auto; }
.wall .tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.wall .tile.hidden { display: none; }
.wall .tile .badge { position: absolute; top: 12px; left: 12px; z-index: 2;
  font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 500;
  background: rgba(251,247,243,.9); color: var(--rose-deep); padding: .28rem .6rem; border-radius: 999px;
  border: 1px solid var(--line-soft); backdrop-filter: blur(4px); }
.wall-fade { position: relative; }
.more-wrap { display: flex; flex-direction: column; align-items: center; gap: .7rem; margin-top: 2.4rem; }
.more-wrap .count { font-size: .85rem; color: var(--night-soft); letter-spacing: .03em; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(30,22,20,.82);
  backdrop-filter: blur(8px); display: none; place-items: center; padding: 5vw; cursor: zoom-out; }
.lightbox.open { display: grid; animation: fade .3s ease; }
.lightbox img { max-width: min(92vw, 560px); max-height: 88vh; border-radius: 14px; box-shadow: var(--shadow-lg); }
.lightbox .lb-close { position: absolute; top: 22px; right: 26px; color: #fff; font-size: 2rem; cursor: pointer; line-height: 1; opacity: .8; }
@keyframes fade { from{opacity:0} to{opacity:1} }

/* ============================================================
   VERDIENMODELLEN
   ============================================================ */
.models { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 1.1rem; margin-top: 2.6rem; }
.model { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 1.7rem 1.5rem; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s;
  display: flex; flex-direction: column; align-items: stretch; text-align: left;
  font-family: var(--sans); color: inherit; cursor: pointer; width: 100%; }
.model .model-more { margin-top: auto; padding-top: 1.1rem; font-weight: 500; font-size: .84rem;
  letter-spacing: .02em; color: var(--rose-deep); display: inline-flex; align-items: center; gap: .4rem; }
.model .model-more::after { content: ""; width: 14px; height: 8px; margin-top: 1px;
  background: currentColor; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 8'%3E%3Cpath d='M0 4h11M8 1l3 3-3 3' fill='none' stroke='black' stroke-width='1.4'/%3E%3C/svg%3E") no-repeat center/contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 8'%3E%3Cpath d='M0 4h11M8 1l3 3-3 3' fill='none' stroke='black' stroke-width='1.4'/%3E%3C/svg%3E") no-repeat center/contain;
  transition: transform .35s var(--ease); }
.model:hover .model-more::after { transform: translateX(4px); }
.model:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(188,132,116,.4); }
.model::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: linear-gradient(90deg,var(--peach),var(--rose)); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
.model:hover::before { transform: scaleX(1); }
.model .ico { width: 48px; height: 48px; border-radius: 13px; background: var(--blush); display: grid; place-items: center; margin-bottom: 1.1rem; color: var(--rose-deep); }
.model .ico svg { width: 24px; height: 24px; }
.model h3 { font-size: 1.28rem; margin-bottom: .5rem; }
.model p { font-size: .9rem; color: var(--night-soft); }
.model .tag { position: absolute; top: 1.4rem; right: 1.3rem; font-size: .64rem; letter-spacing: .1em; text-transform: uppercase;
  color: #fff; background: linear-gradient(120deg,var(--rose),var(--rose-deep)); padding: .3rem .6rem; border-radius: 999px; font-weight: 500; }

/* ============================================================
   WAT IS HIBOO
   ============================================================ */
.about { background:
    radial-gradient(60% 60% at 88% 8%, rgba(242,195,174,.4), transparent 60%),
    linear-gradient(180deg, rgba(246,228,222,.5), rgba(251,247,243,0) 40%); }
.about-quote { font-family: var(--serif); font-size: clamp(1.5rem,3.4vw,2.4rem); font-style: italic; font-weight: 500;
  color: var(--night); max-width: 20ch; line-height: 1.18; }
.about-quote b { color: var(--rose-deep); font-style: normal; font-weight: 600; }
.tiers { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 2.6rem; }
@media (max-width: 760px){ .tiers{ grid-template-columns: 1fr } }
.tier { border-radius: var(--radius); padding: 1.9rem 1.7rem; border: 1px solid var(--line-soft); box-shadow: var(--shadow-sm); position: relative; }
.tier.inner { background: var(--paper); }
.tier.elite { background: linear-gradient(160deg, var(--night), #263141); color: #fff; box-shadow: var(--shadow-lg); }
.tier .kicker { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--rose-deep); font-weight: 500; }
.tier.elite .kicker { color: var(--peach); }
.tier h3 { font-size: 1.7rem; margin: .5rem 0 1rem; }
.tier.elite h3 { color: #fff; }
.tier ul { list-style: none; display: grid; gap: .7rem; }
.tier li { display: grid; grid-template-columns: auto 1fr; gap: .8rem; font-size: .92rem; align-items: start; }
.tier.inner li { color: var(--night-soft); }
.tier.elite li { color: rgba(255,255,255,.82); }
.tier .d { width: 7px; height: 7px; border-radius: 50%; background: var(--rose); margin-top: .5rem; display: inline-block; }
.tier.elite .d { background: var(--peach); }
.tier .crown { position: absolute; top: 1.6rem; right: 1.6rem; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  background: var(--peach); color: var(--night); padding: .3rem .65rem; border-radius: 999px; font-weight: 600; }

/* ============================================================
   BELOFTE
   ============================================================ */
.promise-tiles { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.1rem; margin-top: 2.6rem; }
@media (max-width: 700px){ .promise-tiles{ grid-template-columns: 1fr } }
.ptile { text-align: center; background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 2rem 1.4rem; box-shadow: var(--shadow-sm); }
.ptile b { font-family: var(--serif); font-weight: 600; font-size: clamp(2.4rem,5vw,3.4rem); color: var(--rose-deep); display: block; line-height: 1; }
.ptile h3 { font-size: 1.1rem; margin: .8rem 0 .4rem; }
.ptile p { font-size: .87rem; color: var(--night-soft); }

/* ============================================================
   SLOT CTA
   ============================================================ */
.final { text-align: center; }
.final-card { background: linear-gradient(155deg, var(--rose) 0%, var(--rose-deep) 55%, var(--rose-ink) 100%);
  border-radius: clamp(20px,4vw,34px); padding: clamp(2.6rem,6vw,4.6rem) var(--gutter); color: #fff; position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg); }
.final-card::before { content: ""; position: absolute; inset: -40% auto auto -20%; width: 60%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.28), transparent 60%); }
.final-card::after { content: ""; position: absolute; inset: auto -15% -45% auto; width: 55%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(46,58,77,.35), transparent 62%); }
.final-card .label { color: rgba(255,255,255,.85); position: relative; }
.final-card .label::before { background: rgba(255,255,255,.7); }
.final-card h2 { color: #fff; font-size: clamp(2rem,5vw,3.2rem); margin: 1rem auto 0; max-width: 16ch; position: relative; }
.final-card p { color: rgba(255,255,255,.9); max-width: 44ch; margin: 1.2rem auto 0; position: relative; }
.final-card .btn { margin-top: 2rem; position: relative; }
.final-card .btn-primary { background: #fff; color: var(--rose-ink); box-shadow: 0 18px 40px -16px rgba(0,0,0,.5); }
.final-card .btn-primary:hover { background: var(--ivory); }
.final-card .microcopy { margin-top: 1.1rem; font-size: .82rem; color: rgba(255,255,255,.8); position: relative; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--night); color: rgba(255,255,255,.72); padding-block: clamp(3rem,6vw,4.5rem) 2rem; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
@media (max-width: 760px){ .foot-grid{ grid-template-columns: 1fr; gap: 2rem } }
.foot-brand .brand .wordmark { color: #fff; }
.foot-brand p { margin-top: 1.1rem; max-width: 34ch; font-size: .9rem; color: rgba(255,255,255,.6); }
.foot-brand .socials { display: flex; gap: .6rem; margin-top: 1.4rem; }
.foot-brand .socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18);
  display: grid; place-items: center; transition: background .3s, border-color .3s, transform .3s; color: #fff; }
.foot-brand .socials a:hover { background: var(--rose); border-color: var(--rose); transform: translateY(-3px); }
.foot-brand .socials svg { width: 18px; height: 18px; }
.foot-col h4 { font-family: var(--sans); font-weight: 500; font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--peach); margin-bottom: 1.1rem; }
.foot-col ul { list-style: none; display: grid; gap: .7rem; }
.foot-col a, .foot-col li { font-size: .9rem; color: rgba(255,255,255,.66); transition: color .3s; }
.foot-col a:hover { color: #fff; }
.foot-note[data-placeholder]::after { content: " · in te vullen"; color: var(--peach); opacity: .6; font-size: .78em; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 2.6rem; padding-top: 1.5rem;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .82rem; color: rgba(255,255,255,.5); }
.foot-legal { display: inline-flex; gap: 1.5rem; flex-wrap: wrap; }
.foot-bottom a:hover { color: #fff; }

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  padding: .8rem var(--gutter) calc(.8rem + env(safe-area-inset-bottom));
  background: rgba(251,247,243,.9); backdrop-filter: blur(14px); border-top: 1px solid var(--line-soft);
  display: none; align-items: center; justify-content: space-between; gap: 1rem;
  transform: translateY(110%); transition: transform .5s var(--ease); box-shadow: 0 -10px 30px -18px rgba(65,40,34,.4); }
.sticky-cta.show { transform: none; }
.sticky-cta .txt { display: grid; }
.sticky-cta .txt b { font-family: var(--serif); font-weight: 600; font-size: 1rem; color: var(--night); }
.sticky-cta .txt small { font-size: .74rem; color: var(--night-soft); }
.sticky-cta .btn { --pad: .8rem 1.3rem; font-size: .86rem; }
@media (max-width: 760px){ .sticky-cta { display: flex; } }

/* ============================================================
   COOKIEBANNER
   ============================================================ */
.cookie { position: fixed; z-index: 120; left: var(--gutter); right: var(--gutter); bottom: var(--gutter);
  max-width: 440px; margin-left: auto;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 1.5rem 1.5rem 1.35rem;
  transform: translateY(140%); transition: transform .6s var(--ease); }
.cookie.show { transform: none; }
.cookie h4 { font-family: var(--serif); font-weight: 600; font-size: 1.25rem; display: flex; align-items: center; gap: .5rem; }
.cookie p { font-size: .85rem; color: var(--night-soft); margin: .6rem 0 1.1rem; }
.cookie p a { color: var(--rose-deep); text-decoration: underline; text-underline-offset: 2px; }
.cookie-actions { display: flex; gap: .6rem; flex-wrap: wrap; }
.cookie-actions .btn { --pad: .7rem 1.15rem; font-size: .84rem; flex: 1; justify-content: center; }
.cookie-actions .btn-primary { flex: 1.3; }
.cookie .prefs-link { background: none; border: none; color: var(--night-soft); font-family: var(--sans); font-size: .8rem; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; margin-top: .9rem; display: inline-block; }
@media (max-width: 760px){ .cookie{ bottom: calc(72px + var(--gutter)); } }

/* ============================================================
   MODEL MODAL
   ============================================================ */
.modal { position: fixed; inset: 0; z-index: 210; display: none; place-items: center; padding: 5vw;
  background: rgba(30,22,20,.55); backdrop-filter: blur(8px); }
.modal.open { display: grid; animation: fade .3s ease; }
.modal-card { position: relative; width: min(560px, 100%); max-height: 88vh; overflow-y: auto;
  background: var(--paper); border-radius: var(--radius); padding: clamp(1.8rem,4vw,2.6rem);
  box-shadow: var(--shadow-lg); border: 1px solid var(--line-soft);
  transform: translateY(14px); transition: transform .4s var(--ease); }
.modal.open .modal-card { transform: none; }
.modal-close { position: absolute; top: 1rem; right: 1.1rem; width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line-soft); background: #fff; font-size: 1.4rem; line-height: 1; color: var(--night-soft);
  cursor: pointer; transition: background .3s, color .3s; }
.modal-close:hover { background: var(--blush); color: var(--rose-ink); }
.modal-card h3 { font-size: clamp(1.6rem,3.4vw,2.1rem); margin: .7rem 0 1.1rem; }
.modal-body { color: var(--night-soft); }
.modal-body h4 { font-family: var(--sans); font-weight: 500; font-size: .78rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--rose-deep); margin: 1.3rem 0 .4rem; }
.modal-body p { margin-bottom: .3rem; }
.modal-card .btn { margin-top: 1.8rem; width: 100%; justify-content: center; }

/* focus */
:focus-visible { outline: 2px solid var(--rose-deep); outline-offset: 3px; border-radius: 4px; }
