:root {
  --bg-white: #FFFFFF;
  --bg-cream: #FAF7F2;
  --bg-warm: #F0EAE0;
  --accent-taupe: #8B7C64;
  --accent-taupe-dark: #6F6451;
  --text-primary: #1F1F1F;
  --text-secondary: #6B6B6B;
  --text-muted: #999;
  --border: rgba(139, 124, 100, 0.25);
  --whatsapp: #25D366;
  --whatsapp-dark: #1DA851;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-primary);
  background: var(--bg-white);
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.2px;
}

.serif { font-family: 'Cormorant Garamond', Garamond, serif; }
.eyebrow {
  font-size: 11px;
  color: var(--accent-taupe-dark);
  letter-spacing: 4px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 20px;
  font-weight: 400;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 6vw; }

/* ========== HEADER ========== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--border);
  padding: 20px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.2s ease;
}
.header.scrolled { padding: 12px 6vw; }

.header .logo svg {
  width: 64px;
  height: 64px;
  transition: width 0.2s, height 0.2s;
}
.header.scrolled .logo svg {
  width: 48px;
  height: 48px;
}
.footer-brand .logo svg {
  width: 120px;
  height: 120px;
}

.logo {
  display: inline-block;
  line-height: 0;
}
.logo svg {
  width: 90px;
  height: 90px;
  display: block;
}

.nav {
  display: flex;
  gap: 36px;
  font-size: 13px;
  color: var(--text-secondary);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 400;
}
.nav a { transition: color 0.2s; position: relative; }
.nav a:hover { color: var(--accent-taupe-dark); }

.header-cta {
  background: var(--text-primary);
  color: white;
  padding: 12px 22px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  transition: background 0.2s;
}
.header-cta:hover { background: var(--accent-taupe-dark); }
button.header-cta { border: none; cursor: pointer; font-family: inherit; line-height: 1; }

/* ===== Hamburger button — alleen op mobile zichtbaar ===== */
.header-hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  align-items: center;
}
.hamburger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  transition: transform 0.25s ease, opacity 0.2s ease;
  border-radius: 1px;
}
.header-hamburger[aria-expanded="true"] .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header-hamburger[aria-expanded="true"] .hamburger-bar:nth-child(2) {
  opacity: 0;
}
.header-hamburger[aria-expanded="true"] .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== Mobile menu drawer ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-cream);
  z-index: 99;
  padding: 84px 6vw 32px;
  overflow-y: auto;
  display: none;
}
.mobile-menu:not([hidden]) {
  display: block;
  animation: mobileMenuIn 0.22s ease;
}
@keyframes mobileMenuIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.mobile-menu-inner {
  max-width: 480px;
  margin: 0 auto;
}
.mobile-menu-section {
  border-bottom: 0.5px solid var(--border);
  padding: 16px 0;
}
.mobile-menu-section:first-child {
  padding-top: 0;
}
.mobile-menu-link {
  display: block;
  padding: 10px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--text-primary);
  letter-spacing: 0;
  text-transform: none;
}
.mobile-menu-link:hover { color: var(--accent-taupe-dark); }
.mobile-menu-sublist {
  list-style: none;
  padding: 4px 0 8px 16px;
  margin: 0;
  border-left: 1px solid var(--border);
  margin-left: 6px;
}
.mobile-menu-sublist li { margin: 0; padding: 0; }
.mobile-menu-sublist a {
  display: block;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-secondary);
  letter-spacing: 0.3px;
  text-transform: none;
}
.mobile-menu-sublist a:hover { color: var(--accent-taupe-dark); }
.mobile-menu-sublink--all {
  font-style: italic;
  color: var(--accent-taupe-dark) !important;
  padding-top: 12px !important;
}
.mobile-menu-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--text-primary);
  color: white;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.mobile-menu-cta i { font-size: 18px; }

/* Body scroll-lock wanneer menu open */
body.menu-open { overflow: hidden; }

/* ========== HERO ========== */
.hero {
  padding: 120px 6vw 100px;
  background: var(--bg-white);
  text-align: center;
  position: relative;
}
/* (Decoratief verticaal lijntje boven hero-eyebrow verwijderd op user-request) */
.hero-inner { max-width: 760px; margin: 0 auto; }
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.05;
  font-weight: 300;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}
.hero h1 .accent {
  font-style: italic;
  color: var(--accent-taupe-dark);
}
.hero-sub {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 44px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--text-primary);
  color: white;
  padding: 18px 36px;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 400;
  transition: background 0.2s, transform 0.1s;
}
.hero-cta:hover { background: var(--accent-taupe-dark); }
.hero-cta:active { transform: scale(0.98); }
button.hero-cta { border: none; cursor: pointer; font-family: inherit; line-height: 1.2; }

.hero-meta {
  margin-top: 24px;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ========== VALUES ========== */
.values {
  background: var(--bg-cream);
  padding: 80px 6vw;
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}
.values-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 48px;
  text-align: center;
}
.value-icon {
  font-size: 32px;
  color: var(--accent-taupe-dark);
  margin-bottom: 18px;
  font-weight: 300;
}
.value h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.value p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========== SECTION BASE ========== */
.section { padding: 120px 6vw; }
.section-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 5vw, 50px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.3px;
}
.section-header h2 .accent {
  font-style: italic;
  color: var(--accent-taupe-dark);
}
.section-header p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-top: 20px;
  line-height: 1.8;
}

/* ========== SERVICES ========== */
.services-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--border);
}
.service {
  background: var(--bg-white);
  padding: 56px 36px;
  transition: background 0.3s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.service:hover { background: var(--bg-cream); }
.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--accent-taupe-dark);
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.service h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}
.service p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}
.service-features {
  list-style: none;
  font-size: 13px;
  color: var(--text-secondary);
}
.service-features li {
  padding: 6px 0;
  border-top: 0.5px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-features li:last-child { border-bottom: 0.5px solid var(--border); }
.service-features i { color: var(--accent-taupe-dark); font-size: 12px; }

/* ========== ABOUT ========== */
.about {
  background: var(--bg-cream);
  padding: 120px 6vw;
}
.about-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  border: 8px solid var(--accent-taupe);
  background: var(--bg-cream);
}
.about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.6) 100%);
  z-index: 2;
  pointer-events: none;
}
.about-image-label {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  color: white;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  z-index: 3;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.about-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 28px;
  letter-spacing: -0.3px;
}
.about-content h2 .accent { font-style: italic; color: var(--accent-taupe-dark); }
.about-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 20px;
}
.about-signature {
  margin-top: 32px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--text-primary);
}

/* ========== PROCESS ========== */
.process {
  padding: 120px 6vw;
  background: var(--bg-white);
}
.process-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}
.step {
  text-align: center;
  position: relative;
}
.step-line {
  position: absolute;
  top: 24px;
  left: 50%;
  width: 100%;
  height: 0.5px;
  background: var(--border);
  z-index: 0;
}
.step:last-child .step-line { display: none; }
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 0.5px solid var(--accent-taupe);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--accent-taupe-dark);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.step h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 8px;
}
.step p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========== TESTIMONIAL ========== */
.testimonial {
  padding: 120px 6vw;
  background: var(--bg-warm);
  text-align: center;
}
.testimonial-inner { max-width: 720px; margin: 0 auto; }
.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.5;
  margin: 28px 0;
  font-weight: 300;
}
.testimonial-author {
  font-size: 12px;
  color: var(--text-secondary);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.testimonial-divider {
  width: 40px;
  height: 1px;
  background: var(--accent-taupe);
  margin: 24px auto;
}

/* ========== CONTACT FORM ========== */
.contact {
  padding: 120px 6vw;
  background: var(--bg-white);
}
.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 28px;
  letter-spacing: -0.3px;
}
.contact-info h2 .accent { font-style: italic; color: var(--accent-taupe-dark); }
.contact-info p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-top: 0.5px solid var(--border);
  font-size: 14px;
}
.contact-detail:last-child { border-bottom: 0.5px solid var(--border); }
.contact-detail i { color: var(--accent-taupe-dark); font-size: 18px; }
.contact-detail .label {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
}

.contact-form {
  background: var(--bg-cream);
  padding: 48px 40px;
  border: 0.5px solid var(--border);
}
.form-group {
  margin-bottom: 22px;
}
.form-group label {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-weight: 400;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 0.5px solid var(--border);
  background: white;
  font-family: inherit;
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 300;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-taupe-dark);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  width: 100%;
  background: var(--text-primary);
  color: white;
  padding: 18px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 400;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
  margin-top: 8px;
}
.form-submit:hover { background: var(--accent-taupe-dark); }
.form-note {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-align: center;
  margin-top: 14px;
  text-transform: uppercase;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.show { display: block; }
.form-success i { font-size: 48px; color: var(--accent-taupe-dark); }
.form-success h3 { font-family: 'Cormorant Garamond', serif; font-size: 24px; margin: 16px 0 8px; font-weight: 400; }
.form-success p { font-size: 14px; color: var(--text-secondary); }

/* ========== FOOTER ========== */
.footer {
  background: var(--text-primary);
  color: rgba(255,255,255,0.6);
  padding: 80px 6vw 30px;
  font-size: 13px;
  font-weight: 300;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}
.footer-brand p {
  margin-top: 24px;
  line-height: 1.8;
  font-size: 13px;
}
.footer-col h5 {
  color: white;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 400;
}
.footer-col a, .footer-col p {
  display: block;
  padding: 4px 0;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  line-height: 1.8;
}
.footer-col a:hover { color: white; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 0.5px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
  flex-wrap: wrap;
  gap: 12px;
  text-transform: uppercase;
}

/* ========== REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s, transform 1s;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .nav { display: none; }
  .header > .header-cta { display: none; }
  .header-hamburger { display: flex; }
  .header { padding: 16px 6vw; }
  .hero { padding: 80px 6vw; }
  .section, .about, .process, .testimonial, .contact { padding: 80px 6vw; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .step-line { display: none; }
}

/* ========== WHATSAPP FLOATING BUTTON ========== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  z-index: 90;
  cursor: pointer;
  border: none;
  padding: 0;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.wa-float:hover { background: var(--whatsapp-dark); transform: scale(1.06); }
.wa-float:active { transform: scale(0.98); }
.wa-float i { font-size: 32px; line-height: 1; }
.wa-float svg { width: 32px; height: 32px; display: block; }
.wa-float[aria-disabled="true"] {
  background: var(--text-muted);
  cursor: default;
}
.wa-float[aria-disabled="true"]:hover { background: var(--text-muted); transform: none; }

/* ========== WHATSAPP MODAL ========== */
.wa-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 15, 0.88);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 6vw;
}
.wa-modal-overlay.open { display: flex; }
.wa-modal {
  background: #1a1a1a;
  color: white;
  max-width: 480px;
  width: 100%;
  padding: 48px 36px 40px;
  position: relative;
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  animation: wa-modal-in 0.3s ease;
}
@keyframes wa-modal-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.wa-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.55);
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: color 0.2s, background 0.2s;
}
.wa-modal-close:hover { color: white; background: rgba(255, 255, 255, 0.06); }
.wa-modal-eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--whatsapp);
  display: inline-block;
  margin-bottom: 16px;
}
.wa-modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 30px;
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.2px;
  margin-bottom: 12px;
  color: white;
}
.wa-modal-subtext {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 28px;
}
.wa-disabled-banner {
  background: rgba(255, 200, 100, 0.12);
  border: 0.5px solid rgba(255, 200, 100, 0.35);
  color: rgba(255, 235, 200, 0.95);
  padding: 12px 16px;
  margin-bottom: 24px;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.2px;
}
.wa-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wa-option {
  background: var(--accent-taupe-dark);
  color: white;
  border: none;
  padding: 15px 22px;
  font-family: inherit;
  font-size: 13.5px;
  letter-spacing: 0.3px;
  border-radius: 30px;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease, filter 0.2s ease, transform 0.1s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-decoration: none;
  font-weight: 400;
  line-height: 1.3;
}
.wa-option:hover { background: var(--accent-taupe-dark); filter: brightness(0.88); }
.wa-option:active { transform: scale(0.985); }
.wa-option i { font-size: 16px; opacity: 0.85; flex-shrink: 0; }
.wa-modal[data-disabled="true"] .wa-option {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  cursor: not-allowed;
  pointer-events: none;
}
.wa-modal-footer {
  margin-top: 22px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}
.wa-modal-footer a { color: rgba(255, 255, 255, 0.7); text-decoration: underline; }
.wa-modal-footer a:hover { color: white; }

@media (max-width: 480px) {
  .wa-float { bottom: 16px; right: 16px; width: 54px; height: 54px; }
  .wa-float i { font-size: 28px; }
  .wa-float svg { width: 28px; height: 28px; }
  .wa-modal { padding: 40px 22px 32px; }
  .wa-modal-title { font-size: 26px; }
}

/* ========== SERVICES CTA (homepage) ========== */
.services-cta {
  text-align: center;
  margin-top: 56px;
}
.services-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-taupe-dark);
  border-bottom: 0.5px solid var(--accent-taupe);
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s;
}
.services-all-link:hover { color: var(--text-primary); border-color: var(--text-primary); }
.services-all-link i { font-size: 14px; }

/* services-grid as anchors */
.services-grid a.service { color: inherit; text-decoration: none; }

/* services-grid 3-kolom variant (homepage preview, gerelateerde diensten) */
.services-grid--3col { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1024px) {
  .services-grid--3col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .services-grid--3col { grid-template-columns: 1fr; }
}

/* services-grid auto-fit variant (diensten-overzichtspagina per categorie):
   - geen taupe background → lege cellen onzichtbaar
   - 24px gap (luchtige cards) + 0.5px border per card als visuele afbakening
   - auto-fit minmax 280px → past zich aan aantal items aan (5=3+2, 4=2+2, 2=2 etc.) */
.services-grid--auto {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  background: transparent;
  gap: 24px;
}
.services-grid--auto .service {
  border: 0.5px solid var(--border);
}

/* Info-tegel: niet-klikbare variant van .service (werkgebied omliggend gebied) */
.service.service--info {
  cursor: default;
}
.service.service--info:hover {
  background: var(--bg-white);
}

/* Reviews-grid (alleen op /reviews/ — homepage gebruikt nog steeds de carousel)
   Vaste breakpoints zodat 6 reviews altijd schoon uitkomen: 1+1+1+1+1+1 mobiel,
   2+2+2 tablet, 3+3 desktop (i.p.v. asymmetrische 4+2 bij auto-fit). */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  background: transparent;
}
@media (min-width: 600px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (min-width: 960px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ========== REVIEWS CAROUSEL ========== */
.reviews-section {
  padding: 120px 6vw;
  background: var(--bg-warm);
}
.reviews-carousel {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
  will-change: transform;
}
.review-card {
  flex: 0 0 calc((100% - 48px) / 3);
  background: var(--bg-white);
  padding: 40px 32px;
  border: 0.5px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 280px;
}
.review-stars {
  color: var(--accent-taupe-dark);
  font-size: 14px;
  letter-spacing: 2px;
}
.review-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 19px;
  line-height: 1.55;
  font-weight: 400;
  color: var(--text-primary);
  margin: 0;
  flex: 1;
}
.review-author {
  border-top: 0.5px solid var(--border);
  padding-top: 16px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.review-name { color: var(--text-primary); font-weight: 500; }
.review-location { color: var(--text-muted); }
.review-service { margin-top: 6px; font-size: 11px; text-transform: none; letter-spacing: 0.3px; color: var(--text-muted); font-style: italic; }
.reviews-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}
.reviews-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0.5px solid var(--accent-taupe);
  background: var(--bg-white);
  color: var(--accent-taupe-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, opacity 0.2s;
  font-family: inherit;
}
.reviews-arrow:hover:not([disabled]) { background: var(--accent-taupe); color: white; }
.reviews-arrow[disabled] { opacity: 0.3; cursor: default; }
.reviews-arrow i { font-size: 16px; }
.reviews-dots {
  display: flex;
  gap: 8px;
}
.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(139, 124, 100, 0.3);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.reviews-dot.active { background: var(--accent-taupe-dark); transform: scale(1.3); }
.reviews-meta {
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 1024px) {
  .review-card { flex: 0 0 calc((100% - 24px) / 2); }
}
@media (max-width: 720px) {
  .review-card { flex: 0 0 100%; padding: 32px 24px; }
  .reviews-track { gap: 16px; }
}

/* ========== BREADCRUMB ========== */
.breadcrumb {
  padding: 24px 6vw 0;
  max-width: 1200px;
  margin: 0 auto;
}
.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.breadcrumb li:not(:last-child)::after {
  content: '·';
  margin-left: 8px;
  color: var(--accent-taupe);
}
.breadcrumb a {
  color: var(--text-secondary);
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--accent-taupe-dark); }
.breadcrumb [aria-current="page"] { color: var(--text-primary); }

/* ========== SERVICE HERO (detail-pagina) ========== */
.service-hero {
  padding: 60px 6vw 80px;
  background: var(--bg-white);
}
.service-hero-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.service-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5.5vw, 56px);
  line-height: 1.1;
  font-weight: 300;
  margin: 18px 0 22px;
  letter-spacing: -0.4px;
}
.service-hero-sub {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.service-hero-ctas {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-taupe-dark);
  border-bottom: 0.5px solid var(--accent-taupe);
  padding-bottom: 6px;
  transition: color 0.2s, border-color 0.2s;
}
.hero-cta-secondary:hover { color: var(--text-primary); border-color: var(--text-primary); }

/* ========== SERVICE BODY ========== */
.service-body {
  padding: 60px 6vw 80px;
  background: var(--bg-cream);
}
.service-body-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 72px;
  align-items: start;
}
.service-body-main {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-secondary);
}
.service-longintro {
  font-size: 17px;
  color: var(--text-primary);
  line-height: 1.85;
  margin-bottom: 36px;
}
.service-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3.4vw, 34px);
  font-weight: 300;
  line-height: 1.2;
  margin: 40px 0 20px;
  color: var(--text-primary);
}
.service-h2 .accent { font-style: italic; color: var(--accent-taupe-dark); }
.service-usp, .service-checklist {
  list-style: none;
  margin-bottom: 20px;
}
.service-usp li, .service-checklist li {
  padding: 12px 0;
  border-top: 0.5px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
}
.service-usp li:last-child, .service-checklist li:last-child {
  border-bottom: 0.5px solid var(--border);
}
.service-usp i, .service-checklist i {
  color: var(--accent-taupe-dark);
  font-size: 14px;
  margin-top: 5px;
  flex-shrink: 0;
}

.service-body-side {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: sticky;
  top: 100px;
}
.service-price, .service-area {
  background: var(--bg-white);
  padding: 28px 24px;
  border: 0.5px solid var(--border);
}
.service-price p, .service-area p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 14px 0 18px;
}
.service-price .hero-cta {
  width: 100%;
  justify-content: center;
  padding: 14px 18px;
  font-size: 12px;
  letter-spacing: 2px;
}

/* ========== WIE/WAT/WAAR-BLOK ========== */
.wie-wat-waar {
  padding: 100px 6vw;
  background: var(--bg-white);
}
.wwww-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--border);
}
.wwww-item {
  background: var(--bg-white);
  padding: 36px 28px;
}
.wwww-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  color: var(--accent-taupe-dark);
  margin-bottom: 12px;
}
.wwww-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ========== FAQ ========== */
.faq-block {
  padding: 100px 6vw;
  background: var(--bg-cream);
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-top: 0.5px solid var(--border);
}
.faq-item:last-child { border-bottom: 0.5px solid var(--border); }
.faq-question {
  cursor: pointer;
  padding: 22px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  letter-spacing: -0.1px;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { color: var(--accent-taupe-dark); }
.faq-icon-plus, .faq-icon-minus {
  color: var(--accent-taupe-dark);
  font-size: 16px;
  flex-shrink: 0;
}
.faq-icon-minus { display: none; }
.faq-item[open] .faq-icon-plus { display: none; }
.faq-item[open] .faq-icon-minus { display: inline-block; }
.faq-answer {
  padding: 0 0 24px;
}
.faq-answer p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.85;
  max-width: 720px;
}

/* ========== RELATED SERVICES ========== */
.related-services {
  padding: 100px 6vw;
  background: var(--bg-white);
}

/* ========== SERVICES OVERVIEW PAGE ========== */
.services-overview-hero {
  padding: 70px 6vw 60px;
  text-align: center;
  background: var(--bg-white);
}
.services-overview-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5.5vw, 56px);
  line-height: 1.1;
  font-weight: 300;
  margin: 18px 0 22px;
  letter-spacing: -0.4px;
}
.services-overview-sub {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto;
}
.services-category {
  padding: 60px 6vw;
}
.services-category:nth-of-type(even) { background: var(--bg-cream); }
.section-header-left {
  text-align: left;
  margin-left: 0;
  margin-bottom: 40px;
}
.service-readmore {
  margin-top: auto;
  padding-top: 22px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-taupe-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
}
.service-readmore i { font-size: 12px; }

/* ========== RESPONSIVE TWEAKS Fase 4 ========== */
@media (max-width: 900px) {
  .service-body-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-body-side { position: static; }
}
@media (max-width: 768px) {
  .service-hero { padding: 40px 6vw 60px; }
  .service-body { padding: 50px 6vw 60px; }
  .wie-wat-waar, .faq-block, .related-services { padding: 60px 6vw; }
  .wwww-grid { grid-template-columns: 1fr; }
  .services-category { padding: 50px 6vw; }
  .breadcrumb { padding-top: 20px; font-size: 10px; }
}

/* ========== NAV ACTIVE STATE ========== */
.nav a[aria-current="page"] {
  color: var(--accent-taupe-dark);
  border-bottom: 0.5px solid var(--accent-taupe);
  padding-bottom: 4px;
}

/* ========== PLAATSEN-LIJST (werkgebied index) ========== */
.plaatsenlist-grid {
  max-width: 1100px;
  margin: 0 auto;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
}
.plaatsenlist-grid li {
  background: var(--bg-white);
}
.plaatsenlist-grid a {
  display: block;
  padding: 28px 28px;
  transition: background 0.2s;
  color: inherit;
}
.plaatsenlist-grid a:hover { background: var(--bg-cream); }
.plaatsenlist-grid strong {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  color: var(--text-primary);
  display: block;
  margin-bottom: 8px;
}
.plaatsenlist-grid span {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ========== REGIO-OMLIGGEND PAGINA ========== */
.region-block {
  max-width: 880px;
  margin: 0 auto 56px;
  border-top: 0.5px solid var(--border);
  padding-top: 36px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
}
.region-block:last-child { margin-bottom: 0; }
.region-block-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 32px;
  font-weight: 300;
  margin-top: 8px;
  color: var(--accent-taupe-dark);
}
.region-block-body p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 14px;
}
.region-block-body a {
  color: var(--accent-taupe-dark);
  border-bottom: 0.5px solid var(--accent-taupe);
}
.region-block-body a:hover { color: var(--text-primary); }
.region-cta-inline {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  color: var(--accent-taupe-dark);
  border-bottom: 0.5px solid var(--accent-taupe);
}
.region-cta-inline:hover { color: var(--text-primary); }
@media (max-width: 720px) {
  .region-block { grid-template-columns: 1fr; gap: 16px; }
}

/* ========== CONTACT STANDALONE ========== */
.contact-standalone .contact-grid {
  align-items: start;
}
.contact-form-wrapper {
  background: var(--bg-cream);
  padding: 48px 40px;
  border: 0.5px solid var(--border);
}
.contact-form-wrapper .eyebrow { display: block; margin-bottom: 12px; }
.contact-form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3.4vw, 32px);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.contact-form-title .accent { font-style: italic; color: var(--accent-taupe-dark); }
.contact-form-intro {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 28px;
}
.contact-standalone .contact-form {
  background: var(--bg-white);
  padding: 32px 28px;
  border: 0.5px solid var(--border);
}
@media (max-width: 900px) {
  .contact-form-wrapper { padding: 32px 24px; }
}

/* ========== LEGAL PAGES ========== */
.legal-article {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.85;
}
.legal-article h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--text-primary);
  margin: 40px 0 12px;
  letter-spacing: -0.1px;
}
.legal-article p { margin-bottom: 14px; }
.legal-article ul { margin-bottom: 18px; padding-left: 24px; }
.legal-article li { margin-bottom: 6px; line-height: 1.7; }
.legal-article a {
  color: var(--accent-taupe-dark);
  border-bottom: 0.5px solid var(--accent-taupe);
}
.legal-article a:hover { color: var(--text-primary); }
.legal-todo {
  margin-top: 56px;
  padding: 20px 24px;
  background: var(--bg-warm);
  border-left: 2px solid var(--accent-taupe);
  font-size: 13px;
  color: var(--text-secondary);
}

/* ========== FOOTER LEGAL LINKS ========== */
.footer-legal-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-legal-links a {
  color: rgba(255,255,255,0.5);
}
.footer-legal-links a:hover { color: white; }
.footer-bottom-sep { color: rgba(255,255,255,0.25); margin: 0 4px; }

/* Wie/wat/waar/wanneer/hoe/waarom-grid (op /schoonmaakbedrijf-{stad}/) */
.wwwbox {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0 32px;
}
.wwwbox-item {
  padding: 18px 20px;
  background: var(--bg-cream);
  border-radius: 8px;
  border: 0.5px solid var(--border);
}
.wwwbox-item strong {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-taupe-dark);
  margin-bottom: 6px;
  font-weight: 500;
}
.wwwbox-item p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--text-primary); }
@media (max-width: 767px) {
  .wwwbox { grid-template-columns: 1fr; gap: 12px; }
}

/* FAQ details/summary (op /schoonmaakbedrijf-{stad}/) */
.faq { margin: 16px 0 32px; }
.faq-item {
  border-bottom: 0.5px solid var(--border);
  padding: 16px 0;
}
.faq-item summary {
  font-family: 'Cormorant Garamond', Garamond, serif;
  font-size: 21px;
  font-weight: 400;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  padding-right: 28px;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -2px;
  font-size: 22px;
  color: var(--accent-taupe-dark);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin: 10px 0 4px; line-height: 1.7; color: var(--text-secondary); font-size: 15px; }
