/* ===================================================
   Just Live for Moms — Brand Stylesheet
   Brand: Peach Coral + Cream White + Ink Dark
   Fonts: Caveat (display) + Nunito (body)
=================================================== */

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

/* === Design Tokens === */
:root {
  --peach:      #F09485;
  --peach-80:   #F2A99B;
  --peach-60:   #F6BFB4;
  --peach-20:   #FCE7E1;
  --cream:      #FDFAF1;
  --ink:        #1E2126;
  --ink-60:     #6B6E76;
  --ink-40:     #A8ABB0;
  --sage:       #A9CEA9;
  --sage-20:    #E9F2E9;
  --green:      #249C43;
  --white:      #FFFFFF;

  --font-display: 'Caveat', cursive;
  --font-body:    'Nunito', sans-serif;

  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --radius-pill: 999px;

  --shadow-card:  0 4px 24px rgba(30, 33, 38, 0.06);
  --shadow-hover: 0 8px 40px rgba(30, 33, 38, 0.12);

  --container: 1160px;
  --space-xl:  4rem;
  --space-2xl: 6rem;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* === Typography === */
h1 { font-family: var(--font-display); font-size: clamp(2.8rem, 5vw, 4.5rem); line-height: 1.1; font-weight: 700; }
h2 { font-family: var(--font-body); font-size: clamp(1.8rem, 3vw, 2.4rem); line-height: 1.2; font-weight: 800; }
h3 { font-size: 1.375rem; font-weight: 700; line-height: 1.3; }
h4 { font-size: 1.1rem; font-weight: 700; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* === Layout === */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: var(--space-2xl) 0; }
.section--white  { background-color: var(--white); }
.section--cream  { background-color: var(--cream); }
.section--peach  { background-color: var(--peach-20); }
.section--sage   { background-color: var(--sage-20); }
.section--dark   { background-color: var(--ink); }

.text-center { text-align: center; }
.text-center .section-intro { margin-inline: auto; }

/* === Section Headers === */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 0.75rem;
}
.section-heading { margin-bottom: 1rem; }
.section-intro {
  max-width: 580px;
  color: var(--ink-60);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 3rem;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}
.btn--primary  { background: var(--peach); color: var(--cream); }
.btn--primary:hover { background: var(--peach-80); transform: translateY(-1px); }
.btn--secondary { background: transparent; color: var(--ink); border-color: var(--ink); padding: 12px 26px; }
.btn--secondary:hover { background: var(--ink); color: var(--cream); }
.btn--white { background: var(--cream); color: var(--peach); }
.btn--white:hover { background: white; }
.btn--outline-white { background: transparent; color: var(--cream); border-color: rgba(253,250,241,0.4); padding: 12px 26px; }
.btn--outline-white:hover { background: rgba(253,250,241,0.1); }
.btn--lg { padding: 17px 36px; font-size: 1.0625rem; }
.btn--sm { padding: 9px 18px; font-size: 0.875rem; }
.btn--full { width: 100%; justify-content: center; }

/* === Badges === */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.badge--peach { background: var(--peach-20); color: var(--peach); }
.badge--sage  { background: var(--sage-20); color: var(--green); }
.badge--ink   { background: rgba(30,33,38,0.08); color: var(--ink-60); }

/* === Cards === */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 2rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }

/* === Check List === */
.check-list { display: flex; flex-direction: column; gap: 0.75rem; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--ink-60);
}
.check-list li::before { content: "✓"; color: var(--green); font-weight: 800; flex-shrink: 0; margin-top: 1px; }

/* ============================================================
   HEADER
============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid rgba(30,33,38,0.08);
  padding: 0.875rem 0;
  transition: box-shadow 0.2s ease;
}
.header.scrolled { box-shadow: 0 2px 20px rgba(30,33,38,0.08); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.logo__img {
  display: block;
  height: 48px;
  width: auto;
  max-width: 100%;
}
.logo__img--footer {
  height: 56px;
  background: var(--cream);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-md);
}
@media (max-width: 640px) {
  .logo__img { height: 40px; }
  .logo__img--footer { height: 48px; }
}

.nav { display: flex; align-items: center; gap: 0.125rem; }
.nav__link {
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--ink-60);
  transition: all 0.15s ease;
}
.nav__link:hover { color: var(--ink); background: var(--peach-20); }
.nav__link.active { color: var(--peach); }

.header__right { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.header__phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-60);
}
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: all 0.2s; }

/* Mobile Menu */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--cream);
  padding: 1.5rem;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2.5rem; }
.mobile-nav__close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--peach-20);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--ink);
}
.mobile-nav__links { display: flex; flex-direction: column; gap: 0.375rem; flex: 1; }
.mobile-nav__link {
  padding: 1rem 1.25rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  border-radius: var(--radius-md);
  transition: background 0.15s;
}
.mobile-nav__link:hover { background: var(--peach-20); }
.mobile-nav__cta { margin-top: 2.5rem; }

/* ============================================================
   HERO
============================================================ */
.hero {
  padding: var(--space-2xl) 0;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--sage-20);
  color: var(--green);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.hero__title { color: var(--ink); margin-bottom: 1.25rem; }
.hero__title .accent { color: var(--peach); }
.hero__sub {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--ink-60);
  margin-bottom: 2rem;
  max-width: 460px;
}
.hero__actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero__proof {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(30,33,38,0.08);
}
.hero__proof-avatars { display: flex; }
.hero__proof-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--cream);
  background: var(--peach-60);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-left: -10px;
}
.hero__proof-avatar:first-child { margin-left: 0; }
.hero__proof-text { font-size: 0.875rem; color: var(--ink-60); font-weight: 600; }
.hero__proof-text strong { color: var(--ink); }

.hero__visual { position: relative; }
.hero__image-wrap {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(145deg, var(--peach-20) 0%, var(--sage-20) 60%, var(--peach-60) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
}
.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
}
.hero__float-card {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  background: white;
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-hover);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 230px;
}
.hero__float-icon {
  width: 44px;
  height: 44px;
  background: var(--peach-20);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.hero__float-label { font-size: 0.8125rem; font-weight: 700; line-height: 1.3; }
.hero__float-sub { font-size: 0.75rem; color: var(--ink-60); }

/* ============================================================
   TRUST STRIP
============================================================ */
.trust-strip {
  background: var(--white);
  padding: 1.25rem 0;
  border-top: 1px solid rgba(30,33,38,0.06);
  border-bottom: 1px solid rgba(30,33,38,0.06);
}
.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-60);
  white-space: nowrap;
}
.trust-item .t-icon { font-size: 1rem; }

/* ============================================================
   VOOR WIE
============================================================ */
.voor-wie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.voor-wie-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: all 0.2s ease;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
}
.voor-wie-card:hover { border-color: var(--peach); transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.voor-wie-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--peach-20);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}
.voor-wie-card h3 { margin-bottom: 0.5rem; font-size: 1.2rem; }
.voor-wie-card p { font-size: 0.9375rem; color: var(--ink-60); flex: 1; margin-bottom: 1.25rem; }
.voor-wie-card .arrow-link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--peach);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* ============================================================
   DIENSTEN
============================================================ */
.diensten-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.dienst-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}
.dienst-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.dienst-card--featured { background: linear-gradient(140deg, var(--peach-20) 0%, white 55%); }
.dienst-card__top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1rem; }
.dienst-icon {
  font-size: 2rem;
  width: 56px;
  height: 56px;
  background: var(--peach-20);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.dienst-card h3 { font-size: 1.3rem; margin-bottom: 0.625rem; }
.dienst-card p { font-size: 0.9375rem; color: var(--ink-60); flex: 1; margin-bottom: 1.5rem; }
.dienst-card__meta { display: flex; gap: 1rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
.dienst-meta-item { font-size: 0.8125rem; color: var(--ink-60); display: flex; align-items: center; gap: 0.3rem; }
.dienst-price { font-size: 1.5rem; font-weight: 800; margin-bottom: 1.25rem; }
.dienst-price span { font-size: 0.875rem; font-weight: 500; color: var(--ink-60); }

/* ============================================================
   OVER PAULINE
============================================================ */
.pauline-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.pauline-image {
  position: relative;
}
.pauline-img-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(155deg, var(--sage-20) 0%, var(--peach-20) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
}
.pauline-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.pauline-badge {
  position: absolute;
  bottom: 2rem;
  right: -1.5rem;
  background: white;
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-hover);
  text-align: center;
}
.pauline-badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--peach);
  line-height: 1;
}
.pauline-badge-label { font-size: 0.75rem; font-weight: 600; color: var(--ink-60); }

.pauline-quote {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--peach);
  line-height: 1.4;
  padding-left: 1.25rem;
  border-left: 3px solid var(--peach);
  margin-bottom: 1.5rem;
}
.pauline-certs { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.75rem; }

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.testimonial-stars { color: #F5A623; font-size: 0.9rem; letter-spacing: 3px; margin-bottom: 1rem; }
.testimonial-quote { font-style: italic; color: var(--ink); line-height: 1.7; flex: 1; margin-bottom: 1.5rem; font-size: 0.9375rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--peach-60);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.9375rem; }
.testimonial-label { font-size: 0.8125rem; color: var(--ink-60); }

/* ============================================================
   GOOGLE REVIEWS
============================================================ */
.google-reviews__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  text-align: center;
}
.google-reviews__brand {
  height: 56px;
  width: auto;
  margin-bottom: 0.5rem;
}
.google-reviews__intro {
  color: var(--ink-60);
  font-size: 1rem;
  margin-top: -0.25rem;
}
.google-rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: white;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-pill);
  padding: 0.65rem 1.4rem;
  box-shadow: var(--shadow-card);
  font-weight: 600;
}
.google-rating-pill__logo {
  font-family: 'Nunito', sans-serif;
  font-size: 1.15rem;
  letter-spacing: -0.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
}
.g-letter { font-weight: 700; font-size: 1.35rem; line-height: 1; }
.g-letter--b { color: #4285F4; }
.g-letter--r { color: #EA4335; }
.g-letter--y { color: #FBBC05; }
.g-letter--b2 { color: #4285F4; }
.g-letter--g { color: #34A853; }
.g-letter--r2 { color: #EA4335; }
.google-rating-pill__score {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ink);
}
.google-rating-pill__stars {
  color: #F5A623;
  letter-spacing: 1px;
  font-size: 1rem;
}
.google-rating-pill__count {
  color: var(--ink-60);
  font-size: 0.95rem;
  font-weight: 500;
}
.google-reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.g-review {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}
.g-review__top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.g-review__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--ink);
  flex-shrink: 0;
  letter-spacing: 0.5px;
}
.g-review__avatar--peach { background: var(--peach-60); }
.g-review__avatar--sage  { background: var(--sage); }
.g-review__avatar--cream { background: #F3E3CF; }
.g-review__avatar--mint  { background: #CFE9D8; }
.g-review__author {
  flex: 1;
  min-width: 0;
}
.g-review__name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.2;
}
.g-review__time {
  font-size: 0.8125rem;
  color: var(--ink-60);
  margin-top: 0.15rem;
}
.g-review__g {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  font-family: 'Nunito', sans-serif;
}
.g-review__g svg { width: 22px; height: 22px; display: block; }
.g-review__stars {
  color: #F5A623;
  letter-spacing: 2px;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}
.g-review__text {
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.6;
  flex: 1;
}
.google-reviews__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: white;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-md);
  padding: 1rem 1.75rem;
  box-shadow: var(--shadow-card);
  font-weight: 600;
  color: var(--ink);
  transition: box-shadow 0.2s, transform 0.2s;
  margin-top: 2.5rem;
}
.google-reviews__cta:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}
@media (max-width: 980px) {
  .google-reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .google-reviews-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   BLOG
============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.blog-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.blog-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: linear-gradient(135deg, var(--sage-20), var(--peach-20));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-cat { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--peach); margin-bottom: 0.5rem; }
.blog-title { font-size: 1.0625rem; font-weight: 700; line-height: 1.4; color: var(--ink); margin-bottom: 0.75rem; }
.blog-excerpt { font-size: 0.875rem; color: var(--ink-60); line-height: 1.6; flex: 1; margin-bottom: 1rem; }
.blog-meta { font-size: 0.8125rem; color: var(--ink-40); }

/* ============================================================
   PROCESS STEPS
============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 2px;
  background: linear-gradient(to right, var(--peach-60), var(--sage));
  z-index: 0;
}
.step { text-align: center; padding: 1rem; position: relative; z-index: 1; }
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--peach);
  color: var(--cream);
  font-weight: 800;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 2px var(--peach);
}
.step h4 { font-size: 0.9375rem; margin-bottom: 0.375rem; }
.step p { font-size: 0.8125rem; color: var(--ink-60); margin: 0; }

/* ============================================================
   FAQ
============================================================ */
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(30,33,38,0.1); }
.faq-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 0;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  text-align: left;
  gap: 1rem;
}
.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--peach-20);
  color: var(--peach);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  flex-shrink: 0;
  transition: all 0.2s;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--peach); color: white; }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-body-inner { padding-bottom: 1.25rem; font-size: 0.9375rem; color: var(--ink-60); line-height: 1.7; }
.faq-item.open .faq-body { max-height: 500px; }

/* ============================================================
   PRICING
============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.pricing-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
  position: relative;
}
.pricing-card--pop { border-color: var(--peach); }
.pricing-popular {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--peach);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.pricing-name { font-size: 1.125rem; font-weight: 800; margin-bottom: 0.375rem; }
.pricing-desc { font-size: 0.875rem; color: var(--ink-60); margin-bottom: 1.5rem; }
.pricing-amount { font-size: 2.25rem; font-weight: 800; line-height: 1; margin-bottom: 0.25rem; }
.pricing-note { font-size: 0.8125rem; color: var(--ink-60); margin-bottom: 1.75rem; }
.pricing-features { flex: 1; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.pf { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.9rem; }
.pf::before { content: "✓"; color: var(--green); font-weight: 800; flex-shrink: 0; }

/* ============================================================
   CTA BANNER
============================================================ */
.cta-banner { background: var(--ink); padding: var(--space-xl) 0; }
.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.cta-banner h2 { color: var(--cream); margin-bottom: 0.5rem; }
.cta-banner p { color: rgba(253,250,241,0.65); margin: 0; }
.cta-banner__btns { display: flex; gap: 1rem; flex-shrink: 0; flex-wrap: wrap; }

/* ============================================================
   PARTNERS
============================================================ */
.partners-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.partner-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--ink-40);
  transition: color 0.2s;
}
.partner-item:hover { color: var(--ink-60); }

/* ============================================================
   FOOTER
============================================================ */
.footer { background: var(--ink); padding: var(--space-xl) 0 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo__text { color: var(--cream); }
.footer-brand p { font-size: 0.9rem; color: rgba(253,250,241,0.55); line-height: 1.7; margin: 1rem 0 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(253,250,241,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 0.9rem;
  transition: background 0.2s;
}
.footer-social a:hover { background: var(--peach); }
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(253,250,241,0.35);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col ul a { font-size: 0.9rem; color: rgba(253,250,241,0.65); transition: color 0.15s; }
.footer-col ul a:hover { color: var(--cream); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(253,250,241,0.1);
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8125rem; color: rgba(253,250,241,0.35); margin: 0; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.8125rem; color: rgba(253,250,241,0.35); transition: color 0.15s; }
.footer-legal a:hover { color: rgba(253,250,241,0.65); }

/* ============================================================
   WHATSAPP FLOAT — hyperrealistisch zwevende knop
============================================================ */
@keyframes wa-pulse-ring {
  0%   { transform: scale(0.85); opacity: 0.7; }
  70%  { transform: scale(1.6);  opacity: 0; }
  100% { transform: scale(1.6);  opacity: 0; }
}
@keyframes wa-float-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 60;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0) 38%),
    radial-gradient(circle at 70% 80%, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0) 55%),
    linear-gradient(145deg, #4ee07d 0%, #25D366 45%, #128C7E 100%);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.55) inset,
    0 -8px 18px rgba(0,0,0,0.18) inset,
    0 14px 28px rgba(18,140,126,0.45),
    0 6px 12px rgba(37,211,102,0.35),
    0 2px 4px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s, filter 0.25s;
  animation: wa-float-bob 3.4s ease-in-out infinite;
  isolation: isolate;
}
.wa-float::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(37,211,102,0.55);
  z-index: -1;
  animation: wa-pulse-ring 2.2s ease-out infinite;
  pointer-events: none;
}
.wa-float:hover {
  transform: scale(1.1) translateY(-2px);
  filter: brightness(1.06) saturate(1.05);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 -8px 18px rgba(0,0,0,0.2) inset,
    0 20px 38px rgba(18,140,126,0.55),
    0 10px 18px rgba(37,211,102,0.45),
    0 3px 6px rgba(0,0,0,0.2);
}
.wa-float:active { transform: scale(1.02) translateY(0); }
@media (max-width: 540px) {
  .wa-float { width: 58px; height: 58px; bottom: 1.25rem; right: 1.25rem; }
}

/* ============================================================
   PAGE HERO (inner pages)
============================================================ */
.page-hero {
  padding: 4rem 0 3rem;
  background: linear-gradient(135deg, var(--peach-20) 0%, var(--cream) 60%);
}
.page-hero .badge { margin-bottom: 1rem; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 1rem; }
.page-hero p { font-size: 1.0625rem; color: var(--ink-60); max-width: 560px; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--ink-60);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--ink-60); transition: color 0.15s; }
.breadcrumb a:hover { color: var(--peach); }
.breadcrumb span { color: var(--ink-40); }

/* ============================================================
   FORM
============================================================ */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-weight: 600; font-size: 0.9375rem; margin-bottom: 0.5rem; }
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--ink-40);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: white;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--peach);
  box-shadow: 0 0 0 4px rgba(240,148,133,0.2);
}
.form-textarea { resize: vertical; min-height: 120px; }

/* ============================================================
   ABOUT PAGE
============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: start; }
.about-img-stack { position: relative; }
.about-img-main {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, var(--sage-20), var(--peach-20));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  overflow: hidden;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-float {
  position: absolute;
  top: 2rem;
  right: -2rem;
  background: white;
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-hover);
}
.about-img-float-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--peach);
  line-height: 1;
}
.about-img-float-label { font-size: 0.75rem; font-weight: 600; color: var(--ink-60); }

/* ============================================================
   SERVICE DETAIL PAGE
============================================================ */
.service-detail-grid { display: grid; grid-template-columns: 1fr 380px; gap: 3rem; align-items: start; }
.service-sidebar {
  position: sticky;
  top: 6rem;
}
.sidebar-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  margin-bottom: 1.5rem;
}
.sidebar-price { font-size: 2.25rem; font-weight: 800; color: var(--ink); line-height: 1; margin-bottom: 0.25rem; }
.sidebar-price-note { font-size: 0.875rem; color: var(--ink-60); margin-bottom: 1.5rem; }

/* ============================================================
   CONTACT PAGE
============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.contact-info-icon {
  width: 46px;
  height: 46px;
  background: var(--peach-20);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.contact-info-label { font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-60); margin-bottom: 0.25rem; }
.contact-info-value { font-weight: 600; }

/* Map placeholder */
.map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--sage-20);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--sage);
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ============================================================
   TARIEVEN PAGE
============================================================ */
.tarief-section-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--peach-20);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Tarieven 2-koloms layout met sticky categorie-submenu */
.tarieven-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  align-items: flex-start;
}
.tarieven-content { min-width: 0; }
.tarieven-submenu {
  position: sticky;
  top: 90px;
  align-self: flex-start;
}
.tarieven-submenu__inner {
  background: white;
  border: 1.5px solid rgba(30,33,38,0.08);
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.25rem;
  box-shadow: var(--shadow-card);
}
.tarieven-submenu__title {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-60);
  margin: 0 0 1rem 0.25rem;
}
.tarieven-submenu__nav {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.tarieven-submenu__group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.tarieven-submenu__group-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--peach);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0 0.5rem 0.375rem;
  border-bottom: 1px solid var(--peach-20);
  margin-bottom: 0.25rem;
}
.tarieven-submenu__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.625rem;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, transform 0.15s;
}
.tarieven-submenu__link:hover {
  background: var(--peach-20);
  color: var(--peach);
  transform: translateX(2px);
}
.tarieven-submenu__price {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--ink-60);
  white-space: nowrap;
}
.tarieven-submenu__link:hover .tarieven-submenu__price { color: var(--peach); }

@media (max-width: 1024px) {
  .tarieven-layout { grid-template-columns: 1fr; gap: 2rem; }
  .tarieven-submenu { position: static; order: -1; }
  .tarieven-submenu__inner { padding: 1.25rem; }
  .tarieven-submenu__nav { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
}
@media (max-width: 540px) {
  .tarieven-submenu__nav { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-float { right: 0; }
}
@media (max-width: 768px) {
  :root { --space-xl: 3rem; --space-2xl: 4rem; }
  .nav, .header__phone { display: none; }
  .hamburger { display: flex; }
  .hero__inner, .pauline-inner, .contact-grid { grid-template-columns: 1fr; }
  .hero__visual { order: -1; }
  .hero__float-card { left: 1rem; }
  .pauline-badge { right: 0; }
  .voor-wie-grid, .testimonials-grid, .blog-grid { grid-template-columns: 1fr; }
  .diensten-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .cta-banner__btns { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
  .trust-strip__inner { gap: 1.5rem; }
}
@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .btn--lg { text-align: center; justify-content: center; }
  .steps-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   HERO VISUAL — Polished image placeholder
============================================================ */
.hero-art {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, var(--peach-20) 0%, var(--sage-20) 50%, var(--peach-60) 100%);
  position: relative;
  overflow: hidden;
}
.hero-art::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(240,148,133,0.25) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(169,206,169,0.3) 0%, transparent 50%);
}
.hero-art__figure {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  gap: 0.5rem;
}
.hero-art__dots {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 8px);
  gap: 6px;
}
.hero-art__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(240,148,133,0.4);
}
.hero-art__dot:nth-child(2n) { background: rgba(169,206,169,0.5); }
.hero-art__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(253,250,241,0.3), transparent);
}
.hero-art__tag {
  position: absolute;
  top: 2rem;
  left: 1.5rem;
  background: white;
  border-radius: var(--radius-md);
  padding: 0.625rem 1rem;
  box-shadow: var(--shadow-card);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

/* ============================================================
   STAR RATING STRIP
============================================================ */
.rating-strip {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.rating-stars {
  color: #F5A623;
  font-size: 1rem;
  letter-spacing: 1px;
  line-height: 1;
}
.rating-score {
  font-weight: 800;
  font-size: 1rem;
}
.rating-label {
  font-size: 0.8125rem;
  color: var(--ink-60);
}
.rating-divider {
  width: 1px;
  height: 1.25rem;
  background: rgba(30,33,38,0.15);
}

/* ============================================================
   NEWSLETTER SIGNUP
============================================================ */
.newsletter-section {
  background: linear-gradient(135deg, var(--ink) 0%, #2d3340 100%);
  padding: 3rem 0;
}
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.newsletter-text h3 { color: var(--cream); margin-bottom: 0.375rem; font-size: 1.25rem; }
.newsletter-text p { color: rgba(253,250,241,0.6); margin: 0; font-size: 0.9375rem; }
.newsletter-form {
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.newsletter-input {
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(253,250,241,0.2);
  background: rgba(253,250,241,0.08);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  outline: none;
  min-width: 240px;
  transition: border-color 0.15s;
}
.newsletter-input::placeholder { color: rgba(253,250,241,0.4); }
.newsletter-input:focus { border-color: var(--peach); }

/* ============================================================
   LEADMAGNET STRIP
============================================================ */
.leadmagnet {
  background: var(--peach-20);
  border: 2px dashed var(--peach-60);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.leadmagnet__icon {
  width: 72px;
  height: 72px;
  background: white;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: var(--shadow-card);
  flex-shrink: 0;
}
.leadmagnet__text { flex: 1; }
.leadmagnet__text h3 { margin-bottom: 0.375rem; font-size: 1.1rem; }
.leadmagnet__text p { color: var(--ink-60); font-size: 0.9rem; margin: 0; }
.leadmagnet__form {
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
}
.leadmagnet__input {
  padding: 11px 16px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--peach-60);
  background: white;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  min-width: 200px;
  transition: border-color 0.15s;
}
.leadmagnet__input:focus { border-color: var(--peach); }

/* ============================================================
   VERGOEDINIG CALLOUT
============================================================ */
.vergoeding-banner {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--sage-20);
  border: 1.5px solid var(--sage);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
}
.vergoeding-banner__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.vergoeding-banner strong { color: var(--ink); }
.vergoeding-banner p { color: var(--ink-60); margin: 0; }

/* ============================================================
   ILLUSTRATION PLACEHOLDERS (polished)
============================================================ */
.img-art {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}
.img-art--peach { background: linear-gradient(145deg, var(--peach-20) 0%, var(--peach-60) 60%, var(--peach-80) 100%); }
.img-art--sage  { background: linear-gradient(145deg, var(--sage-20) 0%, var(--sage) 100%); }
.img-art--mixed { background: linear-gradient(145deg, var(--peach-20) 0%, var(--sage-20) 50%, white 100%); }
.img-art__emoji {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  filter: drop-shadow(0 4px 12px rgba(30,33,38,0.1));
}
.img-art__deco {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

/* ============================================================
   SOCIAL PROOF BAR  (hero area)
============================================================ */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(30,33,38,0.08);
  flex-wrap: wrap;
}
.proof-avatars {
  display: flex;
}
.proof-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--cream);
  background: var(--peach-60);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  margin-left: -9px;
  font-style: normal;
}
.proof-avatar:first-child { margin-left: 0; }
.proof-text { font-size: 0.875rem; color: var(--ink-60); font-weight: 500; }
.proof-text strong { color: var(--ink); }

/* ============================================================
   HIGHLIGHT BOX
============================================================ */
.highlight-box {
  background: var(--peach-20);
  border-left: 4px solid var(--peach);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.25rem 1.5rem;
}
.highlight-box p { color: var(--ink); font-weight: 500; margin: 0; }

/* ============================================================
   COOKIE BANNER
============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 560px;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 8px 32px rgba(30,33,38,0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation: slideUp 0.3s ease;
}
.cookie-banner.hidden { display: none; }
.cookie-banner p { font-size: 0.875rem; color: rgba(253,250,241,0.75); margin: 0; flex: 1; min-width: 200px; }
.cookie-banner p a { color: var(--peach); }
.cookie-banner-btns { display: flex; gap: 0.5rem; flex-shrink: 0; }
@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* ============================================================
   MOBILE NEWSLETTER
============================================================ */
@media (max-width: 768px) {
  .newsletter-inner { flex-direction: column; text-align: center; }
  .newsletter-form { justify-content: center; }
  .newsletter-input { min-width: unset; width: 100%; }
  .leadmagnet { flex-direction: column; text-align: center; }
  .leadmagnet__form { justify-content: center; width: 100%; }
  .leadmagnet__input { width: 100%; min-width: unset; }
}

/* ============================================================
   IMAGE PLACEHOLDER — shows filename & upload instructions
============================================================ */
.img-slot {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  background: var(--peach-20);
  border: 2px dashed var(--peach-60);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2.5rem 2rem;
  text-align: center;
  min-height: 200px;
}
.img-slot svg { color: var(--peach-60); flex-shrink: 0; }
.img-slot__name {
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ink);
  background: white;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--peach-60);
}
.img-slot__info {
  font-size: 0.8125rem;
  color: var(--ink-60);
  line-height: 1.5;
}
.img-slot__info strong { color: var(--ink); }

/* Aspect ratio variants */
.img-slot--4-5  { aspect-ratio: 4/5; }
.img-slot--3-4  { aspect-ratio: 3/4; }
.img-slot--16-9 { aspect-ratio: 16/9; }
.img-slot--4-3  { aspect-ratio: 4/3; }
.img-slot--1-1  { aspect-ratio: 1/1; }

/* Avatar placeholder */
.avatar-slot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--peach-20);
  border: 1.5px dashed var(--peach-60);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--peach);
  text-align: center;
  line-height: 1.2;
  flex-shrink: 0;
}

/* ============================================================
   SVG ICON SYSTEM (replaces emoji's, brand-conform)
============================================================ */

/* --- helper voor SVG mask-icons --- */
.voor-wie-icon,
.dienst-icon,
.hero__float-icon,
.leadmagnet__icon,
.vergoeding-banner__icon,
.testimonial-avatar,
.proof-avatar {
  position: relative;
}

/* Voor-wie cards: 3 verschillende line-icons */
.voor-wie-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 56%;
  height: 56%;
  background-color: var(--peach);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.voor-wie-card:nth-child(1) .voor-wie-icon::after {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='5' r='2.2'/><path d='M12 8c-2.5 0-4 1.5-4 4v2c0 1 .5 1.5 1 2v6h6v-6c.5-.5 1-1 1-2v-2c0-2-1.2-3.4-3-3.8'/><circle cx='13' cy='13' r='2.3' fill='currentColor' fill-opacity='0.15'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='5' r='2.2'/><path d='M12 8c-2.5 0-4 1.5-4 4v2c0 1 .5 1.5 1 2v6h6v-6c.5-.5 1-1 1-2v-2c0-2-1.2-3.4-3-3.8'/><circle cx='13' cy='13' r='2.3' fill='currentColor' fill-opacity='0.15'/></svg>");
}
.voor-wie-card:nth-child(2) .voor-wie-icon::after {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='8' r='4'/><path d='M9.5 10c.3.6 1 1 2.5 1s2.2-.4 2.5-1'/><path d='M10 8.5h.01M14 8.5h.01'/><path d='M6 21c0-3.3 2.7-6 6-6s6 2.7 6 6'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='8' r='4'/><path d='M9.5 10c.3.6 1 1 2.5 1s2.2-.4 2.5-1'/><path d='M10 8.5h.01M14 8.5h.01'/><path d='M6 21c0-3.3 2.7-6 6-6s6 2.7 6 6'/></svg>");
}
.voor-wie-card:nth-child(3) .voor-wie-icon::after {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'><path d='M14.4 14.4 9.6 9.6'/><path d='M18.7 9.7a4 4 0 0 0-5.7-5.7l-.3.3a4 4 0 0 0 0 5.7l-.3.3'/><path d='M11.3 14.3a4 4 0 0 0-5.7 0l-.3.3a4 4 0 0 0 5.7 5.7l.3-.3a4 4 0 0 0 0-5.7'/><path d='m21.7 21.7-1.4-1.4M3.7 3.7l-1.4-1.4M2.3 21.7l1.4-1.4M20.3 3.7l1.4-1.4'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'><path d='M14.4 14.4 9.6 9.6'/><path d='M18.7 9.7a4 4 0 0 0-5.7-5.7l-.3.3a4 4 0 0 0 0 5.7l-.3.3'/><path d='M11.3 14.3a4 4 0 0 0-5.7 0l-.3.3a4 4 0 0 0 5.7 5.7l.3-.3a4 4 0 0 0 0-5.7'/><path d='m21.7 21.7-1.4-1.4M3.7 3.7l-1.4-1.4M2.3 21.7l1.4-1.4M20.3 3.7l1.4-1.4'/></svg>");
}

/* Dienst cards: 4 verschillende icons */
.dienst-icon { font-size: 0; }
.dienst-icon::after {
  content: "";
  display: block;
  width: 56%;
  height: 56%;
  margin: 22% auto;
  background-color: var(--peach);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.dienst-card:nth-of-type(1) .dienst-icon::after {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'><path d='M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78L12 21.23l8.84-8.84a5.5 5.5 0 0 0 0-7.78z'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'><path d='M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78L12 21.23l8.84-8.84a5.5 5.5 0 0 0 0-7.78z'/></svg>");
}
.dienst-card:nth-of-type(2) .dienst-icon::after {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'><circle cx='9' cy='7' r='3'/><circle cx='17' cy='8' r='2.5'/><path d='M3 20c0-3.3 2.7-6 6-6s6 2.7 6 6'/><path d='M15 20c0-2.5 1.6-4.5 4-5'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'><circle cx='9' cy='7' r='3'/><circle cx='17' cy='8' r='2.5'/><path d='M3 20c0-3.3 2.7-6 6-6s6 2.7 6 6'/><path d='M15 20c0-2.5 1.6-4.5 4-5'/></svg>");
}
.dienst-card:nth-of-type(3) .dienst-icon::after {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10'/><circle cx='12' cy='12' r='6'/><circle cx='12' cy='12' r='2'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10'/><circle cx='12' cy='12' r='6'/><circle cx='12' cy='12' r='2'/></svg>");
}
.dienst-card:nth-of-type(4) .dienst-icon::after {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'><path d='M11 20A7 7 0 0 1 9.8 6.1C15.5 5 17 4.48 19 2c1 2 2 4.18 2 8 0 5.5-4.78 10-10 10Z'/><path d='M2 21c0-3 1.85-5.36 5.08-6'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'><path d='M11 20A7 7 0 0 1 9.8 6.1C15.5 5 17 4.48 19 2c1 2 2 4.18 2 8 0 5.5-4.78 10-10 10Z'/><path d='M2 21c0-3 1.85-5.36 5.08-6'/></svg>");
}

/* Hero float icon — blad */
.hero__float-icon { font-size: 0; }
.hero__float-icon::after {
  content: "";
  display: block;
  width: 60%;
  height: 60%;
  margin: 20% auto;
  background-color: var(--green);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M11 20A7 7 0 0 1 9.8 6.1C15.5 5 17 4.48 19 2c1 2 2 4.18 2 8 0 5.5-4.78 10-10 10Z'/><path d='M2 21c0-3 1.85-5.36 5.08-6'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M11 20A7 7 0 0 1 9.8 6.1C15.5 5 17 4.48 19 2c1 2 2 4.18 2 8 0 5.5-4.78 10-10 10Z'/><path d='M2 21c0-3 1.85-5.36 5.08-6'/></svg>") center/contain no-repeat;
}

/* Leadmagnet icon — document */
.leadmagnet__icon { font-size: 0; }
.leadmagnet__icon::after {
  content: "";
  display: block;
  width: 52%;
  height: 52%;
  margin: 24% auto;
  background-color: var(--peach);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/><polyline points='14 2 14 8 20 8'/><line x1='9' y1='13' x2='15' y2='13'/><line x1='9' y1='17' x2='13' y2='17'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/><polyline points='14 2 14 8 20 8'/><line x1='9' y1='13' x2='15' y2='13'/><line x1='9' y1='17' x2='13' y2='17'/></svg>") center/contain no-repeat;
}

/* Vergoedinings-icon — shield */
.vergoeding-banner__icon { font-size: 0; width: 36px; height: 36px; }
.vergoeding-banner__icon::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--green);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'><path d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/><path d='m9 12 2 2 4-4'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'><path d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/><path d='m9 12 2 2 4-4'/></svg>") center/contain no-repeat;
}

/* Trust strip — kleine peach check ipv emoji */
.trust-item .t-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: var(--peach);
  color: var(--cream);
  border-radius: 50%;
  font-size: 0.7rem;
}

/* Pauline placeholder — gradient + naam ipv emoji */
.pauline-img-wrap {
  font-size: 0;
  color: var(--peach);
}
.pauline-img-wrap:empty::after {
  content: "Pauline";
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--ink);
  opacity: 0.25;
  letter-spacing: -1px;
}

/* Testimonial avatars — gestileerde initialen */
.testimonial-avatar { font-size: 0; color: var(--ink); font-weight: 800; }
.testimonial-avatar::after {
  font-size: 0.95rem;
  font-family: var(--font-body);
}
.testimonial:nth-of-type(1) .testimonial-avatar { background: var(--peach-60); }
.testimonial:nth-of-type(1) .testimonial-avatar::after { content: "L"; }
.testimonial:nth-of-type(2) .testimonial-avatar { background: var(--sage); }
.testimonial:nth-of-type(2) .testimonial-avatar::after { content: "S"; }
.testimonial:nth-of-type(3) .testimonial-avatar { background: var(--peach-20); }
.testimonial:nth-of-type(3) .testimonial-avatar::after { content: "M"; }

/* Proof avatars — kleurrijke gradient cirkels (ipv emoji) */
.proof-avatar {
  font-size: 0;
  background: var(--peach-60);
}
.proof-avatar:nth-child(2) { background: var(--sage); }
.proof-avatar:nth-child(3) { background: var(--peach); }
.proof-avatar:nth-child(4) { background: var(--peach-20); border-color: var(--peach-60); }

/* Blog thumbs — gradient placeholders, geen emoji */
.blog-thumb { font-size: 0; position: relative; }
.blog-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 30%, rgba(240,148,133,0.35) 0%, transparent 45%),
    radial-gradient(circle at 70% 70%, rgba(169,206,169,0.4) 0%, transparent 45%);
}
.blog-card:nth-of-type(2) .blog-thumb { background: linear-gradient(135deg, var(--peach-20), var(--peach-60)); }
.blog-card:nth-of-type(3) .blog-thumb { background: linear-gradient(135deg, var(--sage-20), var(--sage)); }

/* Hero-art figure — abstract design ipv emoji */
.hero-art__figure { font-size: 0; }
.hero-art__figure > span:first-child { display: none; }
.hero-art__figure > span:last-child { font-size: 1.25rem !important; display: block; }
.hero-art__figure::before {
  content: "";
  display: block;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, var(--cream) 0%, rgba(253,250,241,0.3) 60%, transparent 100%),
    linear-gradient(135deg, var(--peach) 0%, var(--peach-60) 100%);
  box-shadow: 0 10px 30px rgba(240,148,133,0.35);
  margin-bottom: 0.5rem;
}

/* Hero-art tag — kleine check */
.hero-art__tag::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background: var(--green);
  border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/65% no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/65% no-repeat;
  flex-shrink: 0;
}

/* Img-art kaders — verberg lege emoji wrappers */
.img-art__emoji { font-size: 0; }
.img-art__emoji:empty::after {
  content: "";
  display: block;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cream), rgba(253,250,241,0.4));
  box-shadow: 0 8px 24px rgba(30,33,38,0.08);
  margin: auto;
}
.img-art__deco { font-size: 0; }
.img-art__deco::after {
  content: "";
  display: block;
  width: 60%;
  height: 60%;
  margin: 20% auto;
  background-color: var(--peach);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='5'/><line x1='12' y1='1' x2='12' y2='3'/><line x1='12' y1='21' x2='12' y2='23'/><line x1='4.22' y1='4.22' x2='5.64' y2='5.64'/><line x1='18.36' y1='18.36' x2='19.78' y2='19.78'/><line x1='1' y1='12' x2='3' y2='12'/><line x1='21' y1='12' x2='23' y2='12'/><line x1='4.22' y1='19.78' x2='5.64' y2='18.36'/><line x1='18.36' y1='5.64' x2='19.78' y2='4.22'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='5'/><line x1='12' y1='1' x2='12' y2='3'/><line x1='12' y1='21' x2='12' y2='23'/><line x1='4.22' y1='4.22' x2='5.64' y2='5.64'/><line x1='18.36' y1='18.36' x2='19.78' y2='19.78'/><line x1='1' y1='12' x2='3' y2='12'/><line x1='21' y1='12' x2='23' y2='12'/><line x1='4.22' y1='19.78' x2='5.64' y2='18.36'/><line x1='18.36' y1='5.64' x2='19.78' y2='4.22'/></svg>") center/contain no-repeat;
}

/* Partner items — peach bolletje */
.partner-item::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--peach-60);
  flex-shrink: 0;
}

/* Footer social icons — SVG */
.footer-social a { font-size: 0; position: relative; }
.footer-social a::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 55%;
  height: 55%;
  background-color: var(--cream);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.footer-social a[aria-label="Instagram"]::after {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'><rect x='2' y='2' width='20' height='20' rx='5'/><path d='M16 11.4A4 4 0 1 1 12.6 8 4 4 0 0 1 16 11.4z'/><line x1='17.5' y1='6.5' x2='17.51' y2='6.5'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'><rect x='2' y='2' width='20' height='20' rx='5'/><path d='M16 11.4A4 4 0 1 1 12.6 8 4 4 0 0 1 16 11.4z'/><line x1='17.5' y1='6.5' x2='17.51' y2='6.5'/></svg>");
}
.footer-social a[aria-label="Facebook"]::after {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'><path d='M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'><path d='M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z'/></svg>");
}
.footer-social a[aria-label="WhatsApp"]::after {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'><path d='M17.5 14.4c-.3-.1-1.7-.8-2-.9-.3-.1-.5-.1-.7.2-.2.3-.8.9-1 1.1-.2.2-.4.2-.7.1-.3-.1-1.2-.4-2.3-1.4-.9-.8-1.4-1.7-1.6-2-.2-.3 0-.5.1-.6.1-.1.3-.4.4-.5.1-.2.2-.3.3-.5.1-.2 0-.4 0-.5 0-.1-.7-1.7-1-2.3-.3-.6-.5-.5-.7-.5h-.6c-.2 0-.5.1-.8.4-.3.3-1 1-1 2.5s1.1 2.9 1.2 3.1c.1.2 2.1 3.2 5 4.4 1.8.8 2.5.8 3.4.7.5-.1 1.7-.7 1.9-1.4.2-.7.2-1.2.2-1.4-.1-.2-.3-.2-.6-.4zM12 2C6.5 2 2 6.5 2 12c0 1.8.5 3.5 1.3 5L2 22l5.2-1.4c1.4.8 3 1.2 4.8 1.2 5.5 0 10-4.5 10-10S17.5 2 12 2z'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'><path d='M17.5 14.4c-.3-.1-1.7-.8-2-.9-.3-.1-.5-.1-.7.2-.2.3-.8.9-1 1.1-.2.2-.4.2-.7.1-.3-.1-1.2-.4-2.3-1.4-.9-.8-1.4-1.7-1.6-2-.2-.3 0-.5.1-.6.1-.1.3-.4.4-.5.1-.2.2-.3.3-.5.1-.2 0-.4 0-.5 0-.1-.7-1.7-1-2.3-.3-.6-.5-.5-.7-.5h-.6c-.2 0-.5.1-.8.4-.3.3-1 1-1 2.5s1.1 2.9 1.2 3.1c.1.2 2.1 3.2 5 4.4 1.8.8 2.5.8 3.4.7.5-.1 1.7-.7 1.9-1.4.2-.7.2-1.2.2-1.4-.1-.2-.3-.2-.6-.4zM12 2C6.5 2 2 6.5 2 12c0 1.8.5 3.5 1.3 5L2 22l5.2-1.4c1.4.8 3 1.2 4.8 1.2 5.5 0 10-4.5 10-10S17.5 2 12 2z'/></svg>");
}

/* WhatsApp float — SVG */
.wa-float::after {
  content: "";
  display: block;
  width: 58%;
  height: 58%;
  margin: 21% auto;
  background-color: white;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,0.25));
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'><path d='M17.5 14.4c-.3-.1-1.7-.8-2-.9-.3-.1-.5-.1-.7.2-.2.3-.8.9-1 1.1-.2.2-.4.2-.7.1-.3-.1-1.2-.4-2.3-1.4-.9-.8-1.4-1.7-1.6-2-.2-.3 0-.5.1-.6.1-.1.3-.4.4-.5.1-.2.2-.3.3-.5.1-.2 0-.4 0-.5 0-.1-.7-1.7-1-2.3-.3-.6-.5-.5-.7-.5h-.6c-.2 0-.5.1-.8.4-.3.3-1 1-1 2.5s1.1 2.9 1.2 3.1c.1.2 2.1 3.2 5 4.4 1.8.8 2.5.8 3.4.7.5-.1 1.7-.7 1.9-1.4.2-.7.2-1.2.2-1.4-.1-.2-.3-.2-.6-.4zM12 2C6.5 2 2 6.5 2 12c0 1.8.5 3.5 1.3 5L2 22l5.2-1.4c1.4.8 3 1.2 4.8 1.2 5.5 0 10-4.5 10-10S17.5 2 12 2z'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'><path d='M17.5 14.4c-.3-.1-1.7-.8-2-.9-.3-.1-.5-.1-.7.2-.2.3-.8.9-1 1.1-.2.2-.4.2-.7.1-.3-.1-1.2-.4-2.3-1.4-.9-.8-1.4-1.7-1.6-2-.2-.3 0-.5.1-.6.1-.1.3-.4.4-.5.1-.2.2-.3.3-.5.1-.2 0-.4 0-.5 0-.1-.7-1.7-1-2.3-.3-.6-.5-.5-.7-.5h-.6c-.2 0-.5.1-.8.4-.3.3-1 1-1 2.5s1.1 2.9 1.2 3.1c.1.2 2.1 3.2 5 4.4 1.8.8 2.5.8 3.4.7.5-.1 1.7-.7 1.9-1.4.2-.7.2-1.2.2-1.4-.1-.2-.3-.2-.6-.4zM12 2C6.5 2 2 6.5 2 12c0 1.8.5 3.5 1.3 5L2 22l5.2-1.4c1.4.8 3 1.2 4.8 1.2 5.5 0 10-4.5 10-10S17.5 2 12 2z'/></svg>") center/contain no-repeat;
}

/* Header phone link — schoon icoontje */
.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.header__phone::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: var(--peach);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/></svg>") center/contain no-repeat;
}

/* Footer-col contact items: kleine SVG icoontjes */
.footer-col ul li a[href^="tel:"],
.footer-col ul li a[href^="mailto:"],
.footer-col ul li a[href^="https://wa.me"],
.footer-col ul li a[href="contact.html"] {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-col ul li a[href^="tel:"]::before,
.footer-col ul li a[href^="mailto:"]::before,
.footer-col ul li a[href^="https://wa.me"]::before,
.footer-col ul li a[href="contact.html"]:not(.btn)::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-color: var(--peach);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  flex-shrink: 0;
}
.footer-col ul li a[href^="tel:"]::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/></svg>");
}
.footer-col ul li a[href^="mailto:"]::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/><polyline points='22,6 12,13 2,6'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/><polyline points='22,6 12,13 2,6'/></svg>");
}
.footer-col ul li a[href^="https://wa.me"]::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'><path d='M17.5 14.4c-.3-.1-1.7-.8-2-.9-.3-.1-.5-.1-.7.2-.2.3-.8.9-1 1.1-.2.2-.4.2-.7.1-.3-.1-1.2-.4-2.3-1.4-.9-.8-1.4-1.7-1.6-2-.2-.3 0-.5.1-.6.1-.1.3-.4.4-.5.1-.2.2-.3.3-.5.1-.2 0-.4 0-.5 0-.1-.7-1.7-1-2.3-.3-.6-.5-.5-.7-.5h-.6c-.2 0-.5.1-.8.4-.3.3-1 1-1 2.5s1.1 2.9 1.2 3.1c.1.2 2.1 3.2 5 4.4 1.8.8 2.5.8 3.4.7.5-.1 1.7-.7 1.9-1.4.2-.7.2-1.2.2-1.4-.1-.2-.3-.2-.6-.4zM12 2C6.5 2 2 6.5 2 12c0 1.8.5 3.5 1.3 5L2 22l5.2-1.4c1.4.8 3 1.2 4.8 1.2 5.5 0 10-4.5 10-10S17.5 2 12 2z'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'><path d='M17.5 14.4c-.3-.1-1.7-.8-2-.9-.3-.1-.5-.1-.7.2-.2.3-.8.9-1 1.1-.2.2-.4.2-.7.1-.3-.1-1.2-.4-2.3-1.4-.9-.8-1.4-1.7-1.6-2-.2-.3 0-.5.1-.6.1-.1.3-.4.4-.5.1-.2.2-.3.3-.5.1-.2 0-.4 0-.5 0-.1-.7-1.7-1-2.3-.3-.6-.5-.5-.7-.5h-.6c-.2 0-.5.1-.8.4-.3.3-1 1-1 2.5s1.1 2.9 1.2 3.1c.1.2 2.1 3.2 5 4.4 1.8.8 2.5.8 3.4.7.5-.1 1.7-.7 1.9-1.4.2-.7.2-1.2.2-1.4-.1-.2-.3-.2-.6-.4zM12 2C6.5 2 2 6.5 2 12c0 1.8.5 3.5 1.3 5L2 22l5.2-1.4c1.4.8 3 1.2 4.8 1.2 5.5 0 10-4.5 10-10S17.5 2 12 2z'/></svg>");
}
.footer-col ul li a[href="contact.html"]:not(.btn)::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/><circle cx='12' cy='10' r='3'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/><circle cx='12' cy='10' r='3'/></svg>");
}

/* Dienst-meta-item iconen (per positie) */
.dienst-meta-item::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  background-color: var(--peach);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='4'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='4'/></svg>") center/contain no-repeat;
  flex-shrink: 0;
}

/* Mobile-nav links — verberg eventuele lege voor-tekst spaties */
.mobile-nav__link { padding-left: 0; }

/* Mobile nav fix — verberg eventuele dubbele spaties */
.mobile-nav__link { white-space: nowrap; }

/* ============================================================
   FOTO INTEGRATIES — echte afbeeldingen uit /img-* mappen
============================================================ */

/* Hero foto-variant: schaalt naar de bestaande hero-art container */
.hero-art--photo {
  background: none;
}
.hero-art--photo::before { display: none; }
.hero-art--photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
}
.hero-art--photo .hero-art__tag {
  z-index: 2;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(6px);
}
.hero-art__caption {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  font-family: 'Caveat', cursive;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  text-shadow: 0 2px 8px rgba(30,33,38,0.5);
  text-align: center;
}

/* Img-art kaders met echte foto */
.img-art--photo {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.img-art--photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Pauline portretfoto */
.pauline-img-wrap:has(img)::after { content: none; }
.pauline-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Blog thumbs met foto */
.blog-thumb:has(img)::after { content: none; }
.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

/* Core Restore gallery (in pagina's gebruikt) */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.photo-gallery > a,
.photo-gallery > div {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.photo-gallery > a:hover,
.photo-gallery > div:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.photo-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-gallery--2 { grid-template-columns: repeat(2, 1fr); }
.photo-gallery--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 768px) {
  .photo-gallery,
  .photo-gallery--4 { grid-template-columns: repeat(2, 1fr); }
}

/* Photo-grid hero (full width image with text overlay) */
.photo-hero {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin-bottom: 2rem;
}
.photo-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .photo-hero { aspect-ratio: 4 / 3; }
}

/* ============================================================
   GOOGLE RATING BADGE — herbruikbare 4,9 ster trust block
============================================================ */
.google-rating-badge {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.625rem 0.875rem;
  background: #fff;
  border: 1px solid rgba(30,33,38,0.08);
  box-shadow: 0 2px 12px rgba(30,33,38,0.06);
  padding: 0.75rem 1.125rem;
  border-radius: 999px;
  font-size: 0.9375rem;
  line-height: 1.2;
}
.google-rating-badge .grb-google {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-weight: 700;
  color: var(--ink);
}
.google-rating-badge .grb-google svg { display: block; }
.google-rating-badge .grb-divider {
  width: 1px;
  height: 18px;
  background: rgba(30,33,38,0.12);
}
.google-rating-badge .grb-score {
  font-weight: 800;
  color: var(--ink);
  font-size: 1rem;
}
.google-rating-badge .grb-stars {
  color: #F5A623;
  letter-spacing: 1px;
  font-size: 0.95rem;
}
.google-rating-badge .grb-label {
  color: var(--ink-60);
  font-size: 0.875rem;
}
.google-rating-badge .grb-link {
  color: var(--peach);
  font-weight: 700;
  font-size: 0.875rem;
  white-space: nowrap;
}
.google-rating-badge .grb-link:hover { text-decoration: underline; }
.google-rating-badge--center { display: inline-flex; }
.google-rating-wrap { text-align: center; padding: 1rem 0 1.5rem; }
@media (max-width: 540px) {
  .google-rating-badge { padding: 0.625rem 0.875rem; font-size: 0.875rem; gap: 0.5rem; }
  .google-rating-badge .grb-label { font-size: 0.8125rem; }
}


/* ============================================================
   MOBIEL-PROOFING — inline grids laten stapelen op kleine schermen
   (inline styles overrulen externe CSS, dus !important is nodig)
============================================================ */

/* Inhoud + zijbalk-layouts: eerder stapelen (tablet/telefoon) */
@media (max-width: 900px) {
  [style*="grid-template-columns:1fr 340px"],
  [style*="grid-template-columns:1fr 3fr"],
  [style*="grid-template-columns:1fr auto"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
}

/* Twee/drie-koloms secties en prijskaarten: stapelen op telefoon */
@media (max-width: 768px) {
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:repeat(2,1fr)"],
  [style*="grid-template-columns:repeat(2, 1fr)"],
  [style*="grid-template-columns:repeat(3,1fr)"],
  [style*="grid-template-columns:repeat(3, 1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
}

/* Geen horizontale scroll. 'clip' i.p.v. 'hidden' zodat de sticky header blijft vastzitten. */
html, body { overflow-x: clip; max-width: 100%; }
@media (max-width: 768px) {
  body { overflow-wrap: break-word; }
  .container { padding-left: 1.25rem; padding-right: 1.25rem; }
  /* Grote inline secundaire ruimtes wat compacter op telefoon */
  main [style*="gap:4rem"] { gap: 2rem !important; }
}

/* ============================================================
   MOBIELE HEADER FIX — zichtbaar hamburger-menu + nette header
============================================================ */

/* De .header__phone-icoonregel verderop overschreef de mobiele hide; hier herstellen. */
@media (max-width: 768px) {
  .header__phone { display: none !important; }
}

/* De hamburger-knop in de HTML is leeg; teken het menu-icoon via CSS,
   zodat het op elke pagina zichtbaar en aanklikbaar is. */
.hamburger { align-items: center; justify-content: center; min-width: 44px; min-height: 40px; gap: 0; }
.hamburger::before {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  box-shadow: 0 -7px 0 var(--ink), 0 7px 0 var(--ink);
}

/* Op mobiel: de brede "Gratis kennismaking"-knop in de header verbergen, zodat het
   logo + hamburger netjes passen. De knop staat al prominent in het uitklapmenu. */
@media (max-width: 768px) {
  .header__right .btn { display: none; }
  .hamburger { display: flex; }
}
