:root {
  --dark: #0a0a0a;
  --dark-2: #111111;
  --dark-3: #1a1a1a;
  --copper: #C17F59;
  --copper-dark: #A06840;
  --copper-light: #D4956B;
  --sage: #7BA68D;
  --sage-dark: #5E8A72;
  --cream: #f5f0eb;
  --cream-dark: #e8dfcc;
  --text-muted: rgba(245, 240, 235, 0.5);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: var(--copper); color: #fff; }

/* ---- FILM GRAIN ---- */
.grain {
  position: fixed; inset: 0; z-index: 9990; pointer-events: none; opacity: 0.025;
}
.grain svg { width: 100%; height: 100%; }

/* ---- CURSOR GLOW ---- */
.cursor-glow {
  position: fixed; width: 600px; height: 600px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(193,127,89,0.07) 0%, transparent 70%);
  transform: translate(-50%, -50%); z-index: 1; display: none;
  transition: opacity 0.3s;
}

/* ---- PROGRESS BAR ---- */
.progress-bar {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 9999; width: 0%;
  background: linear-gradient(90deg, var(--copper), var(--sage));
}

/* ---- SCROLL INDICATOR ---- */
.scroll-indicator {
  position: fixed; right: 28px; top: 50%; transform: translateY(-50%); z-index: 50;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.scroll-indicator-line {
  width: 1px; height: 60px; background: rgba(245,240,235,0.1); position: relative; overflow: hidden;
}
.scroll-indicator-line::after {
  content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: var(--copper); animation: scrollDown 2.5s ease-in-out infinite;
}
@keyframes scrollDown { 0% { top: -100%; } 50% { top: 0; } 100% { top: 100%; } }
.scroll-indicator span {
  writing-mode: vertical-rl; font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245,240,235,0.25);
}

/* ---- NAV ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 24px 48px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav.scrolled {
  padding: 14px 48px;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(193,127,89,0.12);
}
.nav-logo {
  display: flex; align-items: center; gap: 12px; z-index: 2;
}
.logo-mark {
  width: 36px; height: 36px; border: 1.5px solid var(--copper); transform: rotate(45deg);
  display: flex; align-items: center; justify-content: center; position: relative;
}
.logo-mark::after {
  content: ''; width: 8px; height: 8px; background: var(--copper); transform: rotate(0deg);
}
.logo-text { display: flex; flex-direction: column; }
.logo-text-top {
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  letter-spacing: 0.02em; line-height: 1.1;
}
.logo-text-bottom {
  font-size: 0.58rem; font-weight: 500; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--copper); line-height: 1;
}
.nav-links {
  display: none; list-style: none; gap: 36px; align-items: center;
}
.nav-links > li { position: relative; }
.nav-links a {
  font-size: 0.78rem; font-weight: 500; color: rgba(245,240,235,0.6);
  letter-spacing: 0.04em; transition: color 0.3s; position: relative;
}
.nav-links > li > a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
  background: var(--copper); transition: width 0.3s;
}
.nav-links a:hover { color: var(--cream); }
.nav-links > li > a:hover::after { width: 100%; }
.nav-cta {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em;
  color: var(--dark) !important; background: var(--copper); padding: 12px 28px;
  transition: all 0.3s;
}
.nav-cta:hover { background: var(--copper-light); transform: translateY(-1px); }
.nav-hamburger {
  width: 28px; height: 20px; cursor: pointer; display: flex;
  flex-direction: column; justify-content: space-between; z-index: 101;
}
.nav-hamburger span {
  display: block; width: 100%; height: 1.5px; background: var(--cream);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); transform-origin: center;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ---- DROPDOWN (MEGA MENU) ---- */
.has-dropdown { padding: 8px 0; }
.has-dropdown > a { display: inline-flex; align-items: center; gap: 6px; }
/* Onzichtbare hover-brug onder de link, vult de gap tot het menu */
.has-dropdown > a::before {
  content: ''; position: absolute; left: -16px; right: -16px;
  bottom: -44px; height: 48px;
  /* debug: background: rgba(255,0,0,0.1); */
}
.dropdown-caret {
  display: inline-block; width: 8px; height: 8px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.3s;
}
.has-dropdown:hover .dropdown-caret,
.has-dropdown.open .dropdown-caret,
.has-dropdown:focus-within .dropdown-caret {
  transform: rotate(-135deg) translate(-2px, -2px);
}

.mega-menu {
  position: fixed; left: 0; right: 0; top: 72px;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(24px);
  border-top: 1px solid rgba(193,127,89,0.15);
  border-bottom: 1px solid rgba(193,127,89,0.15);
  padding: 48px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 99;
}
/* Extra onzichtbare hover-brug bovenop de menu */
.mega-menu::before {
  content: ''; position: absolute;
  top: -20px; left: 0; right: 0; height: 22px;
}
.nav.scrolled .mega-menu { top: 58px; }
.has-dropdown:hover .mega-menu,
.has-dropdown.open .mega-menu,
.has-dropdown:focus-within .mega-menu {
  opacity: 1; visibility: visible; pointer-events: all; transform: translateY(0);
}
.mega-menu-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 32px;
}
.mega-col h6 {
  font-family: var(--font-display); font-size: 0.95rem; font-weight: 700;
  color: var(--copper); margin-bottom: 16px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(193,127,89,0.18);
  letter-spacing: 0.02em;
}
.mega-col h6 a { color: inherit; }
.mega-col ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.mega-col li a {
  display: block; font-size: 0.82rem; font-weight: 400;
  color: rgba(245,240,235,0.65); padding: 6px 0;
  transition: color 0.2s, padding-left 0.2s; letter-spacing: 0;
}
.mega-col li a:hover { color: var(--copper); padding-left: 6px; }
.mega-col li a::after { display: none; }

/* Mobile Overlay */
.mobile-overlay {
  position: fixed; inset: 0; z-index: 99; background: var(--dark);
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
  padding: 100px 24px 40px;
  opacity: 0; pointer-events: none; transition: opacity 0.5s;
  overflow-y: auto;
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }
.mobile-overlay nav {
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  width: 100%; max-width: 480px;
}
.mobile-overlay > nav > a,
.mobile-overlay .mobile-section-title {
  font-family: var(--font-display); font-size: 1.7rem; font-weight: 400;
  color: var(--cream); opacity: 0.85; transition: all 0.3s;
}
.mobile-overlay > nav > a:hover { opacity: 1; color: var(--copper); }
.mobile-section {
  width: 100%; border-top: 1px solid rgba(245,240,235,0.08); padding: 18px 0; text-align: center;
}
.mobile-section-title {
  font-size: 1.2rem; color: var(--copper); margin-bottom: 12px; display: block;
}
.mobile-section ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.mobile-section ul a {
  font-size: 0.95rem; font-family: var(--font-body); color: rgba(245,240,235,0.7);
  padding: 4px 0;
}
.mobile-section ul a:hover { color: var(--copper); }

/* ---- HERO ---- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: flex-end;
  padding: 0 48px 100px; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; filter: brightness(0.35);
}
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--copper); margin-bottom: 28px;
  animation: fadeUp 1s 0.3s both;
}
.hero-tag::before { content: ''; width: 36px; height: 1.5px; background: var(--copper); }
.hero h1 {
  font-family: var(--font-display); font-size: clamp(3.2rem, 6vw, 5.5rem);
  font-weight: 400; line-height: 1.08; margin-bottom: 28px; letter-spacing: -0.02em;
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line span {
  display: inline-block; animation: slideUp 1s cubic-bezier(0.16,1,0.3,1) both;
}
.hero h1 .line:nth-child(1) span { animation-delay: 0.4s; }
.hero h1 .line:nth-child(2) span { animation-delay: 0.6s; }
.hero h1 em { font-style: italic; color: var(--copper); }
@keyframes slideUp { from { transform: translateY(120%); } to { transform: translateY(0); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.hero p {
  font-size: 1.05rem; color: rgba(245,240,235,0.6); max-width: 500px;
  line-height: 1.8; margin-bottom: 40px; font-weight: 300; animation: fadeUp 1s 0.8s both;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeUp 1s 1s both; }
.btn-copper {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; background: var(--copper); color: var(--dark);
  font-weight: 600; font-size: 0.82rem; letter-spacing: 0.04em;
  transition: all 0.3s; cursor: pointer;
}
.btn-copper:hover { background: var(--copper-light); transform: translateY(-2px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; border: 1px solid rgba(245,240,235,0.2);
  color: var(--cream); font-weight: 500; font-size: 0.82rem;
  letter-spacing: 0.04em; transition: all 0.3s;
}
.btn-ghost:hover { border-color: var(--copper); color: var(--copper); transform: translateY(-2px); }

.hero-stats {
  position: absolute; right: 60px; bottom: 100px; z-index: 2;
  display: none; flex-direction: column; gap: 40px; animation: fadeUp 1s 1.2s both;
}
.hero-stat { text-align: right; }
.hero-stat-num {
  font-family: var(--font-display); font-size: 2.8rem; font-weight: 700; line-height: 1;
}
.hero-stat-label {
  font-size: 0.65rem; font-weight: 500; color: rgba(245,240,235,0.4);
  letter-spacing: 0.15em; text-transform: uppercase; margin-top: 4px;
}
.hero-scroll {
  position: absolute; bottom: 40px; left: 48px; z-index: 2;
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(245,240,235,0.3);
  display: flex; align-items: center; gap: 12px;
}
.hero-scroll-line {
  width: 40px; height: 1.5px; background: rgba(245,240,235,0.15);
  position: relative; overflow: hidden;
}
.hero-scroll-line::after {
  content: ''; position: absolute; left: -100%; top: 0; width: 100%; height: 100%;
  background: var(--copper); animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0% { left: -100%; } 50% { left: 0; } 100% { left: 100%; } }

/* ---- SUB-HERO (kleinere hero voor dienstenpaginas) ---- */
.sub-hero {
  position: relative; min-height: 70vh; display: flex; align-items: center;
  padding: 140px 48px 80px; overflow: hidden;
}
.sub-hero-bg { position: absolute; inset: 0; }
.sub-hero-bg img {
  width: 100%; height: 100%; object-fit: cover; filter: brightness(0.3);
}
.sub-hero-content { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; width: 100%; }
.sub-hero h1 {
  font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400; line-height: 1.1; margin-bottom: 24px; letter-spacing: -0.02em;
}
.sub-hero h1 em { font-style: italic; color: var(--copper); }
.sub-hero p {
  font-size: 1.05rem; color: rgba(245,240,235,0.7); max-width: 640px;
  line-height: 1.8; margin-bottom: 32px;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(245,240,235,0.4); margin-bottom: 28px;
}
.breadcrumb a { color: rgba(245,240,235,0.4); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--copper); }
.breadcrumb span.sep { color: rgba(245,240,235,0.2); }
.breadcrumb .current { color: var(--copper); }

/* ---- MARQUEE ---- */
.marquee {
  background: var(--copper); padding: 16px 0; overflow: hidden; white-space: nowrap;
}
.marquee-inner {
  display: inline-flex; animation: marquee 30s linear infinite;
}
.marquee-item {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--dark); padding: 0 32px;
  display: inline-flex; align-items: center; gap: 32px;
}
.marquee-item::after {
  content: ''; width: 5px; height: 5px; background: var(--dark); border-radius: 50%; opacity: 0.3;
}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ---- SECTIONS ---- */
.section { padding: 120px 48px; position: relative; }
.section-label {
  display: flex; align-items: center; gap: 14px; margin-bottom: 14px;
}
.section-label::before {
  content: ''; width: 36px; height: 1.5px; background: var(--copper);
}
.section-label span {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--copper);
}
.section-title {
  font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400; line-height: 1.15; margin-bottom: 18px;
}
.section-title em { font-style: italic; color: var(--copper); }
.section-desc {
  font-size: 1rem; color: var(--text-muted); max-width: 560px;
  line-height: 1.8; margin-bottom: 48px;
}

/* ---- ABOUT ---- */
.about {
  display: grid; grid-template-columns: 1fr; gap: 60px; align-items: center;
  max-width: 1400px; margin: 0 auto;
}
.about-features { margin-top: 40px; display: flex; flex-direction: column; gap: 0; }
.about-feat {
  display: flex; gap: 16px; padding: 20px 0;
  border-bottom: 1px solid rgba(245,240,235,0.06);
}
.about-feat:last-child { border-bottom: none; }
.about-feat-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(193,127,89,0.3); color: var(--copper);
  font-size: 0.7rem;
}
.about-feat h4 {
  font-family: var(--font-display); font-size: 1rem; font-weight: 600;
  margin-bottom: 4px;
}
.about-feat p {
  font-size: 0.85rem; color: var(--text-muted); line-height: 1.6;
}
.about-visual { position: relative; }
.about-img-main {
  width: 100%; height: 450px; object-fit: cover;
}
.about-img-float {
  display: none; position: absolute; bottom: -30px; left: -40px;
  width: 200px; height: 260px; object-fit: cover;
  border: 4px solid var(--dark);
}
.about-badge {
  position: absolute; top: 24px; right: 24px;
  background: var(--copper); padding: 20px 24px; text-align: center;
}
.about-badge-num {
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 700;
  color: var(--dark); line-height: 1;
}
.about-badge-label {
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--dark); opacity: 0.7; margin-top: 4px;
}

/* ---- DIENSTEN ---- */
.diensten-section { background: var(--dark-3); }
.diensten-grid {
  display: grid; grid-template-columns: 1fr; gap: 0;
  max-width: 1400px; margin: 0 auto;
}
.dienst {
  position: relative; height: 400px; overflow: hidden; cursor: pointer; display: block;
}
.dienst-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform 0.8s cubic-bezier(0.16,1,0.3,1), filter 0.8s;
  filter: brightness(0.4) saturate(0.6);
}
.dienst:hover .dienst-bg { transform: scale(1.08); filter: brightness(0.5) saturate(0.8); }
.dienst-content {
  position: relative; z-index: 1; height: 100%; display: flex;
  flex-direction: column; justify-content: flex-end; padding: 40px;
}
.dienst-num {
  font-family: var(--font-display); font-size: 4rem; font-weight: 700;
  color: rgba(193,127,89,0.15); position: absolute; top: 20px; left: 30px; line-height: 1;
}
.dienst h3 {
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 400;
  margin-bottom: 8px; transition: color 0.3s;
}
.dienst:hover h3 { color: var(--copper); }
.dienst p {
  font-size: 0.9rem; color: rgba(245,240,235,0.6); max-width: 320px;
  line-height: 1.6; margin-bottom: 20px;
}
.dienst-arrow {
  width: 48px; height: 48px; border: 1px solid rgba(245,240,235,0.2);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.dienst:hover .dienst-arrow { background: var(--copper); border-color: var(--copper); }
.dienst-arrow svg { width: 18px; height: 18px; fill: var(--cream); transition: fill 0.3s; }
.dienst:hover .dienst-arrow svg { fill: var(--dark); }

/* ---- SUB-DIENST CARDS (categorie hub pagina) ---- */
.subdienst-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
  max-width: 1400px; margin: 0 auto;
}
.subdienst-card {
  background: var(--dark-3); border: 1px solid rgba(245,240,235,0.06);
  padding: 36px 32px; transition: all 0.3s; display: block; position: relative;
  overflow: hidden;
}
.subdienst-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 0;
  background: var(--copper); transition: height 0.4s;
}
.subdienst-card:hover {
  transform: translateY(-4px); border-color: rgba(193,127,89,0.2);
  background: var(--dark-2);
}
.subdienst-card:hover::before { height: 100%; }
.subdienst-card h3 {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 600;
  margin-bottom: 10px; transition: color 0.3s;
}
.subdienst-card:hover h3 { color: var(--copper); }
.subdienst-card p {
  font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 18px;
}
.subdienst-card .arrow {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--copper);
  display: inline-flex; align-items: center; gap: 8px;
}
.subdienst-card .arrow::after {
  content: '→'; transition: transform 0.3s;
}
.subdienst-card:hover .arrow::after { transform: translateX(4px); }

/* ---- CONTENT BLOCK (dienstpagina hoofdtekst) ---- */
.content-block {
  max-width: 900px; margin: 0 auto;
}
.content-block h2 {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400; line-height: 1.2; margin-bottom: 20px;
}
.content-block h2 em { font-style: italic; color: var(--copper); }
.content-block h3 {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 600;
  margin: 36px 0 14px;
}
.content-block p {
  font-size: 1rem; color: rgba(245,240,235,0.75); line-height: 1.8; margin-bottom: 16px;
}
.content-block ul {
  list-style: none; margin: 16px 0 24px;
}
.content-block ul li {
  position: relative; padding: 10px 0 10px 28px;
  font-size: 0.95rem; color: rgba(245,240,235,0.75); line-height: 1.6;
  border-bottom: 1px solid rgba(245,240,235,0.05);
}
.content-block ul li::before {
  content: '◆'; position: absolute; left: 0; top: 10px;
  color: var(--copper); font-size: 0.7rem;
}

/* ---- GALLERY (dienstpagina afbeeldingen) ---- */
.gallery-section { background: var(--dark-2); }
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1400px;
  margin: 40px auto 0;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--dark-3);
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16,1,0.3,1), filter 0.5s;
  filter: brightness(0.92) saturate(0.95);
}
.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1) saturate(1.05);
}
.gallery-item::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(10,10,10,0.4) 0%, transparent 40%);
  transition: opacity 0.4s;
  opacity: 0.6;
}
.gallery-item:hover::after { opacity: 0.2; }
.gallery-caption {
  position: absolute; left: 24px; right: 24px; bottom: 20px; z-index: 1;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(245,240,235,0.9);
}

/* ---- FAQ ---- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(245,240,235,0.08);
}
.faq-question {
  width: 100%; background: none; border: none; color: var(--cream);
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
  text-align: left; padding: 24px 40px 24px 0; cursor: pointer;
  position: relative; transition: color 0.2s;
}
.faq-question:hover { color: var(--copper); }
.faq-question::after {
  content: '+'; position: absolute; right: 0; top: 22px;
  font-size: 1.5rem; font-weight: 300; color: var(--copper);
  transition: transform 0.3s;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 0 24px; font-size: 0.95rem; color: var(--text-muted); line-height: 1.8;
}

/* ---- PRIJSINDICATIE ---- */
.price-block {
  max-width: 900px; margin: 0 auto;
  background: linear-gradient(135deg, var(--dark-3) 0%, var(--dark-2) 100%);
  border: 1px solid rgba(193,127,89,0.15);
  padding: 48px 40px;
}
.price-block h3 {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 400;
  margin-bottom: 12px;
}
.price-block h3 em { color: var(--copper); font-style: italic; }
.price-block > p {
  font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px;
}
.price-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 24px;
}
.price-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0; border-bottom: 1px solid rgba(245,240,235,0.06);
  font-size: 0.92rem;
}
.price-row:last-child { border-bottom: none; }
.price-row .label { color: rgba(245,240,235,0.8); }
.price-row .value { color: var(--copper); font-weight: 600; font-family: var(--font-display); font-size: 1.05rem; }
.price-note {
  font-size: 0.78rem; color: rgba(245,240,235,0.4); margin-top: 20px;
  padding-top: 20px; border-top: 1px solid rgba(245,240,235,0.06);
  font-style: italic;
}

/* ---- STATS ---- */
.stats {
  background: linear-gradient(135deg, var(--dark-3) 0%, var(--dark) 100%);
  border-top: 1px solid rgba(193,127,89,0.1);
  border-bottom: 1px solid rgba(193,127,89,0.1);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px;
  max-width: 1000px; margin: 0 auto; text-align: center;
}
.stat-item { padding: 20px; }
.stat-num {
  font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700; color: var(--copper); line-height: 1; margin-bottom: 8px;
}
.stat-label {
  font-size: 0.82rem; color: var(--text-muted); letter-spacing: 0.05em;
}

/* ---- REVIEWS ---- */
.reviews-section { background: var(--dark-2); }
.reviews-scroll {
  display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; padding-bottom: 20px; scrollbar-width: none;
}
.reviews-scroll::-webkit-scrollbar { display: none; }
.review-card {
  flex: 0 0 85%; max-width: 500px; scroll-snap-align: start;
  background: var(--dark-3); border: 1px solid rgba(245,240,235,0.06);
  padding: 40px; position: relative; transition: border-color 0.3s;
}
.review-card:hover { border-color: rgba(193,127,89,0.2); }
.review-quote {
  font-family: var(--font-display); font-size: 4rem; color: var(--copper);
  opacity: 0.2; line-height: 1; margin-bottom: -20px;
}
.review-text {
  font-size: 1rem; line-height: 1.8; color: rgba(245,240,235,0.8);
  font-style: italic; margin-bottom: 28px;
}
.review-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.review-stars svg { width: 16px; height: 16px; fill: var(--copper); }
.review-author { display: flex; align-items: center; gap: 14px; }
.review-avatar {
  width: 48px; height: 48px; border-radius: 50%; overflow: hidden;
  background: linear-gradient(135deg, var(--copper), var(--copper-dark));
  display: flex; align-items: center; justify-content: center;
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-name { font-weight: 600; font-size: 0.92rem; }
.review-loc { font-size: 0.78rem; color: var(--text-muted); }

/* ---- PHOTO BREAK ---- */
.photo-break {
  position: relative; height: 450px; overflow: hidden;
}
.photo-break img {
  position: absolute; inset: -80px 0; width: 100%; height: calc(100% + 160px);
  object-fit: cover;
}
.photo-break .pb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.3) 100%);
  display: flex; align-items: center; padding: 0 48px;
}
.photo-break blockquote {
  font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #fff; max-width: 600px; line-height: 1.35; font-weight: 400;
}
.photo-break blockquote em { color: var(--copper); font-style: italic; }

/* ---- WERKWIJZE ---- */
.process-grid {
  display: grid; grid-template-columns: 1fr; gap: 0;
  max-width: 800px; margin: 60px auto 0; position: relative;
}
.process-grid::before {
  content: ''; position: absolute; left: 23px; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, var(--copper), transparent);
}
.process-step {
  display: flex; gap: 32px; padding: 32px 0; position: relative;
}
.process-num {
  width: 48px; height: 48px; border: 1px solid var(--copper);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  color: var(--copper); flex-shrink: 0; background: var(--dark); z-index: 1;
}
.process-step h4 {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 8px;
}
.process-step p {
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.7;
}

/* ---- CTA ---- */
.cta-section {
  position: relative; padding: 120px 48px; text-align: center; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--copper-dark) 0%, var(--copper) 50%, var(--copper-light) 100%);
  opacity: 0.08;
}
.cta-section::after {
  content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(193,127,89,0.06) 0%, transparent 50%);
}
.cta-inner {
  position: relative; z-index: 1; max-width: 700px; margin: 0 auto;
}
.cta-inner h2 {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400; line-height: 1.2; margin-bottom: 20px;
}
.cta-inner h2 em { font-style: italic; color: var(--copper); }
.cta-inner p {
  font-size: 1.05rem; color: var(--text-muted); margin-bottom: 40px; line-height: 1.7;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- CONTACT CARDS ---- */
.contact-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
  max-width: 1100px; margin: 0 auto;
}
.contact-card {
  background: var(--dark-3); border: 1px solid rgba(245,240,235,0.06);
  padding: 36px 28px; text-align: center; transition: all 0.3s;
}
.contact-card:hover {
  transform: translateY(-4px); border-color: rgba(193,127,89,0.15);
}
.contact-icon {
  width: 56px; height: 56px; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(193,127,89,0.2);
}
.contact-icon svg { width: 24px; height: 24px; fill: var(--copper); }
.contact-card h4 {
  font-family: var(--font-display); font-size: 1rem; font-weight: 600; margin-bottom: 8px;
}
.contact-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
.contact-card a { color: var(--copper); transition: color 0.2s; }
.contact-card a:hover { color: var(--copper-light); }

/* ---- GERELATEERDE DIENSTEN ---- */
.related-services {
  background: var(--dark-2);
}
.related-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
  max-width: 1100px; margin: 0 auto;
}
.related-card {
  background: var(--dark-3); padding: 24px 28px;
  border: 1px solid rgba(245,240,235,0.06);
  display: flex; justify-content: space-between; align-items: center;
  transition: all 0.3s;
}
.related-card:hover {
  border-color: rgba(193,127,89,0.25); transform: translateX(4px);
}
.related-card h4 {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 600;
  transition: color 0.3s;
}
.related-card:hover h4 { color: var(--copper); }
.related-card span {
  font-size: 0.7rem; color: var(--copper); font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
}

/* ---- FOOTER ---- */
.footer {
  border-top: 1px solid rgba(245,240,235,0.06); padding: 80px 48px 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 48px;
  max-width: 1400px; margin: 0 auto;
}
.footer-brand { max-width: 320px; }
.footer-brand p {
  font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin-top: 16px;
}
.footer-col h5 {
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  margin-bottom: 20px; color: var(--cream);
}
.footer-col a {
  display: block; font-size: 0.88rem; color: var(--text-muted);
  padding: 5px 0; transition: color 0.2s;
}
.footer-col a:hover { color: var(--copper); }
.footer-contact-item {
  display: flex; align-items: center; gap: 10px; padding: 6px 0;
  font-size: 0.88rem; color: var(--text-muted);
}
.footer-contact-item svg { width: 16px; height: 16px; fill: var(--copper); flex-shrink: 0; }
.footer-contact-item a { display: inline; padding: 0; }
.footer-bottom {
  max-width: 1400px; margin: 60px auto 0; padding-top: 24px;
  border-top: 1px solid rgba(245,240,235,0.06);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px;
  font-size: 0.78rem; color: rgba(245,240,235,0.3);
}
.footer-bottom a { color: rgba(245,240,235,0.3); }
.footer-bottom a:hover { color: var(--copper); }
.footer-socials { display: flex; gap: 16px; }
.footer-socials a {
  width: 36px; height: 36px; border: 1px solid rgba(245,240,235,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; padding: 0;
}
.footer-socials a:hover { border-color: var(--copper); background: var(--copper); }
.footer-socials svg { width: 14px; height: 14px; fill: var(--cream); }
.footer-socials a:hover svg { fill: var(--dark); }

/* ---- WHATSAPP FLOAT ---- */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 90; }
.wa-float a {
  display: flex; align-items: center; justify-content: center;
  width: 60px; height: 60px; background: #25D366; border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float a:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
.wa-float::before {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  background: #25D366; opacity: 0; z-index: -1; animation: waPulse 2.5s ease-out infinite;
}
@keyframes waPulse { 0% { transform: scale(1); opacity: 0.35; } 100% { transform: scale(1.5); opacity: 0; } }

/* ---- STICKY MOBILE CTA ---- */
.sticky-mobile {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 95;
  padding: 8px; background: var(--dark); border-top: 1px solid rgba(193,127,89,0.15); gap: 8px;
}
.sticky-mobile a {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px; font-weight: 600; font-size: 0.85rem; letter-spacing: 0.02em;
}
.sticky-mobile svg { width: 18px; height: 18px; fill: currentColor; }
.sticky-mobile .sticky-call { background: var(--copper); color: var(--dark); }
.sticky-mobile .sticky-wa { background: #25D366; color: #fff; }

/* ---- ANIMATIONS ---- */
.fade-in {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* ---- RESPONSIVE ---- */
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .diensten-grid { grid-template-columns: repeat(2, 1fr); }
  .subdienst-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: repeat(2, 1fr) }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .review-card { flex: 0 0 45%; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-hamburger { display: none; }
  .hero { padding: 0 80px 100px; }
  .sub-hero { padding: 160px 80px 100px; }
  .hero-stats { display: flex; }
  .section { padding: 140px 80px; }
  .about { grid-template-columns: 1fr 1.1fr; }
  .about-img-float { display: block; }
  .diensten-grid { grid-template-columns: repeat(3, 1fr); }
  .subdienst-grid { grid-template-columns: repeat(3, 1fr); }
  .review-card { flex: 0 0 380px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; }
  .cursor-glow { display: block; }
  .scroll-indicator { display: flex; }
}

@media (max-width: 1023px) {
  .scroll-indicator { display: none; }
  .mega-menu { display: none !important; }
}

@media (max-width: 768px) {
  .hero { padding: 0 24px 60px; }
  .sub-hero { padding: 120px 24px 60px; min-height: 60vh; }
  .section { padding: 80px 24px; }
  .hero-scroll { display: none; }
  .footer { padding: 60px 24px 100px; }
  .sticky-mobile { display: flex; }
  .wa-float { bottom: 76px; right: 16px; }
  .wa-float a { width: 52px; height: 52px; }
  .wa-float svg { width: 26px; height: 26px; }
  body { padding-bottom: 60px; }
  .photo-break { height: 300px; }
  .photo-break .pb-overlay { padding: 0 24px; }
  .nav { padding: 16px 24px; }
  .nav.scrolled { padding: 12px 24px; }
  .cta-section { padding: 80px 24px; }
  .price-block { padding: 32px 24px; }
}
