/* ============================================================
   RESET
   ============================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

/* ============================================================
   DESIGN TOKENS
   ============================================================ */

:root {
  /* Colours */
  --primary:   #EB028B;
  --secondary: #eef3ff;
  --bg:        #FFFFFF;
  --text:      #142033;
  --muted:     #5d687d;

  /* Spacing scale */
  --s1: 4px;
  --s2: 8px;
  --s3: 12px;
  --s4: 16px;
  --s5: 24px;
  --s6: 32px;
  --s7: 48px;

  /* Layout */
  --container: 1120px;
  --gutter:    clamp(16px, 4vw, 32px);

  /* Visuals */
  --radius:  16px;
  --shadow:  0 10px 28px rgba(20, 32, 51, 0.08);
  --border:  1px solid rgba(20, 32, 51, 0.08);
  --ease:    180ms ease;
}

/* ============================================================
   BASE
   ============================================================ */

body {
  min-height: 100vh;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size:   clamp(1rem, 0.96rem + 0.2vw, 1.08rem);
  line-height: 1.65;
  color:       var(--text);
  background:  var(--bg);
}

/* Typography */
h1 {
  font-size:      clamp(2rem, 1.3rem + 3.2vw, 3.75rem);
  line-height:    1.05;
  letter-spacing: -0.04em;
  font-weight:    800;
}

h2 {
  font-size:      clamp(1.5rem, 1.1rem + 1.6vw, 2.4rem);
  line-height:    1.1;
  letter-spacing: -0.03em;
  font-weight:    700;
}

h3 {
  font-size:      clamp(1.15rem, 1rem + 0.7vw, 1.5rem);
  line-height:    1.2;
  letter-spacing: -0.02em;
  font-weight:    600;
}

p {
  font-size: clamp(1rem, 0.96rem + 0.15vw, 1.05rem);
}

small {
  font-size: clamp(0.8rem, 0.78rem + 0.1vw, 0.9rem);
  color:     var(--muted);
}

/* Layout helpers */
.container {
  width:  min(100% - (var(--gutter) * 2), var(--container));
  margin: 0 auto;
}

.section {
  padding: clamp(var(--s6), 5vw, var(--s7)) 0;
}

.page-intro {
  padding-top: clamp(var(--s5), 3vw, var(--s7));
}

/* Accessibility */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--s4);
  padding: var(--s2) var(--s4);
  background: var(--primary);
  color: #fff;
  border-radius: 0 0 var(--radius) var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 100;
  transition: top var(--ease);
}

.skip-link:focus {
  top: 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display:         inline-flex;
  align-items:     center;
  justify-content: center;
  gap:             var(--s2);
  min-height:      44px;
  padding:         0 var(--s5);
  border:          none;
  border-radius:   999px;
  font-size:       clamp(0.9rem, 0.87rem + 0.15vw, 1rem);
  font-weight:     600;
  cursor:          pointer;
  transition:      transform var(--ease), background-color var(--ease), box-shadow var(--ease);
}

.btn--primary {
  background:  var(--primary);
  color:       #fff;
  box-shadow:  var(--shadow);
}

.btn--primary:hover {
  background: color-mix(in srgb, var(--primary) 86%, black 14%);
  transform:  translateY(-1px);
}

.btn--primary:active {
  transform: translateY(1px);
}

.btn--ghost {
  background: transparent;
  color:      var(--primary);
  border:     1px solid var(--primary);
}

.btn--ghost:hover {
  background: var(--secondary);
}

.btn:focus-visible {
  outline:        2px solid var(--primary);
  outline-offset: 3px;
}

/* ============================================================
   NAV
   ============================================================ */

.site-header {
  position:        sticky;
  top:             0;
  z-index:         20;
  background:      var(--bg);
}

.nav-wrapper {
  min-height:      72px;
  display:         grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:     center;
  gap:             var(--s5);
}

.brand {
  justify-self: center;
  grid-column:  2;
}

.brand-logo {
  height: 50px;
  width:  auto;
}

nav {
  grid-column: 1;
  grid-row:    1;
}

.nav-list {
  display:     flex;
  align-items: center;
  gap:         var(--s7);
}

.nav-link {
  display:    inline-flex;
  align-items: center;
  min-height: 44px;
  font-size:  clamp(0.9rem, 0.87rem + 0.15vw, 1rem);
  font-weight: 100;
  text-transform: uppercase;
  color:      var(--muted);
  transition: color var(--ease);
}

.nav-link:hover,
.nav-link:focus-visible {
  color:      var(--primary);
  background: transparent;
}

.nav-link--active {
  color:      var(--text);
  background: transparent;
  box-shadow: none;
}

.nav-link:focus-visible {
  outline:        2px solid var(--primary);
  outline-offset: 3px;
}

/* Hamburger */
.nav-toggle {
  display:         none;
  width:           46px;
  height:          46px;
  padding:         0;
  border:          none;
  border-radius:   0;
  background:      transparent;
  box-shadow:      none;
  cursor:          pointer;
  align-items:     center;
  justify-content: center;
  flex-direction:  column;
  gap:             5px;
}

.bar {
  width:            18px;
  height:           2px;
  border-radius:    999px;
  background:       var(--text);
  transform-origin: center;
  transition:       transform var(--ease), opacity var(--ease);
}

.nav-toggle.open .bar--top { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open .bar--mid { opacity: 0; }
.nav-toggle.open .bar--bot { transform: translateY(-7px) rotate(-45deg); }

.nav-toggle:focus-visible {
  outline:        2px solid var(--primary);
  outline-offset: 3px;
}

/* ============================================================
   MOBILE MENU
   ============================================================ */

.mobile-menu {
  position:       fixed;
  inset:          0;
  top:            72px;
  z-index:        10;
  padding:        var(--s5) var(--gutter);
  background:     rgba(247, 248, 252, 0.98);
  opacity:        0;
  visibility:     hidden;
  pointer-events: none;
  transform:      translateY(-6px);
  transition:
    opacity    var(--ease),
    transform  var(--ease),
    visibility 0s linear 180ms;
}

.mobile-menu[hidden] { display: none; }

.mobile-menu.open {
  opacity:        1;
  visibility:     visible;
  pointer-events: auto;
  transform:      translateY(0);
  transition:
    opacity   var(--ease),
    transform var(--ease),
    visibility 0s;
}

.nav-list--mobile {
  flex-direction: column;
  align-items:    flex-start;
  gap:            var(--s2);
}

.nav-list--mobile .nav-link {
  width:      auto;
  padding:    var(--s2) 0;
  border:     none;
  background: transparent;
  box-shadow: none;
  font-size:  clamp(1.1rem, 1rem + 0.5vw, 1.3rem);
  color:      var(--text);
}

.nav-list--mobile .nav-link:hover {
  color:      var(--primary);
  background: transparent;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  .nav-list--desktop { display: none; }
  .nav-toggle        { display: inline-flex; }

  .nav-wrapper {
    grid-template-columns: 1fr auto;
  }

  .brand {
    grid-column:  1;
    justify-self: flex-start;
  }

  nav {
    grid-column: 2;
    grid-row:    1;
  }
}

@media (max-width: 640px) {
  .nav-wrapper  { min-height: 64px; }
  .mobile-menu  { top: 64px; }
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: #c490b0;
  color: #fff;
}

/* --- Contact --- */

.footer-contact {
  padding: clamp(var(--s6), 5vw, var(--s7)) 0 var(--s7);
}

.footer-contact-inner {
  display: flex;
  flex-direction: column;
  gap: var(--s6);
}

.footer-contact-title {
  font-size: clamp(2.5rem, 2rem + 4vw, 5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #fff;
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: var(--s7);
  align-items: start;
}

.footer-contact-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--s2);
  display: block;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--s5);
  padding-top: var(--s2);
}

.footer-info-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: var(--s1);
}

.footer-info-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(0.9rem, 0.87rem + 0.15vw, 1rem);
  line-height: 1.6;
}

a.footer-info-text:hover {
  color: #fff;
}

/* --- Bottom --- */

.footer-bottom {
  padding-top: clamp(var(--s6), 4vw, var(--s7));
}

.footer-bottom-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas: "brand logo nav";
  gap: var(--s5);
  align-items: start;
  padding-bottom: clamp(var(--s6), 4vw, var(--s7));
}

/* Kolom 1: brand links */

.footer-brand {
  grid-area: brand;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-brand-name {
  font-size: clamp(1.5rem, 1rem + 0.5vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: var(--s2);
}

.footer-brand-text {
  color: rgba(255, 255, 255);
  font-size: clamp(1rem, 0.87rem + 0.15vw, 1.2rem);
  line-height: 1.6;
  margin-bottom: var(--s4);
  font-weight: 100;
}

.footer-social {
  display: flex;
  gap: var(--s3);
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: opacity var(--ease);
}

.footer-social a:hover {
  opacity: 0.65;
}

/* Kolom 2: logo gecentreerd */

.footer-logo {
  grid-area: logo;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-logo-img {
  height: 65px;
  width: auto;
}

/* Kolom 3: nav rechts */

.footer-nav {
  grid-area: nav;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer-nav-title {
  font-size: clamp(1.5rem, 1rem + 0.5vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: var(--s2);
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--s2);
}

.footer-nav-link {
  color: rgba(255, 255, 255);
  font-size: clamp(0.9rem, 0.87rem + 0.15vw, 1rem);
  transition: color var(--ease);
}

.footer-nav-link:hover {
  color: #fff;
}

/* Legal balk */

.footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--s4) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-legal-left,
.footer-legal-right {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

/* ============================================================
   FOOTER RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  .footer-contact-grid {
    grid-template-columns: 1fr;
    gap: var(--s6);
  }

  .footer-contact-img {
    aspect-ratio: 16 / 7;
  }

  .footer-bottom-inner {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "brand nav"
      "logo  logo";
    gap: var(--s6);
  }

  .footer-logo {
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: var(--s6);
    margin-top: var(--s2);
  }
}

@media (max-width: 640px) {
  .footer-contact-img {
    aspect-ratio: 4 / 3;
  }

  .footer-contact-info {
    gap: var(--s4);
    padding-top: 0;
  }

  .footer-bottom-inner {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "logo   logo"
      "brand  nav";
    gap: var(--s5);
  }

  .footer-logo {
    justify-content: center;
    align-items: center;
    border-top: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 0;
    padding-bottom: var(--s5);
    margin-top: 0;
  }

  .footer-logo-img {
    height: 40px;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-nav {
    align-items: flex-end;
  }

  .footer-nav-list {
    align-items: flex-end;
  }
}