/* ============================================================
   LMI VERTO - Eigen identiteit (overschrijft Moofpeople basis)
   Karakter: beweging, rust, betekenis. Groen + paars als pad + golf.
   ============================================================ */

:root {
  /* LMI Verto officiele huisstijlkleuren
     Paars: CMYK 50/45/10/0 (logo onderkant, "wending")
     Groen: CMYK 55/0/55/0 (logo bovenkant, "de weg") */
  --lmi-primary: #8681B8;        /* Paars (logo exact) */
  --lmi-primary-dark: #6E6899;
  --lmi-primary-soft: #D5D1E6;
  --lmi-primary-bg: #F4F2F8;

  --lmi-accent: #73CC87;         /* Groen (logo exact) */
  --lmi-accent-dark: #5AAB7F;
  --lmi-accent-soft: #C8E5D0;

  /* Diepe tonen voor copy */
  --lmi-ink: #1F1B2E;
  --lmi-ink-soft: rgba(31, 27, 46, 0.7);

  /* Officiele lettertypen huisstijl
     Kopjes: Century Gothic (logo-font, geometrisch sans-serif)
     Broodtekst: Open Sans (web, leesbaar) */
  --lmi-font-heading: "Century Gothic", "CenturyGothic", "Futura", "Avenir Next", "URW Gothic", "Apple Gothic", sans-serif;
  --lmi-font-body: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Section ritme: meer ademruimte */
  --lmi-section-pad: clamp(7rem, 10vw, 12rem);

  /* Zachte radius voor golf-gevoel */
  --lmi-radius: 2.4rem;
  --lmi-radius-pill: 999px;
}

/* ============================================================
   Typografie: override Moofpeople-Montserrat met LMI-fonts
   ============================================================ */
html,
body {
  font-family: var(--lmi-font-body);
}

h1, h2, h3, h4, h5, h6,
.hero__title,
.usp-bar__title,
.partners__title,
.audience__title,
.kernwaarde-card h3,
.footer__title {
  font-family: var(--lmi-font-heading);
  letter-spacing: -0.01em;
}

.lmi-eyebrow,
.footer__value {
  font-family: var(--lmi-font-heading);
}

/* Buttons gebruiken broodtekst-font voor leesbaarheid */
.btn {
  font-family: var(--lmi-font-body);
}

/* ============================================================
   POC: PILL-NAVIGATIE + COMPACT HEADER
   Paarse afgeronde nav-balk, compact logo, MENU-pill op mobiel.
   ============================================================ */
.header {
  position: static !important;
  background: #ffffff !important;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  padding: 1.6rem 0 !important;
  z-index: auto !important;
}
.header__logo img {
  width: 14rem !important;
  height: auto !important;
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.header__logo {
  margin-right: auto;
}

/* Desktop: paarse pill-balk */
@media (min-width: 769px) {
  .header__cta { display: none !important; }
  .header__actions { display: none; }

  .nav {
    display: inline-block !important;
    position: static !important;
    background: transparent !important;
    padding: 0 !important;
    transform: none !important;
    box-shadow: none !important;
    flex: 0 0 auto;
    width: auto !important;
  }
  .nav__list {
    background: var(--lmi-primary) !important;
    border-radius: 999px;
    padding: 0.5rem 0.6rem !important;
    display: inline-flex !important;
    gap: 0.2rem !important;
    list-style: none;
    margin: 0;
    flex-direction: row !important;
    box-shadow: 0 6px 18px rgba(134, 129, 184, 0.28);
    width: auto !important;
  }
  .nav__item { margin: 0 !important; }
  .nav__link {
    color: rgba(255, 255, 255, 0.85) !important;
    padding: 0.85rem 1.5rem !important;
    border-radius: 999px;
    font-size: 1.35rem;
    font-weight: 500;
    font-family: var(--lmi-font-body);
    background: transparent;
    transition: background 0.2s ease, color 0.2s ease;
    display: inline-flex !important;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    line-height: 1;
    position: relative;
  }
  .nav__link:hover,
  .nav__item--dropdown:hover > .nav__link {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
  }
  /* Actieve pagina: subtiele onderstreping i.p.v. wit-pilletje */
  .nav__link.active {
    color: #ffffff !important;
    background: transparent !important;
  }
  .nav__link.active::after {
    content: "";
    position: absolute;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 0.3rem;
    height: 2px;
    background: #E08648;
    border-radius: 2px;
  }
  .nav__link svg { width: 1rem; height: 1rem; opacity: 0.7; }

  .nav__item--dropdown { position: relative; }
  .nav__dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 1.2rem);
    left: 0;
    background: #ffffff;
    border-radius: 1rem;
    padding: 1rem 0;
    min-width: 24rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
    z-index: 100;
  }
  .nav__item--dropdown:hover .nav__dropdown,
  .nav__item--dropdown:focus-within .nav__dropdown { display: block; }
  .nav__dropdown-link {
    display: block;
    color: var(--lmi-ink);
    padding: 0.9rem 1.8rem;
    font-size: 1.4rem;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
  }
  .nav__dropdown-link:hover {
    background: var(--lmi-primary-bg);
    color: var(--lmi-primary-dark);
  }
  .nav__dropdown-label {
    display: block;
    padding: 1.2rem 1.8rem 0.4rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--lmi-primary-dark);
  }
  .nav__dropdown-link--indent { padding-left: 2.8rem; }
  .nav__toggle { display: none !important; }
}

/* Mobiel: MENU-pill-button (geen hamburger meer) */
@media (max-width: 768px) {
  .nav__toggle {
    display: inline-flex !important;
    align-items: center;
    gap: 0.9rem;
    border: 2px solid var(--lmi-ink) !important;
    background: #ffffff !important;
    border-radius: 999px !important;
    padding: 0.7rem 1.6rem 0.7rem 1.8rem !important;
    width: auto !important;
    height: auto !important;
    font-family: var(--lmi-font-heading);
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 0.18em;
    color: var(--lmi-ink);
    cursor: pointer;
  }
  .nav__toggle::before {
    content: "MENU";
    letter-spacing: 0.18em;
  }
  .nav__toggle-bar {
    display: block !important;
    width: 1.6rem !important;
    height: 0.18rem !important;
    background: var(--lmi-ink) !important;
    margin: 0.18rem 0 !important;
    transform: none !important;
  }
}

/* ============================================================
   POC: HERO HERONTWORPEN
   Compositie geinspireerd op het logo: links twee gestapelde
   rechthoeken (groen + paars), rechts hero-tekst.
   ============================================================ */
.hero {
  background: #ffffff !important;
  padding: clamp(3rem, 5vw, 5rem) 0 clamp(6rem, 10vw, 11rem) !important;
}
.hero::before { display: none !important; }
.hero .container {
  display: grid !important;
  grid-template-columns: 1fr 1.1fr !important;
  gap: clamp(2.4rem, 5vw, 6rem) !important;
  align-items: center !important;
}
.hero__content { padding: 0 !important; }
.hero__title {
  font-size: clamp(4rem, 7.5vw, 7.5rem) !important;
  font-weight: 700 !important;
  line-height: 0.98 !important;
  letter-spacing: -0.025em !important;
  color: var(--lmi-ink) !important;
  margin: 0 0 1.6rem !important;
  text-transform: none;
}
.hero__title .text-accent--green::after { display: none !important; }
.hero__title .text-accent { color: inherit !important; }
.hero__lead {
  font-size: clamp(1.6rem, 1.7vw, 1.85rem);
  color: var(--lmi-ink-soft);
  margin: 1.6rem 0 2.6rem;
  max-width: 44rem;
  line-height: 1.5;
  font-weight: 400;
}

/* Twee gestapelde rechthoeken (placeholder + foto-state)
   Beide links uitgelijnd, paars breder dan groen (logo-compositie). */
.hero__visual {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  align-items: flex-start;
}
.hero__rect {
  position: relative;
  border-radius: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__rect--green {
  width: 70%;
  aspect-ratio: 16 / 7;
}
.hero__rect--purple {
  width: 100%;
  aspect-ratio: 16 / 6;
}
/* Placeholder-state: soft tint + dashed border + label */
.hero__rect--green {
  background-color: rgba(115, 204, 135, 0.18);
  outline: 1px dashed rgba(115, 204, 135, 0.7);
  outline-offset: -1px;
}
.hero__rect--purple {
  background-color: rgba(134, 129, 184, 0.18);
  outline: 1px dashed rgba(134, 129, 184, 0.7);
  outline-offset: -1px;
}
.hero__rect::before {
  content: attr(data-label);
  font-family: var(--lmi-font-heading);
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(31, 27, 46, 0.45);
  text-align: center;
  pointer-events: none;
}
/* Image-state: als background-image gezet is, verberg de placeholder */
.hero__rect[style*="background-image"] {
  background-color: transparent;
  outline: none;
}
.hero__rect[style*="background-image"]::before {
  display: none;
}

@media (max-width: 768px) {
  .hero .container {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
  }
  .hero__visual { order: 2; }
  .hero__content { order: 1; }
  .hero__rect { aspect-ratio: 16 / 8; }
}

/* Pill-CTA (groen) */
.btn--pill {
  background: var(--lmi-accent) !important;
  color: #ffffff !important;
  border-radius: 999px !important;
  padding: 1.2rem 2.4rem !important;
  font-weight: 600;
  font-size: 1.45rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  border: none;
  transition: background 0.2s ease, transform 0.2s ease;
  font-family: var(--lmi-font-body);
  line-height: 1;
}
.btn--pill:hover {
  background: var(--lmi-accent-dark) !important;
  transform: translateY(-2px);
  color: #ffffff !important;
}

/* ============================================================
   Typografie: meer rust, meer ademruimte
   ============================================================ */
body {
  color: var(--lmi-ink);
  letter-spacing: 0.005em;
}

h1, h2, h3, h4 {
  letter-spacing: -0.015em;
  font-weight: 700;
}

h1.hero__title,
.hero__title {
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

/* Pre-heading label-stijl (gebruikt op secties) */
.lmi-eyebrow {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lmi-primary-dark);
  margin-bottom: 1.2rem;
}

/* ============================================================
   Buttons: paars primair, met zachte schaduw
   ============================================================ */
.btn.btn--primary {
  background: var(--lmi-primary);
  color: #FFFFFF;
  border-radius: var(--lmi-radius-pill);
  box-shadow: 0 0.6rem 1.8rem rgba(145, 138, 183, 0.35);
  transition: all 0.3s cubic-bezier(0.43, 0.06, 0.44, 0.99);
}
.btn.btn--primary:hover {
  background: var(--lmi-primary-dark);
  box-shadow: 0 0.8rem 2.4rem rgba(110, 104, 153, 0.45);
  transform: translateY(-0.2rem);
}
.btn.btn--dark {
  background: var(--lmi-ink);
  color: #FFFFFF;
  border-radius: var(--lmi-radius-pill);
}
.btn.btn--outline {
  border-radius: var(--lmi-radius-pill);
}

/* ============================================================
   Header: zachtere onderlijn
   ============================================================ */
.header {
  border-bottom: 1px solid rgba(145, 138, 183, 0.12);
}
.top-bar {
  background: var(--lmi-primary-bg);
  color: var(--lmi-primary-dark);
}
.top-bar__link:hover {
  color: var(--lmi-primary);
}

/* ============================================================
   Hero: paarse soft-glow + golfvorm uit logo
   ============================================================ */
.hero {
  position: relative;
  padding: var(--lmi-section-pad) 0;
  background:
    radial-gradient(circle at 85% 30%, rgba(145, 138, 183, 0.18), transparent 55%),
    radial-gradient(circle at 15% 80%, rgba(126, 194, 143, 0.15), transparent 50%),
    #FFFFFF;
  overflow: hidden;
}
.hero::after { display: none !important; }
.hero__title .text-accent--green {
  color: var(--lmi-primary);
  font-style: italic;
  font-weight: 600;
}

/* Photo placeholders krijgen de LMI-paarse glow */
.photo-placeholder {
  background: linear-gradient(135deg, var(--lmi-primary-soft), var(--lmi-accent-soft));
  border-radius: var(--lmi-radius);
  border: 1px dashed rgba(145, 138, 183, 0.35);
}
.photo-placeholder__text {
  color: var(--lmi-primary-dark);
}
.photo-placeholder__label {
  color: var(--lmi-primary);
}

/* ============================================================
   Trust bar: zachte paarse achtergrond
   ============================================================ */
.trust-bar {
  background: var(--lmi-primary-bg);
  padding: 5rem 0;
}
.trust-bar__number {
  color: var(--lmi-primary-dark);
  font-weight: 700;
}
.trust-bar__label {
  color: var(--lmi-ink-soft);
}

/* ============================================================
   USP bar (drie sleutelwoorden): kaart-stijl
   ============================================================ */
.usp-bar {
  padding: var(--lmi-section-pad) 0;
  background: #FFFFFF;
}
.usp-bar__item {
  background: #FFFFFF;
  border: 1px solid rgba(145, 138, 183, 0.18);
  border-radius: var(--lmi-radius);
  padding: 3.5rem 3rem;
  transition: all 0.4s ease;
}
.usp-bar__item:hover {
  border-color: var(--lmi-primary);
  box-shadow: 0 1.2rem 3.6rem rgba(145, 138, 183, 0.18);
  transform: translateY(-0.4rem);
}
.usp-bar__icon {
  width: 7.2rem !important;
  height: 7.2rem !important;
  border-radius: var(--lmi-radius);
}
.usp-bar__title {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ============================================================
   Verto-Reis: paars-naar-groen verloop (begin → eind)
   ============================================================ */
.verto-reis {
  background: linear-gradient(180deg, var(--lmi-primary-bg) 0%, #FFFFFF 100%) !important;
  position: relative;
}
.verto-reis::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 6rem;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'><path fill='%23F4F2F8' d='M0,20 C360,60 1080,0 1440,30 L1440,0 L0,0 Z'/></svg>");
  background-size: cover;
}
.verto-fase {
  position: relative;
  background: #FFFFFF !important;
  border-radius: var(--lmi-radius) !important;
  box-shadow: 0 0.8rem 2.4rem rgba(31, 27, 46, 0.06);
  border-left: none !important;
  border-top: 4px solid var(--lmi-primary) !important;
  padding: 3rem 2.5rem !important;
  transition: all 0.4s ease;
}
.verto-fase:hover {
  transform: translateY(-0.4rem);
  box-shadow: 0 1.6rem 4rem rgba(31, 27, 46, 0.12);
}
.verto-fase:nth-child(1) { border-top-color: var(--lmi-primary) !important; }
.verto-fase:nth-child(2) { border-top-color: #A39DC4 !important; }
.verto-fase:nth-child(3) { border-top-color: #8FBE9A !important; }
.verto-fase:nth-child(4) { border-top-color: var(--lmi-accent) !important; }

.verto-fase span:first-child {
  color: var(--lmi-primary-dark) !important;
}
.verto-fase:nth-child(4) span:first-child {
  color: var(--lmi-accent-dark) !important;
}
.verto-fase h3 {
  font-size: 2.6rem !important;
  letter-spacing: -0.015em;
}

/* ============================================================
   Onderscheid tabel: meer rust
   ============================================================ */
.onderscheid table {
  background: #FFFFFF;
  border-radius: var(--lmi-radius);
  overflow: hidden;
  box-shadow: 0 0.4rem 2rem rgba(31, 27, 46, 0.06);
}
.onderscheid thead {
  background: var(--lmi-primary-bg);
}
.onderscheid thead th {
  color: var(--lmi-primary-dark) !important;
}
.onderscheid tbody tr:hover {
  background: var(--lmi-primary-bg);
}

/* ============================================================
   Audience: minder hard, ronder
   ============================================================ */
.audience {
  background: #FFFFFF;
  padding: var(--lmi-section-pad) 0;
}
.audience__list-item {
  border-radius: var(--lmi-radius);
  border: 1px solid rgba(145, 138, 183, 0.18);
  transition: all 0.3s ease;
}
.audience__list-item:hover {
  border-color: var(--lmi-primary);
  background: var(--lmi-primary-bg);
  transform: translateX(0.4rem);
}
.audience__list-number {
  background: var(--lmi-primary);
  color: #FFFFFF;
  border-radius: 50%;
  width: 4.2rem;
  height: 4.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.audience__list-arrow {
  color: var(--lmi-primary);
}

/* ============================================================
   CTA-blok: paars i.p.v. zwart
   ============================================================ */
.cta-block {
  background:
    radial-gradient(circle at 20% 30%, rgba(126, 194, 143, 0.25), transparent 50%),
    linear-gradient(135deg, var(--lmi-primary-dark), var(--lmi-primary)) !important;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6rem;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'><path fill='%23FFFFFF' d='M0,30 C360,0 1080,60 1440,20 L1440,0 L0,0 Z'/></svg>");
  background-size: cover;
  pointer-events: none;
}
.cta-block .btn--primary {
  background: #FFFFFF;
  color: var(--lmi-primary-dark);
}
.cta-block .btn--primary:hover {
  background: var(--lmi-accent);
  color: #FFFFFF;
}

/* ============================================================
   Footer: zachter paars i.p.v. donker
   ============================================================ */
.footer {
  background: var(--lmi-ink) !important;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5rem;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 50' preserveAspectRatio='none'><path fill='%231F1B2E' d='M0,30 C360,0 1080,50 1440,15 L1440,0 L0,0 Z'/></svg>");
  background-size: cover;
  transform: translateY(-99%);
  pointer-events: none;
}
/* Footer container: ruimte boven en onder */
.footer .container {
  padding-top: 7rem;
  padding-bottom: 0;
}

/* Top grid: brand + 3 kolommen */
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 5rem;
  padding-bottom: 6rem;
}
@media (max-width: 960px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem 3.5rem;
  }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer__top {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

/* Brand-blok */
.footer__brand {
  max-width: 38rem;
}
.footer__logo {
  display: block;
  height: auto;
  width: 16rem;
  margin-bottom: 2rem;
}
.footer__tagline {
  font-size: 1.45rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

/* Kolom-titels */
.footer__title {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lmi-accent);
  margin: 0 0 2.4rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

/* Lijst-items */
.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}
.footer__list li {
  font-size: 1.45rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}
.footer__list a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
}
.footer__list a:hover,
.footer__list a:focus-visible {
  color: #FFFFFF;
  padding-left: 0.4rem;
}

/* Waarden-bar (Passie | Ontplooiing | ... ) */
.footer__values {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  padding: 3.2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.footer__value {
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--lmi-primary-soft);
}
.footer__divider {
  color: var(--lmi-accent);
  font-weight: 300;
  opacity: 0.5;
}

/* Bottom: copy + legal */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 2.4rem 0 3rem;
}
@media (max-width: 560px) {
  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 1.2rem;
  }
}
.footer__copy {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}
.footer__legal {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 2.4rem;
  flex-wrap: wrap;
}
.footer__legal a {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer__legal a:hover,
.footer__legal a:focus-visible {
  color: #FFFFFF;
}

/* ============================================================
   Section dividers (algemeen)
   ============================================================ */
section {
  position: relative;
}

/* ============================================================
   Quote pull (Cohen)
   ============================================================ */
.quote-pull {
  padding: var(--lmi-section-pad) 0;
  background: var(--lmi-ink);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}
.quote-pull::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 6rem;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'><path fill='%231F1B2E' d='M0,20 C360,60 1080,0 1440,30 L1440,0 L0,0 Z'/></svg>");
  background-size: cover;
  transform: translateY(-99%);
}
.quote-pull::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 6rem;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'><path fill='%23F4F2F8' d='M0,40 C360,0 1080,60 1440,30 L1440,60 L0,60 Z'/></svg>");
  background-size: cover;
}
.quote-pull__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(3rem, 6vw, 8rem);
  align-items: center;
}
@media (max-width: 768px) {
  .quote-pull__grid { grid-template-columns: 1fr; }
}
.quote-pull__quote {
  margin: 2rem 0 3rem;
  border: none;
  padding: 0;
}
.quote-pull__quote p {
  font-size: clamp(2.4rem, 3.5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.015em;
  font-style: italic;
  color: #FFFFFF;
  margin: 0;
}
.quote-pull__quote cite {
  display: block;
  margin-top: 2rem;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lmi-primary-soft);
}
.quote-pull .lmi-eyebrow {
  color: var(--lmi-accent);
}
.quote-pull__text {
  font-size: 1.65rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  max-width: 46rem;
}
.quote-pull .photo-placeholder--quote {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, rgba(145, 138, 183, 0.35), rgba(126, 194, 143, 0.25));
  border-color: rgba(255, 255, 255, 0.18);
}
.quote-pull .photo-placeholder--quote .photo-placeholder__text {
  color: rgba(255, 255, 255, 0.85);
}
.quote-pull .photo-placeholder--quote .photo-placeholder__label {
  color: var(--lmi-accent);
}

/* ============================================================
   CTA Anaïs Nin quote
   ============================================================ */
.cta-block__quote {
  margin: 0;
  border: none;
  padding: 0;
  max-width: 70rem;
  margin: 0 auto;
}
.cta-block__quote p {
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}
.cta-block__quote cite {
  display: block;
  margin-top: 1.5rem;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lmi-accent);
}

/* ============================================================
   DOC-CARD: hover-effect voor downloadbare documenten
   ============================================================ */
.doc-card:hover,
.doc-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 2px 4px rgba(0,0,0,0.05), 0 16px 40px rgba(0,0,0,0.10) !important;
}
.doc-card:focus-visible {
  outline: 2px solid var(--lmi-primary);
  outline-offset: 4px;
}

/* ============================================================
   LMI WAVE-ACCENT: subtiel wave-lijntje als logo-DNA in design.
   Te plaatsen onder hoofdtitels of als section-accent.
   ============================================================ */
.lmi-wave {
  display: block;
  width: 7rem;
  height: 1.6rem;
  margin: 1.8rem auto 0;
  flex-shrink: 0;
}
.lmi-wave--left {
  margin-left: 0;
  margin-right: auto;
}
.lmi-wave__path {
  fill: none;
  stroke: #E08648;
  stroke-width: 2.2;
  stroke-linecap: round;
}
.lmi-wave--ink .lmi-wave__path {
  stroke: var(--lmi-ink);
  opacity: 0.45;
}
.lmi-wave--light .lmi-wave__path {
  stroke: #ffffff;
  opacity: 0.7;
}

/* Diagonale corner-watermark (twee schuine streepjes, logo-signature) */
.lmi-corner-mark {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 3rem;
  height: 4rem;
  pointer-events: none;
  opacity: 0.5;
}
.lmi-corner-mark__path {
  fill: #E08648;
}

/* ============================================================
   LOGO-FRAME: foto-container met logo-DNA
   Twee gestapelde rechthoeken + dunne witte golf + slashes.
   POC bij quote-pull (Cohen-citaat).
   ============================================================ */
.logo-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  margin: 0;
  border-radius: 0.4rem;
  overflow: hidden;
  background-color: #2A2640;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 3rem 6rem -2rem rgba(0, 0, 0, 0.6);
}

/* Geen <img> meer — foto via background-image inline */

/* SVG-overlay met dunne golf + slashes */
.logo-frame__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

/* Dunne witte golf = "de weg / wending" */
.logo-frame__wave {
  fill: none;
  stroke: #ffffff;
  stroke-width: 2.2;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 0.6rem rgba(0, 0, 0, 0.45));
}

/* Subtiele tweede golf (paars accent voor "na de down de up") */
.logo-frame__wave--accent {
  stroke: rgba(255, 255, 255, 0.4);
  stroke-width: 1.4;
}

/* Slanke diagonale stripes rechtsboven = logo-signature */
.logo-frame__slash {
  fill: #ffffff;
  opacity: 0.85;
}

/* Subtiele groene corner-tag linksboven (echo top-rechthoek) */
.logo-frame__tag-top {
  fill: #73cc87;
}

/* Subtiele paarse corner-tag rechtsonder (echo bottom-rechthoek) */
.logo-frame__tag-bottom {
  fill: #8681b8;
}

@media (max-width: 768px) {
  .logo-frame { aspect-ratio: 4 / 5; }
}
