/* ============================================
   Privada Kids Spa — Bento / Playful edition
   Inspired by user's Figma: bold sans + italic
   serif, pastel bento blocks, blob & squiggle.
   ============================================ */

:root {
  /* Surface */
  --bg: #ffffff;
  --bg-soft: #fafaf7;
  --paper: #ffffff;

  /* Brand pastels — bento card fills */
  --green:    #34d65f;
  --green-d:  #25a849;
  --lavender: #c5b6f5;
  --lavender-d:#a895eb;
  --lime:     #d8f574;
  --lime-d:   #b8d94f;
  --pink:     #ffb4d4;
  --pink-d:   #ff8ab8;
  --yellow:   #f5e843;
  --yellow-d: #e8d420;
  --orange:   #ffb380;

  /* Ink */
  --ink:      #0a0a0a;
  --ink-soft: #3a3a3a;
  --ink-mute: #8a8a8a;
  --ink-line: rgba(10, 10, 10, 0.1);

  /* Type */
  --font-sans:   "Inter Tight", "Inter", system-ui, sans-serif;
  --font-serif:  "Playfair Display", "Cormorant Garamond", serif;

  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --radius-full: 999px;

  --shadow-soft: 0 2px 8px -2px rgba(0, 0, 0, 0.06), 0 8px 24px -12px rgba(0, 0, 0, 0.08);
  --shadow-lift: 0 12px 32px -16px rgba(0, 0, 0, 0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ===== BACKGROUND ===== */

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: var(--bg);
}

.page-bg::before { content: none; }

/* Global yellow squiggle band — drawn per-section via .squiggle inline */

/* ===== SERIF ITALIC ACCENT ===== */

.serif-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.glitter-text { /* compat — now just serif italic */
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: inherit;
  background: none;
  -webkit-text-fill-color: currentColor;
  filter: none;
  animation: none;
  letter-spacing: -0.01em;
  display: inline;
}
.glitter-text::after, .glitter-text::before { display: none; }

/* ===== SPARKLE & HEART LAYER (kept, much subtler) ===== */

.sparkles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.sparkle {
  position: absolute;
  width: 10px; height: 10px;
  opacity: 0;
  animation: sparkle-float 6s ease-in-out infinite;
}
.sparkle svg { width: 100%; height: 100%; }
@keyframes sparkle-float {
  0%, 100% { opacity: 0; transform: rotate(0deg) scale(0.3); }
  20%, 80% { opacity: 0.6; }
  50% { opacity: 0.9; transform: rotate(180deg) scale(1); }
}

.floating-hearts { position: absolute; inset: 0; pointer-events: none; }
.floating-heart {
  position: absolute;
  font-size: 14px;
  color: var(--pink-d);
  opacity: 0.4;
  animation: float-up 8s ease-in infinite;
}
@keyframes float-up {
  0% { transform: translateY(0); opacity: 0; }
  15% { opacity: 0.5; }
  100% { transform: translateY(-200px); opacity: 0; }
}

/* ===== NAV ===== */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 40px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
}

.nav-logo { display: flex; align-items: center; gap: 10px; }

.nav-logo-mark-icon {
  width: 26px; height: 26px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-logo-mark-icon svg { width: 14px; height: 14px; }

.nav-logo-mark {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.nav-logo-sub { display: none; }

.nav-links-wrap {
  background: var(--bg-soft);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-full);
  padding: 6px;
  display: flex;
  gap: 2px;
}

.nav-links {
  display: flex;
  font-size: 14px;
  font-weight: 500;
  gap: 2px;
}

.nav-links a {
  color: var(--ink-soft);
  transition: all 0.2s;
  position: relative;
  padding: 8px 18px;
  border-radius: var(--radius-full);
}

.nav-links a:hover { background: rgba(0,0,0,0.04); }
.nav-links a.active { background: var(--bg); color: var(--ink); border: 1px solid var(--ink-line); }
.nav-links a::before, .nav-links a::after { display: none; }

.nav-cta { display: flex; gap: 10px; align-items: center; }

.nav-icon-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--ink-line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.nav-icon-btn:hover { background: var(--bg-soft); }
.nav-icon-btn svg { width: 18px; height: 18px; }

.nav-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--ink);
  font-size: 14px;
}

/* Hamburger — alleen zichtbaar op mobiel */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 10px;
  border-radius: 50%;
  border: 1px solid var(--ink-line);
  background: var(--bg);
}

.nav-burger span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.25s, opacity 0.25s;
}

.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  flex-direction: column;
  gap: 4px;
  padding: 10px 20px 20px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-bottom: 1px solid var(--ink-line);
  box-shadow: var(--shadow-lift);
}

.nav-mobile-menu a:not(.btn) {
  padding: 14px 4px;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--ink-line);
}

.nav-mobile-menu a:last-child { border-bottom: none; }
.nav-mobile-menu .btn { margin-top: 14px; justify-content: center; }

/* ===== BUTTONS ===== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius-full);
  transition: transform 0.2s, background 0.2s, color 0.2s;
  white-space: nowrap;
  border: 1px solid transparent;
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: #1f1f1f; transform: translateY(-1px); }

.btn-whatsapp { background: #1faa55; color: white; }
.btn-whatsapp:hover { background: #178a44; transform: translateY(-1px); }

.btn-outline { background: var(--bg); color: var(--ink); border-color: var(--ink-line); }
.btn-outline:hover { border-color: var(--ink); }

.btn-lg { padding: 16px 28px; font-size: 15px; }

.btn-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.btn-arrow:hover { background: var(--ink); color: var(--bg); transform: rotate(-15deg); }
.btn-arrow svg { width: 18px; height: 18px; }

/* ===== HERO ===== */

.hero {
  position: relative;
  padding: 40px 40px 80px;
  max-width: 1320px;
  margin: 0 auto;
  overflow: visible;
}

.hero-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
  position: relative;
}

.hero-headline {
  position: relative;
  max-width: 880px;
}

.hero-title {
  font-family: var(--font-sans);
  font-size: clamp(56px, 9vw, 132px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--ink);
  position: relative;
}

.hero-title-line { display: block; }

.hero-title-asterisk {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  vertical-align: middle;
}

.asterisk-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(54px, 6vw, 90px);
  height: clamp(54px, 6vw, 90px);
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.asterisk-circle svg {
  width: 55%;
  height: 55%;
  color: var(--ink);
}

.hero-title-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  display: block;
  line-height: 1;
}

/* Circular rotating badge */
.circle-badge {
  position: relative;
  width: 140px;
  height: 140px;
  flex-shrink: 0;
  margin-top: 30px;
}

.circle-badge-ring {
  position: absolute;
  inset: 0;
  background: var(--lavender);
  border-radius: 50%;
  animation: spin-slow 22s linear infinite;
}

.circle-badge-ring svg {
  width: 100%;
  height: 100%;
}

.circle-badge-ring text {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  fill: var(--ink);
  text-transform: uppercase;
}

.circle-badge-inner {
  position: absolute;
  inset: 22px;
  background: var(--lavender-d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60'%3E%3Cpath d='M30 8 L34 26 L52 30 L34 34 L30 52 L26 34 L8 30 L26 26 Z' fill='%23ffd93d'/%3E%3C/svg%3E");
  background-size: 55%;
  background-position: center;
  background-repeat: no-repeat;
}

@keyframes spin-slow { from { transform: rotate(0); } to { transform: rotate(360deg); } }

/* Hero meta row */
.hero-meta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  margin-top: 36px;
  max-width: 620px;
}

.hero-blob-photo {
  position: relative;
  width: 120px;
  height: 100px;
  flex-shrink: 0;
}

.hero-blob-photo-blob {
  position: absolute;
  inset: 0;
  background: var(--lavender);
  border-radius: 60% 40% 50% 50% / 40% 55% 45% 60%;
  animation: blob-morph 14s ease-in-out infinite;
}

.hero-blob-photo-img {
  position: absolute;
  top: 10%;
  left: 18%;
  width: 70%;
  height: 80%;
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 11px;
  color: rgba(10,10,10,0.4);
}

.hero-blob-photo-play {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.hero-blob-photo-play::after {
  content: "";
  width: 0; height: 0;
  border-left: 7px solid var(--ink);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  margin-left: 2px;
}

@keyframes blob-morph {
  0%, 100% { border-radius: 60% 40% 50% 50% / 40% 55% 45% 60%; }
  50% { border-radius: 40% 60% 45% 55% / 55% 40% 60% 45%; }
}

.hero-description {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 380px;
}

/* Floating hashtag pills */
.hero-tags {
  position: absolute;
  top: 36%;
  right: 5%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  pointer-events: none;
  z-index: 2;
}

.hero-tag {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  animation: tag-float 4s ease-in-out infinite;
}

.hero-tag:nth-child(1) { background: var(--pink); align-self: flex-end; transform: rotate(-5deg); }
.hero-tag:nth-child(2) { background: var(--lavender); align-self: flex-start; margin-left: 36px; transform: rotate(3deg); animation-delay: -1s; }
.hero-tag:nth-child(3) { background: var(--lime); align-self: flex-end; transform: rotate(-2deg); animation-delay: -2s; }
.hero-tag:nth-child(4) { background: var(--yellow); align-self: flex-start; margin-left: 14px; transform: rotate(6deg); animation-delay: -3s; }

@keyframes tag-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -6px; }
}

.hero-tag-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ink);
  margin-right: 4px;
  vertical-align: middle;
}

/* Yellow squiggle decoration */
.squiggle {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  stroke: var(--yellow);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.squiggle-hero {
  top: 38%;
  left: 30%;
  width: 60%;
  height: 200px;
}

/* Hero squiggle achter de content, nooit over tekst of knoppen heen */
.hero-squiggle-deco { z-index: -1; }

/* CTA row in hero */
.hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* Hero badge replaces old "Nieuw bij Privada" */
.new-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 8px;
  border-radius: var(--radius-full);
  background: var(--bg-soft);
  border: 1px solid var(--ink-line);
  margin-bottom: 28px;
}
.new-badge::before { display: none; }
.new-badge span:nth-child(1) {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--green);
  padding: 5px 11px;
  border-radius: var(--radius-full);
}
.new-badge span:nth-child(2) {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-soft);
  padding: 0;
  position: static;
}
.new-badge span:nth-child(2)::before { display: none; }
.new-badge span:nth-child(3) { display: none; }

/* Old tagline / hero feature pills hidden — replaced by hashtags */
.hero-tagline, .hero-features, .hero-stage { display: none; }

/* ===== SECTION SHARED ===== */

.section {
  position: relative;
  padding: 80px 40px;
  max-width: 1320px;
  margin: 0 auto;
}

.section-narrow { max-width: 1100px; }

.section-eyebrow {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.section-eyebrow::before, .section-eyebrow::after {
  content: "";
  width: 24px; height: 1px;
  background: var(--ink-line);
}

.section-title {
  text-align: center;
  font-family: var(--font-sans);
  font-size: clamp(40px, 6vw, 84px);
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  margin-bottom: 60px;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.section-intro {
  text-align: center;
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 580px;
  margin: -32px auto 60px;
  line-height: 1.7;
}

/* ===== BENTO PROGRAMMA / PAKKETTEN ===== */

.bento-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.1fr 0.95fr;
  gap: 16px;
  align-items: stretch;
}

.bento-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 28px;
  min-height: 320px;
  overflow: hidden;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
}

.bento-card:hover { transform: translateY(-4px); }

.bento-card-1 { background: var(--green); }
.bento-card-2 { background: var(--lavender); }
.bento-card-3 { background: var(--lime); }
.bento-card-4 { background: var(--pink); }
.bento-card-5 { background: var(--yellow); }
.bento-card-6 { background: var(--orange); }

.bento-card-age {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: rgba(255,255,255,0.9);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  align-self: flex-start;
  margin-bottom: 16px;
}

.bento-card-arrow {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.bento-card:hover .bento-card-arrow { transform: rotate(-30deg); }

.bento-card-title {
  font-family: var(--font-sans);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: auto;
}

.bento-card-title-italic {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  margin-top: 4px;
}

.bento-card-shape {
  position: absolute;
  pointer-events: none;
}

/* Shape variants */
.bento-shape-flower {
  width: 110px;
  height: 110px;
  bottom: 20px;
  right: 20px;
}

.bento-shape-blob-photo {
  position: absolute;
  width: 160px;
  height: 160px;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.bento-shape-blob-photo .hero-blob-photo-img {
  background: linear-gradient(135deg, var(--pink), var(--lavender-d));
  width: 90%;
  height: 90%;
  top: 5%;
  left: 5%;
}

.bento-shape-blob-photo .hero-blob-photo-blob {
  background: rgba(255,255,255,0.4);
}

/* ===== WHY CHOOSE ===== */

.why-choose {
  position: relative;
  text-align: center;
}

.why-title {
  font-family: var(--font-sans);
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.why-title-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  display: block;
}

.why-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-top: 80px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.why-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.why-col-shape {
  width: 80px; height: 80px;
  margin-bottom: 24px;
}

.why-col-title {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.why-col-desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 240px;
}

/* ===== STATS ROW (was wat-is-stats) ===== */

.wat-is {
  position: relative;
}

.wat-is-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.wat-is-image {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--lavender);
  border: none;
  box-shadow: none;
  transform: rotate(-2deg);
}

.wat-is-text h3 {
  font-family: var(--font-sans);
  font-size: 40px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 24px;
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.wat-is-text h3 span { font-family: var(--font-serif); font-style: italic; font-weight: 400; }

.wat-is-text p {
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 16px;
  line-height: 1.7;
}

.wat-is-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 36px;
  border: none;
}

.stat {
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  padding: 22px 16px;
  text-align: left;
  box-shadow: none;
  border: 1px solid var(--ink-line);
  border-right: 1px solid var(--ink-line);
}

.stat-num {
  font-family: var(--font-sans);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.03em;
  font-style: normal;
}
.stat-num em { font-family: var(--font-serif); font-style: italic; font-weight: 400; }

.stat-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
}

/* ===== PROGRAMMA cards reuse bento style — keep small grid ===== */
.programma-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.programma-card {
  position: relative;
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  text-align: left;
  box-shadow: none;
  border: 1px solid var(--ink-line);
  transition: all 0.3s;
  overflow: hidden;
}
.programma-card:hover { transform: translateY(-3px); border-color: var(--ink); }
.programma-card::before { display: none; }

.programma-card:nth-child(1) { background: #f0fcf4; }
.programma-card:nth-child(2) { background: #f5f1ff; }
.programma-card:nth-child(3) { background: #fbffe5; }
.programma-card:nth-child(4) { background: #fff0f7; }
.programma-card:nth-child(5) { background: #fff8e0; }
.programma-card:nth-child(6) { background: #fff2e6; }

.programma-icon {
  width: 52px; height: 52px;
  margin: 0 0 20px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: none;
}
.programma-icon::after { display: none; }

.programma-title {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  font-style: normal;
}
.programma-title em { font-family: var(--font-serif); font-style: italic; font-weight: 400; }

.programma-desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.programma-number {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-mute);
  line-height: 1;
  letter-spacing: 0.1em;
  font-style: normal;
}

/* ===== PAKKETTEN ===== */

.pakketten { background: transparent; }

.pakketten-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.1fr 0.95fr;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

.pakket {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  box-shadow: none;
  border: 1px solid var(--ink-line);
  transition: transform 0.3s, border-color 0.3s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pakket:hover { transform: translateY(-4px); }

.pakket:nth-child(1) { background: var(--green); border-color: var(--green-d); }
.pakket:nth-child(2) { background: var(--lavender); border-color: var(--lavender-d); transform: scale(1.04); }
.pakket:nth-child(2):hover { transform: scale(1.04) translateY(-4px); }
.pakket:nth-child(3) { background: var(--lime); border-color: var(--lime-d); }

.pakket-featured { /* compat — order-2 styling above already handles */ }

.pakket-popular {
  position: absolute;
  top: 22px;
  right: 22px;
  background: var(--ink);
  color: var(--bg);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pakket-name {
  font-family: var(--font-sans);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
  font-style: normal;
}

.pakket-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 24px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  opacity: 0.7;
}

.pakket-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 2px;
}

.pakket-currency {
  font-family: var(--font-sans);
  font-size: 22px;
  color: var(--ink);
  font-weight: 600;
  font-style: normal;
}

.pakket-amount {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 56px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.03em;
}

.pakket-per {
  font-size: 12px;
  color: var(--ink);
  opacity: 0.6;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
  font-weight: 500;
}

.pakket-features {
  list-style: none;
  margin-bottom: 28px;
  padding: 22px 0 0;
  border-top: 1px solid rgba(10,10,10,0.15);
  flex: 1;
}

.pakket-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.5;
  font-weight: 500;
}

.pakket-features li::before {
  content: "";
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M2 7.5 5.5 11 12 4' fill='none' stroke='%230a0a0a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  color: transparent;
}

.pakket .btn {
  width: 100%;
  justify-content: center;
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.pakket .btn:hover { background: transparent; color: var(--ink); }
.pakket .btn.btn-outline { background: var(--bg); color: var(--ink); border-color: var(--ink); }
.pakket .btn.btn-outline:hover { background: var(--ink); color: var(--bg); }

/* ===== GALERIJ ===== */

.galerij-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}

.galerij-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--lavender);
  border: none;
  box-shadow: none;
  cursor: pointer;
  transition: transform 0.3s;
}

.galerij-item:nth-child(4n+1) { background: var(--green); }
.galerij-item:nth-child(4n+2) { background: var(--lavender); }
.galerij-item:nth-child(4n+3) { background: var(--lime); }
.galerij-item:nth-child(4n+4) { background: var(--pink); }

.galerij-item:hover { transform: scale(1.02); z-index: 1; }
.galerij-item.tall { grid-row: span 2; }
.galerij-item.wide { grid-column: span 2; }

.galerij-item-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
}
.galerij-item-inner::before { display: none; }

.placeholder-label {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--ink);
  background: rgba(255,255,255,0.85);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--ink-line);
}

.placeholder-stripes { display: none; }

/* ===== INSTAGRAM ===== */

.instagram-section { text-align: center; }

.ig-handle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--ink);
  font-size: 14px;
  margin: -36px auto 50px;
  padding: 10px 20px;
  background: var(--bg-soft);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-full);
  box-shadow: none;
}

.ig-icon {
  width: 22px; height: 22px;
  background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 11px;
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.ig-post {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
}

.ig-post:nth-child(6n+1) { background: var(--pink); }
.ig-post:nth-child(6n+2) { background: var(--lavender); }
.ig-post:nth-child(6n+3) { background: var(--lime); }
.ig-post:nth-child(6n+4) { background: var(--green); }
.ig-post:nth-child(6n+5) { background: var(--yellow); }
.ig-post:nth-child(6n+6) { background: var(--orange); }

.ig-post:hover { transform: scale(1.03); }

.ig-post::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.4));
  opacity: 0;
  transition: opacity 0.3s;
}

.ig-post:hover::after { opacity: 1; }

.ig-post-likes {
  position: absolute;
  bottom: 10px; left: 10px;
  color: white;
  font-size: 12px;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 5px;
}

.ig-post:hover .ig-post-likes { opacity: 1; }

/* ===== BOEKING ===== */

.boeking { background: transparent; }

.boeking-card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: none;
  border: 1px solid var(--ink-line);
  position: relative;
  overflow: hidden;
}
.boeking-card::before { display: none; }

.boeking-placeholder {
  position: relative;
  border: 1.5px dashed var(--ink-line);
  border-radius: var(--radius-md);
  padding: 16px;
  background: var(--bg);
  margin-bottom: 28px;
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--ink-mute);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 16px;
  margin-bottom: 28px;
}

.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: span 2; }

.form-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0;
  text-transform: none;
}
.form-label span { display: none; }

.form-input, .form-select, .form-textarea {
  padding: 14px 16px;
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-full);
  font-family: inherit;
  font-size: 14px;
  background: var(--bg);
  color: var(--ink);
  transition: border-color 0.2s;
}

.form-select { padding-right: 36px; }
.form-textarea { resize: vertical; min-height: 100px; border-radius: var(--radius-md); }

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--ink);
}

.form-pakket-chips { display: flex; flex-wrap: wrap; gap: 8px; }

.pakket-chip {
  padding: 9px 16px;
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-full);
  background: var(--bg);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s;
}

.pakket-chip:hover { border-color: var(--ink); }
.pakket-chip.selected { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.form-submit-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.form-note {
  font-size: 12px;
  color: var(--ink-mute);
  text-align: center;
}

/* ===== CONTACT ===== */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.contact-card {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: left;
  box-shadow: none;
  border: 1px solid var(--ink-line);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.contact-card:nth-child(1) { background: var(--lavender); border-color: var(--lavender-d); }
.contact-card:nth-child(2) { background: var(--lime); border-color: var(--lime-d); }
.contact-card:nth-child(3) { background: var(--pink); border-color: var(--pink-d); }

.contact-card:hover { transform: translateY(-3px); }

.contact-icon {
  width: 48px; height: 48px;
  margin: 0 0 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--ink);
  box-shadow: none;
  background: var(--bg);
}

.contact-icon.phone { background: var(--bg); }
.contact-icon.whatsapp { background: var(--bg); }
.contact-icon.location { background: var(--bg); }

.contact-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.6;
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-value {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.contact-sub {
  font-size: 13px;
  color: var(--ink);
  opacity: 0.7;
}

.map-card {
  position: relative;
  height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-soft);
  border: 1px solid var(--ink-line);
  box-shadow: none;
}

.map-card-inner {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10,10,10,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,10,10,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  background-color: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-pin {
  position: relative;
  font-size: 36px;
  color: var(--ink);
  animation: pin-bob 3s ease-in-out infinite;
}

@keyframes pin-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.map-pin::after {
  content: "Rotterdam";
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--bg);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
}

/* ===== FOOTER ===== */

.footer {
  background: var(--ink);
  color: var(--bg);
  padding: 80px 40px 36px;
  text-align: center;
  position: relative;
}

.footer-logo {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 56px;
  font-weight: 700;
  color: var(--bg);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.footer-logo em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.footer-tag {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  margin-bottom: 40px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 40px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

.footer-links a:hover { color: var(--bg); }

.footer-bottom {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  max-width: 1100px;
  margin: 0 auto;
  letter-spacing: 0.04em;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1100px) {
  .hero-tags { display: none; }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-card-1 { grid-column: span 2; }
}

@media (max-width: 900px) {
  .nav { padding: 16px 20px; }
  .nav-links-wrap { display: none; }
  .nav-icon-btn { display: none; }
  .nav-cta .btn:not(.btn-primary) { display: none; }
  .nav-burger { display: flex; }
  .nav-mobile-menu.open { display: flex; }

  .section { padding: 60px 20px; }
  .hero { padding: 20px 20px 60px; }
  .hero-top { grid-template-columns: 1fr; }

  /* Badge rechtsboven in de hero i.p.v. los onderaan */
  .circle-badge {
    position: absolute;
    top: -4px;
    right: 0;
    width: 96px;
    height: 96px;
    margin-top: 0;
  }
  .circle-badge-inner { inset: 15px; }

  /* Squiggle loopt op mobiel door de CTA-knoppen: verbergen */
  .hero-squiggle-deco { display: none; }

  .wat-is-grid { grid-template-columns: 1fr; gap: 40px; }
  .programma-grid { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card-1 { grid-column: span 1; }
  .pakketten-grid { grid-template-columns: 1fr; }
  .pakket:nth-child(2) { transform: none; }
  .pakket:nth-child(2):hover { transform: translateY(-4px); }
  .galerij-grid { grid-template-columns: repeat(2, 1fr); grid-auto-flow: dense; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: span 1; }
  .boeking-card { padding: 32px 22px; }
  .why-cols { grid-template-columns: 1fr; gap: 40px; }

  /* 16px voorkomt dat iOS inzoomt bij focus op een veld */
  .form-input, .form-select, .form-textarea { font-size: 16px; }
}

@media (max-width: 640px) {
  .hero-title { font-size: clamp(44px, 13vw, 56px); }
  .circle-badge { display: none; }
  .hero-cta-row .btn { flex: 1 1 auto; justify-content: center; }

  .section-title { margin-bottom: 44px; }
  .section-intro { margin-bottom: 44px; }

  .wat-is-stats { gap: 8px; }
  .stat { padding: 16px 12px; }
  .stat-num { font-size: 26px; }
  .stat-label { font-size: 10px; letter-spacing: 0.1em; }

  .galerij-grid { grid-auto-rows: 150px; gap: 10px; }
  .ig-grid { gap: 6px; }

  .footer { padding: 60px 20px 32px; }
  .footer-logo { font-size: clamp(34px, 10vw, 48px); }
  .footer-links { gap: 16px 22px; }
}
