/* ============================================================
   OUDE TANKE TECHNIEK — premium site system
   Apple-clean industrial. Shared across all pages.
   Google Fonts is loaded via a <link rel="stylesheet"> in each page's <head>
   (not an @import here) so it downloads in parallel instead of chaining
   behind this stylesheet.
   ============================================================ */

:root {
  --navy-950: #07131F;
  --navy-900: #0B1B2A;
  --navy-800: #102536;
  --navy-700: #18334A;
  --yellow: #FFD337;
  --yellow-600: #F5B81E;
  --ink: #15202B;
  --steel-700: #3B4652;
  --steel-500: #66717D;
  --steel-300: #AEB8C2;
  --line: #E6EAEE;
  --line-soft: #EEF1F4;
  --off: #F6F7F9;
  --white: #fff;

  --font: "Inter", system-ui, -apple-system, sans-serif;
  --display: "Manrope", "Inter", system-ui, sans-serif;

  --container: 1240px;
  --header-h: 76px;
  --gut: clamp(20px, 4vw, 56px);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 2px 8px rgba(7, 19, 31, 0.06);
  --shadow: 0 18px 50px rgba(7, 19, 31, 0.12);
  --shadow-lg: 0 40px 90px rgba(7, 19, 31, 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--display); font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; color: var(--ink); }
h1, h2, h3, h4, .h1, .h2, .h3, .display, .big { overflow-wrap: break-word; word-break: normal; hyphens: manual; }
body { overflow-wrap: break-word; }
p { margin: 0; }
::selection { background: var(--yellow); color: var(--navy-950); }

.wrap { max-width: var(--container); margin-inline: auto; padding-inline: var(--gut); }
.wrap-wide { max-width: 1440px; margin-inline: auto; padding-inline: var(--gut); }

/* ---------- type helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font); font-weight: 700; font-size: 12.5px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--steel-500);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--yellow); }
.eyebrow.on-dark { color: var(--steel-300); }
.eyebrow.center { justify-content: center; }
.display { font-size: clamp(2.4rem, 5.4vw, 4.6rem); line-height: 1.0; letter-spacing: -0.04em; }
.h1 { font-size: clamp(2.1rem, 4.2vw, 3.5rem); line-height: 1.04; letter-spacing: -0.035em; }
.h2 { font-size: clamp(1.8rem, 3.2vw, 2.7rem); line-height: 1.08; letter-spacing: -0.03em; }
.h3 { font-size: clamp(1.2rem, 1.8vw, 1.45rem); letter-spacing: -0.02em; }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.3rem); line-height: 1.55; color: var(--steel-700); font-weight: 400; }
.muted { color: var(--steel-500); }
.on-dark, .on-dark h1, .on-dark h2, .on-dark h3 { color: #fff; }
.on-dark .lead { color: rgba(255,255,255,0.72); }
.yellow-text { color: var(--yellow); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 54px; padding: 0 28px; border: 0; border-radius: 999px; cursor: pointer;
  font-family: var(--display); font-weight: 700; font-size: 16px; letter-spacing: -0.01em;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--yellow); color: var(--navy-950); }
.btn-primary:hover { background: #FFDC57; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(245, 184, 30, 0.35); }
.btn-dark { background: var(--navy-900); color: #fff; }
.btn-dark:hover { background: var(--navy-800); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--navy-950); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--navy-900); transform: translateY(-2px); }
.btn-ghost-light { background: rgba(255,255,255,0.06); color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.25); backdrop-filter: blur(6px); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.12); box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.5); transform: translateY(-2px); }
.btn-sm { height: 46px; padding: 0 20px; font-size: 14.5px; }
.btn-lg { height: 60px; padding: 0 34px; font-size: 17px; }
.textlink { display: inline-flex; align-items: center; gap: 9px; font-family: var(--display); font-weight: 700; color: var(--ink); transition: gap 0.25s var(--ease), color 0.2s; }
.textlink svg { width: 18px; height: 18px; transition: transform 0.25s var(--ease); }
.textlink:hover { color: var(--navy-900); }
.textlink:hover svg { transform: translateX(4px); }
.textlink.on-dark { color: #fff; }
.textlink.on-dark:hover { color: var(--yellow); }

/* ---------- top utility bar ---------- */
.topbar { background: var(--navy-950); color: rgba(255,255,255,0.66); border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 13px; }
.topbar .wrap-wide { display: flex; align-items: center; justify-content: space-between; height: 42px; }
.topbar .ti { display: flex; align-items: center; gap: 26px; }
.topbar .ti span { display: inline-flex; align-items: center; gap: 8px; letter-spacing: 0.01em; }
.topbar .ti svg { width: 14px; height: 14px; color: var(--yellow); opacity: 0.9; }
.topbar a { color: #fff; font-weight: 600; white-space: nowrap; }
.topbar .ti-right { display: flex; align-items: center; gap: 22px; }
.topbar .ti-right a { display: inline-flex; align-items: center; gap: 7px; }
.topbar .ti-right a svg { width: 13px; height: 13px; color: var(--yellow); flex: none; }
.topbar .storing { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--yellow); white-space: nowrap; }
.topbar .storing i { width: 7px; height: 7px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 3px rgba(255,211,55,0.22); }

/* trust strip under hero */
.trust-strip { background: var(--off); border-bottom: 1px solid var(--line); }
.trust-strip .row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; padding-block: 18px; }
.trust-strip .ts { display: inline-flex; align-items: center; gap: 10px; padding: 6px 26px; font-family: var(--display); font-weight: 700; font-size: 14.5px; letter-spacing: -0.01em; color: var(--navy-900); border-left: 1px solid var(--line); white-space: nowrap; }
.trust-strip .ts:first-child { border-left: 0; }
.trust-strip .ts svg { width: 17px; height: 17px; color: var(--yellow-600); flex: none; }
@media (max-width: 960px) { .trust-strip .ts { border-left: 0; padding: 6px 14px; font-size: 13px; } }
.topbar a:hover { color: var(--yellow); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.86); backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.3s, border-color 0.3s;
}
.site-header.on-hero {
  background: transparent; border-color: transparent;
}
.site-header.on-hero:not(.scrolled) .nav-row a:not(.btn) { color: rgba(255,255,255,0.9); }
.site-header.on-hero:not(.scrolled) .nav-logo .dark { display: none; }
.site-header.on-hero:not(.scrolled) .nav-logo .light { display: block; }
.site-header.on-hero.scrolled {
  background: rgba(7,19,31,0.82); backdrop-filter: saturate(180%) blur(18px); border-color: rgba(255,255,255,0.08);
}
.site-header.on-hero.scrolled .nav-row > a:not(.btn), .site-header.on-hero.scrolled .nav-links a { color: rgba(255,255,255,0.9); }
.site-header.on-hero.scrolled .nav-logo .dark { display: none; }
.site-header.on-hero.scrolled .nav-logo .light { display: block; }
.nav-logo .light { display: none; }

.nav-row { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; height: 76px; }
.nav-logo { justify-self: start; }
.nav-logo img { height: 36px; width: auto; }
.nav-links { display: flex; align-items: center; justify-content: center; justify-self: center; gap: 2px; }
.nav-links a {
  position: relative; padding: 9px 10px; font-size: 14.5px; font-weight: 500; color: var(--steel-700);
  border-radius: 8px; transition: color 0.2s, background 0.2s; white-space: nowrap;
}
.nav-links a:hover { color: var(--ink); }
.site-header.on-hero:not(.scrolled) .nav-links a:hover, .site-header.on-hero.scrolled .nav-links a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav-links a.active { color: var(--ink); font-weight: 600; }
.nav-links a.active::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px; height: 2px; background: var(--yellow); border-radius: 2px; }
.site-header.on-hero:not(.scrolled) .nav-links a.active, .site-header.on-hero.scrolled .nav-links a.active { color: #fff; }

/* ---------- nav dropdown (desktop) ---------- */
.nav-dd { position: relative; display: flex; align-items: center; }
.nav-dd > .dd-top { display: inline-flex; align-items: center; gap: 6px; }
.nav-dd .chev { width: 14px; height: 14px; opacity: 0.7; transition: transform 0.28s var(--ease); }
.nav-dd:hover .chev, .nav-dd:focus-within .chev { transform: rotate(180deg); }
.dd-menu { position: absolute; top: calc(100% + 10px); left: -8px; min-width: 324px; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-lg); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s; z-index: 120; }
.dd-menu::before { content: ""; position: absolute; top: -16px; left: 0; right: 0; height: 18px; }
.nav-dd:hover .dd-menu, .nav-dd:focus-within .dd-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dd-menu a { display: flex !important; flex-direction: column; gap: 3px; padding: 11px 14px !important; border-radius: 11px; color: var(--ink) !important; background: transparent !important; }
.dd-menu a::after { display: none !important; }
.dd-menu a strong { font-family: var(--display); font-weight: 700; font-size: 15px; color: var(--ink); transition: color 0.18s; }
.dd-menu a em { font-style: normal; font-size: 12.5px; line-height: 1.45; color: var(--steel-500); font-weight: 400; }
.dd-menu a:hover { background: var(--off) !important; }
.dd-menu a:hover strong { color: var(--navy-900); }
.dd-menu .dd-all { flex-direction: row !important; align-items: center; gap: 8px; margin-top: 6px; padding-top: 13px !important; border-top: 1px solid var(--line); border-radius: 0; font-family: var(--display); font-weight: 700; font-size: 13.5px; color: var(--ink) !important; }
.dd-menu .dd-all svg { width: 16px; height: 16px; color: var(--yellow-600); transition: transform 0.25s var(--ease); }
.dd-menu .dd-all:hover { background: transparent !important; }
.dd-menu .dd-all:hover svg { transform: translateX(4px); }
.nav-right { justify-self: end; display: flex; align-items: center; gap: 14px; }
.nav-phone { display: inline-flex; align-items: center; gap: 9px; font-family: var(--display); font-weight: 700; font-size: 15px; color: var(--ink); white-space: nowrap; }
.nav-phone svg { width: 16px; height: 16px; color: var(--yellow-600); }
.site-header.on-hero:not(.scrolled) .nav-phone, .site-header.on-hero.scrolled .nav-phone { color: #fff; }
.burger { display: none; width: 46px; height: 46px; border: 0; background: transparent; cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: 0.25s; }
.site-header.on-hero:not(.scrolled) .burger span, .site-header.on-hero.scrolled .burger span { background: #fff; }

/* mobile drawer */
.mobile-nav { position: fixed; inset: 0; z-index: 200; display: none; }
.mobile-nav.open { display: block; }
.mobile-nav .scrim { position: absolute; inset: 0; background: rgba(7,19,31,0.5); backdrop-filter: blur(3px); animation: fade 0.3s; }
.mobile-nav .sheet {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(380px, 88%); background: #fff;
  display: flex; flex-direction: column; box-shadow: var(--shadow-lg); animation: slideIn 0.32s var(--ease);
}
.mobile-nav .mh { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid var(--line); }
.mobile-nav .mh img { height: 26px; width: auto; }
.mobile-nav .close { width: 42px; height: 42px; border: 1px solid var(--line); background: #fff; border-radius: 10px; cursor: pointer; font-size: 20px; color: var(--ink); }
.mobile-nav nav { flex: 1; padding: 8px 0; overflow-y: auto; }
.mobile-nav nav a { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; font-family: var(--display); font-weight: 700; font-size: 18px; border-bottom: 1px solid var(--line-soft); }
.mobile-nav nav a.active { color: var(--navy-900); }
.m-acc-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; width: 100%; padding: 16px 24px; font-family: var(--display); font-weight: 700; font-size: 18px; color: var(--ink); background: none; border: 0; border-bottom: 1px solid var(--line-soft); cursor: pointer; text-align: left; }
.m-acc-top.active { color: var(--navy-900); }
.m-acc-top .chev { width: 20px; height: 20px; color: var(--steel-500); transition: transform 0.3s var(--ease); flex: none; }
.m-acc.open .m-acc-top .chev { transform: rotate(180deg); }
.m-acc-panel { max-height: 0; overflow: hidden; background: var(--off); transition: max-height 0.34s var(--ease); }
.m-acc.open .m-acc-panel { max-height: 380px; }
.m-acc-panel a { padding-left: 40px !important; font-size: 15.5px !important; font-weight: 600 !important; color: var(--steel-700) !important; }
.m-acc-panel a:first-child { color: var(--ink) !important; }
.mobile-nav nav a.m-sub { padding-left: 42px !important; font-size: 15.5px !important; font-weight: 600 !important; color: var(--steel-700) !important; }
.mobile-nav nav a.m-sub:hover { color: var(--ink) !important; }
.mobile-nav .mf { padding: 20px 24px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 12px; }
@keyframes slideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

/* ---------- sections ---------- */
.section { padding-block: clamp(58px, 7vw, 112px); }
.section.tight { padding-block: clamp(48px, 5.5vw, 84px); }
.section-navy { background: var(--navy-950); color: #fff; }
.section-navy :is(h1,h2,h3,.h1,.h2,.h3),
.band :is(h1,h2,h3,.h1,.h2,.h3) { color: #fff; }
.section-off { background: var(--off); }
.sec-head { max-width: 740px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head .eyebrow { margin-bottom: 22px; }
.sec-head .lead { margin-top: 22px; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- footer ---------- */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,0.66); }
.footer-cta { background: var(--yellow); color: var(--navy-950); }
.footer-cta .wrap { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding-block: clamp(40px, 5vw, 64px); flex-wrap: wrap; }
.footer-cta h2 { color: var(--navy-950); max-width: 16ch; }
.footer-cta .acts { display: flex; gap: 14px; flex-wrap: wrap; }
/* home: personal monteur portrait popping out of the band */
.footer-cta--person { position: relative; }
.footer-cta--person .wrap { justify-content: flex-start; gap: 24px 44px; }
.footer-cta--person .cta-portret { flex: none; margin: 0; align-self: center; }
.footer-cta--person .cta-portret img { display: block; width: 188px; height: 188px; border-radius: 50%; border: 5px solid var(--yellow); box-shadow: 0 18px 44px rgba(20,16,4,0.30); }
.footer-cta--person h2 { flex: 1 1 300px; }
.footer-cta--person .acts { flex: none; }
.footer-main { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-block: 72px 40px; }
.footer-main img { height: 32px; width: auto; margin-bottom: 22px; }
.footer-main .about { font-size: 14.5px; line-height: 1.65; color: rgba(255,255,255,0.6); max-width: 320px; }
.footer-contact { margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.footer-contact a, .footer-contact span { display: inline-flex; align-items: center; gap: 11px; font-size: 14.5px; color: rgba(255,255,255,0.78); }
.footer-contact svg { width: 16px; height: 16px; color: var(--yellow); flex: none; }
.footer-contact a.big { font-family: var(--display); font-weight: 800; font-size: 19px; color: #fff; }
.footer-social { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 20px; }
.footer-social a { font-size: 13.5px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-social a:hover { color: var(--yellow); }
.footer-col h4 { font-family: var(--font); font-size: 12.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--steel-500); margin-bottom: 18px; }
.footer-col a { display: block; font-size: 14.5px; color: rgba(255,255,255,0.7); padding: 7px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--yellow); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-block: 22px; display: flex; justify-content: space-between; gap: 16px; font-size: 13px; color: var(--steel-500); flex-wrap: wrap; }

/* ---------- generic cards / grids ---------- */
.grid { display: grid; gap: 24px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }

/* media frame */
.media { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--navy-900); }
.media img { width: 100%; height: 100%; object-fit: cover; }
.media.zoom img { transition: transform 0.7s var(--ease); }
.media.zoom:hover img { transform: scale(1.04); }

/* pill label over media */
.pill { display: inline-flex; align-items: center; gap: 7px; padding: 7px 13px; border-radius: 999px; font-family: var(--font); font-weight: 700; font-size: 12px; letter-spacing: 0.04em; }
.pill-dark { background: rgba(7,19,31,0.72); color: #fff; backdrop-filter: blur(6px); }
.pill-yellow { background: var(--yellow); color: var(--navy-950); }

@media (max-width: 1080px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1360px) { .nav-phone { display: none; } }
@media (max-width: 1240px) {
  .nav-links { display: none; }
  .nav-row { grid-template-columns: 1fr auto; }
  .burger { display: flex; }
  .topbar .ti span.hide-sm { display: none; }
}
@media (max-width: 600px) { .topbar .storing { display: none; } }
@media (max-width: 560px) { .nav-right .btn { display: none; } }

/* floating WhatsApp button */
.wa-fab { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 30px rgba(37,211,102,0.4); transition: transform 0.25s var(--ease), box-shadow 0.25s; }
.wa-fab svg { width: 30px; height: 30px; }
.wa-fab:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 18px 42px rgba(37,211,102,0.5); }
.wa-fab::after { content: ""; position: absolute; inset: 0; border-radius: 50%; animation: waPulse 2.6s var(--ease) infinite; }
@keyframes waPulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.45); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }
@media (max-width: 600px) { .wa-fab { right: 16px; bottom: 16px; width: 54px; height: 54px; } }
@media (prefers-reduced-motion: reduce) { .wa-fab::after { animation: none; } }
@media (max-width: 720px) {
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-cta .wrap { flex-direction: column; align-items: flex-start; }
  .footer-cta--person .cta-portret { margin: 0 auto; }
  .footer-cta--person .cta-portret img { width: 138px; height: 138px; }
}
@media (max-width: 520px) {
  .footer-main { grid-template-columns: 1fr; }
}

/* ============================================================
   INTERIOR PAGE COMPONENTS (shared across diensten / cases / over-ons / contact)
   ============================================================ */
.subhero { position: relative; margin-top: calc(-1 * var(--header-h)); background: var(--navy-950); color: #fff; overflow: hidden; }
/* service-detail hero: underlap the transparent header so the white logo + menu stay visible on the navy hero */
.svc-hero { margin-top: calc(-1 * var(--header-h)); }
.subhero.has-img > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.34; }
.subhero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,19,31,0.5), rgba(7,19,31,0.82)); }
.subhero .inner { position: relative; z-index: 2; padding-top: calc(var(--header-h) + 56px); padding-bottom: clamp(48px, 6vw, 84px); max-width: 880px; }
.subhero h1 { color: #fff; margin: 20px 0 0; }
.subhero .lead { color: rgba(255,255,255,0.74); margin-top: 22px; max-width: 60ch; }

.breadcrumb { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.6); }
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { opacity: 0.4; }
.breadcrumb .cur { color: var(--yellow); font-weight: 600; }

/* alternating image/text feature */
.feature-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.feature-split + .feature-split { margin-top: clamp(44px, 6.5vw, 92px); }
.feature-split .fs-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3.1; background: var(--navy-900); box-shadow: var(--shadow); }
.feature-split .fs-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.feature-split .fs-media:hover img { transform: scale(1.04); }
.feature-split .fs-media .pill { position: absolute; top: 16px; left: 16px; }
.feature-split.reverse .fs-text { order: 2; }
.feature-split.reverse .fs-media { order: 1; }
.fs-text .num { font-family: var(--display); font-weight: 800; font-size: 14px; color: var(--navy-900); letter-spacing: 0.04em; }
.fs-text h2 { margin: 14px 0 16px; }
.fs-text p { color: var(--steel-700); }
.fs-text .acts { margin-top: 26px; display: flex; gap: 14px; flex-wrap: wrap; }

.bullets { list-style: none; margin: 22px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.bullets.one-col { grid-template-columns: 1fr; }
.bullets li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--steel-700); line-height: 1.5; }
.bullets svg { width: 20px; height: 20px; flex: none; color: var(--yellow-600); margin-top: 2px; }

@media (max-width: 920px) {
  .feature-split { grid-template-columns: 1fr; gap: 28px; }
  .feature-split.reverse .fs-text { order: 1; }
  .feature-split.reverse .fs-media { order: 2; }
  .bullets { grid-template-columns: 1fr; }
}

/* ============================================================
   LEAD FORM (shared by the contact page + the schouwing modal)
   ============================================================ */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; }
.form-card .fh, .modal-card .fh { padding: 24px 30px; border-bottom: 1px solid var(--line); background: var(--off); }
.form-card .fh h2, .modal-card .fh h2 { font-size: 22px; }
.form-card .fh p, .modal-card .fh p { font-size: 14px; color: var(--steel-500); margin-top: 4px; }
.form-card .fh p a, .modal-card .fh p a { color: var(--navy-900); font-weight: 700; white-space: nowrap; }
.form-body { padding: 28px 30px 30px; display: flex; flex-direction: column; gap: 18px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-size: 12.5px; font-weight: 700; letter-spacing: 0.06em; color: var(--steel-700); margin-bottom: 7px; }
.field input, .field textarea, .field select { width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); font-family: var(--font); font-size: 15px; color: var(--ink); background: #fff; transition: border-color 0.2s, box-shadow 0.2s; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--navy-900); box-shadow: 0 0 0 4px rgba(11,27,42,0.08); }
.field textarea { min-height: 110px; resize: vertical; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chips button { display: inline-flex; align-items: center; gap: 9px; padding: 10px 17px 10px 13px; border: 1.5px solid var(--line); background: #fff; border-radius: 999px; font-family: var(--display); font-weight: 700; font-size: 13.5px; color: var(--steel-700); cursor: pointer; transition: border-color 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease); }
.chips button:hover { border-color: var(--steel-300); background: var(--off); }
.chips button::before { content: ""; width: 17px; height: 17px; flex: none; border-radius: 50%; border: 1.5px solid var(--line); background-color: #fff; background-repeat: no-repeat; background-position: center; background-size: 10px 10px; transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease); }
.chips button[aria-pressed="true"] { border-color: var(--yellow-600); background: rgba(255,211,55,0.14); color: var(--navy-900); }
.chips button[aria-pressed="true"]::before { border-color: var(--yellow-600); background-color: var(--yellow-600); background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230B1B2A' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12.5l4.5 4.5L19 7'/></svg>"); }
.chips button:focus-visible { outline: none; box-shadow: 0 0 0 4px rgba(11,27,42,0.1); }
.form-success { display: none; flex-direction: column; align-items: center; text-align: center; gap: 16px; padding: 56px 40px; }
.form-success .ok { width: 64px; height: 64px; border-radius: 50%; background: #E9F7EF; color: #1E9E5A; display: flex; align-items: center; justify-content: center; }
.form-success .ok svg { width: 32px; height: 32px; }
.form-note { font-size: 12.5px; color: var(--steel-500); }
@media (max-width: 880px) { .frow { grid-template-columns: 1fr; } }

/* ============================================================
   SCHOUWING MODAL (popup lead form, desktop + mobile)
   ============================================================ */
.modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: flex-start; justify-content: center; padding: clamp(14px, 5vh, 56px) 16px; overflow-y: auto; }
.modal[hidden] { display: none; }
.modal-scrim { position: fixed; inset: 0; background: rgba(7,19,31,0.58); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); animation: modalFade 0.2s var(--ease); }
.modal-card { position: relative; z-index: 1; width: 100%; max-width: 560px; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; animation: modalPop 0.26s var(--ease); }
.modal-card .fh { padding-right: 58px; }
.modal-x { position: absolute; top: 15px; right: 15px; z-index: 2; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); background: #fff; color: var(--navy-900); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.2s var(--ease), transform 0.2s var(--ease); }
.modal-x:hover { background: var(--off); transform: rotate(90deg); }
.modal-x svg { width: 18px; height: 18px; }
.modal-trust { display: flex; flex-wrap: wrap; gap: 8px 18px; padding: 12px 30px; font-size: 12px; color: var(--steel-700); border-bottom: 1px solid var(--line); background: var(--off); }
.modal-trust span { display: inline-flex; align-items: center; gap: 6px; }
.modal-trust svg { width: 13px; height: 13px; color: var(--yellow-600); flex: none; }
.form-trust { display: flex; flex-wrap: wrap; gap: 14px 22px; padding: 14px 30px; font-size: 12.5px; color: var(--steel-700); border-bottom: 1px solid var(--line); background: var(--off); }
body.scroll-locked { overflow: hidden; }
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalPop { from { opacity: 0; transform: translateY(14px) scale(0.985); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .modal-scrim, .modal-card { animation: none; } .modal-x:hover { transform: none; } }
@media (forced-colors: active) { .chips button[aria-pressed="true"] { outline: 2px solid; } }

@media print { .modal, .mobile-nav, .wa-fab { display: none !important; } }
