/* ================= TOKENS ================= */
:root {
  --orange: #ff5f00;        /* Electric / Vivid Orange */
  --orange-soft: #ef9021;   /* warm wortel-oranje accent */
  --blue: #082567;          /* Deep Sapphire */
  --blue-700: #0c3389;
  --ink: #16203a;
  --grey: #f4f4f4;
  --white: #ffffff;
  --muted: #5a6478;
  --line: #e4e7ef;

  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 6px 20px rgba(8, 37, 103, .08);
  --shadow-md: 0 18px 50px rgba(8, 37, 103, .14);
  --shadow-lg: 0 30px 80px rgba(8, 37, 103, .22);

  --font-sans: 'Montserrat', system-ui, -apple-system, sans-serif;
  --font-serif: 'Merriweather', Georgia, serif;

  --maxw: 1160px;
}

/* ================= RESET ================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { line-height: 1.12; margin: 0 0 .4em; letter-spacing: -.02em; }
h1 { font-size: clamp(2rem, 4.2vw, 3.1rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); font-weight: 800; color: var(--blue); }
h3 { font-size: 1.3rem; font-weight: 700; color: var(--blue); }
p { margin: 0 0 1.1rem; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ================= BUTTONS ================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  font-family: var(--font-sans);
  font-weight: 700; font-size: .98rem;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--orange); color: #fff;
  box-shadow: 0 10px 24px rgba(255, 95, 0, .32);
}
.btn-primary:hover { background: #ff7322; transform: translateY(-2px); box-shadow: 0 16px 32px rgba(255, 95, 0, .4); }
.btn-ghost { background: transparent; color: var(--blue); border-color: rgba(8, 37, 103, .2); }
.btn-ghost:hover { border-color: var(--blue); background: rgba(8, 37, 103, .04); transform: translateY(-2px); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .55); }
.btn-outline-light:hover { background: rgba(255, 255, 255, .12); transform: translateY(-2px); }
.btn-lg { padding: 1.05rem 2.1rem; font-size: 1.05rem; }

/* ================= HEADER ================= */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 92px; }
.brand-logo { height: 68px; width: auto; }
.nav { display: flex; align-items: center; gap: 2rem; }
.nav a { font-weight: 600; font-size: .96rem; color: var(--blue); position: relative; transition: color .15s; }
.nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--orange); transition: width .22s ease;
}
.nav a:not(.nav-cta):hover { color: var(--orange); }
.nav a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: var(--orange); color: #fff !important;
  padding: .6rem 1.25rem; border-radius: 999px;
  box-shadow: 0 8px 18px rgba(255, 95, 0, .3);
  transition: transform .18s, box-shadow .18s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(255, 95, 0, .4); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 3px; background: var(--blue); border-radius: 3px; transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ================= HERO ================= */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 520px at 88% -8%, rgba(255, 95, 0, .10), transparent 60%),
    linear-gradient(180deg, #fbfbfd 0%, var(--grey) 100%);
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(5rem, 9vw, 8rem);
  overflow: hidden;
}
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.eyebrow {
  display: inline-block;
  font-weight: 700; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--orange); margin: 0 0 1rem;
  padding: .4rem .9rem; background: rgba(255, 95, 0, .1); border-radius: 999px;
}
.hero h1 { color: var(--blue); }
.hero h1 .accent { color: var(--orange); position: relative; }
.lead { font-size: 1.12rem; color: var(--muted); max-width: 34rem; }
.lead-strong { font-size: 1.12rem; color: var(--ink); font-weight: 600; max-width: 34rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

.hero-media { position: relative; }
.hero-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
  transform: rotate(1.4deg);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3.2; }
.hero-badge {
  position: absolute; left: -22px; bottom: -26px;
  background: var(--blue); color: #fff;
  padding: 1rem 1.4rem; border-radius: 16px;
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; line-height: 1.2;
  transform: rotate(-2deg);
}
.hero-badge-big { font-weight: 800; font-size: 1.15rem; }
.hero-badge-small { font-size: .9rem; color: var(--orange-soft); font-weight: 600; }

.hero-wave {
  position: absolute; left: 0; right: 0; bottom: -1px; height: 60px;
  background: var(--white);
  clip-path: polygon(0 55%, 100% 0, 100% 100%, 0 100%);
}

/* ================= SECTIONS ================= */
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section-soft { background: var(--grey); }
.section-head { text-align: center; max-width: 38rem; margin: 0 auto clamp(2.2rem, 4vw, 3.2rem); }
.kicker {
  font-weight: 700; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange); margin: 0 0 .6rem;
}
.kicker-light { color: var(--orange-soft); }
.h2-light { color: #fff; }

/* ----- Cards ----- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.2rem 1.8rem; box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s;
  position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; top: 0; left: 0; height: 4px; width: 100%;
  background: linear-gradient(90deg, var(--orange), var(--orange-soft));
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card-icon {
  width: 58px; height: 58px; border-radius: 14px;
  display: grid; place-items: center; font-size: 1.7rem;
  background: rgba(255, 95, 0, .1); margin-bottom: 1.2rem;
}
.card p { margin: 0; color: var(--muted); font-size: .99rem; }

/* ----- Statement band ----- */
.band {
  position: relative;
  background:
    radial-gradient(700px 360px at 80% 120%, rgba(255, 95, 0, .20), transparent 60%),
    linear-gradient(135deg, var(--blue) 0%, var(--blue-700) 100%);
  padding: clamp(3rem, 7vw, 5rem) 0;
  text-align: center;
}
.band-kicker {
  font-weight: 700; font-size: .82rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--orange-soft); margin: 0 0 .7rem;
}
.band-text {
  color: #fff; font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.3rem); font-weight: 400; margin: 0 auto;
  max-width: 24ch; line-height: 1.35;
}

/* ----- Waarom (blue) ----- */
.section-blue {
  background:
    radial-gradient(800px 400px at 12% 0%, rgba(255, 95, 0, .16), transparent 55%),
    var(--blue);
  color: #fff;
}
.waarom-inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.waarom-media img {
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  border: 6px solid rgba(255, 255, 255, .9); transform: rotate(-1.5deg);
  aspect-ratio: 4 / 4.4; object-fit: cover; width: 100%;
}
.check-list { list-style: none; padding: 0; margin: 0 0 2rem; display: grid; gap: 1.1rem; }
.check-list li {
  position: relative; padding-left: 2.6rem; color: rgba(255, 255, 255, .9); font-size: 1.04rem;
}
.check-list strong { color: #fff; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: -2px;
  width: 1.8rem; height: 1.8rem; border-radius: 50%;
  background: var(--orange); color: #fff; font-weight: 800; font-size: .9rem;
  display: grid; place-items: center;
}

/* ----- Over Ingrid ----- */
.over-inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.over-media img {
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 5; object-fit: cover; width: 100%;
}
.over-copy p { color: var(--muted); }
.over-copy strong { color: var(--blue); }

/* ----- Facts ----- */
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.fact {
  background: #fff; border-radius: var(--radius); padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
}
.fact-num {
  display: block; font-family: var(--font-serif); font-weight: 700;
  font-size: 2.2rem; color: var(--orange); margin-bottom: .5rem; line-height: 1;
}
.fact p { margin: 0; color: var(--ink); font-weight: 500; }

/* ----- CTA ----- */
.cta-section {
  background:
    radial-gradient(700px 380px at 85% 110%, rgba(255, 95, 0, .22), transparent 60%),
    linear-gradient(135deg, var(--blue) 0%, var(--blue-700) 100%);
  color: #fff; text-align: center;
}
.cta-inner { max-width: 44rem; margin: 0 auto; }
.cta-text { color: rgba(255, 255, 255, .9); font-size: 1.12rem; max-width: 34rem; margin: 0 auto 2rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.cta-contact { margin-top: 1.8rem; color: rgba(255, 255, 255, .75); font-size: .98rem; }
.cta-contact a { color: #fff; font-weight: 600; border-bottom: 1px solid var(--orange); }

/* ================= FOOTER ================= */
.site-footer { background: #061a4a; color: rgba(255, 255, 255, .8); padding: 3rem 0 2.2rem; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; align-items: flex-start; }
.footer-brand { display: flex; align-items: center; gap: .9rem; }
.footer-mark { width: 40px; height: 40px; object-fit: contain; }
.footer-brand strong { display: block; color: #fff; font-size: 1.1rem; }
.footer-brand span { font-size: .9rem; color: rgba(255, 255, 255, .6); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.footer-nav a { font-weight: 600; font-size: .95rem; transition: color .15s; }
.footer-nav a:hover { color: var(--orange-soft); }
.footer-meta { font-size: .85rem; color: rgba(255, 255, 255, .55); margin: 0; text-align: right; line-height: 1.6; }

/* ================= REVEAL ANIM ================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 460px; }
  .waarom-inner, .over-inner { grid-template-columns: 1fr; }
  .waarom-media, .over-media { max-width: 460px; margin: 0 auto; }
  .cards, .facts { grid-template-columns: 1fr; }
  .footer-meta { text-align: left; }

  .nav {
    position: fixed; inset: 92px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: .5rem 24px 1.4rem;
    box-shadow: var(--shadow-md);
    transform: translateY(-130%); transition: transform .3s ease; pointer-events: none;
  }
  .nav.open { transform: translateY(0); pointer-events: auto; }
  .nav a { padding: .9rem 0; border-bottom: 1px solid var(--line); }
  .nav a:not(.nav-cta)::after { display: none; }
  .nav-cta { text-align: center; margin-top: .8rem; }
  .nav-toggle { display: flex; }
}

@media (max-width: 520px) {
  body { font-size: 16px; }
  .hero-badge { left: 8px; bottom: -20px; }
  .cta-actions, .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
