/* ==========================================================
   Larissa Verhoeff — website opzet
   Sfeer: salie & poederroze, sprankelend, talig, vriendelijk
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,500;1,9..144,600&family=Work+Sans:wght@300;400;500;600&display=swap');

:root{
  --sage-dark:   #5F7358;
  --sage:        #8CA087;
  --sage-light:  #E7EDE3;
  --blush:       #F3D9D9;
  --blush-dark:  #C97A82;
  --cream:       #FBF8F1;
  --paper:       #FFFDFA;
  --ink:         #2E2A26;
  --ink-soft:    #5A5650;
  --gold:        #C9A15A;
  --radius:      22px;
  --max-width:   1120px;
}

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

body{
  margin:0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .serif{
  font-family: 'Fraunces', serif;
  font-weight: 500;
  color: var(--sage-dark);
  line-height: 1.15;
  margin: 0 0 .5em;
}

h1{ font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2{ font-size: clamp(1.7rem, 3.4vw, 2.3rem); }
h3{ font-size: 1.3rem; color: var(--ink); }

p{ margin: 0 0 1.1em; color: var(--ink-soft); }

a{ color: var(--sage-dark); text-decoration: none; }
a:hover{ color: var(--blush-dark); }

.wrap{
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- sparkle accent ---------- */
.spark{
  display:inline-block;
  color: var(--gold);
  font-size: .8em;
  margin: 0 .15em;
  transform: translateY(-2px);
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:.5em;
  font-family:'Work Sans',sans-serif;
  font-size:.78rem;
  letter-spacing:.18em;
  text-transform:uppercase;
  color: var(--blush-dark);
  font-weight:600;
  margin-bottom:.9em;
}
.eyebrow::before{
  content:"";
  width:26px; height:1px;
  background: var(--blush-dark);
  display:inline-block;
}

/* ---------- header / nav ---------- */
header.site{
  position: sticky;
  top:0;
  z-index: 50;
  background: rgba(251,248,241,.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(95,115,88,.12);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 18px 28px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.brand{
  font-family:'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--sage-dark);
}
.brand span{ color: var(--blush-dark); font-style: normal; }

nav.links{
  display:flex;
  gap: 28px;
  flex-wrap: wrap;
}
nav.links a{
  font-size:.95rem;
  color: var(--ink);
  font-weight:500;
  position:relative;
  padding-bottom:2px;
}
nav.links a.active,
nav.links a:hover{ color: var(--sage-dark); }
nav.links a.active::after{
  content:"";
  position:absolute; left:0; right:0; bottom:-4px;
  height:2px; background: var(--blush-dark); border-radius:2px;
}

/* ---------- hero ---------- */
.hero{
  padding: 70px 0 40px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items:center;
}
@media (max-width: 860px){
  .hero-grid{ grid-template-columns: 1fr; }
}
.hero h1 em{ font-style: italic; color: var(--blush-dark); }
.hero .lead{ font-size: 1.15rem; max-width: 46ch; }

.btn{
  display:inline-flex;
  align-items:center;
  gap:.5em;
  background: var(--sage-dark);
  color: var(--paper) !important;
  padding: 13px 26px;
  border-radius: 40px;
  font-weight:500;
  font-size:.95rem;
  transition: transform .15s ease, background .15s ease;
}
.btn:hover{ background: var(--blush-dark); transform: translateY(-1px); }
.btn.outline{
  background: transparent;
  color: var(--sage-dark) !important;
  border: 1.5px solid var(--sage-dark);
}
.btn.outline:hover{ background: var(--sage-light); }

.cta-row{ display:flex; gap:16px; flex-wrap:wrap; margin-top: 1.6em; }

/* ---------- photos ---------- */
.photo{
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(95,115,88,.16);
  background: var(--sage-light);
}
.photo img{
  display:block;
  width:100%;
  height:100%;
  object-fit: cover;
}
.photo.round{ border-radius:50%; aspect-ratio:1/1; }
.photo.tall{ aspect-ratio: 3/4; }
.photo.wide{ aspect-ratio: 4/3; }
.photo.square{ aspect-ratio: 1/1; }
.photo.natural img{ height:auto; object-fit: initial; }

/* documents / covers / clippings, shown in full rather than cropped */
.photo-doc{
  background: var(--paper);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(95,115,88,.16);
  padding: 10px;
}
.photo-doc img{
  display:block;
  width:100%;
  height:auto;
  border-radius: 8px;
}

.photo-caption{
  font-size: .82rem;
  color: var(--ink-soft);
  font-style: italic;
  margin-top: .7em;
  text-align:center;
}

.placeholder{
  position:relative;
  border-radius: var(--radius);
  border: 2px dashed var(--sage);
  background: var(--sage-light);
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color: var(--sage-dark);
  font-family:'Work Sans',sans-serif;
  font-size:.85rem;
  padding: 24px;
  min-height: 260px;
}
.placeholder .tag{
  background: var(--paper);
  padding: 8px 16px;
  border-radius: 30px;
  font-weight:600;
  box-shadow: 0 2px 8px rgba(95,115,88,.12);
}
.placeholder.wide{ min-height: 320px; }

.photo-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 620px){ .photo-row{ grid-template-columns: 1fr; } }

/* ---------- sections ---------- */
section{ padding: 64px 0; }
section.tinted{ background: var(--sage-light); }
section.dark{ background: var(--sage-dark); color: var(--cream); }
section.dark h2, section.dark h3{ color: var(--paper); }
section.dark p{ color: rgba(255,253,250,.85); }

.divider{
  display:block;
  width:100%;
  height: 34px;
  margin: 0 auto;
}

/* ---------- pillar cards (home) ---------- */
.pillars{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 980px){ .pillars{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .pillars{ grid-template-columns: 1fr; } }

.card{
  background: var(--paper);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: 0 6px 24px rgba(95,115,88,.08);
  display:flex; flex-direction:column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover{ transform: translateY(-4px); box-shadow: 0 12px 30px rgba(95,115,88,.16); }
.card .num{
  font-family:'Fraunces',serif;
  font-style:italic;
  color: var(--blush-dark);
  font-size:1.6rem;
  margin-bottom:.3em;
}
.card p{ font-size:.95rem; flex:1; }
.card a.more{ font-weight:600; font-size:.9rem; }

/* ---------- generic content blocks ---------- */
.intro-block{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items:center;
}
@media (max-width: 860px){ .intro-block{ grid-template-columns:1fr; } }
.intro-block.reverse .photo{ order:2; }
@media (max-width:860px){ .intro-block.reverse .photo{ order:0; } }

.quote{
  font-family:'Fraunces',serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--sage-dark);
  border-left: 3px solid var(--blush-dark);
  padding-left: 24px;
  margin: 1.4em 0;
}

.people{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px){ .people{ grid-template-columns: 1fr; } }
.person{
  background: var(--paper);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 6px 20px rgba(95,115,88,.07);
}
.person .photo.round{ width:96px; margin: 0 auto 16px; }
.person h3{ text-align:center; }
.person p{ font-size:.92rem; }

.reviews{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
@media (max-width: 860px){ .reviews{ grid-template-columns:1fr; } }
.review{
  background: var(--paper);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 6px 20px rgba(95,115,88,.07);
  position: relative;
}
.review::before{
  content:"\201C";
  font-family:'Fraunces',serif;
  font-size: 3.4rem;
  color: var(--blush);
  position:absolute;
  top: 6px; left: 18px;
  line-height:1;
}
.review p.quote-text{
  font-style: italic;
  color: var(--ink);
  margin-top: 1.2em;
}
.review .who{
  font-weight:600;
  color: var(--sage-dark);
  font-size:.9rem;
}

.poem{
  background: var(--paper);
  border-radius: var(--radius);
  padding: 40px 44px;
  box-shadow: 0 6px 24px rgba(95,115,88,.08);
  font-family:'Fraunces',serif;
  font-style: italic;
  font-size: 1.08rem;
  color: var(--ink);
  line-height: 1.85;
}
.poem .stanza{ margin: 0 0 1.3em; }
.poem .attribution{
  margin-top: 1.6em;
  font-family:'Work Sans',sans-serif;
  font-style: normal;
  font-size: .88rem;
  color: var(--sage-dark);
  font-weight: 600;
  line-height: 1.6;
}

.talk-card{
  background: var(--paper);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: 0 6px 24px rgba(95,115,88,.08);
}
.talk-card h3.serif{ font-size:1.5rem; margin-bottom:.6em; }

.list-clean{ list-style:none; padding:0; margin:0; }
.list-clean li{
  padding: 14px 0;
  border-bottom: 1px solid rgba(95,115,88,.15);
  display:flex; gap:14px; align-items:flex-start;
}
.list-clean li:last-child{ border-bottom:none; }
.list-clean .dot{
  color: var(--blush-dark);
  font-family:'Fraunces',serif;
  font-style:italic;
  font-size:1.2rem;
  line-height:1.4;
}

/* ---------- footer ---------- */
footer.site{
  background: var(--sage-dark);
  color: var(--cream);
  padding: 48px 0 30px;
}
footer.site a{ color: var(--cream); text-decoration: underline; text-underline-offset:3px; }
footer.site .foot-grid{
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:24px;
  margin-bottom: 22px;
}
footer.site .brand{ color: var(--paper); }
footer.site .brand span{ color: var(--blush); }
footer.site small{ opacity:.7; font-size:.8rem; display:block; }

.note-strip{
  background: var(--blush);
  color: var(--sage-dark);
  text-align:center;
  font-size:.85rem;
  padding: 10px 16px;
  font-weight:500;
}
