/* brepp home - brand polish - 2026-04-20
 Color philosophy (brand guide faithful):
 Primary: #FF6A00 Warm amber - used sparingly (kickers, typed text, dots, CTA)
 Secondary: #5B6B7A Steel blue-grey - icons, step numbers, structural
 Near-black:#1A1A1A Text
 Off-white: #F7F8FA Background
 Neutral: #E5E7EB Borders
 Rule: amber covers at most 10-15% of composition. No made-up blue.

 Flow principle: sections share one canvas, differences are in spacing
 and card surfaces - not alternating background bands.
*/

/* ── Font override ─────────────────────────────────── */
body {
  font-family: 'Instrument Sans', sans-serif;
}

/* ── Tokens ────────────────────────────────────────── */
:root {
  --home-accent:   #FF6A00;
  --home-accent-soft: #FFC896;
  --home-accent-rgb: 255, 106, 0;
  --home-amber:    var(--home-accent);
  --home-steel:    #5B6B7A;
  --header-h:      72px;
  --hero-top-space: clamp(48px, 5vw, 64px);
}

html {
  /* Uitgelijnd op het gedeelde designsysteem (portal v2). */
  --home-bgHaze:  var(--canvas);
  --home-ink:     var(--text);
  --home-ink2:    var(--steel);      /* brand steel = perfect secondary text */
  --home-ink3:    var(--text-tertiary);
  --home-card:    var(--card);
  --home-card2:   var(--raised);
  --home-border:  var(--border);
  --home-shadow:  var(--shadow-overlay);
  --home-shadow2: 0 1px 2px rgba(0,0,0,0.05);
  --home-accent-line: rgba(var(--home-accent-rgb), 0.06);
  --home-accent-wash: rgba(var(--home-accent-rgb), 0.04);
  --home-accent-quiet: rgba(var(--home-accent-rgb), 0.07);
  --home-accent-glow: rgba(var(--home-accent-rgb), 0.08);
  --home-accent-border: rgba(var(--home-accent-rgb), 0.18);
  --home-accent-strong: #E45F00;
  --home-button-bg: var(--home-accent);
  --home-button-bg-hover: var(--home-accent-strong);
  --home-button-ink: #FFFFFF;
  --home-button-border: rgba(var(--home-accent-rgb), 0.24);
  --home-focus-ring: 0 0 0 4px rgba(var(--home-accent-rgb), 0.14);
  --home-button-shadow: 0 10px 24px rgba(var(--home-accent-rgb), 0.14);
}

.home-h2 {
  color: var(--home-ink);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 0 10px;
}

body.home-page section .home-h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  margin-top: 0.4rem;
  background: var(--home-accent);
}

.home-p {
  color: var(--home-ink2);
  margin: 0;
  line-height: 1.65;
  font-size: 15px;
}

.home-p--narrow { max-width: 58ch; }

.home-section-head { margin-bottom: 28px; }

/* ── Hero ──────────────────────────────────────────── */
/* Statische, rustige hero op één effen canvas. Geen wave, noise of gloed. */
.home-hero {
  position: relative;
  background: var(--canvas);
  border-bottom: 1px solid var(--border);
  margin-top: 0;
  padding-block: clamp(56px, 8vw, 112px);
  box-sizing: border-box;
}

.home-page .with-header-offset {
  padding-top: 0;
}

.home-hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

@media (max-width: 980px) {
  .home-hero-inner { grid-template-columns: 1fr; }}

.home-hero-copy { max-width: 680px; }

/* Static headline - never moves, never shifts */
.home-title {
  color: var(--home-ink);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-size: clamp(36px, 4.4vw, 60px);
  margin: 0;
}

.home-subtitle {
  color: var(--home-ink2);
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 24px;
  max-width: 50ch;
}

.home-cta {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.home-link {
  color: var(--home-ink2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s, opacity .2s;
}
.home-link:hover { color: var(--home-accent); border-bottom-color: var(--home-accent-border); }
.home-link:focus-visible {
  outline: none;
  color: var(--home-accent);
  border-bottom-color: var(--home-accent);
  box-shadow: var(--home-focus-ring);
  border-radius: 2px;
}

.home-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  color: var(--home-ink3);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.home-proof-item {
  display: flex;
  align-items: center;
  gap: 7px;
}

.home-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--home-accent);
  opacity: 0.55;
  flex-shrink: 0;
}

body.home-page .btn.primary {
  background: var(--home-button-bg);
  color: var(--home-button-ink);
  border: 1px solid var(--home-button-border);
  border-radius: 14px;
  box-shadow: var(--home-button-shadow);
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}

body.home-page .btn.primary:hover {
  background: var(--home-button-bg-hover);
  color: var(--home-button-ink);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(var(--home-accent-rgb), 0.16);
}

body.home-page .btn.primary:active {
  transform: translateY(0);
  box-shadow: var(--home-button-shadow);
  filter: none;
}

body.home-page .btn.primary:focus-visible,
body.home-page a.btn.primary:focus-visible {
  outline: none;
  box-shadow: var(--home-focus-ring), var(--home-button-shadow);
}

/* Hero card - supporting role, not dominant. Effen kaart, geen glas. */
.home-hero-card {
  position: relative;
  border-radius: var(--radius-md);
  padding: 16px 18px 18px;
  background: var(--home-card);
  border: 1px solid var(--home-border);
  overflow: hidden;
  transition: border-color .15s;
}
.home-hero-card:hover { border-color: var(--border-strong); }

.home-mini-title {
  font-family: 'Geist Mono', 'Courier New', monospace;
  color: var(--home-ink3);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 4px;
}

.home-mini-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 8px 6px;
  margin: 0 -6px;
  border-top: 1px solid var(--home-border);
  text-decoration: none;
  color: inherit;
  border-radius: 8px;
  transition: background .15s, box-shadow .15s;
}
.home-mini-row:hover { background: var(--home-accent-wash); }
.home-mini-row:focus-visible {
  outline: none;
  background: var(--home-accent-wash);
  box-shadow: var(--home-focus-ring);
}

.home-mini-k { color: var(--home-ink); font-weight: 600; font-size: 13px; }
.home-mini-v { color: var(--home-ink3); font-size: 11px; text-align: right; white-space: nowrap; }

/* ── Connected canvas - sections flow, not stack ────
 All content sections share the page background.
 Only the hero has a distinct treatment.
 Cards float on the canvas with subtle shadows.
 Section divisions are spacing only, no bg changes.
 ─────────────────────────────────────────────────── */

/* ── 01 How it works ─────────────────────────────── */
.home-how {
  padding: clamp(56px, 7vw, 96px) 0;
}

/* Bewust géén gelijke-kaartengrid: genummerd proza, asymmetrisch. */
.home-how-steps {
  display: flex;
  flex-direction: column;
  margin-top: 32px;
  max-width: 760px;
}

.home-how-step {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  column-gap: 20px;
  row-gap: 8px;
  padding: 26px 0;
  border-top: 1px solid var(--home-border);
}
.home-how-step:first-child { border-top: 0; padding-top: 4px; }

.home-how-num {
  grid-column: 1;
  grid-row: 1 / span 2;
  font-family: 'Geist Mono', 'Courier New', monospace;
  font-size: 20px;
  font-weight: 500;
  color: var(--home-accent);
  line-height: 1.25;
}

.home-how-title {
  grid-column: 2;
  color: var(--home-ink);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0;
}

.home-how-text {
  grid-column: 2;
  color: var(--home-ink2);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 560px) {
  .home-how-step { grid-template-columns: 1fr; }
  .home-how-num { grid-column: 1; grid-row: auto; }
  .home-how-title, .home-how-text { grid-column: 1; }}

/* ── 02 Services ─────────────────────────────────── */
.home-services {
  padding: clamp(48px, 6vw, 80px) 0;
  /* Subtle visual separation from previous section */
  border-top: 1px solid var(--home-border);
}

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--home-border);
  border: 1px solid var(--home-border);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 24px;
}

@media (max-width: 860px) {
 .home-services-grid { grid-template-columns: 1fr; }}

.home-svc {
  display: grid;
  grid-template-columns: 38px 1fr 18px;
  gap: 14px;
  align-items: start;
  padding: 22px 20px;
  background: var(--home-card);
  text-decoration: none;
  color: inherit;
  transition: background .18s;
}

.home-svc:hover {
  background: var(--home-card2);
}

.home-svc:hover .home-svc-arrow {
  transform: translateX(3px);
  color: var(--home-accent);
}

.home-svc:focus-visible {
  outline: none;
  box-shadow: var(--home-focus-ring);
}

.home-svc-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;  /* brand: medium = 8px */
  background: rgba(91, 107, 122, 0.07);
  border: 1px solid var(--home-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--home-steel);
  flex-shrink: 0;
  margin-top: 1px;
}

.home-svc-title {
  color: var(--home-ink);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.home-svc-text {
  color: var(--home-ink2);
  font-size: 13.5px;
  line-height: 1.62;
  margin: 0 0 10px;
}

.home-svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.home-svc-tags span {
  font-family: 'Geist Mono', 'Courier New', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--home-ink3);
  background: var(--home-card2);
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid var(--home-border);
}

.home-svc-arrow {
  color: var(--home-ink3);
  font-size: 15px;
  margin-top: 2px;
  transition: transform .18s, color .18s;
  flex-shrink: 0;
}

/* ── 03 Sectors ──────────────────────────────────── */
.home-sectors {
  padding: clamp(48px, 6vw, 80px) 0;
  border-top: 1px solid var(--home-border);
}

.home-sectors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--home-border);
  border: 1px solid var(--home-border);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 24px;
}

@media (min-width: 1060px) {
 .home-sectors-grid { grid-template-columns: repeat(4, 1fr); }}

@media (max-width: 540px) {
 .home-sectors-grid { grid-template-columns: 1fr; }}

.home-sector-item {
  background: var(--home-card);
  padding: 20px 18px 22px;
}

.home-sector-name {
  color: var(--home-ink);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: -0.01em;
  margin-bottom: 7px;
  line-height: 1.3;
}

.home-sector-desc {
  color: var(--home-ink2);
  font-size: 13px;
  line-height: 1.58;
  margin: 0;
}

/* ── 04 Tools ────────────────────────────────────── */
.home-tools {
  padding: clamp(48px, 6vw, 80px) 0;
  border-top: 1px solid var(--home-border);
}

.home-tool-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--home-border);
  border: 1px solid var(--home-border);
  border-radius: 12px;
  overflow: hidden;
}

@media (max-width: 680px) {
 .home-tool-grid { grid-template-columns: 1fr; }}

.home-tool {
  position: relative;
  display: block;
  text-decoration: none;
  padding: 22px 20px 20px;
  background: var(--home-card);
  overflow: hidden;
  transition: background .18s;
}

.home-tool:hover {
  background: var(--home-card2);
}

.home-tool-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  flex-wrap: wrap;
}

.home-tool-title {
  color: var(--home-ink);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 17px;
}

.home-tool-tag {
  font-family: 'Geist Mono', 'Courier New', monospace;
  color: var(--home-ink3);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-tool-desc {
  margin-top: 10px;
  color: var(--home-ink2);
  line-height: 1.62;
  font-size: 14px;
}

.home-tool-stat {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--home-border);
}

.home-tool-stat-num {
  font-size: 18px;
  font-weight: 700;
  color: var(--home-accent);
  font-variant-numeric: tabular-nums;
}

.home-tool-stat-label {
  font-size: 12px;
  color: var(--home-ink2);
  font-weight: 500;
}

.home-tool-cta {
  margin-top: 16px;
  color: var(--home-accent);
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transform: translateY(5px);
  opacity: 0;
  transition: transform .2s ease, opacity .2s ease;
}
.home-tool:hover .home-tool-cta { transform: translateY(0); opacity: 1; }
.home-tool:focus-visible {
  outline: none;
  box-shadow: var(--home-focus-ring);
}

/* ── CTA ─────────────────────────────────────────── */
.home-final-cta {
  padding: clamp(56px, 8vw, 100px) 0;
  border-top: 1px solid var(--home-border);
}

.home-final-cta-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  border-radius: 16px;
  padding: clamp(28px, 4vw, 44px);
  background: var(--home-card);
  border: 1px solid var(--home-border);
  box-shadow: var(--home-shadow);
}

@media (max-width: 860px) {
 .home-final-cta-inner { grid-template-columns: 1fr; }}

.home-final-cta-title {
  color: var(--home-ink);
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 0 10px;
}

.home-final-cta-text {
  color: var(--home-ink2);
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 22px;
}

.home-final-cta-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

/* Breppie callout - part of the page, not an add-on */
.home-breppie-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--home-border);
  color: var(--home-ink3);
  font-size: 13px;
}

.home-breppie-btn {
  all: unset;
  cursor: pointer;
  color: var(--home-accent);
  font-weight: 600;
  font-size: 13px;
  border-bottom: 1px solid transparent;
  transition: border-color .15s, color .15s, opacity .15s;
}
.home-breppie-btn:hover {
  border-bottom-color: var(--home-accent);
}
.home-breppie-btn:focus-visible {
  outline: none;
  border-bottom-color: var(--home-accent);
  box-shadow: var(--home-focus-ring);
  border-radius: 2px;
}

.home-cta-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--home-border);
}

.home-cta-person-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  flex-shrink: 0;
}

.home-cta-person-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.home-cta-person-info strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--home-ink);
}

.home-cta-person-info span {
  font-size: 13px;
  color: var(--home-ink3);
}

.home-final-checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.home-final-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--home-ink2);
  font-size: 14px;
  line-height: 1.5;
}

.home-final-check-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--home-accent);
  opacity: 0.55;
  flex-shrink: 0;
  margin-top: 5px;
}

body.home-page .logo:hover,
body.home-page .logo:focus,
body.home-page .logo-footer:hover,
body.home-page .logo-footer:focus,
body.home-page .nav-links a:hover,
body.home-page .nav-links a:focus-visible,
body.home-page .submenu li a:hover,
body.home-page .submenu li a:focus-visible,
body.home-page .whatsapp-link a:hover,
body.home-page .icon-button:hover{
  color: var(--home-accent);
}

body.home-page .icon-button:focus-visible,
body.home-page .whatsapp-link a:focus-visible,
body.home-page .nav-links a:focus-visible {
  outline: none;
  box-shadow: var(--home-focus-ring);
  border-radius: 10px;
}

/* ── Footer CSS fix ──────────────────────────────── */
/* .footer-tools h3 is absent from the global selector list */
.footer-tools h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

/* Align footer font on this page */
.footer {
  font-family: 'Instrument Sans', sans-serif;
}

/* Tighter min-width lets all 6 columns fit at typical desktop widths */

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 980px) {
  .home-hero-inner { grid-template-columns: 1fr; }
  .home-hero-card  { max-width: 480px; }
}

@media (max-width: 640px) {
 .home-hero-card { display: none; }}