:root {
  --mint: #6EDDB0;
  --mint-light: #e8faf3;
  --mint-mid: #b2efd4;
  --mint-dark: #2a9d6e;
  --ink: #1a1f1c;
  --ink-soft: #4a5550;
  --cream: #faf9f6;
  --white: #ffffff;
  --border: rgba(110,221,176,0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 64px;
  background: rgba(250,249,246,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.nav-logo img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--mint-dark); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.25s;
}

.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0; right: 0;
  background: rgba(250,249,246,0.98);
  backdrop-filter: blur(10px);
  z-index: 99;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  gap: 0;
}

.nav-mobile-menu a {
  text-decoration: none;
  color: var(--ink);
  font-size: 1.1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  display: block;
}

.nav-mobile-menu.open { display: flex; }

/* ── HERO ── */
#home {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 64px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 3rem 5rem 4rem;
}

.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mint-dark);
  background: var(--mint-light);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
}

.hero-logo {
  width: 110px;
  height: auto;
  margin-bottom: 1.5rem;
  display: block;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: normal;
  color: var(--mint-dark);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 440px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: var(--mint-dark);
  color: white;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: #228b5e; transform: translateY(-1px); }

.btn-secondary {
  display: inline-block;
  border: 1.5px solid var(--mint-dark);
  color: var(--mint-dark);
  padding: 0.85rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s;
}
.btn-secondary:hover { background: var(--mint-light); }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--mint-dark);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 0.3rem;
  font-weight: 300;
}

.hero-right {
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-right-inner {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}

.hero-pill {
  background: rgba(255,255,255,0.25);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  color: white;
}

.hero-pill strong {
  display: block;
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.hero-pill span {
  font-weight: 300;
  font-size: 0.85rem;
  opacity: 0.85;
}

.hero-pill-label {
  display: inline-block;
  background: rgba(255,255,255,0.3);
  border-radius: 100px;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  margin-bottom: 0.5rem;
  color: white;
  font-weight: 500;
}

/* ── SECTIES ── */
section { padding: 6rem 4rem; }

.section-inner { max-width: 900px; margin: 0 auto; }

.section-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint-dark);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

/* ── OVER ONS ── */
#over-ons { background: white; }

.over-ons-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.over-ons-text p {
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
  font-weight: 300;
  font-size: 1.02rem;
}

.principles {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}

.principle {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  background: var(--mint-light);
  border-radius: 8px;
  border-left: 3px solid var(--mint);
}

.principle-icon { font-size: 1.1rem; margin-top: 0.1rem; flex-shrink: 0; }

.principle-text {
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-weight: 300;
  line-height: 1.6;
}

.principle-text strong {
  display: block;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 0.1rem;
  font-size: 0.9rem;
}

/* ── TEAM ── */
#team { background: var(--cream); }

.team-intro {
  color: var(--ink-soft);
  font-weight: 300;
  font-size: 1.02rem;
  max-width: 580px;
  margin-bottom: 3rem;
}

.portraits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.portrait-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.portrait-circle {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid white;
  box-shadow: 0 2px 12px rgba(46,160,105,0.15);
}

.portrait-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-name {
  font-size: 0.85rem;
  color: var(--ink-soft);
  text-align: center;
}

/* ── PROJECTEN ── */
#projecten { background: var(--ink); color: white; }
#projecten .section-label { color: var(--mint); }
#projecten .section-title { color: white; }

.project-desc {
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 640px;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.tag {
  background: rgba(110,221,176,0.15);
  border: 1px solid rgba(110,221,176,0.3);
  color: var(--mint);
  font-size: 0.78rem;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

.past-projects {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.past-projects h4 {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.countries-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.country-chip {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 0.35rem 0.75rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
}

/* ── ACTIES ── */
#acties { background: var(--mint-light); }

.acties-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.actie-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--border);
  border-left: 4px solid var(--mint);
}

.actie-maand {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mint-dark);
  margin-bottom: 0.75rem;
}

.actie-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.actie-card p {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
}

.actie-status {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.75rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* ── PARTNERS ── */
#partners { background: white; text-align: center; }

.partners-sub {
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 3rem;
  font-size: 0.97rem;
}

.partners-logo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  align-items: center;
}

.partner-logo {
  padding: 1rem 1.5rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, transform 0.15s;
}

.partner-logo:hover { border-color: var(--mint); transform: translateY(-2px); }

.partner-logo img {
  height: 55px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

/* ── CONTACT ── */
#contact { background: var(--cream); border-top: 1px solid var(--border); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-left p {
  color: var(--ink-soft);
  font-weight: 300;
  font-size: 1.02rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 300;
}

.contact-icon {
  width: 36px; height: 36px;
  background: var(--mint-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-item a {
  color: var(--mint-dark);
  text-decoration: none;
  font-weight: 400;
}
.contact-item a:hover { text-decoration: underline; }

.volunteer-box {
  background: var(--mint);
  border-radius: 12px;
  padding: 2.25rem;
  color: white;
}

.volunteer-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.volunteer-box p {
  font-weight: 300;
  font-size: 0.92rem;
  opacity: 0.9;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.btn-white {
  display: inline-block;
  background: white;
  color: var(--mint-dark);
  padding: 0.8rem 1.75rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: transform 0.15s;
}
.btn-white:hover { transform: translateY(-1px); }

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.45);
  text-align: center;
  padding: 2rem;
  font-size: 0.82rem;
  font-weight: 300;
}

footer strong { color: rgba(255,255,255,0.7); font-weight: 400; }

/* ── ANIMATIES ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-left > * {
  animation: fadeUp 0.7s ease both;
}
.hero-left > *:nth-child(1) { animation-delay: 0.05s; }
.hero-left > *:nth-child(2) { animation-delay: 0.15s; }
.hero-left > *:nth-child(3) { animation-delay: 0.25s; }
.hero-left > *:nth-child(4) { animation-delay: 0.35s; }
.hero-left > *:nth-child(5) { animation-delay: 0.45s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  #home { grid-template-columns: 1fr; }
  .hero-right { min-height: 280px; }
  .over-ons-grid,
  .project-card,
  .acties-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  section { padding: 4rem 1.5rem; }
  .hero-left { padding: 3rem 1.5rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

@media (max-width: 600px) {
  nav { padding: 0 1.25rem; }
  .hero-title { font-size: 2.2rem; }
  .section-title { font-size: 1.7rem; }
  .hero-left { padding: 2rem 1.25rem; }
  .hero-stats { gap: 1.5rem; }
  .stat-num { font-size: 1.6rem; }
  section { padding: 3rem 1.25rem; }
  .portraits-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-right { display: none; }
  .partner-logo img { height: 40px; }
  .hero-logo { width: 80px; }
}
