/* ============================================================
   DunQn — Stylesheet
   ============================================================ */

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

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }

:root {
  --bg-dark:        #1C0E02;
  --bg-page:        #F2EDE6;
  --bg-card:        #FAF7F3;
  --off-white:      #F7F5F2;
  --amber:          #F07B20;
  --amber-mid:      #C25E0A;
  --amber-soft:     rgba(240,123,32,0.1);
  --text-body:      #4A3525;
  --text-muted:     #B8AA9A;
  --text-mid:       #7A6555;
  --border-page:    rgba(28,14,2,0.08);
  --border-dark:    rgba(240,123,32,0.14);
  --radius:         10px;
  --radius-lg:      16px;
  --max-w:          1080px;
  --gap:            96px;
  --gap-sm:         64px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--bg-page);
  color: var(--bg-dark);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { line-height: 1.18; font-weight: 700; letter-spacing: -0.01em; color: var(--bg-dark); }
h1 { font-size: clamp(2.1rem, 5.5vw, 3.4rem); }
h2 { font-size: clamp(1.55rem, 3.5vw, 2.2rem); }
h3 { font-size: 1.1rem; font-weight: 600; }
p  { color: var(--text-body); line-height: 1.78; }

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 28px;
}

.section { padding-block: var(--gap); }
.section--tight { padding-block: var(--gap-sm); }

/* ---- Dark sections ---- */
.section--dark {
  background-color: var(--bg-dark);
  color: var(--off-white);
}
.section--dark h2,
.section--dark h3 { color: var(--off-white); }
.section--dark p   { color: var(--text-muted); }
.section--dark .section-label { color: var(--amber); }

/* ---- Labels ---- */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-mid);
  margin-bottom: 16px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 7px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  line-height: 1;
}

.btn-primary {
  background-color: var(--amber);
  color: #fff;
  box-shadow: 0 4px 16px rgba(240,123,32,0.25);
}
.btn-primary:hover {
  background-color: #D96D10;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240,123,32,0.35);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--amber-mid);
  color: var(--amber-mid);
}
.btn-outline:hover {
  background: var(--amber-mid);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  border: 1.5px solid var(--amber);
  color: var(--amber);
}
.btn-outline-light:hover {
  background: var(--amber);
  color: #fff;
  transform: translateY(-2px);
}

/* ---- Logo ---- */
.logo { display: inline-flex; align-items: center; }
.logo-img { height: 44px; width: auto; display: block; }

/* ======================================================
   NAV — lichte balk
   ====================================================== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--bg-page);
  border-bottom: 1px solid var(--border-page);
  box-shadow: 0 1px 12px rgba(28,14,2,0.05);
}

.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.18s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--bg-dark); }

.nav-cta { margin-left: 8px; }
.nav-cta .btn-primary { color: #fff; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--bg-dark);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: var(--bg-page);
  border-top: 1px solid var(--border-page);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 16px 28px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border-page);
  transition: color 0.18s;
}
.mobile-menu a:hover,
.mobile-menu a.active { color: var(--bg-dark); }
.mobile-menu .btn-primary {
  margin: 20px 28px;
  border-radius: 7px;
  justify-content: center;
  color: #fff;
}

@media (max-width: 780px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
}

/* ======================================================
   FOOTER — donker
   ====================================================== */
.site-footer {
  background-color: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-block: 40px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links { display: flex; gap: 28px; list-style: none; }

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.18s;
}
.footer-links a:hover { color: var(--off-white); }

.footer-copy { font-size: 0.8rem; color: var(--text-muted); }

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

.footer-brand { display: flex; flex-direction: column; gap: 8px; }
.footer-brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--off-white);
  letter-spacing: -0.01em;
}
.footer-brand-name .q { color: var(--amber); }
.footer-brand-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 280px;
}

/* ======================================================
   SCROLL ANIMATIES
   ====================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }

/* ======================================================
   HOME — HERO
   ====================================================== */
.hero {
  padding-top: 112px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(240,123,32,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner { max-width: 860px; position: relative; z-index: 1; }

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.3rem, 6vw, 3.8rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--bg-dark);
}
.hero-headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--amber-mid);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-mid);
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.75;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  font-size: 0.85rem;
  color: var(--text-mid);
}
.hero-trust-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amber-mid);
  flex-shrink: 0;
}

/* ======================================================
   HOME — PIJNPUNTEN
   ====================================================== */
.section-pijn { padding-top: 48px; padding-bottom: var(--gap); }

.pijn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.pijn-card {
  background: var(--bg-card);
  border: 1px solid var(--border-page);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(28,14,2,0.04);
  transition: box-shadow 0.2s, transform 0.2s;
}
.pijn-card:hover {
  box-shadow: 0 6px 24px rgba(28,14,2,0.09);
  transform: translateY(-2px);
}

.pijn-icon { width: 44px; height: 44px; margin-bottom: 18px; color: var(--amber-mid); }
.pijn-card h3 { margin-bottom: 8px; }

/* ======================================================
   HOME — HOE HET WERKT (donker)
   ====================================================== */
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 52px;
}

.step-item { text-align: center; }

.step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(240,123,32,0.15);
  border: 1.5px solid rgba(240,123,32,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--amber);
}

.step-item h3 { color: var(--off-white); margin-bottom: 10px; }
.step-item p  { color: var(--text-muted); }

/* ======================================================
   HOME — VOOR WIE (donker)
   ====================================================== */
.voor-wie-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.voor-wie-box {
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid rgba(240,123,32,0.14);
  background: rgba(255,255,255,0.04);
}

.voor-wie-box h3 {
  color: var(--off-white);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.voor-wie-box ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.voor-wie-box ul li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.voor-wie-box.niet ul li { color: rgba(184,170,154,0.6); }
.check-icon { flex-shrink: 0; margin-top: 2px; }

/* ======================================================
   HOME — CASES
   ====================================================== */
.section-cases { padding-top: var(--gap); padding-bottom: 48px; }

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.case-card.coming-soon {
  border-radius: var(--radius-lg);
  border: 1.5px dashed rgba(194,94,10,0.25);
  background: var(--bg-card);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  min-height: 168px;
}

.case-card.coming-soon .label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-mid);
  opacity: 0.7;
}

.case-card.coming-soon p {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-top: 2px;
}

/* ======================================================
   MANTRA
   ====================================================== */
.mantra-section {
  padding-block: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mantra-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(240,123,32,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.mantra-quote {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.2rem, 2.8vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  color: var(--bg-dark);
  max-width: 740px;
  margin-inline: auto;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}

.mantra-quote em   { font-style: normal; }
.mantra-quote strong {
  font-style: normal;
  color: var(--amber-mid);
  font-weight: 700;
}

.mantra-sub {
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--text-mid);
  position: relative;
  z-index: 1;
}

/* ======================================================
   CTA BANNER
   ====================================================== */
.cta-banner {
  background-color: var(--bg-dark);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  text-align: center;
  margin-bottom: var(--gap);
}

.cta-banner h2 { color: var(--off-white); margin-bottom: 14px; }
.cta-banner > p { max-width: 480px; margin-inline: auto; color: var(--text-muted); margin-bottom: 32px; }

/* ======================================================
   INNER PAGE HERO
   ====================================================== */
.page-hero {
  padding-top: 80px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border-page);
}

.page-hero h1 { margin-bottom: 14px; }

.page-hero .lead {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.75;
}

/* ======================================================
   AANPAK PAGE
   ====================================================== */
.phase-list { margin-top: 16px; }

.phase-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 28px;
  padding-block: 48px;
  border-bottom: 1px solid var(--border-page);
}
.phase-item:last-child { border-bottom: none; }

.phase-num {
  font-size: 2.6rem;
  font-weight: 700;
  color: rgba(194,94,10,0.18);
  line-height: 1;
  padding-top: 6px;
}

.phase-content h3 { margin-bottom: 10px; font-size: 1.2rem; }

.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }

.tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(194,94,10,0.08);
  color: var(--amber-mid);
  border: 1px solid rgba(194,94,10,0.18);
}

.niet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.niet-card {
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border-page);
  background: var(--bg-card);
  box-shadow: 0 2px 10px rgba(28,14,2,0.04);
}
.niet-card h3 { margin-bottom: 10px; }

/* ======================================================
   OVER PAGE
   ====================================================== */
.over-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
}

.over-photo-col { position: sticky; top: 90px; }

.over-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 6px 32px rgba(28,14,2,0.12);
}

.over-contact-block {
  margin-top: 20px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border-page);
  overflow: hidden;
}

.daniel-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-page);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-body);
  transition: color 0.18s, background 0.18s;
}
.daniel-link:last-child { border-bottom: none; }
.daniel-link:hover { color: var(--amber-mid); background: rgba(194,94,10,0.04); }
.daniel-link svg { color: var(--amber-mid); flex-shrink: 0; }

.over-content { padding-top: 4px; }
.over-content h2 { margin-bottom: 24px; }
.over-content p + p { margin-top: 16px; }

.over-highlight {
  margin-top: 32px;
  padding: 24px 28px;
  border-left: 3px solid var(--amber-mid);
  background: rgba(194,94,10,0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--bg-dark);
  line-height: 1.6;
}
.over-highlight strong { font-style: normal; color: var(--amber-mid); }

.over-growth {
  margin-top: 56px;
  padding: 40px 44px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-page);
  box-shadow: 0 2px 12px rgba(28,14,2,0.04);
}

.over-growth h3 { margin-bottom: 12px; }
.over-growth p + p { margin-top: 12px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.value-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-page);
  background: var(--bg-card);
  box-shadow: 0 2px 10px rgba(28,14,2,0.04);
}
.value-card h3 { margin-bottom: 8px; }

/* ======================================================
   CONTACT PAGE
   ====================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-intro { margin-bottom: 36px; }
.contact-intro h2 { margin-bottom: 10px; }

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding-block: 22px;
  border-bottom: 1px solid var(--border-page);
}
.contact-method:first-child { padding-top: 0; }
.contact-method:last-child  { border-bottom: none; }

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(194,94,10,0.09);
  border: 1px solid rgba(194,94,10,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--amber-mid);
}

.contact-method-body a {
  font-weight: 600;
  font-size: 1rem;
  color: var(--bg-dark);
  transition: color 0.18s;
}
.contact-method-body a:hover { color: var(--amber-mid); }
.contact-method-body small { display: block; color: var(--text-mid); font-size: 0.82rem; margin-top: 3px; }

.contact-meta {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-meta-item {
  font-size: 0.9rem;
  color: var(--text-mid);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.55;
}
.contact-meta-item strong { color: var(--bg-dark); }

.contact-cta-card {
  background: var(--bg-card);
  border: 1px solid var(--border-page);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: 0 4px 24px rgba(28,14,2,0.07);
  position: sticky;
  top: 90px;
}

.contact-cta-card h3 { margin-bottom: 12px; font-size: 1.25rem; }
.contact-cta-card > p { margin-bottom: 24px; color: var(--text-mid); font-size: 0.95rem; }
.contact-cta-card .btn { width: 100%; justify-content: center; }

/* ======================================================
   OVER — naam + iconen onder foto
   ====================================================== */
.over-name-row {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.over-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-body);
  line-height: 1.3;
}

.over-icon-links {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.over-icon-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(194,94,10,0.09);
  border: 1px solid rgba(194,94,10,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-mid);
  transition: background 0.18s, color 0.18s;
}
.over-icon-link:hover {
  background: var(--amber-mid);
  color: #fff;
}

/* ======================================================
   CONTACT — formulier
   ====================================================== */
.hidden { display: none !important; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-body);
  letter-spacing: 0.01em;
}

.form-field input {
  width: 100%;
  padding: 11px 14px;
  border-radius: 7px;
  border: 1.5px solid var(--border-page);
  background: var(--bg-page);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--bg-dark);
  transition: border-color 0.18s, box-shadow 0.18s;
  outline: none;
  -webkit-appearance: none;
}

.form-field input::placeholder { color: var(--text-muted); }

.form-field input:focus {
  border-color: var(--amber-mid);
  box-shadow: 0 0 0 3px rgba(194,94,10,0.1);
}

.contact-form .btn { margin-top: 4px; width: 100%; justify-content: center; }

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 8px 0;
}

.form-success-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--bg-dark) !important;
}

.form-success p { color: var(--text-mid); font-size: 0.95rem; }

/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 900px) {
  :root { --gap: 72px; --gap-sm: 52px; }

  .pijn-grid,
  .niet-grid,
  .cases-grid { grid-template-columns: repeat(2, 1fr); }

  .steps-row { grid-template-columns: 1fr; gap: 32px; }
  .step-item { text-align: left; display: flex; gap: 20px; align-items: flex-start; }
  .step-circle { margin: 0; flex-shrink: 0; }

  .voor-wie-cols { grid-template-columns: 1fr; }

  .over-layout { grid-template-columns: 1fr; gap: 40px; }
  .over-photo-col { position: static; display: grid; grid-template-columns: 240px 1fr; gap: 24px; align-items: start; }
  .over-photo { max-width: 240px; }

  .contact-layout { grid-template-columns: 1fr; gap: 44px; }
  .contact-cta-card { position: static; }
}

@media (max-width: 600px) {
  :root { --gap: 56px; --gap-sm: 44px; }

  .hero { padding-top: 72px; padding-bottom: 60px; }

  .pijn-grid,
  .niet-grid,
  .cases-grid,
  .values-grid { grid-template-columns: 1fr; }

  .phase-item { grid-template-columns: 1fr; gap: 6px; }
  .phase-num  { font-size: 2rem; }

  .cta-banner { padding: 40px 24px; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }

  .over-photo-col { grid-template-columns: 1fr; }
  .over-photo { max-width: 100%; }
}
