/* =========================================================
   Mateo Logistics Netherlands styles
   ========================================================= */

:root {
  /* Achtergronden */
  --bg:           #ffffff;
  --bg-alt:       #f5f7fa;
  --bg-dark:      #0d1b3d;

  /* Tekst */
  --text:         #0f1419;
  --text-muted:   #5b6571;
  --text-invert:  #ffffff;
  --text-invert-muted: #b6c1d6;

  /* Accent */
  --accent:       #1666d4;
  --accent-hover: #1252b0;
  --accent-soft:  #e3edfc;

  /* Lijnen */
  --border:       #e5e7eb;
  --border-dark:  #1a2b56;

  /* Typografie */
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --fs-display: clamp(2.5rem, 5vw + 0.5rem, 4.5rem);
  --fs-h1:      clamp(2rem,   3vw + 0.5rem, 3rem);
  --fs-h2:      clamp(1.5rem, 2vw + 0.5rem, 2.25rem);
  --fs-h3:      1.25rem;
  --fs-body:    1.0625rem;
  --fs-small:   0.9375rem;
  --fs-tiny:    0.8125rem;
  --lh-tight:   1.15;
  --lh-snug:    1.3;
  --lh-normal:  1.6;
  --tracking-tight: -0.02em;
  --tracking-wide:  0.08em;

  /* Layout */
  --container: 1200px;
  --section-py: clamp(4rem, 8vw, 7rem);
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(13,27,61,.06), 0 1px 1px rgba(13,27,61,.04);
  --shadow-md: 0 8px 24px rgba(13,27,61,.08), 0 2px 4px rgba(13,27,61,.04);

  --header-h: 76px;
}

/* =========================================================
   Reset
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--accent); color: #fff; padding: .75rem 1rem; z-index: 100;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =========================================================
   Container & utilities
   ========================================================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 2rem);
}

.eyebrow {
  display: inline-block;
  font-size: var(--fs-tiny);
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .85rem;
}
.eyebrow-light { color: #7fb0ee; }

.section { padding-block: var(--section-py); }
.section-alt { background: var(--bg-alt); }

#over-ons {
  background-color: var(--bg);
  background-image: url('assets/images/background-logo.jpg');
  background-position: left -100px bottom -180px;
  background-size: auto 135%;
  background-repeat: no-repeat;
}

.section-dark {
  background:
    linear-gradient(rgba(13,27,61,0.62), rgba(13,27,61,0.82)),
    url('assets/images/world.jpg') center/cover no-repeat,
    var(--bg-dark);
  color: var(--text-invert);
}
.section-title {
  font-size: var(--fs-h1);
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-tight);
  font-weight: 700;
  margin-bottom: 1rem;
}
.section-title-light { color: var(--text-invert); }
.section-head { max-width: 680px; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.section-head-center { margin-inline: auto; text-align: center; }
.section-intro { color: var(--text-muted); font-size: 1.125rem; }
.section-dark .section-intro { color: var(--text-invert-muted); }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .85rem 1.5rem;
  font-weight: 600;
  font-size: var(--fs-small);
  letter-spacing: .01em;
  border-radius: 999px;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-hover); }
.btn-primary:active { transform: translateY(1px); }

.btn-ghost {
  background: transparent;
  color: var(--accent);
  box-shadow: inset 0 0 0 1.5px var(--accent);
}
.btn-ghost:hover {
  background: var(--accent);
  color: #fff;
}
.section-dark .btn-ghost {
  color: #fff;
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.4);
}
.section-dark .btn-ghost:hover { background: #fff; color: var(--bg-dark); }

.link-arrow {
  color: var(--accent);
  font-weight: 600;
  display: inline-flex; align-items: center; gap: .35rem;
}
.link-arrow span { transition: transform .15s ease; }
.link-arrow:hover span { transform: translateX(3px); }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #ffffff;
  color: var(--text);
  height: var(--header-h);
  display: flex; align-items: center;
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex; align-items: center; gap: .75rem;
  color: var(--text);
}
.brand-footer { color: var(--text-invert); }
.brand-logo {
  display: block;
  height: clamp(36px, 3.2vw, 44px);
  width: auto;
  flex-shrink: 0;
}

.primary-nav { display: flex; align-items: center; gap: 2rem; }
.primary-nav ul {
  display: flex; align-items: center; gap: 1.75rem;
}
.primary-nav ul a {
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--text-muted);
  transition: color .15s ease;
  position: relative;
}
.primary-nav ul a:hover { color: var(--text); }

.nav-cta {
  padding: .55rem 1.1rem;
  font-size: var(--fs-small);
}

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column; gap: 5px; align-items: center; justify-content: center;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text);
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  padding-block: clamp(4rem, 9vw, 7rem) clamp(4rem, 8vw, 6rem);
  overflow: hidden;
  background: var(--bg);
}
.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(13,27,61,.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(13,27,61,.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 75% 35%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 75% 35%, #000 0%, transparent 70%);
}
.hero::after {
  content: '';
  position: absolute; right: -10%; top: -10%;
  width: 60%; height: 70%;
  background: radial-gradient(circle at center, rgba(22,102,212,.10), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  object-fit: cover;
  object-position: 22% center;
  -webkit-mask-image: linear-gradient(
    to bottom right,
    transparent 0%,
    transparent 30%,
    rgba(0,0,0,0.40) 45%,
    rgba(0,0,0,0.85) 62%,
    #000 78%
  );
  mask-image: linear-gradient(
    to bottom right,
    transparent 0%,
    transparent 30%,
    rgba(0,0,0,0.40) 45%,
    rgba(0,0,0,0.85) 62%,
    #000 78%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: clamp(440px, 50vw, 660px);
}
.hero h1 {
  font-size: var(--fs-display);
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-tight);
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-wrap: balance;
  max-width: 16ch;
}
.hero .lead {
  font-size: clamp(1.0625rem, 1vw + 1rem, 1.3125rem);
  color: var(--text-muted);
  max-width: 680px;
  margin-bottom: 2.25rem;
}
.hero-cta {
  display: flex; flex-wrap: wrap; gap: .75rem;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2.5rem);
  padding-top: 2.25rem;
  border-top: 1px solid var(--border);
  max-width: 480px;
}
.hero-stats li {
  display: flex; flex-direction: column; gap: .35rem;
  min-width: 0;
}
.hero-stats li .stat-label {
  overflow-wrap: break-word;
}
.stat-num {
  font-size: clamp(1.5rem, 2vw + 1rem, 2.25rem);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: var(--tracking-tight);
  line-height: 1;
}
.stat-label {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.35;
}

/* =========================================================
   Two-col layout (Over ons, Contact)
   ========================================================= */
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.col-text p { color: var(--text-muted); margin-bottom: 1rem; max-width: 60ch; }
.col-text p:last-child { margin-bottom: 0; }
.col-text strong { color: var(--text); }

.info-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.info-list {
  display: flex; flex-direction: column;
  gap: 1.1rem;
  margin: 0;
}
.info-list > div {
  display: flex; flex-direction: column; gap: .15rem;
}
.info-list dt {
  font-size: var(--fs-tiny);
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--text-muted);
}
.info-list dd {
  margin: 0;
  font-weight: 500;
  font-size: var(--fs-small);
}
.info-list a { color: var(--accent); }
.info-list a:hover { color: var(--accent-hover); text-decoration: underline; }

/* =========================================================
   Cards grid (Specialisaties)
   ========================================================= */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.cards-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex; flex-direction: column;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #cdd6e2;
}
.card-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 {
  font-size: var(--fs-h3);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: .5rem;
  letter-spacing: -.01em;
  min-height: 2.6em;
  text-wrap: balance;
}
.card p {
  color: var(--text-muted);
  font-size: var(--fs-small);
  line-height: 1.55;
  text-wrap: pretty;
}

/* =========================================================
   Services grid (Diensten)
   ========================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.service {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.4rem;
  transition: border-color .15s ease, transform .15s ease;
}
.service:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.service-icon { display: none; }
.service h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: .35rem;
}
.service p {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.5;
}
.service-cta {
  background: var(--accent);
  color: var(--text-invert);
  border-color: var(--accent);
  display: flex; flex-direction: column; justify-content: center;
}
.service-cta:hover { background: var(--accent-hover); transform: translateY(-2px); }
.service-cta h3 { color: var(--text-invert); margin-bottom: .35rem; }
.service-cta p { color: rgba(255,255,255,.8); margin-bottom: .85rem; }
.service-cta .link-arrow { color: #fff; }

.services-show-more {
  display: none;
  margin: 1.5rem auto 0;
  padding: .85rem 1.75rem;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 600;
  font-size: var(--fs-small);
  background: transparent;
  color: var(--accent);
  box-shadow: inset 0 0 0 1.5px var(--accent);
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease;
}
.services-show-more:hover {
  background: var(--accent);
  color: #fff;
}

/* =========================================================
   USP row (Waarom)
   ========================================================= */
.usp-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
}
.usp { padding-inline: .5rem; }
.usp-icon {
  display: inline-flex;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: #7fb0ee;
  align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  border: 1px solid rgba(255,255,255,.1);
}
.usp-icon svg { width: 30px; height: 30px; }
.usp h3 {
  font-size: var(--fs-h3);
  font-weight: 700;
  margin-bottom: .5rem;
  color: var(--text-invert);
}
.usp p {
  font-size: var(--fs-small);
  color: var(--text-invert-muted);
  line-height: 1.55;
}

/* =========================================================
   Testimonials
   ========================================================= */
.testimonials {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.t-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1.5rem;
  scroll-behavior: smooth;
  padding-bottom: 1.25rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.t-track::-webkit-scrollbar { display: none; }
.t-card {
  flex: 0 0 100%;
  scroll-snap-align: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-sm);
}
.t-quote {
  font-size: clamp(1.125rem, 1vw + 1rem, 1.375rem);
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 0;
  color: var(--text);
}
.t-stars {
  display: inline-flex;
  gap: 0.25rem;
  color: #fbbf24;
  margin-bottom: 1.25rem;
}
.t-star {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

.t-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  transition: background-color .15s ease, color .15s ease, transform .15s ease;
  z-index: 2;
}
.t-nav:hover { background: var(--accent); color: #fff; }
.t-prev { left: -22px; }
.t-next { right: -22px; }

.t-dots {
  display: flex; gap: .5rem;
  justify-content: center;
  margin-top: 1rem;
}
.t-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border);
  transition: background-color .15s ease, transform .15s ease;
}
.t-dot.is-active {
  background: var(--accent);
  transform: scale(1.3);
}

.t-disclaimer {
  margin-top: 2rem;
  text-align: center;
  font-size: var(--fs-tiny);
  color: var(--text-muted);
  font-style: italic;
}

/* =========================================================
   Contact
   ========================================================= */
.contact-block .col-text p {
  font-size: 1.0625rem;
  margin-bottom: 2rem;
  max-width: 50ch;
}
.contact-actions {
  display: flex; flex-wrap: wrap; gap: .75rem;
}
.contact-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: #ffffff;
  color: var(--text-muted);
  padding-top: clamp(3.5rem, 6vw, 5rem);
  padding-bottom: 1.5rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}
.brand-footer { color: var(--text); }
.footer-tagline {
  margin-top: 1rem;
  font-size: var(--fs-small);
  color: var(--text-muted);
}
.footer-tagline a { color: var(--accent); }
.footer-tagline a:hover { color: var(--accent-hover); text-decoration: underline; }

.footer-col h4 {
  font-size: var(--fs-tiny);
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col a {
  font-size: var(--fs-small);
  color: var(--text-muted);
  transition: color .15s ease;
}
.footer-col a:hover { color: var(--accent); }
.footer-col li { font-size: var(--fs-small); }

.footer-bottom {
  padding-top: 1.5rem;
  font-size: var(--fs-tiny);
  color: var(--text-muted);
}

/* =========================================================
   Legal pages (privacy, voorwaarden)
   ========================================================= */
.legal {
  padding-block: clamp(3rem, 6vw, 5rem);
}
.legal-container {
  max-width: 780px;
}
.legal-header {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.legal-back {
  margin-bottom: 1.25rem;
}
.legal-back a {
  font-size: var(--fs-small);
  color: var(--text-muted);
  transition: color .15s ease;
}
.legal-back a:hover { color: var(--accent); }
.legal-header h1 {
  font-size: clamp(2rem, 3vw + 0.5rem, 2.75rem);
  font-weight: 800;
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-tight);
  margin-bottom: .5rem;
}
.legal-meta {
  font-size: var(--fs-small);
  color: var(--text-muted);
}

.legal-content {
  font-size: 1rem;
  line-height: 1.7;
}
.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: .75rem;
  color: var(--text);
  letter-spacing: -.005em;
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.legal-content p strong { color: var(--text); }
.legal-content ul {
  margin: 0 0 1.25rem 0;
  padding-left: 1.25rem;
  list-style: disc;
  color: var(--text-muted);
}
.legal-content ul li {
  margin-bottom: .35rem;
}
.legal-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-content a:hover { color: var(--accent-hover); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 960px) {
  :root { --header-h: 68px; }

  .hero-video { display: none; }
  .hero::after { display: none; }

  .nav-toggle { display: inline-flex; }
  .primary-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1.5rem;
    transform: translateY(-150%);
    transition: transform .25s ease;
    box-shadow: 0 12px 24px rgba(13,27,61,.10);
    border-bottom: 1px solid var(--border);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .primary-nav.is-open { transform: translateY(0); }
  .primary-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .primary-nav ul li {
    border-bottom: 1px solid var(--border);
  }
  .primary-nav ul a {
    display: block;
    padding: 1rem 0;
    font-size: 1.0625rem;
    color: var(--text);
  }
  .nav-cta {
    margin-top: 1.25rem;
    align-self: flex-start;
    padding: .85rem 1.5rem;
  }

  .two-col {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-col:nth-of-type(3) { grid-column: 1 / -1; }

  .t-prev { left: -8px; }
  .t-next { right: -8px; }
}

@media (max-width: 560px) {
  :root { --section-py: 3rem; }
  .hero { padding-block: 2.5rem 2rem; }

  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }

  .hero-stats { gap: 1rem; }
  .stat-num { font-size: 1.625rem; }
  .stat-label { font-size: 0.75rem; }

  .footer-inner { grid-template-columns: 1fr; }

  .contact-actions { flex-direction: column; align-items: stretch; }
  .contact-actions .btn { width: 100%; }

  .t-nav { display: none; }

  .services-grid:not(.is-expanded) > li:nth-child(n+7) {
    display: none;
  }
  .services-show-more {
    display: block;
    width: 100%;
  }
}

/* =========================================================
   Tablet-specifieke overrides (561–960px)
   ========================================================= */
@media (min-width: 561px) and (max-width: 960px) {
  /* Hero: foto wel tonen op tablet, vult de rechterkant in */
  .hero-video { display: block; }

  /* Specialisaties: 2x2 grid i.p.v. 3+1 */
  .cards-4 { grid-template-columns: repeat(2, 1fr); }

  /* Waarom Mateo: 2x2 grid i.p.v. 3+1 */
  .usp-row { grid-template-columns: repeat(2, 1fr); }

  /* Footer: alle 3 kolommen naast elkaar, brand spant boven */
  .footer-inner { grid-template-columns: repeat(3, 1fr); }
  .footer-col:nth-of-type(3) { grid-column: auto; }
}

/* =========================================================
   Reduced motion
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .t-track { scroll-behavior: auto; }
}
