/* =====================================================
   CSS Custom Properties
===================================================== */
:root {
  --bg:          #F5F0E8;
  --bg-alt:      #EDE5D2;
  --bg-card:     #FEFCF7;
  --text:        #1C1917;
  --text-muted:  #78716C;
  --accent:      #1E7B7B;
  --accent-dark: #155F5F;
  --accent-pale: #C8E8E8;
  --border:      #E5DDD0;
  --white:       #FFFFFF;
  --nav-h:       72px;
  --max-w:       1200px;
  --radius:      5px;
  --ease:        0.25s ease;
}

/* =====================================================
   Reset & Base
===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.footer {
  margin-top: auto;
}

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

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

/* =====================================================
   Typografie
===================================================== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 2.8vw, 2.3rem); font-weight: 600; }
h3 { font-size: 1.15rem; font-weight: 600; }

p {
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.8;
}

/* =====================================================
   Layout helpers
===================================================== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* =====================================================
   Fade-in animaties (JS voegt .is-visible toe)
===================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
