/* =========================================================
   De Snuitstylist — stylesheet
   Kleuren: blush pink, wit, crème, beige, donkerbruine tekst
   ========================================================= */

:root {
  --blush: #f3dbe1;
  --blush-dark: #e8bfca;
  --blush-light: #fbeef1;
  --cream: #fffaf6;
  --beige: #efe3d6;
  --white: #ffffff;
  --brown-dark: #4a342e;
  --brown-mid: #7c5c52;
  --brown-soft: #a9877c;
  --gold: #c9a15b;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --shadow-sm: 0 4px 16px rgba(74, 52, 46, 0.08);
  --shadow-md: 0 12px 32px rgba(74, 52, 46, 0.12);
  --shadow-lg: 0 20px 48px rgba(74, 52, 46, 0.16);

  --font-heading: "Fraunces", Georgia, serif;
  --font-body: "Poppins", "Segoe UI", sans-serif;

  --container-w: 1180px;
  --header-h: 84px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--brown-dark);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; border-radius: var(--radius-md); }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; color: var(--brown-dark); line-height: 1.2; margin: 0 0 0.5em; }
p { margin: 0 0 1em; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

.container { max-width: var(--container-w); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--brown-dark); color: var(--white);
  padding: 12px 20px; border-radius: 0 0 var(--radius-sm) 0; z-index: 999;
}
.skip-link:focus { left: 0; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 30px; border-radius: 50px; font-weight: 600; font-size: 0.98rem;
  border: 2px solid transparent; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  cursor: pointer;
}
.btn-primary { background: var(--brown-dark); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: #5f453c; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; border-color: var(--brown-dark); color: var(--brown-dark); }
.btn-outline:hover { background: var(--brown-dark); color: var(--white); transform: translateY(-2px); }
.btn-sm { padding: 10px 22px; font-size: 0.9rem; }
.btn-block { width: 100%; }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 500; background: rgba(255, 250, 246, 0.98);
  border-bottom: 1px solid rgba(74,52,46,0.08);
  height: var(--header-h);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; box-shadow: var(--shadow-sm); flex-shrink: 0; }
.logo-footer .logo-mark { width: 40px; height: 40px; }
.logo-text { font-family: var(--font-heading); font-size: 1.35rem; font-weight: 600; color: var(--brown-dark); display: flex; flex-direction: column; line-height: 1.15; }
.logo-text small { font-family: var(--font-body); font-weight: 400; font-size: 0.6rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--brown-soft); }

.main-nav ul { display: flex; gap: 34px; }
.main-nav a { font-weight: 500; font-size: 0.98rem; position: relative; padding: 4px 0; }
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -4px; width: 0; height: 2px; background: var(--gold);
  transition: width .3s ease;
}
.main-nav a:hover::after, .main-nav a:focus-visible::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 18px; }

.hamburger {
  display: none; width: 42px; height: 42px; border: none; background: var(--blush-light);
  border-radius: 50%; position: relative; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.hamburger span { display: block; width: 20px; height: 2px; background: var(--brown-dark); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Sections generic ---------- */
section { padding: 96px 0; }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem;
  font-weight: 600; color: var(--brown-soft); margin-bottom: 12px;
}
.section-head h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
.section-lead { color: var(--brown-mid); font-size: 1.05rem; }

/* ---------- Hero ---------- */
.hero { padding-top: 72px; padding-bottom: 72px; background: linear-gradient(180deg, var(--blush-light) 0%, var(--cream) 100%); overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero-text .eyebrow { color: var(--gold); }
.hero-text h1 { font-size: clamp(2.3rem, 4.4vw, 3.6rem); }
.hero-lead { font-size: 1.1rem; color: var(--brown-mid); max-width: 540px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin: 28px 0 34px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 14px 24px; font-weight: 500; font-size: 0.92rem; color: var(--brown-mid); }
.hero-badges li { display: flex; align-items: center; gap: 8px; }

.hero-media { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-media img {
  border-radius: 50%; box-shadow: var(--shadow-lg); aspect-ratio: 1/1; height: auto; object-fit: cover; object-position: center 30%;
  width: 100%; max-width: 380px; flex: 0 0 auto; border: 8px solid var(--white);
}
.hero-media-note {
  position: absolute; left: 0; bottom: 8px; background: var(--white); border-radius: var(--radius-md);
  padding: 14px 20px; box-shadow: var(--shadow-md); display: flex; flex-direction: column; max-width: 200px;
}
.hero-media-note strong { font-family: var(--font-heading); font-size: 1.05rem; }
.hero-media-note span { color: var(--brown-soft); font-size: 0.85rem; }

/* ---------- Voordelen ---------- */
.voordelen { background: var(--white); }
.voordelen-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.voordeel-card {
  background: var(--blush-light); border-radius: var(--radius-lg); padding: 36px 28px; text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}
.voordeel-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.icon-circle {
  width: 68px; height: 68px; border-radius: 50%; background: var(--white); color: var(--brown-dark);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; box-shadow: var(--shadow-sm);
}
.icon-circle svg { width: 32px; height: 32px; }
.voordeel-card h3 { font-size: 1.15rem; }
.voordeel-card p { color: var(--brown-mid); font-size: 0.95rem; margin-bottom: 0; }

/* ---------- Diensten ---------- */
.diensten { background: var(--blush-light); }
.prijs-op-aanvraag {
  display: inline-flex; align-items: center; gap: 10px; background: var(--white); color: var(--brown-mid);
  font-size: 0.92rem; font-weight: 500; padding: 12px 22px; border-radius: 50px; box-shadow: var(--shadow-sm);
  margin-top: 8px;
}
.diensten-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.dienst-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.dienst-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.dienst-img { aspect-ratio: 4/3; overflow: hidden; }
.dienst-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; transition: transform .5s ease; }
.dienst-card:hover .dienst-img img { transform: scale(1.06); }
.dienst-body { padding: 24px 26px 28px; }
.dienst-body h3 { font-size: 1.2rem; margin-bottom: 10px; }
.dienst-body p { color: var(--brown-mid); font-size: 0.94rem; margin-bottom: 0; }

/* ---------- Galerij ---------- */
.galerij { background: var(--blush-light); }
.galerij-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.galerij-item {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 4/5;
  transition: transform .35s ease, box-shadow .35s ease;
}
.galerij-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.galerij-item img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; transition: transform .5s ease; }
.galerij-item:hover img { transform: scale(1.06); }
.galerij-item:nth-child(3n+1) { aspect-ratio: 3/4; }
.galerij-item:nth-child(3n+2) { aspect-ratio: 1/1; align-self: end; }

/* ---------- Over ons ---------- */
.over-ons { background: var(--white); }
.over-ons-inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: center; }
.over-ons-media { display: flex; justify-content: center; }
.over-ons-media img {
  border-radius: 50%; box-shadow: var(--shadow-lg); aspect-ratio: 1/1; height: auto; object-fit: cover; object-position: center 25%;
  width: 100%; max-width: 360px; flex: 0 0 auto; border: 8px solid var(--white);
}
.over-ons-tekst p { color: var(--brown-mid); }
.over-ons-stats { display: flex; gap: 30px; margin: 28px 0 32px; flex-wrap: wrap; }
.over-ons-stats li { display: flex; flex-direction: column; }
.over-ons-stats strong { font-family: var(--font-heading); font-size: 1.2rem; color: var(--brown-dark); }
.over-ons-stats span { font-size: 0.84rem; color: var(--brown-soft); }

/* ---------- Reviews ---------- */
.reviews { background: var(--beige); }
.review-slider { max-width: 720px; margin: 0 auto; }
.review-track { position: relative; }
.review-card {
  display: none; width: 100%; background: var(--white); border-radius: var(--radius-lg); padding: 44px 40px; text-align: center;
  box-shadow: var(--shadow-sm); margin: 0; box-sizing: border-box; animation: reviewFade .45s ease;
}
.review-card.active-slide { display: block; }
@keyframes reviewFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.stars { color: var(--gold); letter-spacing: 4px; margin-bottom: 16px; font-size: 1.1rem; }
.review-card p { font-size: 1.08rem; font-style: italic; color: var(--brown-dark); }
.review-card footer { font-weight: 600; color: var(--brown-mid); font-style: normal; }
.review-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 26px; }
.review-btn {
  width: 42px; height: 42px; border-radius: 50%; border: none; background: var(--white); color: var(--brown-dark);
  font-size: 1.4rem; box-shadow: var(--shadow-sm); transition: background .25s ease, color .25s ease;
}
.review-btn:hover { background: var(--brown-dark); color: var(--white); }
.review-dots { display: flex; gap: 8px; }
.review-dots button {
  width: 9px; height: 9px; border-radius: 50%; border: none; background: var(--brown-soft); opacity: 0.4; padding: 0;
}
.review-dots button.active { opacity: 1; background: var(--brown-dark); width: 22px; border-radius: 6px; transition: width .3s ease; }

/* ---------- Afspraak ---------- */
.afspraak { background: var(--blush-light); }
.afspraak-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.afspraak-kanalen { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.kanaal-card {
  display: flex; align-items: center; gap: 16px; background: var(--white); padding: 18px 22px; border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease;
}
.kanaal-card:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.kanaal-icon { width: 46px; height: 46px; border-radius: 50%; background: var(--blush-light); color: var(--brown-dark); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.kanaal-icon svg { width: 22px; height: 22px; }
.kanaal-card strong { display: block; font-size: 1rem; }
.kanaal-card small { color: var(--brown-soft); }

/* ---------- Forms ---------- */
.afspraak-form, .contact-form {
  background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md);
}
.afspraak-form h3, .contact-form h3 { margin-bottom: 22px; }
.form-row { margin-bottom: 18px; display: flex; flex-direction: column; gap: 6px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .form-row { margin-bottom: 0; }
.form-grid + .form-row, .form-row + .form-grid { margin-top: 18px; }
label { font-size: 0.88rem; font-weight: 600; color: var(--brown-mid); }
input, select, textarea {
  border: 1.5px solid var(--beige); border-radius: var(--radius-sm); padding: 13px 16px; background: var(--cream);
  color: var(--brown-dark); transition: border-color .25s ease, box-shadow .25s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,161,91,0.2);
}
textarea { resize: vertical; }
.form-status { min-height: 1.3em; font-size: 0.9rem; margin-top: 14px; text-align: center; }
.form-status.success { color: #4c7a4f; }
.form-status.error { color: #a1473f; }
input:invalid[data-touched="true"], textarea:invalid[data-touched="true"] { border-color: #c98b84; }

/* ---------- Contact ---------- */
.contact { background: var(--white); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.contact-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 36px; }
.contact-list li { display: flex; align-items: center; gap: 16px; }
.contact-icon { width: 42px; height: 42px; border-radius: 50%; background: var(--blush-light); color: var(--brown-dark); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 20px; height: 20px; }
.openingstijden-title { font-size: 1.1rem; margin-bottom: 14px; }
.openingstijden { display: flex; flex-direction: column; gap: 8px; margin-bottom: 30px; }
.openingstijden li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed var(--beige); font-size: 0.94rem; }
.openingstijden li span:first-child { color: var(--brown-mid); font-weight: 500; }
.map-placeholder {
  display: flex; align-items: center; gap: 12px; background: var(--blush-light); padding: 18px 22px; border-radius: var(--radius-md);
  color: var(--brown-dark); font-weight: 600; transition: background .25s ease;
}
.map-placeholder:hover { background: var(--blush); }

/* ---------- Footer ---------- */
.site-footer { background: var(--brown-dark); color: var(--blush-light); padding-top: 72px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; }
.footer-col h4 { color: var(--white); font-size: 1rem; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--blush-light); opacity: 0.85; font-size: 0.94rem; transition: opacity .2s ease; }
.footer-col a:hover { opacity: 1; text-decoration: underline; }
.footer-contact li { opacity: 0.85; font-size: 0.94rem; }
.footer-brand p { color: var(--blush-light); opacity: 0.8; font-size: 0.92rem; max-width: 280px; margin: 16px 0 20px; }
.site-footer .logo-text { color: var(--white); }
.socials { display: flex; gap: 12px; }
.socials a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: var(--white); transition: background .25s ease; }
.socials a:hover { background: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding: 22px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 8px 20px; flex-wrap: wrap; }
.footer-bottom p { margin: 0; font-size: 0.85rem; opacity: 0.75; }
.footer-bottom .made-by { letter-spacing: 0.04em; }
@media (max-width: 600px) {
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* ---------- WhatsApp float + to top ---------- */
.whatsapp-float {
  position: fixed; bottom: 26px; right: 26px; width: 58px; height: 58px; background: #25D366; color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); z-index: 400;
  transition: transform .25s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

.to-top {
  position: fixed; bottom: 26px; right: 96px; width: 46px; height: 46px; background: var(--white); color: var(--brown-dark);
  border: 1.5px solid var(--beige); border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm); z-index: 400; opacity: 0; pointer-events: none; transition: opacity .3s ease, transform .25s ease;
}
.to-top.visible { opacity: 1; pointer-events: auto; }
.to-top:hover { transform: translateY(-3px); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .diensten-grid { grid-template-columns: repeat(2, 1fr); }
  .voordelen-grid { grid-template-columns: repeat(2, 1fr); }
  .over-ons-inner { grid-template-columns: 1fr; }
  .over-ons-media { max-width: 420px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .main-nav { position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0; background: var(--cream);
    transform: translateX(100%); transition: transform .35s ease; overflow-y: auto; padding: 32px 24px; }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 6px; }
  .main-nav a { display: block; padding: 16px 6px; font-size: 1.15rem; border-bottom: 1px solid var(--beige); }
  .hamburger { display: flex; }
  .header-actions .btn-sm { display: none; }

  .hero-inner { grid-template-columns: 1fr; text-align: left; }
  .hero-media { order: -1; max-width: 380px; margin: 0 auto 12px; }
  .hero-media-note { left: 12px; bottom: -16px; }

  .galerij-grid { grid-template-columns: repeat(2, 1fr); }

  .afspraak-inner, .contact-inner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  section { padding: 64px 0; }
  .container { padding: 0 18px; }
  .diensten-grid { grid-template-columns: 1fr; }
  .voordelen-grid { grid-template-columns: 1fr; }
  .galerij-grid { grid-template-columns: 1fr; gap: 18px; }
  .galerij-item, .galerij-item:nth-child(3n+1), .galerij-item:nth-child(3n+2) { aspect-ratio: 4/3; align-self: stretch; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; text-align: left; }
  .form-grid { grid-template-columns: 1fr; }
  .afspraak-form, .contact-form { padding: 28px 22px; }
  .whatsapp-float { width: 52px; height: 52px; bottom: 18px; right: 18px; }
  .to-top { width: 42px; height: 42px; bottom: 18px; right: 82px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .hero-media { max-width: 260px; }
  .hero-media-note { padding: 12px 16px; max-width: 170px; left: 8px; bottom: -14px; }
  .hero-media-note strong { font-size: 0.92rem; }
  .hero-media-note span { font-size: 0.76rem; }
}
