/* Maria van Helbergen — placeholder skelet.
   Plain CSS, mobiel-first. Wordt vervangen door het definitieve Claude-design. */

* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --sage:   #5C8A6E;
  --sand:   #F5F1EB;
  --dark:   #1E2A22;
  --text:   #1A1A1A;
  --muted:  #6B6B6B;
  --border: rgba(0, 0, 0, 0.08);
}

html, body { height: 100%; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--sand);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

.shell {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  padding: 40px 32px;
  max-width: 440px;
  width: 100%;
  text-align: center;
}

.kicker {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 600;
  margin-bottom: 14px;
}

.naam {
  font-family: "Spectral", Georgia, serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 1.2;
  color: var(--dark);
}

.rol {
  font-size: 15px;
  color: var(--muted);
  margin-top: 6px;
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 26px auto;
  width: 60px;
}

.soon {
  font-family: "Spectral", Georgia, serif;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 10px;
}

.lead {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 24px;
}

.contact {
  display: inline-block;
  background: var(--sage);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 11px 28px;
  border-radius: 8px;
  transition: background 0.15s;
}

.contact:hover { background: #4a7059; }

@media (min-width: 600px) {
  .card { padding: 48px 44px; }
  .naam { font-size: 34px; }
}
