/* ========================================
   MOVE Making Progress — Website Styles
   Brand colors: warm orange, amber, deep charcoal
   ======================================== */

:root {
  --orange-50: #fff8f0;
  --orange-100: #ffedda;
  --orange-200: #ffd9b0;
  --orange-300: #ffc078;
  --orange-400: #f9a03f;
  --orange-500: #e8820c;
  --orange-600: #d46b08;
  --orange-700: #b05006;
  --amber-400: #f5c842;
  --amber-500: #e0b020;
  --charcoal-900: #1a1a1a;
  --charcoal-800: #2d2d2d;
  --charcoal-700: #404040;
  --charcoal-600: #555;
  --charcoal-400: #888;
  --charcoal-200: #ccc;
  --charcoal-100: #e8e8e8;
  --charcoal-50: #f5f5f5;
  --white: #ffffff;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; color: var(--charcoal-900); line-height: 1.2; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  border: none;
  text-decoration: none;
}
.btn-primary {
  background: var(--orange-500);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(232, 130, 12, 0.3);
}
.btn-primary:hover {
  background: var(--orange-600);
  box-shadow: 0 4px 20px rgba(232, 130, 12, 0.4);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.4s var(--ease-out);
}
.nav--scrolled {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
}
.logo-icon { width: 32px; height: 28px; }
.logo-icon--orange { color: var(--orange-400); }
.logo-light { font-weight: 400; opacity: 0.8; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--orange-500) !important;
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 6px;
}
.nav-cta:hover { background: var(--orange-600) !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(249, 160, 63, 0.25) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(245, 200, 66, 0.15) 0%, transparent 60%),
    linear-gradient(160deg, var(--charcoal-900) 0%, #2a1f10 40%, #1a1510 100%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    radial-gradient(circle at 20% 80%, var(--orange-400) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, var(--amber-400) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, var(--orange-300) 0.5px, transparent 0.5px);
  background-size: 60px 60px, 80px 80px, 40px 40px;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}
.hero-label {
  display: inline-block;
  color: var(--orange-400);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
  position: relative;
  padding-left: 40px;
}
.hero-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 1.5px;
  background: var(--orange-400);
}
.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 28px;
  max-width: 800px;
}
.hero-highlight {
  background: linear-gradient(135deg, var(--orange-400), var(--amber-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.6);
  max-width: 700px;
  line-height: 1.8;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll {
  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.3);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ---- Intro ---- */
.intro {
  padding: 100px 0;
  background: var(--white);
}
.intro-quote {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--charcoal-800);
  line-height: 1.5;
  position: relative;
}
.intro-quote::before {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--orange-400), var(--amber-400));
  margin: 0 auto 30px;
  border-radius: 2px;
}
.intro-quote em {
  color: var(--orange-500);
  font-style: italic;
}

/* ---- Section Headers ---- */
.section-label {
  display: inline-block;
  color: var(--orange-500);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
}
.section-desc {
  color: var(--charcoal-600);
  font-size: 1.05rem;
  max-width: 540px;
}
.section-header { margin-bottom: 60px; }
.section-header--center { text-align: center; }
.section-header--center .section-desc { margin: 0 auto; }

/* ---- Diensten ---- */
.diensten {
  padding: 120px 0;
  background: var(--charcoal-50);
}
.diensten-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.dienst-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 12px;
  position: relative;
  transition: all 0.4s var(--ease-out);
  border: 1px solid var(--charcoal-100);
}
.dienst-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  border-color: var(--orange-200);
}
.dienst-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--orange-200);
  margin-bottom: 20px;
  line-height: 1;
}
.dienst-card h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
  hyphens: auto;
}
.dienst-card p {
  font-size: 0.95rem;
  color: var(--charcoal-600);
  line-height: 1.7;
}
.dienst-line {
  width: 40px;
  height: 2.5px;
  background: linear-gradient(to right, var(--orange-400), var(--amber-400));
  margin-top: 24px;
  border-radius: 2px;
  transition: width 0.4s var(--ease-out);
}
.dienst-card:hover .dienst-line { width: 60px; }

/* ---- Over MOVE ---- */
.over {
  padding: 120px 0;
  background: var(--white);
}
.over-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.over-visual {
  position: relative;
}
.over-visual-block {
  background: linear-gradient(145deg, var(--orange-50), var(--orange-100));
  border-radius: 16px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.over-visual-block::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -30%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, var(--orange-200) 0%, transparent 70%);
  opacity: 0.5;
}
.over-visual-block--photo {
  position: relative;
  overflow: hidden;
  background: none;
  padding: 0;
}
.over-visual-block--photo::before {
  display: none;
}
.over-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.over-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.8) 0%, rgba(26, 26, 26, 0.1) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 32px;
}
.over-photo-tagline {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  font-style: italic;
  color: var(--white);
  letter-spacing: 0.04em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.over-intro {
  font-size: 1.1rem;
  color: var(--charcoal-800);
  line-height: 1.8;
  margin-bottom: 16px;
}
.over-text p { margin-bottom: 16px; }
.over-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.over-value {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.over-value-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--orange-50);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.over-value-icon svg {
  width: 20px;
  height: 20px;
  color: var(--orange-500);
}
.over-value strong {
  display: block;
  font-size: 0.95rem;
  color: var(--charcoal-900);
  margin-bottom: 2px;
}
.over-value p {
  font-size: 0.88rem;
  color: var(--charcoal-600);
  margin-bottom: 0;
}

/* ---- Aanpak ---- */
.aanpak {
  padding: 120px 0;
  background: var(--charcoal-900);
  color: var(--white);
}
.aanpak .section-title { color: var(--white); }
.aanpak .section-desc { color: rgba(255,255,255,0.5); max-width: 680px; }
.aanpak-steps {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.aanpak-step {
  display: flex;
  gap: 32px;
  position: relative;
}
.aanpak-step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.aanpak-step-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--orange-500);
  box-shadow: 0 0 0 4px rgba(232, 130, 12, 0.2);
  flex-shrink: 0;
}
.aanpak-step-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, var(--orange-500), rgba(232, 130, 12, 0.1));
  min-height: 40px;
}
.aanpak-step:last-child .aanpak-step-line { display: none; }
.aanpak-step-content {
  padding-bottom: 48px;
}
.aanpak-step:last-child .aanpak-step-content { padding-bottom: 0; }
.aanpak-step h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.aanpak-step p {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---- CTA Banner ---- */
.cta-banner {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600) 40%, var(--orange-700));
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
}
.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-inner h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
}
.cta-inner p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 540px;
  margin: 0 auto 32px;
}
.cta-banner .btn-primary {
  background: var(--white);
  color: var(--orange-600);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.cta-banner .btn-primary:hover {
  background: var(--orange-50);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* ---- Contact ---- */
.contact {
  padding: 120px 0;
  background: var(--charcoal-50);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info p {
  color: var(--charcoal-600);
  margin-bottom: 32px;
  max-width: 380px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-detail svg {
  width: 22px;
  height: 22px;
  color: var(--orange-500);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-detail strong {
  display: block;
  font-size: 0.85rem;
  color: var(--charcoal-900);
  margin-bottom: 2px;
}
.contact-detail a,
.contact-detail span {
  font-size: 0.95rem;
  color: var(--charcoal-600);
}
.contact-detail a:hover { color: var(--orange-500); }
.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--charcoal-100);
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
.hidden { display: none; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--charcoal-800);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--charcoal-200);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal-800);
  transition: border-color 0.3s, box-shadow 0.3s;
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange-400);
  box-shadow: 0 0 0 3px rgba(249, 160, 63, 0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ---- Footer ---- */
.footer {
  padding: 40px 0;
  background: var(--charcoal-900);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}
.footer-logo {
  width: 28px;
  height: 24px;
  color: var(--orange-400);
}
.footer-meta {
  display: flex;
  gap: 24px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ---- Scroll Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.dienst-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.dienst-card.reveal:nth-child(3) { transition-delay: 0.2s; }
.dienst-card.reveal:nth-child(4) { transition-delay: 0.3s; }
.aanpak-step.reveal:nth-child(2) { transition-delay: 0.15s; }
.aanpak-step.reveal:nth-child(3) { transition-delay: 0.3s; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .diensten-grid { grid-template-columns: repeat(2, 1fr); }
  .over-grid { grid-template-columns: 1fr; gap: 48px; }
  .over-visual { max-width: 420px; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 32px;
  }
  .nav-links--open {
    display: flex;
  }
  .nav-links a {
    font-size: 1.2rem;
  }
  .nav--menu-open {
    inset: 0;
    background: #1a1a1a;
  }
  .nav--menu-open .nav-inner {
    height: 100%;
    flex-direction: column;
    justify-content: center;
  }
  .nav-toggle { display: flex; }
  .nav-toggle--active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle--active span:nth-child(2) { opacity: 0; }
  .nav-toggle--active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .nav-cta { margin-top: 8px; }
  .hero-content { padding: 100px 24px 60px; }
  .diensten-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form { padding: 28px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer-meta { flex-direction: column; gap: 4px; align-items: center; }
  .intro { padding: 60px 0; }
  .diensten, .over, .aanpak, .contact { padding: 80px 0; }
  .cta-banner { padding: 60px 0; }
  .hero-scroll { display: none; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .over-accent-box { position: relative; bottom: auto; right: auto; margin-top: 16px; text-align: center; }
}
