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

:root {
  --ink: #1a1a1a;
  --ink-light: #4a4a4a;
  --gold: #b8965a;
  --gold-light: #d4ad72;
  --cream: #f8f5f0;
  --white: #ffffff;
  --section-gap: 100px;
  --font-display: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: #111;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image: url('https://i0.wp.com/novy-t.net/wp-content/uploads/2026/03/iStock-480507356-LT.jpg?resize=1920&ssl=1');
  background-size: cover;
  background-position: center 35%;
  opacity: 0.55;
  transform: scale(1.03);
  animation: slowZoom 20s ease-out forwards;
}

@keyframes slowZoom {
  from { transform: scale(1.06); }
  to { transform: scale(1.0); }
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.1) 0%, rgba(10,10,10,0.0) 35%, rgba(10,10,10,0.5) 70%, rgba(10,10,10,0.82) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 8vw 80px;
  max-width: 1100px;
  animation: fadeUp 1.2s ease-out 0.3s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
  border-left: 2px solid var(--gold);
  padding-left: 14px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 19px;
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 44px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  display: inline-block;
  padding: 16px 36px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-block;
  padding: 15px 36px;
  border: 1px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s, transform 0.2s;
}

.btn-ghost:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.hero-badges {
  position: absolute;
  right: 8vw;
  bottom: 80px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
  animation: fadeUp 1.4s ease-out 0.8s both;
}

.hero-badge-item {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
}

.hero-badge-item.active {
  color: var(--gold-light);
  font-style: italic;
}

.intro-strip {
  background: var(--ink);
  padding: 36px 8vw;
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.intro-strip-stat {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.intro-strip-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.intro-strip-label {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  max-width: 160px;
  line-height: 1.4;
}

.intro-strip-divider {
  width: 1px;
  height: 48px;
  background: rgba(184,150,90,0.3);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.22;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.voor-wie {
  background: var(--cream);
  padding: var(--section-gap) 8vw;
}

.voor-wie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 50px;
}

.voor-wie-card {
  background: var(--white);
  padding: 48px 36px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.voor-wie-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.voor-wie-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.09); }
.voor-wie-card:hover::after { transform: scaleX(1); }

.voor-wie-num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 300;
  color: rgba(184,150,90,0.12);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}

.voor-wie-title {
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 14px;
}

.voor-wie-text {
  font-size: 16px;
  font-weight: 300;
  color: var(--ink-light);
  line-height: 1.75;
}

.aanpak {
  background: var(--white);
  padding: var(--section-gap) 8vw;
}

.aanpak-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 50px;
}

.aanpak-text p {
  font-size: 17px;
  font-weight: 300;
  color: var(--ink-light);
  line-height: 1.8;
  margin-bottom: 24px;
}

.aanpak-quote {
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1.55;
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  margin: 32px 0;
}

.aanpak-steps { display: flex; flex-direction: column; }

.aanpak-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  align-items: start;
  cursor: default;
}

.aanpak-step:last-child { border-bottom: none; }

.aanpak-step-num {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: background 0.25s, color 0.25s;
}

.aanpak-step:hover .aanpak-step-num {
  background: var(--gold);
  color: white;
}

.aanpak-step-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 5px;
}

.aanpak-step-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-light);
  line-height: 1.7;
}

.diensten {
  background: var(--ink);
  padding: var(--section-gap) 8vw;
}

.diensten .section-label { color: var(--gold-light); }
.diensten .section-label::before { background: var(--gold-light); }
.diensten .section-title { color: var(--white); }
.diensten .section-title em { color: var(--gold-light); }

.diensten-intro {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 60px;
}

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

.diensten-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 2px;
}

.dienst-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,150,90,0.12);
  padding: 44px 36px;
  transition: background 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
}

.dienst-card:hover {
  background: rgba(184,150,90,0.06);
  border-color: rgba(184,150,90,0.35);
}

.dienst-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding: 5px 12px;
  border: 1px solid rgba(184,150,90,0.3);
}

.dienst-title {
  font-size: 21px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.3;
}

.dienst-text {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.62);
  line-height: 1.8;
  flex-grow: 1;
  margin-bottom: 28px;
}

.dienst-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: gap 0.2s, color 0.2s;
}

.dienst-link:hover {
  gap: 14px;
  color: var(--gold-light);
}

.dienst-link::after { content: '\2192'; }

.resultaten {
  padding: var(--section-gap) 8vw;
  background: var(--cream);
}

.resultaten-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 50px;
  align-items: center;
}

.resultaat-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.resultaat-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.resultaat-check {
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 3px;
  font-size: 11px;
  color: var(--gold);
}

.resultaat-text {
  font-size: 16px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.7;
}

.resultaat-text strong {
  font-weight: 500;
}

.resultaten-cta-box {
  background: var(--ink);
  padding: 56px 48px;
}

.resultaten-cta-box .cta-pre {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}

.resultaten-cta-box .cta-title {
  font-size: 26px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.resultaten-cta-box .cta-text {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 32px;
}

.contact {
  background: var(--white);
  padding: var(--section-gap) 8vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact .section-title {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
}

.contact-sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--ink-light);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 48px;
}

.contact-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  width: 100%;
  max-width: 760px;
}

.contact-option {
  background: var(--cream);
  padding: 44px 36px;
  text-align: left;
  border: 1px solid transparent;
  transition: border-color 0.25s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.contact-option:hover { border-color: var(--gold); }

.contact-option-icon {
  font-size: 24px;
  margin-bottom: 16px;
  display: block;
  color: var(--gold);
}

.contact-option-title {
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
}

.contact-option-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-light);
  line-height: 1.65;
}

.footer-bar {
  background: #0e0e0e;
  padding: 28px 8vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-logo {
  font-size: 20px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
}

.footer-logo span { color: var(--gold); }

.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }

.footer-links a {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold-light); }

@media (max-width: 900px) {
  .voor-wie-grid { grid-template-columns: 1fr; }
  .aanpak-inner { grid-template-columns: 1fr; gap: 40px; }
  .diensten-grid { grid-template-columns: 1fr; }
  .diensten-row2 { grid-template-columns: 1fr; }
  .resultaten-grid { grid-template-columns: 1fr; }
  .contact-options { grid-template-columns: 1fr; }
  .hero-badges { display: none; }
  .intro-strip { flex-direction: column; gap: 32px; }
  .intro-strip-divider { display: none; }
}

h1, h2, h3, h4, h5, h6,
.hero-title, .section-title,
.voor-wie-title, .dienst-title,
.aanpak-step-title, .cta-title,
.contact-option-title {
  text-transform: none;
}

body, p, span, a, li {
    text-transform: none !important;
}

/* Algemene hyperlinks op witte/lichte achtergrond */
a {
  color: #A0522D;
  text-decoration: underline;
}

a:hover {
  color: #6B3410;
  text-decoration: underline;
}

/* Uitzonderingen: knoppen en navigatie NIET onderstrepen */
.btn-primary,
.btn-ghost,
.dienst-link,
.main-header-menu a,
.ast-header-menu a,
.footer-links a,
.contact-option {
  text-decoration: none;
}

/* Hero-sectie: links blijven wit */
.hero a,
.hero .btn-primary,
.hero .btn-ghost {
  color: inherit;
  text-decoration: none;
}

/* Donkere secties: links blijven goud */
.diensten a,
.resultaten-cta-box a,
.footer-bar a {
  color: var(--gold);
  text-decoration: none;
}

/* Navigatieknop Contact leesbaar maken */
.main-header-menu a[href*="contact"],
.ast-header-menu a[href*="contact"] {
  color: #ffffff !important;
  text-decoration: none !important;
}

.ast-header-menu .menu-item a,
.main-header-menu .menu-item a {
  color: #ffffff !important;
  text-decoration: none !important;
}

.ast-header-menu .menu-item a:hover,
.main-header-menu .menu-item a:hover {
  color: var(--gold-light) !important;
}

.btn-ghost {
  color: rgba(255,255,255,0.85) !important;
  text-decoration: none !important;
}

.btn-ghost:hover {
  color: var(--gold-light) !important;
  text-decoration: none !important;
}

.btn-primary {
  color: #ffffff !important;
  text-decoration: none !important;
}

.btn-primary:hover {
  color: #ffffff !important;
  text-decoration: none !important;
}

.main-header-menu a,
.ast-header-menu a,
#masthead a,
.site-header a,
.ast-primary-header-bar a {
  color: #1a1a1a !important;
  text-decoration: none !important;
}

.main-header-menu a:hover,
.ast-header-menu a:hover,
#masthead a:hover,
.site-header a:hover,
.ast-primary-header-bar a:hover {
  color: var(--gold) !important;
  text-decoration: none !important;
}

.scroll-to-top {
  position: fixed;
  bottom: 36px;
  right: 36px;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: #ffffff !important;
  font-size: 26px;
  line-height: 48px;
  text-align: center;
  text-decoration: none !important;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, background 0.25s, transform 0.2s;
  z-index: 9999;
}

.scroll-to-top.zichtbaar {
  opacity: 1;
  pointer-events: auto;
}

.scroll-to-top {
  position: fixed;
  bottom: 36px;
  right: 36px;
  width: 56px;
  height: 56px;
  background: var(--gold);
  color: #ffffff !important;
  font-size: 42px;
  line-height: 52px;
  text-align: center;
  text-decoration: none !important;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, background 0.25s, transform 0.2s;
  z-index: 9999;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  font-weight: 700;
}

.scroll-to-top {
  position: fixed;
  bottom: 36px;
  right: 36px;
  width: 56px;
  height: 56px;
  background: var(--gold);
  color: #ffffff !important;
  font-size: 42px;
  line-height: 52px;
  text-align: center;
  text-decoration: none !important;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, background 0.25s, transform 0.2s;
  z-index: 9999;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  font-weight: 700;
}

.scroll-to-top {
  position: fixed;
  bottom: 36px;
  right: 36px;
  width: 56px;
  height: 56px;
  background: #8B4513;
  color: #ffffff !important;
  font-size: 42px;
  line-height: 52px;
  text-align: center;
  text-decoration: none !important;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, background 0.25s, transform 0.2s;
  z-index: 9999;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  font-weight: 700;
}

.scroll-to-top.zichtbaar {
  opacity: 1;
  pointer-events: auto;
}

.scroll-to-top:hover {
  background: #6B3410 !important;
  color: #ffffff !important;
  transform: translateY(-3px);
}
