/* =========================================================================
   GLOBEVIEW WIREFRAME CSS  —  grijze, generieke wireframe-look
   -------------------------------------------------------------------------
   Doel: kale semantische HTML ziet er meteen uit als een nette wireframe.
   Niet ACSS-gebonden. Bewust simpel en grijs.

   WIREFRAME  ->  DESIGN:  wissel alleen het paletblok in :root
   (grijs  ->  merk). Zelfde bestand, palet-wissel. (Regel 12.)
   ========================================================================= */

:root {
  /* ---- WIREFRAME-PALET (grijs) — wissel dit blok voor de merk-look ---- */
  --ink:        #2b2b2f;   /* tekst        (merk: bv. #1a1a2e)      */
  --muted:      #6a6a72;   /* bijtekst                              */
  --line:       #d9d9de;   /* randen                                */
  --box:        #ececef;   /* placeholder-blokken / kaartvlakken    */
  --box-2:      #e2e2e7;   /* iets donkerder blok                   */
  --bg:         #ffffff;   /* paginakleur                           */
  --accent:     #8a8a92;   /* knoppen/accent (merk: bv. #EB6800)    */
  --accent-ink: #ffffff;   /* tekst op accent                       */

  /* ---- Ritme & vorm ---- */
  --container: 1140px;
  --gap:       clamp(1rem, 2.5vw, 1.75rem);
  --section-y: clamp(3rem, 7vw, 6rem);
  --radius:    12px;
  --font:      system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ---- Reset / basis ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3 { line-height: 1.15; margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }
p  { margin: 0 0 1rem; color: var(--muted); }
p:last-child { margin-bottom: 0; }

/* ---- Layout-helpers ---- */
.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.section   { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(2rem, 4vw, 3rem); }

.wf-cols-2 { display: grid; gap: var(--gap); grid-template-columns: 1fr 1fr; align-items: center; }
.wf-cols-3 { display: grid; gap: var(--gap); grid-template-columns: repeat(3, 1fr); }
.wf-cols-4 { display: grid; gap: var(--gap); grid-template-columns: repeat(4, 1fr); }
.wf-center { text-align: center; }
.wf-narrow { max-width: 60ch; }
.wf-center .wf-narrow { margin-inline: auto; }

/* ---- Bouwstenen ---- */
.wf-img {                       /* grijs placeholder-blok voor beeld */
  background: var(--box);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  display: grid; place-items: center;
  color: var(--muted); font-size: .85rem;
}
.wf-img--wide  { aspect-ratio: 16 / 9; }
.wf-img--avatar{ aspect-ratio: 1; width: 72px; border-radius: 50%; }
.wf-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--box-2); display: grid; place-items: center;
  color: var(--muted);
}

.wf-eyebrow { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: .5rem; }

.wf-btn {
  display: inline-block; padding: .7rem 1.25rem; border-radius: 8px;
  background: var(--accent); color: var(--accent-ink);
  text-decoration: none; font-weight: 600; font-size: .95rem;
}
.wf-btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.wf-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.25rem; }
.wf-link { color: var(--accent); font-weight: 600; text-decoration: none; }

.wf-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem; display: flex; flex-direction: column; gap: .75rem; height: 100%;
}

/* ---- Reviews (variant op wf-card) ---- */
.wf-review__stars  { color: var(--accent); letter-spacing: .12em; }
.wf-review__author { margin-top: auto; color: var(--ink); font-weight: 600; font-size: .9rem; }

/* ---- Header / footer ---- */
.wf-topbar { background: var(--box); font-size: .9rem; }
.wf-topbar .container { display: flex; justify-content: flex-end; align-items: center; gap: 1rem; padding-block: .5rem; }

.wf-header .container { display: flex; align-items: center; justify-content: space-between; padding-block: 1rem; gap: 1rem; }
.wf-logo { width: 130px; height: 34px; background: var(--box-2); border-radius: 6px; display: grid; place-items: center; color: var(--muted); font-size: .75rem; }
.wf-nav { display: flex; gap: 1.25rem; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; }
.wf-nav a { text-decoration: none; color: var(--ink); font-weight: 500; }

.wf-footer { background: var(--box); }
.wf-footer .wf-cols-4 { align-items: start; }
.wf-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .4rem; }
.wf-footer a { text-decoration: none; color: var(--muted); }
.wf-footer__bottom { border-top: 1px solid var(--line); margin-top: 2rem; padding-top: 1rem; font-size: .85rem; color: var(--muted); }

/* ---- Formulier ---- */
.wf-form { display: grid; gap: 1rem; max-width: 560px; }
.wf-field { display: grid; gap: .35rem; }
.wf-field label { font-size: .9rem; font-weight: 600; }
.wf-field input, .wf-field textarea {
  padding: .7rem .85rem; border: 1px solid var(--line); border-radius: 8px;
  font: inherit; background: var(--bg); color: var(--ink);
}
.wf-field textarea { min-height: 130px; resize: vertical; }

/* ---- Responsive ---- */
@media (max-width: 860px) {
  .wf-cols-2, .wf-cols-3, .wf-cols-4 { grid-template-columns: 1fr; }
  .wf-header .container { flex-wrap: wrap; }
}

/* ---- Bouwnotitie voor de builder (hover-tooltip, geen JS) ----
   Markeert een blok dat NIET uit de mal komt. Zet `wf-flagged` op de
   <section> (amber stippellijn eromheen) en plaats bovenin een .wf-note
   met een .wf-note__flag (het vlaggetje) en .wf-note__bubble (de uitleg
   die op hover/focus verschijnt). Amber = meta, geen ontwerp.
   Alle wf-note/wf-flagged weghalen vóór oplevering aan de klant. */
/* Twee smaken via modifier op .wf-note: --build (Julian, amber) en
   --klant (klant, blauw). Zonder modifier = algemene grijze notitie. */
.wf-flagged { outline: 2px dashed #e0b400; outline-offset: 8px; }   /* build */
.wf-flagged--klant { outline-color: #5b8def; }                      /* klant */
.wf-note { position: relative; display: inline-block; }
.wf-note__flag {
  display: inline-block; cursor: help;
  background: #eceef1; color: #3a3f4a;
  border: 1px dashed #b9bec7; border-radius: 6px;
  font-size: .8rem; font-weight: 700; padding: .3rem .7rem;
}
.wf-note--build .wf-note__flag { background: #fff3cd; color: #7a5b00; border-color: #d9a800; }
.wf-note--klant .wf-note__flag { background: #dbeafe; color: #1e40af; border-color: #7aa7e6; }
.wf-note__bubble {
  position: absolute; left: 0; top: calc(100% + .4rem); z-index: 20;
  width: min(360px, 82vw);
  background: #1f2430; color: #fff;
  border-radius: 8px; padding: .7rem .85rem;
  font-size: .85rem; line-height: 1.45; font-weight: 400;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: opacity .12s ease, transform .12s ease;
}
.wf-note:hover .wf-note__bubble,
.wf-note:focus-within .wf-note__bubble { opacity: 1; visibility: visible; transform: translateY(0); }
.wf-note__bubble strong { color: #ffe08a; }
.wf-note--klant .wf-note__bubble strong { color: #93c5fd; }

/* =========================================================================
   MERK-PALET (voorbeeld) — kopieer naar :root om van wireframe naar design
   te gaan. Zelfde bestand, alleen deze waarden.
   --ink:#1a1a2e; --muted:#55566b; --accent:#EB6800; --accent-ink:#fff;
   --box:#f2f2f5; --line:#e7e8f0;
   ========================================================================= */
