/* ============================================================
   Be Mini Consultancy — style.css
   Plain CSS, no framework, no JS, no external font calls.
   Visuals are intentionally neutral until logo + brand lock (F04).
   When the brand lands, swap the CSS variables below — that's it.
   ============================================================ */

:root {
  /* Palette — neutral placeholder. Swap when brand lands. */
  --c-text:        #1a1a1a;
  --c-text-muted:  #5a5a5a;
  --c-bg:          #fdfdfb;
  --c-bg-alt:      #f3f1ec;
  --c-border:      #e2dfd8;
  --c-accent:      #1a1a1a;       /* keep accent = text until brand lands */
  --c-accent-text: #fdfdfb;

  /* Type — system fonts only (no Google Fonts = no AVG flag) */
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  /* Spacing scale */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4.5rem;
  --space-7: 6rem;

  /* Layout */
  --container-max:  64rem;       /* 1024px */
  --container-narrow: 42rem;     /* 672px  — comfortable reading width */
  --radius: 4px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;          /* 17px */
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; height: auto; display: block; }

a {
  color: var(--c-text);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a:hover { text-decoration-thickness: 2px; }

code {
  font-family: var(--font-mono);
  font-size: 0.92em;
  background: var(--c-bg-alt);
  padding: 0.1em 0.35em;
  border-radius: var(--radius);
}

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-3);
}
.container.narrow { max-width: var(--container-narrow); }

.section {
  padding: var(--space-6) 0;
  border-top: 1px solid var(--c-border);
}
.section-alt { background: var(--c-bg-alt); }
.section h2 {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 var(--space-3);
}

.lead {
  font-size: 1.1875rem;
  line-height: 1.55;
  color: var(--c-text);
}

.meta {
  font-size: 0.9375rem;
  color: var(--c-text-muted);
}

/* ---------- Hero ---------- */
.hero {
  padding: var(--space-7) 0 var(--space-6);
  background: var(--c-bg);
}
.brand {
  margin-bottom: var(--space-5);
}
.logo-text {
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: 0.02em;
}
.hero h1 {
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-3);
  max-width: 36ch;
}
.hero .tagline {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: var(--c-text-muted);
  margin: 0 0 var(--space-4);
  max-width: 56ch;
}
.hero .meta {
  margin: 0 0 var(--space-5);
}
.cta-row { margin: 0; }

.btn {
  display: inline-block;
  background: var(--c-accent);
  color: var(--c-accent-text);
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  transition: opacity 0.15s ease;
}
.btn:hover { opacity: 0.85; text-decoration: none; }

/* ---------- Aanbod grid ---------- */
.grid-2 {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
  margin-bottom: var(--space-4);
}
@media (min-width: 720px) {
  .grid-2 { grid-template-columns: 1fr 1fr; gap: var(--space-4); }
}

.card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: var(--space-3) var(--space-4);
}
.card h3 {
  margin: 0 0 var(--space-2);
  font-size: 1.0625rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-text-muted);
}
.card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.card li {
  padding: var(--space-1) 0;
  border-bottom: 1px solid var(--c-border);
}
.card li:last-child { border-bottom: none; }

/* ---------- Voorbeelden ---------- */
.grid-engagements {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .grid-engagements { grid-template-columns: 1fr 1fr; }
}

.engagement {
  border-top: 2px solid var(--c-text);
  padding-top: var(--space-2);
}
.engagement h3 {
  margin: 0 0 0.25rem;
  font-size: 1.1875rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.engagement .role {
  margin: 0 0 var(--space-2);
  font-size: 0.9375rem;
  color: var(--c-text-muted);
}
.engagement p:last-child { margin-bottom: 0; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--c-border);
  padding: var(--space-4) 0;
  background: var(--c-bg);
  font-size: 0.9375rem;
  color: var(--c-text-muted);
}
.site-footer a { color: var(--c-text-muted); }

/* ---------- Privacy page ---------- */
.legal-page {
  padding: var(--space-6) 0 var(--space-7);
}
.legal-page h1 {
  font-size: 1.75rem;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-2);
}
.legal-page h2 {
  font-size: 1.125rem;
  margin: var(--space-5) 0 var(--space-2);
}
.legal-page .meta { margin-bottom: var(--space-4); }

/* ---------- Print ---------- */
@media print {
  .btn, .hero .cta-row { display: none; }
  .section, .hero { page-break-inside: avoid; }
  body { font-size: 11pt; color: #000; background: #fff; }
}
