:root {
  --green: #2c4034;        /* diep botanisch groen */
  --green-soft: #5e7b67;   /* zacht salie */
  --cream: #f5efe3;        /* warme ivoor */
  --cream-deep: #ece3d2;
  --ink: #1d2620;          /* bijna-zwart groen */
  --muted: #5a6259;
  --accent: #c4796b;       /* pioenroze terracotta */
  --accent-soft: #e7c7bd;
  --maxw: 1160px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}
h1, h2, h3 { font-family: "Fraunces", Georgia, serif; font-weight: 500; line-height: 1.08; letter-spacing: -.01em; overflow-wrap: break-word; }
h2 { font-size: clamp(2.1rem, 4.4vw, 3.3rem); margin-bottom: .55em; }
img { max-width: 100%; display: block; }
a { color: inherit; }
.eyebrow {
  text-transform: uppercase; letter-spacing: .22em; font-size: .76rem; font-weight: 700;
  color: var(--accent); margin-bottom: 1rem;
}
.center { text-align: center; }
.section { max-width: var(--maxw); margin: 0 auto; padding: 6.5rem 1.5rem; }

.btn {
  display: inline-flex; align-items: center; gap: .5rem; cursor: pointer;
  background: var(--green); color: #fff; padding: .9rem 1.7rem; border-radius: 999px;
  text-decoration: none; font-weight: 700; font-size: .95rem;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
  box-shadow: 0 6px 18px rgba(44,64,52,.18);
}
.btn:hover { transform: translateY(-2px); background: var(--green-soft); box-shadow: 0 10px 24px rgba(44,64,52,.26); }
.btn--ghost { background: transparent; border: 1.5px solid rgba(255,255,255,.85); box-shadow: none; }
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn--small { padding: .55rem 1.15rem; font-size: .85rem; box-shadow: none; }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 50; display: flex; justify-content: space-between; align-items: center;
  padding: 1.05rem 1.8rem; background: rgba(245,239,227,.82); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(29,38,32,.08);
}
.nav__brand { font-family: "Fraunces", serif; font-size: 1.6rem; font-weight: 600; color: var(--ink); text-decoration: none; letter-spacing: -.02em; }
.nav__brand-dot { color: var(--accent); }
.nav__links { display: flex; gap: 1.7rem; align-items: center; }
.nav__links a { color: var(--ink); text-decoration: none; font-size: .92rem; font-weight: 600; transition: color .15s ease; }
.nav__links a:not(.btn):hover { color: var(--accent); }

/* HERO */
.hero {
  position: relative; min-height: 90vh; display: flex; align-items: center; justify-content: center;
  text-align: center; background-size: cover; background-position: center; color: #fff; padding: 2rem;
}
.hero__inner {
  max-width: 760px; padding: 3rem 2.8rem; border-radius: 22px;
  background: rgba(20,28,22,.46); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 24px 70px rgba(0,0,0,.34);
}
.hero__eyebrow { text-transform: uppercase; letter-spacing: .24em; font-weight: 700; font-size: .82rem; color: var(--accent-soft); }
.hero__title { font-size: clamp(2.3rem, 8vw, 5.6rem); font-weight: 500; margin: .25em 0 .15em; text-shadow: 0 2px 22px rgba(0,0,0,.45); }
.hero__tagline { font-size: 1.22rem; max-width: 40ch; margin: 0 auto 2.1rem; text-shadow: 0 1px 12px rgba(0,0,0,.5); color: #f3ede2; }
.hero__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero__scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.55); border-radius: 14px; }
.hero__scroll span { position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; border-radius: 2px; background: #fff; animation: scroll 1.8s infinite; }
@keyframes scroll { 0% { opacity: 0; top: 8px; } 40% { opacity: 1; } 80% { opacity: 0; top: 22px; } 100% { opacity: 0; } }

/* OVER */
.over { display: grid; grid-template-columns: .95fr 1.05fr; gap: 4rem; align-items: center; }
.over__media { position: relative; }
.over__media img { border-radius: 18px; aspect-ratio: 4/5; object-fit: cover; box-shadow: 0 24px 60px rgba(29,38,32,.18); }
.over__media::after { content: ""; position: absolute; inset: 14px -14px -14px 14px; border: 1.5px solid var(--accent-soft); border-radius: 18px; z-index: -1; }
.over__text p { color: var(--muted); margin-bottom: 1rem; max-width: 46ch; }
.over__text h2 { color: var(--green); }
.usps { list-style: none; margin-top: 1.6rem; display: grid; gap: .75rem; }
.usps li { padding-left: 2rem; position: relative; font-weight: 600; color: var(--ink); }
.usps li::before {
  content: ""; position: absolute; left: 0; top: .42em; width: 11px; height: 11px;
  background: var(--accent); border-radius: 50% 50% 50% 0; transform: rotate(45deg);
}

/* CARDS */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; margin: 3rem 0; }
.card {
  background: #fff; border-radius: 18px; padding: 1.9rem 1.6rem;
  box-shadow: 0 10px 30px rgba(29,38,32,.06); border: 1px solid rgba(29,38,32,.05);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(29,38,32,.12); }
.card__icon { display: inline-flex; width: 46px; height: 46px; align-items: center; justify-content: center; border-radius: 12px; background: var(--cream-deep); color: var(--green); margin-bottom: 1rem; }
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.5rem; margin-bottom: .35rem; color: var(--green); font-weight: 600; }
.card p { color: var(--muted); font-size: .95rem; }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.gallery img { border-radius: 14px; aspect-ratio: 1; object-fit: cover; box-shadow: 0 10px 28px rgba(29,38,32,.1); transition: transform .35s ease; }
.gallery img:hover { transform: scale(1.02); }

/* REVIEWS */
.reviews { background: #fff; border-radius: 28px; box-shadow: 0 20px 60px rgba(29,38,32,.06); }
.reviews h2 { color: var(--green); }
.reviews__stars { display: flex; justify-content: center; gap: .25rem; margin-top: .4rem; color: var(--accent); }
.reviews__stars svg { width: 24px; height: 24px; }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.6rem; }
.review { background: var(--cream); border-radius: 16px; padding: 2rem 1.8rem; position: relative; border: 1px solid rgba(29,38,32,.05); }
.review::before { content: "\201C"; position: absolute; top: .2rem; left: 1.1rem; font-family: "Fraunces", serif; font-size: 3.4rem; color: var(--accent-soft); line-height: 1; }
.review p { font-style: normal; margin: 1.1rem 0 1.1rem; color: var(--ink); position: relative; }
.review cite { font-weight: 700; font-style: normal; color: var(--accent); font-size: .95rem; }

/* CONTACT */
.contact { display: grid; grid-template-columns: 1.15fr 1fr; gap: 3.5rem; align-items: start; }
.contact h2 { color: var(--green); }
.contact__line { font-size: 1.12rem; margin-bottom: .5rem; color: var(--ink); }
.contact__line a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--accent-soft); transition: color .15s ease; }
.contact__line a:hover { color: var(--accent); }
.contact .btn { margin-top: 1.4rem; }
.contact__hours { background: #fff; border-radius: 18px; padding: 2rem 1.9rem; box-shadow: 0 12px 34px rgba(29,38,32,.07); }
.contact__hours h3 { font-size: 1.5rem; color: var(--green); margin-bottom: .6rem; font-weight: 600; }
.hours { list-style: none; }
.hours li { display: flex; justify-content: space-between; padding: .6rem 0; border-bottom: 1px solid rgba(29,38,32,.08); font-size: .98rem; }
.hours li:last-child { border-bottom: none; }
.hours span:first-child { font-weight: 600; }
.hours li.today { background: rgba(196,121,107,.12); margin: 0 -.8rem; padding: .6rem .8rem; border-radius: 10px; border-bottom-color: transparent; }
.hours li.today span { color: var(--accent); font-weight: 700; }
.hours li.today span:first-child::after { content: " · vandaag"; font-weight: 600; font-size: .78rem; opacity: .8; }

/* FOOTER */
.footer { text-align: center; padding: 3.4rem 1.5rem; background: var(--ink); color: #e8e8e0; }
.footer__name { font-family: "Fraunces", serif; font-size: 1.9rem; font-weight: 500; }
.footer__socials { margin: 1.1rem 0; display: flex; gap: 1.5rem; justify-content: center; }
.footer__socials a { color: #e8e8e0; text-decoration: none; opacity: .85; transition: opacity .15s ease; }
.footer__socials a:hover { opacity: 1; color: var(--accent-soft); }
.footer__disclaimer { font-size: .8rem; opacity: .55; margin-top: 1rem; }

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

/* CHATBOT */
#reflow-chat { position: fixed; bottom: 22px; right: 22px; z-index: 100; font-family: "Hanken Grotesk", sans-serif; }
#reflow-chat-toggle { width: 60px; height: 60px; border-radius: 50%; border: none; background: var(--green); color: #fff; cursor: pointer; box-shadow: 0 12px 32px rgba(29,38,32,.32); display: flex; align-items: center; justify-content: center; transition: transform .2s ease, background .2s ease; }
#reflow-chat-toggle:hover { transform: scale(1.06); background: var(--green-soft); }
#reflow-chat-toggle svg { width: 26px; height: 26px; }
#reflow-chat-panel { position: absolute; bottom: 74px; right: 0; width: 330px; max-width: 82vw; background: #fff; border-radius: 18px; box-shadow: 0 24px 60px rgba(29,38,32,.3); overflow: hidden; border: 1px solid rgba(29,38,32,.08); }
#reflow-chat-head { background: var(--green); color: #fff; padding: 1rem 1.2rem; font-weight: 700; font-family: "Fraunces", serif; }
#reflow-chat-log { height: 264px; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: .6rem; font-size: .92rem; }
.rc-msg { padding: .6rem .85rem; border-radius: 13px; max-width: 86%; line-height: 1.45; }
.rc-bot { background: var(--cream); align-self: flex-start; border-bottom-left-radius: 4px; }
.rc-user { background: var(--green); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
#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(--green); color: #fff; width: 48px; font-size: 1.3rem; cursor: pointer; transition: background .15s ease; }
#reflow-chat-form button:hover { background: var(--green-soft); }

@media (max-width: 860px) {
  .nav { padding: .9rem 1.2rem; }
  .nav__links a:not(.btn) { display: none; }
  .section { padding: 4.5rem 1.3rem; }
  .over, .contact { grid-template-columns: 1fr; gap: 2.4rem; }
  /* Decoratief kader binnen de breedte houden (geen negatieve rechter-inset op smal scherm) */
  .over__media::after { inset: 10px 8px -10px 10px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .gallery, .reviews__grid { grid-template-columns: 1fr; }
  .hero { padding: 1.2rem; }
  /* Scroll-muis is een desktop-hint; op touch/mobiel verbergen */
  .hero__scroll { display: none; }
  .hero__inner { padding: 2.2rem 1.4rem; }
  .hero__cta { gap: .7rem; }
  .hero__cta .btn { padding: .8rem 1.2rem; font-size: .9rem; }
}

@media (max-width: 400px) {
  .hero__title { font-size: clamp(2rem, 9vw, 2.6rem); }
  .btn { padding: .8rem 1.3rem; }
}

/* Chatbot op mobiel groter: bijna-fullscreen paneel zodat chatten prettig is.
   Breedte via calc + rechter-anker (paneel hangt aan #reflow-chat), niet via left,
   want fixed/left wordt door de smalle toggle-container ingeperkt. */
@media (max-width: 600px) {
  #reflow-chat { right: 12px; bottom: 16px; }
  #reflow-chat-panel {
    width: calc(100vw - 24px);
    max-width: none;
    right: 0; left: auto;
    bottom: 76px;
    border-radius: 20px;
  }
  #reflow-chat-head { padding: 1.1rem 1.2rem; font-size: 1.15rem; }
  #reflow-chat-log { height: 60vh; font-size: 1rem; }
  #reflow-chat-input { padding: 1rem 1.1rem; font-size: 1rem; }
  #reflow-chat-form button { width: 54px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
  .hero__scroll span { animation: none; }
  html { scroll-behavior: auto; }
}
