/* ==================================================================================================== */
/* HEADER */
/* ==================================================================================================== */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 4rem;
    background: rgba(253,250,245,0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--light-border);
  }

  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    color: var(--charcoal);
    text-decoration: none;
  }

  .nav-logo span { color: var(--stone); font-style: italic; }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }

  .nav-links a {
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--stone);
    text-decoration: none;
    transition: color 0.3s;
  }

  .nav-links a:hover,
  .nav-links a.active { color: var(--charcoal); }

  .nav-cta {
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--warm-white);
    background: var(--charcoal);
    border: none;
    padding: 0.65rem 1.6rem;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s;
  }

  .nav-cta:hover { background: var(--accent); }

  /* BURGER KNOP */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}

.burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  transition: transform 0.35s ease, opacity 0.25s ease;
  transform-origin: center;
}

/* Burger → X animatie */
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* MOBIEL MENU PANEEL */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 50%;
  height: 100dvh;
  background: var(--warm-white);
  z-index: 150;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 3rem 4rem;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.18, 1);
  border-left: 1px solid var(--light-border);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding-top: 2rem;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav-links li {
  border-bottom: 1px solid var(--light-border);
}

.mobile-nav-links li:first-child {
  border-top: 1px solid var(--light-border);
}

.mobile-nav-links a {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--charcoal);
  text-decoration: none;
  padding: 1.1rem 0;
  transition: color 0.3s, padding-left 0.3s;
}

.mobile-nav-links a:hover {
  color: var(--accent);
  padding-left: 0.5rem;
}

.mobile-cta {
  display: block;
  text-align: center;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-white);
  background: var(--charcoal);
  padding: 1.1rem 2rem;
  text-decoration: none;
  transition: background 0.3s;
}

.mobile-cta:hover { background: var(--accent); }

/* DONKERE OVERLAY ACHTER HET PANEEL */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 28, 26, 0.5);
  z-index: 140;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(2px);
}

.mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-close {
  position: absolute;
  top: 1.6rem;
  right: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-close span {
  display: block;
  position: absolute;
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  transition: background 0.2s;
}

.mobile-close span:nth-child(1) { transform: rotate(45deg); }
.mobile-close span:nth-child(2) { transform: rotate(-45deg); }

.mobile-close:hover span { background: var(--accent); }
/* ==================================================================================================== */
/* FOOTER */
/* ==================================================================================================== */
  .cta-section {
    padding: 8rem 5rem;
    background: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
  }

  .cta-left { max-width: 520px; }

  .cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--cream);
    margin-bottom: 1.5rem;
  }

  .cta-title em { font-style: italic; color: var(--sand); }

  .cta-sub {
    font-size: 0.88rem;
    line-height: 1.85;
    color: rgba(201,185,154,0.55);
    margin-bottom: 2.5rem;
  }

  .cta-form { display: flex; }

  .cta-input {
    flex: 1;
    padding: 1rem 1.4rem;
    background: rgba(245,240,232,0.06);
    border: 1px solid rgba(201,185,154,0.2);
    border-right: none;
    color: var(--cream);
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    outline: none;
    transition: border-color 0.3s;
  }

  .cta-input::placeholder { color: rgba(201,185,154,0.35); }
  .cta-input:focus { border-color: rgba(201,185,154,0.5); }

  .cta-submit {
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    background: var(--sand);
    color: var(--charcoal);
    border: none;
    padding: 1rem 1.8rem;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s;
  }

  .cta-submit:hover { background: var(--cream); }

  .cta-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    min-width: 260px;
  }

  .cta-contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
  }

  .cta-contact-icon {
    margin-top: 2px;
    color: var(--sand);
    font-size: 1rem;
    flex-shrink: 0;
    width: 18px;
  }

  .cta-contact-label {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(201,185,154,0.4);
    margin-bottom: 0.3rem;
  }

  .cta-contact-value {
    font-size: 0.88rem;
    color: rgba(245,240,232,0.75);
  }

/* FOOTER */
.footer {
  padding: 3rem 5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem 3rem;
  background: #141412;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  color: rgba(245,240,232,0.4);
  white-space: nowrap;
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(245,240,232,0.25);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.3);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--sand); }

/* Socials footer */
.cta-socials {
  margin-top: 0.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201,185,154,0.12);
}
.cta-socials-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.cta-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(245,240,232,0.12);
  color: rgba(245,240,232,0.35);
  text-decoration: none;
  transition: color 0.3s, border-color 0.3s;
}
.cta-social-link svg {
  width: 15px;
  height: 15px;
}

.cta-social-link:hover {
  color: var(--sand);
  border-color: rgba(201,185,154,0.4);
}

/* Contact page footer */
.footer-socials {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-left: auto;
  }

  .footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(245,240,232,0.12);
    color: rgba(245,240,232,0.3);
    text-decoration: none;
    transition: color 0.3s, border-color 0.3s;
  }

  .footer-social-link svg {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .footer-social-link:hover {
    color: var(--sand);
    border-color: rgba(201,185,154,0.4);
  }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-left > * {
    animation: fadeUp 0.9s ease forwards;
    opacity: 0;
  }

  .hero-eyebrow { animation-delay: 0.1s; }
  .hero-title   { animation-delay: 0.25s; }
  .hero-sub     { animation-delay: 0.4s; }
  .hero-actions { animation-delay: 0.55s; }
/* ==================================================================================================== */
/* Tablet versie */
/* ==================================================================================================== */
  @media (max-width: 1024px) {
/* ============================================================ */
/* HEADER */
/* ============================================================ */
  nav {
    padding: 1.5rem 2rem;
  }

  .nav-links {
    gap: 1.25rem;
  }

  .nav-links a {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .nav-cta {
    padding: 0.65rem 1rem;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }
}
/* ==================================================================================================== */
/* Mobile versie */
/* ==================================================================================================== */
  @media (max-width: 768px) {
/* ============================================================ */
/* HEADER */
/* ============================================================ */
  .nav-links { display: none; }

  .nav-cta   { display: none; }

  .burger    { display: flex; }

  nav {
    padding: 1.25rem 1.5rem;
  }

  .mobile-menu { width: 50%; min-width: 280px; }
  
/* ============================================================ */
/* FOOTER */
/* ============================================================ */
  .cta-section {
    flex-direction: column;
    padding: 4rem 1.5rem;
    gap: 3rem;
  }

  .cta-left {
    max-width: 100%;
  }

  .cta-form {
    flex-direction: column;
    gap: 0.75rem;
  }

  .cta-input {
    border-right: 1px solid rgba(201,185,154,0.2);
    width: 100%;
  }

  .cta-submit {
    width: 100%;
    padding: 1rem;
    text-align: center;
  }

  .cta-right {
    min-width: unset;
    width: 100%;
    gap: 1.5rem;
  }
  .cta-socials {
    padding-top: 1.5rem;
    margin-top: 0.25rem;
  }
  .cta-socials-icons {
    gap: 0.6rem;
  }

  .cta-social-link {
    width: 42px;   /* iets groter voor touch targets */
    height: 42px;
  }

  .cta-social-link svg {
    width: 17px;
    height: 17px;
  }

  /* FOOTER BALK */
  .footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 2.5rem 1.5rem;
    gap: 1.5rem;
  }

  .footer-socials {
    margin-left: 0;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}