/* ============================================================
   JT Onderhoud & Klussen — front-end stylesheet
   Alle opmaak zit hier (classes). Geen inline CSS in de HTML.
   ============================================================ */

:root {
  --navy:  #00223E;
  --mid:   #07335A;
  --line:  #1C4570;
  --line2: #173A5C;
  --ink:   #F4F5F7;
  --sub:   #C7CDD6;
  --muted: #9AA3B0;
}

/* ---------- Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--navy); color: var(--ink); font-family: 'Manrope', system-ui, sans-serif; -webkit-font-smoothing: antialiased; }
::selection { background: #fff; color: var(--navy); }
img { display: block; }
input, textarea, select, button { font-family: inherit; }
input::placeholder, textarea::placeholder { color: #5E7088; }
a { transition: color .2s; }
.icon { display: block; flex: 0 0 auto; color: #fff; }

@keyframes jtfloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes jtfadeup { from { transform: translateY(18px); } to { transform: none; } }
[data-reveal] { animation: jtfadeup .65s cubic-bezier(.2,.7,.2,1) both; }

/* ---------- Header ---------- */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; }
.header-inner { position: relative; max-width: 1240px; margin: 0 auto; padding: 18px 28px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.header-bg { position: absolute; inset: 0; transition: all .35s ease; pointer-events: none; background-color: transparent; border-bottom: 1px solid transparent; }
.site-header.scrolled .header-bg { background-color: rgba(0,34,62,.93); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); box-shadow: 0 10px 30px rgba(0,0,0,.4); }
.site-brand { display: flex; align-items: center; gap: 13px; text-decoration: none; color: var(--ink); }
.site-brand__logo { width: 50px; height: 50px; object-fit: contain; flex: none; }
.site-brand__text { display: flex; flex-direction: column; line-height: 1.15; white-space: nowrap; }
.site-brand__name { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 16px; letter-spacing: .3px; }
.site-brand__sub { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted); margin-top: 2px; }
.desktop-nav { display: flex; align-items: center; gap: 30px; }
.nav-link { color: var(--sub); text-decoration: none; font-size: 14.5px; font-weight: 600; letter-spacing: .2px; }
.nav-link:hover { color: #fff; }
.desktop-cta { display: flex; align-items: center; gap: 18px; }
.site-phone { color: var(--ink); text-decoration: none; font-weight: 700; font-size: 14.5px; white-space: nowrap; }
.mobile-hamburger { display: none; background: rgba(255,255,255,.06); border: 1px solid var(--line); width: 48px; height: 48px; border-radius: 10px; align-items: center; justify-content: center; cursor: pointer; color: var(--ink); }

/* ---------- Knoppen ---------- */
.btn { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; border-radius: 11px; cursor: pointer; transition: transform .2s, background .2s, box-shadow .2s, border-color .2s; }
.btn--primary { background: #fff; color: var(--navy); font-weight: 800; font-size: 14px; letter-spacing: .2px; padding: 13px 22px; border-radius: 9px; white-space: nowrap; border: none; }
.btn--primary:hover { background: #E6ECF2; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(255,255,255,.3); }
.btn--hero-primary { background: #fff; color: var(--navy); font-weight: 800; font-size: 16px; padding: 18px 30px; }
.btn--hero-primary:hover { background: #E6ECF2; transform: translateY(-3px); box-shadow: 0 16px 38px rgba(255,255,255,.3); }
.btn--ghost { background: transparent; color: var(--ink); font-weight: 700; font-size: 16px; padding: 18px 30px; border: 1.5px solid rgba(244,245,247,.35); }
.btn--ghost:hover { border-color: var(--ink); background: rgba(255,255,255,.05); }
.btn--cta-dark { background: var(--navy); color: var(--ink); font-weight: 800; font-size: 16px; padding: 18px 32px; }
.btn--cta-dark:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(0,0,0,.35); }
.btn--submit { margin-top: 6px; background: #fff; color: var(--navy); border: none; font-weight: 800; font-size: 16px; padding: 17px; border-radius: 11px; justify-content: center; }
.btn--submit:hover { background: #E6ECF2; }

/* ---------- Mobiel menu ---------- */
.mobile-menu { display: none; position: fixed; inset: 0; z-index: 99; background: rgba(0,34,62,.97); backdrop-filter: blur(6px); padding: 104px 28px 40px; flex-direction: column; gap: 6px; }
.mobile-menu.open { display: flex; }
.mobile-menu-link { color: var(--ink); text-decoration: none; font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 30px; padding: 14px 0; border-bottom: 1px solid #0C3055; }
.mobile-menu-cta { margin-top: 22px; background: #fff; color: var(--navy); text-align: center; font-weight: 800; font-size: 17px; padding: 18px; border-radius: 11px; border-bottom: none; }
.mobile-menu-phone { margin-top: 12px; text-align: center; color: var(--muted); text-decoration: none; font-weight: 700; }

/* ---------- Gedeelde bouwstenen ---------- */
.container { max-width: 1240px; margin: 0 auto; padding: clamp(72px,10vw,120px) 28px; }
.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head--center { text-align: center; max-width: 620px; margin: 0 auto 56px; }
.eyebrow { color: #fff; font-weight: 800; font-size: 13px; letter-spacing: 3px; text-transform: uppercase; }
.section-title { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: clamp(32px,5vw,52px); line-height: 1; letter-spacing: -1px; margin: 16px 0 0; text-transform: uppercase; }

/* ---------- Hero ---------- */
.jt-hero { position: relative; min-height: 94vh; display: flex; align-items: flex-end; scroll-margin-top: 90px; overflow: hidden; }
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 72% 35%; }
.hero__overlay { position: absolute; inset: 0; }
.hero__overlay--a { background: radial-gradient(120% 90% at 80% 15%, rgba(255,255,255,.18), transparent 52%); }
.hero__overlay--b { background: linear-gradient(90deg, rgba(0,34,62,.92) 0%, rgba(0,34,62,.55) 42%, rgba(0,34,62,.05) 72%); }
.hero__overlay--c { background: linear-gradient(180deg, rgba(0,34,62,.35) 0%, rgba(0,34,62,.15) 40%, rgba(0,34,62,.92) 100%); }
.jt-hero__inner { position: relative; max-width: 1240px; margin: 0 auto; width: 100%; padding: 0 28px 92px; }
.hero__content { max-width: 880px; }
.hero__badge { display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.35); color: #DCE6F0; font-weight: 700; font-size: 13px; letter-spacing: .4px; padding: 8px 15px; border-radius: 100px; margin-bottom: 26px; }
.hero__badge-dot { width: 7px; height: 7px; border-radius: 50%; background: #fff; display: inline-block; flex: none; }
.hero__title { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: clamp(42px,8.2vw,88px); line-height: .94; letter-spacing: -1.5px; margin: 0 0 22px; text-transform: uppercase; }
.hero__title-hl { color: #fff; }
.hero__sub { font-size: clamp(17px,2.4vw,21px); line-height: 1.55; color: var(--sub); max-width: 585px; margin: 0 0 34px; }
.hero__btns { display: flex; flex-wrap: wrap; gap: 15px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 14px 30px; margin-top: 46px; padding-top: 30px; border-top: 1px solid rgba(28,69,112,.7); }
.hero__trust-item { display: inline-flex; align-items: center; gap: 9px; color: var(--sub); font-size: 14.5px; font-weight: 600; }
.hero__trust-item .icon { width: 18px; height: 18px; }

/* ---------- USP-strip ---------- */
.usp { background: var(--navy); border-top: 1px solid #0C3055; border-bottom: 1px solid #0C3055; }
.usp__grid { max-width: 1240px; margin: 0 auto; padding: clamp(48px,6vw,68px) 28px; display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); }
.usp__item { display: flex; flex-direction: column; gap: 14px; }
.usp__title { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 19px; margin: 0; letter-spacing: .2px; }
.usp__text { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.55; }

/* ---------- Diensten ---------- */
.diensten { background: var(--navy); scroll-margin-top: 88px; }
.diensten__grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); }
.service-card { background: var(--mid); border: 1px solid var(--line); border-radius: 14px; padding: 26px 24px 28px; display: flex; flex-direction: column; gap: 16px; transition: transform .25s, border-color .25s, box-shadow .25s; cursor: default; }
.service-card:hover { transform: translateY(-6px); border-color: #fff; box-shadow: 0 20px 44px rgba(0,0,0,.5); }
.service-card__title { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 19px; margin: 0; letter-spacing: .2px; }
.service-card__text { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }

/* ---------- Over ons + stats ---------- */
.over { background: var(--mid); border-top: 1px solid var(--line2); scroll-margin-top: 88px; }
.over__inner { max-width: 1240px; margin: 0 auto; padding: clamp(72px,10vw,120px) 28px; display: flex; flex-wrap: wrap; gap: clamp(40px,6vw,72px); align-items: center; }
.over__media { flex: 1 1 360px; min-width: 300px; position: relative; }
.over__frame { position: relative; aspect-ratio: 4/5; border-radius: 16px; overflow: hidden; border: 1px solid var(--line); }
.over__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.over__frame-grad { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 58%, rgba(0,34,62,.4)); }
.over__badge { position: absolute; right: -14px; bottom: -18px; background: #fff; color: var(--navy); border-radius: 14px; padding: 18px 22px; box-shadow: 0 16px 40px rgba(255,255,255,.4); animation: jtfloat 5s ease-in-out infinite; }
.over__badge-num { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 30px; display: block; line-height: 1; }
.over__badge-label { font-size: 12.5px; font-weight: 700; letter-spacing: .3px; }
.over__text { flex: 1 1 420px; min-width: 300px; }
.over__text .section-title { margin: 16px 0 20px; }
.over__p { color: var(--sub); font-size: 16px; line-height: 1.65; margin: 0 0 16px; }
.over__p--muted { color: var(--muted); font-size: 15px; margin: 0 0 26px; }
.over__chips { display: flex; flex-wrap: wrap; gap: 12px; }
.over__chip { display: inline-flex; align-items: center; gap: 9px; background: var(--navy); border: 1px solid var(--line); padding: 11px 16px; border-radius: 9px; font-size: 13.5px; font-weight: 600; color: var(--sub); }
.over__chip .icon { width: 18px; height: 18px; }
.over__stats-wrap { max-width: 1240px; margin: 0 auto; padding: 0 28px clamp(60px,8vw,90px); }
.stats { display: grid; gap: 1px; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); background: var(--line); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.stats__item { background: var(--mid); padding: 30px 24px; text-align: center; }
.stats__num { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: clamp(34px,4.5vw,46px); color: #fff; display: block; line-height: 1; }
.stats__label { color: var(--muted); font-size: 13.5px; font-weight: 600; }

/* ---------- Werkwijze ---------- */
.werkwijze { background: var(--mid); border-top: 1px solid var(--line2); }
.werkwijze__grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); }
.step { position: relative; background: var(--navy); border: 1px solid var(--line); border-radius: 14px; padding: 30px 24px; }
.step__n { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 54px; color: #143A5E; line-height: 1; display: block; }
.step__icon { margin-top: 14px; }
.step__title { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 19px; margin: 14px 0 8px; letter-spacing: .2px; }
.step__text { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }

/* ---------- Reviews ---------- */
.reviews { background: var(--navy); scroll-margin-top: 88px; }
.reviews .section-head { max-width: 600px; margin-bottom: 48px; }
.reviews__grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); }
.review { background: var(--mid); border: 1px solid var(--line); border-radius: 14px; padding: 30px 28px; display: flex; flex-direction: column; gap: 16px; }
.review__stars { color: #fff; font-size: 18px; letter-spacing: 2px; }
.review__text { margin: 0; font-size: 16px; line-height: 1.6; color: #E4E7EC; flex: 1; }
.review__foot { display: flex; align-items: center; gap: 12px; padding-top: 6px; border-top: 1px solid var(--line); }
.review__ava { width: 42px; height: 42px; border-radius: 50%; background: var(--line); color: var(--ink); display: flex; align-items: center; justify-content: center; font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 15px; flex: none; }
.review__meta { display: flex; flex-direction: column; line-height: 1.3; }
.review__name { font-weight: 700; font-size: 14.5px; }
.review__city { color: var(--muted); font-size: 13px; }
.reviews__note { margin-top: 26px; color: var(--muted); font-size: 13.5px; font-weight: 600; letter-spacing: .3px; }

/* ---------- CTA-banner ---------- */
.cta-banner { background: #fff; }
.cta-banner__inner { max-width: 1240px; margin: 0 auto; padding: clamp(54px,7vw,80px) 28px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 30px; }
.cta-banner__text { max-width: 640px; }
.cta-banner__title { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: clamp(28px,4.6vw,46px); line-height: 1.02; letter-spacing: -1px; margin: 0; color: var(--navy); text-transform: uppercase; }
.cta-banner__actions { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.cta-banner__phone { color: var(--navy); text-decoration: none; font-weight: 800; font-size: 18px; }

/* ---------- Contact ---------- */
.contact { background: var(--navy); scroll-margin-top: 88px; }
.contact__inner { max-width: 1240px; margin: 0 auto; padding: clamp(72px,10vw,120px) 28px; display: flex; flex-wrap: wrap; gap: clamp(36px,5vw,64px); }
.contact__info { flex: 1 1 340px; min-width: 300px; }
.contact__info .section-title { margin: 16px 0 22px; }
.contact__intro { color: var(--sub); font-size: 16px; line-height: 1.65; margin: 0 0 32px; max-width: 420px; }
.contact__list { display: flex; flex-direction: column; gap: 18px; }
.contact__row { display: flex; align-items: flex-start; gap: 14px; }
.contact__row .icon { width: 22px; height: 22px; }
.contact__rowtext { display: flex; flex-direction: column; line-height: 1.4; }
.contact__label { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.contact__value { font-size: 15.5px; font-weight: 600; color: var(--ink); }
.contact__form-col { flex: 1 1 420px; min-width: 300px; }
.contact-form { background: var(--mid); border: 1px solid var(--line); border-radius: 16px; padding: clamp(24px,3vw,36px); display: flex; flex-direction: column; gap: 16px; }
.hp { position: absolute; left: -9999px; top: -9999px; height: 0; overflow: hidden; }
.contact-form__row { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); }
.field { display: flex; flex-direction: column; gap: 7px; }
.field__label { font-size: 13px; font-weight: 700; color: var(--sub); }
.form-input { background: var(--navy); border: 1px solid var(--line); border-radius: 9px; padding: 13px 15px; color: var(--ink); font-size: 15px; outline: none; transition: border-color .2s; }
textarea.form-input { resize: vertical; min-height: 110px; }
.form-input:focus { border-color: #fff; }

/* Keuzegroepen (checkbox/radio) uit de formulierbouwer */
.choice-group { display: flex; flex-wrap: wrap; gap: 10px 18px; }
.choice { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; font-size: 14.5px; font-weight: 400; color: var(--ink); }
.choice input { accent-color: #fff; width: 16px; height: 16px; }

.contact-form__note { font-size: 12.5px; color: var(--muted); text-align: center; }
.form-error { background: rgba(255,80,80,.12); border: 1px solid rgba(255,120,120,.5); color: #FFD9D9; border-radius: 11px; padding: 14px 16px; margin-bottom: 16px; font-size: 14px; }
.contact-success { background: var(--mid); border: 1px solid #fff; border-radius: 16px; padding: 48px 36px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.contact-success__title { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 26px; margin: 0; text-transform: uppercase; }
.contact-success__text { margin: 0; color: var(--sub); font-size: 15.5px; line-height: 1.6; max-width: 340px; }
.contact-success__back { background: transparent; border: 1.5px solid var(--line); color: var(--ink); text-decoration: none; font-weight: 700; font-size: 14px; padding: 12px 22px; border-radius: 10px; }

/* ---------- Footer ---------- */
.site-footer { background: #001A30; border-top: 1px solid #0C3055; }
.site-footer__inner { max-width: 1240px; margin: 0 auto; padding: clamp(48px,6vw,72px) 28px 36px; display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; }
.site-footer__brand { flex: 1 1 300px; max-width: 360px; }
.site-footer__logo { display: flex; align-items: center; gap: 13px; margin-bottom: 18px; }
.site-footer__logo-img { width: 46px; height: 46px; object-fit: contain; flex: none; }
.site-footer__name { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 16px; }
.site-footer__desc { color: var(--muted); font-size: 14.5px; line-height: 1.6; margin: 0; }
.site-footer__cols { display: flex; flex-wrap: wrap; gap: 48px; }
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-col__h { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: #5E7088; font-weight: 700; margin-bottom: 4px; }
.footer-link { color: var(--sub); text-decoration: none; font-size: 14px; }
.footer-link:hover { color: #fff; }
.footer-col__text { color: var(--sub); font-size: 14px; }
.site-footer__bottom { border-top: 1px solid #0C3055; }
.site-footer__bottom-inner { max-width: 1240px; margin: 0 auto; padding: 20px 28px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; color: #5E7088; font-size: 12.5px; }

/* ---------- Sticky mobiele CTA ---------- */
.sticky-mobile { display: none; position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 90; gap: 10px; background: rgba(0,34,62,.9); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid var(--line); border-radius: 14px; padding: 10px; box-shadow: 0 14px 40px rgba(0,0,0,.5); }
.sticky-mobile__bel { flex: 1; text-align: center; background: rgba(255,255,255,.06); color: var(--ink); text-decoration: none; font-weight: 700; font-size: 15px; padding: 14px; border-radius: 10px; }
.sticky-mobile__cta { flex: 2; text-align: center; background: #fff; color: var(--navy); text-decoration: none; font-weight: 800; font-size: 15px; padding: 14px; border-radius: 10px; }

/* ---------- Responsive ---------- */
@media (max-width: 899px) {
  .desktop-nav, .desktop-cta { display: none; }
  .mobile-hamburger { display: flex; }
  .sticky-mobile { display: flex; }
  /* Vaste header mag hero-inhoud niet overlappen */
  .jt-hero { min-height: auto; align-items: flex-start; }
  .jt-hero__inner { padding-top: 128px; padding-bottom: 56px; }
  body.admin-bar .jt-hero__inner { padding-top: 172px; }
}

/* ---------- WordPress adminbalk-offset ---------- */
body.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) { body.admin-bar .site-header { top: 46px; } }

/* ============================================================
   LOSSE PAGINA'S, BLOG & POSTS
   ============================================================ */
.jt-page { background: var(--navy); color: var(--ink); }
.jt-pagehead { background: var(--mid); border-bottom: 1px solid var(--line2); padding: 132px 28px 40px; }
body:not(.admin-bar) .jt-pagehead { padding-top: 116px; }
.jt-pagehead__inner { max-width: 860px; margin: 0 auto; }
.jt-back { display: inline-block; color: var(--muted); text-decoration: none; font-weight: 700; font-size: 13.5px; margin-bottom: 14px; }
.jt-back:hover { color: #fff; }
.jt-post-meta { display: block; color: var(--muted); font-size: 13px; font-weight: 600; margin-bottom: 8px; letter-spacing: .3px; }
.jt-pagetitle { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: clamp(30px,5vw,50px); line-height: 1.02; letter-spacing: -1px; margin: 0; text-transform: uppercase; color: #fff; }
.jt-page__body { max-width: 860px; margin: 0 auto; padding: 48px 28px 80px; }
.jt-post-thumb { margin: 0 0 30px; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); }
.jt-post-thumb img { width: 100%; height: auto; }

.entry-content { color: var(--sub); font-size: 16.5px; line-height: 1.7; }
.entry-content > * { margin: 0 0 20px; }
.entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4 { font-family: 'Archivo', sans-serif; color: #fff; line-height: 1.15; letter-spacing: -.3px; margin: 36px 0 14px; }
.entry-content h2 { font-size: 27px; font-weight: 800; }
.entry-content h3 { font-size: 21px; font-weight: 800; }
.entry-content h4 { font-size: 17px; font-weight: 700; }
.entry-content a { color: #fff; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--line); }
.entry-content a:hover { text-decoration-color: #fff; }
.entry-content strong { color: #EAF0F6; }
.entry-content ul, .entry-content ol { padding-left: 22px; }
.entry-content li { margin: 0 0 8px; }
.entry-content ul li::marker { color: #fff; }
.entry-content blockquote { border-left: 3px solid #fff; background: var(--mid); margin: 24px 0; padding: 16px 20px; border-radius: 0 10px 10px 0; color: #E4E7EC; }
.entry-content img { border-radius: 12px; height: auto; max-width: 100%; }
.entry-content hr { border: 0; border-top: 1px solid var(--line); }
.entry-content code { background: var(--mid); border: 1px solid var(--line); border-radius: 6px; padding: 2px 6px; font-size: 14px; color: #EAF0F6; }
.entry-content pre { background: #001A30; border: 1px solid var(--line); border-radius: 10px; padding: 16px; overflow: auto; }
.entry-content table { width: 100%; border-collapse: collapse; }
.entry-content th, .entry-content td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; }
.entry-content th { background: var(--mid); color: #fff; }
.entry-content .wp-block-button__link { background: #fff; color: var(--navy); border-radius: 10px; padding: 12px 24px; font-weight: 800; text-decoration: none; }

.jt-postgrid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); }
.jt-postcard { background: var(--mid); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; transition: transform .25s, border-color .25s, box-shadow .25s; }
.jt-postcard:hover { transform: translateY(-5px); border-color: #fff; box-shadow: 0 20px 40px rgba(0,0,0,.45); }
.jt-postcard__img img { width: 100%; height: 180px; object-fit: cover; }
.jt-postcard__body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.jt-postcard__date { color: var(--muted); font-size: 12.5px; font-weight: 600; }
.jt-postcard__title { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 19px; margin: 0; line-height: 1.2; }
.jt-postcard__title a { color: #fff; text-decoration: none; }
.jt-postcard__title a:hover { text-decoration: underline; }
.jt-postcard__excerpt { color: var(--muted); font-size: 14px; line-height: 1.55; margin: 0; flex: 1; }
.jt-readmore { color: #fff; font-weight: 700; font-size: 14px; text-decoration: none; margin-top: 4px; }
.jt-readmore:hover { text-decoration: underline; }
.jt-empty-msg { color: var(--muted); }
.jt-pagination { margin-top: 36px; }
.jt-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 12px; margin: 0 4px 4px 0; border: 1px solid var(--line); border-radius: 9px; color: var(--sub); text-decoration: none; font-weight: 700; }
.jt-pagination .page-numbers.current { background: #fff; color: var(--navy); border-color: #fff; }
.jt-pagination a.page-numbers:hover { border-color: #fff; color: #fff; }

/* ---------- Projecten ---------- */
.projecten { background: var(--navy); border-top: 1px solid #0C3055; scroll-margin-top: 88px; }
.projecten__grid { display: grid; gap: clamp(24px,3vw,36px); grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); }
.project { display: flex; flex-direction: column; text-align: center; text-decoration: none; color: inherit; }
.project:hover .project__title { color: #fff; }
.project__more { color: #fff; font-weight: 700; font-size: 13.5px; margin-top: 12px; opacity: .75; transition: opacity .2s; }
.project:hover .project__more { opacity: 1; }
.jt-project-back { margin-top: 40px; }
.project__media { border-radius: 14px; overflow: hidden; border: 1px solid var(--line); background: var(--mid); aspect-ratio: 4/3; }
.project__img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.project:hover .project__img { transform: scale(1.04); }
.project__ph { width: 100%; height: 100%; background: linear-gradient(135deg, #07335A, #0C3055); }
.project__title { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 21px; letter-spacing: .2px; margin: 20px 0 0; color: #fff; }
.project__text { color: var(--sub); font-size: 14.5px; line-height: 1.6; margin: 12px auto 0; max-width: 340px; }

/* ---------- Project-detailpagina (full-bleed hero) ---------- */
.jt-project { background: var(--navy); color: var(--ink); }
.jt-project-hero { position: relative; min-height: 62vh; display: flex; align-items: flex-end; overflow: hidden; }
.jt-project-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.jt-project-hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,34,62,.55) 0%, rgba(0,34,62,.12) 38%, rgba(0,34,62,.94) 100%); }
.jt-project-hero__inner { position: relative; max-width: 1240px; margin: 0 auto; width: 100%; padding: 0 28px 56px; }
.jt-project-hero .jt-back { color: rgba(255,255,255,.82); margin-bottom: 16px; }
.jt-project-hero .jt-back:hover { color: #fff; }
.jt-project-hero .eyebrow { display: block; }
.jt-project-hero__title { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: clamp(34px,6vw,68px); line-height: 1; letter-spacing: -1.5px; text-transform: uppercase; color: #fff; margin: 12px 0 0; }
.jt-project-body { max-width: 820px; margin: 0 auto; padding: clamp(40px,5vw,64px) 28px 84px; }

/* Brede/volle blokken binnen de inhoud (galerijen, foto's) */
.entry-content .alignwide { margin-left: calc(50% - 46vw); margin-right: calc(50% - 46vw); max-width: 92vw; width: auto; }
.entry-content .alignfull { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); max-width: 100vw; width: 100vw; }
@media (max-width: 900px) {
  .entry-content .alignwide,
  .entry-content .alignfull { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); max-width: 100vw; width: 100vw; }
  .jt-project-hero { min-height: 52vh; }
}

/* ---------- Contact-terugval (zonder plugin) ---------- */
.contact-fallback { background: var(--mid); border: 1px solid var(--line); border-radius: 16px; padding: clamp(24px,3vw,36px); }
.contact-fallback__title { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 22px; text-transform: uppercase; margin: 0 0 8px; color: #fff; }
.contact-fallback__text { color: var(--sub); margin: 0 0 18px; line-height: 1.6; }
.contact-fallback__btns { display: flex; flex-wrap: wrap; gap: 12px; }
