:root {
  --bg: #fafaf8;
  --bg-alt: #f1f1ee;
  --border: #e4e4df;
  --text: #22303f;
  --text-secondary: #33414f;
  --text-muted: #4a5866;
  --navy: #1b3a5c;
  --navy-hover: #24486e;
  --gold: #b8933d;
  --gold-hover: #a5822f;
  --gold-light: rgba(184, 147, 61, 0.12);
  --gold-border: rgba(184, 147, 61, 0.45);
  --gold-text: #8f7127;
  --cream: #fffdf7;
  --footer-text: #f5f4ef;
  --footer-muted: #a7b4c2;
  --footer-label: #c8b06a;
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--navy);
}

a:hover {
  color: var(--gold);
}

::selection {
  background: #e9dfc8;
}

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

.wrap {
  min-width: 320px;
  background: var(--bg);
  overflow-x: hidden;
  overflow-y: visible;
}

.container {
  max-width: 1060px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}

/* HERO SCREEN — header + hero together fill exactly one viewport */
.hero-screen {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

/* NAV */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  flex: none;
  background: var(--bg-alt);
  box-shadow: 0 1px 0 rgba(27, 58, 92, 0.06);
}

.header-inner {
  padding-top: 22px;
  padding-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.logo {
  font-family: 'DM Sans', sans-serif;
  font-size: 19px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 3px;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 3px;
  text-decoration: none;
  flex: none;
}

.main-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.main-nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.15s ease;
}

.main-nav a:hover {
  color: var(--gold);
}

.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #ffffff;
  border: 1.5px solid var(--gold);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 8px;
  transition: background 0.15s ease;
  flex: none;
  white-space: nowrap;
}

.call-btn:hover {
  background: var(--navy-hover);
  color: #ffffff;
}

.call-btn .icon {
  font-size: 13px;
  color: #d9bd77;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  flex: 1;
  padding: 40px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 30, 48, 0.74) 0%, rgba(15, 30, 48, 0.88) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(217, 189, 119, 0.55);
  color: #f0d9a0;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
}

.hero h1 {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  font-weight: 900;
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1.18;
  color: #ffffff;
  text-wrap: pretty;
}

.hero p {
  margin: 0;
  font-size: 19.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  text-wrap: pretty;
}

.hero p strong {
  color: #ffffff;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 4px;
  width: 100%;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--cream);
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
  padding: 16px 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(184, 147, 61, 0.28);
  transition: background 0.15s ease;
}

.btn-primary:hover {
  background: var(--gold-hover);
  color: var(--cream);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 26px;
  border-radius: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  transition: border-color 0.15s ease, background 0.15s ease;
}

.btn-secondary:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

/* SECTIONS */
section {
  scroll-margin-top: var(--header-height);
}

.section-alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-pad {
  padding: 88px 0;
}

h2 {
  margin: 0 0 16px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 32px;
  color: var(--navy);
}

.section-intro {
  margin: 0 0 44px;
  max-width: 560px;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--text-muted);
  text-wrap: pretty;
}

/* HERKEN JE DIT */
.taken-grid {
  max-width: 860px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px 48px;
}

.taak {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.taak .dot {
  flex: none;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  position: relative;
  top: -1px;
}

.taak span.text {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--navy);
}

/* HOE HET WERKT */
.stappen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 48px;
}

.stap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stap-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.stap-nr {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 19px;
}

.stap-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.stap h3 {
  margin: 6px 0 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
}

.stap p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--text-muted);
  text-wrap: pretty;
}

/* OVER MIJ */
.over-mij-inner {
  padding-top: 72px;
  padding-bottom: 72px;
  display: flex;
  gap: 56px;
  align-items: center;
  flex-wrap: wrap;
}

.avatar {
  flex: none;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  padding: 6px;
  background: var(--bg);
  box-shadow: 0 0 0 1.5px var(--navy);
}

.avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.over-mij-copy {
  flex: 1;
  min-width: 260px;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.over-mij-copy p {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--text-secondary);
  text-wrap: pretty;
}

.rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
}

/* FAQ */
.faq-section h2 {
  margin-bottom: 48px;
}

.faq-list {
  max-width: 720px;
  display: flex;
  flex-direction: column;
}

.faq-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 26px 0;
  border-top: 1px solid var(--border);
}

.faq-item h3 {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: var(--navy);
}

.faq-item p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text-muted);
  text-wrap: pretty;
}

/* FOOTER */
.site-footer {
  background: var(--navy);
  color: var(--footer-text);
}

.footer-inner {
  padding: 80px 32px 56px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.footer-label {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--footer-label);
}

.footer-phone {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(28px, 8vw, 42px);
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  overflow-wrap: anywhere;
  display: inline-block;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(184, 147, 61, 0.1));
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--footer-muted);
}

/* RESPONSIVE */
@media (max-width: 720px) {
  :root {
    --header-height: 64px;
    --mobile-gutter: 24px;
  }

  .container,
  .hero,
  .footer-inner,
  .over-mij-inner {
    padding-left: var(--mobile-gutter);
    padding-right: var(--mobile-gutter);
  }

  .header-inner {
    padding-top: 14px;
    padding-bottom: 14px;
    gap: 12px;
  }

  .logo {
    font-size: 16px;
    letter-spacing: 2px;
  }

  .main-nav {
    order: 3;
    width: 100%;
    gap: 8px 18px;
    padding-top: 10px;
    border-top: 1px solid var(--border);
    margin-top: 4px;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .main-nav a {
    white-space: nowrap;
    font-size: 13.5px;
  }

  .call-btn {
    padding: 9px 14px;
    font-size: 13.5px;
  }

  .hero {
    padding: 20px var(--mobile-gutter);
  }

  .hero-inner {
    gap: 18px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary {
    justify-content: center;
    width: 100%;
  }

  .section-pad {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  h2 {
    font-size: 26px;
  }

  .over-mij-inner {
    gap: 28px;
  }

  .avatar {
    width: 140px;
    height: 140px;
  }

  .footer-inner {
    padding: 56px var(--mobile-gutter) 40px;
  }
}

@media (max-width: 400px) {
  .call-btn span:not(.icon) {
    display: none;
  }

  .call-btn {
    padding: 10px 12px;
  }
}

/* Short viewports (small phones, landscape): tighten the hero so it still
   fits in one screen instead of growing past 100vh. */
@media (max-height: 700px) {
  .hero {
    padding: 16px var(--mobile-gutter, 24px);
  }

  .hero-inner {
    gap: 12px;
  }

  .badge {
    padding: 5px 12px;
    font-size: 12px;
  }

  .hero h1 {
    font-size: clamp(22px, 5.5vw, 32px);
    line-height: 1.15;
  }

  .hero p {
    font-size: 14.5px;
    line-height: 1.45;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 22px;
    font-size: 15px;
  }
}
