/* ===============================================================
   Theorie halen bij Sass — design system
   Brand: navy #0c2545 · yellow #FFCC2F · cream #f7f3ea
   =============================================================== */

:root {
  --navy:       #0c2545;
  --navy-2:     #143055;
  --navy-3:     #1c3e69;
  --navy-soft:  #2c5588;
  --ink:        #0c2545;
  --muted:      #5b6b82;
  --line:       #e7e0d1;
  --line-2:     #efe9dc;
  --cream:      #f7f3ea;
  --cream-2:    #f1ead9;
  --white:      #ffffff;
  --yellow:     #FFCC2F;
  --yellow-2:   #f5bb12;
  --green:      #2f9466;
  --red:        #d4593f;

  --radius-sm:  8px;
  --radius:     14px;
  --radius-lg:  22px;
  --radius-xl:  32px;

  --shadow-sm: 0 1px 2px rgba(12,37,69,.04), 0 4px 12px rgba(12,37,69,.05);
  --shadow:    0 1px 2px rgba(12,37,69,.06), 0 12px 32px rgba(12,37,69,.08);
  --shadow-lg: 0 2px 6px rgba(12,37,69,.08), 0 30px 70px rgba(12,37,69,.18);

  --f-display: "Bricolage Grotesque", "Manrope", system-ui, sans-serif;
  --f-body:    "Manrope", system-ui, sans-serif;
  --f-mono:    "JetBrains Mono", ui-monospace, monospace;
}

/* ============ Margin reset ============ */
/* The design has h1-h4 { margin: 0 } and p { margin: 0 } as base reset.
   Heading margins are zeroed via theme.json (styles.elements.heading.spacing).
   Paragraph margins are scoped to TBS containers so plugin UI is unaffected. */
[class*="tbs-"] p { margin-block: 0; }

/* ============ Page background ============ */
body { background: var(--cream) !important; }

/* ============ Topbar ============ */
.tbs-topbar {
  background: #08182f;
  color: rgba(255,255,255,.85);
  font-size: 13px;
  font-family: var(--f-body);
}
.tbs-topbar-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 28px;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 8px; padding-bottom: 8px; gap: 16px;
}
.tbs-topbar a { display: inline-flex; align-items: center; gap: 6px; color: inherit; text-decoration: none; }
.tbs-topbar-left { display: flex; gap: 22px; align-items: center; }
@keyframes tbs-dot-pulse { 0% { box-shadow: 0 0 0 0 rgba(47,148,102,.55); } 70% { box-shadow: 0 0 0 5px rgba(47,148,102,0); } 100% { box-shadow: 0 0 0 0 rgba(47,148,102,0); } }
.tbs-topbar-left .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); display: inline-block; margin-right: 8px; flex-shrink: 0; animation: tbs-dot-pulse 2s ease-out infinite; }
.tbs-topbar-right { display: flex; gap: 22px; align-items: center; }

/* ============ Header / Nav ============ */
.tbs-header {
  background: var(--navy);
  color: white;
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-family: var(--f-body);
}
.tbs-nav {
  max-width: 1240px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px; padding-bottom: 18px; gap: 16px;
}
.tbs-nav > * { margin-block: 0 !important; }
.tbs-cta-row > * { margin-block: 0 !important; }
.tbs-logo { display: flex; align-items: center; gap: 6px; color: white; font-family: var(--f-display); text-decoration: none; }
.tbs-logo-mark {
  width: 8px; height: auto; align-self: stretch; border-radius: 4px;
  background: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  color: transparent; font-size: 0;
  position: relative; flex-shrink: 0;
}
.tbs-logo-mark::before {
  content: none;
}
.tbs-logo-text { display: flex; flex-direction: column; line-height: 1; }
.tbs-logo-text .a { font-weight: 600; font-size: 17px; letter-spacing: -0.01em; }
.tbs-logo-text .b { font-size: 11px; color: var(--yellow); margin-top: 4px; letter-spacing: 0.12em; font-family: var(--f-body); font-weight: 600; }

.tbs-nav-links { display: flex; gap: 4px; align-items: center; }
.tbs-nav-links a {
  padding: 9px 14px; border-radius: 999px;
  font-size: 15px; font-weight: 500;
  color: rgba(255,255,255,.86);
  transition: background .2s, color .2s;
  text-decoration: none;
}
.tbs-nav-links a:hover { background: rgba(255,255,255,.08); color: white; }
.tbs-nav-links a.active,
.tbs-nav-links a[aria-current="page"] { background: rgba(255,255,255,.12); color: white; }

.tbs-cta-row { display: flex; gap: 10px; align-items: center; margin: 0; }

/* ============ Buttons ============ */
.tbs-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; border-radius: 999px;
  font-weight: 600; font-size: 15px; font-family: var(--f-body);
  border: 1.5px solid transparent;
  transition: transform .12s, background .2s, border .2s, color .2s;
  white-space: nowrap; text-decoration: none; cursor: pointer;
}
.tbs-btn:active { transform: translateY(1px); }
.tbs-btn-primary { background: var(--yellow); color: var(--navy); border-color: var(--yellow); }
.tbs-nav .tbs-cta-row .tbs-btn { font-size: 14px; }
.tbs-btn-primary:hover { background: var(--yellow-2); border-color: var(--yellow-2); color: var(--navy); }
.tbs-btn-ghost   { background: transparent; color: white; border-color: rgba(255,255,255,.25); }
.tbs-btn-ghost:hover { border-color: rgba(255,255,255,.55); color: white; }
.tbs-btn-dark    { background: var(--navy); color: white; border-color: var(--navy); }
.tbs-btn-dark:hover { background: var(--navy-2); border-color: var(--navy-2); color: white; }
.tbs-btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.tbs-btn-outline:hover { background: var(--navy); color: white; }
.tbs-btn-lg  { padding: 16px 28px; font-size: 16px; }
.tbs-btn-sm  { padding: 9px 14px; font-size: 13px; }
.tbs-btn-block { width: 100%; justify-content: center; box-sizing: border-box; }

/* ============ Sections ============ */
.tbs-section { padding: 96px 0; }
.tbs-container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.tbs-container-narrow { max-width: 920px; margin: 0 auto; padding: 0 28px; }

.tbs-section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.tbs-section-eyebrow {
  display: inline-block; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--navy-soft); font-weight: 600; font-family: var(--f-body);
  padding: 4px 12px; background: var(--cream-2); border-radius: 999px;
}
.tbs-section-head h2 { font-family: var(--f-display); font-size: clamp(34px, 4vw, 54px); margin-top: 16px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.08; }
.tbs-section-head p  { color: var(--muted); margin-top: 16px; font-size: 17px; font-family: var(--f-body); }
.on-navy .tbs-section-eyebrow { background: rgba(255,255,255,.1); color: var(--yellow); }
.on-navy .tbs-section-head h2 { color: white; }
.on-navy .tbs-section-head p  { color: rgba(255,255,255,.7); }

/* ============ Home hero ============ */
.tbs-hero {
  background: var(--navy); color: white;
  position: relative; overflow: hidden;
  font-family: var(--f-body);
}
.tbs-hero::after {
  content: ""; position: absolute; right: -120px; top: -120px;
  width: 460px; height: 460px;
  background: radial-gradient(closest-side, rgba(255,204,47,.16), transparent);
  pointer-events: none;
}
.tbs-hero-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px;
  padding-top: 80px; padding-bottom: 100px; align-items: center;
}
.tbs-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 12px 6px 8px; border-radius: 999px;
  background: rgba(255,255,255,.08); font-size: 13px; color: rgba(255,255,255,.85);
}
.tbs-hero-eyebrow .pill {
  background: var(--yellow); color: var(--navy);
  padding: 3px 9px; border-radius: 999px;
  font-weight: 700; font-size: 12px; letter-spacing: 0.02em;
}
.tbs-hero h1 {
  font-family: var(--f-display);
  font-size: clamp(46px, 5.5vw, 80px); margin-top: 0.45em; margin-bottom: 0.45em; font-weight: 600;
  letter-spacing: -0.02em; line-height: 1.08;
}
.tbs-hero h1 .accent { color: var(--yellow); font-style: italic; font-weight: 500; }
.tbs-hero-sub { margin-top: 0; font-size: 19px; max-width: 540px; color: rgba(255,255,255,.78); line-height: 1.5; }
.tbs-hero-actions { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }

.tbs-hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 56px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
  max-width: 560px;
}
.tbs-hero-stat .n { font-family: var(--f-display); font-size: 32px; font-weight: 600; letter-spacing: -0.02em; }
.tbs-hero-stat .n .unit { color: var(--yellow); font-size: 20px; vertical-align: super; margin-left: 2px; }
.tbs-hero-stat .l { color: rgba(255,255,255,.6); font-size: 13px; margin-top: 2px; }

.tbs-hero-card {
  background: white; color: var(--ink);
  border-radius: var(--radius-xl);
  padding: 28px; box-shadow: var(--shadow-lg);
  transform: rotate(-1.2deg); position: relative;
}
.tbs-hero-card .hc-head { display: flex; align-items: center; justify-content: space-between; padding-right: 58px; }
.tbs-hero-card .hc-badge {
  background: var(--cream); color: var(--navy);
  padding: 5px 11px; border-radius: 999px; font-size: 12px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 7px;
}
.tbs-hero-card .hc-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px rgba(47,148,102,.18); }
.tbs-hero-card .hc-title { font-family: var(--f-display); font-size: 22px; margin-top: 18px; font-weight: 600; }
.tbs-hero-card .hc-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; border-bottom: 1px dashed var(--line); font-size: 15px;
}
.tbs-hero-card .hc-row:last-of-type { border-bottom: 0; }
.tbs-hero-card .hc-row .lbl { color: var(--muted); }
.tbs-hero-card .hc-row .val { font-weight: 600; }
.tbs-hero-card .hc-price {
  display: flex; align-items: baseline; gap: 6px;
  margin-top: 18px; padding-top: 18px; border-top: 2px solid var(--ink);
}
.tbs-hero-card .hc-price .amount { font-family: var(--f-display); font-size: 38px; font-weight: 600; }
.tbs-hero-card .hc-price .meta   { color: var(--muted); font-size: 13px; }
.tbs-hero-card .hc-cta { margin-top: 18px; }
.tbs-hero-card-sticker {
  position: absolute; top: -14px; right: -14px;
  width: 88px; height: 88px;
  background: var(--yellow); color: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-family: var(--f-display); font-weight: 600; font-size: 15px;
  line-height: 1.05; transform: rotate(8deg);
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
}

/* ============ USP strip ============ */
.tbs-usp-row {
  background: white;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--f-body);
}
.tbs-usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); padding: 28px 0; gap: 4px; }
.tbs-usp-cell { display: flex; align-items: center; gap: 14px; padding: 8px 18px; border-right: 1px solid var(--line); }
.tbs-usp-cell:last-child { border-right: 0; }
.tbs-usp-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 10px; background: var(--cream-2);
  display: flex; align-items: center; justify-content: center; color: var(--navy);
}
.tbs-usp-text { line-height: 1.2; }
.tbs-usp-text strong { display: block; font-size: 15px; font-weight: 600; color: var(--navy); }
.tbs-usp-text span   { font-size: 12px; color: var(--muted); }

/* ============ Dates section ============ */
.tbs-dates { background: var(--navy); color: white; padding: 96px 0; font-family: var(--f-body); }
.tbs-date-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tbs-date-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 22px; transition: background .2s, transform .2s;
  display: flex; flex-direction: column; gap: 14px;
}
.tbs-date-card:hover { background: rgba(255,255,255,.08); transform: translateY(-2px); }
.tbs-date-head { display: flex; justify-content: space-between; align-items: flex-start; }
.tbs-date-dm { font-family: var(--f-display); font-size: 38px; line-height: 1; font-weight: 600; }
.tbs-date-dm .month {
  display: block; font-size: 13px; color: var(--yellow);
  font-family: var(--f-body); margin-top: 6px;
  text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600;
}
.tbs-date-tag { font-size: 11px; padding: 4px 9px; border-radius: 999px; font-weight: 600; letter-spacing: 0.04em; }
.tbs-date-tag.go   { background: rgba(47,148,102,.18); color: #6cd4a0; }
.tbs-date-tag.warn { background: rgba(255,204,47,.18); color: var(--yellow); }
.tbs-date-tag.full { background: rgba(255,255,255,.1); color: rgba(255,255,255,.6); }
.tbs-date-day  { font-size: 15px; color: rgba(255,255,255,.6); letter-spacing: 0.05em; text-transform: uppercase; }
.tbs-date-meta { display: flex; gap: 14px; font-size: 13px; color: rgba(255,255,255,.7); }
.tbs-date-meta .pip { display: flex; gap: 6px; align-items: center; }
.tbs-seats { display: flex; gap: 4px; flex-wrap: wrap; }
.tbs-seat  { width: 14px; height: 14px; border-radius: 4px; background: rgba(255,255,255,.16); }
.tbs-seat.taken { background: var(--yellow); }

/* ============ Reviews ============ */
.tbs-reviews { background: var(--cream); padding: 96px 0; font-family: var(--f-body); }
.tbs-reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tbs-reviews-grid .block-editor-inner-blocks,
.tbs-reviews-grid .block-editor-block-list__layout { display: contents; }

/* Editor: compare — wrappers transparant zodat tbs-compare's eigen 1fr/1fr grid geldt */
.tbs-compare > .block-editor-inner-blocks,
.tbs-compare > .block-editor-inner-blocks > .block-editor-block-list__layout { display: contents; }
/* Editor: compare-kolom items — wrappers transparant zodat items direct in de kolom vallen */
.tbs-compare-col > .block-editor-inner-blocks,
.tbs-compare-col > .block-editor-inner-blocks > .block-editor-block-list__layout { display: contents; }
/* Editor: vergelijkingsitems — spacing tussen items */
.tbs-compare-col .wp-block-tbs-compare-item { margin-bottom: 8px; }
/* Editor: NFY-lijst items */
.tbs-nfy-list > .block-editor-inner-blocks,
.tbs-nfy-list > .block-editor-inner-blocks > .block-editor-block-list__layout { display: contents; }
/* Editor: prijsblok incl-items */
.tbs-incl-list > .block-editor-inner-blocks,
.tbs-incl-list > .block-editor-inner-blocks > .block-editor-block-list__layout { display: contents; }
/* Editor: bereikbaarheid rijen in hours-card */
.tbs-hours-grid > .block-editor-inner-blocks,
.tbs-hours-grid > .block-editor-inner-blocks > .block-editor-block-list__layout { display: contents; }
.tbs-review {
  background: white; border-radius: var(--radius-lg);
  padding: 28px; border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 16px;
}
.tbs-review .stars { display: flex; gap: 2px; color: var(--yellow); }
.tbs-review p { font-size: 16px; line-height: 1.55; font-family: var(--f-display); font-weight: 400; letter-spacing: -0.005em; }
.tbs-review .who {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto; padding-top: 10px; border-top: 1px solid var(--line);
}
.tbs-review .avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--cream-2); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; flex-shrink: 0;
}
.tbs-review .who-text { font-size: 13px; }
.tbs-review .who-text strong { display: block; font-weight: 600; font-size: 15px; }
.tbs-review .who-text span   { color: var(--muted); }
.tbs-reviews-summary {
  text-align: center; margin-top: 50px;
  display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
}
.tbs-rs-item { font-size: 15px; color: var(--muted); }
.tbs-rs-item strong { display: block; font-family: var(--f-display); font-size: 38px; color: var(--navy); font-weight: 600; }

/* ============ FAQ ============ */
.tbs-faq { background: white; padding: 96px 0; font-family: var(--f-body); }
.tbs-faq-list { display: grid; gap: 6px; max-width: 820px; margin: 0 auto; }
.tbs-faq-item { background: var(--cream); border-radius: 14px; overflow: hidden; transition: background .2s; }
.tbs-faq-item.open { background: white; border: 1px solid var(--line); }
.tbs-faq-q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 22px; background: transparent; border: 0; outline: none;
  text-align: left; font-family: var(--f-display); font-weight: 600;
  font-size: 17px; color: var(--navy); cursor: pointer;
}
.tbs-faq-q:focus-visible { outline: 2px solid var(--navy); outline-offset: -2px; }
.tbs-faq-q .plus {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--navy); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0; margin-left: 12px;
  transition: transform .25s;
}
.tbs-faq-item.open .plus { transform: rotate(45deg); background: var(--yellow); color: var(--navy); }
.tbs-faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; color: var(--muted); font-size: 15px; line-height: 1.6; }
.tbs-faq-item.open .tbs-faq-a { max-height: 500px; }
.tbs-faq-a-inner { padding: 0 22px 22px; }

/* ============ CTA strip ============ */
.tbs-cta-section { background: var(--cream); padding: 60px 0; font-family: var(--f-body); }
.tbs-cta-box {
  background: var(--navy); color: white;
  border-radius: var(--radius-xl); padding: 56px;
  display: grid; grid-template-columns: 1.4fr auto; gap: 30px;
  align-items: center; box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.tbs-cta-box::before {
  content: ""; position: absolute; right: -100px; top: -100px;
  width: 360px; height: 360px;
  background: radial-gradient(closest-side, rgba(255,204,47,.18), transparent);
  pointer-events: none;
}
.tbs-cta-text { position: relative; }
.tbs-cta-text h2 {
  font-family: var(--f-display); font-size: 38px; margin-top: 14px; color: white;
  font-weight: 600; letter-spacing: -0.02em; line-height: 1.08;
}
.tbs-cta-text p { color: rgba(255,255,255,.75); font-size: 17px; line-height: 1.55; margin-top: 14px; max-width: 480px; }
.tbs-cta-actions { display: flex; flex-direction: column; gap: 12px; position: relative; }

/* ============ Footer ============ */
.tbs-footer { background: #08182f; color: rgba(255,255,255,.7); padding: 60px 0 30px; font-size: 15px; font-family: var(--f-body); }
.tbs-footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.tbs-footer-grid h5 {
  color: white; font-size: 13px; margin: 0 0 16px; letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 700; font-family: var(--f-body);
}
.tbs-footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.tbs-footer-grid a { color: inherit; text-decoration: none; }
.tbs-footer-grid a:hover { color: var(--yellow); }
.tbs-footer-bot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; font-size: 13px; color: rgba(255,255,255,.5);
}
.tbs-footer .tbs-logo-text .a { color: white; }
.tbs-footer .tbs-footer-blurb { color: rgba(255,255,255,.6); margin: 16px 0; max-width: 280px; font-size: 13px; }
.tbs-social-row { display: flex; gap: 10px; }
.tbs-social-row a {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.7);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: background .2s, color .2s;
}
.tbs-social-row a:hover { background: var(--yellow); color: var(--navy); }

/* ============ WhatsApp float ============ */
.tbs-wa-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  background: #25D366; color: white;
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px rgba(37,211,102,.45);
  transition: transform .15s; text-decoration: none;
}
.tbs-wa-float:hover { transform: scale(1.06); }
.tbs-wa-float::after {
  content: "WhatsApp Sass"; position: absolute; right: 72px; top: 50%;
  transform: translateY(-50%);
  background: white; color: var(--navy);
  padding: 8px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 600;
  white-space: nowrap; box-shadow: var(--shadow-sm);
  opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s;
}
.tbs-wa-float:hover::after { opacity: 1; transform: translateY(-50%) translateX(-4px); }

/* ============ Page hero (subpages) ============ */
.tbs-page-hero {
  background: var(--navy); color: white;
  padding: 72px 0 84px; position: relative; overflow: hidden;
  font-family: var(--f-body);
}
.tbs-page-hero::after {
  content: ""; position: absolute; right: -120px; top: -120px;
  width: 460px; height: 460px;
  background: radial-gradient(closest-side, rgba(255,204,47,.16), transparent);
  pointer-events: none;
}
.tbs-page-hero h1 {
  font-family: var(--f-display);
  font-size: clamp(40px, 4.8vw, 64px); font-weight: 600;
  max-width: 920px; letter-spacing: -0.02em; line-height: 1.08;
}
.tbs-page-hero h1 .accent { color: var(--yellow); font-style: italic; font-weight: 500; }
.tbs-page-hero .lead {
  margin-top: 22px; color: rgba(255,255,255,.78);
  font-size: 18px; max-width: 640px; line-height: 1.55;
}
.tbs-page-hero .hero-actions { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }

/* ============================================================
   Mobile menu (burger + drawer) — injected by tbs-site.js
   ============================================================ */
.burger {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  color: white;
  cursor: pointer;
  transition: background .2s;
  padding: 0;
}
.burger:hover { background: rgba(255,255,255,.14); }
.burger svg { width: 22px; height: 22px; }

.mobile-drawer {
  position: fixed; inset: 0;
  background: var(--navy);
  z-index: 100;
  display: none;
  flex-direction: column;
  padding: 20px 0 30px;
  overflow-y: auto;
  animation: drawerIn .25s ease;
}
.mobile-drawer.open { display: flex; }
@keyframes drawerIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

.mobile-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px 22px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-drawer-head .tbs-logo { color: white; }
.drawer-close {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  color: white;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  padding: 0;
}
.drawer-close:hover { background: rgba(255,255,255,.14); }

.mobile-drawer-links {
  display: flex; flex-direction: column;
  padding: 16px 24px 0;
  gap: 2px;
}
.mobile-drawer-links a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 4px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.9);
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color .2s, padding .2s;
  text-decoration: none;
}
.mobile-drawer-links a:hover,
.mobile-drawer-links a.active { color: var(--yellow); padding-left: 8px; }
.mobile-drawer-links a::after {
  content: "→";
  font-family: var(--f-body);
  font-size: 18px;
  opacity: .35;
}

.mobile-drawer-foot {
  margin-top: auto;
  padding: 24px;
  display: grid; gap: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.mobile-drawer-foot .dcontact {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,.75);
  font-size: 15px;
  padding: 8px 0;
  text-decoration: none;
}
.mobile-drawer-foot .dcontact svg { color: var(--yellow); flex-shrink: 0; }

body.menu-open { overflow: hidden; }

/* ============================================================
   Force common inline 2/3-col grids to stack on mobile.
   !important overrides inline styles.
   ============================================================ */
@media (max-width: 800px) {
  [style*="grid-template-columns: 1.4fr auto"],
  [style*="grid-template-columns: repeat(3, 1fr)"],
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns: 0.9fr 1fr"],
  [style*="grid-template-columns: 1.6fr 1fr"],
  [style*="grid-template-columns: 1fr 1.6fr"],
  [style*="grid-template-columns: 1fr 1.2fr"],
  [style*="grid-template-columns: 1.2fr 1fr"],
  [style*="grid-template-columns: repeat(2, 1fr)"],
  [style*="grid-template-columns: 56px 1fr"],
  [style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: 1fr !important;
  }
  [style*="border-radius: var(--radius-xl)"][style*="padding: 56px"] {
    padding: 32px 24px !important;
  }
  [style*="padding: 40px"][style*="border-radius: var(--radius-xl)"] {
    padding: 28px 24px !important;
  }
  [style*="padding: 36px"][style*="border-radius: var(--radius-lg)"] {
    padding: 24px 20px !important;
  }
}

/* ============ Responsive ============ */
@media (max-width: 1000px) {
  .tbs-hero-grid { grid-template-columns: 1fr; gap: 40px; padding-top: 32px; padding-bottom: 64px; }
  .tbs-date-grid { grid-template-columns: 1fr; }
  .tbs-reviews-grid { grid-template-columns: 1fr; }
  .tbs-usp-grid { grid-template-columns: repeat(2, 1fr); }
  .tbs-usp-cell:nth-child(2) { border-right: 0; }
  .tbs-cta-box { grid-template-columns: 1fr; padding: 40px; }
  .tbs-footer-grid { grid-template-columns: 1fr 1fr; }
  .tbs-nav-links { display: none !important; }
  .tbs-topbar-right { display: none; }
  .burger { display: inline-flex; }
}

@media (max-width: 800px) {
  /* USP strip: clean 2×2 with proper borders */
  .tbs-usp-grid { gap: 0; }
  .tbs-usp-cell {
    border-right: 1px solid var(--line) !important;
    border-bottom: 1px solid var(--line);
    padding: 18px 16px;
  }
  .tbs-usp-cell:nth-child(2n) { border-right: 0 !important; }
  .tbs-usp-cell:nth-last-child(-n+2):nth-child(odd),
  .tbs-usp-cell:last-child { border-bottom: 0; }

  .tbs-hero-card-sticker { width: 76px; height: 76px; font-size: 12px; top: -10px; right: -10px; }

  .tbs-topbar { font-size: 12px; }
  .tbs-topbar-inner { padding-top: 6px; padding-bottom: 6px; }

  .tbs-page-hero { padding: 48px 0 56px; }
}

@media (max-width: 600px) {
  .tbs-nav { padding-top: 14px; padding-bottom: 14px; }
  .tbs-hero-stats { grid-template-columns: 1fr 1fr; }
  .tbs-footer-grid { grid-template-columns: 1fr; }
  .tbs-reviews-summary { gap: 24px; }
  .tbs-cta-box { padding: 28px; }
  .tbs-container, .tbs-container-narrow { padding-left: 18px; padding-right: 18px; }
}

@media (max-width: 520px) {
  .tbs-usp-grid { grid-template-columns: 1fr; }
  .tbs-usp-cell {
    border-right: 0 !important;
    border-bottom: 1px solid var(--line) !important;
  }
  .tbs-usp-cell:last-child { border-bottom: 0 !important; }
  .tbs-date-grid { grid-template-columns: 1fr !important; }
  .tbs-hero h1 { font-size: clamp(38px, 9vw, 56px); }
}

@media (max-width: 480px) {
  .tbs-nav .tbs-cta-row .tbs-btn-primary { display: none; }
}

@media (max-width: 380px) {
  .tbs-container, .tbs-container-narrow { padding-left: 14px; padding-right: 14px; }
  .tbs-logo-text .b { display: none; }
  .tbs-nav { padding-top: 12px; padding-bottom: 12px; }
  .tbs-cta-row { gap: 6px; }
}

/* ============ Navigation block overrides ============ */
.tbs-nav-links.wp-block-navigation { gap: 0; color: rgba(255,255,255,.86); }
.tbs-nav-links .wp-block-navigation__container {
  display: flex; gap: 4px; align-items: center;
  flex-wrap: nowrap; list-style: none; padding: 0; margin: 0;
}
.tbs-nav-links .wp-block-navigation-item__content {
  padding: 9px 14px !important; border-radius: 999px;
  font-size: 15px !important; font-weight: 500;
  color: rgba(255,255,255,.86) !important;
  transition: background .2s, color .2s; text-decoration: none;
}
.tbs-nav-links .wp-block-navigation-item:hover .wp-block-navigation-item__content {
  background: rgba(255,255,255,.08); color: white !important;
}
.tbs-nav-links .wp-block-navigation-item[aria-current="page"] .wp-block-navigation-item__content,
.tbs-nav-links .current-menu-item .wp-block-navigation-item__content {
  background: rgba(255,255,255,.12); color: white !important;
}
/* wp:list in footer */
.tbs-footer-grid .wp-block-list { list-style: none; padding-left: 0; }
/* wp:heading in footer */
.tbs-footer-grid .wp-block-heading {
  color: white; font-size: 13px; margin: 0 0 16px; letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 700; font-family: var(--f-body);
}
/* wp:paragraph margin reset in groups */
.tbs-topbar-left p, .tbs-topbar-right p { margin: 0; }

/* ============ Method grid (De cursus) ============ */
.tbs-method-section { background: white; padding: 96px 0; font-family: var(--f-body); }
.tbs-method-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  margin-top: 60px;
}
.tbs-method-card {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 32px;
}
.tbs-method-num {
  font-family: var(--f-mono); font-size: 13px; font-weight: 600;
  color: var(--yellow-2); letter-spacing: 0.1em; margin-bottom: 14px;
}
.tbs-method-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 12px; color: var(--navy); }
.tbs-method-card p  { color: var(--muted); font-size: 15px; line-height: 1.6; margin: 0; }

.tbs-compare {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  background: var(--navy); border-radius: var(--radius-lg);
  padding: 38px; margin-top: 48px; color: white;
}
.tbs-compare-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.tbs-compare-col li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; line-height: 1.5; color: rgba(255,255,255,.85); }
.tbs-compare-us h4   { color: var(--yellow); font-size: 16px; font-weight: 700; margin-bottom: 22px; }
.tbs-compare-them h4 { color: rgba(255,255,255,.5); font-size: 16px; font-weight: 700; margin-bottom: 22px; }
.tbs-compare-them li { color: rgba(255,255,255,.5); }
.tbs-icon-yes {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--yellow); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.tbs-icon-no {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.5);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px; font-size: 15px; line-height: 1;
}

@media (max-width: 800px) {
  .tbs-method-grid { grid-template-columns: 1fr; }
  .tbs-compare { grid-template-columns: 1fr; }
}

/* ============ Schedule / Dagschema (De cursus) ============ */
.tbs-schedule-section {
  background: var(--navy); color: white;
  padding: 96px 0; font-family: var(--f-body);
}
.tbs-schedule-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: start;
}
.tbs-schedule-intro h3 {
  font-family: var(--f-display); font-size: clamp(24px, 3vw, 34px);
  font-weight: 600; margin: 16px 0 20px; color: white; letter-spacing: -0.02em;
}
.tbs-schedule-intro p { color: rgba(255,255,255,.75); font-size: 17px; line-height: 1.6; margin-bottom: 14px; }
.tbs-schedule-actions { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }

.tbs-schedule-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl); padding: 32px;
}
.tbs-timeline { display: grid; gap: 0; }
.tbs-t-item {
  display: flex; padding: 18px 0;
  border-bottom: 1px dashed rgba(255,255,255,.1);
}
.tbs-t-item:last-child { border-bottom: 0; padding-bottom: 0; }
.tbs-t-row { display: flex; gap: 16px; align-items: flex-start; width: 100%; }
.tbs-t-time {
  min-width: 58px; font-family: var(--f-mono); font-size: 12px;
  color: var(--yellow); font-weight: 600; letter-spacing: 0.04em;
  padding-top: 2px; flex-shrink: 0;
}
.tbs-t-done .tbs-t-time { color: rgba(255,255,255,.4); }
.tbs-t-title { font-weight: 600; font-size: 15px; color: white; margin-bottom: 4px; }
.tbs-t-desc  { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.5; }
.tbs-t-done .tbs-t-title,
.tbs-t-done .tbs-t-desc { color: rgba(255,255,255,.45); }

@media (max-width: 900px) {
  .tbs-schedule-grid { grid-template-columns: 1fr; }
}

/* ============ Pricing (De cursus) ============ */
.tbs-pricing-section { background: var(--cream); padding: 96px 0; font-family: var(--f-body); }
.tbs-pricing-grid {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 50px; align-items: center;
}
.tbs-pricing-card {
  background: white; border: 1px solid var(--line);
  border-radius: var(--radius-xl); padding: 40px;
  box-shadow: var(--shadow);
}
.tbs-pricing-badge {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--cream-2); color: var(--muted);
  padding: 4px 10px; border-radius: 999px; margin-bottom: 10px;
}
.tbs-pricing-label { display: block; font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 18px; }
.tbs-price-row { display: flex; align-items: baseline; gap: 4px; margin-bottom: 14px; }
.tbs-price-cur { font-family: var(--f-display); font-size: 28px; font-weight: 600; color: var(--navy); }
.tbs-price-num { font-family: var(--f-display); font-size: 68px; font-weight: 600; color: var(--navy); line-height: 1; }
.tbs-price-per { font-size: 15px; color: var(--muted); margin-left: 6px; }
.tbs-pricing-card .tbs-price-sub { font-size: 15px; color: var(--muted); line-height: 1.55; margin-bottom: 20px; padding-top: 14px; border-top: 1px solid var(--line); }
.tbs-price-extras { margin-bottom: 24px; border-top: 1px solid var(--line); padding-top: 14px; }
.tbs-price-extras-hd { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin: 0 0 10px; }
.tbs-price-extra-row { display: flex; justify-content: space-between; align-items: center; gap: 8px; padding: 8px 0; border-bottom: 1px dashed var(--line); font-size: 15px; color: var(--navy); }
.tbs-price-extra-row:last-child { border-bottom: none; padding-bottom: 0; }
.tbs-price-extra-amt { font-weight: 600; white-space: nowrap; }
.tbs-incl-list { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 12px; }
.tbs-incl-list li { display: flex; gap: 10px; align-items: center; font-size: 15px; }
.tbs-incl-check {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(47,148,102,.12); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.tbs-pricing-side { padding-top: 12px; }
.tbs-pricing-side h3 {
  font-family: var(--f-display); font-size: clamp(24px, 3vw, 34px);
  font-weight: 600; margin: 16px 0 20px; color: var(--navy); letter-spacing: -0.02em;
}
.tbs-pricing-side p { color: var(--muted); font-size: 17px; line-height: 1.6; margin-bottom: 18px; }
.tbs-pricing-quote {
  background: white; border-left: 3px solid var(--yellow);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px; margin-top: 28px;
  font-family: var(--f-display); font-size: 17px; font-style: italic;
  color: var(--navy); line-height: 1.5;
}
.tbs-pricing-quote cite {
  display: block; margin-top: 10px;
  font-family: var(--f-body); font-size: 13px; font-style: normal;
  color: var(--muted); font-weight: 600;
}

@media (max-width: 900px) {
  .tbs-pricing-grid { grid-template-columns: 1fr; }
}

/* ============ Personas (Voor wie) ============ */
.tbs-personas-section { background: var(--cream); padding: 96px 0; font-family: var(--f-body); }
.tbs-persona-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.tbs-persona-grid .tbs-persona:last-child:nth-child(odd) { grid-column: 1 / -1; }
.tbs-persona {
  background: white; border-radius: var(--radius-lg);
  padding: 36px; border: 1px solid var(--line);
  display: grid; grid-template-columns: 56px 1fr; gap: 20px;
  align-items: flex-start;
}
.tbs-persona-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--navy); color: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tbs-persona-body h3 { font-size: 24px; font-weight: 600; color: var(--navy); margin-top: 0; margin-bottom: 10px; letter-spacing: -0.01em; }
.tbs-persona-body p  { color: var(--muted); font-size: 15px; line-height: 1.6; margin-bottom: 18px; }
.tbs-persona-quote {
  margin-top: 0;
  border-left: 3px solid var(--yellow); padding: 4px 0 4px 16px;
  font-family: var(--f-display); font-style: italic;
  color: var(--navy); font-size: 17px; line-height: 1.5; margin: 0;
}
.tbs-persona-quote cite {
  display: block; margin-top: 8px; font-style: normal;
  font-family: var(--f-body); font-size: 12px; color: var(--muted); font-weight: 600;
}

.tbs-not-for-you {
  margin-top: 64px; background: white;
  border-radius: var(--radius-lg); border: 1px solid var(--line);
  padding: 36px;
}
.tbs-nfy-inner {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 36px; align-items: center;
}
.tbs-nfy-head h3 { font-size: 24px; font-weight: 600; margin-top: 14px; color: var(--navy); }
.tbs-nfy-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.tbs-nfy-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); font-size: 15px; line-height: 1.55; }
.tbs-nfy-x {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--cream-2); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px; font-size: 14px;
}

.tbs-personas-stats { background: white; padding: 96px 0; font-family: var(--f-body); }
.tbs-stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.tbs-stat-tile {
  background: white; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 28px;
}
.tbs-stat-num {
  font-family: var(--f-display); font-size: 48px; font-weight: 600;
  color: var(--navy); line-height: 1;
}
.tbs-stat-label { font-size: 13px; color: var(--muted); margin-top: 8px; line-height: 1.5; }

@media (max-width: 900px) {
  .tbs-persona-grid { grid-template-columns: 1fr; }
  .tbs-persona { grid-template-columns: 1fr; }
  .tbs-persona-icon { display: none; }
  .tbs-nfy-inner { grid-template-columns: 1fr; }
  .tbs-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .tbs-stats-grid { grid-template-columns: 1fr; }
}

/* ============ Contact cards ============ */
.tbs-contact-cards {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
  padding: 64px 0 32px; font-family: var(--f-body);
  max-width: 820px; margin-inline: auto;
}
.tbs-contact-card {
  background: white; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border .2s, transform .2s; text-decoration: none; color: inherit;
}
.tbs-contact-card:hover { border-color: var(--navy); transform: translateY(-2px); }
.tbs-contact-card.wa:hover { border-color: #25D366; }
.tbs-contact-card-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.tbs-contact-card-eyebrow {
  font-size: 12px; color: var(--muted); letter-spacing: 0.08em;
  text-transform: uppercase; font-weight: 600;
}
.tbs-contact-card h3 { font-size: 22px; font-weight: 600; margin: 6px 0 0; color: var(--navy); }
.tbs-contact-card p  { color: var(--muted); font-size: 15px; line-height: 1.5; margin: 8px 0 0; }
.tbs-contact-card-link {
  margin-top: auto; font-family: var(--f-mono); font-size: 13px;
  color: var(--navy); font-weight: 600;
}

/* ============ Contact form + locatie ============ */
.tbs-contact-main {
  background: var(--cream); padding: 32px 0 96px;
  font-family: var(--f-body);
}
.tbs-contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: stretch;
}
.tbs-contact-form-wrap {
  background: white; border-radius: var(--radius-xl); padding: 40px;
  box-shadow: var(--shadow); border: 1px solid var(--line);
}
.tbs-contact-form-wrap h2 { font-size: 28px; font-weight: 600; margin: 14px 0 8px; }
.tbs-contact-form-wrap > p { color: var(--muted); font-size: 15px; margin-bottom: 28px; }

.tbs-location-wrap { display: flex; flex-direction: column; gap: 18px; height: 100%; }
.tbs-location-wrap .tbs-location-card { flex: 1; }
.tbs-location-card {
  background: white; border-radius: var(--radius-xl); padding: 36px;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.tbs-location-card h2 { font-size: 24px; font-weight: 600; margin: 14px 0 8px; }
.tbs-location-card > p { color: var(--muted); font-size: 15px; margin-bottom: 22px; }
.tbs-map-placeholder {
  aspect-ratio: 16/10; border-radius: var(--radius); overflow: hidden;
  background: var(--cream-2); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 15px;
}
.tbs-map-embed {
  aspect-ratio: 16/10; border-radius: var(--radius); overflow: hidden;
}
.tbs-map-nav-btn {
  display: inline-block; margin-top: 14px;
  background: var(--navy); color: var(--yellow);
  padding: 9px 20px; border-radius: 999px;
  font-size: 13px; font-weight: 600; text-decoration: none;
}
.tbs-map-nav-btn:hover { background: var(--navy-2); color: var(--yellow); opacity: 1; }
.tbs-location-details { display: grid; gap: 14px; margin-top: 24px; }
.tbs-location-detail-item { display: flex; gap: 12px; align-items: center; font-size: 15px; }
.tbs-location-detail-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--cream-2); color: var(--navy);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.tbs-hours-card {
  background: var(--navy); color: white;
  border-radius: var(--radius-lg); padding: 28px;
  grid-column: 1 / -1; max-width: 820px; margin-inline: auto; width: 100%;
}
.tbs-hours-card h3 { font-size: 20px; font-weight: 600; margin-top: 12px; color: white; }
.tbs-hours-grid { display: grid; gap: 0; margin-top: 18px; font-size: 15px; }
.tbs-hours-row {
  display: flex; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px dashed rgba(255,255,255,.15);
}
.tbs-hours-row:last-child { border-bottom: 0; }
.tbs-hours-row .day   { color: rgba(255,255,255,.7); }
.tbs-hours-row .time  { font-weight: 600; }
.tbs-hours-row .off   { color: rgba(255,255,255,.4); }
.tbs-hours-note { font-size: 13px; color: rgba(255,255,255,.6); margin-top: 18px; line-height: 1.5; }

@media (max-width: 900px) {
  .tbs-contact-grid { grid-template-columns: 1fr; }
  .tbs-contact-cards { grid-template-columns: 1fr; }
  .tbs-hours-card { max-width: none; margin-inline: 0; width: auto; }
}

/* ============ CF7 form styling ============ */
.tbs-contact-form-wrap .wpcf7-form .form-row-2col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.tbs-contact-form-wrap .wpcf7-form p { margin-bottom: 16px; }
.tbs-contact-form-wrap .wpcf7-form label {
  display: block; font-size: 13px; font-weight: 600; color: var(--navy);
  margin-bottom: 6px;
}
.tbs-contact-form-wrap .wpcf7-form input,
.tbs-contact-form-wrap .wpcf7-form select,
.tbs-contact-form-wrap .wpcf7-form textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--f-body); font-size: 15px; color: var(--navy);
  background: var(--cream); box-sizing: border-box;
  transition: border .2s;
}
.tbs-contact-form-wrap .wpcf7-form input:focus,
.tbs-contact-form-wrap .wpcf7-form select:focus,
.tbs-contact-form-wrap .wpcf7-form textarea:focus {
  outline: none; border-color: var(--navy); background: white;
}
.tbs-contact-form-wrap .wpcf7-form input[type="submit"] {
  background: var(--navy); color: white;
  border-radius: 999px; font-weight: 600; font-size: 15px;
  padding: 16px 28px; border: none; cursor: pointer;
  transition: background .2s; width: auto;
}
.tbs-contact-form-wrap .wpcf7-form input[type="submit"]:hover { background: var(--navy-2); }
.tbs-contact-form-wrap .wpcf7-form span.wpcf7-form-control-wrap { display: block; }

/* ============ Bedankt pagina ============ */
.tbs-bedankt { font-family: var(--f-body); }

.tbs-bedankt-hero {
  background: var(--navy); color: white;
  padding: 64px 0 0; position: relative; overflow: hidden;
}
.tbs-bedankt-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 12% 22%, rgba(255,204,47,.16), transparent 14%),
    radial-gradient(circle at 88% 30%, rgba(255,204,47,.10), transparent 12%),
    radial-gradient(circle at 60% 60%, rgba(255,204,47,.08), transparent 14%);
}
.tbs-bedankt-inner {
  text-align: center; max-width: 700px; margin: 0 auto;
  padding: 36px 20px 56px; position: relative;
}
.tbs-bedankt-check {
  width: 92px; height: 92px; border-radius: 50%;
  background: var(--green); color: white;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
  box-shadow: 0 0 0 8px rgba(47,148,102,.18), 0 20px 50px rgba(47,148,102,.4);
}
.tbs-bedankt-inner h1 {
  font-family: var(--f-display); font-size: clamp(38px, 5vw, 60px);
  font-weight: 600; line-height: 1.08;
}
.tbs-accent { color: var(--yellow); font-style: italic; }
.tbs-bedankt-lead {
  color: rgba(255,255,255,.78); font-size: 18px;
  margin-top: 16px; line-height: 1.55;
}
.tbs-order-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.08);
  padding: 8px 16px; border-radius: 999px;
  font-family: var(--f-mono); font-size: 12px;
  color: var(--yellow); margin-top: 26px; letter-spacing: 0.05em;
}
.tbs-order-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(47,148,102,.3);
}

.tbs-recap-wrap { background: var(--cream); padding: 0 0 64px; }
.tbs-recap {
  max-width: 760px; margin: 0 auto;
  background: white; border-radius: var(--radius-xl);
  padding: 40px; box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  transform: translateY(-48px);
}
.tbs-recap h2 { font-size: 24px; font-weight: 600; margin-bottom: 4px; }
.tbs-recap-meta { font-size: 13px; color: var(--muted); margin-bottom: 24px; font-family: var(--f-mono); }
.tbs-recap-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 14px 0; border-bottom: 1px dashed var(--line); font-size: 15px;
}
.tbs-recap-row:last-of-type { border-bottom: 0; }
.tbs-recap-lbl { color: var(--muted); }
.tbs-recap-val { font-weight: 600; text-align: right; }
.tbs-recap-val small { font-weight: 400; color: var(--muted); display: block; margin-top: 2px; font-size: 12px; }
.tbs-recap-total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 22px; margin-top: 12px;
  border-top: 2px solid var(--ink);
}
.tbs-recap-total .tbs-recap-lbl { font-weight: 600; font-size: 16px; }
.tbs-recap-total .tbs-recap-val { font-family: var(--f-display); font-size: 32px; font-weight: 600; }
.tbs-recap-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }

.tbs-nextsteps { padding: 0 0 96px; background: var(--cream); }
.tbs-nextsteps-title { text-align: center; margin-bottom: 50px; }
.tbs-nextsteps-title h2 { font-family: var(--f-display); font-size: clamp(28px, 3vw, 40px); font-weight: 600; margin-top: 14px; }
.tbs-nextsteps-title p { color: var(--muted); margin-top: 12px; font-size: 16px; }
.tbs-ns-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.tbs-ns-step {
  background: white; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 26px;
}
.tbs-ns-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--cream-2); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.tbs-ns-num { font-family: var(--f-mono); font-size: 11px; color: var(--yellow-2); font-weight: 600; letter-spacing: 0.1em; }
.tbs-ns-when { font-size: 13px; color: var(--navy); font-weight: 600; margin-top: 6px; }
.tbs-ns-step h3 { font-size: 18px; margin: 12px 0 8px; font-weight: 600; }
.tbs-ns-step p  { color: var(--muted); font-size: 13.5px; line-height: 1.55; margin: 0; }
.tbs-ns-now {
  background: var(--navy); color: white; border-color: var(--navy);
}
.tbs-ns-now .tbs-ns-num  { color: var(--yellow); }
.tbs-ns-now .tbs-ns-when { color: var(--yellow); }
.tbs-ns-now .tbs-ns-icon { background: rgba(255,255,255,.1); color: var(--yellow); }
.tbs-ns-now h3  { color: white; }
.tbs-ns-now p   { color: rgba(255,255,255,.75); }

.tbs-bedankt-extra { background: white; padding: 64px 0; }
.tbs-bedankt-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.tbs-bedankt-info-card {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 28px;
  display: flex; gap: 14px; align-items: flex-start;
}
.tbs-bedankt-info-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--navy); color: var(--yellow);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.tbs-bedankt-info-card h4 { font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.tbs-bedankt-info-card p  { font-size: 15px; color: var(--muted); line-height: 1.5; margin-bottom: 12px; }
.tbs-bedankt-info-card a  { font-size: 13px; color: var(--navy); font-weight: 600; text-decoration: underline; }
.tbs-bedankt-share {
  margin-top: 32px; text-align: center; padding: 28px;
  background: var(--cream); border-radius: var(--radius-lg); border: 1px dashed var(--line);
}
.tbs-bedankt-share p { font-size: 15px; color: var(--muted); margin-bottom: 14px; }
.tbs-bedankt-share-btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 800px) {
  .tbs-ns-grid { grid-template-columns: 1fr 1fr; }
  .tbs-recap { padding: 28px 24px; transform: translateY(-32px); }
  .tbs-recap-actions { grid-template-columns: 1fr; }
  .tbs-bedankt-info-grid { grid-template-columns: 1fr; }
}
@media (max-width: 500px) {
  .tbs-ns-grid { grid-template-columns: 1fr; }
}

/* ============ tbs/resultaat ============ */
.tbs-resultaat { background: white; padding: 96px 0; font-family: var(--f-body); }
.tbs-resultaat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 980px; margin: 0 auto;
}
.tbs-resultaat-card {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 30px;
}
.tbs-resultaat-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--navy); color: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.tbs-resultaat-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.tbs-resultaat-card p  { color: var(--muted); font-size: 15px; line-height: 1.6; margin: 0; }

@media (max-width: 800px) {
  .tbs-resultaat-grid { grid-template-columns: 1fr; }
}

/* ============ tbs/over-sass ============ */
.tbs-over-sass { background: var(--navy); padding: 96px 0; font-family: var(--f-body); }
.tbs-about-grid {
  display: grid; grid-template-columns: 0.9fr 1fr; gap: 60px; align-items: center;
}
.tbs-about-photo { position: relative; aspect-ratio: 4/5; }
.tbs-about-photo-img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--radius-xl); display: block;
}
.tbs-photo-placeholder {
  aspect-ratio: 4/5; border-radius: var(--radius-xl);
  background: rgba(255,255,255,.07); border: 2px dashed rgba(255,255,255,.2);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; color: rgba(255,255,255,.5); font-size: 15px; text-align: center; padding: 24px;
}
.tbs-photo-placeholder-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.6);
  display: flex; align-items: center; justify-content: center; margin-bottom: 6px;
}
.tbs-photo-placeholder strong { color: rgba(255,255,255,.75); font-size: 16px; }
.tbs-photo-tag {
  position: absolute; bottom: -14px; left: 50%; transform: translateX(-50%);
  background: var(--yellow); color: var(--navy); font-size: 12px; font-weight: 700;
  padding: 6px 14px; border-radius: 999px; white-space: nowrap;
  display: flex; align-items: center; gap: 6px;
}
.tbs-about-text { color: white; }
.tbs-about-text h2 { color: white; font-size: clamp(34px, 3.5vw, 46px); font-weight: 600; margin-top: 16px; margin-bottom: 16px; }
.tbs-about-text p  { color: rgba(255,255,255,.74); font-size: 17px; line-height: 1.65; margin-bottom: 14px; }
.tbs-eyebrow-yellow { background: rgba(255,255,255,.1); color: var(--yellow); }
.tbs-signature {
  font-family: var(--f-display); font-size: 22px; font-style: italic;
  color: var(--yellow); margin-top: 22px;
}
.tbs-about-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.tbs-btn-ghost { background: transparent; color: white; border-color: rgba(255,255,255,.25); }
.tbs-btn-ghost:hover { border-color: rgba(255,255,255,.55); color: white; }

@media (max-width: 800px) {
  .tbs-about-grid { grid-template-columns: 1fr; gap: 40px; }
  .tbs-about-photo { aspect-ratio: 3/2; }
  .tbs-photo-placeholder { aspect-ratio: 3/2; }
}

/* ============ tbs/vergroot-kans ============ */
.tbs-vergroot-kans { background: white; padding: 96px 0; font-family: var(--f-body); }
.tbs-vk-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  max-width: 920px; margin: 0 auto;
}
.tbs-vk-card {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
}
.tbs-vk-card-top { display: flex; align-items: center; justify-content: space-between; }
.tbs-vk-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--navy); color: var(--yellow);
  display: flex; align-items: center; justify-content: center;
}
.tbs-vk-price { font-family: var(--f-display); font-weight: 600; font-size: 22px; color: var(--navy); }
.tbs-vk-card h3 { font-size: 21px; font-weight: 600; margin: 0; }
.tbs-vk-card p  { color: var(--muted); font-size: 15px; line-height: 1.6; margin: 0; }
.tbs-vk-footer { text-align: center; margin-top: 32px; }

@media (max-width: 800px) {
  .tbs-vk-grid { grid-template-columns: 1fr; }
}

/* ============ Boeken tijdelijk bericht ============ */
.tbs-boeken-notice {
  background: white; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 28px 36px;
  margin: 0 auto; max-width: 680px;
  display: flex; gap: 18px; align-items: flex-start;
  font-family: var(--f-body);
}
.tbs-boeken-notice-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--cream-2); color: var(--navy);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.tbs-boeken-notice h3 { font-size: 18px; font-weight: 600; margin-bottom: 6px; }
.tbs-boeken-notice p  { color: var(--muted); font-size: 15px; line-height: 1.6; margin: 0 0 14px; }
.tbs-boeken-notice-links { display: flex; gap: 10px; flex-wrap: wrap; }

/* ============ Amelia — TBS brand ============ */
/* ── tbs-book-layout ─────────────────────────────────────────── */
.tbs-book-layout { background: var(--cream); padding: 64px 0 96px; font-family: var(--f-body); }
.tbs-book-grid { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
.tbs-book-main { min-width: 0; }

/* Sidebar */
.tbs-book-sidebar { background: white; border: 1px solid var(--line); border-radius: 16px; padding: 28px; position: sticky; top: 100px; }
.tbs-book-sidebar-title { font-family: var(--f-head); font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 14px; }

/* Price row */
.tbs-book-price-row { display: flex; justify-content: space-between; align-items: baseline; padding: 12px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 0; }
.tbs-book-sidebar .tbs-price-extras { border-top: none; padding-top: 12px; margin-bottom: 18px; }
.tbs-book-price-label { font-size: 15px; color: var(--ink); }
.tbs-book-price-val { font-family: var(--f-head); font-size: 20px; font-weight: 700; color: var(--navy); }

/* Inclusief-lijst */
.tbs-book-incl { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 9px; }
.tbs-book-incl li { display: flex; gap: 9px; align-items: flex-start; font-size: 13.5px; color: var(--ink); line-height: 1.4; }
.tbs-book-incl svg { flex-shrink: 0; margin-top: 1px; }

/* Mini tijdlijn */
.tbs-book-timeline-label { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin: 0 0 10px; }
.tbs-book-timeline { list-style: none; padding: 0 0 0 14px; margin: 0; border-left: 2px solid var(--line); display: grid; gap: 2px; }
.tbs-book-timeline li { display: flex; gap: 10px; align-items: baseline; padding: 4px 0; position: relative; }
.tbs-book-timeline li::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: white; border: 2px solid var(--navy); position: absolute; left: -19px; top: 7px; flex-shrink: 0; }
.tbs-tl-time { font-size: 11px; font-weight: 700; color: var(--muted); min-width: 34px; flex-shrink: 0; }
.tbs-tl-event { font-size: 13px; color: var(--ink); line-height: 1.35; }
.tbs-book-timeline li:last-child .tbs-tl-event { color: var(--navy); font-weight: 600; }

@media (max-width: 768px) {
  .tbs-book-grid { grid-template-columns: 1fr; }
  .tbs-book-sidebar { position: static; }
}

/* Target both the Vue mount point and the form container (which gets inline-style vars) */
#amelia-app,
#amelia-container,
.am-fs__wrapper {
  font-family: var(--f-body) !important;
  --am-font-family:          "Manrope", system-ui, sans-serif !important;

  /* Accent — yellow (calendar sel., progress, selected states) */
  --am-c-primary:            var(--yellow)           !important;
  --am-c-primary-op05:       rgba(255,204,47,.05)    !important;
  --am-c-primary-op10:       rgba(255,204,47,.10)    !important;

  /* Primary button: yellow + navy text (matches TBS CTA) */
  --am-c-btn-prim:           var(--yellow)           !important;
  --am-c-btn-prim-text:      var(--navy)             !important;

  /* Secondary button: navy */
  --am-c-btn-sec:            var(--navy)             !important;
  --am-c-btn-sec-text:       #ffffff                 !important;

  /* Sidebar step-progress panel */
  --am-c-sb-bgr:             var(--navy)             !important;
  --am-c-sb-text:            #ffffff                 !important;

  /* Main form area */
  --am-c-main-bgr:           #ffffff                 !important;
  --am-c-main-heading-text:  var(--navy)             !important;
  --am-c-main-text:          var(--navy)             !important;
  --am-c-main-text-op70:     rgba(12,37,69,.70)      !important;

  /* Inputs */
  --am-c-inp-bgr:            #ffffff                 !important;
  --am-c-inp-border:         var(--line)             !important;
  --am-c-inp-text:           var(--navy)             !important;
  --am-c-inp-placeholder:    var(--muted)            !important;

  /* Dropdowns */
  --am-c-drop-bgr:           #ffffff                 !important;
  --am-c-drop-text:          var(--navy)             !important;

  /* Payment step */
  --am-c-pay-primary:        var(--yellow)           !important;
  --am-c-pay-text:           var(--navy)             !important;
  --am-c-pay-success:        var(--green)            !important;

  /* Status colours */
  --am-c-success:            var(--green)            !important;
  --am-c-error:              var(--red)              !important;
}

/* Pill-shaped buttons to match TBS style */
#amelia-app button.am-button,
#amelia-app .am-button {
  border-radius: 999px !important;
  font-weight: 600 !important;
  font-family: var(--f-body) !important;
}

/* ============ tbs/events-list — cursusdata boekpagina ============ */
.tbs-events-list { padding-block: 64px 96px; }

.tbs-events-list .tbs-book-main {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.tbs-el-intro { margin-bottom: 24px; }
.tbs-el-heading { font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.tbs-el-subtext { font-size: 15px; color: var(--muted); line-height: 1.55; }

.tbs-el-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 12px;
}

.tbs-el-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .15s, box-shadow .15s;
}
.tbs-el-card:not(.tbs-el-card--full):hover {
  border-color: var(--navy);
  box-shadow: var(--shadow);
}
.tbs-el-card--full { opacity: .6; }

.tbs-el-date {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.tbs-el-day-name {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
}
.tbs-el-day-num {
  font-family: var(--f-display);
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1;
  color: var(--navy);
}
.tbs-el-month {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
}

.tbs-el-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.tbs-el-time {
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 500;
}

.tbs-el-spots {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  align-self: flex-start;
}
.tbs-el-spots--ok   { background: rgba(47,148,102,.1);  color: var(--green); }
.tbs-el-spots--low  { background: rgba(245,187,18,.18); color: #8a5f00; }
.tbs-el-spots--full { background: rgba(92,107,130,.1);  color: var(--muted); }

.tbs-el-btn {
  width: 100%;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  font-family: var(--f-body);
  background: var(--navy);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background .15s;
  text-align: center;
}
.tbs-el-btn:hover:not(:disabled) { background: var(--navy-2); }
.tbs-el-btn--disabled,
.tbs-el-btn:disabled {
  background: var(--line-2);
  color: var(--muted);
  cursor: not-allowed;
}

.tbs-el-empty {
  color: var(--muted);
  text-align: center;
  padding: 48px 0;
}
.tbs-el-empty a { color: var(--navy); font-weight: 600; }

.tbs-book-annul {
  margin-top: 20px;
  padding: 14px 16px;
  background: var(--cream);
  border-radius: 10px;
  border-left: 3px solid var(--yellow);
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.55;
}
.tbs-book-annul strong {
  display: block;
  font-size: 13px;
  color: var(--navy);
  margin-bottom: 3px;
}

@media (max-width: 480px) {
  .tbs-el-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   RBS · Onepager layout fixes
   ============================================================ */

/* ── 1. Topbar: wp-block-html wrappers transparant in flex ── */
.tbs-topbar .wp-block-html { display: contents; }

/* ── 1b. Topbar: is-layout-flow voegt margin-block-start toe aan 2e child ── */
.tbs-topbar .is-layout-flow > * + * { margin-block-start: 0 !important; }

/* ── 1c. Verwijder block-gap tussen header / main / footer en binnenin post-content ── */
.wp-site-blocks > * + * { margin-block-start: 0 !important; }
main.wp-block-group { margin-block: 0 !important; }
.wp-block-post-content.is-layout-flow > * + * { margin-block-start: 0 !important; }

/* (old Gutenberg layout rules removed after block refactor) */

/* ============================================================
   RBS · Custom blocks
   ============================================================ */

/* ── Shared container ────────────────────────────────────── */
.rbs-hero__inner,
.rbs-werkwijze__inner,
.rbs-contact__inner,
.rbs-value-props__grid,
.rbs-tarieven__inner {
  max-width: 1240px;
  margin-inline: auto;
  box-sizing: border-box;
}

/* ── rbs/hero ────────────────────────────────────────────── */
.rbs-hero {
  position: relative;
  min-height: 500px;
  aspect-ratio: 20/9;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-bottom: -120px;
}
.rbs-hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 40% 50%;
  z-index: 0;
}
.rbs-hero__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.2);
  z-index: 1;
}
.rbs-hero__inner {
  position: relative; z-index: 2;
  display: flex; align-items: flex-end;
  gap: 40px; padding-bottom: 160px;
  padding-inline: 28px;
  width: 100%;
}
.rbs-hero__left { flex: 1; }
.rbs-hero__right { flex: 1; text-align: right; }
.rbs-hero__heading {
  font-family: var(--f-display);
  font-size: clamp(34px, 5vw, 72px);
  font-weight: 700; color: white;
  letter-spacing: -.025em; line-height: 1.08;
  text-shadow: 0 2px 14px rgba(0,0,0,.72), 0 0 40px rgba(0,0,0,.28);
  margin: 0;
}
.rbs-hero__location {
  color: rgba(255,255,255,.9); font-size: 18px; font-weight: 600; margin: 4px 0 0;
  text-shadow: 0 1px 8px rgba(0,0,0,.6);
}
.rbs-hero__subheading {
  font-family: var(--f-display);
  font-size: clamp(22px, 3vw, 46px);
  font-weight: 600; color: white;
  text-shadow: 0 2px 14px rgba(0,0,0,.72);
  line-height: 1.1; margin: 0 0 6px;
}
.rbs-hero__tagline {
  color: rgba(255,255,255,.9); font-size: 16px; font-weight: 600; margin: 0 0 24px;
  text-shadow: 0 1px 8px rgba(0,0,0,.6);
}
.rbs-hero__actions {
  display: flex; gap: 12px; justify-content: flex-end;
}
.rbs-btn {
  display: inline-block; padding: 14px 28px;
  border-radius: 999px; font-weight: 700; font-size: 15px;
  text-decoration: none; line-height: 1; transition: opacity .15s;
  white-space: nowrap;
}
.rbs-btn:hover { opacity: .88; }
.rbs-btn-primary { background: var(--yellow); color: var(--navy); }
.rbs-btn-ghost {
  background: rgba(255,255,255,.15); color: white;
  border: 1.5px solid rgba(255,255,255,.6);
  backdrop-filter: blur(4px);
}

/* ── rbs/value-props ─────────────────────────────────────── */
.rbs-value-props {
  position: relative; z-index: 10;
  padding-inline: max(28px, calc((100vw - 1240px) / 2));
  padding-bottom: 60px;
  background: transparent;
}
.rbs-value-props__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.rbs-card {
  background: white; border-radius: var(--radius-lg);
  box-shadow: 0 6px 28px rgba(12,37,69,.14), 0 1px 4px rgba(12,37,69,.07);
  padding: 32px;
}
.rbs-card h4 {
  font-family: var(--f-display); font-size: 20px; font-weight: 700;
  color: var(--navy); margin: 0 0 12px; text-align: left;
}
.rbs-card p { color: var(--muted); font-size: 15px; line-height: 1.65; margin: 0; }

/* ── rbs/werkwijze ───────────────────────────────────────── */
.rbs-werkwijze { padding-block: 80px; }
.rbs-werkwijze__inner {
  padding-inline: 28px;
}
.rbs-werkwijze__heading {
  font-family: var(--f-display); font-size: clamp(32px, 4vw, 52px);
  color: var(--navy); letter-spacing: -.025em; font-weight: 700;
  line-height: 1.08; padding-bottom: 48px; text-align: center; margin: 0;
}
.rbs-werkwijze__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.rbs-werkwijze__photo-card {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow); padding: 32px;
  background: white;
}
.rbs-werkwijze__photo-card h4 {
  font-family: var(--f-display); color: var(--navy);
  font-size: 18px; font-weight: 700; margin: 0 0 8px;
}
.rbs-werkwijze__photo-card p { color: var(--muted); font-size: 15px; margin: 0 0 16px; }
.rbs-werkwijze__photo-card img { width: 100%; border-radius: var(--radius-lg); display: block; }
.rbs-werkwijze__list {
  list-style: none; padding: 0; margin: 0; margin-left: 40px;
  display: flex; flex-direction: column; gap: 6px;
  align-self: center;
}
.rbs-werkwijze__list li {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 18px; background: var(--cream); border-radius: 10px;
  font-size: 16px; color: var(--navy); font-weight: 500;
}
.rbs-werkwijze__list li::before {
  content: "";
  width: 22px; height: 22px; min-width: 22px; border-radius: 50%;
  background: rgba(47,148,102,.14) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232f9466' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/12px no-repeat;
}

/* ── rbs/tarieven ────────────────────────────────────────── */
.rbs-tarieven {
  background: var(--navy);
  padding-block: 80px;
}
.rbs-tarieven__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
  padding-inline: 28px;
}
.rbs-tarieven__photo { margin: 0; }
.rbs-tarieven__photo img {
  width: 100%; height: auto; display: block;
  border-radius: var(--radius-xl); object-fit: cover;
}
.rbs-tarieven__card {
  background: white; border-radius: var(--radius-xl);
  padding: 36px; box-shadow: var(--shadow-lg);
}
.rbs-tarieven__card-title {
  font-family: var(--f-display); font-weight: 700; font-size: 20px;
  color: var(--navy); text-align: center; margin: 0 0 20px;
}
.rbs-tarieven__table { width: 100%; border-collapse: collapse; }
.rbs-tarieven__table td {
  padding: 10px 0; border: none;
  border-bottom: 1px dashed var(--line); font-size: 15px; color: var(--navy);
  background: none;
}
.rbs-tarieven__table td:last-child { font-weight: 700; text-align: right; }
.rbs-tarieven__caption { font-size: 12px; color: var(--muted); margin: 8px 0 0; }
.rbs-tarieven__voorwaarden-title {
  font-weight: 600; margin: 16px 0 4px; color: var(--navy); font-size: 15px;
}
.rbs-tarieven__voorwaarden {
  margin: 0; padding-left: 20px;
}
.rbs-tarieven__voorwaarden li { font-size: 13px; color: var(--muted); }

/* ── rbs/contact ─────────────────────────────────────────── */
.rbs-contact {
  position: relative; min-height: 680px;
  display: flex; align-items: center;
  margin-bottom: 0;
}
.rbs-contact__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.rbs-contact__overlay {
  position: absolute; inset: 0;
  background: transparent; z-index: 1;
}
.rbs-contact__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start;
  padding-block: 80px;
  padding-inline: 28px;
  width: 100%;
}
.rbs-contact__left { padding-top: 60px; }
.rbs-contact__left h3 {
  color: var(--navy); font-family: var(--f-display);
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 700; line-height: 1.2; margin: 0 0 16px;
}
.rbs-contact__left p {
  color: var(--navy); font-size: 17px; font-weight: 500; margin: 0;
}
.rbs-contact__left a { color: var(--navy); }
.rbs-contact__card {
  background: rgba(255,255,255,.97); border-radius: var(--radius-xl);
  padding: 36px; box-shadow: 0 20px 60px rgba(0,0,0,.22);
}
.rbs-contact .wpcf7-form input:not([type="submit"]),
.rbs-contact .wpcf7-form textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--f-body); font-size: 15px;
  color: var(--navy); background: var(--cream);
  box-sizing: border-box; margin-bottom: 8px; display: block;
}
.rbs-contact .wpcf7-form input[type="submit"] {
  background: var(--navy); color: white;
  border-radius: 999px; font-weight: 600;
  padding: 14px 28px; border: none; cursor: pointer; width: 100%;
  font-family: var(--f-body); font-size: 15px; display: block;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .rbs-hero { margin-bottom: 0; aspect-ratio: auto; min-height: 420px; align-items: stretch; }
  .rbs-hero__inner { padding-top: 40px; padding-bottom: 24px; flex-direction: column; align-items: flex-start; justify-content: space-between; gap: 0; }
  .rbs-hero__right { text-align: left; flex: unset; }
  .rbs-hero__actions { justify-content: flex-start; }
  .rbs-hero__actions .rbs-btn { text-align: center; }
  .rbs-value-props { padding-top: 24px; padding-bottom: 48px; background: var(--navy); }
  .rbs-value-props__grid { grid-template-columns: 1fr; }
  .rbs-werkwijze__grid { grid-template-columns: 1fr; gap: 32px; }
  .rbs-werkwijze__list { order: 1; margin-left: auto; margin-right: auto; width: 100%; }
  .rbs-werkwijze__photo-card { order: 2; }
  .rbs-tarieven__inner { grid-template-columns: 1fr; }
  .rbs-contact__inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .rbs-werkwijze__inner { padding-inline: 20px; }
  .rbs-tarieven__inner { padding-inline: 20px; }
  .rbs-tarieven__photo { margin-top: -80px; margin-inline: -20px; }
  .rbs-tarieven__photo img { border-radius: 0; }
  .rbs-contact__card { padding: 24px; }
  .rbs-contact__inner { padding-inline: 20px; }
  .rbs-contact__left { padding-top: 0; text-align: center; }
  .rbs-value-props { padding-inline: 20px; }
}

