/* =========================================================
   Tessa's Hondentrimsalon — Soft UI, white + light pink
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ---------- Tokens ---------- */
:root {
  /* muted dusty-rose scale (was bright pink) */
  --pink-50:  #FBF7F5;   /* warm ivory */
  --pink-100: #F5EAE7;   /* soft blush */
  --pink-150: #EFE0DC;
  --pink-200: #E9D4D2;
  --pink-300: #DBB9BD;
  --pink-400: #CB99A1;
  --pink-500: #B87E88;   /* primary — dusty rose */
  --pink-600: #A2666F;   /* primary hover */
  --pink-700: #895059;

  /* luxury accents */
  --gold:      #C2A567;
  --gold-soft: #E4D3AC;
  --plum:      #3B2A30;   /* deep statement band */
  --cream:     #F7F0EB;

  --rose-ink: #4A343A;   /* headings — deep plum-brown */
  --ink:      #362A2E;   /* strong text */
  --text:     #6A585E;   /* body text */
  --muted:    #9C868C;   /* subtle text */

  --white:    #ffffff;

  --border:   #ECDCD8;
  --ring:     rgba(184,126,136,.40);

  --shadow-sm: 0 2px 10px rgba(74,52,58,.05);
  --shadow-md: 0 14px 36px rgba(74,52,58,.09);
  --shadow-lg: 0 30px 70px rgba(74,52,58,.14);
  --shadow-pink: 0 14px 30px rgba(162,102,111,.24);

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 22px;
  --radius-xl: 30px;

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 48px);

  --font-head: 'Roboto', system-ui, sans-serif;
  --font-body: 'Roboto', system-ui, sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
ul, ol { padding: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a, button { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }

/* toetsenbord-navigatie: altijd zichtbare focus */
a:focus-visible, button:focus-visible, select:focus-visible {
  outline: 2px solid var(--pink-500); outline-offset: 2px; border-radius: 6px;
}

/* zachte fade-in zodra een foto geladen is */
.fade-img { opacity: 0; transition: opacity .55s var(--ease); }
.fade-img.img-loaded { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .fade-img { opacity: 1 !important; transition: none; } }
h1,h2,h3,h4 { font-family: var(--font-head); color: var(--rose-ink); line-height: 1.12; font-weight: 600; letter-spacing: .2px; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
section { position: relative; scroll-margin-top: 84px; }
.section-pad { padding-block: clamp(64px, 9vw, 120px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body);
  font-weight: 500; font-size: .74rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--pink-700);
  background: transparent;
  padding: 6px 0; border-bottom: 1px solid var(--gold-soft);
  margin-bottom: 20px;
}
.eyebrow svg { width: 14px; height: 14px; color: var(--gold); }

.section-head { max-width: 660px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(2.3rem, 5vw, 3.6rem); margin-bottom: 16px; font-weight: 500; }
.section-head p { color: var(--muted); font-size: 1.08rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body);
  font-weight: 500; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 16px 32px; border-radius: 999px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--pink-500); color: #fff; box-shadow: var(--shadow-pink); }
.btn-primary:hover { background: var(--pink-600); transform: translateY(-3px); box-shadow: 0 18px 34px rgba(214,94,143,.40); }
.btn-ghost { background: #fff; color: var(--rose-ink); box-shadow: var(--shadow-sm); border: 1.5px solid var(--border); }
.btn-ghost:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--pink-300); }
.btn:focus-visible { outline: none; box-shadow: 0 0 0 4px var(--ring); }
.btn:active { transform: translateY(0) scale(.97); transition-duration: .1s; }

/* ---------- Navbar ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease);
  padding-block: 18px;
}
.nav.scrolled { background: rgba(255,255,255,.88); backdrop-filter: blur(14px); box-shadow: 0 4px 24px rgba(122,59,87,.08); padding-block: 10px; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; color: var(--rose-ink); }
.brand-txt { display: flex; flex-direction: column; line-height: 1; }
.brand-txt .w { font-family: var(--font-head); font-weight: 600; font-size: 1.5rem; color: var(--rose-ink); }
.brand-txt small { font-family: var(--font-body); font-weight: 500; font-size: .58rem; letter-spacing: .24em; text-transform: uppercase; color: var(--pink-500); margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-weight: 600; font-size: .98rem; color: var(--text);
  padding: 9px 15px; border-radius: 999px; transition: color .2s, background .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--pink-600); background: var(--pink-100); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 11px 22px; font-size: .95rem; }

.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 50%; background: var(--pink-100); }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--rose-ink); margin: 4px auto; border-radius: 2px; transition: .3s; }
.nav-toggle.open span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity: 0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { padding-top: 140px; padding-bottom: clamp(60px, 8vw, 110px); overflow: hidden; }
.hero::before {
  content:""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(60% 55% at 85% 12%, var(--pink-150), transparent 60%),
    radial-gradient(50% 50% at 8% 90%, var(--pink-100), transparent 60%),
    var(--white);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.hero-copy h1 { font-size: clamp(2.9rem, 6.2vw, 4.7rem); color: var(--rose-ink); margin-bottom: 22px; letter-spacing: 0; font-weight: 500; line-height: 1.06; }
.hero-copy h1 .accent { color: var(--pink-500); font-style: italic; font-weight: 500; }
.hero-copy p.lead { font-size: 1.14rem; font-weight: 300; color: var(--text); max-width: 32ch; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero-trust { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; color: var(--muted); font-size: .95rem; }
.hero-trust .stars { color: var(--pink-500); letter-spacing: 2px; }
.hero-trust .divider { width: 1px; height: 26px; background: var(--border); }
.hero-trust strong { color: var(--rose-ink); font-family: var(--font-head); }

.hero-visual { position: relative; }
.hero-photo {
  position: relative;
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 6px solid #fff;
  aspect-ratio: 3/4;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual::after {
  content: ""; position: absolute; inset: 16px -16px -16px 16px; z-index: -1;
  border: 1px solid var(--gold-soft); border-radius: var(--radius-xl);
}
.hero-badge {
  position: absolute; background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: 14px 18px; display: flex; align-items: center; gap: 12px;
}
.hero-badge .ico { width: 42px; height: 42px; border-radius: 50%; background: var(--pink-100); display: grid; place-items: center; flex: none; }
.hero-badge .ico svg { width: 22px; height: 22px; color: var(--pink-600); }
.hero-badge b { display: block; font-family: var(--font-head); color: var(--rose-ink); font-size: .98rem; }
.hero-badge span { font-size: .82rem; color: var(--muted); }
.hero-badge.b1 { top: 24px; left: -26px; }
.hero-badge.b2 { bottom: 30px; right: -22px; }
.blob { position: absolute; z-index: -1; border-radius: 50%; filter: blur(6px); opacity: .5; }
.blob.one { width: 130px; height: 130px; background: var(--pink-200); top: -30px; right: 40px; }

/* ---------- Marquee / trust strip ---------- */
.strip { background: var(--cream); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); color: var(--rose-ink); overflow: hidden; }
.marquee { display: flex; width: max-content; animation: marquee 28s linear infinite; padding-block: 24px; }
.strip:hover .marquee { animation-play-state: paused; }
.marquee-group { display: flex; align-items: center; gap: 0; flex: none; }
.strip .item { display: inline-flex; align-items: center; gap: 10px; font-weight: 400; font-size: .96rem; letter-spacing: .04em; white-space: nowrap; padding-inline: 34px; }
.strip .item svg { width: 16px; height: 16px; color: var(--gold); flex: none; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Ambient animation helpers ---------- */
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.hero-badge.b1 { animation: floaty 5s ease-in-out infinite; }
.hero-badge.b2 { animation: floaty 6s ease-in-out 1.2s infinite; }

/* De decoratieve pootjes staan bewust deels buiten hun sectie. Op een smal
   scherm rekken ze daarmee de pagina op, waardoor je zijwaarts kon vegen.
   'clip' snijdt dat alleen horizontaal af en maakt — anders dan 'hidden' —
   geen scrollcontainer aan, dus sticky/fixed blijft gewoon werken. */
body { overflow-x: clip; }
.paw-decor { position: absolute; z-index: 0; color: var(--pink-300); opacity: .28; pointer-events: none; }
.paw-decor svg { width: 100%; height: 100%; }
.gallery .wrap, .contact .wrap, .about-grid { position: relative; z-index: 1; }

/* ---------- Services ---------- */
.services { background: linear-gradient(180deg, #fff, var(--pink-50)); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.svc-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  display: flex; flex-direction: column;
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.svc-media { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.svc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.svc-card:hover .svc-media img { transform: scale(1.07); }
.svc-media .tag { position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,.92); backdrop-filter: blur(4px); color: var(--pink-700); font-weight: 500; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; padding: 7px 14px; border-radius: 999px; }
.svc-body { padding: 26px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.svc-body h3 { font-size: 1.55rem; margin-bottom: 8px; font-weight: 600; }
.svc-body p { color: var(--muted); font-size: .96rem; font-weight: 300; flex: 1; }
.svc-body .more { margin-top: 18px; color: var(--pink-600); font-weight: 500; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px; }
.svc-body .more svg { width: 16px; height: 16px; transition: transform .25s; }
.svc-card:hover .more svg { transform: translateX(4px); }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(34px, 6vw, 72px); align-items: center; }
.about-photo { position: relative; }
.about-photo .main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 7px solid #fff; aspect-ratio: 4/4.6; }
.about-photo .main img { width: 100%; height: 100%; object-fit: cover; }
.about-photo .mini { position: absolute; bottom: -28px; right: -18px; width: 44%; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); border: 6px solid #fff; aspect-ratio: 1/1; }
.about-photo .mini img { width: 100%; height: 100%; object-fit: cover; }
.about-copy h2 { font-size: clamp(2.4rem, 4.8vw, 3.5rem); margin-bottom: 20px; font-weight: 500; }
.about-copy p { margin-bottom: 16px; font-weight: 300; }
.about-copy p .hl { color: var(--rose-ink); font-weight: 500; }
.about-values { display: grid; gap: 14px; margin: 26px 0 30px; }
.about-values li { display: flex; gap: 14px; align-items: flex-start; list-style: none; }
.about-values .chk { width: 30px; height: 30px; border-radius: 50%; background: var(--pink-100); display: grid; place-items: center; flex: none; margin-top: 2px; }
.about-values .chk svg { width: 16px; height: 16px; color: var(--pink-600); }
.about-values b { color: var(--rose-ink); font-family: var(--font-head); }
.about-values span { display: block; color: var(--muted); font-size: .95rem; }

.cert {
  display: inline-flex; align-items: center; gap: 14px; background: var(--pink-50);
  border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 22px; margin-top: 4px;
}
.cert .seal { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg,var(--gold-soft),var(--gold)); display: grid; place-items: center; flex: none; }
.cert .seal svg { width: 26px; height: 26px; color: #fff; }
.cert b { display: block; color: var(--rose-ink); font-family: var(--font-head); font-size: 1.15rem; }
.cert span { font-size: .9rem; color: var(--muted); }

/* ---------- Reviews bar ---------- */
.reviews-bar { background: var(--plum); color: #fff; }
.rb-inner { display: flex; align-items: center; gap: 26px; padding-block: 16px; }
.rb-summary { display: flex; align-items: center; gap: 12px; flex: none; padding-right: 26px; border-right: 1px solid rgba(228,211,172,.22); }
.rb-summary .g { width: 22px; height: 22px; flex: none; }
.rb-summary .score { font-family: var(--font-head); font-weight: 600; font-size: 1.25rem; color: #F3E9DD; line-height: 1; }
.rb-summary .stars { color: var(--gold-soft); font-size: .8rem; letter-spacing: 2px; line-height: 1; }
.rb-summary .lbl { display: block; font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-top: 4px; }
.rb-viewport { flex: 1; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.rb-track { display: flex; width: max-content; animation: marquee 46s linear infinite; }
.reviews-bar:hover .rb-track { animation-play-state: paused; }
.rb-group { display: flex; flex: none; }
.rb-item { display: inline-flex; align-items: baseline; gap: 10px; white-space: nowrap; padding-inline: 30px; }
.rb-item .stars { color: var(--gold-soft); font-size: .72rem; letter-spacing: 1.5px; }
.rb-item q { font-family: var(--font-head); font-style: italic; font-size: 1.02rem; color: rgba(255,255,255,.88); quotes: "\201C" "\201D"; }
.rb-item .who { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); }

/* ---------- Gallery / Ons werk (bento) ---------- */
.gallery { background: linear-gradient(180deg, #fff, var(--pink-50)); }
.bento {
  display: grid; gap: 20px;
  grid-template-columns: 1.15fr 1fr 1fr;
  grid-template-rows: 300px 300px;
}
.shot {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  transition: box-shadow .35s var(--ease), transform .35s var(--ease);
}
.shot.feature { grid-row: span 2; }
.shot:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.shot img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s var(--ease); }
.shot:hover img { transform: scale(1.06); }
.shot .cap {
  position: absolute; left: 14px; bottom: 14px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(6px);
  color: var(--rose-ink); font-family: var(--font-body);
  font-size: .68rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  padding: 8px 15px; border-radius: 999px;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.shot:hover .cap { background: var(--pink-500); color: #fff; }
.tile-cta {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  text-align: center; padding: 24px;
  background: var(--plum); border-radius: var(--radius-lg);
  border: 1px solid var(--plum); box-shadow: var(--shadow-sm);
  transition: box-shadow .35s var(--ease), transform .35s var(--ease);
}
.tile-cta:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.tile-cta .ig { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--gold-soft); color: var(--gold-soft); transition: background .3s, color .3s; }
.tile-cta:hover .ig { background: var(--gold-soft); color: var(--plum); }
.tile-cta .ig svg { width: 24px; height: 24px; }
.tile-cta b { font-family: var(--font-head); font-weight: 500; font-size: 1.5rem; color: #F3E9DD; line-height: 1.2; }
.tile-cta span { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-soft); }

/* ---------- House rules ---------- */
.rules { background: var(--pink-50); }
.rules-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.rule {
  background: #fff; border-radius: var(--radius-lg); padding: 30px 28px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.rule:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.rule .num { width: 52px; height: 52px; border-radius: 50%; background: var(--pink-50); border: 1px solid var(--gold-soft); color: var(--gold); font-family: var(--font-head); font-size: 1.5rem; font-style: italic; display: grid; place-items: center; margin-bottom: 20px; }
.rule h3 { font-size: 1.45rem; margin-bottom: 10px; font-weight: 600; }
.rule p { color: var(--muted); font-size: .95rem; font-weight: 300; }
.rules-note { margin-top: 26px; text-align: center; color: var(--muted); font-size: .96rem; }

/* ---------- Contact ---------- */
.contact { background: linear-gradient(180deg, var(--pink-50), #fff); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(30px, 5vw, 60px); align-items: start; }
.contact-info .info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; }
.contact-info .ico { width: 50px; height: 50px; border-radius: 16px; background: #fff; box-shadow: var(--shadow-sm); border: 1px solid var(--border); display: grid; place-items: center; flex: none; }
.contact-info .ico svg { width: 24px; height: 24px; color: var(--pink-600); }
.contact-info .info-item b { display: block; color: var(--rose-ink); font-family: var(--font-head); font-size: 1.05rem; margin-bottom: 3px; }
/* het e-mailadres is één lang woord; zonder deze twee regels duwt het de hele
   pagina breder dan een telefoonscherm (flex-kinderen krimpen standaard niet
   onder hun inhoud, vandaar de min-width) */
.contact-info .info-item > div { min-width: 0; }
.contact-info .info-item a, .contact-info .info-item span { color: var(--text); overflow-wrap: anywhere; }
.contact-info .info-item a:hover { color: var(--pink-600); }
.socials { display: flex; gap: 12px; margin-top: 28px; }
.socials a { width: 48px; height: 48px; border-radius: 14px; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-sm); display: grid; place-items: center; transition: transform .25s, background .25s, color .25s; color: var(--pink-600); }
.socials a:hover { transform: translateY(-4px); background: var(--pink-500); color: #fff; }
.socials svg { width: 22px; height: 22px; }

.form-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); border: 1px solid var(--border); padding: clamp(28px, 4vw, 44px); }
.form-card h3 { font-size: 1.9rem; margin-bottom: 6px; font-weight: 600; }
.form-card > p { color: var(--muted); margin-bottom: 24px; font-size: .96rem; font-weight: 300; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 500; color: var(--rose-ink); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 9px; }
.field label .req { color: var(--pink-500); }
.field input, .field textarea {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  background: var(--pink-50); border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: 13px 16px; transition: border .2s, box-shadow .2s, background .2s;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #b7a6ae; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--pink-400); background: #fff; box-shadow: 0 0 0 4px var(--ring); }
.field.row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-card button[type=submit] { width: 100%; margin-top: 6px; }
.form-msg { margin-top: 14px; text-align: center; font-weight: 600; color: var(--pink-600); display: none; }
.form-msg.show { display: block; }

/* ---------- Floating booking button (FAB) ---------- */
.fab {
  position: fixed; right: max(22px, env(safe-area-inset-right)); bottom: max(22px, env(safe-area-inset-bottom));
  z-index: 150;
  display: inline-flex; align-items: center; gap: 0;
  height: 58px; padding: 0 17px; border-radius: 999px;
  background: var(--pink-500); color: #fff;
  box-shadow: 0 10px 28px rgba(184,126,136,.45);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.fab svg { width: 24px; height: 24px; flex: none; }
.fab .fab-label {
  max-width: 0; overflow: hidden; white-space: nowrap;
  font-weight: 600; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase;
  transition: max-width .35s var(--ease), padding .35s var(--ease);
}
.fab:hover { background: var(--pink-600); transform: translateY(-3px); box-shadow: 0 16px 36px rgba(162,102,111,.5); }
.fab:hover .fab-label, .fab:focus-visible .fab-label { max-width: 200px; padding-left: 11px; }
.fab:focus-visible { outline: none; box-shadow: 0 0 0 4px var(--ring), 0 10px 28px rgba(184,126,136,.45); }
.fab::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(230,124,168,.5);
  animation: fab-pulse 3.2s ease-out infinite;
  pointer-events: none;
}
@keyframes fab-pulse {
  0% { box-shadow: 0 0 0 0 rgba(230,124,168,.45); }
  55% { box-shadow: 0 0 0 14px rgba(230,124,168,0); }
  100% { box-shadow: 0 0 0 0 rgba(230,124,168,0); }
}
@media (prefers-reduced-motion: reduce) {
  .fab::after { animation: none; }
  .fab:hover { transform: none; }
}

/* FAB booking popup */
.fab-panel {
  position: fixed; right: max(18px, env(safe-area-inset-right)); bottom: 94px;
  z-index: 149;
  width: min(500px, calc(100vw - 24px));
  height: min(640px, calc(100vh - 120px));
  background: #fff; border: 1px solid var(--border); border-radius: 22px;
  box-shadow: 0 30px 70px rgba(74,52,58,.28);
  overflow: hidden; display: none; flex-direction: column;
  transform-origin: bottom right;
}
.fab-panel.open { display: flex; animation: panel-in .3s var(--ease); }
@keyframes panel-in { from { opacity: 0; transform: translateY(14px) scale(.96); } to { opacity: 1; transform: none; } }
.fab-panel-head {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 14px 18px; border-bottom: 1px solid var(--border); background: var(--pink-50);
}
.fab-panel-head b { font-family: var(--font-head); font-size: 1.15rem; font-weight: 600; color: var(--rose-ink); }
.fab-panel-head .grow { flex: 1; }
.fab-panel-head a { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 600; color: var(--pink-600); }
.fab-panel-head button { width: 32px; height: 32px; border-radius: 50%; background: #fff; border: 1px solid var(--border); color: var(--rose-ink); display: grid; place-items: center; }
.fab-panel-head button svg { width: 14px; height: 14px; }
.fab-panel iframe { flex: 1; border: 0; width: 100%; }
@media (prefers-reduced-motion: reduce) { .fab-panel.open { animation: none; } }
/* op de telefoon: geen zwevend venstertje maar een volwaardig scherm */
@media (max-width: 760px) {
  .fab-panel { inset: 0; width: auto; height: 100%; border-radius: 0; border: 0; }
  .fab-panel-head { padding-top: calc(14px + env(safe-area-inset-top)); }
  .fab-panel.open { animation: panel-up .28s var(--ease); }
  @keyframes panel-up { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: none; } }
}

/* embed-modus (agenda in de FAB-popup): alles krimpt zodat de week past */
body.embed .nav, body.embed .fab { display: none !important; }
body.embed .booking-page { padding-top: 14px; min-height: auto; background: #fff; }
body.embed .booking-page.section-pad { padding-block: 14px 20px; }
body.embed .wrap { padding-inline: 14px; }
body.embed .section-head { margin-bottom: 14px; }
body.embed .section-head h2 { font-size: 1.35rem; }
body.embed .section-head p { font-size: .84rem; }
body.embed .eyebrow { display: none; }
body.embed .week-nav { margin-bottom: 14px; gap: 10px; }
body.embed .week-nav .label { font-size: .95rem; min-width: 0; }
body.embed .week-nav button { width: 36px; height: 36px; }
body.embed .agenda { box-shadow: none; border: none; padding: 0; }
body.embed .agenda-grid { gap: 6px; }
body.embed .day-col { padding: 10px 8px; }
body.embed .day-col .day-head { padding-bottom: 8px; margin-bottom: 8px; }
body.embed .day-head b { font-size: .82rem; }
body.embed .day-head span { font-size: .56rem; letter-spacing: .06em; }
body.embed .chips { gap: 5px; }
body.embed .chip { font-size: .72rem; padding: 6px 8px; min-width: 50px; }
body.embed .agenda-legend { font-size: .68rem; gap: 6px 12px; margin-top: 14px; }

/* ---------- Booking / agenda ---------- */
.booking-page { padding-top: 130px; background: linear-gradient(180deg, var(--pink-50), #fff 320px); min-height: 100vh; }
.svc-filter { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }
.svc-filter label { font-size: .8rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--rose-ink); }
.svc-filter select {
  font-family: var(--font-body); font-size: .98rem; color: var(--ink);
  background: #fff; border: 1.5px solid var(--border); border-radius: 999px;
  padding: 11px 40px 11px 18px; box-shadow: var(--shadow-sm); cursor: pointer;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23A2666F' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.svc-filter select:focus { outline: none; border-color: var(--pink-400); box-shadow: 0 0 0 4px var(--ring); }
.svc-note { font-size: .82rem; color: var(--muted); width: 100%; text-align: center; }

.week-nav { display: flex; align-items: center; justify-content: center; gap: 18px; margin-bottom: 30px; }
.week-nav .label { font-family: var(--font-head); font-size: 1.35rem; font-weight: 600; color: var(--rose-ink); min-width: 240px; text-align: center; }
.week-nav button {
  width: 44px; height: 44px; border-radius: 50%; background: #fff; border: 1.5px solid var(--border);
  color: var(--rose-ink); display: grid; place-items: center; box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), border-color .2s;
}
.week-nav button:hover:not(:disabled) { transform: translateY(-2px); border-color: var(--pink-300); }
.week-nav button:disabled { opacity: .35; cursor: default; }
.week-nav button svg { width: 18px; height: 18px; }

.agenda { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: clamp(16px, 3vw, 30px); overflow-x: auto; }
.agenda-grid { display: grid; gap: 8px; }

/* publieke agenda: dag-kolommen met tijd-chips */
.day-col { background: var(--pink-50); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 14px; }
.day-col .day-head { text-align: center; padding-bottom: 12px; margin-bottom: 12px; border-bottom: 1px solid var(--border); }
.chips { display: flex; flex-wrap: wrap; gap: 7px; justify-content: center; align-content: flex-start; }
.chip {
  font-family: var(--font-body); font-variant-numeric: tabular-nums;
  font-size: .82rem; font-weight: 500; letter-spacing: .02em;
  background: #fff; color: var(--pink-700); border: 1.5px solid var(--pink-200);
  padding: 8px 12px; border-radius: 999px; min-width: 62px;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), color .18s var(--ease);
}
.chip:hover { background: var(--pink-500); color: #fff; border-color: var(--pink-500); transform: translateY(-2px); box-shadow: var(--shadow-pink); }
.chip:active { transform: scale(.94); transition-duration: .08s; }
.day-full { width: 100%; text-align: center; color: var(--muted); font-size: .86rem; padding: 14px 0; }
.skel-head { min-height: 44px; margin-bottom: 12px; }
.skel-chip { min-height: 34px; width: 62px; border-radius: 999px; }
.agenda-grid .corner { }
.agenda-grid .day-head { text-align: center; padding-bottom: 8px; }
.agenda-grid .day-head b { display: block; font-family: var(--font-head); font-size: 1.1rem; font-weight: 600; color: var(--rose-ink); }
.agenda-grid .day-head span { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.agenda-grid .time-label { display: flex; align-items: center; justify-content: flex-end; padding-right: 10px; font-size: .82rem; color: var(--muted); font-variant-numeric: tabular-nums; }
.slot {
  min-height: 46px; border-radius: 10px; font-size: .82rem; font-weight: 500; letter-spacing: .04em;
  display: grid; place-items: center; transition: transform .18s var(--ease), box-shadow .18s var(--ease);
  border: 1.5px solid transparent; width: 100%;
}
button.slot { cursor: pointer; }
button.slot:active { transform: scale(.94); transition-duration: .08s; }

/* week wisselen: zachte crossfade */
.agenda-grid { transition: opacity .22s var(--ease); }
.agenda-grid.swapping { opacity: .3; }

/* skeleton tijdens laden */
.skel { border-radius: 10px; min-height: 46px; background: linear-gradient(100deg, var(--pink-50) 40%, var(--pink-100) 50%, var(--pink-50) 60%); background-size: 200% 100%; animation: shimmer 1.2s linear infinite; }
@keyframes shimmer { to { background-position: -200% 0; } }
@media (prefers-reduced-motion: reduce) { .skel { animation: none; } }

/* vandaag-markering in de agendakop */
.day-head.today b { color: var(--pink-600); }
.day-head.today b::after { content: ""; display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: var(--pink-500); margin-left: 6px; vertical-align: middle; }

/* foutmelding + opnieuw proberen */
.agenda-error { text-align: center; padding: 36px 12px; color: var(--muted); }
.agenda-error .btn { margin-top: 14px; }
.slot.free { background: var(--pink-100); color: var(--pink-700); border-color: var(--pink-200); }
button.slot.free:hover { transform: translateY(-2px); box-shadow: var(--shadow-pink); background: var(--pink-500); color: #fff; }
.slot.taken { background: var(--cream); color: #b9a89b; border-color: var(--border); text-decoration: line-through; }
.slot.past, .slot.closed { background: transparent; color: #d8cdd2; border: 1.5px dashed var(--border); }
.slot.pending { background: #FBF3DC; color: #8a6d1f; border-color: var(--gold-soft); }
.slot.confirmed { background: #E8F2E8; color: #3e6b45; border-color: #cfe3cf; }
.slot.blocked { background: #F0E7E9; color: var(--muted); border-color: var(--border); }
.agenda-legend { display: flex; flex-wrap: wrap; gap: 10px 22px; justify-content: center; margin-top: 22px; font-size: .82rem; color: var(--muted); }
.agenda-legend .key { display: inline-flex; align-items: center; gap: 8px; }
.agenda-legend .sw { width: 15px; height: 15px; border-radius: 5px; display: inline-block; border: 1.5px solid transparent; }

/* booking modal */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200; background: rgba(59,42,48,.5); backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  width: min(520px, 100%); max-height: 90vh; overflow-y: auto; padding: clamp(24px, 4vw, 36px);
  animation: modal-in .28s var(--ease);
}
@keyframes modal-in { from { opacity: 0; transform: translateY(18px) scale(.98); } to { opacity: 1; transform: none; } }
.modal h3 { font-size: 1.7rem; font-weight: 600; margin-bottom: 4px; }
.modal .when { color: var(--pink-600); font-weight: 500; margin-bottom: 20px; }
.modal-close { position: sticky; top: 0; float: right; width: 38px; height: 38px; border-radius: 50%; background: var(--pink-50); color: var(--rose-ink); display: grid; place-items: center; }
.modal-close svg { width: 16px; height: 16px; }
.modal .form-error { color: #b3364b; font-size: .9rem; margin-top: 10px; display: none; }
.modal .form-error.show { display: block; }
.modal .success { text-align: center; padding: 26px 6px; }
.modal .success .big { width: 62px; height: 62px; border-radius: 50%; background: #E8F2E8; color: #3e6b45; display: grid; place-items: center; margin: 0 auto 18px; animation: pop-in .35s var(--ease); }
.modal .success .big svg { width: 30px; height: 30px; }
.modal .success .big svg path { stroke-dasharray: 30; stroke-dashoffset: 30; animation: draw-check .45s .2s var(--ease) forwards; }
@keyframes pop-in { from { transform: scale(.5); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes draw-check { to { stroke-dashoffset: 0; } }
@media (prefers-reduced-motion: reduce) {
  .modal .success .big { animation: none; }
  .modal .success .big svg path { animation: none; stroke-dashoffset: 0; }
}

/* veld-validatie */
.field input.invalid, .field textarea.invalid { border-color: #c4506a; background: #FDF4F6; }
.field .field-hint { display: none; font-size: .8rem; color: #b3364b; margin-top: 6px; }
.field .field-hint.show { display: block; }

/* smalle boekingsweergave: dagenrij met één dag tegelijk (zoals de admin-app) */
.pub-day-wrap { width: 100%; }
.pub-daystrip { display: flex; gap: 6px; margin-bottom: 14px; }
.pub-daystrip button { flex: 1; min-width: 0; padding: 10px 2px 8px; border-radius: 15px; background: #fff; border: 1.5px solid var(--border); position: relative; }
.pub-daystrip button b { display: block; font-family: var(--font-head); font-size: 1rem; font-weight: 600; color: var(--rose-ink); }
.pub-daystrip button span { display: block; font-size: .56rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-top: 1px; }
.pub-daystrip button.active { background: var(--pink-500); border-color: var(--pink-500); box-shadow: var(--shadow-pink); }
.pub-daystrip button.active b, .pub-daystrip button.active span { color: #fff; }
.pub-daystrip button:disabled { opacity: .35; }
.pub-daystrip button.today:not(.active) b { color: var(--pink-600); }
.pub-picked-day { text-align: center; font-size: .84rem; color: var(--muted); margin-bottom: 12px; }
.pub-chips { display: grid; grid-template-columns: repeat(auto-fill, minmax(76px, 1fr)); gap: 8px; }
.pub-chips .chip { padding: 13px 4px; font-size: .95rem; border-radius: 13px; }
.pub-empty { text-align: center; color: var(--muted); padding: 34px 12px; }

/* het aanvraagformulier als volledig scherm op de telefoon */
@media (max-width: 560px) {
  .modal-overlay { padding: 0; align-items: stretch; }
  .modal { width: 100%; max-width: none; height: 100%; max-height: none; border-radius: 0; overflow-y: auto; padding-top: calc(22px + env(safe-area-inset-top)); padding-bottom: calc(22px + env(safe-area-inset-bottom)); }
}

/* lokale sectie (Boekel & omgeving) */
.local { background: var(--cream, #FBF7F5); border-top: 1px solid var(--border); }
.local .section-head { max-width: 720px; }
.local-copy { color: var(--text); line-height: 1.75; margin-bottom: 14px; }

/* toast (admin-feedback) */
.toast {
  position: fixed; left: 50%; bottom: 26px; z-index: 400;
  transform: translateX(-50%) translateY(16px); opacity: 0; pointer-events: none;
  background: var(--plum); color: #F3E9DD; font-size: .9rem; font-weight: 500;
  padding: 13px 22px; border-radius: 999px; box-shadow: var(--shadow-lg);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
@media (prefers-reduced-motion: reduce) { .toast { transition: none; } }
.modal .success h4 { font-family: var(--font-head); font-size: 1.5rem; color: var(--rose-ink); margin-bottom: 8px; }
.modal .success p { color: var(--muted); font-size: .96rem; }

@media (max-width: 720px) {
  .booking-page { padding-top: 108px; }
  .week-nav .label { min-width: 0; font-size: 1.1rem; }
}
@media (prefers-reduced-motion: reduce) {
  .modal { animation: none; }
}

/* ---------- Footer ---------- */
.footer { background: var(--plum); color: #fff; padding-block: 64px 30px; }
.footer h4 { font-family: var(--font-body); font-weight: 500; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-soft); }
.footer a { color: rgba(255,255,255,.8); }
.footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; margin-bottom: 18px; color: #F3E9DD; }
.footer-logo .w { font-family: var(--font-head); font-weight: 600; font-size: 2rem; line-height: 1; color: #F3E9DD; }
.footer-logo small { font-family: var(--font-body); font-weight: 400; font-size: .68rem; letter-spacing: .3em; padding-left: .3em; text-transform: uppercase; color: var(--gold-soft); }
.footer p.desc { color: rgba(255,255,255,.72); font-size: .96rem; max-width: 34ch; }
.footer h4 { margin-bottom: 16px; }
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer ul a { font-size: .96rem; }
.footer .contact-line { display: flex; gap: 10px; align-items: center; font-size: .95rem; color: rgba(255,255,255,.8); margin-bottom: 10px; }
.footer .contact-line svg { width: 17px; height: 17px; color: var(--gold-soft); flex: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.15); padding-top: 22px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; color: rgba(255,255,255,.6); font-size: .88rem; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .agenda-grid { grid-template-columns: 1fr 1fr !important; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-copy { text-align: center; }
  .hero-copy p.lead { max-width: none; margin-inline: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-visual { max-width: 440px; margin-inline: auto; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 460px; margin: 0 auto 30px; }
  .contact-grid { grid-template-columns: 1fr; }
  .rules-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .bento { grid-template-columns: 1fr 1fr; grid-template-rows: 280px 280px 280px; }
  .shot.feature { grid-row: span 1; }
}
@media (max-width: 720px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .nav-links.mobile-open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: calc(100% + 8px); left: var(--gutter); right: var(--gutter);
    background: #fff; padding: 14px; border-radius: var(--radius); box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  }
  .nav-links.mobile-open a { padding: 13px 16px; }
}
@media (max-width: 560px) {
  .agenda-grid { grid-template-columns: 1fr !important; }
  .svc-grid { grid-template-columns: 1fr; }
  .field.row { grid-template-columns: 1fr; }
  .hero-badge.b1 { left: -8px; }
  .hero-badge.b2 { right: -6px; }
  .about-photo .mini { right: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; grid-template-rows: none; grid-auto-rows: 300px; }
  .rb-summary .lbl { display: none; }
  .rb-summary { padding-right: 16px; gap: 9px; }
  .rb-inner { gap: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .btn:hover, .svc-card:hover, .rule:hover, .shot:hover, .tile-cta:hover { transform: none !important; }
  .marquee, .rb-track { animation: none !important; flex-wrap: wrap; justify-content: center; width: auto; }
  .hero-badge.b1, .hero-badge.b2 { animation: none !important; }
  [data-parallax] { transform: none !important; }
}
