@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

/* ─── TOKENS ─────────────────────────────────────────── */
:root {
  --navy:   #054A91;
  --sky:    #67A7D7;
  --pale:   #E9F2FA;
  --gray:   #838383;
  --white:  #FFFFFF;
  --ink:    #0D1B2A;
  --cream:  #F7FAFD;
  --border: rgba(5, 74, 145, 0.12);

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

  --ease:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.0,  0.0,  0.2,  1.0);

  --nav-h:   80px;
  --pad-xl:  120px;
  --pad-lg:  80px;
  --pad-md:  56px;
  --pad-sm:  32px;
  --r:       2px;
}

/* ─── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--body); cursor: pointer; border: none; background: none; }

/* ─── TYPOGRAPHY ─────────────────────────────────────── */
.t-display {
  font-family: var(--display);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.t-label {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky);
}

/* ─── SCROLL REVEAL ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.72s var(--ease), transform 0.72s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.72s var(--ease), transform 0.72s var(--ease);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.72s var(--ease), transform 0.72s var(--ease);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ─── HEADER / NAV ───────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
  border-color: var(--border);
}
.header-inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--pad-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  height: 44px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 48px;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.04em;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--sky);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.site-header.scrolled .nav-links a { color: var(--ink); }
.site-header.scrolled .nav-links a:hover { color: var(--navy); }

.nav-cta {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white) !important;
  border: 1px solid rgba(255,255,255,0.45);
  padding: 9px 22px;
  border-radius: var(--r);
  transition: background 0.3s, border-color 0.3s, color 0.3s !important;
}
.nav-cta:hover {
  background: var(--white);
  color: var(--navy) !important;
  border-color: var(--white);
}
.site-header.scrolled .nav-cta {
  color: var(--navy) !important;
  border-color: var(--navy);
}
.site-header.scrolled .nav-cta:hover {
  background: var(--navy);
  color: var(--white) !important;
}
.site-header.scrolled .nav-links a::after { background: var(--navy); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
  z-index: 110;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s, background 0.3s;
  transform-origin: center;
}
.site-header.scrolled .hamburger span { background: var(--ink); }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-family: var(--display);
  font-size: clamp(32px, 8vw, 56px);
  font-weight: 300;
  color: var(--white);
  padding: 12px 0;
  letter-spacing: -0.02em;
  position: relative;
  overflow: hidden;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease), color 0.3s;
}
.mobile-nav.open a {
  transform: translateY(0);
  opacity: 1;
}
.mobile-nav.open a:nth-child(1) { transition-delay: 0.05s; }
.mobile-nav.open a:nth-child(2) { transition-delay: 0.10s; }
.mobile-nav.open a:nth-child(3) { transition-delay: 0.15s; }
.mobile-nav.open a:nth-child(4) { transition-delay: 0.20s; }
.mobile-nav a:hover { color: var(--sky); }
.mobile-nav-footer {
  position: absolute;
  bottom: var(--pad-sm);
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.1em;
}

/* ─── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: var(--r);
  transition: background 0.3s var(--ease), color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::after { opacity: 1; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(5,74,145,0.25);
}
.btn-primary:hover {
  background: #033870;
  box-shadow: 0 8px 32px rgba(5,74,145,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-arrow::after { display: none; }
.btn-arrow .arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease);
}
.btn:hover .arrow { transform: translateX(5px); }

/* ─── SECTION UTILITY ─────────────────────────────────── */
.section-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--pad-sm);
}
.section-header {
  margin-bottom: 64px;
}
.section-header .t-label { margin-bottom: 16px; }
.section-title {
  font-family: var(--display);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* ─── HERO ────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform-origin: center;
  transition: transform 8s var(--ease);
}
.hero:hover .hero-media img { transform: scale(1.03); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 30, 65, 0.25) 0%,
    rgba(5, 30, 65, 0.55) 60%,
    rgba(5, 30, 65, 0.85) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--pad-sm) var(--pad-xl);
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.hero-eyebrow .t-label { color: var(--sky); }
.hero-line {
  width: 40px; height: 1px;
  background: var(--sky);
}
.hero-title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(48px, 7vw, 100px);
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.03em;
  max-width: 900px;
  margin-bottom: 32px;
}
.hero-title em {
  font-style: italic;
  color: var(--sky);
}
.hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 48px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-badge {
  position: absolute;
  right: var(--pad-sm);
  bottom: var(--pad-xl);
  width: 120px; height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
}
.hero-badge span:first-child {
  font-family: var(--display);
  font-size: 42px;
  line-height: 1;
  font-weight: 300;
}
.hero-badge span:last-child {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-top: 4px;
}
.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 11px;
  position: relative;
}
.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 7px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
  animation: scrollDot 1.8s var(--ease) infinite;
}
@keyframes scrollDot {
  0%   { transform: translateX(-50%) translateY(0); opacity: 1; }
  80%  { transform: translateX(-50%) translateY(12px); opacity: 0; }
  100% { transform: translateX(-50%) translateY(0); opacity: 0; }
}

/* ─── SERVICES PREVIEW ───────────────────────────────── */
.services-preview {
  padding: var(--pad-xl) 0;
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
  background: var(--border);
}
.service-card {
  background: var(--white);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 20px;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover { background: var(--cream); }
.service-card:hover::before { transform: scaleX(1); }
.service-num {
  font-family: var(--display);
  font-size: 13px;
  color: var(--sky);
  letter-spacing: 0.1em;
}
.service-card h3 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 14.5px;
  color: var(--gray);
  line-height: 1.7;
  flex: 1;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  transition: gap 0.3s var(--ease);
}
.service-link:hover { gap: 14px; }
.service-card-more {
  background: var(--navy);
  align-items: center;
  justify-content: center;
  min-height: 220px;
}
.service-card-more:hover { background: #033870; }
.service-card-more::before { background: var(--sky); }
.service-card-more .service-card-inner {
  text-align: center;
}
.service-card-more span {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.01em;
  display: block;
  margin-bottom: 20px;
}

/* ─── ABOUT PREVIEW ──────────────────────────────────── */
.about-preview {
  padding: var(--pad-xl) 0;
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-media {
  position: relative;
  height: 580px;
  overflow: hidden;
  border-radius: var(--r);
}
.about-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.about-media:hover img { transform: scale(1.04); }
.about-media-badge {
  position: absolute;
  bottom: 32px; left: 32px;
  background: var(--navy);
  color: var(--white);
  padding: 20px 28px;
  border-radius: var(--r);
}
.about-media-badge .num {
  font-family: var(--display);
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
  display: block;
}
.about-media-badge .lbl {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-top: 4px;
  display: block;
}
.about-text .t-label { margin-bottom: 20px; }
.about-text .section-title { font-size: clamp(36px, 4vw, 54px); margin-bottom: 28px; }
.about-text .section-title span { color: var(--sky); font-style: italic; }
.about-lead {
  font-size: 17px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.75;
  margin-bottom: 24px;
}
.about-body {
  font-size: 14.5px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 40px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-item .stat-num {
  font-family: var(--display);
  font-size: 42px;
  font-weight: 300;
  color: var(--navy);
  line-height: 1;
  display: block;
}
.stat-item .stat-lbl {
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.06em;
  margin-top: 4px;
  display: block;
}

/* ─── WHY US ──────────────────────────────────────────── */
.why-us {
  padding: var(--pad-xl) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(103,167,215,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.why-us .section-header .t-label { color: rgba(103,167,215,0.8); }
.why-us .section-title { color: var(--white); font-size: clamp(36px, 4vw, 56px); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  margin-top: 64px;
}
.why-item {
  background: var(--navy);
  padding: 48px 36px;
  transition: background 0.3s;
}
.why-item:hover { background: rgba(255,255,255,0.05); }
.why-icon {
  width: 48px; height: 48px;
  border: 1px solid rgba(103,167,215,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  font-size: 18px;
  color: var(--sky);
  transition: border-color 0.3s, background 0.3s;
}
.why-item:hover .why-icon {
  border-color: var(--sky);
  background: rgba(103,167,215,0.1);
}
.why-item h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.why-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ─── CTA BANNER ──────────────────────────────────────── */
.cta-banner {
  padding: var(--pad-xl) 0;
  background: var(--white);
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  padding: 72px 80px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r);
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--navy), var(--sky));
}
.cta-inner .t-label { margin-bottom: 16px; }
.cta-inner h2 {
  font-family: var(--display);
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.1;
}
.cta-inner h2 em { color: var(--navy); font-style: italic; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ─── FOOTER ──────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.6);
  padding: var(--pad-lg) 0 var(--pad-md);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: var(--pad-lg);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { margin-bottom: 24px; }
.footer-brand .logo img { filter: brightness(0) invert(1) opacity(0.85); }
.footer-brand p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.45);
  max-width: 280px;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--sky); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a { transition: color 0.2s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }

/* ─── DIENSTEN PAGE ──────────────────────────────────── */
.page-hero {
  height: 60vh;
  min-height: 440px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero .hero-media img { object-position: center 40%; }
.page-hero .hero-content { padding-bottom: var(--pad-lg); }
.page-hero .hero-title { font-size: clamp(40px, 6vw, 80px); }

.diensten-intro {
  padding: var(--pad-lg) 0;
  background: var(--white);
}
.diensten-intro-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.diensten-intro-inner .t-label { margin-bottom: 16px; }
.diensten-intro-inner h2 {
  font-family: var(--display);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
  position: sticky;
  top: 100px;
}
.diensten-intro-right p {
  font-size: 17px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.diensten-list {
  padding: var(--pad-lg) 0 var(--pad-xl);
  background: var(--cream);
}
.dienst-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  margin-bottom: 2px;
  overflow: hidden;
  min-height: 520px;
}
.dienst-item:nth-child(even) { direction: rtl; }
.dienst-item:nth-child(even) > * { direction: ltr; }
.dienst-media {
  overflow: hidden;
  position: relative;
}
.dienst-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.dienst-item:hover .dienst-media img { transform: scale(1.04); }
.dienst-content {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dienst-num {
  font-family: var(--display);
  font-size: 80px;
  font-weight: 300;
  color: var(--pale);
  line-height: 1;
  margin-bottom: 0;
  display: block;
  letter-spacing: -0.04em;
}
.dienst-content .t-label { margin-bottom: 16px; margin-top: -16px; }
.dienst-content h2 {
  font-family: var(--display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 24px;
}
.dienst-content p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
}
.dienst-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 28px 0 36px;
}
.dienst-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--ink);
}
.dienst-feature::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--sky);
  flex-shrink: 0;
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1100px) {
  :root { --pad-xl: 88px; --pad-lg: 64px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .about-grid { gap: 48px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .dienst-content { padding: 56px 48px; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { height: 400px; }
  .cta-inner { grid-template-columns: 1fr; padding: 48px 40px; }
  .diensten-intro-inner { grid-template-columns: 1fr; }
  .diensten-intro-inner h2 { position: static; }
  .dienst-item { grid-template-columns: 1fr; min-height: auto; direction: ltr !important; }
  .dienst-item:nth-child(even) > * { direction: ltr; }
  .dienst-media { height: 320px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-badge { display: none; }
}

@media (max-width: 640px) {
  :root { --pad-xl: 64px; --pad-lg: 48px; --pad-sm: 20px; }
  .hero-title { font-size: clamp(36px, 10vw, 56px); }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cta-inner { padding: 40px 28px; }
  .dienst-content { padding: 40px 28px; }
  .about-stats { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; width: fit-content; }
}
