*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

@keyframes sw-fade-in  { from { opacity: 0; } to { opacity: 1; } }
@keyframes sw-slide-in { from { transform: translateX(28px); opacity: .4; } to { transform: translateX(0); opacity: 1; } }

.sw-page {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  background: #f1f6f5;
  font-family: Mulish, sans-serif;
  overflow-x: hidden;
}

/* ── HERO ── */
.sw-hero {
  position: relative;
  flex: 1 1 auto;
  min-height: clamp(480px, 70vh, 900px);
  overflow: hidden;
  background: #d9dde0;
}
.sw-hero__img,
.sw-hero__duotone,
.sw-hero__aquarel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 47% 24%;
}
.sw-hero__duotone { opacity: 0; transition: opacity .4s cubic-bezier(.22,.61,.36,1); }
.sw-hero__aquarel { mix-blend-mode: soft-light; opacity: 0; transition: opacity .4s cubic-bezier(.22,.61,.36,1); }
.sw-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg,
    rgba(241,246,245,.97) 0%,
    rgba(241,246,245,.88) 13%,
    rgba(241,246,245,.50) 28%,
    rgba(241,246,245,.12) 42%,
    rgba(241,246,245,.00) 54%
  );
}

/* ── HEADER ── */
.sw-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(16px,3.5vw,38px) clamp(18px,4vw,46px);
  z-index: 5;
}
.sw-logo { height: clamp(58px,8.5vw,92px); width: auto; display: block; }

.sw-menu-btn {
  width: clamp(48px,6vw,56px);
  height: clamp(48px,6vw,56px);
  border-radius: 999px;
  border: none;
  background: #fff;
  box-shadow: 0 8px 22px rgba(20,28,66,.18);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  transition: background .15s;
}
.sw-menu-btn:hover { background: #eef3f4; }

/* ── HERO COPY ── */
.sw-hero__copy {
  position: absolute;
  left: clamp(20px,5vw,68px);
  bottom: clamp(28px,6vh,76px);
  right: clamp(20px,5vw,68px);
  max-width: 560px;
}
.sw-hero__eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: clamp(14px,2vh,22px); }
.sw-hero__eyebrow-line { width: 30px; height: 2px; flex: none; background: #fff; }
.sw-hero__eyebrow-text {
  font-family: Mulish; font-weight: 700;
  font-size: clamp(11px,2.4vw,13px);
  letter-spacing: .16em; color: #fff; text-transform: uppercase;
}
.sw-hero__h1 {
  font-family: Barlow; font-weight: 800;
  font-size: clamp(42px,8.5vw,82px);
  line-height: .96; letter-spacing: -.025em;
  color: #1b2a63; margin: 0;
}
.sw-hero__sub {
  font-family: Mulish; font-weight: 500;
  font-size: clamp(15px,2.3vw,20px);
  line-height: 1.5; color: #2c3a5c;
  margin: clamp(14px,2vh,22px) 0 0;
  max-width: 430px;
}

/* ── CONTACT FOOTER ── */
.sw-contact { flex: none; position: relative; overflow: hidden; }
.sw-contact__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.sw-contact__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(20,30,80,.95), rgba(22,34,86,.78));
}
.sw-contact__inner {
  position: relative;
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: clamp(16px,3vw,32px);
  padding: clamp(26px,4vw,40px) clamp(20px,5vw,68px);
}
.sw-contact__label {
  font-family: Mulish; font-weight: 700;
  font-size: clamp(11px,2.2vw,12px);
  letter-spacing: .16em; color: #8fc7d3;
  text-transform: uppercase; margin-bottom: 8px;
}
.sw-contact__heading {
  font-family: Barlow; font-weight: 800;
  font-size: clamp(22px,4.2vw,30px);
  color: #fff; letter-spacing: -.01em;
}
.sw-contact__link {
  display: inline-flex; align-items: center; gap: 11px;
  background: #fff; color: #1b2a63;
  font-family: Barlow; font-weight: 700;
  font-size: clamp(15px,2.6vw,18px);
  padding: 14px 24px; border-radius: 999px;
  text-decoration: none; flex: none;
  transition: background .15s;
}
.sw-contact__link:hover { background: #eef3f4; }

/* ── MENU OVERLAY ── */
.sw-menu-overlay { position: fixed; inset: 0; z-index: 60; display: none; }
.sw-menu-overlay.is-open { display: block; }

.sw-menu-backdrop {
  position: absolute; inset: 0;
  background: rgba(18,26,62,.46);
  animation: sw-fade-in .2s ease both;
}
.sw-menu-aside {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(420px, 90vw);
  background: #fff;
  box-shadow: -24px 0 70px rgba(18,26,62,.32);
  padding: clamp(24px,5vw,38px) clamp(22px,5vw,38px) clamp(28px,6vw,44px);
  overflow-y: auto;
  animation: sw-slide-in .28s cubic-bezier(.22,.61,.36,1) both;
}
.sw-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: clamp(22px,4vw,32px);
}
.sw-menu-section-label {
  font-family: Mulish; font-weight: 700; font-size: 13px;
  letter-spacing: .14em; color: #314981; text-transform: uppercase;
}
.sw-close-btn {
  width: 42px; height: 42px; border-radius: 999px;
  border: none; background: #f1f5f5;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  flex: none; transition: background .15s;
}
.sw-close-btn:hover { background: #e4ecec; }
.sw-menu-h2 {
  font-family: Barlow; font-weight: 800;
  font-size: clamp(26px,5vw,32px);
  color: #1b2a63; margin: 0 0 18px; letter-spacing: -.01em;
}
.sw-menu-h2--spacer { margin-top: clamp(28px,5vw,38px); }

.sw-gegevens-row {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding: 15px 0; border-bottom: 1px solid #e7ebf2;
}
.sw-gegevens-label { font-family: Mulish; font-weight: 500; font-size: 15px; color: #5a6480; white-space: nowrap; }
.sw-gegevens-value { font-family: Barlow; font-weight: 700; font-size: 17px; color: #1b2a63; letter-spacing: .02em; }

.sw-download-link {
  display: flex; align-items: center; gap: 13px;
  padding: 15px; border-radius: 11px; background: #f4f7f7;
  text-decoration: none; margin-bottom: 9px; transition: background .15s;
}
.sw-download-link:hover { background: #e7f0f1; }
.sw-download-name { font-family: Mulish; font-weight: 600; font-size: 15px; color: #27324f; }
