/* =========================================================
   Stut Productions — feminien roze palet, multipage
   ========================================================= */

:root {
  /* FEMININE PINK PALETTE */
  --bg:         #fdf5f3;      /* pink-tinted ivory */
  --bg-alt:     #ffffff;
  --bg-soft:    #fde8e8;      /* soft blush */
  --bg-cream:   #fef3ec;      /* warm cream */
  --ink:        #3b232c;      /* warm dark */
  --ink-soft:   #7c5a65;      /* muted mauve text */
  --line:       rgba(59,35,44,.08);

  /* Brand palette — uit huisstijl Stut Productions */
  --rose:       #e89aaa;      /* dusty rose */
  --rose-deep:  #d54977;      /* bright brand pink (uit huisstijl) */
  --wine:       #9b4e69;      /* deeper rose (uit huisstijl, muted row) */
  --pink:       #f7c7d1;      /* soft pink */
  --blush:      #fde4e8;      /* very light blush */
  --mauve:      #c48199;

  --purple:     #7d40c0;      /* brand vivid purple (uit huisstijl) */
  --purple-soft:#5a4982;      /* brand aubergine */
  --lilac:      #d8c4f0;      /* lichte lavendel */

  --sky:        #bee3f5;      /* brand light blue (uit huisstijl) */
  --cyan:       #7ed5d9;      /* brand cyan accent */
  --sky-soft:   #d5e8f2;

  --sage:       #c8d7aa;      /* brand sage (muted) */
  --lime:       #a8d169;      /* brand lime (saturated accent) */
  --mint-soft:  #dffac0;      /* brand pale mint */

  --gold:       #d4a574;      /* warme aanvulling */
  --peach:      #ffd2b8;
  --butter:     #ffe6a8;
  --terracotta: #e8806e;
  --lavender:   var(--sky);   /* alias */

  --accent:     var(--rose-deep);

  --radius: 20px;
  --radius-lg: 28px;
  --maxw: 1320px;

  --ease: cubic-bezier(.22,1,.36,1);
  --ease-smooth: cubic-bezier(.77,0,.175,1);

  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

::selection { background: var(--rose); color: var(--ink); }

/* ============== PAGE LOADER ============== */
.loader {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .5s var(--ease), visibility .5s var(--ease);
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-mark {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--rose-deep);
  font-style: italic;
  letter-spacing: .02em;
  animation: pulse-fade 1.5s ease-in-out infinite;
}
@keyframes pulse-fade {
  0%, 100% { opacity: .4; transform: scale(.98); }
  50% { opacity: 1; transform: scale(1); }
}

/* ============== NAV (injected) ============== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(1.25rem, 4vw, 3rem);
  transition: padding .35s var(--ease), background .35s var(--ease);
}
.nav.scrolled {
  padding: .55rem clamp(1.25rem, 4vw, 3rem);
  background: rgba(253,245,243,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  height: 72px;
}
.nav-logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
  /* Wit silhouet kleuren naar dusty-wine ton voor lichte nav-achtergrond */
  filter: brightness(0) saturate(100%) invert(15%) sepia(28%) saturate(900%) hue-rotate(310deg);
}
.nav.scrolled .nav-logo { height: 56px; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
  font-size: .9rem;
  font-weight: 500;
}
.nav-links a {
  position: relative;
  padding: .4rem 0;
  transition: color .25s var(--ease);
}
.nav-links a.is-active { color: var(--rose-deep); }
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--rose-deep);
  transition: width .35s var(--ease);
}
.nav-links a:not(.nav-cta):hover,
.nav-links a.is-active:not(.nav-cta) { color: var(--rose-deep); }
.nav-links a:not(.nav-cta):hover::after,
.nav-links a.is-active:not(.nav-cta)::after { width: 100%; }

/* Dropdown */
.nav-drop { position: relative; }
.nav-drop > a::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-right: .4em;
  vertical-align: middle;
  opacity: .6;
  transition: transform .3s var(--ease);
}
.nav-drop:hover > a::before { transform: rotate(225deg) translateY(2px); }
.nav-drop-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 220px;
  padding: .6rem;
  background: var(--bg-alt);
  border-radius: 16px;
  box-shadow: 0 20px 40px -12px rgba(59,35,44,.18);
  border: 1px solid var(--line);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s var(--ease), transform .3s var(--ease);
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-drop:hover .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-drop-menu a {
  display: block;
  padding: .6rem .9rem;
  border-radius: 10px;
  font-size: .88rem;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.nav-drop-menu a::after { display: none !important; }
.nav-drop-menu a:hover,
.nav-drop-menu a.is-active {
  background: var(--blush);
  color: var(--rose-deep);
}

.nav-cta {
  background: var(--rose-deep);
  color: #fff !important;
  padding: .62rem 1.2rem !important;
  border-radius: 100px;
  transition: all .3s var(--ease);
  box-shadow: 0 6px 18px -6px rgba(194,92,124,.45);
}
.nav-cta:hover {
  background: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -6px rgba(59,35,44,.35);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 32px;
  padding: 8px;
  z-index: 101;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  transition: transform .3s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-logo { height: 44px; }
  .nav.scrolled .nav-logo { height: 40px; }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .9rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s var(--ease);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  color: var(--ink);
  border-bottom: 1px solid transparent;
  padding: .1em 0;
}
.mobile-menu a.is-active { color: var(--rose-deep); border-color: var(--rose); }
.mobile-menu .sub {
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-family: var(--font-body);
  margin-top: .75rem;
}
.mobile-cta {
  background: var(--rose-deep);
  color: #fff !important;
  padding: 1.5rem 3.5rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: .02em;
  margin-top: 2rem;
  box-shadow: 0 18px 40px -10px rgba(194,92,124,.55);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  white-space: nowrap;
  min-width: 240px;
  line-height: 1;
  text-align: center;
  border: none;
  text-decoration: none !important;
  animation: cta-bob 2.4s ease-in-out infinite;
}
.mobile-cta:hover,
.mobile-cta:active {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 26px 56px -12px rgba(194,92,124,.7);
  animation: none;
}
@keyframes cta-bob {
  0%, 100% { transform: translateY(0); box-shadow: 0 18px 40px -10px rgba(194,92,124,.55); }
  50%      { transform: translateY(-4px); box-shadow: 0 24px 48px -12px rgba(194,92,124,.7); }
}

/* ============== HEADINGS / TEXT ============== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  margin-bottom: 1.15rem;
}
.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--rose-deep);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: .5; }
}

.section-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.3rem, 5.5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 1.1rem;
  color: var(--ink);
  font-variation-settings: "SOFT" 50;
}
.section-title em {
  font-style: italic;
  color: var(--rose-deep);
  font-weight: 400;
  font-variation-settings: "SOFT" 100;
  padding-right: .12em;
  margin-right: -.06em;
}

.section-sub {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 620px;
}

section, .section {
  position: relative;
  padding: clamp(4rem, 9vw, 7rem) clamp(1.25rem, 4vw, 3rem);
}
.container { max-width: var(--maxw); margin: 0 auto; }

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: 1rem 1.75rem;
  border-radius: 100px;
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .01em;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
  position: relative;
  overflow: hidden;
  will-change: transform;
}
.btn-primary {
  background: var(--rose-deep);
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(194,92,124,.5);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateY(100%);
  transition: transform .4s var(--ease);
  z-index: 0;
}
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover::before { transform: translateY(0); }
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -12px rgba(59,35,44,.4);
}
.btn-ghost {
  border: 1.5px solid var(--ink);
  color: var(--ink);
  background: rgba(255,255,255,.55);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-3px);
}
.btn-full { width: 100%; justify-content: center; padding: 1.1rem; }

/* ============== HERO ============== */
.hero {
  position: relative;
  min-height: 92vh;
  padding: 9rem 1.5rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}
.hero-swatches {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-swatches .sw {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: .55;
  animation: sw-float 22s ease-in-out infinite;
}
.sw-1 { width: 380px; height: 380px; background: var(--pink); top: 8%; left: -6%; }
.sw-2 { width: 320px; height: 320px; background: var(--rose); top: 55%; right: -8%; animation-delay: -4s; opacity: .35; }
.sw-3 { width: 280px; height: 280px; background: var(--blush); bottom: 5%; left: 35%; animation-delay: -8s; opacity: .7; }
.sw-4 { width: 260px; height: 260px; background: var(--lavender); top: 15%; right: 12%; animation-delay: -12s; opacity: .45; }
.sw-5 { width: 220px; height: 220px; background: var(--bg-cream); bottom: 28%; left: 8%; animation-delay: -16s; opacity: .7; }
@keyframes sw-float {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(40px,-30px) scale(1.08); }
  66% { transform: translate(-20px,40px) scale(.94); }
}

.hero-content { position: relative; z-index: 2; max-width: 1100px; }

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.75rem;
  padding: .45rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(6px);
  color: var(--ink);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3rem, 9.5vw, 8rem);
  line-height: .98;
  letter-spacing: -.025em;
  margin-bottom: 1.5rem;
  font-variation-settings: "SOFT" 50;
  color: var(--ink);
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "SOFT" 100;
  color: var(--rose-deep);
  padding-right: .12em;
  margin-right: -.06em;
}
.hero-title .line {
  display: block;
  overflow: hidden;
  padding-bottom: .12em;
  padding-right: .15em;
  margin-right: -.15em;
}
.hero-title .line > span {
  display: inline-block;
  transform: translateY(100%);
  animation: line-reveal 1s var(--ease-smooth) forwards;
}
.hero-title .line:nth-child(1) > span { animation-delay: .2s; }
.hero-title .line:nth-child(2) > span { animation-delay: .35s; }
@keyframes line-reveal { to { transform: translateY(0); } }

.hero-lede {
  max-width: 580px;
  margin: 0 auto 2rem;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  color: var(--ink-soft);
  line-height: 1.6;
}
.hero-lede em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--rose-deep);
  font-weight: 500;
}

.hero-actions {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.hero-meta {
  display: inline-flex;
  gap: clamp(1.5rem, 4vw, 3rem);
  font-size: .8rem;
  letter-spacing: .04em;
  color: var(--ink-soft);
  flex-wrap: wrap;
  justify-content: center;
}
.hero-meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--rose-deep);
  margin-bottom: .1rem;
}

/* Page hero (smaller than home hero) */
.page-hero {
  position: relative;
  padding: 10rem 1.5rem 4rem;
  text-align: center;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero::before { z-index: 0; pointer-events: none; }
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, var(--pink), transparent 50%),
    radial-gradient(circle at 90% 70%, var(--blush), transparent 45%);
  opacity: .7;
  z-index: 0;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }
.page-hero .breadcrumbs {
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1rem;
  font-weight: 500;
}
.page-hero .breadcrumbs a:hover { color: var(--rose-deep); }
.page-hero .breadcrumbs span { margin: 0 .5em; opacity: .5; }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.7rem, 7vw, 5.5rem);
  line-height: 1;
  letter-spacing: -.025em;
  margin-bottom: 1rem;
  color: var(--ink);
}
.page-hero h1 em { color: var(--rose-deep); font-style: italic; font-weight: 400; padding-right: .12em; margin-right: -.06em; }
.page-hero p {
  max-width: 580px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.55;
}

/* ============== CATEGORY GRID (home) ============== */
.cat-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.cat-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  display: block;
  background: var(--bg-soft);
  transition: transform .5s var(--ease-smooth), box-shadow .5s var(--ease);
  box-shadow: 0 6px 20px -10px rgba(59,35,44,.15);
}
/* Legacy classes — alle cards zelfde uniform formaat */
.cat-card.big, .cat-card.wide { aspect-ratio: 4/5; }
@media (max-width: 560px) {
  .cat-grid { grid-template-columns: 1fr 1fr; gap: .75rem; }
}

.cat-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform .9s var(--ease-smooth), filter .4s var(--ease);
}
.cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(59,35,44,.55) 0%, rgba(59,35,44,.1) 45%, transparent 70%);
  z-index: 1;
  transition: opacity .4s var(--ease);
}
.cat-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -24px rgba(59,35,44,.35); }
.cat-card:hover img { transform: scale(1.06); }

.cat-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 1.5rem 1.75rem;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.cat-card-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1.1;
  letter-spacing: -.01em;
}
.cat-card-sub {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .85;
  margin-top: .3rem;
  font-weight: 500;
}
.cat-card-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.35);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.cat-card:hover .cat-card-arrow {
  background: var(--rose-deep);
  border-color: var(--rose-deep);
  transform: rotate(-45deg);
}
.cat-card-arrow svg { width: 18px; height: 18px; stroke: #fff; }

/* ============== GALLERY (category pages) ============== */
.gallery-section { background: var(--bg); }
.gallery {
  max-width: var(--maxw);
  margin: 0 auto;
  columns: 3;
  column-gap: 1.1rem;
}
@media (max-width: 900px) { .gallery { columns: 2; } }
@media (max-width: 560px) { .gallery { columns: 2; column-gap: .55rem; } }
.gallery-item { margin-bottom: .9rem; }
@media (max-width: 560px) { .gallery-item { margin-bottom: .55rem; } }

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.1rem;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--blush);
  box-shadow: 0 4px 14px -6px rgba(59,35,44,.12);
  /* Images are visible by default — JS only enhances */
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .6s var(--ease-smooth);
}
.gallery-item:hover img {
  transform: scale(1.04);
}
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(59,35,44,.5), transparent 55%);
  opacity: 0;
  transition: opacity .35s var(--ease);
  z-index: 1;
  pointer-events: none;
}
.gallery-item:hover::before { opacity: 1; }

/* JS-enabled reveal (only hide when html.js is set AND no .visible) */
html.js .gallery-item:not(.visible),
html.js .js-reveal:not(.visible) {
  opacity: 0;
  transform: translateY(30px);
}
.gallery-item,
.js-reveal {
  opacity: 1;
  transform: none;
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

.gallery-item:nth-child(3n+2) { transition-delay: .06s; }
.gallery-item:nth-child(3n+3) { transition-delay: .12s; }

/* Simple "Bekijk" badge on hover */
.gallery-item::after {
  content: 'Bekijk';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(.5);
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--rose-deep);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .66rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0;
  transition: opacity .35s var(--ease), transform .4s var(--ease-smooth);
  z-index: 3;
  pointer-events: none;
}
.gallery-item:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.gallery-item { cursor: pointer; }

/* ============== ABOUT PAGE ============== */
.about-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }

.about-image { position: relative; }
.about-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 30px 60px -25px rgba(59,35,44,.25);
}
.about-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute;
  bottom: -16px; right: -16px;
  width: 86px; height: 86px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--butter), var(--gold));
  color: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  box-shadow: 0 12px 24px -6px rgba(212,165,116,.55), inset 0 0 0 1.5px rgba(255,255,255,.4);
  transform: rotate(-8deg);
  transition: transform .45s var(--ease-smooth), box-shadow .45s var(--ease);
  border: 1.5px dashed rgba(59,35,44,.18);
  outline: 4px solid var(--bg);
  outline-offset: -6px;
}
.about-badge::after {
  content: '✦';
  position: absolute;
  top: -3px; right: 3px;
  color: var(--rose-deep);
  font-style: normal;
  font-size: .8rem;
  text-shadow: 0 2px 4px rgba(0,0,0,.15);
}
.about-badge:hover {
  transform: rotate(0deg) scale(1.08);
  box-shadow: 0 18px 32px -8px rgba(212,165,116,.7), inset 0 0 0 1.5px rgba(255,255,255,.5);
}
.about-badge span {
  font-size: .54rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-style: normal;
  font-family: var(--font-body);
  font-weight: 600;
  opacity: .7;
  margin-bottom: .1rem;
}
.about-badge strong {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1;
}

.about-text .section-title { margin-bottom: 1.2rem; }
.about-text .lede { font-size: 1.1rem; color: var(--ink); margin-bottom: 1rem; line-height: 1.55; }
.about-text p { color: var(--ink-soft); margin-bottom: 1rem; }
.about-text strong { color: var(--ink); font-weight: 600; }
.about-text em { color: var(--rose-deep); font-style: italic; font-family: var(--font-display); }

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.about-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 400;
  color: var(--rose-deep);
  margin-bottom: .2rem;
}
.about-stats span { font-size: .76rem; letter-spacing: .05em; color: var(--ink-soft); }

/* ============== SERVICES ============== */
.service-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .service-grid { grid-template-columns: 1fr; } }

.service-card {
  position: relative;
  padding: 2.5rem 2rem 2.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--bg-alt);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  overflow: hidden;
}
.service-card.tone-blush { background: var(--blush); }
.service-card.tone-pink { background: var(--pink); }
.service-card.tone-cream { background: var(--bg-cream); }
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -24px rgba(59,35,44,.18);
}
.service-card.featured { outline: 2px solid var(--rose-deep); outline-offset: -2px; }

.service-tag {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  padding: .3rem .8rem;
  border-radius: 100px;
  background: var(--ink);
  color: var(--bg);
  font-size: .66rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
}
.service-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  font-style: italic;
  color: var(--rose);
  opacity: 1;
  margin-bottom: .5rem;
  line-height: 1;
  display: inline-block;
  padding-right: .3em;
  transition: color .3s var(--ease), transform .5s var(--ease-smooth);
}
.service-card:hover .service-num { transform: translateX(4px); color: var(--rose-deep); }
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.7rem;
  margin-bottom: .9rem;
  color: var(--ink);
}
.service-desc { color: var(--ink-soft); margin-bottom: 1.4rem; font-size: .94rem; }
.service-card ul { list-style: none; margin-bottom: 1.5rem; }
.service-card ul li {
  padding: .55rem 0;
  border-top: 1px solid rgba(59,35,44,.1);
  font-size: .9rem;
  color: var(--ink);
}
.service-card ul li:last-child { border-bottom: 1px solid rgba(59,35,44,.1); }
.service-card ul li::before { content: '✦'; color: var(--rose-deep); margin-right: .55rem; font-size: .7em; }
.service-price {
  font-size: .86rem;
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
}
.service-price strong {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--ink);
  display: block;
  margin-top: .15rem;
}
.service-cta {
  font-weight: 500;
  color: var(--ink);
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding-bottom: .2rem;
  border-bottom: 1.5px solid currentColor;
  transition: gap .3s var(--ease), color .3s var(--ease);
}
.service-cta:hover { gap: .75rem; color: var(--rose-deep); }

/* ============== REVIEWS ============== */
.reviews-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.review {
  padding: 2.1rem 1.9rem;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  border: 1px solid var(--line);
}
.review:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 40px -20px rgba(59,35,44,.18);
}
.review::before {
  content: '"';
  position: absolute;
  top: .4rem;
  left: 1.3rem;
  font-family: var(--font-display);
  font-size: 4.2rem;
  line-height: 1;
  color: var(--rose);
  opacity: .5;
  font-style: italic;
}
.review p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 1.1rem;
  position: relative;
}
.review .review-author {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .82rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.review-author::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--rose-deep);
}
.reviews-grid .review:nth-child(4n+1) { background: var(--blush); }
.reviews-grid .review:nth-child(4n+2) { background: var(--bg-cream); }
.reviews-grid .review:nth-child(4n+3) { background: var(--bg-alt); }
.reviews-grid .review:nth-child(4n+4) { background: var(--pink); }

/* ============== CONTACT ============== */
.contact-section { background: var(--bg); position: relative; overflow: hidden; }
.contact-section::before,
.contact-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  opacity: .5;
}
.contact-section::before {
  top: -10%; right: -5%;
  width: 360px; height: 360px;
  background: var(--pink);
}
.contact-section::after {
  bottom: -10%; left: -5%;
  width: 340px; height: 340px;
  background: var(--blush);
}

.contact-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) { .contact-inner { grid-template-columns: 1fr; } }

.contact-list {
  list-style: none;
  margin-top: 2rem;
}
.contact-list li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.contact-list li:last-child { border-bottom: 1px solid var(--line); }
.contact-label {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.contact-list a {
  transition: color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.contact-list a:hover { color: var(--rose-deep); border-color: var(--rose-deep); }

.contact-form {
  background: var(--bg-alt);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -30px rgba(59,35,44,.2);
  display: grid;
  gap: 1.1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 1.75rem; }
}
.contact-form label { display: grid; gap: .45rem; }
.contact-form span {
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--line);
  padding: .65rem 0;
  color: var(--ink);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color .3s var(--ease);
  outline: none;
  resize: vertical;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--rose-deep); }
.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%233b232c' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 20px;
}
.form-note { font-size: .76rem; color: var(--ink-soft); text-align: center; margin-top: .3rem; }
.contact-form.sent { text-align: center; padding: 3rem 2rem; }
.contact-form.sent .form-row,
.contact-form.sent label,
.contact-form.sent button,
.contact-form.sent .form-note { display: none; }
.contact-form.sent::after {
  content: '✦ Bedankt! Ik reageer binnen 24 uur.';
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--rose-deep);
}

/* ============== CTA BANNER ============== */
.cta-banner {
  background: var(--blush);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 4rem);
  max-width: var(--maxw);
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, var(--pink), transparent 40%),
    radial-gradient(circle at 90% 80%, var(--rose), transparent 40%);
  opacity: .4;
  z-index: 0;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.05;
  margin-bottom: 1rem;
  color: var(--ink);
}
.cta-banner h2 em { color: var(--rose-deep); font-style: italic; font-weight: 400; }
.cta-banner p {
  color: var(--ink-soft);
  max-width: 480px;
  margin: 0 auto 1.75rem;
}

/* ============== MARQUEE (subtle) ============== */
.marquee-wrap {
  background: var(--rose-deep);
  color: #fff;
  padding: 1.1rem 0;
  overflow: hidden;
  position: relative;
}
.marquee { display: flex; width: 100%; overflow: hidden; }
.marquee-track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 300;
  font-style: italic;
  animation: marquee 45s linear infinite;
  flex-shrink: 0;
  align-items: center;
}
.marquee-track span { display: inline-block; }
.marquee-track .sep {
  color: var(--pink);
  font-style: normal;
  font-size: .7em;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============== FOOTER ============== */
.footer {
  background: var(--blush);
  padding: 3.5rem clamp(1.25rem, 4vw, 3rem) 2rem;
  border-top: 1px solid var(--line);
  text-align: center;
  position: relative;
}
.footer-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.footer-logo img {
  height: 140px;
  width: auto;
  /* Wit silhouet kleuren naar dusty-wine voor lichte footer */
  filter: brightness(0) saturate(100%) invert(15%) sepia(28%) saturate(900%) hue-rotate(310deg);
}
@media (max-width: 600px) { .footer-logo img { height: 100px; } }

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink-soft);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  font-size: .9rem;
  font-weight: 500;
  margin-bottom: 2rem;
}
.footer-nav a { transition: color .3s var(--ease); }
.footer-nav a:hover { color: var(--rose-deep); }

.footer-meta {
  display: flex;
  justify-content: space-between;
  font-size: .76rem;
  color: var(--ink-soft);
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 600px) { .footer-meta { justify-content: center; text-align: center; } }

/* ============== LIGHTBOX ============== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(59,35,44,.94);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s var(--ease);
  backdrop-filter: blur(8px);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-inner { max-width: 90vw; max-height: 90vh; position: relative; }
.lightbox-inner img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.5);
  transition: opacity .25s var(--ease);
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  color: #fff;
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  transition: all .3s var(--ease);
  z-index: 1;
}
.lightbox-close:hover,
.lightbox-nav:hover { background: var(--rose-deep); border-color: var(--rose-deep); }
.lightbox-close { top: 1.5rem; right: 1.5rem; font-size: 1rem; }
.lightbox-nav { top: 50%; transform: translateY(-50%); font-size: 1.7rem; }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* ============== SCROLL PROGRESS ============== */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(to right, var(--rose-deep), var(--rose), var(--pink));
  z-index: 200;
  width: 0%;
  transition: width .1s linear;
  box-shadow: 0 0 10px rgba(194,92,124,.35);
}

/* ============== FOCUS ============== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--rose-deep);
  outline-offset: 4px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .gallery-item,
  html.js .gallery-item:not(.visible),
  .js-reveal,
  html.js .js-reveal:not(.visible) {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* =========================================================
   ENHANCEMENTS — ziek mooi, niet circus
   ========================================================= */

/* ---- VIEW TRANSITIONS (smooth page navigation) ---- */
@view-transition { navigation: auto; }
::view-transition-old(root) {
  animation: vt-out .35s var(--ease-smooth) forwards;
}
::view-transition-new(root) {
  animation: vt-in .5s var(--ease-smooth) forwards;
}
@keyframes vt-out {
  to { opacity: 0; transform: scale(.985); }
}
@keyframes vt-in {
  from { opacity: 0; transform: scale(1.015); clip-path: inset(0 50% 0 50%); }
  to { opacity: 1; transform: scale(1); clip-path: inset(0 0 0 0); }
}

/* ---- HERO: featured image collage with curtain reveal ---- */
.hero-collage {
  position: relative;
  margin: 2.5rem auto 0;
  max-width: 880px;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 1rem;
  z-index: 2;
}
@media (max-width: 700px) {
  .hero-collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 160px 160px;
    gap: .7rem;
    max-width: 540px;
  }
  .hero-collage .col-3 { display: none; }
}
.hero-collage .col {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px -16px rgba(59,35,44,.22);
  background: var(--blush);
  clip-path: inset(50% 50% 50% 50%);
  animation: curtain-open 1.1s var(--ease-smooth) forwards;
}
.hero-collage .col-1 {
  grid-row: 1 / 3;
  animation-delay: .35s;
}
.hero-collage .col-2 {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  animation-delay: .55s;
  transform-origin: center;
}
.hero-collage .col-3 {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
  animation-delay: .75s;
}
.hero-collage .col img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform .9s var(--ease-smooth);
}
.hero-collage .col:hover img { transform: scale(1.06); }

@keyframes curtain-open {
  0% { clip-path: inset(50% 50% 50% 50%); opacity: 0; }
  100% { clip-path: inset(0 0 0 0); opacity: 1; }
}

/* Color tags floating around collage */
.hero-collage .tag {
  position: absolute;
  padding: .5rem 1rem;
  border-radius: 100px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: .95rem;
  font-weight: 400;
  color: var(--ink);
  box-shadow: 0 8px 18px -8px rgba(59,35,44,.25);
  z-index: 3;
  opacity: 0;
  animation: tag-pop .6s var(--ease-smooth) forwards;
}
.hero-collage .tag-1 {
  top: -16px; left: 8%;
  background: var(--peach);
  transform: rotate(-6deg);
  animation-delay: 1.3s;
}
.hero-collage .tag-2 {
  bottom: -16px; right: 12%;
  background: var(--lilac);
  transform: rotate(5deg);
  animation-delay: 1.5s;
}
@keyframes tag-pop {
  0% { opacity: 0; transform: scale(.6) rotate(var(--r,0)); }
  60% { opacity: 1; transform: scale(1.05) rotate(var(--r,0)); }
  100% { opacity: 1; transform: scale(1) rotate(var(--r,0)); }
}
.hero-collage .tag-1 { --r: -6deg; }
.hero-collage .tag-2 { --r: 5deg; }

/* ---- HERO KICKER: peach instead of plain ---- */
.hero-kicker {
  background: var(--peach) !important;
  border-color: rgba(255,210,184,.6) !important;
  color: var(--ink) !important;
}

/* ---- DECORATIVE FLOURISH next to em ---- */
.hero-title em,
.section-title em {
  position: relative;
  display: inline-block;
}
.hero-title em::before,
.section-title em::before {
  content: '';
  position: absolute;
  bottom: .08em;
  left: 0; right: 0;
  height: .12em;
  background: currentColor;
  opacity: .15;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s var(--ease-smooth) .2s;
}
.hero-title em.is-visible::before,
.section-title.is-visible em::before,
.section-title em.is-visible::before { transform: scaleX(1); }

/* Sparkle next to em (subtle) */
.hero-title em::after,
.page-hero h1 em::after {
  content: '✦';
  position: absolute;
  top: -.15em;
  right: -.5em;
  font-style: normal;
  font-size: .35em;
  color: var(--gold);
  opacity: 0;
  animation: sparkle 2.5s ease-in-out 1.2s infinite;
  font-weight: 400;
  font-variation-settings: normal;
}
@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(.6) rotate(0); }
  20% { opacity: 1; transform: scale(1) rotate(15deg); }
  60% { opacity: .5; transform: scale(.9) rotate(-10deg); }
}

/* ---- SECTION DIVIDER (soft wave) ---- */
.divider {
  display: block;
  width: 100%;
  height: 60px;
  margin: -1px 0;
  position: relative;
  z-index: 3;
  pointer-events: none;
}
.divider svg { width: 100%; height: 100%; display: block; }

/* ---- CATEGORY CARDS: open on hover ---- */
.cat-card {
  position: relative;
  isolation: isolate;
}
.cat-card-body {
  padding: 1.5rem 1.6rem 1.4rem;
  align-items: stretch;
  flex-direction: column;
  gap: .35rem;
  background: linear-gradient(to top, rgba(59,35,44,.9), rgba(59,35,44,.55) 40%, transparent 80%);
  transition: background .4s var(--ease);
}
.cat-card .cat-card-arrow {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  bottom: auto;
  background: rgba(255,255,255,.16);
}
.cat-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.cat-card-desc {
  color: rgba(255,255,255,.85);
  font-size: .85rem;
  line-height: 1.45;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .55s var(--ease-smooth), opacity .35s var(--ease) .1s, margin-top .55s var(--ease-smooth);
  margin-top: 0;
}
.cat-card:hover .cat-card-desc {
  max-height: 200px;
  opacity: 1;
  margin-top: .55rem;
}

/* On tablets: show description by default */
@media (hover: none) and (min-width: 701px), (min-width: 700px) and (max-width: 900px) {
  .cat-card-desc {
    max-height: 200px;
    opacity: .95;
    margin-top: .5rem;
  }
}
/* On mobile: alleen titel, geen omschrijving */
@media (max-width: 700px) {
  .cat-card-desc { display: none; }
  /* Verberg de pijl-cirkel op mobiel — staat in de weg, kaart is al duidelijk klikbaar */
  .cat-card .cat-card-arrow { display: none; }
  /* Titels uniform uitlijnen op mobiel — alles centered, kleiner, breekt netjes af */
  .cat-card-body {
    padding: 1rem .9rem 1.1rem;
    text-align: center;
    align-items: center;
  }
  .cat-card-meta {
    width: 100%;
    justify-content: center;
  }
  .cat-card-meta > div {
    width: 100%;
    text-align: center;
  }
  .cat-card-title {
    font-size: 1.1rem;
    line-height: 1.15;
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: auto;
  }
}

/* Maartje's favorite badge — hangt als label vanaf de bovenrand */
.fav-badge {
  position: absolute;
  top: 0;
  right: 1.25rem;
  background: linear-gradient(135deg, var(--rose-deep), var(--mauve));
  color: #fff;
  padding: .35rem .8rem .4rem;
  border-radius: 0 0 14px 14px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: .78rem;
  font-weight: 500;
  z-index: 3;
  box-shadow: 0 6px 14px -4px rgba(194,92,124,.45);
  animation: fav-glow 2.5s ease-in-out infinite;
}
@keyframes fav-glow {
  0%, 100% { box-shadow: 0 8px 20px -6px rgba(194,92,124,.55); }
  50% { box-shadow: 0 12px 30px -4px rgba(194,92,124,.85); }
}
@media (max-width: 600px) {
  .fav-badge {
    top: 0;
    right: .75rem;
    bottom: auto;
    transform: none;
    font-size: .68rem;
    padding: .3rem .6rem .35rem;
    border-radius: 0 0 12px 12px;
  }
}

/* Special border on favorite category */
.cat-card[data-fav="true"] {
  outline: 3px solid var(--rose-deep);
  outline-offset: -3px;
}
/* Hide the tint-label when card heeft al een favoriet-badge — voorkom overlap */
.cat-card[data-fav="true"]::after { display: none; }

/* Color tints accent label — hangt als tab vanaf bovenrand */
.cat-card.tint-rose::after,
.cat-card.tint-peach::after,
.cat-card.tint-mint::after,
.cat-card.tint-lilac::after,
.cat-card.tint-butter::after {
  content: '';
  position: absolute;
  top: 0; left: 1.25rem;
  padding: .3rem .8rem .35rem;
  border-radius: 0 0 12px 12px;
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--ink);
  z-index: 2;
  box-shadow: 0 4px 10px -4px rgba(59,35,44,.25);
}
.cat-card.tint-rose::after { content: 'Liefde'; background: var(--rose); color: #fff; }
.cat-card.tint-peach::after { content: 'Wonder'; background: var(--peach); }
.cat-card.tint-mint::after { content: 'Merk'; background: var(--sage); }
.cat-card.tint-lilac::after { content: 'Familie'; background: var(--lilac); }
.cat-card.tint-butter::after { content: 'Verhaal'; background: var(--butter); }

/* ---- SECTION-LABEL DOT: rotate colors per page section ---- */
.section .section-label:nth-of-type(1) .dot { background: var(--rose-deep); }
.section:nth-of-type(2n) .section-label .dot { background: var(--terracotta); }
.section:nth-of-type(3n) .section-label .dot { background: var(--gold); }
.section:nth-of-type(4n) .section-label .dot { background: var(--mauve); }

/* ---- ABOUT BADGE: more pop with gold ---- */
.about-badge {
  background: linear-gradient(135deg, var(--butter), var(--gold)) !important;
}

/* ---- SERVICE CARDS: subtle color accent on top edge ---- */
.service-card { border-top: 4px solid transparent; }
.service-card.tone-blush { border-top-color: var(--rose); }
.service-card.tone-pink { border-top-color: var(--rose-deep); }
.service-card.tone-cream { border-top-color: var(--gold); }

/* Service number gets bigger and more colorful on hover */
.service-card:hover .service-num {
  background: linear-gradient(135deg, var(--rose-deep), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 1;
}

/* ---- REVIEW: bigger left quote with color ---- */
.review { padding-top: 2.6rem; }
.review::before { color: var(--rose-deep); opacity: .35; font-size: 5rem; }

/* ---- CTA BANNER: more gradient + decoration ---- */
.cta-banner {
  background:
    linear-gradient(135deg, var(--blush) 0%, var(--bg-cream) 100%);
  border: 1px solid rgba(255,255,255,.8);
}
.cta-banner::before {
  background:
    radial-gradient(circle at 15% 25%, var(--pink), transparent 35%),
    radial-gradient(circle at 85% 70%, var(--peach), transparent 35%),
    radial-gradient(circle at 50% 100%, var(--lilac), transparent 30%);
  opacity: .55;
}
.cta-banner::after {
  content: '✦';
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 2rem;
  color: var(--rose);
  opacity: .5;
  font-family: var(--font-display);
  font-weight: 400;
  z-index: 1;
  animation: spin-slow 12s linear infinite;
}
@keyframes spin-slow {
  to { transform: rotate(360deg); }
}

/* ---- MARQUEE: subtle gradient overlay ---- */
.marquee-wrap {
  background: linear-gradient(90deg, var(--rose-deep) 0%, var(--mauve) 50%, var(--rose-deep) 100%);
}
.marquee-wrap::before,
.marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--rose-deep), transparent);
}
.marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--rose-deep), transparent);
}

/* ---- IMAGE LOAD ANIMATION (subtle blur-up) ---- */
img {
  transition: filter .4s var(--ease);
}
img:not([src]),
img[src=""] {
  filter: blur(20px);
  background: var(--blush);
}

/* ---- PAGE HERO: stronger color sweep ---- */
.page-hero::before {
  background:
    radial-gradient(circle at 5% 30%, var(--pink) 0%, transparent 35%),
    radial-gradient(circle at 95% 60%, var(--peach) 0%, transparent 35%),
    radial-gradient(circle at 50% 110%, var(--lilac) 0%, transparent 30%);
  opacity: .7;
}
.page-hero h1 em {
  background: linear-gradient(120deg, var(--rose-deep), var(--terracotta));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---- HERO SWATCHES: more variety ---- */
.sw-1 { background: var(--pink); }
.sw-2 { background: var(--peach); }
.sw-3 { background: var(--blush); }
.sw-4 { background: var(--lilac); }
.sw-5 { background: var(--butter); }

/* ---- NAVCTA: small pulse to draw attention ---- */
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 6px 18px -6px rgba(194,92,124,.45); }
  50% { box-shadow: 0 6px 24px -4px rgba(194,92,124,.7), 0 0 0 6px rgba(194,92,124,.08); }
}
.nav-cta { animation: cta-pulse 3s ease-in-out infinite; }
.nav-cta:hover { animation: none; }

/* ---- STATS: alternating colors ---- */
.about-stats > div:nth-child(1) strong { color: var(--rose-deep); }
.about-stats > div:nth-child(2) strong { color: var(--terracotta); }
.about-stats > div:nth-child(3) strong { color: var(--gold); }

.hero-meta > div:nth-child(1) strong { color: var(--rose-deep); }
.hero-meta > div:nth-child(2) strong { color: var(--terracotta); }
.hero-meta > div:nth-child(3) strong { color: var(--mauve); }

/* ---- GALLERY: subtle color tint behind on load ---- */
.gallery-item:nth-child(5n+1) { background: var(--blush); }
.gallery-item:nth-child(5n+2) { background: var(--peach); }
.gallery-item:nth-child(5n+3) { background: var(--lilac); }
.gallery-item:nth-child(5n+4) { background: var(--bg-cream); }
.gallery-item:nth-child(5n+5) { background: var(--pink); }

/* ---- BTN-PRIMARY: shimmer on hover ---- */
.btn-primary {
  background: linear-gradient(135deg, var(--rose-deep) 0%, var(--mauve) 100%);
}

/* =========================================================
   NEXT-LEVEL ADDITIONS
   ========================================================= */

/* ---- TRUST STRIP ---- */
.trust-strip {
  background: var(--bg-alt);
  padding: 2rem clamp(1.25rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1rem, 4vw, 3rem);
  align-items: center;
}
@media (max-width: 700px) {
  .trust-inner { grid-template-columns: 1fr; text-align: center; gap: 1.25rem; }
}
.trust-label {
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  white-space: nowrap;
}
.trust-logos {
  display: flex;
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ink);
  opacity: .55;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  white-space: nowrap;
  font-weight: 400;
}
.trust-logo:hover { opacity: 1; transform: translateY(-2px); }
.trust-logo .ampr { color: var(--rose-deep); margin: 0 .1em; }

/* ---- PROCESS TIMELINE ---- */
.process-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  position: relative;
}
@media (max-width: 900px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .process-grid { grid-template-columns: 1fr; } }

.process-step {
  position: relative;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--bg-alt);
  border: 1px solid var(--line);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px -20px rgba(59,35,44,.18);
}
.process-step .step-tone {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 6px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.process-step:nth-child(1) .step-tone { background: var(--rose); }
.process-step:nth-child(2) .step-tone { background: var(--peach); }
.process-step:nth-child(3) .step-tone { background: var(--lilac); }
.process-step:nth-child(4) .step-tone { background: var(--butter); }

.step-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1;
  color: var(--rose);
  opacity: 1;
  margin-bottom: .75rem;
  font-style: italic;
  transition: color .3s var(--ease), transform .4s var(--ease-smooth);
  display: inline-block;
  padding-right: .3em;
}
.process-step:hover .step-num {
  color: var(--rose-deep);
  transform: rotate(-6deg) scale(1.05);
}
.process-step h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.4rem;
  margin-bottom: .6rem;
  color: var(--ink);
}
.process-step p {
  color: var(--ink-soft);
  font-size: .92rem;
  line-height: 1.5;
}
.process-step .step-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--blush);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--rose-deep);
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.process-step:hover .step-icon {
  background: var(--rose-deep);
  color: #fff;
  transform: rotate(-8deg);
}
.process-step .step-icon svg { width: 18px; height: 18px; }

/* ---- STICKY MOBILE CTA BAR ---- */
.mobile-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 30px -10px rgba(59,35,44,.15);
  padding: .65rem .75rem calc(.65rem + env(safe-area-inset-bottom, 0px));
  display: none;
  gap: .5rem;
  z-index: 95;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255,255,255,.92);
}
.mobile-bar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .25rem;
  padding: .55rem .25rem;
  border-radius: 12px;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ink);
  text-align: center;
  transition: background .3s var(--ease);
}
.mobile-bar a:hover { background: var(--blush); }
.mobile-bar a svg { width: 20px; height: 20px; }
.mobile-bar a.primary {
  background: var(--rose-deep);
  color: #fff;
  flex: 1.6;
}
.mobile-bar a.primary:hover { background: var(--ink); }
.mobile-bar a.whatsapp svg { color: #25d366; }

@media (max-width: 760px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: 78px; }
}

/* ---- WHATSAPP FLOATING BUTTON (desktop) ---- */
.fab-wa {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  box-shadow: 0 12px 30px -8px rgba(37,211,102,.5);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  animation: fab-pop 1s var(--ease-smooth) 1.5s both;
}
.fab-wa:hover {
  transform: scale(1.1) rotate(-6deg);
  box-shadow: 0 18px 40px -8px rgba(37,211,102,.6);
}
.fab-wa svg { width: 28px; height: 28px; }
.fab-wa::before {
  content: 'Stuur een berichtje';
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--ink);
  color: var(--bg);
  padding: .5rem .85rem;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.fab-wa:hover::before {
  opacity: 1;
  visibility: visible;
}
@keyframes fab-pop {
  from { opacity: 0; transform: scale(.5) rotate(180deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}
@media (max-width: 760px) {
  .fab-wa { display: none; }
}

/* ---- MOBILE/IPAD POLISH ---- */
@media (max-width: 1024px) {
  .hero { padding-top: 7.5rem; min-height: auto; }
  .hero-collage { margin-top: 2rem; }
}

/* iPad portrait: clean 2-column grid */
@media (min-width: 700px) and (max-width: 1100px) {
  .cat-grid { grid-template-columns: 1fr 1fr !important; }
  .cat-card,
  .cat-card.big,
  .cat-card.wide {
    grid-column: span 1 !important;
    aspect-ratio: 4/5 !important;
  }
  /* First card spans full width on tablet for hero impact */
  .cat-card:first-child { grid-column: span 2 !important; aspect-ratio: 16/9 !important; }
}

/* Hero collage tablet */
@media (min-width: 700px) and (max-width: 1024px) {
  .hero-collage {
    grid-template-rows: 220px 220px;
  }
}

/* Better text wrapping on small screens */
@media (max-width: 540px) {
  .hero-title { font-size: clamp(2.6rem, 12vw, 4rem); }
  .section-title { font-size: clamp(2rem, 8vw, 3rem); }
  .page-hero h1 { font-size: clamp(2.4rem, 10vw, 3.5rem); }
  .cta-banner h2 { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .marquee-track { font-size: clamp(1.4rem, 6vw, 2rem); }
}

/* Stagger reveal on cat-cards (when in view) */
.cat-card { transition-delay: 0s; }
.cat-card:nth-child(1).js-reveal { transition-delay: .05s; }
.cat-card:nth-child(2).js-reveal { transition-delay: .12s; }
.cat-card:nth-child(3).js-reveal { transition-delay: .19s; }
.cat-card:nth-child(4).js-reveal { transition-delay: .26s; }
.cat-card:nth-child(5).js-reveal { transition-delay: .33s; }

/* Process step stagger */
.process-step.js-reveal:nth-child(1) { transition-delay: 0s; }
.process-step.js-reveal:nth-child(2) { transition-delay: .1s; }
.process-step.js-reveal:nth-child(3) { transition-delay: .2s; }
.process-step.js-reveal:nth-child(4) { transition-delay: .3s; }

/* iPad landscape: ensure proper nav */
@media (min-width: 768px) and (max-width: 960px) {
  .nav-links { gap: 1.5rem; font-size: .85rem; }
}

/* Make all images smoothly fluid */
.cat-card,
.gallery-item,
.about-image-wrap,
.hero-collage .col,
.review,
.service-card,
.process-step {
  transition: transform .5s var(--ease-smooth), box-shadow .5s var(--ease), opacity .9s var(--ease);
}

/* Focus on touch — bigger tap targets */
@media (pointer: coarse) {
  .nav-cta, .btn { padding: 1rem 1.5rem; min-height: 48px; }
  .cat-card-arrow { width: 44px; height: 44px; }
  .filter { padding: .75rem 1.25rem; }
}

/* Smooth address-bar match (iOS) */
:root { color-scheme: light; }

/* =========================================================
   CONVERSION BOOSTERS
   ========================================================= */

/* ---- ANNOUNCEMENT BAR (top urgency) ---- */
.announce {
  background: linear-gradient(90deg, var(--rose-deep), var(--mauve), var(--rose-deep));
  background-size: 200% 100%;
  color: #fff;
  padding: .55rem 1rem;
  text-align: center;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .02em;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 101;
  animation: shimmer-bg 8s linear infinite;
  transition: transform .4s var(--ease), opacity .4s var(--ease);
}
body.announce-hidden .announce {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
body.announce-hidden:has(.announce:not(.hidden)) .nav { top: 0; }
@keyframes shimmer-bg {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.announce a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  margin-left: .5em;
  transition: opacity .2s var(--ease);
}
.announce a:hover { opacity: .85; }
.announce-close {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
  line-height: 1;
  padding: .25rem;
  transition: color .2s var(--ease);
}
.announce-close:hover { color: #fff; }
.announce.hidden { display: none; }

/* Push nav down when announce is visible */
body:has(.announce:not(.hidden)) .nav { top: 38px; }
@media (max-width: 600px) {
  .announce { font-size: .72rem; padding: .55rem 2rem .55rem .75rem; }
  body:has(.announce:not(.hidden)) .nav { top: 36px; }
}

/* ---- FEATURED TESTIMONIAL (hero) ---- */
.featured-quote {
  max-width: 720px;
  margin: 3rem auto 0;
  padding: 1.6rem 2rem;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: 0 12px 30px -12px rgba(59,35,44,.15);
  text-align: center;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s var(--ease-smooth) 1.5s both;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.featured-quote .stars {
  display: flex;
  justify-content: center;
  gap: .15rem;
  color: var(--gold);
  font-size: 1.05rem;
  margin-bottom: .8rem;
}
.featured-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--ink);
  line-height: 1.45;
  margin-bottom: .6rem;
}
.featured-quote .quote-meta {
  font-size: .78rem;
  color: var(--ink-soft);
  letter-spacing: .04em;
  font-weight: 500;
}
.featured-quote .quote-meta strong {
  color: var(--rose-deep);
  font-weight: 600;
}

/* ---- USP GRID (Waarom Stut?) ---- */
.usp-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 900px) { .usp-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .usp-grid { grid-template-columns: 1fr; } }

.usp {
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  background: var(--bg-alt);
  border: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.usp:hover {
  transform: translateY(-4px);
  border-color: var(--rose);
  box-shadow: 0 16px 30px -16px rgba(59,35,44,.16);
}
.usp-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--ink);
}
.usp:nth-child(6n+1) .usp-icon { background: var(--blush); color: var(--rose-deep); }
.usp:nth-child(6n+2) .usp-icon { background: var(--peach); color: var(--terracotta); }
.usp:nth-child(6n+3) .usp-icon { background: var(--lilac); color: var(--mauve); }
.usp:nth-child(6n+4) .usp-icon { background: var(--butter); color: var(--gold); }
.usp:nth-child(6n+5) .usp-icon { background: var(--mint-soft, #dff3e8); color: #5b8770; }
.usp:nth-child(6n+6) .usp-icon { background: var(--pink); color: var(--rose-deep); }

.usp-icon svg { width: 20px; height: 20px; }
.usp-text { flex: 1; }
.usp-text h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  margin-bottom: .25rem;
  color: var(--ink);
  line-height: 1.2;
}
.usp-text p {
  font-size: .87rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

/* ---- COMPARISON / BIGGER CTA Strip ---- */
.cta-strip {
  background: linear-gradient(135deg, var(--ink) 0%, #4d2c39 100%);
  color: #fff;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 800px) {
  .cta-strip { grid-template-columns: 1fr; text-align: center; }
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--rose-deep), transparent 60%);
  opacity: .35;
  filter: blur(60px);
  pointer-events: none;
}
.cta-strip h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: .8rem;
  position: relative;
}
.cta-strip h2 em {
  font-style: italic;
  background: linear-gradient(120deg, var(--rose), var(--peach));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
}
.cta-strip p {
  color: rgba(255,255,255,.75);
  margin-bottom: 0;
  position: relative;
  font-size: 1rem;
  line-height: 1.55;
}
.cta-strip-actions {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  position: relative;
}
.cta-strip-actions .btn {
  width: 100%;
  justify-content: center;
}
.cta-strip-actions .btn-primary {
  background: linear-gradient(135deg, var(--rose-deep) 0%, var(--terracotta) 100%);
  font-size: 1rem;
  padding: 1.1rem 1.5rem;
  box-shadow: 0 16px 36px -10px rgba(255,107,74,.55);
}
.cta-strip-actions .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px -12px rgba(255,107,74,.7);
}
.cta-strip-meta {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  text-align: center;
  letter-spacing: .02em;
}
.cta-strip-meta strong { color: var(--peach); font-weight: 600; }

/* ---- PRICING TABLE (cleaner comparison) ---- */
.compare-table {
  max-width: 1100px;
  margin: 3rem auto 0;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 24px 50px -25px rgba(59,35,44,.15);
}
.compare-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--line);
  font-size: .9rem;
}
.compare-row:last-child { border-bottom: none; }
.compare-row > div {
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
}
.compare-row > div:not(:first-child) {
  justify-content: center;
  border-left: 1px solid var(--line);
}
.compare-row.head {
  background: var(--blush);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
}
.compare-row.head > div { padding: 1.25rem 1.25rem; justify-content: center; font-weight: 500; }
.compare-row.head > div:first-child { justify-content: flex-start; font-style: normal; font-family: var(--font-body); font-size: .72rem; letter-spacing: .25em; text-transform: uppercase; opacity: .6; font-weight: 600; }
.compare-row.head .featured-col { background: var(--rose-deep); color: #fff; position: relative; }
.compare-row.head .featured-col::after {
  content: 'Populair';
  position: absolute;
  top: 6px; right: 8px;
  background: var(--butter);
  color: var(--ink);
  font-family: var(--font-body);
  font-style: normal;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .15em;
  padding: .2rem .55rem;
  border-radius: 100px;
}
.compare-row .check {
  color: var(--rose-deep);
  font-size: 1.15rem;
  line-height: 1;
}
.compare-row .x {
  color: var(--ink-soft);
  opacity: .35;
  font-size: 1.05rem;
}
.compare-row .featured-col {
  background: rgba(232,154,170,.08);
}
@media (max-width: 700px) {
  .compare-row { grid-template-columns: 2fr 1fr 1fr; font-size: .82rem; }
  .compare-row > div:nth-child(3) { display: none; }
  .compare-row > div { padding: .85rem .9rem; }
}

/* ---- SECTION HEADER WITH MORE PUNCH ---- */
.section-head.big-head .section-title { font-size: clamp(2.6rem, 7vw, 5rem); }
.section-head.big-head .section-sub { font-size: 1.1rem; }

/* ---- BIGGER HERO BUTTONS ---- */
.hero-actions .btn { padding: 1.1rem 2rem; font-size: 1rem; }
.hero-actions .btn-primary {
  box-shadow: 0 16px 36px -10px rgba(194,92,124,.55);
}

/* ---- PULSE on key CTAs ---- */
.btn-pulse {
  position: relative;
}
.btn-pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 100px;
  border: 2px solid var(--rose-deep);
  opacity: 0;
  animation: pulse-ring 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes pulse-ring {
  0% { opacity: .8; transform: scale(.9); }
  100% { opacity: 0; transform: scale(1.15); }
}

/* ---- SCARCITY TAG ---- */
.scarcity-tag {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: var(--terracotta);
  color: #fff;
  padding: .25rem .7rem;
  border-radius: 100px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-left: .5rem;
  vertical-align: middle;
}
.scarcity-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: blink-tag 1.2s ease-in-out infinite;
}
@keyframes blink-tag {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

/* =========================================================
   PRICING CALCULATOR
   ========================================================= */
.calc-section {
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
}

.calc-wrap {
  max-width: 1100px;
  margin: 2rem auto 0;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -25px rgba(59,35,44,.18);
  overflow: hidden;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  min-height: 540px;
}
@media (max-width: 900px) { .calc-grid { grid-template-columns: 1fr; } }

.calc-controls {
  padding: 2rem;
  display: grid;
  gap: 1.75rem;
  align-content: start;
}
.calc-controls fieldset {
  border: none;
  padding: 0;
  margin: 0;
}
.calc-controls legend {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: .85rem;
}

/* Radio-card style options */
.option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .55rem;
}
@media (max-width: 540px) {
  .option-grid { grid-template-columns: 1fr; }
}
.opt {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  padding: .85rem 1rem;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  cursor: pointer;
  transition: all .25s var(--ease);
  background: var(--bg-alt);
  position: relative;
}
.opt input { position: absolute; opacity: 0; pointer-events: none; }
.opt-title {
  font-weight: 600;
  font-size: .92rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.opt-meta {
  font-size: .78rem;
  color: var(--ink-soft);
}
.opt:hover { border-color: var(--rose); transform: translateY(-1px); }
.opt:has(input:checked) {
  border-color: var(--rose-deep);
  background: var(--blush);
}
.opt:has(input:checked) .opt-title { color: var(--rose-deep); }
.opt .fav-mini {
  background: var(--rose-deep);
  color: #fff;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .12rem .45rem;
  border-radius: 100px;
}

/* Slider */
.slider-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  margin-bottom: .6rem;
}
.slider-row input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 100px;
  background: var(--blush);
  outline: none;
}
.slider-row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--rose-deep);
  cursor: pointer;
  border: 3px solid #fff;
  box-shadow: 0 4px 10px -2px rgba(194,92,124,.5);
  transition: transform .2s var(--ease);
}
.slider-row input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }
.slider-row input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--rose-deep);
  cursor: pointer;
  border: 3px solid #fff;
}
.slider-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  min-width: 60px;
  text-align: right;
  font-style: italic;
}
.slider-info {
  font-size: .76rem;
  color: var(--ink-soft);
}
.slider-info strong { color: var(--rose-deep); font-weight: 600; }
.tier-tag {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: .6rem;
  background: var(--blush);
  color: var(--rose-deep);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .03em;
  padding: .35rem .75rem;
  border-radius: 100px;
  animation: tier-pop .3s var(--ease-smooth);
}
@keyframes tier-pop {
  from { opacity: 0; transform: scale(.9); }
  to { opacity: 1; transform: scale(1); }
}

/* Checkbox add-ons */
.addon-list { display: grid; gap: .45rem; }
.addon {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .7rem .9rem;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  cursor: pointer;
  transition: all .25s var(--ease);
  background: var(--bg-alt);
}
.addon input { position: absolute; opacity: 0; pointer-events: none; }
.addon .check-box {
  width: 20px; height: 20px;
  border-radius: 6px;
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .25s var(--ease);
}
.addon .check-box::after {
  content: '';
  width: 10px; height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) scale(0);
  transition: transform .25s var(--ease);
  margin-top: -2px;
}
.addon:has(input:checked) {
  border-color: var(--rose-deep);
  background: var(--blush);
}
.addon:has(input:checked) .check-box {
  background: var(--rose-deep);
  border-color: var(--rose-deep);
}
.addon:has(input:checked) .check-box::after { transform: rotate(-45deg) scale(1); }
.addon .addon-text {
  flex: 1;
  font-size: .9rem;
  color: var(--ink);
}
.addon .addon-price {
  font-weight: 600;
  color: var(--ink-soft);
  font-size: .88rem;
  white-space: nowrap;
}

/* Summary panel */
.calc-summary {
  background: linear-gradient(180deg, var(--ink) 0%, #4d2c39 100%);
  color: #fff;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}
.calc-summary::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 280px; height: 280px;
  background: radial-gradient(circle, var(--rose-deep), transparent 60%);
  opacity: .3;
  filter: blur(40px);
  pointer-events: none;
}
.calc-summary > * { position: relative; z-index: 1; }

.calc-summary h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.35rem;
  margin-bottom: .25rem;
}
.calc-summary .calc-sub {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .03em;
  margin-bottom: .5rem;
}
.calc-breakdown {
  list-style: none;
  display: grid;
  gap: .55rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
  font-size: .9rem;
  flex: 1;
}
.calc-breakdown li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  color: rgba(255,255,255,.85);
}
.calc-breakdown li.muted { color: rgba(255,255,255,.5); font-size: .82rem; }
.calc-breakdown li strong { color: #fff; font-weight: 500; }

.calc-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: .5rem;
}
.calc-total span {
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  font-weight: 500;
}
.calc-total strong {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 400;
  background: linear-gradient(120deg, var(--rose), var(--peach));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -.01em;
}
.calc-total strong.bumping { animation: total-bump .4s var(--ease-smooth); }
@keyframes total-bump {
  0% { transform: scale(1); }
  50% { transform: scale(1.07); }
  100% { transform: scale(1); }
}

.calc-summary .btn {
  width: 100%;
  justify-content: center;
}
.calc-summary .calc-note {
  text-align: center;
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .03em;
  margin-top: .25rem;
}

/* =========================================================
   NEXT LEVEL — Newsletter, Calendar, Gift Card, Stories,
   Prints, AI-free, Exit Intent, Before/After
   ========================================================= */

/* ---- NEWSLETTER ---- */
.newsletter {
  background: linear-gradient(135deg, var(--blush) 0%, var(--lilac) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 4rem);
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 380px; height: 380px;
  background: radial-gradient(circle, var(--pink), transparent 60%);
  opacity: .55;
  filter: blur(40px);
}
.newsletter::after {
  content: '✦';
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--rose-deep);
  opacity: .15;
  z-index: 0;
}
.newsletter > * { position: relative; z-index: 1; }
@media (max-width: 800px) { .newsletter { grid-template-columns: 1fr; text-align: center; } }

.newsletter h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: .75rem;
  color: var(--ink);
}
.newsletter h2 em { font-style: italic; color: var(--rose-deep); font-weight: 400; }
.newsletter p { color: var(--ink-soft); font-size: 1rem; line-height: 1.55; margin-bottom: .5rem; }
.newsletter .lead-magnet {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rose-deep);
  background: rgba(255,255,255,.65);
  padding: .35rem .8rem;
  border-radius: 100px;
  margin-bottom: .75rem;
}

.newsletter-form {
  background: var(--bg-alt);
  padding: 1.6rem;
  border-radius: var(--radius);
  display: flex;
  gap: .6rem;
  align-items: stretch;
  flex-wrap: wrap;
  box-shadow: 0 16px 40px -16px rgba(59,35,44,.18);
}
.newsletter-form input {
  flex: 1;
  min-width: 200px;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--line);
  padding: .85rem .25rem;
  font: inherit;
  color: var(--ink);
  outline: none;
  transition: border-color .25s var(--ease);
}
.newsletter-form input:focus { border-color: var(--rose-deep); }
.newsletter-form button {
  padding: .85rem 1.3rem;
  background: var(--rose-deep);
  color: #fff;
  border-radius: 100px;
  font-weight: 500;
  font-size: .92rem;
  white-space: nowrap;
  transition: all .3s var(--ease);
}
.newsletter-form button:hover {
  background: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -6px rgba(59,35,44,.4);
}
.newsletter-form.sent {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--rose-deep);
  padding: 2rem;
}
.newsletter-form.sent input,
.newsletter-form.sent button { display: none; }
.newsletter-form.sent::before {
  content: '✦ Komt eraan! Check je mailbox.';
}
.newsletter-form-note {
  font-size: .72rem;
  color: var(--ink-soft);
  margin-top: .8rem;
  text-align: center;
  width: 100%;
}

/* ---- AVAILABILITY CALENDAR ---- */
.cal-section {
  position: relative;
}
.cal-grid {
  max-width: 1100px;
  margin: 2.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .55rem;
  background: var(--bg-alt);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: 0 20px 40px -20px rgba(59,35,44,.14);
}
@media (max-width: 700px) { .cal-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 420px) { .cal-grid { grid-template-columns: repeat(2, 1fr); } }

.cal-month {
  background: var(--bg-soft);
  border-radius: 14px;
  padding: 1.1rem .85rem;
  text-align: center;
  position: relative;
  transition: transform .3s var(--ease);
  cursor: default;
}
.cal-month:hover { transform: translateY(-3px); }
.cal-month .m-label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  font-style: italic;
  color: var(--ink);
  margin-bottom: .35rem;
}
.cal-month .m-status {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .2rem .55rem;
  border-radius: 100px;
}
.cal-month.free .m-status { background: var(--mint, #c9d4c0); color: #3d5947; }
.cal-month.almost .m-status {
  background: var(--butter);
  color: #5a4500;
}
.cal-month.full .m-status { background: var(--ink); color: #fff; opacity: .8; }
.cal-month.full { opacity: .5; }
.cal-legend {
  max-width: 1100px;
  margin: 1rem auto 0;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-size: .78rem;
  color: var(--ink-soft);
  flex-wrap: wrap;
}
.cal-legend span {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.cal-legend span::before {
  content: '';
  width: 10px; height: 10px;
  border-radius: 50%;
  background: currentColor;
}
.cal-legend .free::before { background: var(--mint, #c9d4c0); }
.cal-legend .almost::before { background: var(--butter); }
.cal-legend .full::before { background: var(--ink); opacity: .7; }

/* ---- GIFT CARD ---- */
.gift-banner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  box-shadow: 0 24px 50px -25px rgba(59,35,44,.18);
}
@media (max-width: 800px) { .gift-banner { grid-template-columns: 1fr; } }

.gift-visual {
  position: relative;
  background: linear-gradient(135deg, var(--rose-deep) 0%, var(--mauve) 100%);
  padding: 3rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  overflow: hidden;
}
.gift-visual::before {
  content: '✦';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-display);
  color: rgba(255,255,255,.25);
  font-size: 3rem;
  animation: spin-slow 14s linear infinite;
}
.gift-card-mock {
  background: rgba(255,255,255,.95);
  padding: 1.6rem 1.75rem;
  border-radius: 18px;
  width: 100%;
  max-width: 320px;
  transform: rotate(-3deg);
  box-shadow: 0 20px 40px -15px rgba(0,0,0,.3);
  position: relative;
}
.gift-card-mock::after {
  content: '';
  position: absolute;
  top: -8px; left: 50%;
  transform: translateX(-50%);
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--bg-cream);
  border: 2px dashed var(--rose-deep);
}
.gift-card-mock .gc-label {
  font-size: .65rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 700;
  margin-bottom: .5rem;
}
.gift-card-mock .gc-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--ink);
  margin-bottom: .8rem;
  line-height: 1.1;
}
.gift-card-mock .gc-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--rose-deep);
  line-height: 1;
  margin-bottom: .35rem;
}
.gift-card-mock .gc-meta {
  font-size: .72rem;
  color: var(--ink-soft);
  border-top: 1px dashed var(--line);
  padding-top: .5rem;
  margin-top: .5rem;
}
.gift-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.gift-content .gift-label {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 600;
  margin-bottom: 1rem;
}
.gift-content h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.1;
  margin-bottom: .85rem;
  color: var(--ink);
}
.gift-content h2 em { font-style: italic; color: var(--rose-deep); font-weight: 400; }
.gift-content p {
  color: var(--ink-soft);
  margin-bottom: 1rem;
  line-height: 1.55;
}
.gift-amounts {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.gift-amount {
  padding: .5rem 1rem;
  border-radius: 100px;
  border: 1.5px solid var(--line);
  background: var(--bg-alt);
  font-weight: 600;
  font-size: .9rem;
  color: var(--ink);
  transition: all .25s var(--ease);
  cursor: pointer;
}
.gift-amount:hover { border-color: var(--rose-deep); color: var(--rose-deep); transform: translateY(-1px); }

/* ---- STORIES TEASER ---- */
.stories-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .stories-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .stories-grid { grid-template-columns: 1fr; } }

.story-card {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  display: block;
}
.story-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -20px rgba(59,35,44,.22);
}
.story-card-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.story-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform .8s var(--ease-smooth);
}
.story-card:hover .story-card-img img { transform: scale(1.06); }
.story-cat {
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  padding: .35rem .8rem;
  border-radius: 100px;
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 700;
}
.story-card-body {
  padding: 1.5rem 1.5rem 1.75rem;
}
.story-card-body h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.2;
  margin-bottom: .5rem;
  color: var(--ink);
}
.story-card-body p {
  color: var(--ink-soft);
  font-size: .92rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.story-meta {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .76rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.story-meta::after {
  content: '→';
  margin-left: auto;
  color: var(--rose-deep);
  transition: transform .3s var(--ease);
}
.story-card:hover .story-meta::after { transform: translateX(4px); }

/* ---- PRINT / ALBUM PRODUCTS ---- */
.print-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 800px) { .print-grid { grid-template-columns: 1fr; } }

.print-card {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.print-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -20px rgba(59,35,44,.18);
}
.print-icon {
  width: 70px; height: 70px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blush);
  color: var(--rose-deep);
}
.print-card:nth-child(2) .print-icon { background: var(--peach); color: var(--terracotta); }
.print-card:nth-child(3) .print-icon { background: var(--lilac); color: var(--mauve); }
.print-icon svg { width: 32px; height: 32px; }
.print-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.45rem;
  margin-bottom: .5rem;
  color: var(--ink);
}
.print-card p {
  color: var(--ink-soft);
  font-size: .92rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.print-price {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--rose-deep);
}

/* ---- AI-FREE / TRUST BADGES ---- */
.trust-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5rem;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .45rem .9rem;
  border-radius: 100px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .03em;
  color: var(--ink);
  transition: all .25s var(--ease);
}
.trust-pill:hover { border-color: var(--rose-deep); transform: translateY(-2px); }
.trust-pill .pill-icon {
  width: 18px; height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-deep);
}
.trust-pill .pill-icon svg { width: 100%; height: 100%; }

/* ---- BEFORE / AFTER SLIDER ---- */
.compare {
  position: relative;
  max-width: 900px;
  margin: 2.5rem auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/2;
  cursor: ew-resize;
  user-select: none;
  background: var(--blush);
  box-shadow: 0 30px 60px -25px rgba(59,35,44,.25);
}
.compare img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}
.compare .compare-after {
  clip-path: inset(0 0 0 50%);
  transition: clip-path .1s linear;
}
.compare-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 16px rgba(0,0,0,.3);
}
.compare-handle::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
}
.compare-handle::after {
  content: '⟷';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.2rem;
  color: var(--rose-deep);
  font-weight: 700;
}
.compare-label {
  position: absolute;
  top: 1rem;
  padding: .35rem .8rem;
  border-radius: 100px;
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 700;
  background: rgba(0,0,0,.6);
  color: #fff;
  backdrop-filter: blur(4px);
  pointer-events: none;
}
.compare-label.before { left: 1rem; }
.compare-label.after { right: 1rem; }

/* ---- EXIT INTENT POPUP ---- */
.exit-popup {
  position: fixed;
  inset: 0;
  background: rgba(59,35,44,.65);
  z-index: 9500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s var(--ease);
  backdrop-filter: blur(6px);
}
.exit-popup.open { opacity: 1; visibility: visible; }
.exit-card {
  background: var(--bg-alt);
  max-width: 440px;
  width: 100%;
  padding: 2.25rem 2rem 2rem;
  border-radius: var(--radius-lg);
  position: relative;
  text-align: center;
  transform: scale(.92);
  transition: transform .4s var(--ease-smooth);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.4);
}
.exit-popup.open .exit-card { transform: scale(1); }
.exit-card .exit-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: background .25s var(--ease);
  font-size: .9rem;
}
.exit-card .exit-close:hover { background: var(--blush); }
.exit-card .exit-emoji {
  font-size: 2.2rem;
  margin-bottom: .75rem;
}
.exit-card h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 1.15;
  letter-spacing: -.01em;
  margin-bottom: .65rem;
  color: var(--ink);
}
.exit-card h3 em { color: var(--rose-deep); font-style: italic; font-weight: 400; }
.exit-card p {
  color: var(--ink-soft);
  font-size: .95rem;
  margin-bottom: 1.5rem;
}
.exit-card .exit-actions {
  display: flex;
  gap: .55rem;
  flex-direction: column;
}
.exit-card .btn-wa {
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  justify-content: center;
  padding: .9rem 1.25rem;
  border-radius: 100px;
  font-weight: 500;
  font-size: .95rem;
  transition: all .3s var(--ease);
}
.exit-card .btn-wa:hover { background: #1ea854; transform: translateY(-2px); }
.exit-card .btn-wa svg { width: 20px; height: 20px; }
.exit-card .btn-text {
  background: transparent;
  color: var(--ink-soft);
  font-size: .85rem;
  padding: .55rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.exit-card .btn-text:hover { color: var(--rose-deep); }

/* ---- FEATURE BLOCK (Maartje's favoriet hero spotlight) ---- */
.feature-spot {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem);
  background: linear-gradient(135deg, var(--blush) 0%, var(--peach) 100%);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.feature-spot::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--rose), transparent 60%);
  opacity: .35;
  filter: blur(50px);
}
@media (max-width: 800px) { .feature-spot { grid-template-columns: 1fr; } }
.feature-spot > * { position: relative; z-index: 1; }
.feature-spot-img {
  border-radius: var(--radius);
  aspect-ratio: 4/5;
  box-shadow: 0 30px 60px -25px rgba(59,35,44,.3);
  position: relative;
  /* overflow:visible zodat stickers/badges over de rand mogen */
}
.feature-spot-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  border-radius: var(--radius);
}
.feature-spot-text .badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--rose-deep);
  color: #fff;
  padding: .4rem 1rem;
  border-radius: 100px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.feature-spot-text h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
  color: var(--ink);
}
.feature-spot-text h2 em { color: var(--rose-deep); font-style: italic; font-weight: 400; }
.feature-spot-text p { color: var(--ink-soft); margin-bottom: 1.25rem; line-height: 1.55; }
.feature-spot-text .feature-stats {
  display: flex;
  gap: 2rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}
.feature-spot-text .feature-stats div {
  font-size: .78rem;
  color: var(--ink-soft);
  letter-spacing: .04em;
}
.feature-spot-text .feature-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--rose-deep);
  margin-bottom: .15rem;
}

/* =========================================================
   MEGA UPGRADE — magazine layouts, tabs, lightbox, 404,
   microinteractions, asymmetric dividers, hero ken-burns
   ========================================================= */

/* ---- ASYMMETRIC CURVE DIVIDERS ---- */
.divider-curve {
  position: relative;
  display: block;
  width: 100%;
  line-height: 0;
}
.divider-curve svg {
  display: block;
  width: 100%;
  height: 80px;
}
.divider-curve.flip svg { transform: scaleY(-1); }
.divider-curve path { fill: var(--bg); }
.divider-curve[data-fill="cream"] path { fill: var(--bg-cream); }
.divider-curve[data-fill="soft"] path { fill: var(--bg-soft); }
.divider-curve[data-fill="blush"] path { fill: var(--blush); }

/* ---- MAGAZINE LAYOUT ---- */
.mag-hero {
  position: relative;
  padding: 9rem clamp(1.25rem, 4vw, 3rem) 4rem;
  /* overflow zichtbaar zodat italic letters niet worden afgeknipt */
}
.mag-hero-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  position: relative;
}
@media (max-width: 800px) {
  .mag-hero-grid { grid-template-columns: 1fr; align-items: start; }
}
.mag-hero-text .breadcrumbs {
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.mag-hero-text .breadcrumbs a { transition: color .2s var(--ease); }
.mag-hero-text .breadcrumbs a:hover { color: var(--rose-deep); }
.mag-hero-text .breadcrumbs span { margin: 0 .5em; opacity: .5; }
.mag-hero-text h1 {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: .95;
  letter-spacing: -.03em;
  color: var(--ink);
  margin-bottom: 1.25rem;
  font-variation-settings: "SOFT" 50;
}
.mag-hero-text h1 em {
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "SOFT" 100;
  color: var(--rose-deep);
  padding-right: .15em;
  margin-right: -.05em;
  display: inline-block;
}
.mag-hero-text .lede {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 1.5rem;
}

.mag-hero-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 40px 80px -25px rgba(59,35,44,.3);
}
.mag-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.mag-hero-img .img-tag {
  position: absolute;
  bottom: 1rem; left: 1rem;
  background: rgba(255,255,255,.85);
  color: var(--ink);
  padding: .35rem .8rem;
  border-radius: 100px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

/* Pull quote */
.mag-quote {
  max-width: 920px;
  margin: clamp(3rem, 6vw, 5rem) auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  text-align: center;
  position: relative;
}
.mag-quote::before,
.mag-quote::after {
  content: '“';
  position: absolute;
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 0;
  color: var(--rose);
  opacity: .35;
  font-style: italic;
}
.mag-quote::before { top: 1.8rem; left: 1rem; }
.mag-quote::after { content: '”'; bottom: -2rem; right: 1rem; }
.mag-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -.01em;
  margin-bottom: 1rem;
}
.mag-quote cite {
  display: block;
  font-size: .82rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-style: normal;
  font-weight: 600;
}

/* Magazine columns layout */
.mag-cols {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
@media (max-width: 800px) { .mag-cols { grid-template-columns: 1fr; } }
.mag-cols .col-side {
  position: sticky;
  top: 6rem;
}
@media (max-width: 800px) {
  .mag-cols .col-side { position: static; margin-bottom: 1.5rem; }
}
.mag-cols .col-side-label {
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  margin-bottom: .75rem;
}
.mag-cols .col-side h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--ink);
}
.mag-cols .col-side h2 em {
  color: var(--rose-deep);
  font-style: italic;
  font-weight: 400;
  padding-right: .15em;
  margin-right: -.05em;
  display: inline-block;
}
.mag-cols .col-body {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-soft);
  columns: 2;
  column-gap: 2rem;
}
@media (max-width: 700px) { .mag-cols .col-body { columns: 1; } }
.mag-cols .col-body > p { margin-bottom: 1.1rem; break-inside: avoid; }
.mag-cols .col-body p:first-child::first-letter {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 4rem;
  float: left;
  line-height: .9;
  margin-right: .25rem;
  margin-top: .15rem;
  color: var(--rose-deep);
}
.mag-cols .col-body strong {
  background: var(--blush);
  padding: 0 .15em;
  color: var(--ink);
  font-weight: 600;
  border-radius: 3px;
}

/* Editorial photo strip */
.mag-strip {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 1rem;
  max-width: var(--maxw);
  margin: clamp(3rem, 6vw, 5rem) auto;
}
@media (max-width: 700px) { .mag-strip { grid-template-columns: 1fr 1fr; }
  .mag-strip > :nth-child(3) { grid-column: span 2; }
}
.mag-strip > * {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.mag-strip > :nth-child(2) { aspect-ratio: 3/4; align-self: end; }
.mag-strip > :nth-child(3) { aspect-ratio: 4/3; align-self: center; }
.mag-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease-smooth); }
.mag-strip > *:hover img { transform: scale(1.05); }

/* Timeline */
.timeline {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  padding-left: 2.5rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: .5rem; bottom: .5rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--rose), var(--peach), var(--lilac));
  border-radius: 2px;
}
.tl-item {
  position: relative;
  padding-bottom: 2rem;
}
.tl-item::before {
  content: '';
  position: absolute;
  left: -2.5rem; top: .35rem;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--bg);
  border: 2.5px solid var(--rose-deep);
  margin-left: -6px;
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.tl-item:hover::before {
  background: var(--rose-deep);
  transform: scale(1.2);
}
.tl-year {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--rose-deep);
  margin-bottom: .25rem;
}
.tl-item h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.3rem;
  margin-bottom: .35rem;
  color: var(--ink);
}
.tl-item p {
  color: var(--ink-soft);
  font-size: .95rem;
  line-height: 1.5;
  max-width: 560px;
}

/* ---- TABS (pricing & elsewhere) ---- */
.tabs {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  display: flex;
  gap: .5rem;
  background: var(--bg-soft);
  padding: .35rem;
  border-radius: 100px;
  position: relative;
  border: 1px solid var(--line);
}
@media (max-width: 540px) { .tabs { padding: .25rem; gap: .15rem; } }
.tab {
  flex: 1;
  padding: .85rem 1rem;
  border-radius: 100px;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--ink-soft);
  text-align: center;
  cursor: pointer;
  transition: color .3s var(--ease);
  position: relative;
  z-index: 1;
  background: transparent;
}
@media (max-width: 540px) { .tab { font-size: .76rem; padding: .7rem .5rem; } }
.tab.active { color: #fff; }
.tabs::before {
  content: '';
  position: absolute;
  top: .35rem;
  left: var(--tab-x, .35rem);
  width: var(--tab-w, calc(33.33% - .35rem));
  bottom: .35rem;
  background: var(--rose-deep);
  border-radius: 100px;
  z-index: 0;
  transition: left .35s var(--ease-smooth), width .35s var(--ease-smooth);
  box-shadow: 0 6px 16px -6px rgba(194,92,124,.5);
}

.tab-panel {
  display: none;
  animation: panel-fade .4s var(--ease-smooth);
}
.tab-panel.active { display: block; }
@keyframes panel-fade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- COMPARISON TABLE (pricing) ---- */
.compare-table-v2-wrap {
  position: relative;
  max-width: 1100px;
  margin: 3rem auto 0;
}
.compare-table-v2 {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  box-shadow: 0 24px 50px -25px rgba(59,35,44,.15);
}
.compare-table-v2 table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
}
/* Sticky eerste kolom op mobiel */
@media (max-width: 720px) {
  .compare-table-v2 th:first-child,
  .compare-table-v2 td:first-child {
    position: sticky;
    left: 0;
    background: var(--bg-alt) !important;
    z-index: 1;
    box-shadow: 4px 0 8px -4px rgba(59,35,44,.08);
  }
  .compare-table-v2 th,
  .compare-table-v2 td { padding: .65rem .65rem; font-size: .8rem; }
  .compare-table-v2 th { padding: 1rem .65rem; font-size: .95rem; }
  .compare-table-v2 .price-cell { font-size: 1.1rem; padding: 1rem .65rem; }
}
/* Scroll hint badge bovenaan op mobiel */
.compare-scroll-hint {
  display: none;
  text-align: center;
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 600;
  margin-bottom: .75rem;
}
.compare-scroll-hint::after {
  content: ' →';
  animation: hint-arrow 1.6s ease-in-out infinite;
  display: inline-block;
}
@keyframes hint-arrow {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}
@media (max-width: 720px) { .compare-scroll-hint { display: block; } }
.compare-table-v2 th,
.compare-table-v2 td {
  padding: .55rem 1rem;
  text-align: center;
  vertical-align: middle;
  font-size: .88rem;
  border-bottom: 1px solid var(--line);
  line-height: 1.3;
}
.compare-table-v2 th {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.1rem;
  background: var(--bg-soft);
  position: relative;
  padding: 1rem 1rem;
}
.compare-table-v2 th:first-child,
.compare-table-v2 td:first-child {
  text-align: left;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 500;
  background: transparent;
  font-size: .9rem;
}
.compare-table-v2 th:first-child {
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  padding-top: 2rem;
}
.compare-table-v2 th.featured {
  background: var(--rose-deep);
  color: #fff;
}
.compare-table-v2 th.featured::after {
  content: 'Favoriet';
  position: absolute;
  top: 6px; right: 8px;
  background: var(--butter);
  color: var(--ink);
  font-style: normal;
  font-family: var(--font-body);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .12em;
  padding: .18rem .55rem;
  border-radius: 100px;
}
.compare-table-v2 td.featured {
  background: rgba(232,154,170,.07);
}
.compare-table-v2 .price-cell {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ink);
  padding: 1.5rem 1rem 1.25rem;
}
.compare-table-v2 .price-cell.featured { color: var(--rose-deep); }
.compare-table-v2 .price-cell .small {
  display: block;
  font-style: normal;
  font-family: var(--font-body);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: .25rem;
  font-weight: 500;
}
.compare-table-v2 .check-cell {
  color: var(--rose-deep);
  font-size: 1.2rem;
  font-weight: 700;
}
.compare-table-v2 .x-cell {
  color: var(--ink-soft);
  opacity: .35;
}
.compare-table-v2 tr:last-child td { border-bottom: none; }
.compare-table-v2 .cta-row td {
  padding: 1.25rem 1rem;
}
.compare-table-v2 .cta-row a {
  display: inline-flex;
  padding: .65rem 1.1rem;
  border-radius: 100px;
  background: var(--ink);
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  transition: all .3s var(--ease);
}
.compare-table-v2 .cta-row .featured a {
  background: var(--rose-deep);
}
.compare-table-v2 .cta-row a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -6px rgba(59,35,44,.3);
}
@media (max-width: 700px) {
  .compare-table-v2 { font-size: .82rem; }
  .compare-table-v2 th, .compare-table-v2 td { padding: .8rem .5rem; }
  .compare-table-v2 .price-cell { font-size: 1.15rem; }
}

/* ---- LIGHTBOX UPGRADE ---- */
.lightbox-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
}
.lightbox-counter {
  position: absolute;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,.08);
  color: #fff;
  padding: .35rem .9rem;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
}
.lightbox-thumbs {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .35rem;
  padding: .5rem;
  background: rgba(255,255,255,.06);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(6px);
  max-width: 92vw;
  overflow-x: auto;
  scrollbar-width: none;
}
.lightbox-thumbs::-webkit-scrollbar { display: none; }
.lightbox-thumb {
  width: 56px; height: 56px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
  opacity: .55;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  border: 2px solid transparent;
}
.lightbox-thumb img { width: 100%; height: 100%; object-fit: cover; }
.lightbox-thumb:hover { opacity: 1; }
.lightbox-thumb.active {
  opacity: 1;
  border-color: var(--rose);
  transform: scale(1.05);
}
@media (max-width: 600px) {
  .lightbox-thumb { width: 44px; height: 44px; }
  .lightbox-thumbs { padding: .35rem; }
}

/* ---- 404 PAGE ---- */
.notfound {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 1.5rem 3rem;
  position: relative;
  overflow: hidden;
}
.notfound .nf-num {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(8rem, 24vw, 18rem);
  line-height: .85;
  letter-spacing: -.04em;
  background: linear-gradient(120deg, var(--rose-deep), var(--peach), var(--lilac));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  animation: nf-float 6s ease-in-out infinite;
}
@keyframes nf-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.notfound h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.05;
  margin-bottom: 1rem;
  color: var(--ink);
}
.notfound h1 em { color: var(--rose-deep); font-style: italic; font-weight: 400; }
.notfound p {
  max-width: 480px;
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}
.notfound .nf-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 700px;
  width: 100%;
  margin-top: 1rem;
}
@media (max-width: 600px) { .notfound .nf-cards { grid-template-columns: 1fr; } }
.nf-card {
  padding: 1.2rem 1rem;
  background: var(--bg-alt);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  text-align: left;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.nf-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px -16px rgba(59,35,44,.2);
}
.nf-card span {
  display: block;
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: .35rem;
}
.nf-card strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
  display: block;
}

/* ---- HERO KEN-BURNS ---- */
.hero-collage .col img {
  animation: kenburns 16s ease-in-out infinite alternate;
}
.hero-collage .col-1 img { animation-delay: 0s; }
.hero-collage .col-2 img { animation-delay: -5s; }
.hero-collage .col-3 img { animation-delay: -10s; }
@keyframes kenburns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.08) translate(-1%, 1%); }
}

/* ---- TIME-OF-DAY GREETING (subtle) ---- */
.greeting {
  display: inline-block;
  margin-bottom: .85rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--rose-deep);
  opacity: 0;
  animation: fadeInUp .9s var(--ease-smooth) .1s forwards;
}
.greeting::before {
  content: '✦';
  margin-right: .35em;
  opacity: .6;
}

/* ---- SCROLL SPY DOTS (homepage) ---- */
.scroll-spy {
  position: fixed;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  align-items: center;
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.scroll-spy.visible { opacity: 1; }
.scroll-spy-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ink-soft);
  opacity: .35;
  transition: all .3s var(--ease);
  cursor: pointer;
  position: relative;
}
.scroll-spy-dot:hover { opacity: .8; transform: scale(1.3); }
.scroll-spy-dot.active {
  opacity: 1;
  background: var(--rose-deep);
  width: 8px;
  height: 22px;
  border-radius: 100px;
}
.scroll-spy-dot::after {
  content: attr(data-label);
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--ink);
  color: var(--bg);
  padding: .35rem .7rem;
  border-radius: 100px;
  font-size: .7rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s var(--ease);
}
.scroll-spy-dot:hover::after { opacity: 1; visibility: visible; }
@media (max-width: 900px) { .scroll-spy { display: none; } }

/* ---- FILTER PILL SLIDE INDICATOR ---- */
.filter-bar {
  position: relative;
  background: var(--bg-soft);
  padding: .35rem;
  border-radius: 100px;
  border: 1px solid var(--line);
  display: inline-flex;
  margin: 0 auto 3rem;
  flex-wrap: nowrap;
  gap: 0;
  width: auto;
  max-width: calc(100vw - 2rem);
  overflow-x: auto;
  scrollbar-width: none;
}
.filter-bar::-webkit-scrollbar { display: none; }
.filter-bar-wrap { text-align: center; }
.filter-bar .filter {
  background: transparent;
  border: none;
  color: var(--ink-soft);
  font-weight: 600;
  position: relative;
  z-index: 1;
  padding: .65rem 1.1rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.filter-bar .filter:hover { background: transparent; transform: none; color: var(--rose-deep); }
.filter-bar .filter.active {
  background: transparent;
  color: #fff;
}
.filter-bar::before {
  content: '';
  position: absolute;
  top: .35rem; bottom: .35rem;
  left: var(--fx, .35rem);
  width: var(--fw, 80px);
  background: var(--rose-deep);
  border-radius: 100px;
  z-index: 0;
  transition: left .35s var(--ease-smooth), width .35s var(--ease-smooth);
  box-shadow: 0 6px 16px -6px rgba(194,92,124,.4);
}

/* ---- IMAGE CURSOR (gallery hover label) ---- */
.gallery-cursor {
  position: fixed;
  pointer-events: none;
  z-index: 50;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--rose-deep);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 600;
  transform: translate(-50%, -50%) scale(0);
  transition: transform .25s var(--ease-smooth), opacity .25s var(--ease);
  opacity: 0;
}
.gallery-cursor.visible {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

/* ---- SCRAPBOOK TILT ON GALLERY (very subtle) ---- */
.gallery-item:nth-child(7n+1) { transform-origin: center; }
.gallery-item:nth-child(7n+1):hover { transform: translateY(-3px) rotate(-.5deg); }
.gallery-item:nth-child(7n+3):hover { transform: translateY(-3px) rotate(.6deg); }
.gallery-item:nth-child(7n+5):hover { transform: translateY(-3px) rotate(-.3deg); }

/* ---- TEXTURE OVERLAY for darker sections ---- */
.has-grain {
  position: relative;
}
.has-grain::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .04;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

/* ---- MARQUEE EDGE FADE ---- */
.marquee-wrap::before {
  width: 60px;
}
.marquee-wrap::after {
  width: 60px;
}

/* ---- FLOATING LABELS (form upgrade, optional) ---- */
.field-float {
  position: relative;
}
.field-float input,
.field-float textarea {
  padding: 1.2rem .75rem .55rem;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  width: 100%;
  font: inherit;
  background: var(--bg-alt);
  color: var(--ink);
  outline: none;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.field-float input:focus,
.field-float textarea:focus { border-color: var(--rose-deep); background: #fff; }
.field-float label {
  position: absolute;
  top: 1rem; left: .85rem;
  font-size: .92rem;
  color: var(--ink-soft);
  pointer-events: none;
  transition: top .2s var(--ease), font-size .2s var(--ease), color .2s var(--ease);
  background: transparent;
}
.field-float input:focus + label,
.field-float input:not(:placeholder-shown) + label,
.field-float textarea:focus + label,
.field-float textarea:not(:placeholder-shown) + label {
  top: .25rem;
  font-size: .68rem;
  color: var(--rose-deep);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ---- HERO CARD-FLIP on hover (collage) ---- */
.hero-collage .col {
  perspective: 1000px;
}

/* ---- HORIZONTAL SCROLL section (recent shoots) ---- */
.h-scroll {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 1rem 0 2rem;
  scrollbar-width: thin;
  scrollbar-color: var(--rose) transparent;
  -webkit-overflow-scrolling: touch;
}
.h-scroll::-webkit-scrollbar { height: 6px; }
.h-scroll::-webkit-scrollbar-thumb { background: var(--rose); border-radius: 100px; }
.h-scroll::-webkit-scrollbar-track { background: transparent; }
.h-scroll-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  box-shadow: 0 14px 30px -14px rgba(59,35,44,.2);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.h-scroll-card:hover { transform: translateY(-4px); box-shadow: 0 24px 40px -16px rgba(59,35,44,.3); }
.h-scroll-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-smooth); }
.h-scroll-card:hover img { transform: scale(1.05); }
.h-scroll-card-body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  background: linear-gradient(to top, rgba(59,35,44,.85), transparent 50%);
  color: #fff;
  z-index: 1;
}
.h-scroll-card-body h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.3rem;
  margin-bottom: .15rem;
}
.h-scroll-card-body span {
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: .85;
  font-weight: 500;
}

/* =========================================================
   COLOR POP ELEMENTS
   ========================================================= */

/* ---- HIGHLIGHTER MARKER (fluo behind words) ---- */
.hl {
  position: relative;
  display: inline-block;
  padding: 0 .15em;
  white-space: nowrap;
}
.hl::before {
  content: '';
  position: absolute;
  left: -.05em;
  right: -.05em;
  bottom: .04em;
  height: .55em;
  background: var(--butter);
  z-index: -1;
  transform: skewX(-4deg) scaleX(0);
  transform-origin: left;
  transition: transform .8s var(--ease-smooth) .3s;
  border-radius: 4px;
}
.hl.is-visible::before,
.is-visible .hl::before { transform: skewX(-4deg) scaleX(1); }
.hl.coral::before { background: var(--peach); }
.hl.mint::before { background: var(--mint, #c9d4c0); }
.hl.lilac::before { background: var(--lilac); }

/* ---- COLOR BLOCK behind images ---- */
.with-block {
  position: relative;
  isolation: isolate;
}
.with-block::before {
  content: '';
  position: absolute;
  inset: -1.2rem -1.2rem 1.2rem 1.2rem;
  background: var(--block-color, var(--peach));
  border-radius: var(--radius-lg);
  z-index: -1;
  transition: transform .5s var(--ease-smooth);
}
.with-block:hover::before { transform: translate(.5rem, .5rem); }
.with-block.block-coral::before { background: var(--coral-soft, var(--peach)); }
.with-block.block-butter::before { background: var(--butter); }
.with-block.block-mint::before { background: var(--mint, #c9d4c0); }
.with-block.block-lilac::before { background: var(--lilac); }
.with-block.block-rose::before { background: var(--rose); }

/* ---- STICKER badges ---- */
.sticker {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: var(--butter);
  color: var(--ink);
  padding: .55rem 1rem;
  border-radius: 100px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: .9rem;
  box-shadow: 0 6px 16px -4px rgba(255,214,107,.55);
  position: absolute;
  z-index: 5;
  transform: rotate(var(--rot, -6deg));
  animation: sticker-wiggle 4s ease-in-out infinite;
}
@keyframes sticker-wiggle {
  0%, 100% { transform: rotate(var(--rot, -6deg)); }
  50% { transform: rotate(calc(var(--rot, -6deg) + 3deg)); }
}
.sticker.coral { background: var(--rose); color: #fff; box-shadow: 0 6px 16px -4px rgba(232,154,170,.55); }
.sticker.mint { background: var(--mint, #c9d4c0); color: var(--ink); box-shadow: 0 6px 16px -4px rgba(201,212,192,.55); }
.sticker.lilac { background: var(--lilac); color: var(--ink); box-shadow: 0 6px 16px -4px rgba(217,209,240,.55); }
.sticker.deep { background: var(--rose-deep); color: #fff; }

/* ---- POP SECTION (full color block section) ---- */
.pop-section {
  background: var(--rose-deep);
  color: #fff;
  padding: clamp(4rem, 9vw, 7rem) clamp(1.25rem, 4vw, 3rem);
  position: relative;
  overflow: hidden;
}
.pop-section.butter { background: var(--butter); color: var(--ink); }
.pop-section.peach { background: var(--peach); color: var(--ink); }
.pop-section.lilac { background: var(--lilac); color: var(--ink); }
.pop-section.mint  { background: var(--mint, #c9d4c0); color: var(--ink); }

.pop-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(255,255,255,.18), transparent 35%),
    radial-gradient(circle at 90% 70%, rgba(255,255,255,.12), transparent 40%);
  pointer-events: none;
}
.pop-section > * { position: relative; }
.pop-section .section-title { color: inherit; }
.pop-section .section-title em {
  color: var(--butter);
  background: none;
  -webkit-text-fill-color: var(--butter);
}
.pop-section.butter .section-title em,
.pop-section.peach .section-title em,
.pop-section.mint .section-title em,
.pop-section.lilac .section-title em {
  color: var(--rose-deep);
  -webkit-text-fill-color: var(--rose-deep);
}
.pop-section .section-label,
.pop-section .section-sub {
  color: rgba(255,255,255,.8);
}
.pop-section.butter .section-label,
.pop-section.peach .section-label,
.pop-section.mint .section-label,
.pop-section.lilac .section-label,
.pop-section.butter .section-sub,
.pop-section.peach .section-sub,
.pop-section.mint .section-sub,
.pop-section.lilac .section-sub { color: var(--ink-soft); }

/* ---- BIG NUMBER POP (stat block in saturated color) ---- */
.big-stats {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 800px) { .big-stats { grid-template-columns: 1fr 1fr; } }
.big-stat {
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.big-stat:nth-child(1) { background: var(--peach); }
.big-stat:nth-child(2) { background: var(--lilac); }
.big-stat:nth-child(3) { background: var(--butter); }
.big-stat:nth-child(4) { background: var(--mint, #c9d4c0); }
.big-stat strong {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  color: var(--rose-deep);
  margin-bottom: .35rem;
}
.big-stat:nth-child(2) strong,
.big-stat:nth-child(4) strong { color: var(--ink); }
.big-stat span {
  font-size: .82rem;
  letter-spacing: .04em;
  color: var(--ink);
  font-weight: 500;
}

/* ---- CONFETTI decoration ---- */
.confetti {
  position: absolute;
  pointer-events: none;
  font-size: 1.2rem;
  z-index: 2;
  animation: confetti-spin 6s linear infinite;
}
.confetti.c1 { top: 10%; left: 8%; color: var(--rose-deep); animation-delay: 0s; }
.confetti.c2 { top: 18%; right: 10%; color: var(--butter); animation-delay: -2s; }
.confetti.c3 { bottom: 15%; left: 12%; color: var(--peach); animation-delay: -4s; }
.confetti.c4 { bottom: 22%; right: 8%; color: var(--lilac); animation-delay: -1s; }
@keyframes confetti-spin {
  0% { transform: rotate(0) translateY(0); opacity: .85; }
  50% { transform: rotate(180deg) translateY(-10px); opacity: 1; }
  100% { transform: rotate(360deg) translateY(0); opacity: .85; }
}

/* ---- TILTED ACCENT TAG (asymmetric label) ---- */
.tilt-tag {
  display: inline-block;
  background: var(--coral-soft, var(--peach));
  color: var(--rose-deep);
  font-family: var(--font-display);
  font-style: italic;
  padding: .4rem 1rem;
  border-radius: 8px;
  transform: rotate(-2deg);
  font-weight: 500;
  font-size: .95rem;
  position: relative;
  margin: 0 .15rem;
}
.tilt-tag.deep { background: var(--rose-deep); color: #fff; }
.tilt-tag.butter { background: var(--butter); color: var(--ink); }
.tilt-tag.mint { background: var(--mint, #c9d4c0); color: var(--ink); }
.tilt-tag.lilac { background: var(--lilac); color: var(--ink); }

/* ---- COLOR-POP ARROW BANNER ---- */
.pop-banner {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--rose-deep);
  color: #fff;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 500;
  position: relative;
  overflow: hidden;
}
.pop-banner.butter { background: var(--butter); color: var(--ink); }
.pop-banner.peach { background: var(--peach); color: var(--ink); }
.pop-banner svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  animation: arrow-pulse 1.6s ease-in-out infinite;
}
@keyframes arrow-pulse {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}

/* ---- FAVORITE-BUTTON style (saturated cta) ---- */
.btn-pop {
  background: linear-gradient(135deg, var(--terracotta), var(--rose-deep));
  color: #fff;
  padding: 1.1rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  box-shadow: 0 14px 30px -8px rgba(232,128,110,.55);
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-pop:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 22px 46px -10px rgba(232,128,110,.7);
}

/* ---- AMPERSAND — eenvoudige italic, geen krullen ---- */
.amp {
  font-family: 'Times New Roman', 'Georgia', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--rose-deep);
  font-size: 1.05em;
  letter-spacing: 0;
  padding: 0 .08em;
  vertical-align: baseline;
}
/* Variants */
.amp.tiny  { font-size: .95em; }
.amp.large { font-size: 1.25em; }
.amp.deep  { color: var(--wine); }
.amp.ink   { color: var(--ink); }
/* Inside em-accents: inherit color, lighter touch */
.section-title em .amp,
.hero-title em .amp { color: inherit; font-size: 1em; }

/* ---- SCROLL CUE on home hero ---- */
.scroll-cue {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  font-size: .65rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ink-soft);
  z-index: 3;
}
.scroll-cue-line {
  width: 1px;
  height: 36px;
  background: rgba(59,35,44,.2);
  position: relative;
  overflow: hidden;
}
.scroll-cue-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--rose-deep);
  animation: scroll-line 2s var(--ease) infinite;
}
@keyframes scroll-line {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* ============================================
   CAMERA CURSOR — fotografie-vibe op desktop
   ============================================ */
@media (pointer: fine) {
  /* Verberg native cursor op interactieve elementen — onze custom cursor neemt over */
  html, body, a, button, [role="button"], label, .cat-card, .service-card, .review-card, .step,
  input, select, textarea {
    cursor: none !important;
  }
}

.camera-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 44px;
  height: 36px;
  margin-left: -22px;
  margin-top: -18px;
  pointer-events: none;
  z-index: 99999;
  will-change: transform;
  transition: opacity .25s var(--ease);
  filter: drop-shadow(0 4px 10px rgba(213, 73, 119, .35));
}
.camera-cursor svg {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform .3s cubic-bezier(.4, 1.4, .6, 1);
}
.camera-cursor .cc-lens {
  transform-origin: 22px 20px;
  transition: stroke .25s var(--ease);
}
.camera-cursor .cc-lens-inner {
  transform-origin: 22px 20px;
  transition: r .3s var(--ease), fill .25s var(--ease);
}

/* Hover state: groter + lens "zoomt" */
.camera-cursor.cc-hover svg {
  transform: scale(1.35) rotate(-6deg);
}
.camera-cursor.cc-hover .cc-lens-inner {
  fill: var(--rose-deep);
}

/* Click state: shutter snap */
.camera-cursor.cc-snap svg {
  transform: scale(.78) rotate(3deg);
  transition: transform .12s var(--ease);
}

/* Trailing dot — kleine pointer-stip die direct meebeweegt */
.camera-cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  margin-top: -3px;
  background: var(--rose-deep);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  will-change: transform;
  transition: opacity .25s var(--ease), transform .08s linear;
  mix-blend-mode: normal;
  box-shadow: 0 0 8px rgba(213, 73, 119, .6);
}

/* Op mobiel: helemaal uitgeschakeld */
@media (pointer: coarse), (max-width: 700px) {
  .camera-cursor, .camera-cursor-dot { display: none !important; }
  html, body, a, button { cursor: auto !important; }
}

/* Respecteer reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .camera-cursor, .camera-cursor-dot { display: none !important; }
  html, body, a, button { cursor: auto !important; }
}

/* ============================================
   GOOGLE REVIEWS LINK — klikbare CTA
   ============================================ */
.google-reviews-link {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .85rem 1.5rem;
  background: var(--bg-alt);
  border: 1px solid rgba(213, 73, 119, .2);
  border-radius: 100px;
  color: var(--ink);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
  box-shadow: 0 4px 14px -6px rgba(59, 35, 44, .15);
}
.google-reviews-link:hover {
  transform: translateY(-2px);
  background: #fff;
  border-color: var(--rose-deep);
  box-shadow: 0 12px 28px -10px rgba(213, 73, 119, .35);
  color: var(--rose-deep);
}
.google-reviews-link svg:last-child {
  transition: transform .3s var(--ease);
}
.google-reviews-link:hover svg:last-child {
  transform: translateX(3px);
}

/* ============================================
   WERKGEBIED / AREA CHIPS — voor lokale SEO
   ============================================ */
.area-chip {
  display: inline-block;
  padding: .5rem 1rem;
  background: var(--bg-alt);
  border: 1px solid rgba(213, 73, 119, .15);
  border-radius: 100px;
  font-size: .82rem;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: .01em;
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
  cursor: default;
}
.area-chip:hover {
  background: var(--rose-deep);
  color: #fff;
  border-color: var(--rose-deep);
  transform: translateY(-2px);
}
.area-chip-more {
  background: transparent;
  border-style: dashed;
  color: var(--ink-soft);
  font-style: italic;
}
.area-chip-more:hover {
  background: var(--bg-soft);
  color: var(--ink);
  border-color: var(--rose-deep);
}

/* ============================================
   DIBOND TRAY FRAME INTRO (prijzen → baklijsten)
   ============================================ */
.dibond-intro {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  max-width: 1180px;
  margin: 1.5rem auto 4rem;
  padding: 0 1rem;
}
.dibond-intro-text .section-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.dibond-intro-text .section-label .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose-deep);
  display: inline-block;
}
.dibond-intro-text h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  color: var(--ink);
  margin: 0 0 1.25rem;
  letter-spacing: -.01em;
}
.dibond-intro-text h3 em {
  font-style: italic;
  color: var(--rose-deep);
  padding-right: .08em;
}
.dibond-intro-text p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 0 1rem;
  max-width: 52ch;
}
.dibond-intro-text p em {
  font-style: italic;
  color: var(--wine);
}

.dibond-features {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 1.25rem 1.5rem;
  background: var(--bg-alt);
  border: 1px solid rgba(213,73,119,.12);
  border-radius: 18px;
  box-shadow: 0 12px 36px -22px rgba(59,35,44,.25);
  display: grid;
  gap: .85rem;
}
.dibond-features li {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  color: var(--ink);
  font-size: .94rem;
  line-height: 1.5;
}
.dibond-features li strong {
  color: var(--ink);
  font-weight: 600;
}
.dibond-features li span:last-child {
  color: var(--ink-soft);
}
.dibond-features li span:last-child strong {
  color: var(--ink);
}
.df-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-deep);
  font-size: 1rem;
  line-height: 1;
  background: rgba(213,73,119,.1);
  border-radius: 50%;
  margin-top: 1px;
}

/* === Mockup column === */
.dibond-mockups {
  position: relative;
  height: 540px;
  min-height: 480px;
}
.tray-mock {
  position: absolute;
  background: #0c0c0e;
  padding: 10px;
  border-radius: 2px;
  /* Tray frame: inner darkness around the print + floating shadow */
  box-shadow:
    /* the "floating off the wall" double shadow */
    0 22px 44px -12px rgba(20, 14, 16, .35),
    0 8px 18px -6px rgba(20, 14, 16, .25),
    /* subtle inner highlight on the black edge */
    inset 0 0 0 1px rgba(255,255,255,.04);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.tray-mock img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1px;
  /* slight inset to suggest the tray depth */
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,.6),
    inset 0 2px 6px rgba(0,0,0,.35);
}
.tray-mock::after {
  /* a thin reflective hairline along the top edge — picks up "aluminium" feel */
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  pointer-events: none;
}
.tray-mock:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 30px 60px -14px rgba(20, 14, 16, .42),
    0 12px 24px -8px rgba(20, 14, 16, .3),
    inset 0 0 0 1px rgba(255,255,255,.06);
}

/* Individual tile positions — overlapping gallery layout */
.tray-mock-1 {
  width: 58%;
  height: 62%;
  top: 0;
  left: 4%;
  transform: rotate(-2.5deg);
  z-index: 2;
}
.tray-mock-2 {
  width: 48%;
  height: 52%;
  top: 18%;
  right: 0;
  transform: rotate(2deg);
  z-index: 3;
}
.tray-mock-3 {
  width: 44%;
  height: 44%;
  bottom: 0;
  left: 18%;
  transform: rotate(-1deg);
  z-index: 4;
}
.tray-mock-1:hover { transform: rotate(-2.5deg) translateY(-4px) scale(1.02); }
.tray-mock-2:hover { transform: rotate(2deg) translateY(-4px) scale(1.02); }
.tray-mock-3:hover { transform: rotate(-1deg) translateY(-4px) scale(1.02); }

/* ─── Tablet ─── */
@media (max-width: 900px) {
  .dibond-intro {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
  }
  .dibond-mockups {
    height: 460px;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }
}

/* ─── Mobile ─── */
@media (max-width: 700px) {
  .dibond-intro {
    gap: 2rem;
    padding: 0 .5rem;
  }
  .dibond-intro-text h3 {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
  }
  .dibond-intro-text p {
    font-size: .95rem;
  }
  .dibond-features {
    padding: 1rem 1.1rem;
    border-radius: 14px;
  }
  .dibond-features li {
    font-size: .88rem;
    gap: .65rem;
  }
  .df-icon {
    width: 20px;
    height: 20px;
    font-size: .85rem;
  }
  .dibond-mockups {
    height: 380px;
    min-height: 360px;
  }
  .tray-mock {
    padding: 7px;
  }
  .tray-mock-1 {
    width: 62%;
    height: 58%;
    left: 2%;
  }
  .tray-mock-2 {
    width: 50%;
    height: 48%;
    top: 16%;
  }
  .tray-mock-3 {
    width: 46%;
    height: 42%;
    left: 22%;
  }
}
