.elementor-kit-6{--e-global-color-primary:#0F0E0C;--e-global-color-secondary:#6B6760;--e-global-color-text:#D4CFC3;--e-global-color-accent:#C8331A;--e-global-color-45c947e:#101010;--e-global-color-605b3b8:#FFFFFF;--e-global-color-f9212a8:#F5F2EB;--e-global-color-df780aa:#EDE9DF;--e-global-typography-primary-font-family:"Playfair Display";--e-global-typography-primary-font-weight:900;--e-global-typography-secondary-font-family:"DM Sans";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"DM Sans";--e-global-typography-text-font-weight:300;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;background-color:var( --e-global-color-f9212a8 );color:var( --e-global-color-primary );font-family:"DM Sans", Sans-serif;font-weight:400;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-kit-6 a{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-kit-6 h1{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-kit-6 h2{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-kit-6 h3{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* ============================================
   REDACTIEFABRIEK — Global CSS voor Elementor
   Plak dit in: Site Settings → Custom CSS
   ============================================ */

/* ── TOKENS ── */
:root {
  --ink: #0f0e0c;
  --paper: #f5f2eb;
  --cream: #ede9df;
  --rule: #d4cfc3;
  --accent: #c8331a;
  --accent-dim: rgba(200, 51, 26, 0.1);
  --muted: #6b6760;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── BODY & BASE ── */
body {
  background: var(--paper);
  font-family: 'DM Sans', sans-serif;
}

/* ── TYPOGRAFIE ── */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

/* Rode cursieve accenten — voeg class "rf-accent" toe aan tekst-widget */
.rf-accent {
  font-style: italic;
  color: var(--accent);
}

/* ── RULING LINES (horizontale lijnen krant-stijl) ── */
/* Voeg class "rf-rule" toe aan een Divider-widget */
.rf-rule {
  border-color: var(--rule) !important;
}
.rf-rule-accent {
  border-color: var(--accent) !important;
  border-width: 3px !important;
}

/* ── KNOPPEN ── */
/* Primaire knop: donkere achtergrond met rode hover-sweep */
.elementor-button.rf-btn-primary {
  background: var(--ink);
  color: var(--paper);
  border-radius: 2px;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
  transition: color 0.3s;
  z-index: 0;
}
.elementor-button.rf-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease-out);
  z-index: -1;
}
.elementor-button.rf-btn-primary:hover::before {
  transform: translateX(0);
}

/* Accent knop: rood */
.elementor-button.rf-btn-accent {
  background: var(--accent);
  color: white;
  border-radius: 2px;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}
.elementor-button.rf-btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(200, 51, 26, 0.4);
}

/* Ghost knop: transparant met border */
.elementor-button.rf-btn-ghost {
  background: transparent;
  color: var(--muted);
  border: 1.5px solid var(--rule);
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.elementor-button.rf-btn-ghost:hover {
  border-color: var(--ink);
  color: var(--ink);
}

/* ── SECTIE-LABELS (eyebrow tekst) ── */
/* Voeg class "rf-eyebrow" toe aan tekst-widget */
.rf-eyebrow {
  font-size: 11px !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: var(--accent) !important;
  font-weight: 500 !important;
  font-family: 'DM Sans', sans-serif !important;
}

/* ── SCROLL REVEAL ── */
/* Voeg class "rf-reveal" toe aan elke widget of sectie die moet infaden */
.rf-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.rf-reveal.rf-visible {
  opacity: 1;
  transform: translateY(0);
}
.rf-reveal:nth-child(2) { transition-delay: 0.1s; }
.rf-reveal:nth-child(3) { transition-delay: 0.2s; }
.rf-reveal:nth-child(4) { transition-delay: 0.3s; }

/* ── FEATURE CARDS ── */
/* Voeg class "rf-feature-card" toe aan een kolom of container */
.rf-feature-card {
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 48px !important;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.rf-feature-card:hover {
  background: var(--cream);
}
/* rode streep boven bij hover */
.rf-feature-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 3px;
  background: var(--accent);
  transition: width 0.5s var(--ease-out);
}
.rf-feature-card:hover::after {
  width: 100%;
}

/* Grote feature-nummers */
.rf-feature-num {
  font-family: 'Playfair Display', serif !important;
  font-size: 72px !important;
  font-weight: 900 !important;
  color: var(--rule) !important;
  line-height: 1 !important;
  margin-bottom: 24px !important;
  display: block;
  transition: color 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.rf-feature-card:hover .rf-feature-num {
  color: var(--accent) !important;
  transform: translateX(8px);
}

/* ── STAT CELLEN ── */
.rf-stat-cell {
  padding: 48px 40px;
  border-right: 1px solid var(--rule);
  text-align: center;
  position: relative;
  transition: background 0.3s;
}
.rf-stat-cell::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.4s var(--ease-out);
}
.rf-stat-cell:hover { background: var(--cream); }
.rf-stat-cell:hover::after { width: 100%; }
.rf-stat-cell:hover .elementor-heading-title {
  color: var(--accent) !important;
}

/* Grote stat-nummers */
.rf-stat-num {
  font-family: 'Playfair Display', serif !important;
  font-size: 60px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  transition: color 0.3s;
}

/* ── HOW-IT-WORKS STAPPEN ── */
.rf-how-step {
  padding: 56px 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.rf-how-step:hover {
  background: rgba(255, 255, 255, 0.03);
}
.rf-how-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--accent);
  transition: height 0.5s var(--ease-out);
}
.rf-how-step:hover::before {
  height: 100%;
}

/* Stap-icoon kader */
.rf-step-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: border-color 0.3s, background 0.3s;
}
.rf-how-step:hover .rf-step-icon {
  border-color: var(--accent);
  background: rgba(200, 51, 26, 0.1);
}

/* ── PULLQUOTE ── */
.rf-pullquote {
  border-left: 4px solid var(--accent);
  padding-left: 36px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.35;
}

/* ── FAQ ITEMS ── */
.rf-faq-item {
  border-top: 1px solid var(--rule);
  padding: 4px 0;
}
.rf-faq-item:last-child {
  border-bottom: 1px solid var(--rule);
}

/* ── NAV LINKS ── */
.elementor-nav-menu a {
  position: relative;
}
.elementor-nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease-out);
}
.elementor-nav-menu a:hover::after {
  width: 100%;
}

/* ── ACHTERGROND SECTIES ── */
.rf-bg-ink { background: var(--ink) !important; }
.rf-bg-paper { background: var(--paper) !important; }
.rf-bg-cream { background: var(--cream) !important; }
.rf-bg-accent { background: var(--accent) !important; }

/* Diagonale lijnen overlay op accent-sectie */
.rf-bg-accent::after {
  content: '';
  position: absolute;
  inset: -50%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(255, 255, 255, 0.025) 40px,
    rgba(255, 255, 255, 0.025) 41px
  );
  pointer-events: none;
  z-index: 0;
}
.rf-bg-accent > * { position: relative; z-index: 1; }

/* ── TICKER / MARQUEE ── */
.rf-ticker {
  background: var(--accent);
  height: 44px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.rf-ticker-label {
  background: var(--ink);
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 20px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: white;
  white-space: nowrap;
  flex-shrink: 0;
}
.rf-ticker-track {
  display: flex;
  animation: rf-ticker 32s linear infinite;
  white-space: nowrap;
}
.rf-ticker-track:hover { animation-play-state: paused; }
.rf-ticker-item {
  padding: 0 28px;
  font-size: 13px;
  color: white;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}
@keyframes rf-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .rf-feature-card { padding: 32px 24px !important; }
  .rf-stat-cell { padding: 28px 20px; }
  .rf-how-step { padding: 36px 24px; }
  .rf-pullquote { font-size: 22px; padding-left: 20px; }
}

/* ── SCROLL REVEAL ACTIVATIE ── */
/* Dit script activeer je via Elementor → Site Settings → Custom Code → Body */

/* ── REDACTIEFABRIEK FORMULIERSTIJL ── */

/* Achtergrond van het formulierblok */
#rf-contactform {
  background: #ede9df;
  padding: 56px 48px;
}

/* Labels */
#rf-contactform .elementor-field-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b6760;
  margin-bottom: 7px;
}

/* Invoervelden, dropdowns, textarea */
#rf-contactform .elementor-field-textual,
#rf-contactform select.elementor-field {
  background: #f5f2eb;
  border: 1.5px solid #d4cfc3;
  border-radius: 2px;
  padding: 13px 15px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #0f0e0c;
  transition: border-color 0.25s, background 0.25s;
  box-shadow: none;
}

/* Focus-staat */
#rf-contactform .elementor-field-textual:focus,
#rf-contactform select.elementor-field:focus {
  border-color: #c8331a;
  background: #ffffff;
  outline: none;
}

/* Verzendknop */
#rf-contactform .elementor-button {
  background: #0f0e0c;
  color: #f5f2eb;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 2px;
  padding: 14px 32px;
  border: none;
  transition: background 0.3s;
}

#rf-contactform .elementor-button:hover {
  background: #c8331a;
}

/* Succesbericht */
#rf-contactform .elementor-message.elementor-message-success {
  background: #f0faf2;
  border-left: 4px solid #16a34a;
  color: #0f0e0c;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  border-radius: 2px;
  padding: 16px 20px;
}

/* Foutmelding per veld */
#rf-contactform .elementor-message.elementor-message-danger {
  color: #c8331a;
  font-size: 12px;
  font-family: 'DM Sans', sans-serif;
}/* End custom CSS */