/* ==========================================================================
   Milaa.nl — Base / Reset / Layout primitives
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-body);
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; text-decoration: none; }
a:hover { color: var(--c-brand-deep); }

button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }

ul { list-style: none; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking);
  color: var(--c-ink);
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-weight: 600; }

p { color: var(--c-ink-soft); }

/* ---- Layout helpers ---- */
.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.container--narrow { width: min(100% - 2.5rem, var(--container-narrow)); margin-inline: auto; }

.section { padding-block: var(--sp-9); }
.section--tight { padding-block: var(--sp-7); }
.band { background: var(--c-bg-2); }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--c-brand-deep);
}

.lead { font-size: var(--fs-lg); color: var(--c-muted); line-height: var(--lh-snug); }

.section-head { text-align: center; max-width: 620px; margin: 0 auto var(--sp-7); }
.section-head .eyebrow { display: block; margin-bottom: var(--sp-3); }
.section-head h2 { margin-bottom: var(--sp-3); }

.grid { display: grid; gap: var(--sp-5); }

.center { text-align: center; }
.stack > * + * { margin-top: var(--sp-4); }

/* ---- Reusable image placeholder (prototype only — swap for photography) ---- */
.ph {
  position: relative;
  background:
    linear-gradient(135deg, var(--c-brand-soft), var(--c-accent-soft) 60%, var(--c-bg-2));
  display: flex; align-items: center; justify-content: center;
  color: var(--c-taupe);
  font-size: var(--fs-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  overflow: hidden;
}
.ph::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 30% 20%, rgba(255,255,255,.5), transparent 55%);
  pointer-events: none;
}
.ph span { position: relative; z-index: 1; opacity: .65; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto; }
}
