:root{
  --navy:#0e1420;
  --navy-soft:#1a2333;
  --gold:#c9a227;
  --gold-soft:#e0bd51;
  --cream:#faf7f0;
  --ink:#1b1b1b;
  --muted:#6b6b6b;
  --line:#ddd6c6;
  --measure:38rem;
}
*{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body{
  margin:0;background:var(--cream);color:var(--ink);
  font:400 1.0625rem/1.62 Georgia,"Iowan Old Style","Times New Roman",serif;
}
/* 100vw op de hero telt de verticale scrollbar mee; nooit horizontaal scrollen */
html,body{overflow-x:hidden;max-width:100%}
img{max-width:100%;height:auto;display:block}
a{color:#7a5c00;text-underline-offset:.15em}
a:hover{color:var(--ink)}

/* ---------- header ---------- */
header.site{
  background:var(--navy);color:#fff;padding:1rem 1.25rem;
  display:flex;flex-wrap:wrap;gap:1rem;align-items:center;justify-content:space-between;
}
header.site .brand{
  color:#fff;text-decoration:none;font-size:.95rem;line-height:1.15;letter-spacing:.06em;text-transform:uppercase;
}
header.site .brand strong{color:var(--gold-soft);font-size:1.15rem;letter-spacing:.04em}
header.site nav{display:flex;flex-wrap:wrap;gap:1.1rem}
header.site nav a{
  color:#e9e6dd;text-decoration:none;font-family:system-ui,sans-serif;font-size:.85rem;
  letter-spacing:.04em;padding:.2rem 0;border-bottom:1px solid transparent;
}
header.site nav a:hover{color:#fff;border-bottom-color:var(--gold)}

/* ---------- layout ---------- */
main{max-width:var(--measure);margin:0 auto;padding:2.5rem 1.25rem 3rem}
main.wide{max-width:64rem}
h1,h2,h3{line-height:1.22;letter-spacing:-.01em}
h1{font-size:2.1rem;margin:0 0 .6rem}
h2{font-size:1.35rem;margin:2.4rem 0 .5rem}
h3{font-size:1.08rem;margin:1.8rem 0 .35rem}
p{margin:0 0 1.05rem}
ul{padding-left:1.15rem}
li{margin-bottom:.35rem}
hr{border:0;border-top:1px solid var(--line);margin:2.5rem 0}
blockquote{
  margin:1.6rem 0;padding:.2rem 0 .2rem 1.1rem;border-left:3px solid var(--gold);
  font-style:italic;color:#333;
}

/* ---------- hero ---------- */
.hero{
  background:var(--navy);color:#f2efe6;text-align:center;
  padding:4rem 1.25rem 3.5rem;
  /* volle breedte, ook al staat de hero in een gecentreerde kolom */
  width:100vw;margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw);
  margin-top:-2.5rem;margin-bottom:2.8rem;
}
.hero .kicker{font-family:system-ui,sans-serif;font-size:.72rem;letter-spacing:.22em;
  text-transform:uppercase;color:var(--gold-soft);margin:0 0 .9rem}
.hero h1{font-size:2.4rem;max-width:22ch;margin:0 auto .8rem;color:#fff}
.hero p{max-width:44ch;margin:0 auto;color:#cfcabd;font-size:1.05rem}
.rule{width:3.5rem;height:2px;background:var(--gold);margin:1.4rem auto}

/* hero met omslag ernaast */
.hero-inner{
  max-width:56rem;margin:0 auto;
  display:flex;align-items:center;justify-content:center;gap:3rem;text-align:left;
}
.hero-text{flex:1 1 26rem;min-width:0}
.hero-text h1,.hero-text p{margin-left:0;margin-right:0}
.hero-cta{margin-top:1.6rem}
.hero-cta .btn{background:var(--gold);color:#1b1b1b}
.hero-cta .btn.ghost{background:transparent;color:#e9e6dd;border:1px solid rgba(233,230,221,.35)}
.hero-cta .btn.ghost:hover{background:rgba(233,230,221,.1);color:#fff}
.hero-cover{flex:0 0 17rem;display:block;line-height:0}
.hero-cover img{
  width:100%;border-radius:2px;
  box-shadow:0 1.4rem 2.6rem rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.08);
  transition:transform .25s ease;
}
.hero-cover:hover img{transform:translateY(-4px)}

@media (max-width:46rem){
  .hero-inner{flex-direction:column;gap:2.2rem;text-align:center}
  .hero-text h1,.hero-text p{margin-left:auto;margin-right:auto}
  .hero-cover{flex:0 0 auto;width:60vw;max-width:15rem;order:-1}
}

/* ---------- book grid ---------- */
.books{display:grid;grid-template-columns:repeat(auto-fit,minmax(13rem,1fr));gap:1.5rem;margin:2rem 0}
.book{border:1px solid var(--line);background:#fff;padding:1.1rem;border-radius:4px}
/* omslag op een boekpagina: tekst loopt eromheen */
.pagecover{
  float:right;width:13rem;margin:.3rem 0 1.2rem 1.8rem;border-radius:2px;
  box-shadow:0 .6rem 1.6rem rgba(0,0,0,.22);
}
@media (max-width:40rem){
  .pagecover{float:none;width:55vw;max-width:13rem;margin:0 auto 1.6rem}
}

.book a.cover{display:block;line-height:0;margin:-1.1rem -1.1rem 1rem;background:var(--navy)}
.book a.cover img{width:100%;border-radius:4px 4px 0 0}
.book .num{font-family:system-ui,sans-serif;font-size:.68rem;letter-spacing:.16em;
  text-transform:uppercase;color:var(--muted)}
.book h3{margin:.35rem 0 .45rem;font-size:1.05rem}
.book p{font-size:.95rem;color:#444;margin-bottom:.7rem}
.book a.more{font-family:system-ui,sans-serif;font-size:.82rem;text-decoration:none;
  border-bottom:1px solid var(--gold);padding-bottom:1px}

/* ---------- buttons ---------- */
.btn{
  display:inline-block;background:var(--navy);color:#fff;text-decoration:none;
  font-family:system-ui,sans-serif;font-size:.9rem;letter-spacing:.03em;
  padding:.7rem 1.3rem;border-radius:3px;margin:.3rem .4rem .3rem 0;
}
.btn:hover{background:var(--navy-soft);color:#fff}
.soon{
  display:inline-block;border:1px dashed var(--line);color:var(--muted);
  font-family:system-ui,sans-serif;font-size:.85rem;letter-spacing:.03em;
  padding:.65rem 1.2rem;border-radius:3px;margin:.3rem .4rem .3rem 0;
}
.btn.gold{background:var(--gold);color:#1b1b1b}
.btn.gold:hover{background:var(--gold-soft);color:#1b1b1b}

/* ---------- cards (blog listing) ---------- */
.card{border-top:1px solid var(--line);padding:1.4rem 0}
.card h2{margin:0 0 .25rem;font-size:1.2rem}
.card h2 a{text-decoration:none}
.card .meta{font-family:system-ui,sans-serif;font-size:.78rem;color:var(--muted);margin:0 0 .5rem}

/* ---------- law list ---------- */
.law{border-top:1px solid var(--line);padding:1.15rem 0}
.law .n{font-family:system-ui,sans-serif;font-size:.72rem;letter-spacing:.14em;
  text-transform:uppercase;color:var(--muted)}
.law h3{margin:.2rem 0 .35rem}
.law .def{font-style:italic;color:#333}

/* ---------- callout ---------- */
.note{background:#fff;border:1px solid var(--line);border-left:3px solid var(--gold);
  padding:1rem 1.1rem;margin:1.8rem 0;border-radius:0 3px 3px 0}
.note p:last-child{margin-bottom:0}

/* ---------- footer ---------- */
footer.site{
  background:var(--navy);color:#b9b4a8;margin-top:4rem;padding:2.2rem 1.25rem;text-align:center;
  font-family:system-ui,sans-serif;font-size:.82rem;
}
footer.site .tag{color:var(--gold-soft);font-family:Georgia,serif;font-style:italic;
  font-size:1rem;margin:0 0 1rem}
footer.site p{margin:.3rem 0}
footer.site .fine{max-width:46rem;margin:1rem auto 0;font-size:.72rem;color:#8d887c;line-height:1.5}

@media (max-width:34rem){
  .hero h1{font-size:1.9rem}
  header.site{justify-content:flex-start}
}
