:root {
  --navy: #1a2535;
  --ocean: #2d6a8f;
  --sky: #e8f4f8;
  --sand: #f5f0e8;
  --accent: #e07b39;
  --white: #ffffff;
  --text: #2a2a2a;
  --muted: #6b7280;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* HERO */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,106,143,0.3) 0%, transparent 70%);
  pointer-events: none;
}

.hero-text {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
  animation: fadeUp 0.8s ease both;
}

.hero-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-name {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(48px, 5vw, 72px);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 8px;
}

.hero-sub {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(16px, 2vw, 22px);
  color: var(--ocean);
  font-style: italic;
  margin-bottom: 32px;
}

.hero-tagline {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 48px;
}

.hero-tagline strong {
  color: var(--white);
  font-weight: 500;
}

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

.btn-primary {
  background: var(--accent);
  color: white;
  padding: 14px 28px;
  border-radius: 3px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover { background: #c96a2a; transform: translateY(-1px); }

.btn-ghost {
  color: rgba(255,255,255,0.7);
  padding: 14px 0;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: color 0.2s, border-color 0.2s;
}

.btn-ghost:hover { color: white; border-color: white; }

.hero-photo {
  position: relative;
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(20%) contrast(1.05);
  animation: fadeIn 1s ease both 0.3s;
  opacity: 0;
}

.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--navy) 0%, transparent 30%),
              linear-gradient(to top, var(--navy) 0%, transparent 20%);
}

/* DIENSTEN */
.diensten {
  background: var(--sand);
  padding: 100px 60px;
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--navy);
  margin-bottom: 60px;
  max-width: 500px;
  line-height: 1.2;
}

.diensten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
  max-width: 1100px;
}

.dienst-card {
  background: white;
  padding: 40px 32px;
  transition: transform 0.2s;
}

.dienst-card:hover { transform: translateY(-4px); }

.dienst-icon {
  font-size: 28px;
  margin-bottom: 20px;
}

.dienst-title {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 12px;
}

.dienst-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  font-weight: 300;
}

/* VOOR WIE */
.voor-wie {
  background: var(--navy);
  padding: 100px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.voor-wie .section-title { color: white; margin-bottom: 24px; }

.voor-wie-tekst {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 32px;
}

.voor-wie-list {
  list-style: none;
}

.voor-wie-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 12px;
}

.voor-wie-list li::before {
  content: '→';
  color: var(--accent);
  font-size: 14px;
  flex-shrink: 0;
}

.klanten-block { display: none; }

/* KLANTEN SCROLL */
.klanten-scroll {
  background: var(--navy);
  padding: 60px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.klanten-scroll-label {
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: 32px;
}

.klanten-scroll-wrapper {
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.klanten-scroll-track {
  display: flex;
  animation: klanten-loop 40s linear infinite;
  white-space: nowrap;
}

.klanten-scroll-track:hover { animation-play-state: paused; }

.klant-scroll-item {
  display: inline-flex;
  align-items: center;
  padding: 0 40px;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
  position: relative;
}

.klant-scroll-item::after {
  content: '·';
  position: absolute;
  right: 0;
  color: rgba(255,255,255,0.12);
}

.klant-scroll-item:hover { color: rgba(255,255,255,0.9); }

@keyframes klanten-loop {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* CONTACT */
.contact {
  background: var(--sky);
  padding: 100px 60px;
  text-align: center;
}

.contact .section-title {
  margin: 0 auto 16px;
  text-align: center;
}

.contact-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 48px;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.contact-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--navy);
  transition: color 0.2s;
}

.contact-link:hover { color: var(--accent); }

.contact-link-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.contact-link-value {
  font-size: 17px;
  font-weight: 400;
}

/* FOOTER */
footer {
  background: var(--navy);
  padding: 24px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: white;
  letter-spacing: 1px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* MOBILE */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; }
  .hero-photo { height: 50vh; order: -1; }
  .hero-text { padding: 60px 32px; }
  .voor-wie { grid-template-columns: 1fr; padding: 60px 32px; gap: 48px; }
  .diensten { padding: 60px 32px; }
  .contact { padding: 60px 32px; }
  footer { padding: 24px 32px; flex-direction: column; gap: 8px; text-align: center; }
}
