/* =========================================================
   PAS HIER DE WEBSITE STIJL AAN
   Verander de kleuren hieronder en de hele website verandert mee.
   ========================================================= */
:root {
  --bg: #f8f6f3;
  --paper: #ffffff;
  --ink: #151515;
  --muted: #6f6963;
  --champagne: #e7d7c5;
  --champagne-dark: #b99b7d;
  --line: rgba(21, 21, 21, 0.12);
  --radius: 28px;
  --shadow: 0 24px 70px rgba(21, 21, 21, 0.10);
  --serif: "Cormorant Garamond", serif;
  --sans: "Inter", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 64px);
  background: rgba(248, 246, 243, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.brand img { width: 118px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 22px; font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; }
.site-nav a { opacity: 0.82; transition: opacity .2s ease; }
.site-nav a:hover { opacity: 1; }
.nav-cta { padding: 12px 18px; background: var(--ink); color: #fff; border-radius: 999px; opacity: 1 !important; }
.menu-toggle { display: none; border: 0; background: transparent; font-size: 28px; }

.section-padding { padding: clamp(48px, 6vw, 88px) clamp(18px, 4vw, 64px); }
.compact { padding-top: clamp(36px, 4vw, 60px); padding-bottom: clamp(36px, 4vw, 60px); }
.champagne { background: linear-gradient(135deg, rgba(231,215,197,.65), rgba(255,255,255,.8)); }

.hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: clamp(520px, 72vh, 700px);
}
.eyebrow, .section-kicker {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 700;
  color: var(--champagne-dark);
}
h1, h2, h3 { margin: 0; font-family: var(--serif); line-height: 1.05; font-weight: 600; }
h1 { font-size: clamp(36px, 5.5vw, 68px); letter-spacing: -0.03em; }
h2 { font-size: clamp(28px, 3.8vw, 48px); letter-spacing: -0.025em; }
h3 { font-size: 20px; letter-spacing: -0.01em; }
p { color: var(--muted); }
.hero-text { max-width: 480px; font-size: 16px; line-height: 1.75; }
.button-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.button-row.centered { justify-content: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-light { background: rgba(255,255,255,.72); color: var(--ink); }

.hero-media { position: relative; min-height: 400px; }
.hero-img { object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.hero-img-main { width: 68%; height: 400px; margin-left: auto; }
.hero-img-small { position: absolute; width: 34%; height: 200px; left: 0; bottom: 28px; border: 7px solid var(--bg); }

.intro { text-align: center; max-width: 1080px; margin: 0 auto; }
.section-heading { max-width: 740px; margin: 0 auto 44px; text-align: center; }
.cards.three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card, .price-card, .cta-card, .map-card {
  background: rgba(255,255,255,.76);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.service-card img { width: 100%; height: 190px; object-fit: cover; }
.service-body { padding: 22px 24px; }
.service-card p { margin-bottom: 0; }
.service-card .price-list { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); }

.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 6vw, 84px); align-items: center; }
.split-media img { height: 440px; width: 100%; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.split-copy { max-width: 720px; }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.price-card { padding: 32px; }
.price-card h3 { margin-bottom: 24px; }
.price-row { display: flex; justify-content: space-between; gap: 18px; padding: 11px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 14px; }
.price-row:last-child { border-bottom: 0; }
.price-row strong { color: var(--ink); white-space: nowrap; }

.gallery-slider { max-width: 460px; margin: 0 auto; }
.slider-wrap { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.slider-track { position: relative; aspect-ratio: 1 / 1.16; }
.slider-track img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.6s ease; }
.slider-track img.active { opacity: 1; }
.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; border: none; background: rgba(255,255,255,0.88); color: var(--ink); font-size: 18px; cursor: pointer; z-index: 2; display: inline-flex; align-items: center; justify-content: center; transition: background .2s, transform .2s; box-shadow: 0 4px 16px rgba(21,21,21,.18); }
.slider-btn:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.slider-prev { left: 18px; }
.slider-next { right: 18px; }
.slider-dots { position: absolute; bottom: 18px; left: 0; right: 0; display: flex; justify-content: center; gap: 8px; z-index: 2; }
.slider-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.55); border: none; padding: 0; cursor: pointer; transition: background .2s, transform .2s; }
.slider-dot.active { background: #fff; transform: scale(1.4); }

.reel-wrap { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.reel-wrap .instagram-media { min-width: 300px; max-width: 420px; width: 100% !important; margin: 0 !important; border-radius: var(--radius) !important; flex: 1; }

.accordion { max-width: 920px; margin: 0 auto; }
details { background: #fff; border: 1px solid var(--line); border-radius: 22px; margin-bottom: 14px; padding: 22px 26px; }
summary { cursor: pointer; font-family: var(--serif); font-size: 20px; font-weight: 700; }
li { margin: 8px 0; color: var(--muted); }

.cta-card { max-width: 920px; margin: 0 auto; padding: clamp(36px, 6vw, 72px); text-align: center; background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; }
.map-card { padding: 34px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  padding: 14px 18px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 700;
}
.site-footer { padding: 44px 20px; text-align: center; border-top: 1px solid var(--line); }
.site-footer img { width: 108px; margin: 0 auto 16px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .site-nav { position: fixed; left: 18px; right: 18px; top: 86px; display: none; flex-direction: column; align-items: stretch; background: #fff; padding: 24px; border-radius: 22px; box-shadow: var(--shadow); }
  .site-nav.is-open { display: flex; }
  .hero, .split, .contact-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-media { min-height: 340px; }
  .hero-img-main { height: 340px; width: 80%; }
  .cards.three, .price-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .brand img { width: 92px; }
  .section-padding { padding-left: 16px; padding-right: 16px; }
  .hero-media { min-height: 280px; }
  .hero-img-main { width: 100%; height: 280px; }
  .hero-img-small { display: none; }
  .cards.three, .price-grid { grid-template-columns: 1fr; }
  .gallery-slider { max-width: 100%; }
  .split-media img { height: 280px; }
  h1 { font-size: 34px; }
  h2 { font-size: 26px; }
  .floating-whatsapp { left: 16px; right: 16px; text-align: center; }
}
