/* ===========================
   BESCHERMJEDATA.BE
   Design: Luxury minimal
   =========================== */

:root {
  --navy: #0f1923;
  --navy-mid: #1a2a38;
  --navy-light: #243447;
  --gold: #c9a96e;
  --gold-light: #e2c99a;
  --cream: #f7f4ef;
  --cream-dark: #ede9e1;
  --white: #ffffff;
  --text: #1a1a2e;
  --text-mid: #4a5568;
  --text-light: #718096;
  --border: #e2ddd6;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(15, 25, 35, 0.08);
  --shadow-lg: 0 12px 48px rgba(15, 25, 35, 0.14);

  --max-width: 1160px;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* -- Utilities -- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* -- NAV -- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(247, 244, 239, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.nav.scrolled {
  box-shadow: var(--shadow);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-mid);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--navy);
}

.nav-cta {
  background: var(--navy) !important;
  color: var(--cream) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-weight: 500 !important;
  transition: background var(--transition) !important;
}

.nav-cta:hover {
  background: var(--navy-mid) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* -- HERO -- */
.hero {
  position: relative;
  padding: 180px 0 120px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 70% 40%, rgba(201, 169, 110, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 600px 400px at 10% 80%, rgba(15, 25, 35, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 169, 110, 0.35);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.6s ease both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
  max-width: 680px;
  animation: fadeUp 0.6s 0.1s ease both;
}

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

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  animation: fadeUp 0.6s 0.3s ease both;
}

.btn-primary {
  background: var(--navy);
  color: var(--cream);
  padding: 0.9rem 2.2rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  box-shadow: 0 2px 12px rgba(15, 25, 35, 0.2);
}

.btn-primary:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(15, 25, 35, 0.25);
}

.btn-ghost {
  font-size: 0.95rem;
  color: var(--text-mid);
  font-weight: 400;
  transition: color var(--transition);
}

.btn-ghost:hover {
  color: var(--navy);
}

/* -- SECTION COMMON -- */
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.section-header {
  margin-bottom: 3.5rem;
}

/* -- DIENSTEN -- */
.diensten {
  padding: 100px 0 120px;
  background: var(--white);
  border-top: 1px solid var(--border);
}

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

.dienst-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: all var(--transition);
  position: relative;
}

.dienst-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.dienst-card--featured {
  background: var(--navy);
  border-color: var(--navy);
}

.dienst-card--featured .dienst-nummer,
.dienst-card--featured .dienst-prijs {
  color: var(--gold-light);
}

.dienst-card--featured .dienst-titel {
  color: var(--cream);
}

.dienst-card--featured .dienst-beschrijving {
  color: rgba(247, 244, 239, 0.7);
}

.dienst-card--featured .dienst-lijst li {
  color: rgba(247, 244, 239, 0.8);
  border-color: rgba(255, 255, 255, 0.08);
}

.dienst-card--featured .dienst-lijst li::before {
  color: var(--gold-light);
}

.dienst-card--featured .dienst-lijn {
  background: rgba(255, 255, 255, 0.1);
}

.dienst-nummer {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.dienst-titel {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 0.35rem;
}

.dienst-prijs {
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
}

.dienst-lijn {
  height: 1px;
  background: var(--border);
  margin-bottom: 1.25rem;
}

.dienst-beschrijving {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.dienst-lijst {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.dienst-lijst li {
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.5;
  padding: 0.6rem 0;
  padding-left: 0;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.dienst-lijst li:last-child {
  border-bottom: none;
}

.dienst-lijst li::before {
  display: none;
}

/* -- AANPAK -- */
.aanpak {
  padding: 100px 0 120px;
}

.aanpak-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.aanpak-text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin: 1.5rem 0 2.5rem;
  max-width: 460px;
}

.aanpak-lijst {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.aanpak-lijst li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.aanpak-check {
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.15rem;
  position: relative;
}

.aanpak-check::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.aanpak-lijst li strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.15rem;
}

.aanpak-lijst li span {
  font-size: 0.84rem;
  color: var(--text-light);
  line-height: 1.5;
}

.aanpak-visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.aanpak-quote {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.aanpak-quote blockquote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.6;
  letter-spacing: -0.01em;
}

.aanpak-feiten {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
}

.feit {
  flex: 1;
}

.feit-nummer {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.feit-tekst {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.5;
}

.feit-scheiding {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* -- CONTACT -- */
.contact-sectie {
  padding: 100px 0 120px;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.contact-blok {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.contact-blok .section-title {
  margin-bottom: 1.5rem;
}

.contact-tekst {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

.contact-gegevens {
  margin-bottom: 2rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
  padding: 1rem 2rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.contact-link:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.contact-link svg {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--gold);
}

.contact-noot {
  font-size: 0.82rem;
  color: var(--text-light);
  font-style: italic;
}

/* -- FOOTER -- */
.footer {
  background: var(--navy);
  color: var(--cream);
  padding: 32px 0;
}

.footer-simple {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer .logo {
  color: var(--cream);
  font-size: 1.15rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(247, 244, 239, 0.4);
}

/* -- ANIMATIONS -- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* -- RESPONSIVE -- */
@media (max-width: 1024px) {
  .diensten-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .aanpak-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links.nav-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(247, 244, 239, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 2rem;
    gap: 1.25rem;
    box-shadow: var(--shadow);
    z-index: 99;
  }

  .hero {
    padding: 130px 0 80px;
  }

  .diensten,
  .aanpak,
  .contact-sectie {
    padding: 72px 0 80px;
  }

  .aanpak-feiten {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .feit-scheiding {
    width: 48px;
    height: 1px;
  }

  .footer-simple {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}
