/* ════════════════════════════════════════════════════════════════════
   Leeuwenlander.nl — gedeelde stylesheet v3.0
   Herpositionering juni 2026: Mens + Proces + Technologie
   Palet en fonts behouden, vormgeving zakelijker doorontwikkeld.
   ════════════════════════════════════════════════════════════════════ */

:root {
  --orange: #D4820A;
  --orange-dark: #A8630A;
  --dark: #1A1A1A;
  --ink: #2C2318;
  --cream: #FDF8F2;
  --warm: #F0E8D8;
  --muted: #6B5E50;
  --border: #E0D4C0;
  --white: #FFFFFF;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream); color: var(--ink);
  font-family: 'Inter', sans-serif; font-size: 17px; line-height: 1.7;
}

/* ── Nav ──────────────────────────────────────────────────────────── */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  padding: 0 2.5rem;
  display: flex; justify-content: space-between; align-items: center;
  z-index: 200; height: 64px;
  background: rgba(253,248,242,0.97); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { text-decoration: none; display: flex; align-items: center; gap: 0.5rem; }
.nav-logo img { width: 30px; height: 30px; object-fit: contain; border-radius: 3px; }
.nav-logo-text { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 700; color: var(--orange); }
.nav-links { display: flex; gap: 0.2rem; align-items: center; }
.nav-links > a, .nav-item > a {
  color: var(--muted); text-decoration: none;
  font-size: 0.86rem; font-weight: 500;
  padding: 0.55rem 0.8rem; transition: color 0.2s;
  display: inline-block; white-space: nowrap;
}
.nav-links > a:hover, .nav-item > a:hover { color: var(--orange); }
.nav-item { position: relative; }
.nav-item > a::after { content: " ▾"; font-size: 0.65em; color: var(--border); }
.nav-sub {
  display: none; position: absolute; top: 100%; left: 0;
  min-width: 220px; background: var(--white);
  border: 1px solid var(--border); border-top: 2px solid var(--orange);
  padding: 0.5rem 0; box-shadow: 0 8px 24px rgba(44,35,24,0.08);
}
.nav-item:hover .nav-sub, .nav-item:focus-within .nav-sub { display: block; }
.nav-sub a {
  display: block; padding: 0.5rem 1.2rem;
  color: var(--muted); text-decoration: none;
  font-size: 0.86rem; transition: color 0.2s, background 0.2s;
}
.nav-sub a:hover { color: var(--orange); background: var(--cream); }
.btn-nav {
  background: var(--orange); color: var(--white) !important;
  padding: 0.5rem 1.2rem !important; border-radius: 2px;
  font-weight: 600 !important; margin-left: 0.6rem;
}
.btn-nav:hover { background: var(--orange-dark); }
.nav-toggle {
  display: none; background: none; border: 1px solid var(--border);
  border-radius: 2px; padding: 0.35rem 0.7rem;
  font-size: 1.1rem; color: var(--ink); cursor: pointer;
}
@media (max-width: 980px) {
  nav.site-nav { padding: 0 1.2rem; flex-wrap: wrap; height: auto; min-height: 60px; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none; flex-direction: column; align-items: stretch;
    width: 100%; padding: 0.5rem 0 1rem; gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links > a, .nav-item > a { padding: 0.6rem 0.4rem; }
  .nav-sub {
    display: block; position: static; border: none; box-shadow: none;
    background: transparent; padding: 0 0 0.4rem 1rem; min-width: 0;
  }
  .nav-item > a::after { content: ""; }
  .btn-nav { margin: 0.6rem 0 0; text-align: center; }
}

/* ── Hero (homepage, met foto) ────────────────────────────────────── */
.hero {
  min-height: 88vh; display: flex; align-items: center;
  padding: 9rem 2.5rem 5rem; position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('/img/hero.jpg') center/cover no-repeat;
  filter: brightness(0.3); z-index: 0;
}
.hero-content { position: relative; z-index: 1; max-width: 760px; }
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 700; line-height: 1.05;
  color: var(--white); margin-bottom: 1.5rem;
}
.hero h1 em { color: var(--orange); font-style: italic; }
.hero p {
  font-size: 1.12rem; color: rgba(255,255,255,0.78);
  max-width: 600px; line-height: 1.8; margin-bottom: 2.5rem;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Page-hero (binnenpagina's, rustig) ───────────────────────────── */
.page-hero {
  background: var(--ink); padding: 9rem 2.5rem 4.5rem;
}
.page-hero .container { max-width: 1040px; margin: 0 auto; }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700; line-height: 1.1;
  color: var(--white); margin-bottom: 1.2rem; max-width: 760px;
}
.page-hero h1 em { color: var(--orange); font-style: italic; }
.page-hero p.lead {
  font-size: 1.08rem; color: rgba(255,255,255,0.7);
  max-width: 640px; line-height: 1.8;
}
.breadcrumb {
  font-size: 0.8rem; color: rgba(255,255,255,0.45);
  margin-bottom: 1.8rem; display: block;
}
.breadcrumb a { color: rgba(255,255,255,0.45); text-decoration: none; }
.breadcrumb a:hover { color: var(--orange); }

/* ── Labels & knoppen ─────────────────────────────────────────────── */
.eyebrow, .section-label {
  font-size: 0.78rem; font-weight: 600; color: var(--orange);
  letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 1.1rem; display: block;
}
.hero .eyebrow { color: var(--orange); }
.btn-primary {
  background: var(--orange); color: var(--white);
  padding: 0.85rem 2rem; text-decoration: none;
  font-weight: 600; font-size: 0.95rem;
  border-radius: 2px; transition: background 0.2s; display: inline-block;
}
.btn-primary:hover { background: var(--orange-dark); }
.btn-ghost {
  background: transparent; color: var(--white);
  padding: 0.85rem 2rem; text-decoration: none;
  font-weight: 500; font-size: 0.95rem;
  border-radius: 2px; border: 1px solid rgba(255,255,255,0.4);
  transition: border-color 0.2s; display: inline-block;
}
.btn-ghost:hover { border-color: var(--white); }
.btn-outline {
  background: transparent; color: var(--orange);
  padding: 0.8rem 1.8rem; text-decoration: none;
  font-weight: 600; font-size: 0.92rem;
  border-radius: 2px; border: 1px solid var(--orange);
  transition: background 0.2s, color 0.2s; display: inline-block;
}
.btn-outline:hover { background: var(--orange); color: var(--white); }

/* ── Secties ──────────────────────────────────────────────────────── */
section { padding: 5.5rem 2.5rem; }
.container { max-width: 1040px; margin: 0 auto; }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700; line-height: 1.15; margin-bottom: 1rem;
}
.section-title em { color: var(--orange); font-style: italic; }
.section-sub {
  font-size: 1rem; color: var(--muted);
  max-width: 620px; line-height: 1.8; margin-bottom: 3rem;
}
.bg-white { background: var(--white); }
.bg-warm { background: var(--warm); }
.bg-ink { background: var(--ink); }
.bg-ink .section-title { color: var(--white); }
.bg-ink .section-sub { color: rgba(255,255,255,0.55); }

/* ── Kaarten ──────────────────────────────────────────────────────── */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.cards-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.8rem; }
.cards-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 980px) { .cards-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 860px) { .cards-grid, .cards-grid-2 { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .cards-grid-4 { grid-template-columns: 1fr; } }
.card {
  border: 1px solid var(--border); background: var(--white);
  padding: 1.8rem; display: flex; flex-direction: column;
}
.card-kicker {
  font-size: 0.72rem; font-weight: 600; color: var(--orange);
  letter-spacing: 0.18em; text-transform: uppercase;
  display: block; margin-bottom: 0.7rem;
}
.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 700; margin-bottom: 0.7rem; line-height: 1.25;
}
.card p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.2rem; }
.card-link {
  color: var(--orange); text-decoration: none;
  font-size: 0.88rem; font-weight: 600; margin-top: auto;
}
.card-link:hover { text-decoration: underline; }
.card ul { list-style: none; margin-bottom: 1.2rem; }
.card ul li {
  font-size: 0.88rem; color: var(--muted); line-height: 1.6;
  padding: 0.25rem 0 0.25rem 1.3rem; position: relative;
}
.card ul li::before { content: "—"; position: absolute; left: 0; color: var(--orange); }

/* ── Herkenbaar-lijst (pijnpunten) ─────────────────────────────────── */
.pijn-lijst { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
@media (max-width: 720px) { .pijn-lijst { grid-template-columns: 1fr; } }
.pijn {
  background: var(--white); border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  padding: 1.3rem 1.5rem; font-size: 0.93rem; color: var(--muted); line-height: 1.7;
}
.pijn strong { color: var(--ink); display: block; margin-bottom: 0.2rem; font-weight: 600; }

/* ── Resultaten / beloftes ────────────────────────────────────────── */
.resultaten { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 860px) { .resultaten { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .resultaten { grid-template-columns: 1fr; } }
.resultaat { border-top: 2px solid var(--orange); padding-top: 1rem; }
.resultaat h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 700; margin-bottom: 0.4rem;
}
.resultaat p { font-size: 0.86rem; color: var(--muted); line-height: 1.65; }
.bg-ink .resultaat h3 { color: var(--white); }
.bg-ink .resultaat p { color: rgba(255,255,255,0.55); }

/* ── Stappen (hoe het werkt) ──────────────────────────────────────── */
.stappen { counter-reset: stap; display: grid; gap: 0; border: 1px solid var(--border); background: var(--white); }
.stap {
  counter-increment: stap;
  padding: 1.6rem 1.8rem 1.6rem 4.6rem; position: relative;
  border-bottom: 1px solid var(--border);
}
.stap:last-child { border-bottom: none; }
.stap::before {
  content: counter(stap, decimal-leading-zero);
  position: absolute; left: 1.6rem; top: 1.7rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 700; color: var(--orange);
}
.stap h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 700; margin-bottom: 0.4rem; }
.stap p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

/* ── Tweekoloms tekst+beeld ───────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; gap: 2.5rem; } }
.split-tekst p { color: var(--muted); line-height: 1.85; margin-bottom: 1.2rem; }
.split-tekst p strong { color: var(--ink); }
.split-visual img { width: 100%; border-radius: 2px; display: block; }
.quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-style: italic; color: var(--orange);
  border-left: 3px solid var(--orange); padding-left: 1.5rem;
  line-height: 1.5; margin: 1.8rem 0;
}

/* ── Klantenband ──────────────────────────────────────────────────── */
.klanten-band { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--white); padding: 3rem 2.5rem; }
.klanten-band .container { display: flex; gap: 2rem 3.5rem; align-items: baseline; flex-wrap: wrap; justify-content: space-between; }
.klanten-band .klanten-intro { font-size: 0.8rem; font-weight: 600; color: var(--muted); letter-spacing: 0.18em; text-transform: uppercase; }
.klanten-band .klant-naam { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 700; color: var(--ink); }
.klanten-band .klant-naam span { display: block; font-family: 'Inter', sans-serif; font-size: 0.74rem; font-weight: 400; color: var(--muted); letter-spacing: 0.04em; }

/* ── Case-blokken ─────────────────────────────────────────────────── */
.case {
  background: var(--white); border: 1px solid var(--border);
  padding: 2.2rem; margin-bottom: 1.8rem;
  display: grid; grid-template-columns: 220px 1fr; gap: 2.5rem;
}
@media (max-width: 720px) { .case { grid-template-columns: 1fr; gap: 1rem; } }
.case-naam h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; line-height: 1.2; }
.case-naam .case-sector { font-size: 0.8rem; color: var(--muted); margin-top: 0.3rem; display: block; }
.case-body p { font-size: 0.93rem; color: var(--muted); line-height: 1.75; margin-bottom: 0.8rem; }
.case-body p:last-child { margin-bottom: 0; }
.case-body strong { color: var(--ink); }

/* ── Inzichten / artikelen ────────────────────────────────────────── */
.artikel-kaart {
  background: var(--white); border: 1px solid var(--border);
  padding: 2rem; margin-bottom: 1.5rem; display: block; text-decoration: none;
  transition: border-color 0.2s;
}
.artikel-kaart:hover { border-color: var(--orange); }
.artikel-kaart h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: var(--ink); margin-bottom: 0.5rem; }
.artikel-kaart .artikel-meta { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; display: block; margin-bottom: 0.8rem; }
.artikel-kaart p { font-size: 0.92rem; color: var(--muted); line-height: 1.7; }
.artikel {
  max-width: 720px; margin: 0 auto;
}
.artikel h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 700; margin: 2.5rem 0 0.8rem; }
.artikel p { color: var(--muted); line-height: 1.9; margin-bottom: 1.3rem; }
.artikel p strong { color: var(--ink); }
.artikel ul { margin: 0 0 1.3rem 1.3rem; color: var(--muted); line-height: 1.9; }

/* ── CTA-band ─────────────────────────────────────────────────────── */
.cta-band { background: var(--orange); padding: 5rem 2.5rem; text-align: center; }
.cta-band .section-label { color: rgba(255,255,255,0.7); }
.cta-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  font-weight: 700; color: var(--white); line-height: 1.12; margin-bottom: 1rem;
}
.cta-band p {
  color: rgba(255,255,255,0.85); font-size: 1rem; line-height: 1.7;
  margin-bottom: 2.2rem; max-width: 480px; margin-left: auto; margin-right: auto;
}
.btn-white {
  background: var(--white); color: var(--orange);
  padding: 0.9rem 2.2rem; text-decoration: none;
  font-weight: 700; font-size: 1rem; border-radius: 2px;
  display: inline-block; transition: background 0.2s;
}
.btn-white:hover { background: var(--cream); }
.cta-band .cta-sub { margin-top: 1.4rem; font-size: 0.85rem; color: rgba(255,255,255,0.75); }
.cta-band .cta-sub a { color: var(--white); }

/* ── Footer ───────────────────────────────────────────────────────── */
footer.site-footer { background: var(--ink); padding: 3.5rem 2.5rem 2rem; }
.footer-inner {
  max-width: 1040px; margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem; margin-bottom: 2.5rem;
}
@media (max-width: 860px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-inner { grid-template-columns: 1fr; gap: 2rem; } }
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  color: var(--orange); font-size: 1.3rem; font-weight: 700;
  text-decoration: none; display: flex; align-items: center; gap: 0.4rem;
  margin-bottom: 0.8rem;
}
.footer-logo img { width: 26px; height: 26px; object-fit: contain; border-radius: 3px; }
.footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.38); line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 1rem;
}
.footer-col a {
  display: block; color: rgba(255,255,255,0.4);
  text-decoration: none; font-size: 0.84rem; margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1040px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.5rem;
  font-size: 0.75rem; color: rgba(255,255,255,0.25);
}
.footer-bottom a { color: rgba(255,255,255,0.25); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }
