/* van Helden consultancy — theme styles */

:root {
  --navy: #21335c;
  --navy-dark: #1a2847;
  --navy-panel: #2a3d68;
  --navy-line: #3d4d74;
  --navy-line-soft: #37476e;
  --teal: #0e7a72;
  --teal-light: #5fd6cd;
  --teal-lighter: #7fe3db;
  --bg: oklch(0.975 0.004 250);
  --bg-alt: oklch(0.985 0.003 250);
  --bg-card-hover: oklch(0.995 0.002 250);
  --ink: #21335c;
  --ink-soft: oklch(0.33 0.012 260);
  --ink-softer: oklch(0.4 0.012 260);
  --ink-muted: oklch(0.5 0.01 260);
  --line: oklch(0.9 0.006 260);
  --line-strong: oklch(0.88 0.006 260);
  --white: oklch(0.99 0 0);
  --font-head: 'Poppins', system-ui, sans-serif;
  --font-body: 'Geist', system-ui, sans-serif;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body), sans-serif;
  overflow-x: hidden;
}

a {
  color: var(--teal);
  text-decoration: none;
}

img {
  max-width: 100%;
}

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 48px);
  padding-right: clamp(20px, 4vw, 48px);
}

section[id], main > div[id] {
  scroll-margin-top: 76px;
}

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

.fade-up {
  animation: fadeUp .8s ease both;
}

.fade-up-delay {
  animation: fadeUp .8s ease .12s both;
}

/* ---------- Header / nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: oklch(0.975 0.004 250 / 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.site-header .wrap {
  padding-top: 13px;
  padding-bottom: 13px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  margin-right: auto;
  padding: 2px 0;
}

.brand img {
  display: block;
  height: clamp(34px, 4vw, 44px);
  width: auto;
}

.menu-btn {
  display: none;
  align-items: center;
  font: 500 13px/1 var(--font-body), sans-serif;
  color: var(--ink);
  background: none;
  border: 1px solid oklch(0.84 0.008 260);
  border-radius: 999px;
  padding: 11px 15px;
  cursor: pointer;
}

.navlinks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 26px;
}

.navlinks li {
  list-style: none;
}

.navlinks a {
  display: inline-block;
  font: 400 14px/1 var(--font-body), sans-serif;
  color: oklch(0.32 0.012 260);
  padding: 11px 0;
  transition: color .2s ease;
}

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

.navlinks .nav-cta a {
  font: 500 14px/1 var(--font-body), sans-serif;
  color: var(--white);
  background: var(--navy);
  padding: 13px 18px;
  border-radius: 999px;
  text-align: center;
  margin-top: 4px;
  transition: background .25s ease;
}

.navlinks .nav-cta a:hover {
  background: var(--teal);
  color: var(--white);
}

@media (max-width: 900px) {
  .navlinks {
    display: none;
  }
  .navlinks.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    order: 3;
    padding: 4px 0 10px;
  }
  .menu-btn {
    display: inline-flex;
  }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font: 500 15px/1 var(--font-body), sans-serif;
  padding: 17px 24px;
  border-radius: 999px;
  transition: background .25s ease, transform .25s ease, border-color .25s ease;
}

.btn-primary {
  color: var(--white);
  background: var(--navy);
}

.btn-primary:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-secondary {
  color: var(--navy);
  border: 1px solid oklch(0.82 0.008 260);
}

.btn-secondary:hover {
  border-color: var(--navy);
  background: oklch(0.945 0.004 260);
  color: var(--navy);
}

.btn-light {
  color: var(--navy);
  background: var(--white);
  border: none;
  cursor: pointer;
}

.btn-light:hover {
  background: var(--teal-lighter);
}

/* ---------- Sections / type ---------- */

section {
  border-top: 1px solid var(--line);
}

section:first-of-type {
  border-top: none;
}

.section-pad {
  padding-top: clamp(44px, 6vw, 88px);
  padding-bottom: clamp(44px, 6vw, 88px);
}

.eyebrow {
  font: 500 11px/1 var(--font-head), sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0;
}

.eyebrow-teal {
  color: var(--teal);
  letter-spacing: 0.14em;
}

h1, h2, h3 {
  font-family: var(--font-head), sans-serif;
  letter-spacing: -0.02em;
  margin: 0;
}

h2 {
  font-weight: 600;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.05;
}

h3 {
  font-weight: 600;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.bg-alt {
  background: var(--bg-alt);
}

.bg-navy {
  background: var(--navy);
  color: oklch(0.97 0.004 250);
}

.bg-navy h2, .bg-navy h3 {
  color: oklch(0.97 0.004 250);
}

/* ---------- Hero ---------- */

.hero {
  padding-top: clamp(44px, 7vw, 100px);
  padding-bottom: clamp(36px, 5vw, 64px);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr));
  gap: clamp(30px, 5vw, 64px);
  align-items: end;
}

.hero h1 {
  font-weight: 600;
  font-size: clamp(42px, 7.2vw, 96px);
  line-height: 0.95;
  text-wrap: balance;
}

.hero h1 em {
  font-style: normal;
  color: var(--teal);
}

.hero-lead {
  max-width: 50ch;
  font: 300 clamp(16px, 1.5vw, 20px)/1.55 var(--font-body), sans-serif;
  color: var(--ink-soft);
  margin: clamp(22px, 3vw, 30px) 0 0;
  text-wrap: pretty;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: clamp(24px, 3vw, 34px);
}

.route-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
}

.route-list li {
  border-bottom: 1px solid var(--line-strong);
}

.route-list a {
  display: flex;
  gap: clamp(14px, 2vw, 22px);
  align-items: baseline;
  padding: clamp(16px, 2vw, 22px) 0;
  color: var(--navy);
  transition: padding-left .3s ease;
}

.route-list a:hover {
  padding-left: 10px;
  color: var(--navy);
}

.route-list .num {
  font: 500 11px/1.4 var(--font-head), sans-serif;
  color: var(--teal);
}

.route-list .body {
  flex: 1;
  min-width: 0;
}

.route-list .title {
  display: block;
  font: 600 clamp(19px, 2vw, 25px)/1.2 var(--font-head), sans-serif;
  letter-spacing: -0.01em;
}

.route-list .desc {
  display: block;
  font: 300 14px/1.5 var(--font-body), sans-serif;
  color: var(--ink-softer);
  margin-top: 4px;
}

.route-list .arrow {
  font: 400 15px/1 var(--font-body), sans-serif;
  color: oklch(0.55 0.01 260);
}

.route-list .note {
  padding-top: 18px;
  border-bottom: none;
}

.route-list .note p {
  margin: 0;
  font: 300 13px/1.6 var(--font-body), sans-serif;
  color: var(--ink-muted);
  max-width: 42ch;
}

/* ---------- Route cards ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(14px, 1.6vw, 20px);
}

.route-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: clamp(22px, 2.4vw, 30px);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: var(--bg);
  color: var(--navy);
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}

.route-card:hover {
  transform: translateY(-4px);
  border-color: var(--navy);
  background: var(--bg-card-hover);
  color: var(--navy);
}

.route-card .headline {
  display: block;
  font: 600 clamp(24px, 2.6vw, 32px)/1.15 var(--font-head), sans-serif;
  letter-spacing: -0.015em;
  margin: auto 0 14px;
}

.route-card .cta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font: 500 14px/1 var(--font-body), sans-serif;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.route-card .cta-row span:last-child {
  color: var(--teal);
}

/* ---------- Herken je dit ---------- */

.recognize-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(28px, 4vw, 64px);
}

.recognize-grid p.lead {
  font: 300 16px/1.6 var(--font-body), sans-serif;
  color: var(--ink-softer);
  margin: 18px 0 0;
  max-width: 34ch;
}

.recognize-grid p.punch {
  font: 600 clamp(20px, 2.2vw, 26px)/1.3 var(--font-head), sans-serif;
  color: var(--teal);
  margin: clamp(24px, 3vw, 36px) 0 0;
}

.quote-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.quote-list li {
  font: 300 clamp(15px, 1.4vw, 18px)/1.5 var(--font-body), sans-serif;
  color: oklch(0.25 0.012 260);
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.quote-list li:last-child {
  border-bottom: none;
}

/* ---------- Steps (numbered columns) ---------- */

.step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  gap: clamp(18px, 2.5vw, 32px);
}

.step {
  border-top: 1px solid var(--line-strong);
  padding-top: 20px;
}

.step.first {
  border-top: 2px solid var(--navy);
}

.bg-navy .step {
  border-top: 1px solid var(--navy-line);
}

.step .num {
  font: 500 11px/1 var(--font-head), sans-serif;
  color: var(--teal);
  margin: 0 0 12px;
}

.bg-navy .step .num {
  color: var(--teal-light);
}

.step h3 {
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.2;
}

.step p {
  font: 300 15px/1.6 var(--font-body), sans-serif;
  color: var(--ink-softer);
  margin: 10px 0 0;
}

.bg-navy .step p {
  color: #c3cbdc;
}

.step-grid.compact {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
}

/* ---------- Work / cases ---------- */

.case {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(24px, 3vw, 48px);
  align-items: center;
  padding: clamp(32px, 4vw, 56px) 0;
  border-bottom: 1px solid var(--line);
}

.case:first-child {
  padding-top: 0;
}

.case:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.case-shot {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: repeating-linear-gradient(135deg, oklch(0.94 0.004 260) 0 8px, oklch(0.97 0.004 250) 8px 16px);
  display: flex;
  align-items: flex-end;
  padding: 14px;
}

.case-shot.order-2 {
  order: 2;
}

.case-shot span {
  font: 400 11px/1.4 var(--font-head), sans-serif;
  color: oklch(0.45 0.01 260);
  background: var(--bg);
  padding: 5px 8px;
  border-radius: 2px;
}

.case-tag {
  font: 500 11px/1 var(--font-head), sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 14px;
}

.case h3 {
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.case dl {
  margin: 22px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.case dl > div {
  display: flex;
  gap: 14px;
}

.case dt {
  font: 500 11px/1.6 var(--font-head), sans-serif;
  color: var(--ink-muted);
  width: 76px;
  flex: none;
}

.case dd {
  margin: 0;
  font: 300 15px/1.6 var(--font-body), sans-serif;
  color: #37476e;
}

/* ---------- About ---------- */

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(28px, 4vw, 64px);
}

.about-grid p {
  font: 300 clamp(16px, 1.4vw, 18px)/1.65 var(--font-body), sans-serif;
  color: var(--ink-soft);
  margin: 22px 0 0;
  max-width: 52ch;
  text-wrap: pretty;
}

.portrait {
  aspect-ratio: 5 / 4;
  max-width: 420px;
  margin-top: clamp(26px, 3vw, 36px);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: repeating-linear-gradient(135deg, oklch(0.94 0.004 260) 0 8px, oklch(0.97 0.004 250) 8px 16px);
  display: flex;
  align-items: flex-end;
  padding: 14px;
}

.portrait span {
  font: 400 11px/1.4 var(--font-head), sans-serif;
  color: oklch(0.45 0.01 260);
  background: var(--bg-alt);
  padding: 5px 8px;
  border-radius: 2px;
}

.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
}

.plain-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.plain-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font: 300 16px/1.5 var(--font-body), sans-serif;
  color: oklch(0.27 0.012 260);
}

.plain-list li:last-child {
  border-bottom: none;
}

.plain-list.tight li {
  padding: 13px 0;
  font-size: 15px;
}

/* ---------- Pricing ---------- */

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.price-card {
  border-top: 1px solid var(--line-strong);
  padding-top: 20px;
}

.price-card.featured {
  border-top: 2px solid var(--navy);
}

.price-card .label {
  font: 500 11px/1 var(--font-head), sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 14px;
}

.price-card .amount {
  font: 600 clamp(32px, 3.6vw, 44px)/1 var(--font-head), sans-serif;
  margin: 0;
}

.price-card .amount .unit {
  font: 300 15px/1 var(--font-body), sans-serif;
  color: oklch(0.45 0.012 260);
}

.price-card .desc {
  font: 300 14px/1.6 var(--font-body), sans-serif;
  color: var(--ink-softer);
  margin: 12px 0 0;
}

/* ---------- Feature / topic cards ---------- */

.feature-card {
  padding: clamp(20px, 2.2vw, 26px);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: var(--bg);
  transition: border-color .3s ease, transform .3s ease;
}

.feature-card:hover {
  border-color: var(--navy);
  transform: translateY(-3px);
}

.feature-card h3 {
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.15;
}

.feature-card p {
  font: 300 15px/1.6 var(--font-body), sans-serif;
  color: var(--ink-softer);
  margin: 10px 0 0;
}

/* ---------- Numbered process list (dienst pages) ---------- */

.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.process-list li {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.process-list li:last-child {
  border-bottom: none;
}

.process-list .num {
  font: 500 11px/1.5 var(--font-head), sans-serif;
  color: var(--teal);
  flex: none;
}

.process-list .title {
  display: block;
  font: 600 20px/1.2 var(--font-head), sans-serif;
}

.process-list .desc {
  display: block;
  font: 300 15px/1.6 var(--font-body), sans-serif;
  color: var(--ink-softer);
  margin-top: 5px;
}

/* ---------- Dienst hero ---------- */

.dienst-hero {
  padding: clamp(40px, 6vw, 88px) 0 clamp(30px, 4vw, 56px);
}

.back-link {
  font: 500 11px/1 var(--font-head), sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.back-link:hover {
  color: var(--navy);
}

.dienst-hero .eyebrow-teal {
  margin: clamp(24px, 3vw, 40px) 0 20px;
  display: block;
}

.dienst-hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}

.dienst-hero h1 {
  font-weight: 600;
  font-size: clamp(36px, 5.6vw, 76px);
  line-height: 1.02;
  text-wrap: balance;
}

.dienst-hero-copy p {
  font: 300 clamp(16px, 1.5vw, 19px)/1.6 var(--font-body), sans-serif;
  color: var(--ink-soft);
  margin: 0;
  max-width: 46ch;
  text-wrap: pretty;
}

.dienst-hero-copy .price-note {
  font: 300 15px/1.6 var(--font-body), sans-serif;
  color: var(--ink-softer);
  margin: 18px 0 0;
}

.dienst-hero-copy .price-note strong {
  font-weight: 500;
  color: var(--navy);
}

.dienst-hero-copy .btn {
  margin-top: 24px;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
  gap: clamp(28px, 4vw, 64px);
}

.two-col .intro p {
  font: 300 16px/1.65 var(--font-body), sans-serif;
  color: #3d4d74;
  margin: 20px 0 0;
  max-width: 40ch;
  text-wrap: pretty;
}

.bg-navy .two-col .intro p {
  color: #c3cbdc;
}

.two-col .intro h2 {
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.05;
}

.two-col .intro .btn {
  margin-top: 26px;
}

.section-head--sub h2 {
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.05;
}

.h2-tight {
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.05;
  margin: 0 0 clamp(28px, 4vw, 52px);
}

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(30px, 4vw, 64px);
}

.contact-grid h2 {
  font-size: clamp(30px, 4.4vw, 60px);
  line-height: 1.02;
  text-wrap: balance;
}

.contact-lead {
  font: 300 clamp(16px, 1.4vw, 19px)/1.6 var(--font-body), sans-serif;
  color: oklch(0.82 0.008 260);
  margin: 20px 0 0;
  max-width: 44ch;
}

.contact-email {
  font: 400 15px/1.6 var(--font-head), sans-serif;
  margin: clamp(26px, 3vw, 36px) 0 0;
}

.contact-email a {
  color: var(--teal-lighter);
}

.contact-email a:hover {
  color: oklch(0.97 0.004 250);
}

.contact-loc {
  font: 300 14px/1.6 var(--font-body), sans-serif;
  color: #a7b2ca;
  margin: 8px 0 0;
}

.contact-success {
  font: 400 15px/1.5 var(--font-body), sans-serif;
  color: oklch(0.97 0.004 250);
  background: rgba(95, 214, 205, 0.16);
  border: 1px solid var(--teal-light);
  border-radius: 6px;
  padding: 14px 16px;
  margin: 0 0 14px;
}

.contact-error {
  font: 400 15px/1.5 var(--font-body), sans-serif;
  color: oklch(0.97 0.004 250);
  background: rgba(220, 90, 90, 0.16);
  border: 1px solid #e08a8a;
  border-radius: 6px;
  padding: 14px 16px;
  margin: 0 0 14px;
}

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

form.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

form.contact-form label span {
  font: 500 11px/1 var(--font-head), sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a7b2ca;
}

form.contact-form input,
form.contact-form select,
form.contact-form textarea {
  font: 300 16px/1.4 var(--font-body), sans-serif;
  color: oklch(0.97 0.004 250);
  background: var(--navy-panel);
  border: 1px solid var(--navy-line);
  border-radius: 3px;
  padding: 14px 15px;
}

form.contact-form textarea {
  line-height: 1.5;
  resize: vertical;
}

form.contact-form button {
  margin-top: 6px;
}

.form-note {
  font: 300 12px/1.5 var(--font-body), sans-serif;
  color: #a7b2ca;
  margin: 2px 0 0;
}

/* honeypot field — hidden from real visitors, left open for bots */
.vhc-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy);
  color: #c3cbdc;
  border-top: 1px solid var(--navy-line-soft);
}

.footer-grid {
  padding-top: clamp(32px, 4vw, 56px);
  padding-bottom: clamp(24px, 3vw, 40px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: clamp(24px, 3vw, 40px);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  display: block;
  width: 38px;
  height: 38px;
  box-sizing: content-box;
  background: oklch(0.97 0.004 250);
  border-radius: 7px;
  padding: 5px;
}

.footer-brand p {
  font: 600 19px/1.2 var(--font-head), sans-serif;
  color: oklch(0.97 0.004 250);
  margin: 0;
}

.footer-brand .sub {
  font: 400 11px/1 var(--font-head), sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-lighter);
}

.footer-tagline {
  font: 300 13px/1.6 var(--font-body), sans-serif;
  margin: 14px 0 0;
  max-width: 30ch;
}

.footer-col-head {
  font: 500 11px/1 var(--font-head), sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8f9cb8;
  margin: 0 0 14px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links a, .footer-links span {
  font: 300 14px/1.4 var(--font-body), sans-serif;
  color: #d2d8e5;
}

.footer-links a:hover {
  color: oklch(0.99 0 0);
}

.footer-email {
  word-break: break-all;
}

.footer-bottom {
  border-top: 1px solid var(--navy-line-soft);
  padding-top: 18px;
  padding-bottom: clamp(28px, 3vw, 40px);
}

.footer-bottom p {
  font: 300 12px/1.5 var(--font-body), sans-serif;
  color: #8f9cb8;
  margin: 0;
}

/* =====================================================================
   Elementor support
   Pages built in Elementor reuse the classes above. Elementor adds its own
   wrapper markup and default styles, so the rules below (scoped to
   body.elementor-page) neutralise those defaults and map utility classes
   set via "Geavanceerd -> CSS-klassen" onto the design tokens.
   ===================================================================== */

body.elementor-page .elementor-section.sec > .elementor-container {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(44px, 6vw, 88px) clamp(20px, 4vw, 48px);
}

body.elementor-page .elementor-section.sec-navy > .elementor-container {
  padding-top: clamp(48px, 6vw, 96px);
  padding-bottom: clamp(48px, 6vw, 96px);
}

body.elementor-page .elementor-section.sec-hero > .elementor-container {
  padding-top: clamp(44px, 7vw, 100px);
  padding-bottom: clamp(36px, 5vw, 64px);
}

body.elementor-page .elementor-section.sec-dhero-top > .elementor-container {
  padding-top: clamp(40px, 6vw, 88px);
  padding-bottom: 20px;
}

body.elementor-page .elementor-section.sec-dhero-grid > .elementor-container {
  padding-top: 0;
  padding-bottom: clamp(30px, 4vw, 56px);
}

body.elementor-page section.elementor-section.no-line {
  border-top: none;
}

body.elementor-page .elementor-section.gap-lg > .elementor-container {
  column-gap: clamp(28px, 4vw, 64px);
}

body.elementor-page .elementor-section.gap-hero > .elementor-container {
  column-gap: clamp(30px, 5vw, 64px);
}

body.elementor-page .elementor-section.gap-case > .elementor-container {
  column-gap: clamp(24px, 3vw, 48px);
}

body.elementor-page .elementor-section.gap-case > .elementor-container {
  align-items: center;
}

body.elementor-page .elementor-section.sec-werk-head > .elementor-container {
  padding-bottom: 0;
}

body.elementor-page .elementor-section.sec-case > .elementor-container {
  padding-top: clamp(32px, 4vw, 56px);
  padding-bottom: clamp(32px, 4vw, 56px);
  border-top: 1px solid var(--line);
}

body.elementor-page .elementor-section.sec-case-first > .elementor-container {
  border-top: none;
}

body.elementor-page .elementor-widget:not(:last-child) {
  margin-bottom: 0;
}

body.elementor-page .elementor-widget-text-editor p:first-child {
  margin-top: 0;
}

body.elementor-page .elementor-widget-text-editor p:last-child {
  margin-bottom: 0;
}

body.elementor-page .elementor-widget-text-editor ul,
body.elementor-page .elementor-widget-text-editor ol {
  margin: 0;
  padding: 0;
}

/* Typography utilities (put on the widget under Geavanceerd -> CSS-klassen) */

body.elementor-page .t-h1-hero .elementor-heading-title {
  font: 600 clamp(42px, 7.2vw, 96px)/0.95 var(--font-head), sans-serif;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
}

body.elementor-page .t-h1-hero .elementor-heading-title em {
  font-style: normal;
  color: var(--teal);
}

body.elementor-page .t-h1-dienst .elementor-heading-title {
  font: 600 clamp(36px, 5.6vw, 76px)/1.02 var(--font-head), sans-serif;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
}

body.elementor-page .t-h2 .elementor-heading-title {
  font: 600 clamp(28px, 4vw, 52px)/1.05 var(--font-head), sans-serif;
  letter-spacing: -0.02em;
  color: var(--ink);
}

body.elementor-page .t-h2-sub .elementor-heading-title {
  font: 600 clamp(26px, 3.4vw, 44px)/1.05 var(--font-head), sans-serif;
  letter-spacing: -0.02em;
  color: var(--ink);
}

body.elementor-page .t-h2-contact .elementor-heading-title {
  font: 600 clamp(30px, 4.4vw, 60px)/1.02 var(--font-head), sans-serif;
  letter-spacing: -0.02em;
  color: oklch(0.97 0.004 250);
  text-wrap: balance;
}

body.elementor-page .t-h3-case .elementor-heading-title {
  font: 600 clamp(24px, 2.8vw, 36px)/1.15 var(--font-head), sans-serif;
  letter-spacing: -0.015em;
  color: var(--ink);
}

body.elementor-page .t-h3-about .elementor-heading-title {
  font: 600 clamp(22px, 2.4vw, 30px)/1.15 var(--font-head), sans-serif;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 6px;
}

body.elementor-page .on-navy .elementor-heading-title {
  color: oklch(0.97 0.004 250);
}

body.elementor-page .t-eyebrow .elementor-heading-title,
body.elementor-page .t-eyebrow p {
  font: 500 11px/1 var(--font-head), sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0;
}

body.elementor-page .t-eyebrow-teal .elementor-heading-title,
body.elementor-page .t-eyebrow-teal p {
  font: 500 11px/1 var(--font-head), sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0;
}

body.elementor-page .t-eyebrow-light .elementor-heading-title,
body.elementor-page .t-eyebrow-light p {
  font: 500 11px/1 var(--font-head), sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a7b2ca;
  margin: 0;
}

body.elementor-page .t-hero-lead {
  max-width: 50ch;
  font: 300 clamp(16px, 1.5vw, 20px)/1.55 var(--font-body), sans-serif;
  color: var(--ink-soft);
  text-wrap: pretty;
}

body.elementor-page .t-dienst-lead {
  max-width: 46ch;
  font: 300 clamp(16px, 1.5vw, 19px)/1.6 var(--font-body), sans-serif;
  color: var(--ink-soft);
  text-wrap: pretty;
}

body.elementor-page .t-price-note {
  font: 300 15px/1.6 var(--font-body), sans-serif;
  color: var(--ink-softer);
}

body.elementor-page .t-price-note strong {
  font-weight: 500;
  color: var(--navy);
}

body.elementor-page .t-lead {
  font: 300 16px/1.6 var(--font-body), sans-serif;
  color: var(--ink-softer);
  max-width: 34ch;
}

body.elementor-page .t-intro {
  font: 300 16px/1.65 var(--font-body), sans-serif;
  color: #3d4d74;
  max-width: 40ch;
  text-wrap: pretty;
}

body.elementor-page .t-about {
  font: 300 clamp(16px, 1.4vw, 18px)/1.65 var(--font-body), sans-serif;
  color: var(--ink-soft);
  max-width: 52ch;
  text-wrap: pretty;
}

body.elementor-page .t-punch {
  font: 600 clamp(20px, 2.2vw, 26px)/1.3 var(--font-head), sans-serif;
  color: var(--teal);
}

body.elementor-page .t-contact-lead {
  font: 300 clamp(16px, 1.4vw, 19px)/1.6 var(--font-body), sans-serif;
  color: oklch(0.82 0.008 260);
  max-width: 44ch;
}

body.elementor-page .t-back a {
  font: 500 11px/1 var(--font-head), sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

body.elementor-page .t-back a:hover {
  color: var(--navy);
}

body.elementor-page .t-case-tag p {
  font: 500 11px/1 var(--font-head), sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0;
}

/* Lists inside Text Editor widgets: class may sit on the widget wrapper (TinyMCE
   sometimes strips classes from the <ul>), so match both. */

body.elementor-page .quote-list li,
body.elementor-page .quote-list-w li {
  list-style: none;
  font: 300 clamp(15px, 1.4vw, 18px)/1.5 var(--font-body), sans-serif;
  color: oklch(0.25 0.012 260);
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

body.elementor-page .quote-list-w li:last-child {
  border-bottom: none;
}

body.elementor-page .plain-list-w li {
  list-style: none;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font: 300 16px/1.5 var(--font-body), sans-serif;
  color: oklch(0.27 0.012 260);
}

body.elementor-page .plain-list-w.tight li {
  padding: 13px 0;
  font-size: 15px;
}

body.elementor-page .plain-list-w li:last-child {
  border-bottom: none;
}

body.elementor-page .case-dl dl {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

body.elementor-page .case-dl dl > div {
  display: flex;
  gap: 14px;
}

body.elementor-page .case-dl dt {
  font: 500 11px/1.6 var(--font-head), sans-serif;
  color: var(--ink-muted);
  width: 76px;
  flex: none;
}

body.elementor-page .case-dl dd {
  margin: 0;
  font: 300 15px/1.6 var(--font-body), sans-serif;
  color: #37476e;
}

/* Buttons: Elementor's Button widget has strong defaults, reset them here. */

body.elementor-page .ebtn .elementor-button {
  font: 500 15px/1 var(--font-body), sans-serif;
  padding: 17px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background .25s ease, transform .25s ease, border-color .25s ease;
}

body.elementor-page .ebtn .elementor-button-content-wrapper,
body.elementor-page .ebtn .elementor-button-text {
  font: inherit;
}

body.elementor-page .ebtn-primary .elementor-button {
  color: var(--white);
  background: var(--navy);
}

body.elementor-page .ebtn-primary .elementor-button:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-1px);
}

body.elementor-page .ebtn-secondary .elementor-button {
  color: var(--navy);
  background: transparent;
  border-color: oklch(0.82 0.008 260);
}

body.elementor-page .ebtn-secondary .elementor-button:hover {
  border-color: var(--navy);
  background: oklch(0.945 0.004 260);
  color: var(--navy);
}

/* Spacing helpers */
body.elementor-page .mt-hero-lead { margin-top: clamp(22px, 3vw, 30px); }
body.elementor-page .mt-hero-ctas { margin-top: clamp(24px, 3vw, 34px); }
body.elementor-page .mt-lead { margin-top: 18px; }
body.elementor-page .mt-intro { margin-top: 20px; }
body.elementor-page .mt-22 { margin-top: 22px; }
body.elementor-page .mt-16 { margin-top: 16px; }
body.elementor-page .mb-14 { margin-bottom: 14px; }
body.elementor-page .mt-btn { margin-top: 24px; }
body.elementor-page .mt-btn-lg { margin-top: 26px; }
body.elementor-page .mt-punch { margin-top: clamp(24px, 3vw, 36px); }
body.elementor-page .mb-head { margin-bottom: clamp(28px, 4vw, 48px); }
body.elementor-page .mb-head-sm { margin-bottom: clamp(26px, 3.5vw, 44px); }
body.elementor-page .mb-head-lg { margin-bottom: clamp(28px, 4vw, 52px); }
body.elementor-page .mb-20 { margin-bottom: 20px; }
body.elementor-page .mb-eyebrow-hero { margin-bottom: clamp(20px, 3vw, 30px); }
body.elementor-page .mt-dhero-eyebrow { margin-top: clamp(24px, 3vw, 40px); }
body.elementor-page .mt-contact-email { margin-top: clamp(26px, 3vw, 36px); }
body.elementor-page .mt-8 { margin-top: 8px; }
