:root {
  --green: #00653f;
  --green-deep: #004d30;
  --lime: #8cc63f;
  --lime-soft: #eef6e3;
  --ink: #16211b;
  --muted: #5b6b62;
  --white: #fff;
  --radius: 10px;
  --radius-sm: 10px;
  --max: 1160px;
  --gutter: clamp(16px, 4vw, 40px);
  --head: "Manrope", system-ui, sans-serif;
  --body: "Poppins", system-ui, sans-serif;
  --shadow-sm: 0 6px 18px -8px rgba(0, 50, 30, .3);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
svg.i { width: 1.15em; height: 1.15em; fill: currentColor; flex: none; }
h1, h2, h3, h4 { font-family: var(--head); font-weight: 500; line-height: 1.12; margin: 0 0 .6em; letter-spacing: -.02em; }
h1 { font-size: clamp(2.3rem, 5vw, 3.4rem); }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
h3 { font-size: 1.5rem; }
p { margin: 0 0 1em; }
::selection { background: var(--lime); color: var(--white); }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(64px, 9vw, 116px) 0; }
.bg-green { background: var(--green); color: var(--white); }
.bg-lime { background: var(--lime); }
.center { text-align: center; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  background: var(--lime);
  color: var(--white);
  font-family: var(--body);
  font-size: .9rem;
  font-weight: 500;
  text-decoration: none;
  padding: .85em 1.4em;
  border-radius: var(--radius-sm);
  border: 0;
  cursor: pointer;
  transition: filter .2s;
}
.btn:hover { filter: brightness(.94); }
.btn-white { background: var(--white); color: var(--green); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 6px 24px -12px rgba(0, 40, 20, .25); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo img { width: 190px; }
.nav { display: flex; gap: 2.2rem; align-items: center; }
.nav a { position: relative; text-decoration: none; font-size: .95rem; padding: 4px 0; }
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; border-radius: 2px;
  background: var(--lime); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav .nav-cta { background: var(--green); color: var(--white); padding: .55em 1.1em; border-radius: var(--radius-sm); font-size: .88rem; }
.nav .nav-cta::after { display: none; }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; position: relative; z-index: 2; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: .3s var(--ease); }

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: 76px 0 0 0; height: calc(100dvh - 76px);
    background: var(--green); color: var(--white);
    flex-direction: column; justify-content: center; gap: 1.6rem;
    opacity: 0; pointer-events: none; transition: opacity .3s var(--ease);
  }
  .nav a { font-family: var(--head); font-size: 1.9rem; opacity: 0; transform: translateY(12px); transition: .4s var(--ease); }
  .nav .nav-cta { font-family: var(--body); font-size: 1rem; background: var(--lime); margin-top: 1rem; padding: .8em 1.8em; }
  body.nav-open { overflow: hidden; }
  body.nav-open .nav { opacity: 1; pointer-events: auto; }
  body.nav-open .nav a { opacity: 1; transform: none; }
  body.nav-open .nav a:nth-child(2) { transition-delay: .05s; }
  body.nav-open .nav a:nth-child(3) { transition-delay: .1s; }
  body.nav-open .nav a:nth-child(4) { transition-delay: .15s; }
  body.nav-open .nav a:nth-child(5) { transition-delay: .2s; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}


/* Generic two-column split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
@media (max-width: 760px) { .split { grid-template-columns: 1fr; } }

/* Home hero */
.hero { overflow-x: clip; container-type: inline-size; }
.hero .split { grid-template-columns: 1fr 1.15fr; }
.hero-text { text-align: center; max-width: 460px; margin: 0 auto; }
.hero-text h1 { font-size: clamp(2rem, 3.4vw, 2.8rem); }
.hero-text p { opacity: .92; }
.hero-frame { position: relative; background: var(--white); padding: 28px; }
.hero-frame img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
@media (min-width: 761px) {
  .hero-text h1 { white-space: nowrap; }
  /* Let the white frame run to the right edge of the window, like the original */
  /* 100cqw is the section's width, so this ignores the scrollbar (unlike 100vw) */
  .hero-frame { margin-right: calc(-1 * (var(--gutter) + max(0px, (100cqw - var(--max)) / 2))); }
}
@media (max-width: 760px) {
  .hero .split { grid-template-columns: 1fr; }
  .hero-frame { padding: 12px; }
}

/* Circle images */
.circle { border-radius: 50%; aspect-ratio: 1; object-fit: cover; width: 100%; }
.circle-wrap { max-width: 380px; width: 100%; margin: 0 auto; }
@media (max-width: 760px) { .circle-wrap { max-width: 300px; } }

/* Product logos strip */
.logos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: center; }
.logos a { display: grid; place-items: center; padding: 8px; }
.logos img { max-height: 90px; width: auto; transition: transform .35s var(--ease); }
.logos a:hover img, .logos a:focus-visible img { transform: scale(1.1); }
.logos-note { text-align: center; font-size: .8rem; margin: 20px 0 0; color: var(--green-deep); }
@media (max-width: 560px) { .logos { grid-template-columns: 1fr; gap: 36px; } }

/* Full-bleed image split (Wat kan ik voor je doen) */
.bleed { display: grid; grid-template-columns: 1fr 1fr; }
.bleed-text { padding: clamp(64px, 8vw, 110px) var(--gutter); max-width: 580px; margin-left: auto; width: 100%; }
.bleed-img { overflow: hidden; }
.bleed-img img { width: 100%; height: 100%; object-fit: cover; }
.bleed ul { padding-left: 1.2em; }
.bleed li { margin-bottom: .5em; }
@media (max-width: 760px) { .bleed { grid-template-columns: 1fr; } .bleed-img img { aspect-ratio: 4/3; } }

/* Socials & contact band */
.socials .split { grid-template-columns: auto 1fr; max-width: 880px; margin: 0 auto; gap: clamp(32px, 6vw, 72px); }
.socials .photo { position: relative; width: clamp(200px, 26vw, 280px); }
.socials .photo img { border: 6px solid var(--white); }
.socials .photo::after {
  content: ""; position: absolute; width: 60px; height: 60px; right: 4%; bottom: 4%;
  border-radius: 50%; background: var(--white) url("/images/favicon.png") center / 72% no-repeat; box-shadow: var(--shadow-sm);
}
.socials h2 { margin-bottom: .2em; }
.socials .lead { opacity: .85; margin-bottom: 1.4em; }
.contact-list { display: grid; gap: 10px; }
.contact-list a {
  display: flex; align-items: center; gap: 14px; text-decoration: none;
  padding: 8px 20px 8px 8px; border-radius: 999px; width: fit-content; max-width: 100%;
  transition: background .25s, transform .25s var(--ease);
}
.contact-list a:hover { transform: translateX(4px); }
.contact-list .chip { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; flex: none; }
.contact-list .chip svg { width: 19px; height: 19px; fill: currentColor; }
.contact-list span:last-child { overflow-wrap: anywhere; font-size: .92rem; }
.socials.bg-green .contact-list a { background: rgba(255, 255, 255, .08); }
.socials.bg-green .contact-list a:hover { background: rgba(255, 255, 255, .15); }
.socials.bg-green .chip { background: var(--lime); color: var(--green-deep); }
.socials.bg-lime { color: var(--green-deep); }
.socials.bg-lime .contact-list a { background: rgba(255, 255, 255, .5); }
.socials.bg-lime .contact-list a:hover { background: rgba(255, 255, 255, .8); }
.socials.bg-lime .chip { background: var(--green); color: var(--white); }
@media (max-width: 760px) {
  .socials .split { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .socials .photo { width: 200px; }
  .contact-list { justify-items: center; }
}

/* Footer */
.site-footer { background: var(--lime-soft); padding: 64px 0 28px; font-size: .9rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr auto; gap: 40px; align-items: start; }
.site-footer h4 { font-family: var(--body); font-weight: 600; font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--green); margin: 0 0 .5em; }
.site-footer p { margin-bottom: 1.2em; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--green); }
.footer-logo img { width: 210px; margin-bottom: 1em; }
.footer-badges { display: flex; gap: 12px; align-items: center; }
.footer-badges a { background: var(--white); border-radius: var(--radius-sm); padding: 10px; display: grid; place-items: center; height: 72px; }
.footer-badges img { max-height: 52px; width: auto; max-width: 90px; }
.footer-bottom a { color: inherit; }
.footer-bottom { margin-top: 48px; padding-top: 20px; border-top: 1px solid rgba(0, 101, 63, .15); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .78rem; color: var(--muted); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } .site-footer { padding-bottom: 96px; } }

/* Floating WhatsApp button */
.fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 40;
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--green); color: var(--white);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .25);
}
.fab svg { width: 28px; height: 28px; fill: currentColor; }

/* Treatments */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; margin-top: 56px; }
.card {
  background: var(--lime); color: var(--white); border-radius: var(--radius); padding: 34px 30px;
  display: flex; flex-direction: column; position: relative;
}
.card h3 { font-size: 1.8rem; margin-bottom: .3em; }
.card .sub { font-weight: 600; font-size: .9rem; color: var(--green-deep); }
.card p { font-size: .9rem; }
.card .btn { margin-top: auto; align-self: flex-start; }
.card-featured { padding-top: 92px; }
.badge {
  position: absolute; top: 0; left: 0; right: 0; background: var(--green);
  border-radius: var(--radius) var(--radius) 0 0; text-align: center;
  font-family: var(--head); font-weight: 600; font-size: 1.35rem; padding: 12px;
}
.meta-row { display: flex; flex-wrap: wrap; gap: 8px; margin: .4em 0 1.6em; }
.pill {
  display: inline-flex; align-items: center; gap: .45em;
  background: rgba(255, 255, 255, .22); border-radius: 6px; padding: .35em .9em; font-size: .85rem; font-weight: 500;
}
.pill svg { width: 1em; height: 1em; fill: currentColor; }
.pill.price { background: var(--white); color: var(--green); font-weight: 600; }
.special .pill { background: rgba(255, 255, 255, .12); }
.special .pill.price { background: var(--lime); color: var(--green-deep); }
@media (max-width: 900px) { .cards { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; } .card-featured { order: -1; } }

.special {
  background: var(--green); color: var(--white); border-radius: var(--radius); padding: 18px 18px 18px 36px;
  display: grid; grid-template-columns: 1.35fr 1fr; gap: 36px; align-items: center; margin-bottom: 24px;
  overflow: hidden;
}
.special.flip { grid-template-columns: 1fr 1.35fr; padding: 18px 36px 18px 18px; }
.special.flip .img-zoom { order: -1; }
.special .tag { color: var(--lime); font-size: .8rem; font-weight: 500; margin: 0 0 .4em; }
.special h3 { font-size: 1.6rem; margin-bottom: .6em; }
.special p { font-size: .9rem; opacity: .95; }
.img-zoom { overflow: hidden; }
.img-zoom img { width: 100%; height: 100%; object-fit: cover; }
.special .img-zoom { aspect-ratio: 16/11; }
@media (max-width: 760px) {
  .special, .special.flip { grid-template-columns: 1fr; padding: 14px 14px 20px; gap: 20px; }
  .special > div:not(.img-zoom) { padding: 0 10px; }
  .special .img-zoom { order: -1; }
}

/* Big image with overlay text box */
.overlay-hero { position: relative; min-height: 660px; display: flex; align-items: center; overflow: hidden; }
.overlay-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.overlay-box {
  position: relative; background: var(--white);
  padding: 40px; max-width: 420px;
}
.overlay-box h2 { color: var(--green); font-size: 2.1rem; }
@media (max-width: 760px) { .overlay-hero { min-height: 0; padding: 280px 0 24px; } .overlay-box { padding: 28px; } }

.extras { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.extra {
  background: var(--white); color: var(--ink); padding: 12px 12px 26px;
  display: flex; flex-direction: column;
}
.extra .img-zoom { aspect-ratio: 3/2; margin-bottom: 20px; }
.extra .body { padding: 0 14px; display: flex; flex-direction: column; flex: 1; }
.extra h3 { font-size: 1.3rem; margin-bottom: .2em; color: var(--green); }
.extra .tagline { color: var(--muted); font-size: .85rem; font-weight: 500; }
.extra p { font-size: .87rem; }
.extra .pill.price { margin-top: auto; align-self: flex-start; background: var(--lime-soft); color: var(--green); }
@media (max-width: 900px) { .extras { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

/* Over mij */
/* Fixed-height band like the original; the photo fills its half without setting the height */
.about-hero { display: grid; grid-template-columns: 1fr 1fr; height: clamp(520px, 62vh, 640px); }
.about-hero .text { display: flex; flex-direction: column; justify-content: center; padding: 48px var(--gutter); max-width: 480px; margin-left: auto; margin-right: 10%; }
.about-hero .img { position: relative; overflow: hidden; }
.about-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-hero .btn { align-self: flex-start; }
@media (max-width: 760px) {
  .about-hero { grid-template-columns: 1fr; height: auto; }
  .about-hero .text { margin: 0; }
  .about-hero .img { aspect-ratio: 4/5; }
}
.quote { font-style: italic; font-size: 1.05rem; max-width: 680px; margin: 0 auto; text-align: center; }
.portrait-wrap { position: relative; max-width: 280px; margin-left: auto; }
.exp-badge {
  position: absolute; left: -32px; bottom: -32px; background: var(--lime); color: var(--green-deep);
  padding: 18px 24px 16px; line-height: 1.2;
}
.exp-badge strong { display: block; font-family: var(--head); font-weight: 600; font-size: 2.6rem; line-height: 1; }
.exp-badge span { font-size: .85rem; font-weight: 500; }
@media (max-width: 760px) {
  .exp-badge { left: -12px; bottom: -20px; padding: 12px 16px 10px; }
  .exp-badge strong { font-size: 1.9rem; }
}
.narrow-split { grid-template-columns: 1fr 1.1fr; max-width: 860px; margin: 0 auto; }
@media (max-width: 760px) { .narrow-split { grid-template-columns: 1fr; } .portrait-wrap { margin: 0 auto; } }

/* Contact */
.contact-card { display: grid; grid-template-columns: 1fr 1.3fr; border: 1px solid rgba(255, 255, 255, .8); border-radius: var(--radius-sm); overflow: hidden; }
.contact-card img { width: 100%; height: 100%; object-fit: cover; }
.contact-card .text { padding: clamp(28px, 5vw, 64px); display: flex; flex-direction: column; justify-content: center; }
.contact-card .phone { color: var(--lime); font-family: var(--head); font-weight: 600; font-size: clamp(1.8rem, 3.4vw, 2.5rem); text-decoration: none; margin-bottom: .2em; }
.contact-card .actions { display: flex; flex-wrap: wrap; gap: 10px; margin: .6em 0 1.6em; }
.contact-card .small { font-size: .88rem; opacity: .85; margin: 0; }
.contact-card .small a { color: var(--lime); }
@media (max-width: 760px) { .contact-card { grid-template-columns: 1fr; } .contact-card img { aspect-ratio: 4/3; } }
.route { max-width: var(--max); }
.route h2 { font-size: clamp(2.4rem, 5vw, 3.8rem); margin-bottom: .3em; }
.map { width: 100%; height: 260px; background: #f7f7f5; }
.map-pin { display: block; width: 26px; height: 37px; color: #111; cursor: pointer; }
.map-pin svg { width: 100%; height: 100%; fill: currentColor; }
.map .maplibregl-ctrl-attrib { font-size: 10px; }
.address { display: grid; grid-template-columns: auto auto; justify-content: start; gap: 12px 40px; margin-top: 14px; font-size: .95rem; }
.policy { max-width: 1000px; margin: 0 auto; font-size: .92rem; color: var(--green-deep); }
.policy h2 { color: var(--white); font-size: clamp(2rem, 3.4vw, 2.7rem); text-align: center; }
.policy .intro { max-width: 560px; margin: 0 auto 48px; text-align: center; }
.rules { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.rules > div { border-top: 3px solid var(--white); padding-top: 22px; }
.rules svg { width: 30px; height: 30px; fill: var(--green); margin-bottom: 14px; }
.rules h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: .4em; }
.rules p { margin: 0; }
@media (max-width: 760px) { .rules { grid-template-columns: 1fr; gap: 32px; } }
.gift {
  max-width: 500px; margin: 0 auto; background: var(--green); color: var(--white);
  padding: 44px 40px; border-radius: var(--radius-sm); box-shadow: 0 14px 34px rgba(0, 0, 0, .28);
}
.gift h2 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
.gift p { max-width: 380px; }
.gift .btn { margin-top: .6em; }
@media (max-width: 520px) { .address { grid-template-columns: 1fr; gap: 0; } .gift { padding: 32px 24px; } }

/* Scroll reveal (only applied by site.js when motion is allowed) */
.reveal {
  opacity: 0; translate: 0 28px;
  transition: opacity .8s var(--ease), translate .8s var(--ease);
}
.reveal.in { opacity: 1; translate: none; }
