/* ============================================================
   SITELIER — stijlblad
   Kleuren en fonts pas je hieronder aan bij :root
   ============================================================ */

:root {
  --papier:    #FAF8F5;  /* achtergrond */
  --inkt:      #16181A;  /* hoofdtekst en donkere vlakken */
  --inkt-zacht:#22262A;
  --grijs:     #6C7075;  /* subtekst */
  --groen:     #B0733F;  /* accent: knoppen, links (koper) */
  --groen-licht:#C58A52;
  --lijn:      #E4DFD8;  /* randjes */
  --wit:       #FFFFFF;

  --breedte:   1080px;
  --radius:    14px;
}

/* Wil je terug naar groen? Vervang hierboven:
   --inkt: #1B1B1A;  --groen: #2E4B3F;  --groen-licht: #3D6353;  */

* { box-sizing: border-box; }

/* Afbeeldingen schalen altijd mee en houden hun verhouding.
   Zonder height:auto rekt een img met een height-attribuut uit. */
img { max-width: 100%; height: auto; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--papier);
  color: var(--inkt);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: 1.15rem; font-family: inherit; font-weight: 600; }

p { margin: 0 0 1em; }

a { color: var(--groen); }

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

section { padding: 88px 0; }
section + section { border-top: 1px solid var(--lijn); }

.sub { color: var(--grijs); }
.klein { font-size: 0.9rem; color: var(--grijs); }

/* ---------- knoppen ---------- */
.knoppen { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.knop {
  display: inline-block;
  padding: 15px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  transition: background .15s, transform .15s;
}
.knop-vol {
  background: var(--groen);
  color: var(--wit);
}
.knop-vol:hover { background: var(--groen-licht); transform: translateY(-1px); }
.knop-leeg {
  border: 1px solid var(--lijn);
  color: var(--inkt);
  background: var(--wit);
}
.knop-leeg:hover { border-color: var(--inkt); }

/* ---------- kop ---------- */
.balk {
  padding-top: 28px;
  padding-bottom: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.merk {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--inkt);
}
.balk nav { display: flex; gap: 26px; }
.balk nav a {
  color: var(--grijs);
  text-decoration: none;
  font-size: 0.95rem;
}
.balk nav a:hover { color: var(--inkt); }

/* ---------- hero ---------- */
.hero { padding-top: 72px; padding-bottom: 96px; }
.hero p.lead {
  font-size: 1.2rem;
  max-width: 620px;
  color: var(--grijs);
}
.regio {
  margin-top: 26px;
  font-size: 0.88rem;
  color: var(--grijs);
  letter-spacing: 0.02em;
}

/* ---------- raster ---------- */
.raster3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 44px;
}
.raster2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ---------- prijskaarten ---------- */
.kaart {
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.kaart.uitgelicht {
  border-color: var(--groen);
  box-shadow: 0 12px 32px rgba(46,75,63,.10);
}
.label {
  display: inline-block;
  align-self: flex-start;
  background: var(--groen);
  color: var(--wit);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.prijs {
  font-family: "Fraunces", Georgia, serif;
  font-size: 2.1rem;
  margin: 6px 0 4px;
}
.kaart ul { list-style: none; padding: 0; margin: 18px 0; }
.kaart li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 9px;
  font-size: 0.96rem;
}
.kaart li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--groen);
}
.kaart .knop { margin-top: auto; text-align: center; }

/* ---------- stappen ---------- */
.stap { display: flex; gap: 20px; margin-bottom: 30px; }
.stap .nr {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.5rem;
  color: var(--groen);
  min-width: 46px;
}

/* ---------- werk ---------- */
.project { margin-bottom: 56px; }
.voorna {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.voorna figure { margin: 0; }
.voorna img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  display: block;
  border: 1px solid var(--lijn);
  border-radius: 10px;
  background: var(--wit);
}
.voorna figcaption {
  font-size: 0.8rem;
  color: var(--grijs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 8px;
}
.resultaat { font-weight: 600; }

/* ---------- over ---------- */
.portret {
  width: 100%;
  border-radius: var(--radius);
  display: block;
  border: 1px solid var(--lijn);
}

/* ---------- faq ---------- */
details {
  border-bottom: 1px solid var(--lijn);
  padding: 20px 0;
}
details summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
details summary::-webkit-details-marker { display: none; }
details summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--groen);
  line-height: 1;
}
details[open] summary::after { content: "\2013"; }
details p { margin: 12px 0 0; color: var(--grijs); }

/* ---------- contact ---------- */
.contactvak {
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: var(--radius);
  padding: 40px;
}
form { display: grid; gap: 14px; }
label { font-size: 0.9rem; font-weight: 600; }
input, textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--lijn);
  border-radius: 9px;
  font: inherit;
  font-size: 0.98rem;
  background: var(--papier);
  color: var(--inkt);
}
input:focus, textarea:focus {
  outline: 2px solid var(--groen);
  outline-offset: 1px;
  border-color: transparent;
}
button {
  padding: 15px 26px;
  border: none;
  border-radius: 999px;
  background: var(--groen);
  color: var(--wit);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
button:hover { background: var(--groen-licht); }

.direct { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.direct a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--inkt);
  font-weight: 600;
  font-size: 1.05rem;
}
.direct a:hover { color: var(--groen); }
.direct span.icoon {
  display: inline-flex;
  width: 20px; height: 20px;
  color: var(--groen);
  flex: none;
}
.direct span.icoon svg { width: 100%; height: 100%; }

/* ---------- footer ---------- */
footer {
  background: #0E1012;
  border-top: 1px solid rgba(255,255,255,.09);
  padding: 76px 0 0;
  font-size: 0.93rem;
  color: rgba(255,255,255,.62);
}
footer .merk { font-size: 1.2rem; display: block; margin-bottom: 16px; color: #fff; letter-spacing: .14em; }
.voet {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.15fr;
  gap: 48px;
  padding-bottom: 56px;
}
.voet-merk p { max-width: 320px; margin: 0 0 14px; }
.voet-regio { font-size: .86rem; color: rgba(255,255,255,.42); }
footer h4 {
  color: #fff;
  font-size: .76rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin: 0 0 16px;
  font-weight: 600;
}
footer ul { list-style: none; padding: 0; margin: 0; }
footer li { margin-bottom: 10px; }
footer a { color: rgba(255,255,255,.72); text-decoration: none; }
footer a:hover { color: #fff; }
.voet-tijden { margin: 18px 0 0; font-size: .84rem; color: rgba(255,255,255,.42); }
.voet-onder {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 24px;
  padding-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: .84rem;
  color: rgba(255,255,255,.42);
}
.voet-onder a { color: rgba(255,255,255,.6); }

/* ---------- mobiel ---------- */
@media (max-width: 820px) {
  section { padding: 60px 0; }
  .raster3, .raster2, .voorna { grid-template-columns: 1fr; gap: 20px; }
  .balk nav { display: none; }
  .contactvak { padding: 26px 20px; }
  .hero { padding-top: 48px; padding-bottom: 64px; }
  body { font-size: 16px; }
}

/* ============================================================
   TOEVOEGINGEN — hero-beeld, mobiel menu, animaties
   ============================================================ */

/* ---------- hero: desktop + telefoon ---------- */
.hero-raster {
  display: grid;
  grid-template-columns: 1fr 1.02fr;
  gap: 54px;
  align-items: center;
}

.toonbank { position: relative; padding-bottom: 26px; }

.scherm {
  border-radius: 11px;
  overflow: hidden;
  border: 1px solid var(--lijn);
  box-shadow: 0 26px 60px rgba(22,24,26,.15), 0 4px 12px rgba(22,24,26,.07);
  background: var(--wit);
}
.scherm .venster {
  display: flex; gap: 6px;
  padding: 10px 13px;
  background: #F0ECE5;
  border-bottom: 1px solid var(--lijn);
}
.scherm .venster i {
  width: 8px; height: 8px; border-radius: 50%;
  background: #D3CCC1; display: block;
}
.scherm img { width: 100%; height: auto; display: block; }

.telefoon {
  position: absolute;
  right: -10px;
  bottom: 0;
  width: 27%;
  max-width: 148px;
  border-radius: 18px;
  overflow: hidden;
  border: 5px solid #16181A;
  background: #16181A;
  box-shadow: 0 18px 40px rgba(22,24,26,.28);
}
.telefoon img { width: 100%; height: auto; display: block; border-radius: 13px; }

/* ---------- mobiel menu ---------- */
.menuknop {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--lijn);
  background: var(--wit);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.menuknop span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--inkt);
  position: relative;
}
.menuknop span::before,
.menuknop span::after {
  content: ""; position: absolute; left: 0;
  width: 18px; height: 1.5px; background: var(--inkt);
  transition: transform .2s, top .2s;
}
.menuknop span::before { top: -6px; }
.menuknop span::after  { top: 6px; }
.menuknop[aria-expanded="true"] span { background: transparent; }
.menuknop[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.menuknop[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

/* vaste belbalk onderaan op mobiel */
.belbalk {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 40;
  background: var(--wit);
  border-top: 1px solid var(--lijn);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
}
.belbalk a {
  flex: 1;
  text-align: center;
  padding: 13px 10px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
}
.belbalk .bellen { background: var(--groen); color: #fff; }
.belbalk .appen  { background: var(--wit); color: var(--inkt); border: 1px solid var(--lijn); }

/* ---------- scroll-animatie ---------- */
.komt-op {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1);
  will-change: opacity, transform;
}
.komt-op.zichtbaar { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .komt-op { opacity: 1; transform: none; transition: none; }
}

/* ---------- toegankelijkheid ---------- */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--groen);
  outline-offset: 3px;
  border-radius: 4px;
}
.overslaan {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  background: var(--inkt); color: #fff;
  padding: 12px 18px; border-radius: 0 0 8px 0; z-index: 100;
  text-decoration: none;
}
.overslaan:focus {
  width: auto; height: auto;
  clip-path: none;
  left: 0; top: 0;
}

/* ---------- mobiel ---------- */
@media (max-width: 820px) {
  .hero-raster { grid-template-columns: 1fr; gap: 38px; }
  .toonbank { order: 2; padding-bottom: 18px; }
  .telefoon { width: 25%; right: 0; }
  .menuknop { display: flex; }
  .balk { position: relative; }
  .balk nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px); right: 24px; left: 24px;
    background: var(--wit);
    border: 1px solid var(--lijn);
    border-radius: 12px;
    flex-direction: column;
    gap: 0;
    padding: 8px;
    box-shadow: 0 18px 40px rgba(22,24,26,.12);
    z-index: 30;
  }
  .balk nav.open { display: flex; }
  .balk nav a { padding: 13px 14px; border-radius: 8px; color: var(--inkt); }
  .balk nav a:hover { background: var(--papier); }
  .belbalk { display: flex; }
  body { padding-bottom: 74px; }
}

/* ============================================================
   RITME — beloftebalk, donkere secties, meer lucht
   ============================================================ */

/* ---------- beloftebalk ---------- */
.beloftes {
  background: var(--inkt);
  color: rgba(255,255,255,.72);
}
.beloftes-in {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px 26px;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: .87rem;
  letter-spacing: .01em;
}
.beloftes span { position: relative; padding-left: 20px; }
.beloftes span::before {
  content: "";
  position: absolute; left: 0; top: 8px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--groen);
}

/* ---------- donkere secties ---------- */
section.donker {
  background: var(--inkt);
  color: rgba(255,255,255,.74);
  border-top: none;
}
section.donker h2,
section.donker h3 { color: #fff; }
section.donker .sub { color: rgba(255,255,255,.62); }
section.donker .resultaat { color: #fff; }
section.donker .voorna figcaption { color: rgba(255,255,255,.5); }
section.donker .voorna img { border-color: rgba(255,255,255,.14); background: #22262A; }
section.donker + section { border-top: none; }

/* contact als afsluiter */
.afsluiter .contactvak {
  background: #1E2226;
  border-color: rgba(255,255,255,.14);
}
.afsluiter label { color: rgba(255,255,255,.8); }
.afsluiter input,
.afsluiter textarea {
  background: #14171A;
  border-color: rgba(255,255,255,.16);
  color: #fff;
}
.afsluiter input::placeholder { color: rgba(255,255,255,.35); }
.afsluiter .klein { color: rgba(255,255,255,.5); }
.afsluiter .direct a { color: #fff; }
.afsluiter .direct a:hover { color: var(--groen-licht); }

/* ---------- meer lucht en groter contrast ---------- */
section { padding: 108px 0; }
.project { margin-bottom: 76px; }
.project:last-child { margin-bottom: 0; }
h2 { font-size: clamp(1.95rem, 4.2vw, 2.9rem); }
.hero p.lead { font-size: 1.16rem; }

@media (max-width: 820px) {
  section { padding: 66px 0; }
  .project { margin-bottom: 48px; }
  .beloftes-in { flex-direction: column; gap: 10px; }
}


/* ---------- uitlijning prijskaarten ---------- */
.label.leeg { background: transparent; visibility: hidden; }

/* ---------- werkwijze over de volle breedte ---------- */
.stappen {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 44px 60px;
  margin-top: 48px;
}
.stappen .stap { margin-bottom: 0; }

/* ---------- FAQ in lijn met de rest ---------- */
.faq details { max-width: 760px; }
.faq h2 { max-width: 760px; }

@media (max-width: 820px) {
  .stappen { grid-template-columns: 1fr; gap: 28px; }
}


@media (max-width: 820px) {
  .voet { grid-template-columns: 1fr 1fr; gap: 34px; }
  .voet-merk { grid-column: 1 / -1; }
  footer { padding-top: 56px; }
}
@media (max-width: 480px) {
  .voet { grid-template-columns: 1fr; }
}
