/* ============================================================
   SH MONDZORG — premium one-page stylesheet
   ============================================================ */

:root {
  --white: #ffffff;
  --blue: #7ba7c2;
  --blue-dark: #5d8aa6;
  --blue-soft: #eaf4f8;
  --grey-bg: #f4f7f9;
  --ink: #2e2e2e;
  --ink-soft: #5d6b73;
  --border: #e0edf3;
  --radius: 16px;
  --radius-lg: 20px;
  --shadow-sm: 0 6px 24px rgba(123, 167, 194, 0.10);
  --shadow-md: 0 14px 40px rgba(123, 167, 194, 0.16);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

.serif { font-family: var(--serif); font-weight: 400; letter-spacing: 0.01em; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

.section { padding: 96px 0; }

.section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 14px;
}

.section__sub {
  text-align: center;
  color: var(--ink-soft);
  margin-bottom: 54px;
  font-size: 1.05rem;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--blue);
  margin-bottom: 18px;
}

/* ---------- Icons ---------- */
.icon {
  width: 26px; height: 26px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon--lg { width: 40px; height: 40px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 12px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.btn--primary { background: var(--blue); color: #fff; }
.btn--primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn--ghost { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn--ghost:hover { background: var(--blue-soft); transform: translateY(-2px); }
.btn--full { width: 100%; margin-top: 8px; }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  padding-top: 18px;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), backdrop-filter 0.3s, padding-top 0.3s var(--ease);
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(46, 46, 46, 0.06);
  padding-top: 0;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.nav__logo { display: flex; align-items: center; }
.nav__logo img { height: 110px; width: auto; transition: height 0.35s var(--ease); transform-origin: left center; }
.nav.scrolled .nav__logo img { height: 100px; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a {
  color: var(--ink); text-decoration: none; font-size: 0.95rem; font-weight: 500;
  position: relative; transition: color 0.2s;
}
.nav__links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -5px; width: 0; height: 1.5px;
  background: var(--blue); transition: width 0.25s var(--ease);
}
.nav__links a:not(.btn):hover { color: var(--blue); }
.nav__links a:not(.btn):hover::after { width: 100%; }
.nav__cta { color: #fff !important; }

/* nav dropdown */
.nav__dropdown { position: relative; }
.nav__dropdown-toggle::before { content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 22px; }
.nav__dropdown-menu {
  position: absolute; top: calc(100% + 18px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 240px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: 10px; display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; transition: opacity 0.22s var(--ease), transform 0.22s var(--ease); z-index: 120;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav__dropdown-menu a { padding: 10px 14px; border-radius: 8px; font-size: 0.92rem; white-space: nowrap; transition: background 0.2s, color 0.2s; }
.nav__dropdown-menu a::after { display: none !important; }
.nav__dropdown-menu a:hover { background: var(--blue-soft); color: var(--blue); }

/* mobile submenu items */
.mobile-menu__sub { font-size: 1.15rem !important; color: var(--ink-soft) !important; }

/* mobile dropdown (Diensten) */
.mobile-dropdown { display: flex; flex-direction: column; align-items: center; }
.mobile-dropdown__toggle {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--serif); font-size: 1.6rem; color: var(--ink);
  background: none; border: none; cursor: pointer; padding: 0; line-height: 1;
}
.mobile-dropdown__chevron {
  width: 22px; height: 22px; fill: none; stroke: var(--ink);
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
  transition: transform 0.3s var(--ease);
}
.mobile-dropdown__toggle[aria-expanded="true"] .mobile-dropdown__chevron { transform: rotate(180deg); }
.mobile-dropdown__panel {
  display: grid; grid-template-rows: 0fr; opacity: 0;
  transition: grid-template-rows 0.38s var(--ease), opacity 0.3s var(--ease);
}
.mobile-dropdown__panel.open { grid-template-rows: 1fr; opacity: 1; }
.mobile-dropdown__inner {
  min-height: 0; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  padding-top: 16px;
}
.mobile-dropdown__panel a { font-family: var(--serif); font-size: 1.2rem; color: var(--ink-soft); text-decoration: none; }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__burger span { width: 26px; height: 2px; background: var(--ink); border-radius: 2px; transition: 0.3s; }

/* mobile overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: 200;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  transform: translateY(-100%); opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
  pointer-events: none;
}
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu { overflow-y: auto; padding: 90px 24px 40px; }
.mobile-menu__close { position: fixed; top: 24px; right: 28px; font-size: 2.4rem; background: none; border: none; color: var(--ink); cursor: pointer; line-height: 1; z-index: 1; }
.mobile-menu__links { display: flex; flex-direction: column; align-items: center; gap: 18px; margin: auto 0; }
.mobile-menu__links a { font-family: var(--serif); font-size: 1.6rem; color: var(--ink); text-decoration: none; }
.mobile-menu__links a.btn { font-family: var(--sans); font-size: 1rem; color: #fff; }

/* ============ HERO ============ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: 78px;
  background: radial-gradient(ellipse at 70% 20%, var(--blue-soft) 0%, #fff 55%); }
.hero__grain {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }

/* Full-screen hero variant */
.hero--full {
  background: #eaf4f8 url("../assets/hero-nieuw.jpg") center/cover no-repeat;
  background-attachment: fixed;
}
.hero--full::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.7) 38%, rgba(255,255,255,0.12) 62%, rgba(255,255,255,0) 100%);
}
.hero--full .hero__inner { grid-template-columns: 1fr; }
.hero--full .hero__content { max-width: 560px; }
.hero__title { font-family: var(--serif); font-weight: 300; font-size: clamp(3rem, 6vw, 5rem); line-height: 1.02; color: var(--ink); margin-bottom: 24px; }
.hero__title em { font-style: italic; color: var(--ink); }
.hero__sub { font-size: 1.12rem; color: var(--ink-soft); max-width: 440px; margin-bottom: 36px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__visual { position: relative; }
.hero__image {
  position: relative; width: 100%; aspect-ratio: 4/5; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #d4e8f0, #eaf4f8) center/cover no-repeat;
  background-image: url("../assets/hero-nieuw.jpg");
  background-size: cover; background-position: center;
  box-shadow: var(--shadow-md);
}
.hero__badge {
  position: absolute; right: 18px; bottom: 18px;
  background: var(--blue); color: #fff; font-size: 0.82rem; font-weight: 500;
  padding: 10px 18px; border-radius: 12px; box-shadow: var(--shadow-sm);
}
.hero--full .hero__badge { right: 28px; bottom: 28px; z-index: 2; }

/* ============ USP ============ */
.usp { background: var(--grey-bg); padding: 40px 0; }
.usp__inner { display: grid; grid-template-columns: repeat(3, 1fr); row-gap: 28px; }
.usp__item {
  display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center;
  padding: 12px 24px; font-weight: 500; color: var(--ink);
  border-right: 1px solid var(--border);
}
.usp__item:nth-child(3n) { border-right: none; }

/* ============ WAAROM KIEZEN ============ */
.reasons { background: var(--grey-bg); }
.reasons__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; max-width: 100%; }
.reasons__item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; display: flex; align-items: center; gap: 12px; font-size: 0.95rem; color: var(--ink); box-sizing: border-box; }
.reasons__check { color: var(--blue); font-size: 1.2rem; font-weight: 500; flex-shrink: 0; }

/* ============ INTRO ============ */
.intro__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.intro__inner--single { grid-template-columns: 1fr; max-width: 760px; margin-inline: auto; text-align: left; }
.intro__image { aspect-ratio: 4/3.4; border-radius: var(--radius-lg); background: linear-gradient(135deg, #f5ede4, #eef4f7) center/cover no-repeat; background-image: url("../assets/balie.png"); background-size: cover; background-position: center; box-shadow: var(--shadow-sm); }
.intro__content h2 { font-size: clamp(2rem, 3.6vw, 2.8rem); margin-bottom: 22px; line-height: 1.1; }
.intro__content p { color: var(--ink-soft); margin-bottom: 26px; }
.checklist { list-style: none; display: grid; gap: 14px; }
.checklist li { position: relative; padding-left: 32px; color: var(--ink); }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 18px; height: 18px;
  border-radius: 50%; background: var(--blue);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ============ DIENSTEN ============ */
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 36px 30px; transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-card .icon--lg { transition: transform 0.3s var(--ease); margin-bottom: 18px; }
.service-card:hover .icon--lg { transform: scale(1.08); }
.service-card h3 { font-size: 1.5rem; margin-bottom: 10px; }
.service-card p { color: var(--ink-soft); font-size: 0.96rem; }
.service-card--link { display: block; text-decoration: none; color: inherit; }
.service-card--link:hover { border-color: var(--blue); }
.service-card__more { display: inline-block; margin-top: 16px; color: var(--blue); font-weight: 500; font-size: 0.92rem; }

/* ============ ESTHETISCH ============ */
.aesthetic { background: linear-gradient(160deg, #ebf3f8, #f9fbfd); }
.aesthetic__inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
.aesthetic__inner--centered { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
.aesthetic__inner--centered .aesthetic__form { text-align: center; }
.aesthetic__inner--centered .aesthetic__form .form { text-align: left; }
.aesthetic__form h2 { font-size: clamp(2rem, 3.6vw, 2.7rem); margin: 6px 0 16px; }
.aesthetic__form p { color: var(--ink-soft); margin-bottom: 26px; }
.aesthetic__quote {
  position: relative; text-align: center; padding: 56px 40px; overflow: hidden;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  background: url("../assets/gesprek-klant.png") center/cover no-repeat;
  display: flex; flex-direction: column; justify-content: center; min-height: 360px;
}
.aesthetic__quote::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(123,167,194,0.82), rgba(46,46,46,0.45));
}
.aesthetic__quote > * { position: relative; z-index: 1; }
.quote-mark { font-family: var(--serif); font-size: 5rem; color: #fff; line-height: 0.4; display: block; }
.quote-mark--end { text-align: right; }
.aesthetic__quote blockquote { font-size: clamp(1.6rem, 3vw, 2.3rem); color: #fff; line-height: 1.3; margin: 18px 0; }

/* ---------- Forms (shared) ---------- */
.form { display: grid; gap: 14px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { position: relative; }
.field--wide { grid-column: span 1; }
.field input, .field select, .field textarea,
.form input, .form select, .form textarea {
  width: 100%; font-family: var(--sans); font-size: 0.95rem; color: var(--ink);
  padding: 14px 16px; border: 1.5px solid var(--border); border-radius: 12px;
  background: #fff; transition: border-color 0.2s, box-shadow 0.2s;
}
.field textarea, .form textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus,
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(123,167,194,0.15);
}
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #d98a8a; }
.field.valid input, .field.valid select, .field.valid textarea { border-color: #7bc2a0; }
.field__check {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  color: #5bbf91; font-weight: 700; opacity: 0; transition: opacity 0.2s;
}
.field.valid .field__check { opacity: 1; }

/* lock + tooltip */
.field--lock .field__lock { position: absolute; right: 42px; top: 50%; transform: translateY(-50%); cursor: help; }
.field--lock .field__lock .icon { width: 18px; height: 18px; }
.field__lock { position: relative; }
.field__lock::after {
  content: attr(data-tooltip); position: absolute; bottom: 130%; right: 0;
  background: var(--ink); color: #fff; font-size: 0.72rem; padding: 6px 10px; border-radius: 8px;
  white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.field__lock:hover::after, .field__lock:focus::after { opacity: 1; }

.checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--ink-soft); cursor: pointer; }
.checkbox input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--blue); flex-shrink: 0; }

.form__success { color: var(--blue-dark); font-weight: 500; }
.hp { position: absolute; left: -9999px; }

/* ============ TEAM ============ */
.team__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.team-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 40px; display: flex; flex-direction: column; align-items: center; text-align: center;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.team-card__photo { width: 130px; height: 130px; border-radius: 50%; margin-bottom: 22px; background-size: cover; background-position: center; }
.team-card__photo--a { background-image: url("../assets/vrouw-eigenaar-mede.png"); }
.team-card__photo--b { background-image: url("../assets/man-eigenaar-mede.png"); }
.team-card__icon {
  width: 130px; height: 130px; border-radius: 50%; margin-bottom: 22px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-soft); color: var(--blue);
}
.team-card__icon svg { width: 64px; height: 64px; }
.team-card h3 { font-size: 1.6rem; margin-bottom: 6px; }
.team-card__role { text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.72rem; font-weight: 500; color: var(--blue); margin-bottom: 16px; }
.team-card p { color: var(--ink-soft); font-size: 0.96rem; }

/* ============ WERKWIJZE ============ */
.process__timeline { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; position: relative; }
.process__timeline::before {
  content: ""; position: absolute; top: 28px; left: 12%; right: 12%; height: 1.5px;
  background: var(--border); z-index: 0;
}
.process__step { position: relative; z-index: 1; text-align: center; }
.process__num {
  font-family: var(--serif); font-size: 2.6rem; font-weight: 500; color: var(--blue);
  display: inline-flex; align-items: center; justify-content: center;
  width: 58px; height: 58px; border-radius: 50%; background: var(--grey-bg);
  border: 1.5px solid var(--border); margin-bottom: 18px;
}
.process__step h3 { font-size: 1.4rem; margin-bottom: 8px; }
.process__step p { color: var(--ink-soft); font-size: 0.94rem; }

/* ============ WIZARD ============ */
.wizard-section { background: var(--grey-bg); }
.wizard { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 40px; max-width: 760px; margin: 0 auto; }
.wizard__progress-head { display: flex; justify-content: space-between; font-size: 0.8rem; font-weight: 500; color: var(--ink-soft); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.12em; }
.wizard__bar { height: 7px; background: var(--grey-bg); border-radius: 99px; overflow: hidden; margin-bottom: 32px; }
.wizard__bar-fill { height: 100%; width: 33%; background: var(--blue); border-radius: 99px; transition: width 0.4s var(--ease); }

.wizard__form { overflow: hidden; }
.wizard__track { display: flex; width: 300%; transition: transform 0.35s var(--ease); }
.wizard__step { width: 33.3333%; padding: 4px; opacity: 0.4; transition: opacity 0.35s; }
.wizard__step.active { opacity: 1; }
.wizard__step h3 { font-size: 1.7rem; margin-bottom: 24px; }
.wizard__q { margin-bottom: 22px; }
.wizard__q > label { display: block; font-weight: 500; margin-bottom: 10px; font-size: 0.95rem; }
.wizard__q select, .wizard__q textarea { width: 100%; padding: 14px 16px; border: 1.5px solid var(--border); border-radius: 12px; font-family: var(--sans); font-size: 0.95rem; }
.wizard__q select:focus, .wizard__q textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(123,167,194,0.15); }

.choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.choice {
  display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center;
  padding: 22px 14px; border: 2px solid var(--border); border-radius: var(--radius);
  cursor: pointer; transition: all 0.2s var(--ease); font-size: 0.9rem; font-weight: 500;
  min-width: 0; overflow-wrap: anywhere; word-break: break-word; hyphens: auto;
}
.choice:hover { border-color: var(--blue); }
.choice input { display: none; }
.choice > span { width: 100%; }
.choice__emoji { font-size: 1.8rem; }
.choice.selected { border-color: var(--blue); background: var(--blue-soft); }

.pills { display: flex; gap: 10px; flex-wrap: wrap; }
.pill {
  font-family: var(--sans); font-size: 0.9rem; font-weight: 500; cursor: pointer;
  padding: 10px 22px; border-radius: 99px; border: 1.5px solid var(--border); background: #fff; color: var(--ink);
  transition: all 0.2s var(--ease);
}
.pill:hover { border-color: var(--blue); }
.pill.selected { background: var(--blue); color: #fff; border-color: var(--blue); }

.wizard__nav { display: flex; justify-content: space-between; margin-top: 30px; }
.wizard__nav .btn--ghost.hidden { visibility: hidden; }

.wizard__success { text-align: center; padding: 30px 10px; }
.icon--success { width: 70px; height: 70px; stroke-width: 1.5; margin: 0 auto 20px; }
.wizard__success p { font-family: var(--serif); font-size: 1.8rem; color: var(--ink); max-width: 420px; margin: 0 auto; }

/* ============ TARIEVEN ============ */
.rates { background: var(--grey-bg); }
.rates__inner { text-align: center; max-width: 760px; margin: 0 auto; }
.rates__text { color: var(--ink-soft); margin-bottom: 32px; }
.rates__icons { display: flex; justify-content: center; gap: 48px; margin-top: 48px; flex-wrap: wrap; }
.rates__icon { display: flex; flex-direction: column; align-items: center; gap: 10px; font-weight: 500; font-size: 0.92rem; }

/* ============ REGISTER ============ */
.register__form { max-width: 760px; margin: 0 auto; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 44px; }

/* ============ FAQ ============ */
.faq__inner { max-width: 820px; margin: 0 auto; }
.faq__list { display: grid; gap: 14px; }
.faq__item {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 0 26px; transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.faq__item[open] { box-shadow: var(--shadow-sm); border-color: var(--blue); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 22px 0; font-family: var(--serif);
  font-size: 1.35rem; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; font-family: var(--sans); font-size: 1.6rem; font-weight: 400; color: var(--blue);
  flex-shrink: 0; line-height: 1; transition: transform 0.3s var(--ease);
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__answer { overflow: hidden; padding-bottom: 22px; }
.faq__answer p { color: var(--ink-soft); font-size: 0.98rem; margin: 0; max-width: 92%; }
.faq__item[open] .faq__answer { animation: faqOpen 0.35s var(--ease); }
@keyframes faqOpen { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

/* ============ LEGAL (Privacy & Voorwaarden) ============ */
.legal__inner { max-width: 820px; margin: 0 auto; }
.legal__content { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; }
.legal__content h3 { font-size: 1.4rem; margin-top: 28px; margin-bottom: 12px; }
.legal__content h3:first-child { margin-top: 0; }
.legal__content p { color: var(--ink-soft); line-height: 1.7; margin-bottom: 16px; }

/* ============ SUB-PAGE HERO ============ */
.page-hero { padding: 150px 0 60px; background: radial-gradient(ellipse at 70% 0%, var(--blue-soft) 0%, #fff 60%); text-align: center; }
.page-hero h1 { font-family: var(--serif); font-weight: 300; font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.08; color: var(--ink); margin: 14px 0 18px; }
.page-hero__sub { max-width: 640px; margin: 0 auto; color: var(--ink-soft); font-size: 1.12rem; line-height: 1.6; }

/* ============ TARIEVEN PAGINA ============ */
.rates-page__inner { max-width: 900px; margin: 0 auto; }
.rates-intro { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.rates-intro h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 14px; }
.rates-intro p { color: var(--ink-soft); line-height: 1.7; }
.rate-table-wrap { margin-bottom: 40px; }
.rate-table__title { font-size: 1.5rem; margin-bottom: 16px; color: var(--ink); }
.rate-table__title span { color: var(--blue); font-size: 1.1rem; font-style: italic; }
.rate-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.rate-table thead { background: var(--blue-soft); }
.rate-table th { text-align: left; padding: 14px 18px; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink); font-weight: 500; }
.rate-table th:last-child, .rate-table td:last-child { text-align: right; white-space: nowrap; }
.rate-table td { padding: 14px 18px; font-size: 0.95rem; color: var(--ink-soft); border-top: 1px solid var(--border); }
.rate-table td:first-child { font-weight: 500; color: var(--blue); width: 70px; }
.rate-table tbody tr:hover { background: var(--grey-bg); }
.rates-page__note { font-size: 0.85rem; color: #9aa7ad; text-align: center; margin: 8px 0 40px; }
.rates-page__cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============ REVIEWS ============ */
.reviews { background: var(--grey-bg); }
.reviews__inner { max-width: 680px; margin: 0 auto; text-align: center; }
.reviews__inner .eyebrow { display: block; text-align: center; margin-bottom: 12px; }
.reviews__stars { display: flex; justify-content: center; gap: 6px; margin-bottom: 22px; }
.reviews__stars .icon { width: 28px; height: 28px; fill: #f5b301; stroke: #f5b301; }
.reviews__text { color: var(--ink-soft); font-size: 1.05rem; line-height: 1.7; margin-bottom: 28px; }
.reviews__note { color: #9aa7ad; font-size: 0.82rem; margin-top: 16px; }

/* ============ INTRO LINK ============ */
.intro__link { margin-top: 24px; }

/* ============ INFO PAGINA (Over ons) ============ */
.info-page__inner { max-width: 800px; margin: 0 auto; }
.info-block { margin-bottom: 48px; }
.info-block > h2 { font-size: clamp(1.8rem, 3.4vw, 2.4rem); margin-bottom: 20px; color: var(--ink); }
.info-block h3 { font-size: 1.3rem; margin-top: 28px; margin-bottom: 10px; color: var(--ink); }
.info-block p { color: var(--ink-soft); line-height: 1.8; margin-bottom: 16px; }
.info-page__cta { text-align: center; background: var(--grey-bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 48px 32px; margin-top: 24px; }
.info-page__cta h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 12px; }
.info-page__cta p { color: var(--ink-soft); margin-bottom: 26px; }
.info-page__cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============ CONTACT ============ */
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact__info h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 22px; }
.contact__line { margin-bottom: 8px; color: var(--ink-soft); }
.contact__line a { color: var(--ink); text-decoration: none; }
.contact__line a:hover { color: var(--blue); }
.hours { width: 100%; max-width: 360px; margin: 22px 0; border-collapse: collapse; }
.hours td { padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.92rem; }
.hours td:last-child { text-align: right; color: var(--ink-soft); }
.contact__social { display: flex; gap: 14px; margin-top: 18px; }
.contact__social a { display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center; border: 1.5px solid var(--border); border-radius: 12px; transition: all 0.2s; }
.contact__social a:hover { background: var(--blue-soft); border-color: var(--blue); }
.contact__map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); height: 100%; min-height: 360px; }
.contact__map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; }

.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact__info { display: flex; flex-direction: column; gap: 24px; }
.contact__item { display: flex; flex-direction: column; gap: 6px; }
.contact__label { font-weight: 500; color: var(--ink); font-size: 0.95rem; }
.contact__value { color: var(--ink-soft); font-size: 0.94rem; line-height: 1.5; }
.contact__value a { color: var(--blue); text-decoration: none; }
.contact__value a:hover { text-decoration: underline; }
.contact__form { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.contact__form h2 { margin-bottom: 20px; font-size: 1.6rem; }

.hours-table { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.hours-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); }
.hours-row:last-child { border-bottom: none; }
.hours-row--closed .hours-time { color: #d94545; }
.hours-day { font-weight: 500; color: var(--ink); }
.hours-time { color: var(--ink-soft); }

/* ============ FOOTER ============ */
.footer { background: var(--grey-bg); border-top: 1px solid var(--border); padding: 64px 0 28px; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.footer__brand { max-width: 300px; }
.footer__logo img { height: 90px; margin-bottom: 16px; }
.footer__desc { color: var(--ink-soft); font-size: 0.88rem; line-height: 1.65; margin-bottom: 20px; }
.footer__contact { display: flex; flex-direction: column; gap: 8px; }
.footer__contact a, .footer__contact span { color: var(--ink-soft); text-decoration: none; font-size: 0.86rem; display: flex; align-items: center; gap: 9px; }
.footer__contact a:hover { color: var(--blue); }
.footer__contact .icon { width: 17px; height: 17px; stroke: var(--blue); flex-shrink: 0; }
.footer__social { display: flex; gap: 12px; margin-top: 16px; }
.footer__social a { display: inline-flex; width: 38px; height: 38px; align-items: center; justify-content: center; border: 1.5px solid var(--border); border-radius: 10px; transition: all 0.2s; }
.footer__social a:hover { background: var(--blue-soft); border-color: var(--blue); }
.footer__social .icon { width: 18px; height: 18px; stroke: var(--ink); fill: none; stroke-width: 1.6; }
.footer__col h4 { color: var(--ink); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px; }
.footer__links { display: flex; flex-direction: column; gap: 11px; }
.footer__links a { color: var(--ink-soft); text-decoration: none; font-size: 0.88rem; transition: color 0.2s, padding-left 0.2s; }
.footer__links a:hover { color: var(--blue); padding-left: 4px; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 48px auto 0; padding: 24px 24px 0; border-top: 1px solid var(--border); }
.footer__bottom-links { display: flex; gap: 22px; }
.footer__bottom-links a { color: var(--ink-soft); text-decoration: none; font-size: 0.82rem; }
.footer__bottom-links a:hover { color: var(--blue); }
.footer__copy { color: #9aa7ad; font-size: 0.8rem; }
.footer__copy a { color: #9aa7ad; }

@media (max-width: 900px) {
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer__brand { grid-column: 1 / -1; max-width: 340px; }
}
@media (max-width: 600px) {
  .footer { padding: 48px 0 24px; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__brand { grid-column: auto; }
  .footer__bottom { flex-direction: column; gap: 14px; align-items: flex-start; }
}

/* ============ FADE-UP ANIMATION ============ */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.fade-left.visible { opacity: 1; transform: translateX(0); }

.fade-right { opacity: 0; transform: translateX(30px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.fade-right.visible { opacity: 1; transform: translateX(0); }

.fade-scale { opacity: 0; transform: scale(0.95); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.fade-scale.visible { opacity: 1; transform: scale(1); }

/* ============ MOBILE STICKY BAR ============ */
.mobile-sticky {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: #fff; padding: 12px 20px; border-top: 1px solid var(--border);
  display: none; gap: 12px; justify-content: center;
  box-shadow: 0 -4px 20px rgba(46, 46, 46, 0.06);
  transform: translateY(100%); transition: transform 0.3s var(--ease);
}
.mobile-sticky.visible { transform: translateY(0); }
.mobile-sticky .btn { flex: 1; font-size: 0.9rem; padding: 12px 16px; }

/* ============ COOKIE BANNER ============ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  padding: 24px 20px; box-shadow: 0 -8px 40px rgba(46, 46, 46, 0.15);
  transform: translateY(100%); transition: transform 0.5s var(--ease);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner__inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.cookie-banner p { font-size: 0.95rem; color: var(--ink); margin: 0; flex: 1; line-height: 1.5; }
.cookie-banner__link { color: var(--blue); text-decoration: underline; font-weight: 500; }
.cookie-banner__actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-banner__accept, .cookie-banner__decline { padding: 12px 24px; font-size: 0.9rem; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__inner { gap: 40px; }
  .process__timeline::before { left: 14%; right: 14%; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .nav__links { display: none; }
  .mobile-sticky { display: flex; }
  .nav__burger { display: flex; }

  .hero { height: 100dvh; padding: 0; }
  .hero .container { max-width: 100%; padding: 0; }
  .hero__inner { grid-template-columns: 1fr; height: 100%; }
  .hero__content { padding: 80px 20px 60px; }
  .hero__visual { order: -1; }
  .hero__image { aspect-ratio: 16/11; }
  .hero--full { background-attachment: scroll !important; background-size: cover !important; }
  .hero__badge { font-size: 0.7rem; padding: 8px 14px; right: 16px; bottom: 16px; }

  .usp__inner { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; gap: 0; }
  .usp__item { border: none; padding: 28px 14px 16px; justify-content: flex-start; gap: 14px; }
  .usp__item .icon { width: 26px; height: 26px; flex-shrink: 0; }
  .usp__item span { display: flex; align-items: flex-start; justify-content: center; line-height: 1.35; }
  .reasons__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .reasons__item { padding: 16px 12px; font-size: 0.85rem; }

  .intro__inner, .aesthetic__inner, .team__grid, .contact__inner { grid-template-columns: 1fr; gap: 36px; }
  .services__grid { grid-template-columns: 1fr; }
  .choice-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .process__timeline { grid-template-columns: 1fr; gap: 0; }
  .process__timeline::before { display: none; }
  .process__step { display: grid; grid-template-columns: 58px 1fr; gap: 18px; text-align: left; align-items: start; padding-bottom: 28px; position: relative; }
  .process__step::before {
    content: ""; position: absolute; left: 28px; top: 58px; bottom: 0; width: 1.5px; background: var(--border);
  }
  .process__step:last-child::before { display: none; }
  .process__num { margin-bottom: 0; }
  .process__step h3 { grid-column: 2; }
  .process__step p { grid-column: 2; }

  .wizard-section { padding: 60px 10px; }
  .wizard, .register__form { padding: 20px 12px; max-width: 100%; width: 100%; box-sizing: border-box; }
  .wizard__step h3 { font-size: 1.4rem; margin-bottom: 18px; }
  .wizard__q { margin-bottom: 16px; }
  .wizard__q > label { font-size: 0.9rem; margin-bottom: 8px; }
  .wizard__q select, .wizard__q textarea { padding: 12px 14px; font-size: 0.9rem; box-sizing: border-box; }
  .choice-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .choice { padding: 16px 10px; font-size: 0.82rem; }
  .choice__emoji { font-size: 1.5rem; }
  .wizard__nav { margin-top: 20px; }
  .wizard__nav .btn { padding: 12px 20px; font-size: 0.9rem; }
  .insta__grid { grid-template-columns: 1fr 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .rates__icons { gap: 28px; }
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cookie-banner p { font-size: 0.85rem; }
  .cookie-banner__actions { width: 100%; justify-content: stretch; }
  .cookie-banner__accept, .cookie-banner__decline { flex: 1; }

  .page-hero { padding: 120px 0 48px; }
  .rate-table th, .rate-table td { padding: 11px 12px; font-size: 0.85rem; }
  .rate-table td:first-child { width: 56px; }
  .rate-table__title { font-size: 1.25rem; }
  .info-block > h2 { font-size: 1.7rem; }
}
