/* Beauty by Milou - nagelstudio Dordrecht. Warm feminine luxe: mauve, blush, caramel, cream. */
:root {
  --mauve: #5a3a4a;
  --mauve-soft: #7d5567;
  --blush: #e8c9c2;
  --blush-soft: #f4e5df;
  --cream: #f8f1ec;
  --caramel: #bd8455;
  --gold: #b8945f;
  --ink: #2b2126;
  --muted: #6f5d63;
  --maxw: 1180px;
  --radius: 20px;
  --shadow: 0 22px 60px rgba(74, 45, 58, .14);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
body {
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: "Fraunces", Georgia, serif; font-weight: 500; line-height: 1.08; overflow-wrap: break-word; hyphens: auto; }
h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); letter-spacing: -.01em; margin-bottom: .5em; }
h2 em { font-style: italic; color: var(--caramel); }
p { color: var(--ink); }
img { max-width: 100%; display: block; }
a { color: inherit; }

.eyebrow { text-transform: uppercase; letter-spacing: .26em; font-size: .72rem; font-weight: 700; color: var(--caramel); margin-bottom: 1rem; }
.center { text-align: center; }
.section { max-width: var(--maxw); margin: 0 auto; padding: 6.5rem 1.5rem; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: .55rem; cursor: pointer;
  background: var(--mauve); color: #fff; padding: .95rem 1.8rem; border-radius: 999px;
  text-decoration: none; font-weight: 700; font-size: .92rem; letter-spacing: .01em;
  border: 1.5px solid var(--mauve);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); background: var(--mauve-soft); border-color: var(--mauve-soft); box-shadow: 0 12px 26px rgba(90, 58, 74, .3); }
.btn svg { width: 18px; height: 18px; }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .65); }
.btn--ghost:hover { background: rgba(255, 255, 255, .14); border-color: #fff; }
.btn--dark { background: var(--ink); border-color: var(--ink); }
.btn--dark:hover { background: #3d2f35; border-color: #3d2f35; }
.btn--small { padding: .6rem 1.25rem; font-size: .82rem; }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 60; display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 1.6rem; background: rgba(248, 241, 236, .82); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(90, 58, 74, .1);
}
.nav__brand { font-family: "Fraunces", serif; font-size: 1.45rem; font-weight: 600; color: var(--ink); text-decoration: none; letter-spacing: -.01em; }
.nav__brand span { color: var(--caramel); font-style: italic; }
.nav__links { display: flex; gap: 1.7rem; align-items: center; }
.nav__links a { color: var(--ink); text-decoration: none; font-size: .9rem; font-weight: 600; transition: color .15s ease; }
.nav__links a:not(.btn):hover { color: var(--caramel); }

/* HERO */
.hero {
  position: relative; min-height: 90vh; display: flex; align-items: center;
  background-size: cover; background-position: center right; color: #fff; padding: 2rem 1.6rem;
}
.hero__shade {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(105deg, rgba(43, 33, 38, .72) 0%, rgba(43, 33, 38, .5) 38%, rgba(43, 33, 38, .12) 64%, rgba(43, 33, 38, .04) 100%);
}
.hero__inner {
  position: relative; z-index: 2; max-width: 620px; width: 100%;
  margin-left: clamp(0px, 5vw, 90px);
  padding: 2.6rem 2.5rem; border-radius: var(--radius);
  background: rgba(43, 33, 38, .42); backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, .12);
}
.hero__eyebrow { color: var(--blush); text-transform: uppercase; letter-spacing: .26em; font-weight: 700; font-size: .78rem; }
.hero__title { font-size: clamp(2.4rem, 8vw, 4.6rem); margin: .25em 0 .15em; font-weight: 500; text-shadow: 0 2px 24px rgba(0, 0, 0, .35); }
.hero__title em { font-style: italic; color: var(--blush); }
.hero__tagline { font-size: clamp(1rem, 1.6vw, 1.2rem); max-width: 44ch; margin-bottom: 2rem; color: #f4ece9; line-height: 1.65; }
.hero__cta { display: flex; gap: .9rem; flex-wrap: wrap; }
.hero__rating { margin-top: 1.8rem; display: flex; align-items: center; gap: .6rem; font-size: .9rem; color: #f3e8e4; }
.hero__stars { color: var(--gold); letter-spacing: .12em; }

/* OVER */
.over { display: grid; grid-template-columns: .9fr 1.1fr; gap: 4rem; align-items: center; }
.over__media { position: relative; }
.over__media img { border-radius: var(--radius); aspect-ratio: 4/5; object-fit: cover; box-shadow: var(--shadow); }
.over__media::after {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius);
  border: 1px solid rgba(189, 132, 85, .35); transform: translate(16px, 16px); z-index: -1;
}
.over__text h2 { margin-bottom: .35em; }
.over__text p + p { margin-top: 1rem; }
.usps { list-style: none; margin-top: 1.8rem; display: grid; gap: .9rem; }
.usps li { display: flex; gap: .8rem; align-items: flex-start; font-weight: 600; color: var(--ink); }
.usps svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--caramel); margin-top: 2px; }

/* BEHANDELINGEN */
.behandelingen { background: linear-gradient(180deg, var(--blush-soft), var(--cream)); border-radius: 40px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; margin-top: 3rem; }
.card {
  background: #fff; border-radius: var(--radius); padding: 2rem 1.7rem;
  box-shadow: 0 10px 30px rgba(74, 45, 58, .06); border: 1px solid rgba(90, 58, 74, .06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__icon { width: 46px; height: 46px; border-radius: 50%; background: var(--blush-soft); display: grid; place-items: center; margin-bottom: 1.1rem; }
.card__icon svg { width: 24px; height: 24px; color: var(--mauve); }
.card h3 { font-size: 1.45rem; margin-bottom: .35rem; color: var(--mauve); font-weight: 600; }
.card p { color: var(--muted); font-size: .96rem; }

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

/* REVIEWS */
.reviews { background: var(--mauve); color: #fff; border-radius: 40px; }
.reviews .eyebrow { color: var(--blush); }
.reviews h2 { color: #fff; }
.reviews h2 em { color: var(--blush); }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 3rem; }
.review { background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .14); border-radius: var(--radius); padding: 2rem 1.8rem; }
.review__stars { color: var(--gold); letter-spacing: .14em; margin-bottom: .9rem; font-size: 1rem; }
.review p { font-size: 1.02rem; line-height: 1.65; color: #f6ece9; }
.review cite { display: block; margin-top: 1.2rem; font-weight: 700; font-style: normal; color: var(--blush); font-size: .95rem; }

/* CONTACT */
.contact { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3.5rem; align-items: start; }
.contact__info h2 { margin-bottom: .4em; }
.contact__line { display: flex; gap: .8rem; align-items: center; font-size: 1.06rem; margin-bottom: .9rem; color: var(--ink); }
.contact__line svg { width: 20px; height: 20px; color: var(--caramel); flex-shrink: 0; }
.contact__line a { color: var(--ink); text-decoration: none; }
.contact__line a:hover { color: var(--caramel); }
.contact .btn { margin-top: 1.2rem; }
.afspraak {
  background: #fff; border-radius: var(--radius); padding: 2.4rem 2.2rem;
  box-shadow: var(--shadow); border: 1px solid rgba(90, 58, 74, .07);
}
.afspraak h3 { font-size: 1.7rem; color: var(--mauve); margin-bottom: .4rem; font-weight: 600; }
.afspraak p { color: var(--muted); margin-bottom: 1.4rem; }
.afspraak__note { display: flex; gap: .7rem; align-items: center; margin-top: 1.4rem; font-size: .9rem; color: var(--muted); }
.afspraak__note svg { width: 18px; height: 18px; color: var(--caramel); }

/* FOOTER */
.footer { text-align: center; padding: 3.5rem 1.5rem 2.5rem; background: var(--ink); color: #e9ddd9; }
.footer__name { font-family: "Fraunces", serif; font-size: 1.9rem; font-weight: 500; }
.footer__name span { font-style: italic; color: var(--blush); }
.footer__socials { margin: 1.2rem 0; display: flex; gap: 1.4rem; justify-content: center; }
.footer__socials a { color: #e9ddd9; display: inline-flex; transition: color .15s ease; }
.footer__socials a:hover { color: var(--blush); }
.footer__socials svg { width: 22px; height: 22px; }
.footer__disclaimer { font-size: .8rem; opacity: .6; 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: "Manrope", sans-serif; }
#reflow-chat-toggle { width: 60px; height: 60px; border-radius: 50%; border: none; background: var(--mauve); color: #fff; cursor: pointer; box-shadow: 0 12px 30px rgba(90, 58, 74, .4); display: grid; place-items: center; transition: transform .2s ease; }
#reflow-chat-toggle:hover { transform: scale(1.06); }
#reflow-chat-toggle svg { width: 26px; height: 26px; }
#reflow-chat-panel { position: absolute; bottom: 74px; right: 0; width: 340px; max-width: 80vw; background: #fff; border-radius: 18px; box-shadow: 0 24px 60px rgba(43, 33, 38, .3); overflow: hidden; border: 1px solid rgba(90, 58, 74, .1); }
#reflow-chat-head { background: var(--mauve); color: #fff; padding: 1rem 1.2rem; font-weight: 700; font-size: .98rem; }
#reflow-chat-head small { display: block; font-weight: 500; opacity: .8; font-size: .78rem; margin-top: 2px; }
#reflow-chat-log { height: 280px; overflow-y: auto; padding: 1.1rem; display: flex; flex-direction: column; gap: .6rem; font-size: .92rem; background: var(--cream); }
.rc-msg { padding: .6rem .9rem; border-radius: 14px; max-width: 86%; line-height: 1.5; }
.rc-bot { background: #fff; align-self: flex-start; border: 1px solid rgba(90, 58, 74, .1); }
.rc-user { background: var(--mauve); color: #fff; align-self: flex-end; }
#reflow-chat-form { display: flex; border-top: 1px solid rgba(90, 58, 74, .1); background: #fff; }
#reflow-chat-input { flex: 1; border: none; padding: .9rem 1rem; font: inherit; outline: none; color: var(--ink); }
#reflow-chat-form button { border: none; background: var(--mauve); color: #fff; width: 50px; font-size: 1.3rem; cursor: pointer; }

/* FOCUS */
a:focus-visible, button:focus-visible, input:focus-visible { outline: 2.5px solid var(--caramel); outline-offset: 3px; border-radius: 4px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav__links a:not(.btn) { display: none; }
  .over, .contact { grid-template-columns: 1fr; gap: 2.5rem; }
  .over__media::after { display: none; }
  .cards, .reviews__grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .section { padding: 4.5rem 1.3rem; }
  .hero { min-height: 86vh; }
  .hero__inner { margin-left: 0; padding: 2rem 1.6rem; background: rgba(43, 33, 38, .52); }
  .hero__cta { width: 100%; }
  .hero__cta .btn { flex: 1; justify-content: center; }
  .behandelingen, .reviews { border-radius: 28px; }
  #reflow-chat { right: 12px; bottom: 14px; }
  #reflow-chat-panel { width: calc(100vw - 24px); right: 0; left: auto; max-width: none; height: 62vh; }
  #reflow-chat-panel:not([hidden]) { display: flex; flex-direction: column; }
  #reflow-chat-log { flex: 1; height: auto; }
}
@media (max-width: 420px) {
  .gallery { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
