/* =====================================================================
   Memento Mori Grafmonumenten — style.css
   Een ingetogen, waardige huisstijl voor een gevoelige branche.
   Palet geïnspireerd op natuursteen: graniet, antraciet en zacht brons.
   ===================================================================== */

:root {
  /* Hoofdkleur — marineblauw uit het logo (Memento Mori) */
  --primary:        #1e2554;   /* logo-marineblauw */
  --primary-hover:  #161c42;   /* donkerder */
  --primary-deep:   #0f1330;   /* diepst, voor accenten */
  --primary-tint:   #eef0f6;   /* zeer licht, backgrounds */
  --primary-tint-2: #c9d0e6;   /* licht, voor pills/badges op donker */

  /* Accentkleur — gedempt brons/goud als waardig secundair accent */
  --accent:         #9a7b43;
  --accent-tint:    #f4efe6;

  --ink:            #1a2030;   /* diep blauw-antraciet voor headings/nav-scrolled */
  --text:           #353d4a;
  --text-soft:      #5a626f;
  --text-muted:     #8b91a0;

  --white:          #ffffff;
  --bg:             #ffffff;
  --bg-alt:         #f4f5f9;   /* koele lichte sectie-achtergrond */
  --bg-stone:       #e6e8ef;   /* steen-grijsblauw */
  --bg-dark:        #232a44;   /* donkere secties */
  --bg-darker:      #141833;   /* footer */

  --line:           #e0e3ec;
  --line-soft:      #eceef4;

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --maxw: 1200px;
  --radius: 4px;
  --shadow-sm: 0 2px 10px rgba(28,34,37,0.06);
  --shadow:    0 12px 40px rgba(28,34,37,0.10);
  --shadow-lg: 0 24px 70px rgba(28,34,37,0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
/* Subtiel MM-watermerk vast op de achtergrond — waardig, niet opdringerig */
body::before {
  content: "";
  position: fixed;
  right: -4vw; bottom: -6vh;
  width: min(46vw, 620px); height: min(46vw, 620px);
  background: url("/assets/img/watermark.png?v2") no-repeat center / contain;
  opacity: 0.035;
  pointer-events: none;
  z-index: 0;
}
.nav, main, .footer { position: relative; z-index: 1; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; color: var(--ink); line-height: 1.12; letter-spacing: -0.01em; }
em { font-style: italic; color: var(--primary); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  font-family: var(--sans);
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--primary);
  display: inline-block; margin-bottom: 18px;
}
.eyebrow::before { content: ""; display: inline-block; width: 28px; height: 1px; background: var(--primary); vertical-align: middle; margin-right: 12px; opacity: 0.7; }
.lead { font-size: 1.18rem; color: var(--text-soft); line-height: 1.7; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 600; font-size: 0.95rem;
  padding: 15px 30px; border-radius: var(--radius); cursor: pointer;
  border: 1.5px solid transparent; transition: all 0.3s var(--ease);
  letter-spacing: 0.01em;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(138,109,59,0.30); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.btn-light { background: var(--white); color: var(--ink); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn svg { width: 17px; height: 17px; }

/* =====================================================================
   NAVIGATIE
   ===================================================================== */
.topbar {
  background: var(--ink); color: rgba(255,255,255,0.85);
  font-size: 0.82rem; letter-spacing: 0.02em;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; height: 38px; }
.topbar a { color: rgba(255,255,255,0.85); transition: color 0.2s; }
.topbar a:hover { color: var(--white); }
.topbar .tb-left, .topbar .tb-right { display: flex; gap: 22px; align-items: center; }
.topbar .tb-right a { display: inline-flex; align-items: center; gap: 7px; }
.topbar svg { width: 14px; height: 14px; opacity: 0.8; }

.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.nav-logo { display: flex; align-items: center; transition: opacity 0.35s var(--ease); }
.nav-logo .logo-img {
  height: 56px; width: auto; display: block;
  background: var(--white);
  padding: 6px 12px;
  border-radius: 6px;
  transition: box-shadow 0.35s var(--ease);
}

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex; align-items: center; gap: 5px;
  padding: 12px 16px; font-size: 0.94rem; font-weight: 600; color: var(--ink);
  border-radius: var(--radius); transition: color 0.25s var(--ease);
}
.nav-links > li > a:hover { color: var(--primary); }
.nav-links .caret { width: 11px; height: 11px; opacity: 0.6; transition: transform 0.25s; }
.nav-links > li:hover .caret { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--white); border: 1px solid var(--line);
  border-radius: 8px; box-shadow: var(--shadow);
  min-width: 270px; padding: 10px;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all 0.28s var(--ease); z-index: 120;
}
.nav-links > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 10px 14px; font-size: 0.9rem; font-weight: 500; color: var(--text); border-radius: 5px; transition: all 0.2s; }
.dropdown a:hover { background: var(--primary-tint); color: var(--primary-deep); padding-left: 18px; }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-phone { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.95rem; color: var(--ink); transition: color 0.35s var(--ease); }
.nav-phone svg { width: 16px; height: 16px; color: var(--primary); }

/* Taal-/vertaalknop */
.lang-toggle {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 12px; cursor: pointer;
  background: var(--white); border: 1px solid var(--line);
  border-radius: 40px; transition: all 0.25s var(--ease);
}
.lang-toggle:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.lang-toggle .flag { display: none; line-height: 0; }
.lang-toggle .flag svg { display: block; border-radius: 2px; box-shadow: 0 0 0 1px rgba(0,0,0,0.06); }
.lang-toggle .lang-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; color: var(--ink); transition: color 0.35s var(--ease); }
/* NL actief → toon GB-vlag (klik = Engels) */
.lang-toggle:not(.is-en) .flag-gb { display: inline-flex; }
/* EN actief → toon NL-vlag (klik = Nederlands) */
.lang-toggle.is-en .flag-nl { display: inline-flex; }
.nav.is-scrolled .lang-toggle { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.25); }
.nav.is-scrolled .lang-toggle:hover { border-color: rgba(255,255,255,0.6); }
.nav.is-scrolled .lang-toggle .lang-label { color: var(--white); }

/* Google Translate-balk en branding verbergen */
.goog-te-banner-frame, .skiptranslate { display: none !important; }
body { top: 0 !important; }
.goog-tooltip, #goog-gt-tt, .goog-te-balloon-frame { display: none !important; }
font font { background: none !important; box-shadow: none !important; }

/* SCROLLED STATE — let op: class 'is-scrolled' in zowel JS als CSS */
.nav.is-scrolled { background: var(--ink); border-bottom-color: rgba(255,255,255,0.08); box-shadow: 0 8px 30px rgba(0,0,0,0.25); }
.nav.is-scrolled .nav-logo .logo-img { box-shadow: 0 4px 16px rgba(0,0,0,0.25); }
.nav.is-scrolled .nav-links > li > a { color: rgba(255,255,255,0.92); }
.nav.is-scrolled .nav-links > li > a:hover { color: var(--primary-tint-2); }
.nav.is-scrolled .nav-phone { color: var(--white); }
.nav.is-scrolled .nav-phone svg { color: var(--primary-tint-2); }
.nav.is-scrolled .btn-outline { color: var(--white); border-color: rgba(255,255,255,0.4); }
.nav.is-scrolled .btn-outline:hover { border-color: var(--white); }

.hamburger { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; cursor: pointer; background: none; border: none; }
.hamburger span { width: 24px; height: 2px; background: var(--ink); transition: all 0.3s var(--ease); }
.nav.is-scrolled .hamburger span { background: var(--white); }

/* Mobile menu */
.mobile-backdrop {
  position: fixed; inset: 0; background: rgba(20,25,28,0.5);
  backdrop-filter: blur(4px); z-index: 200; opacity: 0; visibility: hidden;
  transition: all 0.35s var(--ease);
}
.mobile-backdrop.open { opacity: 1; visibility: visible; }
.mobile-menu {
  position: fixed; top: 0; right: 0; height: 100%; width: min(380px, 88vw);
  background: var(--white); z-index: 210; padding: 28px 24px;
  transform: translateX(100%); transition: transform 0.4s var(--ease);
  overflow-y: auto; box-shadow: -20px 0 60px rgba(0,0,0,0.2);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu .mm-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.mobile-menu .mm-close { background: none; border: none; cursor: pointer; width: 40px; height: 40px; }
.mobile-menu .mm-close svg { width: 26px; height: 26px; color: var(--ink); }
.mobile-menu nav a { display: block; padding: 13px 6px; font-size: 1.05rem; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--line-soft); }
.mobile-menu nav a.sub { font-size: 0.92rem; font-weight: 500; color: var(--text-soft); padding-left: 18px; }
.mobile-menu .mm-cta { margin-top: 24px; }
.mobile-menu .mm-cta .btn { width: 100%; justify-content: center; margin-bottom: 12px; }

/* =====================================================================
   HERO — met van-links-inschuivende koptekst
   ===================================================================== */
.hero { position: relative; min-height: 90vh; display: flex; align-items: center; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  background-color: var(--bg-stone);
  opacity: 0; transition: opacity 1.2s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(105deg, rgba(20,25,28,0.86) 0%, rgba(28,34,37,0.72) 45%, rgba(95,71,31,0.42) 100%);
}
.hero .container { position: relative; z-index: 2; padding-top: 60px; padding-bottom: 60px; }
.hero-inner { max-width: 720px; }
.hero .eyebrow { color: var(--primary-tint-2); }
.hero .eyebrow::before { background: var(--primary-tint-2); }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); color: var(--white); font-weight: 600; margin-bottom: 26px; line-height: 1.08; }
.hero h1 em { color: var(--primary-tint-2); font-style: italic; }
.hero p { font-size: 1.22rem; color: rgba(255,255,255,0.9); margin-bottom: 36px; max-width: 600px; font-weight: 300; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* Slide-in van links voor hero-tekst */
.slide-in { opacity: 0; transform: translateX(-80px); }
.hero.loaded .slide-in { opacity: 1; transform: translateX(0); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.hero.loaded .slide-in.d1 { transition-delay: 0.15s; }
.hero.loaded .slide-in.d2 { transition-delay: 0.35s; }
.hero.loaded .slide-in.d3 { transition-delay: 0.55s; }
.hero.loaded .slide-in.d4 { transition-delay: 0.75s; }
.hero.loaded .slide-in.d5 { transition-delay: 0.95s; }

.hero-stats {
  position: relative; z-index: 2; margin-top: 56px;
  display: flex; gap: 48px; flex-wrap: wrap;
}
.hero-stats .stat .num { font-family: var(--serif); font-size: 2.6rem; font-weight: 600; color: var(--white); line-height: 1; }
.hero-stats .stat .lbl { font-size: 0.84rem; color: rgba(255,255,255,0.72); letter-spacing: 0.04em; margin-top: 6px; }
.hero-stats .stat { position: relative; padding-left: 22px; }
.hero-stats .stat::before { content: ""; position: absolute; left: 0; top: 4px; bottom: 4px; width: 2px; background: var(--primary); }

/* =====================================================================
   SECTIES
   ===================================================================== */
.section { padding: 100px 0; }
.section.alt { background: var(--bg-alt); }
.section.stone { background: var(--bg-stone); }
.section-head { max-width: 720px; margin: 0 auto 60px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 18px; }
.section-head p { color: var(--text-soft); font-size: 1.1rem; }

/* Over ons 2-koloms */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split-img { position: relative; }
.split-img .frame {
  aspect-ratio: 4/5; background-size: cover; background-position: center;
  background-color: var(--bg-stone); border-radius: 6px; box-shadow: var(--shadow);
}
.split-img .badge {
  position: absolute; bottom: -26px; right: -20px;
  background: var(--ink); color: var(--white); padding: 22px 28px; border-radius: 6px;
  box-shadow: var(--shadow-lg);
}
.split-img .badge .b-num { font-family: var(--serif); font-size: 2.2rem; color: var(--primary-tint-2); line-height: 1; }
.split-img .badge .b-lbl { font-size: 0.78rem; letter-spacing: 0.05em; margin-top: 4px; opacity: 0.85; }
.split-text h2 { font-size: clamp(1.9rem, 3.5vw, 2.7rem); margin-bottom: 22px; }
.split-text p { margin-bottom: 18px; color: var(--text-soft); }
.split-text .btn { margin-top: 12px; }

/* Kernwaarden 3 kaarten */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 8px;
  padding: 42px 34px; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.value-card .vc-badge {
  width: 54px; height: 54px; border-radius: 50%; background: var(--primary-tint);
  color: var(--primary-deep); display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.5rem; font-weight: 600; margin-bottom: 24px;
}
.value-card h3 { font-size: 1.5rem; margin-bottom: 14px; }
.value-card p { color: var(--text-soft); font-size: 0.98rem; }

/* Diensten 3 kaarten met foto */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 10px; overflow: hidden;
  display: flex; flex-direction: column; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card .sc-img { aspect-ratio: 16/11; background-size: cover; background-position: center; background-color: var(--bg-stone); position: relative; }
.service-card .sc-badge { position: absolute; top: 14px; left: 14px; background: var(--primary); color: var(--white); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; padding: 6px 14px; border-radius: 20px; }
.service-card .sc-body { padding: 30px 28px; display: flex; flex-direction: column; flex: 1; }
.service-card h3 { font-size: 1.45rem; margin-bottom: 16px; }
.service-card .sc-list { margin-bottom: 24px; }
.service-card .sc-list li { display: flex; gap: 10px; align-items: flex-start; padding: 5px 0; font-size: 0.94rem; color: var(--text-soft); }
.service-card .sc-list svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; margin-top: 3px; }
.service-card .btn { margin-top: auto; justify-content: center; }

/* Werkwijze 4 stappen */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step-card { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 34px 26px; position: relative; }
.step-card .st-num {
  width: 48px; height: 48px; border-radius: 50%; background: var(--ink); color: var(--primary-tint-2);
  display: flex; align-items: center; justify-content: center; font-family: var(--serif);
  font-size: 1.3rem; font-weight: 600; margin-bottom: 20px;
}
.step-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.step-card p { color: var(--text-soft); font-size: 0.93rem; }

/* Bento portfolio */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 18px; }
.bento-tile { position: relative; border-radius: 10px; overflow: hidden; background-size: cover; background-position: center; background-color: var(--bg-stone); cursor: pointer; }
.bento-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,25,28,0.85) 0%, rgba(20,25,28,0.1) 55%, transparent 100%); transition: opacity 0.4s; }
.bento-tile .bt-text { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; z-index: 2; }
.bento-tile .bt-text .bt-cat { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary-tint-2); margin-bottom: 6px; }
.bento-tile .bt-text h3 { color: var(--white); font-size: 1.3rem; }
.bento-tile img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); z-index: 0; }
.bento-tile:hover img.bg { transform: scale(1.06); }
.bento-tile.big { grid-column: span 2; grid-row: span 2; }
.bento-tile.wide { grid-column: span 2; }

/* Marquee tips */
.marquee-wrap { overflow: hidden; position: relative; }
.marquee-wrap::before, .marquee-wrap::after { content: ""; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 3; pointer-events: none; }
.marquee-wrap::before { left: 0; background: linear-gradient(to right, var(--bg-alt), transparent); }
.marquee-wrap::after { right: 0; background: linear-gradient(to left, var(--bg-alt), transparent); }
.marquee { display: flex; gap: 26px; width: max-content; animation: scroll-x 40s linear infinite; }
.marquee-wrap:hover .marquee { animation-play-state: paused; }
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.tip-card {
  width: 340px; flex-shrink: 0; background: var(--white); border: 1px solid var(--line);
  border-radius: 10px; overflow: hidden; cursor: pointer; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.tip-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.tip-card .tc-img { aspect-ratio: 16/10; background-size: cover; background-position: center; background-color: var(--bg-stone); }
.tip-card .tc-body { padding: 24px; }
.tip-card .tc-tag { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--primary-deep); background: var(--primary-tint); padding: 5px 12px; border-radius: 16px; margin-bottom: 14px; }
.tip-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.tip-card p { font-size: 0.92rem; color: var(--text-soft); margin-bottom: 16px; }
.tip-card .tc-more { font-size: 0.85rem; font-weight: 700; color: var(--primary); display: inline-flex; gap: 6px; align-items: center; }

/* Reviews marquee */
.reviews-head { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 50px; flex-wrap: wrap; }
.reviews-head .g-logo { font-family: var(--serif); font-weight: 700; font-size: 1.4rem; }
.reviews-head .g-logo .b { color: #4285F4; } .reviews-head .g-logo .r { color: #EA4335; } .reviews-head .g-logo .y { color: #FBBC04; } .reviews-head .g-logo .g { color: #34A853; }
.reviews-head .r-meta { color: var(--text-soft); font-size: 0.95rem; }
.reviews-head .r-stars { color: #FBBC04; letter-spacing: 2px; }
.review-card { width: 360px; flex-shrink: 0; background: var(--white); border: 1px solid var(--line); border-radius: 10px; padding: 28px; }
.review-card .rc-top { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.review-card .rc-avatar { width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 1.1rem; }
.review-card .rc-name { font-weight: 700; font-size: 0.98rem; color: var(--ink); }
.review-card .rc-time { font-size: 0.82rem; color: var(--text-muted); }
.review-card .rc-stars { color: #FBBC04; letter-spacing: 1px; margin-bottom: 12px; }
.review-card p { font-size: 0.93rem; color: var(--text-soft); display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden; }
.review-card .rc-badge { display: inline-block; margin-top: 14px; font-size: 0.74rem; font-weight: 600; color: var(--primary-deep); background: var(--primary-tint); padding: 4px 12px; border-radius: 14px; }

/* Promo / CTA band */
.promo { background: var(--ink); color: var(--white); border-radius: 14px; overflow: hidden; display: grid; grid-template-columns: 1.2fr 1fr; }
.promo .promo-text { padding: 56px 50px; }
.promo .promo-text h2 { color: var(--white); font-size: 2.3rem; margin-bottom: 18px; }
.promo .promo-text h2 em { color: var(--primary-tint-2); }
.promo .promo-list { margin: 26px 0; }
.promo .promo-list li { display: flex; gap: 12px; align-items: center; padding: 8px 0; color: rgba(255,255,255,0.88); }
.promo .promo-list svg { width: 20px; height: 20px; color: var(--primary-tint-2); flex-shrink: 0; }
.promo .promo-price { font-family: var(--serif); font-size: 2.6rem; color: var(--primary-tint-2); margin: 10px 0 24px; }
.promo .promo-img { background-size: cover; background-position: center; background-color: var(--bg-stone); min-height: 340px; }

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: 8px; margin-bottom: 14px; overflow: hidden; }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 26px; cursor: pointer; font-family: var(--serif); font-size: 1.2rem; font-weight: 600; color: var(--ink); }
.faq-icon { width: 32px; height: 32px; border-radius: 50%; background: var(--primary-tint); color: var(--primary-deep); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.3s var(--ease); font-size: 1.3rem; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a-inner { padding: 0 26px 24px; color: var(--text-soft); }

/* =====================================================================
   FORMULIEREN
   ===================================================================== */
.form-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: start; }
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 40px; box-shadow: var(--shadow-sm); }
.form-row { margin-bottom: 22px; }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-row label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.form-row label .req { color: var(--primary); }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 6px;
  font-family: var(--sans); font-size: 0.96rem; color: var(--text); background: var(--bg-alt);
  transition: border-color 0.25s, background 0.25s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: var(--primary); background: var(--white); }
.form-row textarea { resize: vertical; min-height: 120px; }
.form-card .btn { width: 100%; justify-content: center; }
.form-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 16px; text-align: center; }
.info-aside { background: var(--ink); color: var(--white); border-radius: 12px; padding: 40px 36px; position: sticky; top: 110px; }
.info-aside h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 24px; }
.info-aside .ia-item { display: flex; gap: 14px; margin-bottom: 22px; }
.info-aside .ia-item svg { width: 20px; height: 20px; color: var(--primary-tint-2); flex-shrink: 0; margin-top: 3px; }
.info-aside .ia-item .ia-lbl { font-size: 0.78rem; color: rgba(255,255,255,0.6); letter-spacing: 0.04em; text-transform: uppercase; }
.info-aside .ia-item .ia-val { font-size: 1rem; color: var(--white); }
.info-aside .ia-item a { color: var(--white); }

/* =====================================================================
   SUBHERO (binnenpagina's)
   ===================================================================== */
.subhero { position: relative; padding: 130px 0 70px; background-size: cover; background-position: center; background-color: var(--ink); overflow: hidden; }
.subhero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(20,25,28,0.92), rgba(28,34,37,0.7) 60%, rgba(95,71,31,0.45)); }
.subhero .container { position: relative; z-index: 2; }
.subhero .eyebrow { color: var(--primary-tint-2); }
.subhero .eyebrow::before { background: var(--primary-tint-2); }
.subhero h1 { color: var(--white); font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 14px; }
.subhero .breadcrumb { font-size: 0.88rem; color: rgba(255,255,255,0.7); }
.subhero .breadcrumb a:hover { color: var(--white); }
.subhero p { color: rgba(255,255,255,0.88); max-width: 620px; margin-top: 14px; font-size: 1.1rem; font-weight: 300; }

/* Article */
.article { max-width: 780px; margin: 0 auto; }
.article .meta { display: flex; gap: 18px; align-items: center; margin-bottom: 30px; font-size: 0.88rem; color: var(--text-muted); }
.article .tag { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--primary-deep); background: var(--primary-tint); padding: 5px 12px; border-radius: 16px; }
.article p { margin-bottom: 20px; color: var(--text-soft); font-size: 1.05rem; }
.article h4 { font-size: 1.5rem; margin: 36px 0 14px; }
.article ul.bullets { margin: 0 0 20px 0; }
.article ul.bullets li { position: relative; padding: 6px 0 6px 28px; color: var(--text-soft); }
.article ul.bullets li::before { content: ""; position: absolute; left: 0; top: 15px; width: 8px; height: 8px; border-radius: 50%; background: var(--primary); }
.cta-box { background: var(--primary-tint); border-radius: 12px; padding: 36px; margin-top: 50px; text-align: center; }
.cta-box h3 { font-size: 1.6rem; margin-bottom: 12px; }
.cta-box p { color: var(--text-soft); margin-bottom: 22px; }

/* Meta-kaarten project */
.meta-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 50px; }
.meta-card { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 28px 24px; }
.meta-card .mc-lbl { font-size: 0.76rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--primary); font-weight: 700; margin-bottom: 8px; }
.meta-card .mc-val { font-family: var(--serif); font-size: 1.3rem; color: var(--ink); }

/* Voordeel-kaarten */
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.benefit-card { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 32px 28px; }
.benefit-card .bc-icon { width: 50px; height: 50px; border-radius: 10px; background: var(--primary-tint); color: var(--primary-deep); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.benefit-card .bc-icon svg { width: 24px; height: 24px; }
.benefit-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.benefit-card p { color: var(--text-soft); font-size: 0.95rem; }

/* Final CTA banner */
.cta-banner { position: relative; padding: 90px 0; background-size: cover; background-position: center; background-color: var(--ink); text-align: center; overflow: hidden; }
.cta-banner::before { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(20,25,28,0.9), rgba(28,34,37,0.82)); }
.cta-banner .container { position: relative; z-index: 2; }
.cta-banner h2 { color: var(--white); font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 30px; }
.cta-banner .cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Categorie-overzicht grid */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.cat-card { background: var(--white); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); display: flex; flex-direction: column; }
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.cat-card .cc-img { aspect-ratio: 16/11; background-size: cover; background-position: center; background-color: var(--bg-stone); }
.cat-card .cc-body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.cat-card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.cat-card p { color: var(--text-soft); font-size: 0.93rem; margin-bottom: 18px; }
.cat-card .cc-link { margin-top: auto; font-weight: 700; color: var(--primary); display: inline-flex; gap: 7px; align-items: center; font-size: 0.92rem; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer { background: var(--bg-darker); color: rgba(255,255,255,0.75); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 50px; }
.footer h4 { color: var(--white); font-size: 1.05rem; margin-bottom: 22px; font-family: var(--sans); font-weight: 700; letter-spacing: 0.02em; }
.footer a { color: rgba(255,255,255,0.72); transition: color 0.2s; }
.footer a:hover { color: var(--primary-tint-2); }
.footer-col li { padding: 6px 0; font-size: 0.92rem; }
.footer .logo-pill { background: var(--white); display: inline-flex; align-items: center; padding: 12px 20px; border-radius: 8px; margin-bottom: 20px; }
.footer .logo-pill img { height: 58px; width: auto; display: block; }
.footer .f-about { font-size: 0.92rem; line-height: 1.7; margin-bottom: 22px; max-width: 320px; }
.footer .f-social { display: flex; gap: 12px; }
.footer .f-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; }
.footer .f-social a:hover { background: var(--primary); }
.footer .f-social svg { width: 18px; height: 18px; color: var(--white); }
.footer .f-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer .f-contact svg { width: 16px; height: 16px; color: var(--primary-tint-2); flex-shrink: 0; margin-top: 5px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.footer-bottom a { font-size: 0.85rem; }

/* =====================================================================
   FLOATING — WhatsApp + sticky CTA
   ===================================================================== */
.wa-bubble { position: fixed; right: 22px; bottom: 22px; width: 58px; height: 58px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(37,211,102,0.45); z-index: 150; transition: transform 0.3s var(--ease); }
.wa-bubble:hover { transform: scale(1.08); }
.wa-bubble svg { width: 30px; height: 30px; color: var(--white); }
.sticky-cta { display: none; }

/* =====================================================================
   TIPS MODAL
   ===================================================================== */
.modal-backdrop { position: fixed; inset: 0; background: rgba(20,25,28,0.6); backdrop-filter: blur(4px); z-index: 300; opacity: 0; visibility: hidden; transition: all 0.3s var(--ease); display: flex; align-items: center; justify-content: center; padding: 24px; }
.modal-backdrop.open { opacity: 1; visibility: visible; }
.modal-panel { background: var(--white); border-radius: 14px; max-width: 700px; width: 100%; max-height: 88vh; overflow-y: auto; transform: scale(0.92); transition: transform 0.3s var(--ease); }
.modal-backdrop.open .modal-panel { transform: scale(1); }
.modal-panel .mp-img { aspect-ratio: 16/9; background-size: cover; background-position: center; background-color: var(--bg-stone); border-radius: 14px 14px 0 0; }
.modal-panel .mp-body { padding: 36px; }
.modal-panel .mp-tag { display: inline-block; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--primary-deep); background: var(--primary-tint); padding: 5px 12px; border-radius: 16px; margin-bottom: 16px; }
.modal-panel h3 { font-size: 1.8rem; margin-bottom: 16px; }
.modal-panel p { color: var(--text-soft); margin-bottom: 16px; }
.modal-panel .mp-close { position: absolute; top: 18px; right: 18px; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.9); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.modal-panel { position: relative; }
.modal-panel .mp-close svg { width: 22px; height: 22px; color: var(--ink); }

/* =====================================================================
   SCROLL REVEAL ANIMATIES
   ===================================================================== */
.reveal-up      { opacity: 0; transform: translateY(60px); }
.reveal-x       { opacity: 0; transform: translateX(-100px); }
.reveal-x-r     { opacity: 0; transform: translateX(100px); }
.reveal-zoom    { opacity: 0; transform: scale(0.85); }
.reveal-x-zoom  { opacity: 0; transform: translateX(-80px) scale(0.92); }
.reveal-x-r-zoom{ opacity: 0; transform: translateX(80px) scale(0.92); }
.reveal-flip    { opacity: 0; transform: perspective(900px) rotateX(35deg) translateY(50px); transform-origin: center bottom; }
.reveal-up, .reveal-x, .reveal-x-r, .reveal-zoom, .reveal-x-zoom, .reveal-x-r-zoom, .reveal-flip {
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.is-visible { opacity: 1 !important; transform: none !important; }

.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.10s; }
.stagger > *:nth-child(3) { transition-delay: 0.20s; }
.stagger > *:nth-child(4) { transition-delay: 0.30s; }
.stagger > *:nth-child(5) { transition-delay: 0.40s; }
.stagger > *:nth-child(6) { transition-delay: 0.50s; }
.stagger > *:nth-child(7) { transition-delay: 0.60s; }
.stagger > *:nth-child(8) { transition-delay: 0.70s; }

@media (prefers-reduced-motion: reduce) {
  .reveal-up, .reveal-x, .reveal-x-r, .reveal-zoom, .reveal-x-zoom, .reveal-x-r-zoom, .reveal-flip, .slide-in {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
  .hero-slide { transition: none; }
  .marquee { animation: none; }
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1024px) {
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .nav .container { height: 72px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split-img .badge { right: 20px; }
  .values-grid, .service-grid, .benefit-grid, .cat-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-tile.big { grid-column: span 2; grid-row: span 1; }
  .form-layout { grid-template-columns: 1fr; }
  .info-aside { position: static; }
  .promo { grid-template-columns: 1fr; }
  .promo .promo-img { min-height: 240px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .meta-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .values-grid, .service-grid, .benefit-grid, .cat-grid, .steps-grid { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .bento-tile.big, .bento-tile.wide { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .meta-grid { grid-template-columns: 1fr 1fr; }
  .form-row.two { grid-template-columns: 1fr; }
  .hero { min-height: 88vh; }
  .hero-stats { gap: 28px; }
  .topbar .tb-right { display: none; }
  .wa-bubble { bottom: 80px; }
  .sticky-cta { display: grid; grid-template-columns: 1fr 1fr 1fr; position: fixed; bottom: 0; left: 0; right: 0; z-index: 140; background: var(--white); border-top: 1px solid var(--line); }
  .sticky-cta a { padding: 16px 8px; text-align: center; font-weight: 700; font-size: 0.85rem; display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--ink); }
  .sticky-cta a svg { width: 20px; height: 20px; color: var(--primary); }
  .sticky-cta a.wa { color: #25D366; } .sticky-cta a.wa svg { color: #25D366; }
  .sticky-cta a + a { border-left: 1px solid var(--line); }
  .promo .promo-text { padding: 40px 28px; }
}
