:root {
  --forest: #24352a;        /* diep bosgroen, koppen/donkere vlakken */
  --forest-deep: #182119;   /* hero-achtergrond, footer */
  --sage: #7c9473;          /* primaire accentkleur */
  --sage-deep: #5c7353;     /* hover/donkerder accent */
  --clay: #bd7752;          /* warm terracotta accent */
  --clay-deep: #a4623f;     /* hover terracotta */
  --cream: #faf6ee;         /* lichte achtergrond */
  --ivory: #f1ead9;         /* sectie-achtergrond */
  --ink: #23201b;           /* tekst */
  --muted: #6d6656;         /* gedempte tekst */
  --line: rgba(36,53,42,.13);
  --maxw: 1160px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
body {
  font-family: "Jost", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 {
  font-family: "Cormorant", Georgia, serif;
  font-weight: 600;
  line-height: 1.06;
  color: var(--forest);
  overflow-wrap: break-word;
  hyphens: auto;
}
h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); margin-bottom: .5em; letter-spacing: -.005em; }
img { max-width: 100%; display: block; }
a { color: var(--sage-deep); }

.eyebrow {
  text-transform: uppercase; letter-spacing: .26em; font-size: .72rem;
  font-weight: 600; color: var(--clay); margin-bottom: 1rem; font-family: "Jost", sans-serif;
}
.center { text-align: center; }
.section { max-width: var(--maxw); margin: 0 auto; padding: 6.4rem 1.5rem; }
.section__lead { max-width: 54ch; margin: -.2rem auto 0; color: var(--muted); }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--forest); color: #fff; padding: .95rem 1.8rem;
  border-radius: 3px; text-decoration: none; font-weight: 600; font-size: .88rem;
  letter-spacing: .04em; text-transform: uppercase;
  cursor: pointer; border: 1.5px solid var(--forest);
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
  box-shadow: 0 10px 24px rgba(24,33,25,.18);
}
.btn:hover { transform: translateY(-2px); background: var(--sage-deep); border-color: var(--sage-deep); }
.btn--ghost { background: transparent; border-color: rgba(255,255,255,.7); color: #fff; box-shadow: none; }
.btn--ghost:hover { background: rgba(255,255,255,.14); border-color: #fff; }
.btn--ghost-dark { background: transparent; border-color: var(--forest); color: var(--forest); box-shadow: none; }
.btn--ghost-dark:hover { background: rgba(36,53,42,.08); }
.btn--small { padding: .62rem 1.3rem; font-size: .78rem; box-shadow: none; }
a:focus-visible, button:focus-visible, .btn:focus-visible {
  outline: 3px solid var(--clay); outline-offset: 3px; border-radius: 3px;
}

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 50; display: flex;
  justify-content: space-between; align-items: center;
  padding: 1rem 1.5rem; background: rgba(250,246,238,.88);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--line);
}
.nav__brand {
  font-family: "Cormorant", serif; font-size: 1.65rem; font-weight: 600;
  color: var(--forest); text-decoration: none; letter-spacing: .03em;
}
.nav__brand span { color: var(--clay); }
.nav__links { display: flex; gap: 1.8rem; align-items: center; }
.nav__links a { color: var(--ink); text-decoration: none; font-size: .84rem; font-weight: 500; letter-spacing: .03em; transition: color .15s ease; }
.nav__links a:not(.btn):hover { color: var(--sage-deep); }

/* HERO (split layout: tekst-kolom + foto-kolom, robuust op mobiel en desktop) */
.hero {
  display: grid; grid-template-columns: .92fr 1.08fr;
  min-height: 82vh;
  background: var(--forest-deep);
  color: #fff; overflow: hidden;
}
.hero__content { display: flex; align-items: center; align-self: stretch; padding: 3.5rem clamp(1.75rem, 4.6vw, 4.75rem); }
.hero__inner { max-width: 40rem; width: 100%; }
/* foto absoluut in de kolom: zo bepaalt de natuurlijke beeldhoogte NIET de hero-hoogte */
.hero__photo { position: relative; align-self: stretch; overflow: hidden; }
.hero__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__photo::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, var(--forest-deep) 0%, rgba(24,33,25,0) 26%); }
.hero__eyebrow { text-transform: uppercase; letter-spacing: .3em; font-weight: 600; font-size: .78rem; color: var(--sage); margin-bottom: 1.3rem; }
.hero__title { font-size: clamp(2.3rem, 4.7vw, 4.4rem); line-height: 1.04; margin-bottom: .4em; color: #fff; }
.hero__title em { font-style: italic; color: var(--clay); font-weight: 500; }
.hero__tagline { font-size: clamp(1.02rem, 1.4vw, 1.22rem); max-width: 46ch; margin-bottom: 2.2rem; color: #ece5d6; }
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__rating { display: flex; align-items: center; gap: .6rem; margin-top: 2.1rem; font-size: .88rem; color: #ece5d6; font-weight: 500; flex-wrap: wrap; }
.stars { display: inline-flex; gap: 2px; }
.stars svg { width: 16px; height: 16px; fill: var(--clay); }

/* OVER */
.over { display: grid; grid-template-columns: .95fr 1.05fr; gap: 3.6rem; align-items: center; }
.over__media { position: relative; }
.over__media img { border-radius: 4px; aspect-ratio: 4/5; object-fit: cover; box-shadow: 0 26px 60px rgba(24,33,25,.2); }
.over__badge {
  position: absolute; right: -14px; bottom: 26px; background: var(--forest); color: #fff;
  border-radius: 4px; padding: .95rem 1.15rem; text-align: center; box-shadow: 0 16px 30px rgba(24,33,25,.32);
  display: flex; flex-direction: column; line-height: 1.1;
}
.over__badge-num { font-family: "Cormorant", serif; font-size: 1.8rem; color: var(--sage); }
.over__badge-txt { font-size: .66rem; text-transform: uppercase; letter-spacing: .14em; margin-top: .25rem; }
.over__text p { margin-bottom: 1rem; color: var(--muted); }
.over__text p:first-of-type { color: var(--ink); }
.usps { list-style: none; margin-top: 1.5rem; display: grid; gap: .7rem; }
.usps li { padding-left: 1.9rem; position: relative; font-weight: 500; color: var(--ink); }
.usps li::before {
  content: ""; position: absolute; left: 0; top: .52em; width: .8rem; height: .8rem;
  background: var(--clay); border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(189,119,82,.18);
}

/* BEHANDELINGEN */
.behandelingen { background: var(--ivory); max-width: none; }
.behandelingen > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.treat-groups { display: grid; gap: 1rem; margin-top: 3rem; }
.treat-group { background: #fff; border-radius: 6px; border: 1px solid var(--line); box-shadow: 0 10px 26px rgba(24,33,25,.05); overflow: hidden; }
.treat-group__head { display: flex; align-items: center; gap: .9rem; padding: 1.5rem 1.8rem; background: var(--cream); border-bottom: 1px solid var(--line); }
.treat-group__icon { display: inline-flex; width: 44px; height: 44px; border-radius: 50%; align-items: center; justify-content: center; background: var(--forest); color: var(--sage); flex: none; }
.treat-group__icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.treat-group__head h3 { font-size: 1.4rem; }
.treat-list { display: grid; grid-template-columns: repeat(3, 1fr); }
.treat-item { padding: 1.4rem 1.8rem; border-top: 1px solid var(--line); }
.treat-list .treat-item:nth-child(3n+1) { border-left: none; }
.treat-list .treat-item { border-left: 1px solid var(--line); }
.treat-item h4 { font-family: "Jost", sans-serif; font-weight: 600; font-size: .98rem; color: var(--forest); margin-bottom: .3rem; }
.treat-item p { font-size: .88rem; color: var(--muted); }

/* WERK / GALERIJ */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 3rem; }
.gallery figure { margin: 0; overflow: hidden; border-radius: 4px; }
.gallery img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  transition: transform .5s ease;
}
.gallery figure:hover img { transform: scale(1.05); }
.werk__note { margin-top: 1.8rem; color: var(--muted); }

/* OPENINGSTIJDEN */
.hours { background: var(--cream); max-width: none; }
.hours > * { max-width: 720px; margin-left: auto; margin-right: auto; }
.hours__card {
  margin-top: 2.6rem; background: #fff; border: 1px solid var(--line);
  border-radius: 6px; padding: 1rem 1.6rem; box-shadow: 0 16px 40px rgba(24,33,25,.07);
}
.hours__row {
  display: flex; justify-content: space-between; align-items: center;
  padding: .85rem .6rem; border-bottom: 1px solid var(--line);
  font-size: 1rem;
}
.hours__row:last-child { border-bottom: none; }
.hours__row .day { font-weight: 600; color: var(--ink); }
.hours__row .time { color: var(--muted); }
.hours__row.today {
  background: var(--ivory); border-radius: 4px; padding-left: .9rem; padding-right: .9rem;
}
.hours__row.today .day { color: var(--sage-deep); }
.hours__row.today .day::after {
  content: "Vandaag"; margin-left: .6rem; font-size: .66rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; color: #fff; background: var(--clay);
  padding: .12rem .5rem; border-radius: 3px; vertical-align: middle;
}
.hours__row.today .time { color: var(--sage-deep); font-weight: 600; }
.hours__note { text-align: center; color: var(--muted); font-size: .92rem; margin-top: 1.4rem; }

/* REVIEWS */
.reviews { background: var(--forest); color: #fff; border-radius: 6px; max-width: calc(var(--maxw) + 0px); }
.reviews .eyebrow { color: var(--sage); }
.reviews h2 { color: #fff; }
.reviews__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; margin-top: 2.8rem;
}
.review {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.13);
  border-radius: 4px; padding: 1.8rem;
}
.review__stars { color: var(--clay); letter-spacing: .15em; margin-bottom: .8rem; font-size: .95rem; }
.review p { font-size: .96rem; margin-bottom: 1rem; color: rgba(255,255,255,.92); }
.review cite { font-weight: 600; font-style: normal; color: var(--sage); }

/* FOOTER */
.footer { text-align: center; padding: 3.6rem 1.5rem; background: var(--forest-deep); color: #ece5d6; margin-top: 2rem; }
.footer__name { font-family: "Cormorant", serif; font-size: 2rem; color: #fff; }
.footer__tag { font-size: .9rem; color: var(--sage); margin-top: .3rem; }
.footer__socials { margin: 1.2rem 0; display: flex; gap: 1.5rem; justify-content: center; }
.footer__socials a { color: #ece5d6; text-decoration: none; font-weight: 500; }
.footer__socials a:hover { color: #fff; }
.footer__disclaimer { font-size: .8rem; opacity: .6; margin-top: 1rem; }

/* NAV ACTIVE */
.nav__links a.active:not(.btn) { color: var(--sage-deep); }
.nav__links a.btn.active { background: var(--sage-deep); border-color: var(--sage-deep); }

/* PAGE HEADER (subpaginas met foto) */
.pagehead { position: relative; overflow: hidden; background: var(--forest-deep); }
.pagehead__photo { position: absolute; inset: 0; }
.pagehead__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pagehead::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(24,33,25,.74) 0%, rgba(24,33,25,.84) 100%);
}
.pagehead__inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; padding: 4.6rem 1.5rem 4.1rem; text-align: center; }
.pagehead .eyebrow { color: var(--sage); }
.pagehead h1 { font-size: clamp(2.2rem, 6vw, 3.4rem); color: #fff; margin-bottom: .5rem; }
.pagehead__lead { color: #ece5d6; max-width: 56ch; margin: 0 auto; }
.pagehead__lead a { color: #fff; }

/* CARDS / FORMS */
.card-soft { background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 2rem; box-shadow: 0 12px 30px rgba(24,33,25,.06); }
.field { margin-bottom: 1.1rem; display: flex; flex-direction: column; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { font-weight: 600; font-size: .88rem; margin-bottom: .4rem; color: var(--ink); }
.field input, .field select, .field textarea {
  font: inherit; color: var(--ink); background: var(--cream);
  border: 1.5px solid var(--line); border-radius: 4px; padding: .8rem .9rem; width: 100%;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px rgba(124,148,115,.16);
}
.field textarea { resize: vertical; }
form[data-demo-form] button[type=submit] { width: 100%; margin-top: .3rem; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: .8rem; text-align: center; }

/* FORM SUCCESS */
.form-success { text-align: center; padding: 1.2rem .5rem; }
.form-success__check { display: inline-flex; width: 56px; height: 56px; border-radius: 50%; background: rgba(124,148,115,.16); align-items: center; justify-content: center; margin-bottom: 1rem; }
.form-success__check svg { width: 30px; height: 30px; fill: none; stroke: var(--sage-deep); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.form-success h3 { color: var(--forest); margin-bottom: .4rem; }
.form-success p { color: var(--muted); max-width: 40ch; margin: 0 auto; }

/* BOOKING PAGE */
.booking { display: grid; grid-template-columns: 1.3fr .9fr; gap: 1.6rem; align-items: start; }
.booking__aside { display: grid; gap: 1.2rem; }
.booking__aside h3, .contact-details h3 { font-size: 1.3rem; color: var(--forest); margin-bottom: .9rem; }
.ticklist { list-style: none; display: grid; gap: .75rem; }
.ticklist li { position: relative; padding-left: 1.7rem; color: var(--muted); font-size: .95rem; }
.ticklist li::before { content: ""; position: absolute; left: 0; top: .5em; width: .75rem; height: .75rem; border-radius: 50%; background: var(--clay); }

/* CONTACT LINES (gedeeld) */
.contact-lines { list-style: none; display: grid; gap: .9rem; margin-bottom: 1.2rem; }
.contact-lines li { display: flex; align-items: center; gap: .8rem; }
.contact-lines svg { width: 20px; height: 20px; flex: none; fill: none; stroke: var(--sage-deep); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.contact-lines a, .contact-lines span { color: var(--ink); text-decoration: none; }
.contact-lines a:hover { color: var(--sage-deep); }
.contact-details__btns { display: flex; gap: .6rem; flex-wrap: wrap; }

/* CONTACT PAGE */
.contactpage { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; align-items: stretch; }
.contactpage__left { display: grid; gap: 1.2rem; align-content: start; }
.contactpage__map { border-radius: 6px; overflow: hidden; border: 1px solid var(--line); min-height: 440px; }
.contactpage__map iframe { width: 100%; height: 100%; min-height: 440px; border: 0; display: block; }

/* CTA BAND */
.cta-band { background: var(--sage); color: #fff; }
.cta-band__inner { max-width: 720px; margin: 0 auto; padding: 4.3rem 1.5rem; text-align: center; }
.cta-band__inner h2 { color: #fff; }
.cta-band__inner p { color: rgba(255,255,255,.92); margin-bottom: 1.6rem; }
.cta-band__btns { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }
.cta-band .btn:not(.btn--ghost-dark) { background: var(--forest-deep); color: #fff; border-color: var(--forest-deep); box-shadow: none; }
.cta-band .btn:not(.btn--ghost-dark):hover { background: #0f1611; }
.cta-band .btn--ghost-dark { border-color: rgba(255,255,255,.8); color: #fff; }
.cta-band .btn--ghost-dark:hover { background: rgba(255,255,255,.14); }

/* LINK ARROW + SECTION FOOT */
.section__foot { margin-top: 2.4rem; }
.link-arrow { color: var(--sage-deep); font-weight: 600; text-decoration: none; }
.link-arrow:hover { color: var(--clay-deep); }

/* FOOTER NAV */
.footer__nav { display: flex; gap: 1.4rem; justify-content: center; flex-wrap: wrap; margin: 1.3rem 0 .2rem; }
.footer__nav a { color: #ece5d6; text-decoration: none; font-size: .9rem; font-weight: 500; }
.footer__nav a:hover { color: #fff; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* CHATBOT */
#reflow-chat { position: fixed; bottom: 22px; right: 22px; z-index: 100; font-family: "Jost", sans-serif; }
#reflow-chat-toggle {
  width: 60px; height: 60px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--forest); color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(24,33,25,.4); transition: transform .2s ease, background .2s ease;
}
#reflow-chat-toggle:hover { transform: translateY(-2px); background: var(--sage-deep); }
#reflow-chat-toggle svg { width: 27px; height: 27px; fill: none; stroke: #fff; stroke-width: 1.8; stroke-linejoin: round; stroke-linecap: round; }
#reflow-chat-panel {
  position: absolute; bottom: 74px; right: 0; width: 340px; max-width: 80vw;
  background: #fff; border-radius: 6px; box-shadow: 0 24px 60px rgba(23,20,17,.3); overflow: hidden;
}
#reflow-chat-head { background: var(--forest); color: #fff; padding: 1rem 1.2rem; font-weight: 600; }
#reflow-chat-log { height: 280px; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: .6rem; font-size: .93rem; }
.rc-msg { padding: .6rem .85rem; border-radius: 6px; max-width: 86%; line-height: 1.5; }
.rc-bot { background: var(--ivory); color: var(--ink); align-self: flex-start; }
.rc-user { background: var(--forest); color: #fff; align-self: flex-end; }
#reflow-chat-form { display: flex; border-top: 1px solid #eee; }
#reflow-chat-input { flex: 1; border: none; padding: .85rem 1rem; font: inherit; outline: none; }
#reflow-chat-form button { border: none; background: var(--forest); color: #fff; width: 50px; font-size: 1.5rem; cursor: pointer; }
#reflow-chat-form button:hover { background: var(--sage-deep); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .treat-list { grid-template-columns: repeat(2, 1fr); }
  .treat-list .treat-item:nth-child(3n+1) { border-left: 1px solid var(--line); }
  .treat-list .treat-item:nth-child(2n+1) { border-left: none; }
}
@media (max-width: 860px) {
  .section { padding: 4.6rem 1.3rem; }
  .nav__links a:not(.btn) { display: none; }
  /* HERO mobiel: foto fullscreen met donkere gradient + tekst in frosted vlak, hele hero in 1 scherm */
  .hero { display: block; position: relative; min-height: 88vh; }
  .hero__photo { position: absolute; inset: 0; }
  .hero__photo::after {
    background: linear-gradient(to top, rgba(15,22,17,.92) 0%, rgba(15,22,17,.68) 40%, rgba(15,22,17,.52) 66%, rgba(15,22,17,.66) 100%);
  }
  .hero__content { position: relative; z-index: 2; min-height: 88vh; align-items: center; justify-content: center; padding: 2.4rem 1.2rem; text-align: center; }
  .hero__inner {
    margin: 0 auto; max-width: 34rem;
    background: rgba(15,22,17,.52);
    -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 8px;
    padding: 1.9rem 1.5rem 2rem;
  }
  .hero__title { text-shadow: 0 2px 18px rgba(0,0,0,.5); }
  .hero__tagline { margin: 0 auto 1.6rem; color: #f2ecdf; text-shadow: 0 1px 10px rgba(0,0,0,.4); }
  .hero__cta { justify-content: center; }
  .hero__rating { justify-content: center; margin-top: 1.5rem; }
  .over { grid-template-columns: 1fr; gap: 2.5rem; }
  .over__media { max-width: 420px; margin: 0 auto; }
  .over__badge { right: 10px; }
  .treat-list { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .booking { grid-template-columns: 1fr; }
  .contactpage { grid-template-columns: 1fr; }
  .contactpage__map { min-height: 300px; }
  .contactpage__map iframe { min-height: 300px; }
  .pagehead__inner { padding: 3.5rem 1.3rem 3.1rem; }
}
@media (max-width: 480px) {
  .hero__title { font-size: clamp(2rem, 10vw, 2.7rem); }
  .treat-list { grid-template-columns: 1fr; }
  .treat-list .treat-item { border-left: none; }
  .gallery { grid-template-columns: 1fr; }
  .gallery img { aspect-ratio: 4/5; }
  .field-row { grid-template-columns: 1fr; }
  .nav .btn--small { width: auto; }
  .btn { width: 100%; }
  .hero__cta .btn { width: 100%; }
  #reflow-chat { right: 12px; bottom: 12px; }
  #reflow-chat-panel { width: calc(100vw - 24px); right: 0; left: auto; max-width: none; }
  #reflow-chat-log { height: 60vh; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .treat-group, .btn, .gallery img { transition: none !important; }
}
