@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&display=swap');
/* =========================
   dan mag het ernaast — Minimal site
   Palette:
   eigenheid  #bf5d35
   zachtheid  #d5a092
   ruimte     #617364
   kalmte     #9a9b84
   warmte     #d4cbbc
   ========================= */

:root{
  --eigenheid:#bf5d35;
  --zachtheid:#d5a092;
  --ruimte:#617364;
  --kalmte:#9a9b84;
  --warmte:#d4cbbc;

  --bg: #f6f1e8;            /* warm linnen */
  --text: #1f2320;          /* warm donkergrijs */
  --muted: rgba(31,35,32,.72);

  --card: rgba(255,255,255,.55);
  --border: rgba(31,35,32,.12);

  --radius: 18px;
  --shadow: 0 10px 30px rgba(0,0,0,.06);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: "Source Sans 3", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 15% 10%, rgba(213,160,146,.22), transparent 56%),
    radial-gradient(900px 520px at 80% 25%, rgba(97,115,100,.16), transparent 58%),
    radial-gradient(900px 540px at 70% 90%, rgba(212,203,188,.26), transparent 62%),
    var(--bg);
  line-height:1.62;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

/* Koppen / hero in zachte serif */
.hero__title,
h1,
h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
}


font-family: "Source Sans 3", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 15% 10%, rgba(213,160,146,.22), transparent 56%),
    radial-gradient(900px 520px at 80% 25%, rgba(97,115,100,.16), transparent 58%),
    radial-gradient(900px 540px at 70% 90%, rgba(212,203,188,.26), transparent 62%),
    var(--bg);
  line-height:1.62;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; text-underline-offset: 4px; }

.wrap{
  width:min(1060px, calc(100% - 48px));
  margin-inline:auto;
}

.skip{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;height:1px;
  overflow:hidden;
}
.skip:focus{
  left:16px; top:16px; width:auto; height:auto;
  padding:10px 12px;
  background:rgba(255,255,255,.92);
  border:1px solid var(--border);
  border-radius:12px;
  box-shadow:var(--shadow);
  z-index:999;
}

/* Top bar */
.top{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(246,241,232,.74);
  border-bottom:1px solid var(--border);
}
.top__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand{ display:flex; align-items:center; gap:10px; }
.brand__dot{
  width:10px; height:10px; border-radius:99px;
  background: var(--eigenheid);
  box-shadow: 0 0 0 6px rgba(191,93,53,.12);
}
.brand__name{ font-weight:500; letter-spacing:.2px; }

.nav{ display:flex; gap:18px; font-size:14px; color:var(--muted); }
.nav a{ padding:8px 6px; border-radius:10px; }
.nav a:hover{ text-decoration:none; background: rgba(255,255,255,.45); color:var(--text); }

@media (max-width: 720px){
  .nav{ display:none; }
}

/* Hero */
.hero{
  padding:88px 0 40px;
}
.hero__inner{ text-align:center; }
.kicker{
  margin:0 0 10px;
  font-size:15px;
  color:var(--muted);
  letter-spacing:.5px;
  text-transform: lowercase;
}
.hero__title{
  margin:0;
  font-size: clamp(34px, 5vw, 56px);
  font-weight:500;
  letter-spacing:-0.02em;
  line-height:1.10;
}
.accent{
  color: var(--eigenheid);
  text-shadow: 0 0 0 rgba(0,0,0,0);
}
.hero__subtitle{
  margin:18px auto 0;
  max-width: 46ch;
  color: rgba(31,35,32,.78);
  font-weight:400;
  letter-spacing:.2px;
}
.hero__actions{
  margin-top:26px;
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}

/* Sections */
.section{ padding:56px 0; }
.section--soft{
  background: linear-gradient(to bottom, transparent, rgba(212,203,188,.30), transparent);
}
.section--cards{ padding-top:10px; }

.h2{
  margin:0 0 14px;
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight:500;
  letter-spacing:-0.01em;
}

.prose{ max-width: 72ch; }
.prose p{ margin: 0 0 12px; }
.prose strong{ font-weight:600; }

.muted{ color:var(--muted); }

/* Cards */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.card{
  padding:18px 18px 16px;
  border-radius: var(--radius);
  background: var(--card);
  border:1px solid var(--border);
  box-shadow: var(--shadow);
}
.card h3{
  margin:0 0 8px;
  font-size:16px;
  font-weight:600;
  letter-spacing:.2px;
}
.card p{ margin:0; color: var(--muted); }

@media (max-width: 920px){
  .cards{ grid-template-columns: 1fr; }
}

/* Split layout */
.split{
  display:grid;
  grid-template-columns: 1.35fr .65fr;
  gap:22px;
  align-items:start;
}
@media (max-width: 920px){
  .split{ grid-template-columns:1fr; }
}

/* Palette */
.palette{
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: rgba(255,255,255,.40);
  box-shadow: var(--shadow);
  padding:14px;
  position:sticky;
  top:84px;
}
.swatch{
  display:flex;
  align-items:center;
  gap:12px;
  padding:10px 10px;
  border-radius: 14px;
}
.swatch + .swatch{ border-top:1px solid rgba(31,35,32,.08); }
.swatch__chip{
  width:14px; height:14px; border-radius:99px;
  background: var(--chip);
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--chip), transparent 82%);
}
.swatch__label{
  font-size:14px;
  color: var(--muted);
  letter-spacing:.2px;
}

/* Steps */
.steps{
  list-style:none;
  padding:0;
  margin: 16px 0 0;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.steps li{
  padding:18px;
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: rgba(255,255,255,.45);
  box-shadow: var(--shadow);
}
.steps h3{
  margin:0 0 8px;
  font-size:15px;
  font-weight:600;
}
.steps p{ margin:0; color:var(--muted); }

@media (max-width: 920px){
  .steps{ grid-template-columns:1fr; }
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius: 999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.45);
  font-size:14px;
  font-weight:500;
  letter-spacing:.2px;
  text-decoration:none;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}
.btn:hover{
  text-decoration:none;
  transform: translateY(-1px);
}
.btn--primary{
  border-color: color-mix(in srgb, var(--eigenheid), black 12%);
  background: color-mix(in srgb, var(--eigenheid), white 72%);
}
.btn--ghost{
  background: rgba(255,255,255,.35);
}

/* Contact */
.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:22px;
  align-items:start;
}
@media (max-width: 920px){
  .contact{ grid-template-columns:1fr; }
}

.form{
  padding:18px;
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: rgba(255,255,255,.45);
  box-shadow: var(--shadow);
}
label{ display:block; margin-bottom:12px; }
label span{
  display:block;
  font-size:13px;
  color:var(--muted);
  margin-bottom:6px;
}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(31,35,32,.16);
  background: rgba(246,241,232,.55);
  color:var(--text);
  font: inherit;
  outline:none;
}
input:focus, textarea:focus{
  border-color: color-mix(in srgb, var(--ruimte), black 10%);
  box-shadow: 0 0 0 6px rgba(97,115,100,.14);
}
.form__note{
  margin:12px 0 0;
  font-size:12px;
  color:var(--muted);
}

.direct{
  padding:18px;
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: rgba(255,255,255,.35);
}
.direct__title{
  margin:0 0 10px;
  font-weight:600;
  font-size:14px;
}
.direct__line{
  margin:0 0 8px;
  display:flex;
  justify-content:space-between;
  gap:12px;
  color:var(--muted);
}
.direct__line strong{ color:var(--text); font-weight:600; }

/* Footer */
.footer{
  padding:34px 0 50px;
  border-top:1px solid var(--border);
  background: rgba(246,241,232,.72);
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:13px;
}
.footer__small{ margin:0; }

.contact-alt {
  margin-top: 1.5rem;
  font-size: 0.95em;
  color: var(--muted, #6b6b6b);
}

.contact a,
.direct a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact a:hover,
.direct a:hover {
  opacity: 0.8;
}

