/* ============================================================
   Out of the Box — Verhuizingen & Transport
   Hi-fi site styles  ·  WordPress-friendly, semantic
   ============================================================ */

:root {
  /* Brand blues (sampled from logo) */
  --blue:        #0a4a98;
  --blue-dark:   #083878;
  --blue-darker: #06264f;
  --blue-bright: #2868b8;
  --blue-tint:   #eaf1fa;
  --blue-tint-2: #dbe7f6;

  /* Neutrals — cool, professional */
  --ink:    #14181f;
  --ink-2:  #2b313b;
  --slate:  #5b6573;
  --slate-2:#8a94a3;
  --line:   #e4e9f0;
  --line-2: #eef2f7;
  --mist:   #f5f7fa;
  --paper:  #ffffff;

  --maxw: 1200px;
  --gut: clamp(20px, 5vw, 64px);
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(16,32,64,.05), 0 2px 6px rgba(16,32,64,.04);
  --shadow-md: 0 8px 24px rgba(16,32,64,.08), 0 2px 6px rgba(16,32,64,.05);
  --shadow-lg: 0 24px 60px rgba(8,40,96,.16), 0 8px 20px rgba(8,40,96,.08);
  --shadow-blue: 0 16px 36px rgba(10,74,152,.30);

  --display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --body: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}
p { margin: 0; }

/* ---------- layout ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(64px, 9vw, 132px); }
.section.tight { padding-block: clamp(44px, 6vw, 72px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--display);
  font-size: 13px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--blue);
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; background: var(--blue); display: inline-block;
}
.eyebrow.center { justify-content: center; }
.eyebrow.light { color: #9ec3f0; }
.eyebrow.light::before { background: #9ec3f0; }

.h-xl { font-size: clamp(38px, 6vw, 74px); }
.h-lg { font-size: clamp(30px, 4.4vw, 52px); }
.h-md { font-size: clamp(24px, 3vw, 36px); }
.lede { font-size: clamp(18px, 2vw, 21px); color: var(--slate); line-height: 1.65; }
.muted { color: var(--slate); }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.maxw-60 { max-width: 60ch; }
.maxw-46 { max-width: 46ch; }
.maxw-38 { max-width: 38ch; }

.stack > * + * { margin-top: var(--s, 18px); }
.stack-sm { --s: 12px; }
.stack-lg { --s: 28px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--display); font-weight: 700; font-size: 16px;
  padding: 15px 26px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s, color .18s;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--blue); color: #fff; box-shadow: var(--shadow-blue); }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 20px 40px rgba(10,74,152,.36); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--blue-dark); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-sm { padding: 11px 18px; font-size: 14px; }
.btn-lg { padding: 18px 32px; font-size: 17px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display); font-weight: 700; color: var(--blue); font-size: 16px;
}
.link-arrow svg { width: 17px; height: 17px; transition: transform .2s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- pills / tags ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px;
  background: var(--blue-tint); color: var(--blue-dark);
  font-family: var(--display); font-weight: 600; font-size: 13.5px;
  letter-spacing: .01em;
}
.pill.outline { background: transparent; border: 1.5px solid var(--line); color: var(--slate); }
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); }

/* ---------- image placeholders ---------- */
.ph {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background:
    repeating-linear-gradient(135deg, #e9eef5 0 14px, #eef3f8 14px 28px);
  border: 1px solid var(--line);
  display: grid; place-items: center; min-height: 200px;
  color: var(--slate-2);
}
.ph::after {
  content: attr(data-label);
  font-family: "Spline Sans Mono", ui-monospace, monospace;
  font-size: 12px; letter-spacing: .08em; text-transform: lowercase;
  color: #9aa6b6; background: rgba(255,255,255,.7);
  padding: 6px 12px; border-radius: 7px; backdrop-filter: blur(2px);
}
.ph.dark {
  background: repeating-linear-gradient(135deg, #0c2d5c 0 14px, #0f3366 14px 28px);
  border-color: rgba(255,255,255,.12);
}
.ph.dark::after { background: rgba(255,255,255,.1); color: #b9cde8; }
.ph.has-img{display:block;background:none;border-color:transparent;min-height:0}
.ph.has-img::after{display:none}
.ph.has-img img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block}
.ratio-43 { aspect-ratio: 4/3; }
.ratio-11 { aspect-ratio: 1/1; }
.ratio-32 { aspect-ratio: 3/2; }
.ratio-169 { aspect-ratio: 16/9; }
.ratio-45 { aspect-ratio: 4/5; }

/* ============================================================
   Top utility bar
   ============================================================ */
.topbar {
  background: var(--blue-darker); color: #cfe0f4;
  font-size: 13.5px;
}
.topbar .wrap { display: flex; align-items: center; gap: 22px; min-height: 42px; flex-wrap: wrap; }
.topbar a { display: inline-flex; align-items: center; gap: 7px; color: #cfe0f4; transition: color .15s; }
.topbar a:hover { color: #fff; }
.topbar svg { width: 14px; height: 14px; opacity: .8; }
.topbar .sep { flex: 1; }
.topbar .usp { display: inline-flex; align-items: center; gap: 7px; color: #9ec3f0; }
.topbar .usp svg { color: #6fa8e8; }

/* ============================================================
   Header / nav
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s, border-color .25s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); }
.nav { display: flex; align-items: center; gap: 30px; min-height: 78px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 42px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.nav-links a {
  font-family: var(--display); font-weight: 600; font-size: 15.5px; color: var(--ink-2);
  padding: 10px 14px; border-radius: 9px; transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--blue); background: var(--blue-tint); }
.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.nav-phone { display: inline-flex; align-items: center; gap: 9px; font-family: var(--display); font-weight: 700; color: var(--ink); }
.nav-phone svg { width: 18px; height: 18px; color: var(--blue); }
.nav-toggle { display: none; }

/* mobile nav */
.mobile-nav {
  display: none; flex-direction: column; gap: 4px;
  padding: 12px var(--gut) 24px; border-top: 1px solid var(--line); background: #fff;
}
.mobile-nav a { font-family: var(--display); font-weight: 600; padding: 13px 6px; border-bottom: 1px solid var(--line-2); }
.mobile-nav .btn { margin-top: 14px; }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px);
  align-items: center; padding-block: clamp(48px, 7vw, 96px);
}
.hero h1 { margin-bottom: 6px; }
.hero h1 .accent { color: var(--blue); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.hero-trust { display: flex; align-items: center; gap: 18px; margin-top: 34px; flex-wrap: wrap; }
.hero-trust .stars { color: var(--blue); font-size: 17px; letter-spacing: 2px; }
.hero-trust .t-text { font-size: 14.5px; color: var(--slate); }
.hero-trust .t-text strong { color: var(--ink); }

.hero-media { position: relative; }
.hero-media .ph { box-shadow: var(--shadow-lg); }
.hero-badge {
  position: absolute; left: -22px; bottom: 30px;
  background: #fff; border-radius: var(--radius); padding: 16px 20px;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 14px;
  border: 1px solid var(--line);
}
.hero-badge .ico { width: 44px; height: 44px; border-radius: 11px; background: var(--blue-tint); display: grid; place-items: center; color: var(--blue); }
.hero-badge .ico svg { width: 24px; height: 24px; }
.hero-badge .big { font-family: var(--display); font-weight: 800; font-size: 22px; line-height: 1; }
.hero-badge .lbl { font-size: 13px; color: var(--slate); }
.hero-blob {
  position: absolute; z-index: -1; width: 60%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, var(--blue-tint) 0, transparent 70%);
  top: -10%; right: -8%;
}

/* ============================================================
   Logo strip / trust
   ============================================================ */
.logos { border-block: 1px solid var(--line); background: var(--mist); }
.logos .wrap { display: flex; align-items: center; gap: clamp(20px,4vw,56px); flex-wrap: wrap; justify-content: center; padding-block: 30px; }
.logos .label { font-family: var(--display); font-weight: 600; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--slate-2); }
.logo-item { height: 30px; min-width: 92px; border-radius: 6px; background: repeating-linear-gradient(135deg,#e3e9f1 0 10px,#e9eef5 10px 20px); display: grid; place-items: center; }
.logo-item span { font-family: "Spline Sans Mono", monospace; font-size: 10px; color: #9aa6b6; letter-spacing: .1em; }

/* ============================================================
   Stats band
   ============================================================ */
.stats { background: linear-gradient(135deg, var(--blue-dark), var(--blue-darker)); color: #fff; position: relative; overflow: hidden; }
.stats::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 85% 20%, rgba(40,104,184,.5),transparent 55%); }
.stats .wrap { position: relative; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap: 30px; }
.stat .num { font-family: var(--display); font-weight: 800; font-size: clamp(40px,5vw,60px); line-height: 1; letter-spacing: -.03em; }
.stat .num .u { color: #6fa8e8; }
.stat .lbl { margin-top: 10px; color: #b9cee8; font-size: 15px; }

/* ============================================================
   Section header
   ============================================================ */
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: clamp(34px,4vw,56px); flex-wrap: wrap; }
.sec-head .intro { max-width: 56ch; }
.sec-head h2 { margin-top: 16px; }

/* ============================================================
   Services
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.svc-card {
  position: relative; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; background: #fff; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
  display: flex; flex-direction: column;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--blue-tint-2); }
.svc-card .media { aspect-ratio: 16/10; }
.svc-card .media .ph { height: 100%; border: none; border-radius: 0; }
.svc-card .body { padding: 26px 26px 30px; flex: 1; display: flex; flex-direction: column; }
.svc-card .num { font-family: var(--display); font-weight: 700; font-size: 13px; color: var(--blue); letter-spacing: .1em; }
.svc-card h3 { font-size: 24px; margin: 8px 0 10px; }
.svc-card p { color: var(--slate); font-size: 15.5px; }
.svc-card .tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: auto; padding-top: 18px; }
.svc-card .link-arrow { margin-top: 18px; font-size: 15px; }

/* ============================================================
   B2B feature (split)
   ============================================================ */
.feature { background: var(--mist); }
.feature-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(36px,5vw,72px); align-items: center; }
.feature-media { position: relative; }
.feature-media .ph { box-shadow: var(--shadow-md); }
.feature-list { display: grid; gap: 18px; margin-top: 30px; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-item .ico { flex: none; width: 46px; height: 46px; border-radius: 12px; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; color: var(--blue); box-shadow: var(--shadow-sm); }
.feature-item .ico svg { width: 23px; height: 23px; }
.feature-item h4 { font-family: var(--display); font-size: 18px; font-weight: 700; margin-bottom: 3px; }
.feature-item p { color: var(--slate); font-size: 15px; }

/* ============================================================
   Process
   ============================================================ */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; counter-reset: step; }
.step { position: relative; }
.step .n { font-family: var(--display); font-weight: 800; font-size: 16px; width: 44px; height: 44px; border-radius: 50%; background: var(--blue); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-blue); }
.step h4 { font-family: var(--display); font-size: 19px; font-weight: 700; margin: 18px 0 8px; }
.step p { color: var(--slate); font-size: 15px; }
.step:not(:last-child)::after { content:""; position: absolute; top: 22px; left: 56px; right: -12px; height: 2px; background: linear-gradient(90deg, var(--blue-tint-2), transparent); }

/* ============================================================
   Featured case study
   ============================================================ */
.case { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.case .wrap { position: relative; }
.case-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(34px,5vw,64px); align-items: center; }
.case-media .ph { box-shadow: var(--shadow-lg); }
.case h2 { color: #fff; }
.case .lede { color: #c2cbd6; }
.case-stats { display: flex; gap: 36px; margin-top: 30px; flex-wrap: wrap; }
.case-stats .num { font-family: var(--display); font-weight: 800; font-size: 38px; color: #fff; line-height: 1; }
.case-stats .num .u { color: #6fa8e8; }
.case-stats .lbl { color: #8a94a3; font-size: 14px; margin-top: 6px; }
.case .pill { background: rgba(110,168,232,.16); color: #9ec3f0; }

/* ============================================================
   Testimonials
   ============================================================ */
.quotes-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.quote {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 28px;
  display: flex; flex-direction: column; gap: 18px;
}
.quote .mark { font-family: var(--display); font-weight: 800; font-size: 54px; color: var(--blue-tint-2); line-height: .6; height: 28px; }
.quote p { font-size: 16.5px; color: var(--ink-2); line-height: 1.55; flex: 1; }
.quote .by { display: flex; align-items: center; gap: 13px; }
.quote .av { width: 46px; height: 46px; border-radius: 50%; background: var(--blue-tint); border: 1px solid var(--line); flex: none; }
.quote .by .name { font-family: var(--display); font-weight: 700; font-size: 15px; }
.quote .by .role { font-size: 13.5px; color: var(--slate); }

/* ============================================================
   CTA band
   ============================================================ */
.cta { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: #fff; border-radius: var(--radius-lg); position: relative; overflow: hidden; }
.cta-inner { padding: clamp(40px,5vw,68px); display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; position: relative; }
.cta::before { content:""; position:absolute; right:-6%; top:-40%; width:50%; aspect-ratio:1; border-radius:50%; background: radial-gradient(circle, rgba(255,255,255,.14), transparent 70%); }
.cta h2 { color: #fff; }
.cta .lede { color: #d6e4f5; }
.cta-card { background: #fff; border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-lg); }
.cta-card h3 { font-size: 20px; margin-bottom: 4px; }
.cta-card .sub { color: var(--slate); font-size: 14.5px; margin-bottom: 18px; }
.field { margin-bottom: 12px; }
.field label { display: block; font-family: var(--display); font-weight: 600; font-size: 13px; color: var(--ink-2); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--body); font-size: 15px; color: var(--ink);
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px; background: var(--mist); transition: border-color .15s, background .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); background: #fff; }
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chips .chip { padding: 9px 14px; border: 1.5px solid var(--line); border-radius: 999px; font-family: var(--display); font-weight: 600; font-size: 13.5px; color: var(--slate); cursor: pointer; transition: all .15s; }
.chips .chip:hover { border-color: var(--blue); color: var(--blue); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--blue-darker); color: #aebfd6; padding-block: clamp(54px,7vw,86px) 0; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.site-footer h5 { font-family: var(--display); font-weight: 700; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.site-footer a { display: block; padding: 6px 0; color: #aebfd6; transition: color .15s; font-size: 15px; }
.site-footer a:hover { color: #fff; }
.foot-brand img { height: 40px; margin-bottom: 18px; }
.foot-brand p { color: #8ba0bf; font-size: 15px; max-width: 32ch; }
.foot-contact { display: grid; gap: 10px; margin-top: 20px; }
.foot-contact a { display: inline-flex; align-items: center; gap: 10px; padding: 0; }
.foot-contact svg { width: 16px; height: 16px; color: #6fa8e8; flex: none; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: clamp(40px,5vw,64px); padding-block: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px; color: #7e93b3; }
.foot-bottom .socials { display: flex; gap: 10px; }
.foot-bottom .socials a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.15); display: grid; place-items: center; padding: 0; }
.foot-bottom .socials a:hover { background: rgba(255,255,255,.1); }
.foot-bottom .socials svg { width: 17px; height: 17px; }

/* ============================================================
   Reveal-on-scroll
   ============================================================ */
/* ============================================================
   Reveal-on-scroll — content is ALWAYS visible.
   Entrance is a subtle, optional transform-only rise, so a
   throttled/frozen animation or absent JS never hides content.
   ============================================================ */
.reveal { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  @keyframes om-rise { from { transform: translateY(16px); } to { transform: none; } }
  .reveal.in { animation: om-rise .6s var(--ease) both; }
}
@media print {
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid, .feature-grid, .case-grid, .cta-inner { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 36px 24px; }
  .process-grid { grid-template-columns: repeat(2,1fr); gap: 36px 24px; }
  .step::after { display: none; }
  .quotes-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: inline-grid; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .svc-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .topbar .usp { display: none; }
  .cta-card { order: -1; }
}

/* nav toggle button */
.nav-toggle { margin-left: auto; appearance: none; background: var(--blue); color: #fff; border: none; width: 46px; height: 46px; border-radius: 11px; cursor: pointer; place-items: center; }
.nav-toggle svg { width: 22px; height: 22px; }
