/* =============================================
   TRENT — Huisstijl CSS
   Kleuren: zand (#C4A882), donker (#2A2420), licht (#F7F3EE)
   Fonts: Playfair Display + Inter
   ============================================= */

/* FIX: knop in donkere featured card */
.aanbod__card--featured .btn--outline {
  color: var(--white);
  border-color: var(--sand);
}
.aanbod__card--featured .btn--outline:hover {
  background: var(--sand);
  color: var(--dark);
}

/* FIX: featured card image groter */
.aanbod__card--featured .aanbod__card-img {
  width: 320px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

/* REAL IMAGES */
.over-ons__real-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% center;
  border-radius: var(--radius-lg);
  display: block;
  aspect-ratio: 4/5;
}

.aanbod__real-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  aspect-ratio: 4/3;
}

.dienst__real-img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  aspect-ratio: 4/3;
}

.gallerij__real-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  transition: transform 0.3s ease;
}

.gallerij__full-item:hover .gallerij__real-img { transform: scale(1.03); }

.hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --sand:       #C4A882;
  --sand-light: #EDE5D8;
  --sand-dark:  #8B6F52;
  --dark:       #2A2420;
  --dark-soft:  #3D3530;
  --bg:         #F7F3EE;
  --bg-alt:     #EDE5D8;
  --white:      #FFFFFF;
  --text:       #3D3530;
  --text-muted: #7A6E68;
  --border:     #DDD4C8;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --radius:     8px;
  --radius-lg:  16px;
  --shadow:     0 4px 24px rgba(42,36,32,0.08);
  --shadow-lg:  0 8px 48px rgba(42,36,32,0.14);

  --container:  1200px;
  --section-py: 64px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

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

.section { padding: var(--section-py) 0; }
.section--alt { background: var(--bg-alt); }

/* =============================================
   TYPOGRAPHY
   ============================================= */
.section__label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sand-dark);
  display: block;
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section__sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
}

.section__header {
  text-align: center;
  margin-bottom: 64px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--dark);
  color: var(--white);
  border: 2px solid var(--dark);
}
.btn--primary:hover {
  background: var(--dark-soft);
  border-color: var(--dark-soft);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(42,36,32,0.2);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--sand);
}
.btn--outline:hover {
  background: var(--sand);
  color: var(--dark);
}

.btn--full { width: 100%; justify-content: center; }

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
}

.nav--scrolled {
  background: var(--white);
  padding: 12px 0;
  box-shadow: 0 2px 24px rgba(42,36,32,0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__logo-img {
  height: 72px;
  width: auto;
  display: block;
  filter: invert(1) brightness(2);
}

.nav--solid .nav__logo-img,
.nav--scrolled .nav__logo-img {
  filter: none;
}

.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  transition: color 0.3s;
  flex-shrink: 0;
}

.nav--scrolled .nav__logo { color: var(--dark); }

.nav__links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}

.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--sand);
  transition: width 0.2s;
}

.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }

.nav--scrolled .nav__links a { color: var(--text-muted); }
.nav--scrolled .nav__links a:hover { color: var(--dark); }

.nav__cta { margin-left: 8px; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav--scrolled .nav__hamburger span { background: var(--dark); }

.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px 24px 24px;
  background: var(--white);
  border-top: 1px solid var(--border);
  gap: 4px;
}

.nav__mobile.open { display: flex; }

.nav__mobile-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  padding: 10px 0;
  width: 100%;
  border-bottom: 1px solid var(--border);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #2A2420 0%, #4A3828 50%, #6B5742 100%);
  overflow: hidden;
}

/* Subtle texture pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(196,168,130,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(196,168,130,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(42,36,32,0.6) 0%, transparent 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding-top: 120px;
  margin-bottom: 80px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.hero__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__actions--bottom {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  white-space: nowrap;
}

.hero__actions--bottom .btn {
  min-width: 220px;
  text-align: center;
}

.hero__scroll {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* =============================================
   USP BAR
   ============================================= */
.usp-bar {
  background: var(--dark);
  padding: 28px 0;
}

.usp-bar__grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.usp-bar__item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 500;
}

.usp-bar__item svg {
  width: 20px;
  height: 20px;
  color: var(--sand);
  flex-shrink: 0;
}

/* =============================================
   OVER ONS
   ============================================= */
.over-ons__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.over-ons__img-wrap {
  position: relative;
}

.over-ons__img-placeholder {
  aspect-ratio: 4/5;
  background: var(--sand-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  border: 2px dashed var(--border);
}

.over-ons__badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.over-ons__badge strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--sand);
  line-height: 1;
}

.over-ons__badge span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  display: block;
  margin-top: 4px;
}

.over-ons__text {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.over-ons__list {
  list-style: none;
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.over-ons__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 0.9rem;
}

.over-ons__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sand);
  flex-shrink: 0;
}

/* =============================================
   AANBOD
   ============================================= */
.aanbod__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.aanbod__grid2 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.aanbod2__card {
  display: block;
  text-decoration: none;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.aanbod2__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.aanbod2__img {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.aanbod2__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.aanbod2__card:hover .aanbod2__img img {
  transform: scale(1.05);
}

.aanbod2__body {
  padding: 20px;
}

.aanbod2__body h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.aanbod2__body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.aanbod__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.aanbod__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.aanbod__card--featured {
  grid-column: span 2;
  display: flex;
  gap: 32px;
  align-items: center;
  background: var(--dark);
  color: var(--white);
  border-color: transparent;
}

.aanbod__card--featured h3 { color: var(--white); }
.aanbod__card--featured p { color: rgba(255,255,255,0.7); }

.aanbod__card-img {
  flex-shrink: 0;
  width: 260px;
}

.aanbod__card-img--placeholder {
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  border: 2px dashed rgba(255,255,255,0.2);
}

.aanbod__card-body { flex: 1; }
.aanbod__card-body h3 { margin-bottom: 12px; }

.aanbod__card-icon {
  width: 48px;
  height: 48px;
  background: var(--sand-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.aanbod__card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--sand-dark);
}

.aanbod__card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.aanbod__card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* =============================================
   WERKWIJZE
   ============================================= */
.werkwijze__steps {
  display: flex;
  align-items: stretch;
  gap: 16px;
}

.werkwijze__step {
  flex: 1;
  text-align: center;
  padding: 40px 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.werkwijze__num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--sand-light);
  line-height: 1;
  margin-bottom: 16px;
}

.werkwijze__step h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.werkwijze__step p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.werkwijze__arrow {
  font-size: 1.5rem;
  color: var(--sand);
  margin-top: 60px;
  flex-shrink: 0;
}

/* =============================================
   GALLERIJ
   ============================================= */
.gallerij__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallerij__item--large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallerij__placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  border: 2px dashed var(--border);
  overflow: hidden;
  transition: transform 0.2s;
}

.gallerij__item--large .gallerij__placeholder { min-height: 420px; }

.gallerij__item:hover .gallerij__placeholder { transform: scale(1.01); }

.gallerij__cta {
  text-align: center;
  margin-top: 40px;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.testimonial__stars {
  color: var(--sand);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.testimonial__quote {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text);
  flex: 1;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sand);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial__author strong {
  display: block;
  font-size: 0.875rem;
  color: var(--dark);
  font-weight: 600;
}

.testimonial__author span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* =============================================
   FAQ
   ============================================= */
.faq__container { max-width: 760px; }

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq__item.open { border-color: var(--sand); }

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  transition: background 0.2s;
}

.faq__question:hover { background: var(--bg); }

.faq__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--sand-dark);
  transition: transform 0.3s;
}

.faq__item.open .faq__icon { transform: rotate(180deg); }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq__item.open .faq__answer {
  max-height: 300px;
}

.faq__answer p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* =============================================
   CONTACT
   ============================================= */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact__sub {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
  margin-top: 16px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact__detail svg {
  width: 20px;
  height: 20px;
  color: var(--sand);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact__detail strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact__detail span,
.contact__detail a {
  font-size: 0.95rem;
  color: var(--dark);
  font-weight: 500;
}

.contact__detail a:hover { color: var(--sand-dark); }

.contact__social {
  display: flex;
  gap: 12px;
}

.contact__social-link {
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  transition: all 0.2s;
}

.contact__social-link:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.contact__form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.contact__form { display: flex; flex-direction: column; gap: 20px; }

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form__row--3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form__group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.05em;
}

.form__group input,
.form__group select,
.form__group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--sand);
  box-shadow: 0 0 0 3px rgba(196,168,130,0.15);
}

.form__group textarea { resize: vertical; min-height: 100px; }

.form__note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: -8px;
}

.form__section-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  padding-bottom: 8px;
  border-bottom: 1.5px solid var(--border);
  margin-bottom: 4px;
  margin-top: 8px;
}

.form__options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form__option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  font-size: 0.9rem;
}

.form__option:has(input:checked) {
  border-color: var(--sand);
  background: rgba(196,168,130,0.08);
}

.form__option input[type="radio"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid var(--border);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.2s;
}

.form__option input[type="radio"]:checked {
  border-color: var(--sand);
  background: var(--sand);
}

.form__option input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 4px;
  height: 7px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

.form__checkboxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.form__check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  font-size: 0.9rem;
}

.form__check:has(input:checked) {
  border-color: var(--sand);
  background: rgba(196,168,130,0.08);
}

.form__check input[type="checkbox"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid var(--border);
  border-radius: 4px;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.2s, background 0.2s;
}

.form__check input[type="checkbox"]:checked {
  border-color: var(--sand);
  background: var(--sand);
}

.form__check input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%) rotate(45deg);
  width: 4px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

.dienst__formaten {
  margin: 24px 0 28px;
}

.dienst__formaten-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.dienst__formaten-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

.dienst__formaat {
  padding: 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dienst__formaat strong {
  font-size: 1rem;
  color: var(--dark);
}

.dienst__formaat span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.dienst__formaat--other {
  border-style: dashed;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding-top: 40px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
}

.footer__logo-img {
  height: 100px;
  width: auto;
  filter: invert(1) brightness(2);
  display: block;
  margin-bottom: 16px;
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 16px;
  letter-spacing: 0.08em;
}

.footer__brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
}

.footer__social a:hover {
  background: var(--sand);
  color: var(--dark);
  border-color: var(--sand);
}

.footer__col h3, .footer__col h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__col a,
.footer__col span {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer__col a:hover { color: var(--sand); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-links a {
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.footer__bottom-links a:hover { color: rgba(255,255,255,0.8); }

/* =============================================
   NAV SOLID (subpagina's)
   ============================================= */
.nav--solid {
  background: var(--white);
  box-shadow: 0 2px 24px rgba(42,36,32,0.08);
}

.nav--solid .nav__logo { color: var(--dark); }
.nav--solid .nav__links a { color: var(--text-muted); }
.nav--solid .nav__links a:hover { color: var(--dark); }
.nav--solid .nav__hamburger span { background: var(--dark); }

.nav__link--active {
  color: var(--white) !important;
  font-weight: 600 !important;
}

.nav--scrolled .nav__link--active { color: var(--dark) !important; }
.nav--solid .nav__link--active { color: var(--dark) !important; }

.nav__link--active::after { width: 100% !important; background: var(--sand) !important; }

/* =============================================
   PAGE HERO (subpagina's)
   ============================================= */
.page-hero {
  background: var(--bg-alt);
  padding: 140px 0 64px;
  border-bottom: 1px solid var(--border);
}

.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.15;
}

.page-hero__sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
}

/* =============================================
   LEGAL PAGES
   ============================================= */
.legal__content {
  max-width: 800px;
  margin: 0 auto;
}

.legal__section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.legal__section:last-of-type {
  border-bottom: none;
}

.legal__section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 16px;
}

.legal__section p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 10px;
}

.legal__section ul {
  margin: 10px 0 10px 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.legal__section li {
  margin-bottom: 6px;
}

.legal__footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: var(--dark);
  padding: 64px 0;
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-banner__title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--white);
  margin-bottom: 8px;
}

.cta-banner__sub {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
}

.btn--sand {
  background: var(--sand);
  color: var(--dark);
  border: 2px solid var(--sand);
  flex-shrink: 0;
}

.btn--sand:hover {
  background: #d4b896;
  border-color: #d4b896;
  transform: translateY(-1px);
}

/* =============================================
   DIENST (aanbod pagina)
   ============================================= */
.dienst__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.dienst__grid--reverse { direction: rtl; }
.dienst__grid--reverse > * { direction: ltr; }

.dienst__img-placeholder {
  aspect-ratio: 4/3;
  background: var(--sand-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  border: 2px dashed var(--border);
}

.dienst__icon {
  width: 52px;
  height: 52px;
  background: var(--sand-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.dienst__icon svg {
  width: 26px;
  height: 26px;
  color: var(--sand-dark);
}

.dienst__text {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.dienst__list {
  list-style: none;
  margin: 20px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dienst__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 0.9rem;
}

.dienst__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sand);
  flex-shrink: 0;
}

/* =============================================
   WAARDEN (over ons pagina)
   ============================================= */
.waarden__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.waarde {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.waarde:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.waarde__icon {
  width: 48px;
  height: 48px;
  background: var(--sand-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.waarde__icon svg {
  width: 24px;
  height: 24px;
  color: var(--sand-dark);
}

.waarde h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.waarde p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =============================================
   GALLERIJ FULL (gallerij pagina)
   ============================================= */
.gallerij__filters {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter__btn {
  padding: 10px 22px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--white);
  transition: all 0.2s;
}

.filter__btn:not(.filter__btn--active):hover {
  border-color: var(--sand);
  color: var(--dark);
}

.filter__btn--active {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}

.gallerij__full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallerij__full-placeholder {
  aspect-ratio: 4/3;
  background: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  border: 2px dashed var(--border);
  transition: transform 0.2s;
  overflow: hidden;
}

.gallerij__full-item:hover .gallerij__full-placeholder {
  transform: scale(1.02);
}

/* =============================================
   FAQ PAGINA
   ============================================= */
.faq__page-container {
  max-width: 820px;
}

.faq__categories {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-bottom: 64px;
}

.faq__category-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--sand-light);
}

.faq__still-question {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  border: 1px solid var(--border);
}

.faq__still-question h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.faq__still-question p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* =============================================
   RESPONSIVE EXTRA
   ============================================= */
@media (max-width: 768px) {
  .dienst__grid { grid-template-columns: 1fr; gap: 40px; }
  .dienst__grid--reverse { direction: ltr; }
  .dienst__grid--reverse .dienst__img { order: -1; }
  .dienst__grid--reverse .dienst__content { order: 1; }
  .waarden__grid { grid-template-columns: 1fr 1fr; }
  .gallerij__full-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .waarden__grid { grid-template-columns: 1fr; }
  .gallerij__full-grid { grid-template-columns: 1fr; }
  .faq__still-question { padding: 32px 24px; }
  .hero__actions--bottom { bottom: 100px; width: calc(100% - 48px); }
  .hero__actions--bottom .btn { min-width: 0; width: 100%; }
  .hero__content { padding-top: 60px; }
  .hero__scroll { bottom: 16px; }
}

/* =============================================
   FADE-IN ANIMATIONS
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.aanbod__card:nth-child(1) { transition-delay: 0s; }
.aanbod__card:nth-child(2) { transition-delay: 0.1s; }
.aanbod__card:nth-child(3) { transition-delay: 0.15s; }
.aanbod__card:nth-child(4) { transition-delay: 0.2s; }
.aanbod__card:nth-child(5) { transition-delay: 0.25s; }

.testimonial:nth-child(1) { transition-delay: 0s; }
.testimonial:nth-child(2) { transition-delay: 0.1s; }
.testimonial:nth-child(3) { transition-delay: 0.2s; }

.werkwijze__step:nth-child(1) { transition-delay: 0s; }
.werkwijze__step:nth-child(3) { transition-delay: 0.1s; }
.werkwijze__step:nth-child(5) { transition-delay: 0.2s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }

  .aanbod__grid { grid-template-columns: 1fr 1fr; }
  .aanbod__card--featured { grid-column: span 2; flex-direction: column; }
  .aanbod__card-img { width: 100%; }
  .aanbod__grid2 { grid-template-columns: repeat(3, 1fr); }

  .over-ons__grid { gap: 48px; }
  .contact__grid { gap: 48px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --section-py: 56px; }

  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .hero__title { font-size: 2.6rem; }
  .hero__actions { flex-direction: column; align-items: flex-start; }

  .usp-bar__grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  .over-ons__grid { grid-template-columns: 1fr; }
  .over-ons__badge { right: 0; bottom: -20px; }

  .aanbod__grid { grid-template-columns: 1fr; }
  .aanbod__card--featured { grid-column: span 1; }
  .aanbod__grid2 { grid-template-columns: repeat(2, 1fr); }

  .werkwijze__arrow { display: none; }

  .gallerij__grid { grid-template-columns: 1fr 1fr; }
  .gallerij__item--large { grid-column: span 2; grid-row: span 1; }
  .gallerij__item--large .gallerij__placeholder { min-height: 260px; }

  .testimonials__grid { grid-template-columns: 1fr; }

  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .form__row { grid-template-columns: 1fr; }
  .form__checkboxes { grid-template-columns: 1fr 1fr; }
  .dienst__formaten-grid { grid-template-columns: 1fr 1fr; }

  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .werkwijze__steps { flex-direction: column; }
  .usp-bar__grid { grid-template-columns: 1fr; }
  .gallerij__grid { grid-template-columns: 1fr; }
  .gallerij__item--large { grid-column: span 1; }
  .footer__grid { grid-template-columns: 1fr; }
  .contact__form-wrap { padding: 24px; }
  .aanbod__grid2 { grid-template-columns: 1fr; }
  .form__checkboxes { grid-template-columns: 1fr; }
  .dienst__formaten-grid { grid-template-columns: 1fr; }
  .nav__logo-img { height: 52px; }
}

/* =============================================
   STATS BAR
   ============================================= */
.stats__grid {
  display: flex;
  justify-content: center;
  gap: 80px;
  text-align: center;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stats__number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}

.stats__label {
  font-size: 0.9rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

@media (max-width: 600px) {
  .stats__grid { gap: 40px; flex-wrap: wrap; }
}

/* =============================================
   COOKIE BANNER
   ============================================= */
#cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 680px;
  background: var(--dark);
  color: #fff;
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 9999;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

#cookie-banner p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
  color: rgba(255,255,255,0.85);
}

#cookie-banner a {
  color: var(--gold);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

#cookie-banner .btn--outline {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}

#cookie-banner .btn--outline:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.btn--sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

/* FLOATING WHATSAPP BUTTON */
.float-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 900;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #2A2420;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.float-whatsapp:hover {
  background: #C4A882;
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
}

.float-whatsapp svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
}

.cookie-banner--hide {
  opacity: 0;
  transform: translateX(-50%) translateY(16px);
}

@media (max-width: 600px) {
  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    bottom: 0;
    left: 0;
    transform: none;
    width: 100%;
    border-radius: 12px 12px 0 0;
  }
  .cookie-banner--hide {
    transform: translateY(16px);
  }
}
