/* =============================================================
   Primo Tours — Site stylesheet
   Bouwt verder op tokens.css (design system).
   ============================================================= */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg-canvas);
  color: var(--fg-1);
  font-family: var(--font-body);
  font-weight: 200;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

.wrap { max-width: 1360px; margin: 0 auto; padding: 0 56px; }
@media (max-width: 720px) { .wrap { padding: 0 22px; } }

/* ---------- Reusable type ---------- */
.eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--pt-sky);
  display: inline-flex; align-items: center; gap: 14px;
}
.eyebrow::before { content: ""; display: inline-block; width: 28px; height: 1px; background: var(--pt-sky); }
.eyebrow.center { justify-content: center; }
.display { font-family: var(--font-display); font-weight: 400; line-height: 1.02; letter-spacing: -0.005em; }
.display .ac, .ac { color: var(--pt-sky); font-style: italic; }
.lead { font-size: 18px; line-height: 1.55; color: var(--fg-2); font-weight: 200; max-width: 56ch; }
.small-cap { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; color: var(--fg-3); }

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-body); font-weight: 500; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 16px 30px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: all 200ms cubic-bezier(0.2,0.7,0.2,1);
  display: inline-flex; align-items: center; gap: 10px; line-height: 1;
}
.btn-primary { background: var(--pt-sky); color: #000; }
.btn-primary:hover { background: var(--pt-sky-soft); }
.btn-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,0.32); }
.btn-secondary:hover { border-color: var(--pt-sky); color: var(--pt-sky); }
.btn .arrow { transition: transform 200ms cubic-bezier(0.2,0.7,0.2,1); }
.btn:hover .arrow { transform: translateX(4px); }
.btn svg { width: 14px; height: 14px; }

.btn-sm { padding: 12px 22px; font-size: 11px; }

/* ---------- Top utility bar ---------- */
.utility { background: #000; border-bottom: 1px solid var(--border-hair); }
.utility-inner {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fg-3); height: 36px;
}
.utility-left { display: flex; align-items: center; gap: 24px; }
.utility-left .dot { width: 6px; height: 6px; background: var(--pt-sky); border-radius: 50%; display: inline-block; margin-right: 10px; }
.utility-right { display: flex; align-items: center; gap: 18px; }
.utility-right a { transition: color 140ms; }
.utility-right a:hover { color: var(--pt-sky); }
.lang { display: inline-flex; gap: 6px; }
.lang span { padding: 2px 5px; cursor: pointer; }
.lang span.active { color: var(--pt-sky); }
@media (max-width: 720px) { .utility-left .pieces { display: none; } }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  transition: background 240ms, backdrop-filter 240ms, border-color 240ms;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border-hair);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 88px; transition: height 240ms; }
.nav.scrolled .nav-inner { height: 72px; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { width: 56px; height: 56px; object-fit: contain; transition: width 240ms, height 240ms; }
.nav.scrolled .brand img { width: 44px; height: 44px; }
.brand .wm { font-family: var(--font-display); font-size: 22px; letter-spacing: 0.06em; color: #fff; line-height: 1; }
.brand .wm em { color: var(--pt-sky); font-style: italic; font-weight: 400; }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links > a, .nav-links > .has-sub > a {
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 200; color: #fff; padding: 8px 0; position: relative;
}
.nav-links > a::after, .nav-links > .has-sub > a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--pt-sky);
  transform: scaleX(0); transform-origin: left;
  transition: transform 240ms cubic-bezier(0.2,0.7,0.2,1);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links .has-sub { position: relative; }
.nav-links .has-sub > a::before {
  content: ""; position: absolute; right: -14px; top: 50%;
  transform: translateY(-30%) rotate(45deg);
  width: 5px; height: 5px;
  border-right: 1px solid currentColor; border-bottom: 1px solid currentColor;
  opacity: 0.6;
}
.submenu {
  position: absolute; top: calc(100% + 6px); left: -20px;
  background: var(--pt-charcoal); border: 1px solid var(--border-hair);
  padding: 14px 0; min-width: 280px;
  opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: all 200ms;
}
.has-sub:hover .submenu { opacity: 1; visibility: visible; transform: none; }
.submenu a { display: block; padding: 11px 26px; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: #fff; }
.submenu a:hover { background: rgba(255,255,255,0.04); color: var(--pt-sky); }
.submenu a::after { display: none; }

.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-phone { display: flex; align-items: center; gap: 8px; font-size: 13px; letter-spacing: 0.04em; color: var(--fg-1); }
.nav-phone svg { width: 14px; height: 14px; color: var(--pt-sky); }

.burger { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; }
.burger svg { width: 22px; height: 22px; }
@media (max-width: 980px) {
  .nav-links, .nav-phone { display: none; }
  .nav-right .btn { display: none; }   /* geen Boek/Offerte-knoppen in de mobiele balk */
  .burger { display: inline-flex; }
}

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed; inset: 0; background: rgba(0,0,0,0.96); z-index: 100;
  padding: 96px 28px 40px;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  transform: translateY(-100%);
  transition: transform 320ms cubic-bezier(0.6,0,0.2,1);
}
.mobile-menu.open { transform: none; }
.mobile-menu .close {
  position: absolute; top: 24px; right: 24px; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu nav a {
  font-family: var(--font-display); font-size: 28px; font-weight: 400; color: #fff;
  padding: 14px 0; border-bottom: 1px solid var(--border-hair);
}
.mobile-menu nav a.sub { font-size: 18px; padding-left: 16px; color: var(--fg-2); }
.mobile-menu nav a:last-child { border-bottom: none; }

/* ---------- Hero (homepage, met booking widget) ---------- */
.hero { position: relative; min-height: 90vh; padding: 140px 0 70px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9) brightness(0.88) contrast(1.02); }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.15) 35%, rgba(0,0,0,0.75) 100%); }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: end; min-height: calc(90vh - 210px); }
.hero-copy { padding-bottom: 24px; }
.hero h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(56px, 7vw, 112px); line-height: 0.98; margin: 24px 0 28px; letter-spacing: -0.01em; }
.hero p { font-size: 18px; line-height: 1.55; color: rgba(255,255,255,0.82); max-width: 50ch; margin: 0 0 36px; font-weight: 200; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-watermark { position: absolute; right: -120px; bottom: -120px; width: 720px; height: 720px; opacity: 0.04; z-index: 1; pointer-events: none; }
.hero-meta { position: absolute; left: 56px; bottom: 32px; z-index: 3; display: flex; gap: 36px; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.hero-meta span::before { content: "·"; margin-right: 18px; color: var(--pt-sky); }
.hero-meta span:first-child::before { display: none; }
@media (max-width: 980px) { .hero-inner { grid-template-columns: 1fr; align-items: start; padding-top: 40px; } .hero-watermark { display: none; } .hero-meta { display: none; } }

/* Hero variant: full-width zonder booking widget — gecentreerd, titel max 90px, twee regels */
.hero-wide .hero-inner { grid-template-columns: 1fr; align-items: center; justify-items: center; }
.hero-wide .hero-copy { max-width: 980px; margin: 0 auto; padding-bottom: 0; text-align: left; }
.hero-wide .hero-copy h1 { font-size: clamp(44px, 6vw, 90px); line-height: 1.05; }
.hero-wide .hero-copy p { font-size: 20px; max-width: 64ch; }
@media (max-width: 720px) { .hero-wide .hero-copy h1 { font-size: clamp(36px, 9vw, 64px); } .hero-wide .hero-copy p { font-size: 17px; } }

/* ---------- Page hero (subpagina's) ---------- */
.page-hero { position: relative; padding: 200px 0 120px; overflow: hidden; min-height: 60vh; display: flex; align-items: flex-end; }
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9) brightness(0.78) contrast(1.02); }
.page-hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.8) 100%); }
.page-hero-inner { position: relative; z-index: 2; max-width: 920px; padding-bottom: 24px; }
.page-hero h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(44px, 6vw, 88px); line-height: 1.02; margin: 24px 0 24px; letter-spacing: -0.005em; }
.page-hero .breadcrumb { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--fg-3); margin-bottom: 8px; }
.page-hero .breadcrumb a:hover { color: var(--pt-sky); }
.page-hero .breadcrumb .sep { margin: 0 10px; color: var(--pt-sky); }
.page-hero .lead { font-size: 19px; max-width: 60ch; color: rgba(255,255,255,0.85); }
@media (max-width: 720px) { .page-hero { padding: 150px 0 80px; } }

/* ---------- Booking widget ---------- */
.booking { background: rgba(15,15,15,0.9); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.12); padding: 32px 30px 28px; border-radius: 4px; }
.booking-tabs { display: flex; gap: 0; margin-bottom: 26px; border-bottom: 1px solid var(--border-hair); }
.booking-tab { flex: 1; padding: 12px 0; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; color: var(--fg-3); border-bottom: 1px solid transparent; margin-bottom: -1px; transition: color 200ms, border-color 200ms; }
.booking-tab.active { color: var(--pt-sky); border-color: var(--pt-sky); }
.booking-field { display: flex; flex-direction: column; gap: 6px; padding: 14px 0; border-bottom: 1px solid var(--border-hair); }
.booking-field label { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--fg-3); font-weight: 500; }
.booking-field input, .booking-field select { background: transparent; border: 0; color: #fff; font-family: var(--font-body); font-weight: 200; font-size: 16px; padding: 0; outline: none; }
.booking-field input::placeholder { color: rgba(255,255,255,0.32); }
.booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
.booking-grid .booking-field { padding-right: 12px; }
.booking .btn { width: 100%; justify-content: center; margin-top: 22px; }

/* ---------- Sections ---------- */
section { padding: 120px 0; }
.section-head { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; margin-bottom: 64px; align-items: end; }
.section-head h2, .section-h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(36px, 4vw, 58px); line-height: 1.05; margin: 16px 0 0; letter-spacing: -0.005em; }
.section-head p { font-size: 17px; line-height: 1.55; color: var(--fg-2); margin: 0; }
.section-head.center { display: block; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
@media (max-width: 980px) { .section-head { grid-template-columns: 1fr; gap: 24px; } section { padding: 80px 0; } }

/* ---------- Trust strip ---------- */
.trust { padding: 28px 0 !important; border-top: 1px solid var(--border-hair); border-bottom: 1px solid var(--border-hair); background: #050505; }
.trust-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; align-items: center; }
.trust-item { padding: 0 36px; border-left: 1px solid var(--border-hair); display: flex; align-items: center; gap: 16px; }
.trust-item:first-child { border-left: 0; padding-left: 0; }
.trust-item svg { width: 22px; height: 22px; color: var(--pt-sky); flex-shrink: 0; stroke-width: 1.25; }
.trust-item .num { font-family: var(--font-display); font-size: 22px; line-height: 1; }
.trust-item .lbl { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--fg-3); margin-top: 4px; }
@media (max-width: 720px) {
    .trust-inner { grid-template-columns: 1fr 1fr; gap: 24px 14px; }
    .trust-item { padding: 0; border-left: 0; gap: 12px; min-width: 0; }
    .trust-item > div { min-width: 0; }
    .trust-item .num { font-size: 17px; overflow-wrap: break-word; word-break: break-word; }
    .trust-item .lbl { font-size: 10px; letter-spacing: 0.14em; }
}

/* ---------- Services grid ---------- */
.services { background: #000; }
.service-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.service-card { background: var(--pt-charcoal); border: 1px solid var(--border-hair); padding: 30px 26px 28px; display: flex; flex-direction: column; position: relative; overflow: hidden; min-height: 380px; transition: border-color 280ms; cursor: pointer; text-decoration: none; }
.service-card:hover { border-color: var(--pt-sky); }
.service-card .icon-wrap { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--border-soft); border-radius: 50%; margin-bottom: 26px; transition: border-color 280ms, background 280ms; }
.service-card:hover .icon-wrap { border-color: var(--pt-sky); background: rgba(164,207,214,0.06); }
.service-card .icon-wrap svg { width: 18px; height: 18px; color: var(--pt-sky); stroke-width: 1.25; }
.service-card .num { font-family: var(--font-body); font-size: 10px; letter-spacing: 0.28em; color: var(--fg-3); font-weight: 500; margin-bottom: 10px; }
.service-card h3 { font-family: var(--font-display); font-weight: 400; font-size: 26px; line-height: 1.1; margin: 0 0 14px; letter-spacing: -0.005em; color: #fff; }
.service-card p { font-size: 14px; line-height: 1.55; color: var(--fg-2); margin: 0 0 22px; font-weight: 200; flex: 1; }
.service-card .more { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: #fff; }
.service-card .more svg { width: 14px; height: 14px; transition: transform 240ms, color 240ms; }
.service-card:hover .more svg { transform: translateX(4px); color: var(--pt-sky); }

@media (max-width: 1100px) { .service-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .service-grid { grid-template-columns: 1fr 1fr; } .service-card { min-height: 320px; } }
@media (max-width: 440px) { .service-grid { grid-template-columns: 1fr; } }

/* ---------- Diensten overzicht (volledige cards met foto) ---------- */
.svc-list { display: grid; gap: 24px; }
.svc-row { display: grid; grid-template-columns: 1fr 1.3fr; gap: 0; background: var(--pt-charcoal); border: 1px solid var(--border-hair); transition: border-color 280ms; overflow: hidden; }
.svc-row:hover { border-color: var(--pt-sky); }
.svc-row.reverse { grid-template-columns: 1.3fr 1fr; }
.svc-row .img { position: relative; min-height: 320px; overflow: hidden; }
.svc-row .img img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms cubic-bezier(0.2,0.7,0.2,1); filter: saturate(0.85) brightness(0.85); }
.svc-row:hover .img img { transform: scale(1.04); }
.svc-row .copy { padding: 56px 56px; display: flex; flex-direction: column; justify-content: center; }
.svc-row .copy h3 { font-family: var(--font-display); font-weight: 400; font-size: clamp(28px, 2.6vw, 40px); line-height: 1.1; margin: 16px 0 14px; }
.svc-row .copy p { font-size: 16px; line-height: 1.6; color: var(--fg-2); margin: 0 0 24px; max-width: 50ch; }
.svc-row .copy .more { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: #fff; align-self: flex-start; padding-bottom: 4px; border-bottom: 1px solid var(--border-soft); transition: border-color 240ms, color 240ms; }
.svc-row .copy .more:hover { color: var(--pt-sky); border-color: var(--pt-sky); }
.svc-row .copy .more svg { width: 14px; height: 14px; transition: transform 240ms; }
.svc-row .copy .more:hover svg { transform: translateX(4px); }

/* Hele rij klikbaar (stretched link) + losse boek-knop */
.svc-row { position: relative; cursor: pointer; }
.svc-row-actions { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; margin-top: 4px; }
.svc-row-actions .more { align-self: auto; }
.svc-row .more::after { content: ""; position: absolute; inset: 0; z-index: 1; }   /* bedekt de hele rij */
.svc-row .svc-book { position: relative; z-index: 2; }                              /* boek-knop houdt eigen klik */
@media (max-width: 900px) { .svc-row, .svc-row.reverse { grid-template-columns: 1fr; } .svc-row .copy { padding: 40px 28px; } .svc-row .img { min-height: 240px; } }

/* ---------- Service detail page ---------- */
.svc-detail-intro { background: #000; }
.svc-detail-intro-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.svc-detail-intro h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(32px, 3.4vw, 50px); line-height: 1.1; margin: 16px 0 28px; }
.svc-detail-intro p.lead { font-size: 18px; line-height: 1.6; color: var(--fg-2); margin: 0 0 24px; max-width: none; }
.svc-detail-intro p { font-size: 16px; line-height: 1.65; color: var(--fg-2); margin: 0 0 16px; }
@media (max-width: 900px) { .svc-detail-intro-inner { grid-template-columns: 1fr; gap: 32px; } }

.usp-section { background: #050505; }
.usp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 52px; }
.usp { display: flex; gap: 22px; align-items: flex-start; }   /* geen kader meer — open lijst */
.usp .icon { width: 54px; height: 54px; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--border-soft); border-radius: 50%; }
.usp .icon svg { width: 24px; height: 24px; color: var(--pt-sky); stroke-width: 1.25; }
.usp .text { font-size: 18px; line-height: 1.55; color: var(--fg-1); font-weight: 200; padding-top: 13px; }
@media (max-width: 720px) { .usp-grid { grid-template-columns: 1fr; gap: 26px; } }

/* Related services on a service-detail page */
.related { background: #000; padding-top: 80px !important; padding-bottom: 120px !important; border-top: 1px solid var(--border-hair); }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.related-card { background: var(--pt-charcoal); border: 1px solid var(--border-hair); padding: 26px 24px; display: flex; flex-direction: column; gap: 10px; transition: border-color 280ms; }
.related-card:hover { border-color: var(--pt-sky); }
.related-card .icon { width: 32px; height: 32px; border: 1px solid var(--border-soft); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; }
.related-card .icon svg { width: 14px; height: 14px; color: var(--pt-sky); }
.related-card h4 { font-family: var(--font-display); font-weight: 400; font-size: 20px; line-height: 1.1; margin: 8px 0 4px; color: #fff; }
.related-card .more { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--fg-3); margin-top: auto; }
.related-card:hover .more { color: var(--pt-sky); }
@media (max-width: 980px) { .related-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .related-grid { grid-template-columns: 1fr; } }

/* ---------- About page ---------- */
.about { background: #000; }
.about-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.about-img { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.about-img img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.05); }
.about-img .tag { position: absolute; left: 22px; bottom: 22px; padding: 8px 14px; background: rgba(0,0,0,0.6); border: 1px solid var(--border-hair); backdrop-filter: blur(10px); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; }
.about-copy h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(36px, 4vw, 58px); line-height: 1.05; margin: 18px 0 28px; }
.about-copy .quote { font-family: var(--font-display); font-size: 22px; line-height: 1.4; color: #fff; padding: 24px 0; border-top: 1px solid var(--border-hair); border-bottom: 1px solid var(--border-hair); margin: 28px 0; font-style: italic; }
.about-copy p { font-size: 16px; line-height: 1.6; color: var(--fg-2); font-weight: 200; margin: 0 0 20px; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 36px; padding-top: 32px; border-top: 1px solid var(--border-hair); }
.about-stats .num { font-family: var(--font-display); font-size: 44px; line-height: 1; }
.about-stats .lbl { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--fg-3); margin-top: 8px; }
@media (max-width: 980px) { .about-inner { grid-template-columns: 1fr; gap: 40px; } .about-img { aspect-ratio: 4/3; } }

/* Three values column (driven by passion / family / service) */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 40px; }
.value-col { padding: 36px; border-left: 1px solid var(--border-hair); }
.value-col:first-child { border-left: 0; padding-left: 0; }
.value-col .eyebrow { color: var(--pt-sky); margin-bottom: 16px; }
.value-col h3 { font-family: var(--font-display); font-weight: 400; font-size: 26px; line-height: 1.1; margin: 0 0 16px; color: #fff; }
.value-col h3 .ac { color: var(--pt-sky); font-style: italic; }
.value-col p { font-size: 15px; line-height: 1.6; color: var(--fg-2); margin: 0; }
@media (max-width: 980px) { .values-grid { grid-template-columns: 1fr; } .value-col { border-left: 0; padding: 28px 0; border-top: 1px solid var(--border-hair); } .value-col:first-child { border-top: 0; padding-top: 0; } }

/* ---------- Fleet ---------- */
.fleet { background: #050505; }
.fleet-rail { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.fleet-card { background: var(--pt-charcoal); border: 1px solid var(--border-hair); overflow: hidden; transition: border-color 280ms; cursor: pointer; }
.fleet-card:hover { border-color: var(--pt-sky); }
.fleet-card .ph { aspect-ratio: 4/3; overflow: hidden; background: #0a0a0a; }
.fleet-card .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms cubic-bezier(0.2,0.7,0.2,1); }
.fleet-card:hover .ph img { transform: scale(1.05); }
.fleet-card .body { padding: 24px 26px 26px; }
.fleet-card .cap { font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--pt-sky); font-weight: 500; }
.fleet-card h4 { font-family: var(--font-display); font-weight: 400; font-size: 26px; margin: 8px 0 6px; line-height: 1.1; color: #fff; }
.fleet-card .meta { font-size: 13px; color: var(--fg-2); display: flex; gap: 22px; font-weight: 200; }
.fleet-card .meta span { display: inline-flex; align-items: center; gap: 6px; }
.fleet-card .meta svg { width: 14px; height: 14px; color: var(--fg-3); }
@media (max-width: 980px) { .fleet-rail { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .fleet-rail { grid-template-columns: 1fr; } }

/* ---------- Coverage ---------- */
.coverage { background: #000; }
.coverage-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.coverage-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
.coverage-col { display: flex; flex-direction: column; }
.coverage-col h4 { font-family: var(--font-body); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--pt-sky); margin: 0 0 18px; font-weight: 500; }
.coverage-col ul { list-style: none; margin: 0 0 32px; padding: 0; }
.coverage-col li { font-family: var(--font-display); font-size: 22px; line-height: 1.45; color: #fff; font-weight: 400; padding: 4px 0; }
.coverage-col li small { font-family: var(--font-body); font-size: 12px; color: var(--fg-3); margin-left: 8px; letter-spacing: 0.04em; font-weight: 200; }
@media (max-width: 980px) { .coverage-inner { grid-template-columns: 1fr; gap: 40px; } }
@media (max-width: 540px) { .coverage-list { grid-template-columns: 1fr; } }

/* ---------- Process ---------- */
.process { background: #050505; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.process-step { padding: 36px 36px 36px 0; border-left: 1px solid var(--border-hair); padding-left: 36px; }
.process-step:first-child { border-left: 0; padding-left: 0; }
.process-step .num { font-family: var(--font-display); font-style: italic; font-size: 56px; color: var(--pt-sky); line-height: 1; margin-bottom: 18px; }
.process-step h4 { font-family: var(--font-display); font-weight: 400; font-size: 26px; margin: 0 0 12px; color: #fff; }
.process-step p { font-size: 15px; line-height: 1.55; color: var(--fg-2); margin: 0; font-weight: 200; }
@media (max-width: 980px) { .process-grid { grid-template-columns: 1fr; gap: 0; } .process-step { border-left: 0; padding-left: 0; border-top: 1px solid var(--border-hair); padding-top: 28px; margin-top: 28px; } .process-step:first-child { border-top: 0; margin-top: 0; padding-top: 0; } }

/* ---------- Testimonial ---------- */
.testimonial { background: #000; position: relative; overflow: hidden; }
.testimonial::before { content: "\201C"; position: absolute; left: -30px; top: -80px; font-family: var(--font-display); font-size: 540px; color: var(--pt-sky); opacity: 0.04; line-height: 1; }
.testimonial-inner { position: relative; text-align: center; max-width: 920px; margin: 0 auto; }
.testimonial blockquote { font-family: var(--font-display); font-weight: 400; font-size: clamp(28px, 3.4vw, 48px); line-height: 1.25; margin: 28px 0; color: #fff; }
.testimonial cite { font-style: normal; font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--fg-3); }
.testimonial cite strong { color: #fff; font-weight: 500; margin-right: 12px; }

/* ---------- CTA strip ---------- */
.cta-strip { padding: 100px 0; background: #050505; position: relative; overflow: hidden; }
.cta-strip-bg { position: absolute; inset: 0; opacity: 0.25; }
.cta-strip-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.45); }
.cta-strip-inner { position: relative; display: grid; grid-template-columns: 1.4fr auto; gap: 60px; align-items: center; }
.cta-strip h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(36px, 4.2vw, 64px); line-height: 1.05; margin: 0; letter-spacing: -0.005em; }
.cta-strip .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 980px) { .cta-strip-inner { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- FAQ accordion ---------- */
.faq { background: #000; }
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item { border-top: 1px solid var(--border-hair); }
.faq-item:last-child { border-bottom: 1px solid var(--border-hair); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 28px;
  width: 100%; padding: 26px 0; cursor: pointer;
  font-family: var(--font-display); font-weight: 400; font-size: clamp(20px, 2vw, 26px);
  line-height: 1.25; color: #fff; text-align: left;
}
.faq-q:hover { color: var(--pt-sky); }
.faq-q .ic {
  width: 36px; height: 36px; border: 1px solid var(--border-soft); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform 240ms cubic-bezier(0.2,0.7,0.2,1), border-color 240ms;
}
.faq-q .ic svg { width: 14px; height: 14px; color: var(--pt-sky); }
.faq-item.open .faq-q .ic { transform: rotate(45deg); border-color: var(--pt-sky); }
.faq-a {
  overflow: hidden; max-height: 0;
  transition: max-height 320ms cubic-bezier(0.2,0.7,0.2,1);
}
.faq-item.open .faq-a { max-height: 600px; }
.faq-a-inner { padding: 0 0 28px; font-size: 16px; line-height: 1.65; color: var(--fg-2); max-width: 64ch; }

/* ---------- Footer ---------- */
footer { background: #000; padding: 80px 0 32px; border-top: 1px solid var(--border-hair); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand img { width: 88px; height: 88px; object-fit: contain; margin-bottom: 22px; }
.footer-brand p { font-size: 14px; line-height: 1.6; color: var(--fg-2); margin: 0 0 22px; max-width: 32ch; font-weight: 200; }
.footer-brand .socials { display: flex; gap: 10px; }
.footer-brand .socials a { width: 38px; height: 38px; border: 1px solid var(--border-soft); display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; transition: all 200ms; }
.footer-brand .socials a:hover { border-color: var(--pt-sky); color: var(--pt-sky); }
.footer-brand .socials svg { width: 14px; height: 14px; }

.footer-col h5 { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--pt-sky); font-weight: 500; margin: 6px 0 22px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 14px; color: var(--fg-2); transition: color 140ms; font-weight: 200; }
.footer-col a:hover { color: var(--pt-sky); }
.footer-col p { font-size: 14px; color: var(--fg-2); margin: 0 0 12px; line-height: 1.55; font-weight: 200; }

/* Contactgegevens met icoontjes */
.footer-contact p { display: flex; align-items: flex-start; gap: 11px; }
.footer-contact p svg { width: 16px; height: 16px; color: var(--pt-sky); flex-shrink: 0; margin-top: 3px; stroke-width: 1.5; }
.footer-contact p a:hover { color: var(--pt-sky); }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid var(--border-hair); font-size: 12px; color: var(--fg-3); letter-spacing: 0.04em; }
.footer-bottom .legal { display: flex; gap: 22px; }
.footer-bottom .legal a:hover { color: var(--pt-sky); }
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } .footer-bottom { flex-direction: column; gap: 14px; text-align: center; } }
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand img { margin-left: auto; margin-right: auto; }
  .footer-brand p { max-width: none; }
  .footer-brand .socials { justify-content: center; }
  .footer-contact p { justify-content: center; }
}

/* ---------- Floating phone (mobile) ---------- */
.float-cta { position: fixed; right: 18px; bottom: 18px; z-index: 80; width: 56px; height: 56px; background: var(--pt-sky); border-radius: 50%; display: none; align-items: center; justify-content: center; color: #000; box-shadow: 0 12px 28px rgba(0,0,0,0.4); }
.float-cta svg { width: 22px; height: 22px; }
@media (max-width: 720px) { .float-cta { display: inline-flex; } }

/* =============================================================
   Sky-bg variant — secties met sky achtergrond en donkere tekst
   ============================================================= */
.sky-bg { background: var(--pt-sky); color: var(--pt-ink); }
.sky-bg h2, .sky-bg h3, .sky-bg h4, .sky-bg p, .sky-bg li, .sky-bg blockquote { color: var(--pt-ink); }
.sky-bg .lead, .sky-bg p { color: rgba(10,10,10,0.78); }
.sky-bg .eyebrow { color: var(--pt-sky-ink); }
.sky-bg .eyebrow::before { background: var(--pt-sky-ink); }
.sky-bg .ac, .sky-bg .accent { color: var(--pt-sky-ink); font-style: italic; }
.sky-bg .quote, .sky-bg blockquote { border-color: rgba(10,10,10,0.18); color: var(--pt-ink); }
.sky-bg .btn-secondary { color: var(--pt-ink); border-color: rgba(10,10,10,0.32); }
.sky-bg .btn-secondary:hover { border-color: var(--pt-ink); color: var(--pt-ink); background: rgba(255,255,255,0.4); }

/* Process steps inverted op sky */
.sky-bg .process-step { border-left-color: rgba(10,10,10,0.16); }
.sky-bg .process-step .num { color: var(--pt-sky-ink); }
.sky-bg .process-step h4 { color: var(--pt-ink); }
.sky-bg .process-step p { color: rgba(10,10,10,0.72); }

/* USP-items op sky achtergrond (open lijst, geen kader) */
.sky-bg .usp .icon { border-color: rgba(10,10,10,0.24); }
.sky-bg .usp .icon svg { color: var(--pt-sky-ink); }
.sky-bg .usp .text { color: var(--pt-ink); }

/* CTA strip op sky — verberg de achtergrondfoto die er niet meer doorheen moet schijnen */
.cta-strip.sky-bg .cta-strip-bg { display: none; }
.cta-strip.sky-bg { padding: 80px 0; }
.cta-strip.sky-bg h2 { color: var(--pt-ink); }
.cta-strip.sky-bg .btn-primary { background: var(--pt-ink); color: var(--pt-sky); }
.cta-strip.sky-bg .btn-primary:hover { background: #1a1a1a; }

/* =============================================================
   Intro-with-photo — homepage intro sectie met foto naast tekst
   ============================================================= */
.intro-photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.intro-photo { position: relative; aspect-ratio: 4/3; overflow: hidden; border-radius: var(--radius-md); }
.intro-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.95) contrast(1.02); transition: transform 600ms cubic-bezier(0.2,0.7,0.2,1); }
.intro-photo:hover img { transform: scale(1.03); }
.intro-copy h2 { margin: 16px 0 24px; max-width: 22ch; }
.intro-copy p.lead { margin-top: 0; }
@media (max-width: 900px) { .intro-photo-grid { grid-template-columns: 1fr; gap: 40px; } }

/* =============================================================
   Globale border-radius — 8px op alle card-componenten
   ============================================================= */
.service-card,
.fleet-card,
.svc-row,
.related-card,
.about-img,
.intro-photo,
.fleet-card .ph {
  border-radius: var(--radius-md);
}
.fleet-card { overflow: hidden; }
.svc-row { overflow: hidden; }
.about-img { overflow: hidden; }

/* ---------- Reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms cubic-bezier(0.2,0.7,0.2,1), transform 700ms cubic-bezier(0.2,0.7,0.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 80ms; }
.reveal.d2 { transition-delay: 160ms; }
.reveal.d3 { transition-delay: 240ms; }
.reveal.d4 { transition-delay: 320ms; }

/* ---------- Testimonial rotator ---------- */
.testi-rotator { display: grid; margin: 28px 0; }
.testi-slide { grid-area: 1 / 1; opacity: 0; visibility: hidden; transition: opacity 600ms cubic-bezier(0.2,0.7,0.2,1); }
.testi-slide.active { opacity: 1; visibility: visible; }
.testi-slide blockquote { font-family: var(--font-display); font-weight: 400; font-size: clamp(28px, 3.4vw, 48px); line-height: 1.25; margin: 0 0 24px; color: #fff; }
.testi-slide cite { font-style: normal; font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--fg-3); }
.testi-slide cite strong { color: #fff; font-weight: 500; margin-right: 12px; }
.testi-dots { display: flex; justify-content: center; gap: 12px; margin-top: 8px; }
.testi-dot { width: 9px; height: 9px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.55); background: rgba(255,255,255,0.4); padding: 0; cursor: pointer; transition: background 240ms, border-color 240ms; }
.testi-dot:hover { border-color: var(--pt-sky); }
.testi-dot.active { background: var(--pt-sky); border-color: var(--pt-sky); }

/* Testimonial pijlen */
.testi-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--border-soft); background: rgba(0,0,0,0.25); display: inline-flex; align-items: center; justify-content: center; color: #fff; cursor: pointer; z-index: 3; transition: border-color 240ms, color 240ms, background 240ms; }
.testi-arrow:hover { border-color: var(--pt-sky); color: var(--pt-sky); background: rgba(0,0,0,0.45); }
.testi-arrow svg { width: 20px; height: 20px; }
.testi-arrow.prev { left: 0; }
.testi-arrow.next { right: 0; }
@media (max-width: 640px) { .testi-arrow { display: none; } }


/* =============================================================
   Fotogalerij-strook (full-width) + lightbox
   ============================================================= */
.gallery-strip { position: relative; width: 100%; overflow: hidden; background: #000; padding: 0; }
.gallery-track { display: flex; transition: transform 500ms cubic-bezier(0.2,0.7,0.2,1); }
.gallery-cell { flex: 0 0 20%; aspect-ratio: 1 / 1; background-size: cover; background-position: center; cursor: pointer; padding: 0; border: 0; display: block; transition: opacity 240ms; }
.gallery-cell:hover { opacity: 0.82; }
.gallery-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.45); background: rgba(0,0,0,0.45); color: #fff; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: background 200ms, border-color 200ms, color 200ms; }
.gallery-arrow:hover { background: rgba(0,0,0,0.7); border-color: var(--pt-sky); color: var(--pt-sky); }
.gallery-arrow svg { width: 22px; height: 22px; }
.gallery-arrow.prev { left: 14px; }
.gallery-arrow.next { right: 14px; }
@media (max-width: 980px) { .gallery-cell { flex-basis: 33.333%; } }
@media (max-width: 640px) { .gallery-cell { flex-basis: 50%; } .gallery-arrow { width: 40px; height: 40px; } }

.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,0.92); display: flex; align-items: center; justify-content: center; padding: 4vh 4vw; }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 96vw; max-height: 92vh; width: auto; height: auto; object-fit: contain; box-shadow: 0 24px 70px rgba(0,0,0,0.55); }
.lightbox-close { position: absolute; top: 22px; right: 24px; width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.45); background: rgba(0,0,0,0.4); color: #fff; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: border-color 200ms, color 200ms; }
.lightbox-close:hover { border-color: var(--pt-sky); color: var(--pt-sky); }
.lightbox-close svg { width: 24px; height: 24px; }

/* Lightbox-navigatiepijlen */
.lightbox-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.45); background: rgba(0,0,0,0.4); color: #fff; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: border-color 200ms, color 200ms, background 200ms; }
.lightbox-arrow:hover { border-color: var(--pt-sky); color: var(--pt-sky); background: rgba(0,0,0,0.7); }
.lightbox-arrow svg { width: 26px; height: 26px; }
.lightbox-arrow.prev { left: 20px; }
.lightbox-arrow.next { right: 20px; }
@media (max-width: 640px) { .lightbox-arrow { width: 42px; height: 42px; } .lightbox-arrow.prev { left: 8px; } .lightbox-arrow.next { right: 8px; } }

/* CTA-titel accent in het wit (i.p.v. donker op de sky-band) */
.cta-strip.sky-bg .ac { color: #fff; }
/* Footer-bottom links */
.footer-bottom a { color: inherit; }
.footer-bottom a:hover { color: var(--pt-sky); }

/* ---------- Tekstpagina (RTE-inhoud, bv. Privacy / Voorwaarden) ---------- */
.rte { font-size: 16px; line-height: 1.75; color: var(--fg-2); font-weight: 200; }
.rte h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(26px, 3vw, 40px); color: #fff; margin: 44px 0 16px; line-height: 1.15; }
.rte h3 { font-family: var(--font-display); font-weight: 400; font-size: 22px; color: #fff; margin: 30px 0 12px; }
.rte p { margin: 0 0 16px; }
.rte a { color: var(--pt-sky); }
.rte a:hover { text-decoration: underline; }
.rte ul, .rte ol { margin: 0 0 18px; padding-left: 22px; }
.rte li { margin-bottom: 8px; }
.rte strong { color: var(--fg-1); font-weight: 500; }

/* Hero-knoppen op de subpagina-hero's wat ruimte geven */
.page-hero .hero-cta { margin-top: 28px; }
