:root {
  --c-bg: oklch(0.13 0.015 90);
  --c-bg-header: oklch(0.1 0.01 90 / 0.92);
  --c-bg-card: oklch(0.19 0.015 90);
  --c-bg-footer: oklch(0.16 0.015 90);
  --c-accent: oklch(0.74 0.09 80);
  --c-accent-hover: oklch(0.82 0.09 80);
  --c-border: oklch(0.28 0.01 80);
  --c-border-soft: oklch(0.3 0.01 80);
  --c-border-footer: oklch(0.22 0.01 80);
  --c-white: #fff;
  --c-text: oklch(0.94 0.01 80);
  --c-text-90: oklch(0.9 0.01 80);
  --c-text-85: oklch(0.85 0.01 80);
  --c-text-82: oklch(0.82 0.01 80);
  --c-text-80: oklch(0.8 0.01 80);
  --c-text-75: oklch(0.75 0.01 80);
  --c-text-70: oklch(0.7 0.01 80);
  --c-text-65: oklch(0.65 0.01 80);
  --c-text-60: oklch(0.6 0.01 80);
  --c-text-50: oklch(0.5 0.01 80);
  --c-overlay: oklch(0.08 0.01 90 / 0.35);
}

html { scroll-behavior: smooth; }

html, body { overflow-x: clip; }

body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

* { box-sizing: border-box; }

img { display: block; }

a { color: var(--c-accent); text-decoration: none; }
a:hover { color: var(--c-accent-hover); }

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--c-text);
  background: var(--c-bg);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-block;
  background: var(--c-accent);
  color: var(--c-bg);
  border: none;
  border-radius: 2px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
  font-family: inherit;
}
.btn-sm { padding: 13px 24px; font-size: 13px; }
.btn-lg { padding: 17px 30px; font-size: 14px; }
.btn-outline {
  background: transparent !important;
  color: var(--c-white) !important;
  border: 1px solid var(--c-border) !important;
}
.btn-outline:hover { background: var(--c-bg-card) !important; }
.header-link {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  color: var(--c-text-65);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
.header-link:hover { color: var(--c-white); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--c-bg-header);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--c-border);
}
.site-header .container {
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo-link { display: block; }
#header-logo {
  height: 50px;
  width: 210px;
  object-fit: contain;
  object-position: left center;
  opacity: 0;
  transition: opacity 0.25s ease;
}
#header-logo.visible { opacity: 1; }
.header-actions { display: flex; align-items: center; gap: 14px; }

/* Hero */
.hero {
  position: relative;
  background: var(--c-bg);
  padding: 80px 32px 90px;
  overflow: hidden;
}
.hero .container { position: relative; }
#hero-logo {
  height: 330px;
  width: 1020px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 24px;
  max-width: 100%;
}
.hero-badge {
  display: inline-block;
  background: var(--c-accent);
  color: var(--c-bg);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 16px;
  margin-bottom: 26px;
  width: fit-content;
}
.hero-title {
  font-size: clamp(19px, calc(7.2vw - 5px), 72px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 24px;
  color: var(--c-white);
  max-width: 1020px;
}
.hero-text {
  font-size: 19px;
  line-height: 1.6;
  color: var(--c-text-90);
  max-width: 480px;
  margin: 0 0 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Section titles */
.section {
  padding: 90px 32px;
}
.section-title {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 40px;
}
.section-title.centered { text-align: center; }

/* Grid helpers */
.grid-2-gap { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

/* Over ons */
.about-grid { align-items: center; }
.about-photo-wrap { position: relative; height: 480px; overflow: hidden; }
.about-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-text { font-size: 17px; line-height: 1.7; color: var(--c-text-80); margin: 0 0 24px; }
.about-name { font-size: 19px; font-weight: 800; text-transform: uppercase; margin: 0 0 4px; color: var(--c-white); }
.about-role { font-size: 13px; color: var(--c-accent); font-weight: 700; margin-bottom: 14px; }
.about-spec-label {
  font-size: 13px;
  color: var(--c-text-65);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 700;
  margin-bottom: 8px;
}
.about-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: var(--c-text-85);
}

/* Diensten */
.section-diensten { padding: 0 32px 90px; }
.section-diensten .section-title { margin-bottom: 44px; }
.service-card { border: 1px solid var(--c-border-soft); overflow: hidden; }
.service-card-img { width: 100%; height: 340px; object-fit: cover; }
.service-card-body { padding: 36px; }
.service-card-title { font-size: 24px; font-weight: 800; text-transform: uppercase; margin: 0 0 12px; color: var(--c-white); }
.service-card-text { font-size: 15px; line-height: 1.7; color: var(--c-text-75); margin: 0; }
.service-card-text.with-list { margin-bottom: 24px; }
.service-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: var(--c-text-70);
}

/* Banner */
.banner { position: relative; height: 420px; overflow: hidden; }
.banner-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.banner-overlay { position: absolute; inset: 0; background: var(--c-overlay); }

/* Testimonials */
.testimonial-scroller { position: relative; }
.testimonial-grid {
  display: flex;
  gap: 2px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.testimonial-grid::-webkit-scrollbar { display: none; }
.testimonial-card {
  background: var(--c-bg-card);
  padding: 32px;
  flex: 0 0 auto;
  width: 380px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}
.testimonial-nav {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 20px;
}
.testimonial-nav button {
  width: 40px;
  height: 40px;
  border: 1px solid var(--c-border);
  background: var(--c-bg-card);
  color: var(--c-white);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.testimonial-nav button:hover { background: var(--c-accent); color: var(--c-bg); }
.testimonial-text { color: var(--c-text-82); font-size: 15px; line-height: 1.7; margin: 0 0 24px; }
.testimonial-footer { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testimonial-avatar {
  width: 40px;
  height: 40px;
  background: var(--c-accent);
  color: var(--c-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
}
.testimonial-name { color: var(--c-white); font-weight: 700; font-size: 14px; }
.testimonial-hint {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--c-text-65);
  font-size: 13px;
}
.hint-arrow { display: inline-block; animation: hint-nudge 1.4s ease-in-out infinite; }
@keyframes hint-nudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

/* Footer */
.site-footer {
  margin-top: auto;
  background: var(--c-bg-footer);
  padding: 90px 32px 30px;
  border-top: 1px solid var(--c-border);
}
.footer-top { margin: 0 auto 60px; }
.footer-top .section-title { margin-bottom: 16px; }
.footer-text { color: var(--c-text-65); font-size: 16px; line-height: 1.7; margin: 0 0 28px; max-width: 420px; }
.footer-cta-row { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; margin-bottom: 48px; }
.footer-contact { display: flex; flex-direction: column; gap: 14px; font-size: 15px; color: var(--c-text-85); }
.footer-contact-label { font-weight: 700; color: var(--c-white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid var(--c-border-footer);
}
.footer-logo { height: 28px; width: 120px; object-fit: contain; object-position: left center; }
.footer-copyright {
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--c-border-footer);
  color: var(--c-text-50);
  font-size: 13px;
}

@media (max-width: 900px) {
  .grid-2-gap { grid-template-columns: 1fr; }
  .section-title { font-size: 28px !important; }
  .desktop-nav { display: none !important; }
  .testimonial-card { width: 82%; }
  .testimonial-nav { display: none; }
  .testimonial-hint { display: flex; }
}

@media (max-width: 480px) {
  .site-header .container { padding: 14px 16px; justify-content: flex-end; }
  .header-logo-link { display: none; }
  .header-actions { gap: 8px; flex-wrap: nowrap; justify-content: flex-end; }
  .header-link { font-size: 13px; }
  .btn-sm { padding: 10px 14px; font-size: 11px; }
}
