@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --green-950: #08281d;
  --green-900: #0b3527;
  --green-800: #0f4330;
  --green-700: #16523c;
  --gold-600: #b1842d;
  --gold-500: #c39a45;
  --cream-50: #fbf8ef;
  --cream-100: #f4eddd;
  --ink: #17231f;
  --muted: #5f6f68;
  --line: rgba(11, 53, 39, .10);
  --line-strong: rgba(11, 53, 39, .14);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(8, 40, 29, .12);
  --shadow-soft: 0 10px 28px rgba(8, 40, 29, .06);
  --radius-lg: 28px;
  --radius-md: 18px;
  --max: 1160px;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream-50);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at top right, rgba(195, 154, 69, .14), transparent 34rem),
    radial-gradient(circle at top left, rgba(15, 67, 48, .10), transparent 28rem),
    linear-gradient(180deg, #fffaf0 0%, var(--cream-50) 45%, #f7f0e3 100%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: min(var(--max), calc(100% - 48px));
  margin: 18px auto 0;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(11, 53, 39, .08);
  border-radius: 999px;
  background: rgba(251, 248, 239, .90);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 36px rgba(8, 40, 29, .08);
}
.brand { display: flex; align-items: center; min-width: 172px; }
.brand-logo { width: 214px; height: auto; }
.header-actions { display: flex; align-items: center; gap: 16px; }
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: var(--green-900);
  font-weight: 600;
}
.nav a {
  padding: 10px 13px;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}
.nav a:hover,
.nav a:focus-visible { background: rgba(11, 53, 39, .08); outline: none; }
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.66);
  border: 1px solid rgba(11, 53, 39, .1);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}
.lang-switch a,
.lang-switch .current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
}
.lang-switch .current { background: var(--green-900); color: var(--cream-50); }

.section {
  position: relative;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 96px 0;
}
main > .section + .section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--line-strong) 14%, var(--line-strong) 86%, transparent 100%);
}
main > .section + .section::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 22%;
  right: 22%;
  height: 1px;
  background: rgba(255,255,255,.45);
}
main > .statement.section::before,
main > .contact.section::before {
  background: linear-gradient(90deg, transparent 0%, rgba(11,53,39,.18) 14%, rgba(11,53,39,.18) 86%, transparent 100%);
}
.hero {
  padding-top: 82px;
  padding-bottom: 78px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 52px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-600);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 800;
}
h1, h2 {
  margin: 0;
  color: var(--green-900);
  line-height: 1.02;
  letter-spacing: -.03em;
  font-family: var(--font-display);
}
h1 {
  max-width: 760px;
  font-size: clamp(36px, 4.8vw, 60px);
  font-weight: 600;
  text-wrap: balance;
}
h2 {
  max-width: 780px;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 600;
  text-wrap: balance;
}
h3 {
  margin: 14px 0 10px;
  color: var(--green-900);
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -.01em;
  text-wrap: balance;
}
.intro {
  max-width: 710px;
  margin: 24px 0 0;
  color: #2f443d;
  font-size: clamp(18px, 1.8vw, 20px);
  line-height: 1.62;
  font-weight: 500;
}
.subintro {
  max-width: 710px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover,
.button:focus-visible { transform: translateY(-1px); outline: none; }
.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  box-shadow: 0 14px 32px rgba(11, 53, 39, .22);
}
.button.secondary {
  color: var(--green-900);
  background: rgba(255, 255, 255, .7);
  border: 1px solid rgba(11, 53, 39, .12);
}

.hero-card {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 42px;
  border-radius: 34px;
  background: linear-gradient(150deg, rgba(11, 53, 39, .98), rgba(8, 40, 29, .94)), var(--green-900);
  box-shadow: var(--shadow);
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: -12% -18% auto auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(195, 154, 69, .22);
  filter: blur(30px);
}
.hero-card::after {
  content: "";
  position: absolute;
  inset: auto auto -18% -14%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
  filter: blur(10px);
}
.hero-mark {
  position: relative;
  z-index: 1;
  width: min(86%, 330px);
  margin: 8px auto 0;
  filter: drop-shadow(0 18px 26px rgba(0,0,0,.28));
}
.hero-card p {
  position: relative;
  z-index: 1;
  margin: 28px 0 0;
  color: var(--cream-100);
  font-family: var(--font-display);
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.12;
  letter-spacing: -.02em;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, .84fr) minmax(0, 1.16fr);
  gap: 64px;
  align-items: start;
}
.text-block p {
  margin: 0 0 18px;
  color: #344941;
  font-size: 17px;
}
.text-block p:last-child { margin-bottom: 0; }
.text-block strong { color: var(--green-900); }

.statement {
  padding-top: 42px;
  padding-bottom: 42px;
}
.statement p {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 42px 48px;
  border-radius: var(--radius-lg);
  color: var(--cream-50);
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.16;
  letter-spacing: -.02em;
  box-shadow: var(--shadow);
}
.statement p::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: -18px;
  width: 124px;
  height: 124px;
  background: url("assets/propulses-p-128.webp") center / contain no-repeat;
  opacity: .075;
  pointer-events: none;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(260px, .95fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: start;
  margin-bottom: 30px;
}
.section-heading p {
  margin: 0;
  color: #344941;
  font-size: 18px;
  line-height: 1.6;
}
.section-intro {
  max-width: 780px;
  margin: 0 0 24px;
}
.section-top {
  margin-bottom: 34px;
}
#focus .cards,
#samenwerken .cards {
  align-items: stretch;
}
#samenwerken .card {
  min-height: 226px;
  border-color: rgba(11, 53, 39, .10);
}
#focus .card {
  min-height: 258px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.cards-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card {
  min-height: 250px;
  padding: 24px;
  border: 1px solid rgba(11, 53, 39, .08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .60);
  box-shadow: var(--shadow-soft);
}
.card h3 {
  hyphens: auto;
  overflow-wrap: normal;
}
.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: var(--green-900);
  background: rgba(195, 154, 69, .18);
  font-weight: 900;
  font-size: 13px;
}
.card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
.compact-cards .card { min-height: 210px; }

.soft-panel {
  padding: 54px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .58);
  box-shadow: 0 16px 48px rgba(8, 40, 29, .08);
}
.contact {
  padding-top: 56px;
  padding-bottom: 70px;
}
.contact-inner {
  position: relative;
  overflow: hidden;
  padding: 58px;
  border-radius: 34px;
  color: var(--cream-50);
  background: linear-gradient(135deg, rgba(11, 53, 39, .98), rgba(8, 40, 29, .96)), var(--green-900);
  box-shadow: var(--shadow);
}
.contact-inner::after {
  content: "";
  position: absolute;
  inset: auto -50px -85px auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(195, 154, 69, .23);
  filter: blur(16px);
}
.contact-inner::before {
  content: "";
  position: absolute;
  right: 28px;
  top: 28px;
  width: 92px;
  height: 92px;
  background: url("assets/propulses-p-128.webp") center / contain no-repeat;
  opacity: .08;
  pointer-events: none;
}
.contact-inner h2 {
  position: relative;
  z-index: 1;
  max-width: 720px;
  color: var(--cream-50);
}
.contact-inner p:not(.eyebrow) {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 18px 0 26px;
  color: rgba(251, 248, 239, .82);
  font-size: 18px;
}
.contact-inner .button {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, var(--gold-600), var(--gold-500));
  color: var(--green-950);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .18);
}
.site-footer {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 24px 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  text-align: center;
}
.footer-brand img { width: min(360px, 82vw); margin: 0 auto 10px; }
.site-footer p { margin: 0; font-size: 14px; }
.footer-line { color: var(--green-900); font-weight: 600; }

@media (max-width: 1100px) {
  .hero-grid,
  .split,
  .section-heading { grid-template-columns: 1fr; }

  .hero-card { min-height: auto; }
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cards-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cards-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  main > .section + .section::before {
    left: 6px;
    right: 6px;
  }
  main > .section + .section::after {
    left: 24px;
    right: 24px;
  }

  .site-header {
    position: relative;
    width: min(100% - 28px, var(--max));
    align-items: flex-start;
    border-radius: 28px;
    flex-direction: column;
    margin-top: 14px;
  }
  .brand-logo { width: 190px; }
  .header-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .nav a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: normal;
    line-height: 1.15;
    padding: 9px 10px;
    background: rgba(255,255,255,.42);
    border: 1px solid rgba(11, 53, 39, .08);
  }
  .lang-switch { align-self: flex-end; }

  .section {
    width: min(100% - 28px, var(--max));
    padding: 66px 0;
  }
  .hero {
    padding-top: 50px;
    padding-bottom: 54px;
  }
  .hero-grid { gap: 28px; }

  h1 { font-size: 34px; }
  h2 { font-size: 30px; }
  .intro { font-size: 18px; }
  .subintro { font-size: 16px; }

  .hero-card,
  .contact-inner,
  .soft-panel,
  .statement p {
    border-radius: 24px;
    padding: 30px;
  }
  .statement p::after {
    width: 92px;
    height: 92px;
    right: 14px;
    bottom: -10px;
  }
  .contact-inner::before {
    width: 72px;
    height: 72px;
    right: 18px;
    top: 18px;
  }
  .hero-mark { width: min(70%, 250px); }
  .hero-card p { font-size: 26px; }
  .statement {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .statement p { font-size: 24px; }

  .cards,
  .cards-3,
  .cards-2 { grid-template-columns: 1fr; }
  .card,
  .compact-cards .card { min-height: auto; }

  .hero-actions { gap: 10px; }
  .button { width: 100%; }
}

@media (max-width: 440px) {
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 18px; }
  .statement p { font-size: 22px; }
}
