/* Wie Zocht Mij, nostalgische huisstijl: warm papier, inkt, terracotta. */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,600;9..144,700&family=Figtree:wght@400;500;600;700&display=swap');

:root {
  --papier: #f6efe1;
  --papier-diep: #efe5d2;
  --kaart: #fffaf1;
  --inkt: #2a2823;
  --dempt: #736c5e;
  --lijn: #e2d7c2;
  --terra: #c65d3b;
  --terra-diep: #a8482b;
  --teal: #2f7d75;
  --goud: #d9a441;
  --display: 'Fraunces', Georgia, serif;
  --body: 'Figtree', system-ui, sans-serif;
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--papier); color: var(--inkt); font-family: var(--body); font-size: 17px; line-height: 1.6; }
img { max-width: 100%; }
a { color: var(--terra-diep); }

/* kop */
.kop { background: var(--papier); border-bottom: 1px solid var(--lijn); position: sticky; top: 0; z-index: 20; }
.kop-in { max-width: 1040px; margin: 0 auto; padding: 13px 22px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.merk { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--inkt); font-family: var(--display); font-weight: 700; font-size: 20px; letter-spacing: -.3px; }
.merk .bol { width: 34px; height: 34px; border-radius: 50%; background: var(--terra); color: #fff; display: grid; place-items: center; font-size: 18px; box-shadow: 0 3px 0 var(--terra-diep); }
.nav { margin-left: auto; display: flex; gap: 4px; align-items: center; flex-wrap: wrap; }
.nav a { text-decoration: none; color: var(--inkt); font-weight: 600; font-size: 15px; padding: 7px 13px; border-radius: 9px; }
.nav a:hover { background: var(--papier-diep); }
.nav a.knop { background: var(--terra); color: #fff; box-shadow: 0 3px 0 var(--terra-diep); }
.nav a.knop:hover { background: var(--terra-diep); }
.nav .teller { background: var(--goud); color: var(--inkt); border-radius: 999px; font-size: 12px; font-weight: 700; padding: 1px 7px; margin-left: 3px; }

/* layout */
.wrap { max-width: 1040px; margin: 0 auto; padding: 30px 22px 70px; }
.smal { max-width: 640px; }
h1 { font-family: var(--display); font-weight: 600; font-size: clamp(30px, 5vw, 46px); line-height: 1.08; letter-spacing: -.5px; margin: 0 0 14px; }
h1 .accent { color: var(--terra); font-style: italic; }
h2 { font-family: var(--display); font-weight: 600; font-size: clamp(23px, 3vw, 30px); margin: 40px 0 10px; }
h3 { font-family: var(--display); font-weight: 600; font-size: 20px; margin: 20px 0 6px; }
.intro { font-size: 19px; color: #4a463c; }
.dempt { color: var(--dempt); }

/* held */
.held { text-align: center; padding: 30px 0 14px; }
.held .intro { max-width: 560px; margin: 0 auto 24px; }
.overlijn { font-weight: 700; font-size: 12.5px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--terra); margin: 0 0 12px; }

/* knoppen */
.knoppen { display: flex; gap: 12px; flex-wrap: wrap; }
.held .knoppen { justify-content: center; }
.knop { display: inline-block; text-decoration: none; font-weight: 700; font-family: var(--body); font-size: 16px; padding: 13px 26px; border-radius: 11px; background: var(--terra); color: #fff; border: 0; cursor: pointer; box-shadow: 0 4px 0 var(--terra-diep); }
.knop:hover { background: var(--terra-diep); box-shadow: 0 2px 0 var(--terra-diep); transform: translateY(2px); }
.knop.rustig { background: transparent; color: var(--inkt); border: 2px solid var(--inkt); box-shadow: none; }
.knop.rustig:hover { background: var(--papier-diep); transform: none; }
.knop.teal { background: var(--teal); box-shadow: 0 4px 0 #245e58; }
.knop.klein { padding: 8px 15px; font-size: 14px; box-shadow: 0 3px 0 var(--terra-diep); }

/* kaarten */
.kaart { background: var(--kaart); border: 1px solid var(--lijn); border-radius: 16px; padding: 22px 24px; box-shadow: 0 6px 20px rgba(42,40,35,.05); }
.kaarten { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.kaart p { color: #4a463c; }
.kaart p:last-child { margin-bottom: 0; }

/* stappen (hoe werkt het) */
.stappen { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; counter-reset: s; list-style: none; padding: 0; }
.stappen li { background: var(--kaart); border: 1px solid var(--lijn); border-radius: 16px; padding: 22px; position: relative; }
.stappen li::before { counter-increment: s; content: counter(s); position: absolute; top: -14px; left: 20px; width: 32px; height: 32px; background: var(--terra); color: #fff; border-radius: 50%; display: grid; place-items: center; font-family: var(--display); font-weight: 700; box-shadow: 0 3px 0 var(--terra-diep); }
.stappen h3 { margin-top: 6px; }

/* teaser (iemand zoekt jou) */
.teaser { background: linear-gradient(135deg, #fdf0d8, #f9e2b8); border: 1px solid #eccf92; border-radius: 18px; padding: 22px 26px; margin: 22px 0; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.teaser .groot { font-family: var(--display); font-size: 40px; font-weight: 700; color: var(--terra-diep); line-height: 1; }
.teaser p { margin: 0; }

/* formulier */
.veld { margin-bottom: 15px; }
.veld label { display: block; font-weight: 600; font-size: 14.5px; margin-bottom: 5px; }
.veld .hint { color: var(--dempt); font-size: 13px; font-weight: 400; }
input[type=text], input[type=email], input[type=password], input[type=number], select, textarea {
  width: 100%; padding: 11px 13px; font: inherit; border: 2px solid var(--lijn); border-radius: 11px; background: #fff; color: var(--inkt);
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--terra); }
.rij2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 520px) { .rij2 { grid-template-columns: 1fr; } }

.melding { border-radius: 12px; padding: 12px 16px; margin-bottom: 18px; }
.melding.ok { background: #e6f2ed; border: 1px solid #b7ddcd; color: #1f6a52; }
.melding.fout { background: #fbe7e2; border: 1px solid #f0c0b4; color: var(--terra-diep); }
.melding.info { background: #eef3f7; border: 1px solid #cddbe6; color: #345067; }

/* lijsten */
.item { background: var(--kaart); border: 1px solid var(--lijn); border-radius: 14px; padding: 16px 18px; margin-bottom: 12px; display: flex; justify-content: space-between; gap: 12px; align-items: flex-start; flex-wrap: wrap; }
.item .meta { color: var(--dempt); font-size: 14px; }
.badge { display: inline-block; background: var(--papier-diep); border-radius: 999px; padding: 2px 10px; font-size: 12.5px; font-weight: 600; }
.badge.match { background: #d9f0e7; color: var(--teal); }

/* voet */
.voet { border-top: 1px solid var(--lijn); background: var(--papier-diep); margin-top: 50px; }
.voet-in { max-width: 1040px; margin: 0 auto; padding: 26px 22px; color: var(--dempt); font-size: 14px; display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.voet-in a { color: var(--dempt); text-decoration: none; }
.voet-in a:hover { color: var(--inkt); }
.voet-in .sep { margin-left: auto; }
