/* ==========================================================================
   Marlee Hair — homepage
   Concept: "Color Splash", subtiel uitgevoerd. Mobiel eerst.
   ========================================================================== */

/* ---------- Reset & basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: clip; }

body {
  background: var(--mh-blush);
  color: var(--mh-ink);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
address { font-style: normal; }
table { border-collapse: collapse; }
::selection { background: var(--mh-pink); color: var(--mh-ink); }

:focus-visible {
  outline: 2px solid var(--mh-deep);
  outline-offset: 2px;
  border-radius: 4px;
}

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 100;
  padding: 12px 20px; border-radius: var(--radius-pill);
  background: var(--mh-deep); color: var(--mh-white); font-weight: 600;
  transform: translateY(-160%);
  transition: transform var(--dur) var(--ease-out);
}
.skip-link:focus-visible { transform: none; outline-color: var(--mh-ink); }

.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.icon { width: 1.15em; height: 1.15em; flex: none; }

/* ---------- Typografie ---------- */
.display, .h2 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--mh-ink);
  text-wrap: balance;
}
.display {
  font-size: var(--fs-display);
  line-height: .95;
  letter-spacing: -.02em;
}
.h2 {
  font-size: var(--fs-h2);
  line-height: 1;
  letter-spacing: -.015em;
}
.display em, .h2 em {
  font-style: italic;
  color: var(--mh-magenta); /* alleen ≥ 24px: 4,2:1 op blush */
  padding-right: .04em;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mark);
  font-weight: 600;
  font-size: var(--fs-eyebrow);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mh-deep);
  margin-bottom: var(--s-3);
}
.eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50% 45% 55% 50%;
  background: var(--mh-magenta);
}
.prose { max-width: 56ch; }
.prose p + p { margin-top: var(--s-2); }

/* ---------- Links ---------- */
.link-draw {
  background: linear-gradient(currentColor, currentColor) no-repeat 0 100% / 0 1.5px;
  transition: background-size 300ms var(--ease-out), color var(--dur) var(--ease-out);
  padding-bottom: 2px;
}
.link-draw:hover { background-size: 100% 1.5px; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--mh-deep);
  background: linear-gradient(currentColor, currentColor) no-repeat 0 calc(100% - 8px) / 0 1.5px;
  transition: background-size 300ms var(--ease-out);
}
.link-arrow .icon:last-child { transition: transform var(--dur) var(--ease-out); }
.link-arrow:hover { background-size: calc(100% - 1.4em) 1.5px; }
.link-arrow:hover .icon:last-child { transform: translateX(4px); }
.link-arrow--light { color: var(--mh-white); }

/* ---------- Knoppen ---------- */
.btn {
  --btn-bg: var(--mh-deep);
  --btn-fg: var(--mh-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.0625rem;
  line-height: 1.2;
  letter-spacing: .005em;
  white-space: nowrap;
  box-shadow: var(--shadow-soft);
  transition:
    transform var(--dur) var(--ease-out),
    box-shadow var(--dur) var(--ease-out),
    background-color var(--dur) var(--ease-out);
}
.btn:hover { transform: scale(1.02); box-shadow: var(--shadow-lift); }
.btn:active { transform: scale(.99); }
.btn-primary:hover { --btn-bg: #8A2360; }
.btn-sm { min-height: 44px; padding: 10px 20px; font-size: .9375rem; }
.btn-lg { min-height: 58px; padding: 16px 30px; font-size: 1.125rem; }
.btn-ghost { --btn-bg: var(--mh-white); --btn-fg: var(--mh-deep); }
.btn-light { --btn-bg: var(--mh-white); --btn-fg: var(--mh-deep); }
.btn-light:hover { box-shadow: 0 12px 32px rgba(43, 16, 38, .25); }
.btn .icon { width: 1.25em; height: 1.25em; }

/* ---------- Header / nav ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background-color 300ms var(--ease-out), box-shadow 300ms var(--ease-out), backdrop-filter 300ms var(--ease-out);
}
.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 243, 246, .86);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  backdrop-filter: saturate(1.4) blur(14px);
  box-shadow: 0 1px 0 rgba(43, 16, 38, .06), 0 8px 24px rgba(43, 16, 38, .04);
}
/* Open menu: geen backdrop-filter, anders wordt de header het containing block van het vaste menu */
.site-header.is-open {
  background: var(--mh-blush);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
.nav {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  height: var(--nav-h);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  margin-right: auto;
  border-radius: var(--radius-pill);
}
.brand-splash { width: 40px; height: 40px; transition: transform 400ms var(--ease-out); }
.brand:hover .brand-splash { transform: rotate(-8deg) scale(1.06); }
.brand-word {
  font-family: var(--font-mark);
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: .06em;
  color: var(--mh-deep);
  white-space: nowrap;
}
.nav-main { display: none; }
.nav-main ul { display: flex; gap: var(--s-4); }
.nav-main a { font-weight: 500; font-size: .9375rem; padding-block: 12px; }
.nav-cta { display: none; }

.menu-toggle {
  display: none;
  width: 48px; height: 48px;
  margin-right: -8px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: background-color var(--dur) var(--ease-out);
}
.js .menu-toggle { display: inline-flex; }
.menu-toggle:hover { background: var(--mh-pink-soft); }
.menu-toggle-lines { position: relative; width: 22px; height: 12px; }
.menu-toggle-lines span {
  position: absolute; left: 0; right: 0; height: 2px; border-radius: 2px;
  background: var(--mh-ink);
  transition: transform 300ms var(--ease-out), top 300ms var(--ease-out);
}
.menu-toggle-lines span:first-child { top: 0; }
.menu-toggle-lines span:last-child { top: 10px; }
.menu-toggle[aria-expanded="true"] .menu-toggle-lines span:first-child { top: 5px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle-lines span:last-child { top: 5px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: var(--nav-h) 0 0;
  background: var(--mh-blush);
  overflow-y: auto;
  opacity: 0;
  transition: opacity 300ms var(--ease-out);
}
.mobile-menu.is-open { opacity: 1; }
.mobile-menu-inner { padding-block: var(--s-4) var(--s-6); }
.mobile-menu-links li + li { border-top: 1px solid var(--mh-line); }
.mobile-menu-links a {
  display: flex;
  align-items: center;
  min-height: 72px;
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
  transition: color var(--dur) var(--ease-out), padding var(--dur) var(--ease-out);
}
.mobile-menu-links a:hover { color: var(--mh-deep); padding-left: 8px; }
.mobile-menu-cta { display: grid; gap: var(--s-2); justify-items: start; margin-top: var(--s-5); }

@media (min-width: 560px) {
  .nav-cta { display: inline-flex; }
}
@media (min-width: 1024px) {
  :root { --nav-h: 88px; }
  .nav-main { display: block; }
  .js .menu-toggle { display: none; }
  .mobile-menu { display: none; }
  .nav { gap: var(--s-5); }
  .brand-splash { width: 44px; height: 44px; }
}

/* ---------- Sectie-basis ---------- */
.section { padding-block: var(--section); }
.section-head { margin-bottom: clamp(40px, 5vw, 72px); max-width: 720px; }
.section-head .h2 { margin-bottom: var(--s-3); }
.section-intro { color: var(--mh-muted); max-width: 48ch; font-size: 1.0625rem; }
.section-head--split { max-width: none; }
@media (min-width: 900px) {
  .section-head--split { display: flex; justify-content: space-between; align-items: flex-end; gap: var(--s-8); }
  .section-head--split .h2 { margin-bottom: 0; }
  .section-head--split .section-intro { max-width: 36ch; padding-bottom: 8px; }
}

/* ---------- Foto's ---------- */
picture img { width: 100%; height: 100%; object-fit: cover; }
.media-parallax {
  display: block;
  width: 100%;
  height: 112%;   /* ruimte voor de parallax (yPercent ±5) */
  margin-top: -6%;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + clamp(24px, 4vw, 56px));
  padding-bottom: clamp(48px, 6vw, 96px);
}
.hero-grid {
  display: grid;
  gap: var(--s-6);
  align-items: center;
}
.hero-copy { position: relative; z-index: 2; }
.hero .display { margin-bottom: var(--s-3); }
.hero .display em { white-space: nowrap; }
.hero-sub {
  font-size: clamp(1.125rem, 1.05rem + .35vw, 1.3125rem);
  line-height: 1.55;
  color: var(--mh-muted);
  max-width: 34ch;
  margin-bottom: var(--s-4);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-2) var(--s-4);
}

.open-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: var(--s-3);
  font-size: var(--fs-small);
  color: var(--mh-muted);
}
.open-status strong { color: var(--mh-ink); font-weight: 600; }
.open-status::before {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
  background: #B9A8B3;
  box-shadow: 0 0 0 4px rgba(185, 168, 179, .2);
}
.open-status.is-open::before { background: #2F8F5B; box-shadow: 0 0 0 4px rgba(47, 143, 91, .16); }

.hero-media {
  position: relative;
  width: min(100%, 520px);
  justify-self: center;
}
.hero-bloom {
  position: absolute;
  z-index: 0;
  width: 150%; height: auto;
  aspect-ratio: 1;
  left: -30%; top: -18%;
  color: var(--mh-magenta);
  opacity: .15;
  filter: blur(28px);
  transform-origin: 50% 50%;
  animation: breathe 8s ease-in-out infinite alternate;
  will-change: transform;
  pointer-events: none;
}
@keyframes breathe { to { transform: scale(1.03) rotate(2deg); } }

.hero-frame {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 5;
  border-radius: 999px 999px var(--radius-lg) var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.js .hero-frame { animation: heroReveal .9s var(--ease-out) .1s both; }
@keyframes heroReveal {
  from { clip-path: inset(6% 8% 6% 8% round 999px 999px 28px 28px); }
  to   { clip-path: inset(0 0 0 0 round 999px 999px 28px 28px); }
}
.hero-frame { background: var(--mh-pink); }
.hero-frame picture { display: block; width: 100%; height: 100%; }
.hero-frame img { object-position: 50% 35%; }

.rating-chip {
  position: absolute;
  z-index: 2;
  left: -8px;
  bottom: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 10px 18px 10px 14px;
  border-radius: var(--radius-pill);
  background: var(--mh-white);
  box-shadow: 0 10px 30px rgba(43, 16, 38, .12);
  font-size: .9375rem;
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.rating-chip .icon { color: var(--mh-magenta); width: 20px; height: 20px; }
.rating-chip strong { font-weight: 700; }
.rating-chip:hover { transform: translateY(-2px) scale(1.02); box-shadow: var(--shadow-lift); }

@media (min-width: 900px) {
  .hero { min-height: min(100svh, 980px); display: flex; align-items: center; }
  .hero-grid { grid-template-columns: 1.15fr .85fr; gap: clamp(48px, 6vw, 112px); width: 100%; }
  .hero-media { justify-self: end; }
  .rating-chip { left: -40px; bottom: 64px; }
}

/* ---------- Reviewregel ---------- */
.proof { padding-bottom: clamp(24px, 3vw, 40px); }
.proof-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px var(--s-4);
  padding-block: var(--s-3);
  border-block: 1px solid var(--mh-line);
}
.proof-score {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}
.proof-score .icon { color: var(--mh-magenta); width: 22px; height: 22px; }
.proof-score strong { font-weight: 400; }
.proof-count { font-weight: 600; font-size: var(--fs-small); }
.proof-quote {
  flex: 1 1 320px;
  font-family: var(--font-display);
  font-size: 1.375rem;
  line-height: 1.3;
  color: var(--mh-muted);
}
.proof-quote em { font-style: italic; color: var(--mh-deep); }
@media (min-width: 900px) {
  .proof-line { flex-wrap: nowrap; }
  .proof-count { white-space: nowrap; padding-right: var(--s-4); border-right: 1px solid var(--mh-line); }
}

/* ---------- Over Debbie ---------- */
.about-grid { display: grid; gap: var(--s-6); align-items: center; }
.about-media {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  max-width: 480px;
  background: var(--mh-pink-soft);
}
.about-media img { object-position: 50% 30%; }
.about-copy .h2 { margin-bottom: var(--s-4); }
.about-copy .prose { color: var(--mh-ink); }
.pull-quote {
  position: relative;
  margin-block: var(--s-5);
  padding-left: var(--s-4);
}
.pull-quote::before {
  content: "";
  position: absolute; left: 0; top: .2em; bottom: .2em;
  width: 3px; border-radius: 3px;
  background: var(--mh-gloss);
}
.pull-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.75rem, 1.4rem + 1.4vw, 2.5rem);
  line-height: 1.1;
  color: var(--mh-magenta);
}
.pull-quote footer {
  margin-top: var(--s-1);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--mh-muted);
}
.pull-quote footer::before { content: "— "; }
.usp-list { display: grid; gap: var(--s-2); }
.usp-list li {
  display: grid; gap: 2px;
  padding-top: var(--s-2);
  border-top: 1px solid var(--mh-line);
}
.usp-list strong { font-weight: 700; font-size: 1rem; }
.usp-list span { font-size: var(--fs-small); color: var(--mh-muted); line-height: 1.5; }

@media (min-width: 900px) {
  .about-grid { grid-template-columns: 5fr 6fr; gap: clamp(56px, 8vw, 128px); }
  .usp-list { grid-template-columns: repeat(3, 1fr); gap: var(--s-4); }
}

/* ---------- Behandelingen ---------- */
.treatments { background: var(--mh-white); border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.price-list {
  display: grid;
  column-gap: var(--s-8);
  border-top: 1px solid var(--mh-line);
}
.price-list li { border-bottom: 1px solid var(--mh-line); }
.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "name amt" "dur book";
  align-items: baseline;
  gap: 4px var(--s-2);
  padding: 20px 16px;
  margin-inline: -16px;
  border-radius: var(--radius-md);
  transition: background-color var(--dur) var(--ease-out);
}
.price-name {
  grid-area: name;
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  line-height: 1.15;
}
.price-name small {
  font-family: var(--font-body);
  font-size: .875rem;
  color: var(--mh-muted);
  margin-left: 4px;
  white-space: nowrap;
}
.price-dur { grid-area: dur; font-size: var(--fs-small); color: var(--mh-muted); }
.price-amt {
  grid-area: amt;
  font-weight: 700;
  font-size: 1.125rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  text-align: right;
}
.price-amt small { font-weight: 500; font-size: .8125rem; color: var(--mh-muted); margin-right: 2px; }
.price-book {
  grid-area: book;
  justify-self: end;
  display: inline-flex; align-items: center; gap: 4px;
  font-size: .875rem;
  font-weight: 700;
  color: var(--mh-deep);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}
.price-row:hover,
.price-row:focus-visible { background: var(--mh-pink-soft); }
.price-row:hover .price-book,
.price-row:focus-visible .price-book { opacity: 1; transform: none; }
@media (hover: none) {
  .price-book { opacity: 1; transform: none; }
}
.price-foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--s-1) var(--s-4);
  margin-top: var(--s-4);
}
.price-help { font-weight: 500; }
.price-help a { color: var(--mh-deep); font-weight: 700; }
.price-note { font-size: var(--fs-small); color: var(--mh-muted); }

@media (min-width: 900px) {
  .price-list { grid-template-columns: 1fr 1fr; border-top: 0; }
  .price-list li:nth-child(-n+2) { border-top: 1px solid var(--mh-line); }
}

/* ---------- Kleurwerk ---------- */
.work { background: var(--mh-white); padding-top: 0; border-radius: 0 0 var(--radius-lg) var(--radius-lg); margin-bottom: var(--section); }
.work-grid {
  display: flex;
  gap: var(--s-2);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--gutter);
  padding-inline: var(--gutter);
  padding-bottom: var(--s-2);
  margin-inline: calc(var(--gutter) * -1);
  scrollbar-width: none;
  overscroll-behavior-x: contain;
}
.work-grid::-webkit-scrollbar { display: none; }
.work-item { flex: 0 0 min(76%, 320px); scroll-snap-align: start; }
.work-item figure {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--mh-pink-soft);
}
.work-item img { transition: transform 600ms var(--ease-out); }
.work-item:hover img { transform: scale(1.03); }
.work-item figcaption {
  position: absolute;
  left: 16px; bottom: 16px;
  z-index: 2;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .9);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.125rem;
  line-height: 1.2;
}
.work-more { margin-top: var(--s-4); }
.work-more .icon:first-child { width: 20px; height: 20px; }

@media (min-width: 900px) {
  .work-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s-3);
    overflow: visible;
    margin-inline: 0;
    padding: 0 0 var(--s-8);
  }
  .work-item:nth-child(even) { transform: translateY(var(--s-8)); }
  .work-more { margin-top: var(--s-2); }
}

/* ---------- Reviews ---------- */
.reviews-grid { display: grid; gap: var(--s-6); align-items: center; }
.score { display: grid; gap: var(--s-1); margin-bottom: var(--s-2); }
.score-num {
  font-family: var(--font-display);
  font-size: clamp(6rem, 4rem + 8vw, 10rem);
  line-height: .85;
  letter-spacing: -.03em;
  font-variant-numeric: tabular-nums;
}
.score-stars { display: flex; gap: 4px; color: var(--mh-magenta); }
.score-stars .icon { width: 22px; height: 22px; }
.score-label { color: var(--mh-muted); font-weight: 500; }

.review-cards {
  display: flex;
  gap: var(--s-2);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--gutter);
  padding: 8px var(--gutter) 24px;
  margin-inline: calc(var(--gutter) * -1);
  scrollbar-width: none;
}
.review-cards::-webkit-scrollbar { display: none; }
.review-card {
  flex: 0 0 min(84%, 340px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  padding: var(--s-4);
  border-radius: var(--radius-lg);
  background: var(--mh-white);
  box-shadow: var(--shadow-soft);
  transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.review-mark { width: 32px; height: auto; color: var(--mh-pink); }
.review-card blockquote { flex: 1; }
.review-card blockquote p {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.25;
}
.review-card.is-placeholder blockquote p { color: var(--mh-muted); font-style: italic; }
.review-meta { font-size: var(--fs-small); color: var(--mh-muted); }
.review-meta strong { color: var(--mh-ink); font-weight: 700; }

@media (min-width: 1024px) {
  .reviews-grid { grid-template-columns: 4fr 8fr; gap: var(--s-10); }
  .review-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: visible;
    margin-inline: 0;
    padding: 0;
    gap: var(--s-3);
  }
  .review-card:nth-child(2) { position: relative; top: -24px; }
}

/* ---------- Praktisch + FAQ ---------- */
.practical { padding-top: 0; }
.practical-grid { display: grid; gap: var(--s-10); }
.practical-info .h2 { margin-bottom: var(--s-5); }
.info-block + .info-block { margin-top: var(--s-5); }
.info-title {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mh-deep);
  margin-bottom: var(--s-2);
}
.info-title .icon { width: 18px; height: 18px; }
.info-block address { font-size: 1.125rem; line-height: 1.55; margin-bottom: 4px; }

.hours { width: 100%; max-width: 420px; font-variant-numeric: tabular-nums; }
.hours th, .hours td { padding: 10px 12px; text-align: left; font-weight: 400; }
.hours td { text-align: right; color: var(--mh-muted); }
.hours tr { border-bottom: 1px solid var(--mh-line); }
.hours tr.is-today { background: var(--mh-pink-soft); border-bottom-color: transparent; }
.hours tr.is-today th, .hours tr.is-today td { font-weight: 700; color: var(--mh-ink); }
.hours tr.is-today th { border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.hours tr.is-today td { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.hours tr.is-today th::after {
  content: "Vandaag";
  margin-left: 10px;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  background: var(--mh-white);
  color: var(--mh-deep);
  font-size: .6875rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  vertical-align: 2px;
}
.info-contact { display: flex; flex-wrap: wrap; gap: var(--s-2); }

.faq-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 1.6rem + 1.4vw, 2.75rem);
  line-height: 1.05;
  margin-bottom: var(--s-4);
}
.faq-list { display: grid; gap: 12px; }
.faq-item {
  border-radius: var(--radius-md);
  background: var(--mh-white);
  box-shadow: var(--shadow-soft);
  transition: box-shadow var(--dur) var(--ease-out);
}
.faq-item:hover { box-shadow: 0 6px 20px rgba(43, 16, 38, .1); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-2);
  min-height: 64px;
  padding: 16px 20px 16px 24px;
  font-weight: 600;
  font-size: 1.0625rem;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
  border-radius: var(--radius-md);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .icon {
  width: 32px; height: 32px; padding: 7px;
  border-radius: 50%;
  background: var(--mh-pink-soft);
  color: var(--mh-deep);
  transition: transform 300ms var(--ease-out), background-color var(--dur) var(--ease-out);
}
.faq-item summary:hover .icon { background: var(--mh-pink); }
.faq-item[open] summary .icon { transform: rotate(45deg); }
.faq-body { padding: 0 24px 24px; color: var(--mh-muted); max-width: 60ch; }

/* Zachte open/dicht-animatie waar ondersteund */
@supports (interpolate-size: allow-keywords) {
  :root { interpolate-size: allow-keywords; }
  .faq-item::details-content {
    height: 0;
    overflow: clip;
    transition: height 300ms var(--ease-out), content-visibility 300ms allow-discrete;
  }
  .faq-item[open]::details-content { height: auto; }
}

@media (min-width: 1024px) {
  .practical-grid { grid-template-columns: 5fr 6fr; gap: clamp(64px, 8vw, 128px); }
  .faq { padding-top: 40px; }
}

/* ---------- Slot-CTA ---------- */
.closing { padding-bottom: var(--section); }
.closing-panel {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(90% 120% at 100% 0%, rgba(247, 198, 219, .35) 0%, rgba(247, 198, 219, 0) 60%),
    var(--mh-magenta);
  color: var(--mh-white);
  padding: clamp(48px, 7vw, 112px) clamp(24px, 6vw, 96px);
  box-shadow: var(--shadow-lift);
}
.closing-splash {
  position: absolute;
  z-index: -1;
  width: clamp(320px, 50vw, 640px);
  height: auto;
  aspect-ratio: 1;
  right: -12%;
  top: 50%;
  translate: 0 -50%;
  opacity: .5;
  mix-blend-mode: multiply;
}
.closing-copy { max-width: 620px; }
.closing .h2 { color: var(--mh-white); margin-bottom: var(--s-3); }
.closing .h2 em { color: var(--mh-white); }
.closing-copy > p { font-size: 1.1875rem; font-weight: 500; max-width: 40ch; margin-bottom: var(--s-4); }
.closing-actions { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s-2) var(--s-4); }
.closing :focus-visible, .site-footer :focus-visible { outline-color: var(--mh-white); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--mh-ink);
  color: var(--mh-pink);
  padding-block: var(--s-10) var(--s-4);
  font-size: var(--fs-small);
}
.footer-grid { display: grid; gap: var(--s-5); }
.footer-logo { position: relative; display: grid; place-items: center; width: 132px; aspect-ratio: 1; margin-bottom: var(--s-2); }
.footer-logo svg { width: 100%; height: 100%; grid-area: 1 / 1; }
.footer-logo span {
  grid-area: 1 / 1;
  font-family: var(--font-mark);
  font-weight: 600;
  font-size: 1.1875rem;
  letter-spacing: .06em;
  line-height: 1.1;
  text-align: center;
  color: var(--mh-white);
}
.footer-brand p { color: var(--mh-blush); max-width: 26ch; }
.footer-title {
  font-family: var(--font-mark);
  font-weight: 600;
  font-size: .8125rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mh-pink);
  margin-bottom: var(--s-2);
}
.footer-col { color: var(--mh-blush); line-height: 1.7; }
.footer-col address { margin-bottom: var(--s-1); }
.footer-col a { display: inline-block; padding-block: 6px; }
.footer-hours div { display: flex; justify-content: space-between; gap: var(--s-2); max-width: 240px; }
.footer-hours dd { font-variant-numeric: tabular-nums; }
.footer-links { display: grid; gap: 2px; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--s-1) var(--s-3);
  margin-top: var(--s-8);
  padding-top: var(--s-3);
  border-top: 1px solid rgba(247, 198, 219, .16);
  color: rgba(255, 243, 246, .72);
  font-size: .875rem;
}
.footer-bottom a { color: var(--mh-blush); }
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--s-6); }
}

/* ---------- Sticky WhatsApp (mobiel) ---------- */
.fab {
  position: fixed;
  z-index: 40;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--mh-deep);
  color: var(--mh-white);
  box-shadow: var(--shadow-lift);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(.9);
  transition: opacity 300ms var(--ease-out), transform 300ms var(--ease-out), visibility 0s linear 300ms;
}
.fab svg { width: 28px; height: 28px; }
.fab.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity 300ms var(--ease-out), transform 300ms var(--ease-out), visibility 0s;
}
.fab:hover { transform: scale(1.04); }
.fab:focus-visible { outline-offset: 3px; }
@media (min-width: 1024px) { .fab { display: none; } }

/* ---------- Motion-helpers ---------- */
[data-parallax] { will-change: transform; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .hero-bloom { animation: none; }
  .js .hero-frame { animation: none; }
  [data-parallax] { will-change: auto; }
}

/* ---------- Kleine schermen ---------- */
@media (max-width: 599px) {
  .hero-media { width: min(100%, 420px); }
  .hero-frame { aspect-ratio: 5 / 6; }
}
