/* ═══════════════════════════════════════════════════════════
   ATELIER WELTHER  –  Professional Art Restoration Studio
   ═══════════════════════════════════════════════════════════ */

/* ─── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ─── Tokens ──────────────────────────────────────────────── */
:root {
  --white:  #ffffff;
  --bg:     #f8f5f1;
  --bg-alt: #f0ebe4;
  --ink:    #18120c;
  --ink-2:  #5a4d3e;
  --ink-3:  #9a8878;
  --gold:   #b8922a;
  --gold-l: #d0aa4e;
  --dark:   #1c1510;

  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Inter', system-ui, sans-serif;

  --ease-out: cubic-bezier(.16,1,.3,1);
  --ease-io:  cubic-bezier(.77,0,.18,1);

  --header-h: 66px;
  --radius:   3px;
}

/* ─── Base ────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; }

/* ─── Utils ───────────────────────────────────────────────── */
.eyebrow {
  font-size: .65rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9rem;
}

.btn {
  display: inline-block;
  margin-top: 2.4rem;
  padding: .78rem 2rem;
  border: 1px solid var(--ink);
  background: transparent;
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  border-radius: var(--radius);
  transition: background .25s, color .25s, border-color .25s;
}
.btn:visited {
  color: var(--ink);
  background: transparent;
}
.btn:hover {
  background: var(--ink);
  color: var(--white);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.in { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════ */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 300;
  height: var(--header-h);
  background: rgba(248,245,241,.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(184,146,42,.15);
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: 0 2px 20px rgba(24,18,12,.08); }

.header__inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.header__logo-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 1px 6px rgba(0,0,0,.12);
}
.header__logo-text {
  display: flex;
  flex-direction: column;
}
.header__logo-name {
  display: block;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  letter-spacing: .01em;
}
.header__logo-sub {
  display: block;
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.header__nav a {
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-2);
  transition: color .2s;
}
.header__nav a:hover { color: var(--gold); }
.header__nav-cta {
  padding: .5rem 1.25rem;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  border-radius: var(--radius);
  transition: background .22s, color .22s !important;
  cursor: pointer;
  background: none;
  font-family: var(--sans);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  position: relative;
}
.header__nav-cta:hover,
.header__nav-cta.open {
  background: var(--gold) !important;
  color: var(--white) !important;
}

/* ── Contact popup ─────────────────────────────────────── */
.contact-popup {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--white);
  border: 1px solid rgba(184,146,42,.2);
  border-radius: 6px;
  box-shadow: 0 8px 32px rgba(24,18,12,.14);
  min-width: 240px;
  overflow: hidden;
  z-index: 500;

  /* Hidden state */
  opacity: 0;
  transform: translateY(-8px) scale(.97);
  pointer-events: none;
  transition: opacity .22s var(--ease-out), transform .22s var(--ease-out);
}
.contact-popup.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.contact-popup__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  text-decoration: none;
  color: var(--ink);
  font-size: .84rem;
  transition: background .18s;
  border-bottom: 1px solid var(--bg-alt);
}
.contact-popup__item:last-child { border-bottom: none; }
.contact-popup__item:hover { background: var(--bg); }

.contact-popup__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  transition: background .18s;
}
.contact-popup__item:hover .contact-popup__icon {
  background: var(--gold);
  color: var(--white);
}
.contact-popup__label { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); margin-bottom: .1rem; }
.contact-popup__value { font-size: .88rem; color: var(--ink); text-transform: none; letter-spacing: 0; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 36px;
  height: 36px;
}
.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transform-origin: center;
  transition: transform .3s var(--ease-out), opacity .3s;
}
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--white);
  z-index: 250;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  transform: translateX(100%);
  transition: transform .45s var(--ease-io);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav nav { display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.mobile-nav__link {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  text-decoration: none;
  color: var(--ink);
  letter-spacing: .02em;
  transition: color .2s;
}
.mobile-nav__link:hover { color: var(--gold); }

.mobile-nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(24,18,12,.3);
  z-index: 240;
  backdrop-filter: blur(2px);
}
.mobile-nav__overlay.open { display: block; }

/* ═══════════════════════════════════════════════════════════
   SLIDESHOW
   ═══════════════════════════════════════════════════════════ */

/* Outer shell — arrows are positioned here */
.show {
  position: relative;
  height: 100svh;
  min-height: 520px;
  background: var(--dark);
  padding-top: var(--header-h);
  display: flex;
  flex-direction: column;
}

/* ── Arrows — at the very left/right edges ─────────────────
   They sit in the 64px gutter that the viewport leaves free  */
.show__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  /* Keep centered in the image area (above caption) */
  margin-top: calc(-2rem);
  z-index: 20;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(24,18,12,.55);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  transition: background .22s, border-color .22s;
}
.show__arrow:hover  { background: var(--gold); border-color: var(--gold); }
.show__arrow:active { opacity: .7; }
.show__arrow--prev  { left:  10px; }
.show__arrow--next  { right: 10px; }

/* ── Viewport — clips the sliding panels ───────────────────
   Leaves 64px on each side so the arrows are always visible */
.show__viewport {
  position: absolute;
  top: var(--header-h);
  left:  64px;
  right: 64px;
  bottom: 0;
  overflow: hidden;
}

.show__track {
  position: relative;
  width: 100%;
  height: 100%;
}

/* ── Individual slide ──────────────────────────────────────*/
.show__slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  pointer-events: none;
  transform: translateX(102%);
  will-change: transform;
}
.show__slide.is-active {
  transform: translateX(0);
  pointer-events: auto;
}

/* ── Image area — two side-by-side panels ─────────────────*/
.show__img {
  position: relative;
  flex: 1;
  min-height: 0;
  background: var(--dark);
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

/* Each panel shows one separate image (before or after) */
.show__panel {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.show__panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  max-width: none;
}
.show__panel--before img { object-position: right center; }
.show__panel--after  img { object-position: left  center; }

/* Slide 2 portrait panels — fill instead of contain so no black bars */
.show__panel.show__panel--fill img {
  object-fit: cover;
  object-position: center 25%;
}

/* Crack annotation circle — slide 2 voor-panel */
.crack-circle {
  position: absolute;
  width: 72px;
  height: 72px;
  border: 2.5px solid #e03030;
  border-radius: 50%;
  top: 35%;
  left: 22%;
  z-index: 10;
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(0,0,0,.35);
}
@media (max-width: 768px) {
  .crack-circle { width: 52px; height: 52px; top: 32%; left: 28%; }
}

/* Center divider line (for before/after composites) */
.show__divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255,255,255,.4);
  pointer-events: none;
}

/* Voor / Na badges — each sits inside its own panel */
.badge {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  background: rgba(24,18,12,.6);
  color: rgba(248,245,241,.95);
  padding: .3rem .85rem;
  border-radius: 2px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12);
  pointer-events: none;
  z-index: 5;
  white-space: nowrap;
}

/* Caption bar */
.show__caption {
  flex-shrink: 0;
  background: var(--dark);
  border-top: 1px solid rgba(184,146,42,.18);
  padding: 1.6rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 2rem;
}
.show__index {
  font-family: var(--serif);
  font-size: 1rem;
  color: rgba(184,146,42,.75);
  flex-shrink: 0;
  letter-spacing: .14em;
  white-space: nowrap;
}
.show__caption-label {
  font-size: .58rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(248,245,241,.28);
}
.show__caption-text h2 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
}
.show__caption-text p {
  font-size: .76rem;
  color: rgba(248,245,241,.48);
  line-height: 1.5;
  margin-top: .12rem;
}

/* Dots — centered inside the 80px caption bar */
.show__dots {
  position: absolute;
  bottom: 36px;   /* (80px caption ÷ 2) − 4px half-dot = centered */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .75rem;
  z-index: 20;
}
.show__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  padding: 0;
  background: rgba(255,255,255,.22);
  transition: background .35s, transform .35s;
}
.show__dot.is-active {
  background: var(--gold);
  transform: scale(1.45);
}

/* ═══════════════════════════════════════════════════════════
   INTRO
   ═══════════════════════════════════════════════════════════ */
.intro {
  background: var(--bg);
  padding: 7rem 2.5rem;
  border-bottom: 1px solid var(--bg-alt);
}
.intro__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.intro__label {
  font-size: .62rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 1.6rem;
}
.intro__heading {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 1.8rem;
}
.intro__heading em {
  font-style: italic;
  color: var(--ink-2);
}
.intro__body {
  font-size: .9rem;
  color: var(--ink-2);
  line-height: 1.9;
  max-width: 620px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════
   DIENSTEN
   ═══════════════════════════════════════════════════════════ */
.diensten {
  background: var(--white);
}

.diensten__block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  overflow: hidden;
}
.diensten__block + .diensten__block {
  border-top: 1px solid var(--bg-alt);
}
.diensten__block--flip { direction: rtl; }
.diensten__block--flip > * { direction: ltr; }

/* Image side */
.diensten__img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  isolation: isolate;
}
.diensten__img-inner {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.diensten__img-inner img {
  width: 100%;
  height: 115%;
  margin-top: -7.5%;
  object-fit: cover;
  object-position: center center;
}
.diensten__block--flip .diensten__img-inner img {
  object-position: center 25%;
}
.diensten__img-tag {
  position: absolute;
  bottom: 1.8rem;
  left: 1.8rem;
  font-family: var(--serif);
  font-size: .95rem;
  font-style: italic;
  color: rgba(248,245,241,.85);
  background: rgba(24,18,12,.5);
  padding: .4rem 1rem;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}

/* Text side */
.diensten__content {
  padding: 5rem 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.diensten__content h3 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 2.2rem;
}

/* Check list */
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .9rem;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  font-size: .88rem;
  color: var(--ink-2);
  line-height: 1.55;
}
.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 14px;
  height: 1px;
  background: var(--gold);
  margin-top: .75em;
}

/* ═══════════════════════════════════════════════════════════
   OVER
   ═══════════════════════════════════════════════════════════ */
.over {
  background: var(--dark);
  padding: 8rem 0;
  color: var(--white);
}

.over__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 6rem;
  align-items: start;
}

.over__photo {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.4);
}
.over__photo img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center 15%;
}

.over__content h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: .5rem;
}

.over__title {
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.over__content > p {
  font-size: .88rem;
  color: rgba(248,245,241,.55);
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

.over__exp { margin-bottom: 2.5rem; }
.over__exp h4 {
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.over__exp ul { list-style: none; display: flex; flex-direction: column; gap: .8rem; }
.over__exp li {
  font-size: .84rem;
  color: rgba(248,245,241,.5);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.6;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}
.over__exp li::before {
  content: '';
  position: absolute;
  left: 0; top: .72em;
  width: 5px; height: 1px;
  background: var(--gold);
  opacity: .5;
}
.over__exp li b { color: rgba(248,245,241,.85); font-weight: 400; }
.exp-lbl { flex: 1; min-width: 0; }
.exp-yr {
  white-space: nowrap;
  flex-shrink: 0;
  color: rgba(248,245,241,.38);
  font-size: .8rem;
  padding-top: .1em;
}

.over__quote {
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin-bottom: 3rem;
}
.over__quote p {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(248,245,241,.75);
  line-height: 1.75;
  margin-bottom: .6rem;
}
.over__quote footer {
  font-size: .72rem;
  color: rgba(248,245,241,.35);
  letter-spacing: .04em;
}

/* Contact grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(184,146,42,.2);
}
.contact-label {
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .25rem;
}
.contact-grid a,
.contact-grid p:not(.contact-label) {
  font-size: .87rem;
  color: rgba(248,245,241,.6);
  text-decoration: none;
  line-height: 1.6;
  transition: color .2s;
}
.contact-grid a:hover { color: var(--gold-l); }

/* ═══════════════════════════════════════════════════════════
   KLANTEN
   ═══════════════════════════════════════════════════════════ */
.klanten {
  background: var(--bg);
  padding: 6rem 0 5rem;
  overflow: hidden;
}

.klanten__head {
  max-width: 1200px;
  margin: 0 auto 4rem;
  padding: 0 2.5rem;
}
.klanten__head h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.15;
  margin-top: .5rem;
}

/* ── Ticker stack — 3 rijen (desktop) ─────────────────────── */
.ticker-stack {
  position: relative;
  overflow: hidden;
  padding: 1.5rem 0 2rem;
}
.ticker-stack::before,
.ticker-stack::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 200px;
  z-index: 2;
  pointer-events: none;
}
.ticker-stack::before { left:  0; background: linear-gradient(to right, var(--bg) 30%, transparent); }
.ticker-stack::after  { right: 0; background: linear-gradient(to left,  var(--bg) 30%, transparent); }

.ticker {
  overflow: hidden;
  margin-bottom: 1.4rem;
}
.ticker:last-child { margin-bottom: 0; }

.ticker__track {
  display: flex;
  width: max-content;
  will-change: transform;
  backface-visibility: hidden;
}

.ticker__row {
  display: flex;
  align-items: center;
}

.ticker__row img {
  height: 128px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  filter: none;
  opacity: 1;
  padding: 0 3.5rem;
  border-right: 1px solid rgba(90,77,62,.1);
  flex-shrink: 0;
  transform: translateZ(0);
  transition: transform .3s var(--ease-out);
  cursor: default;
}
.ticker__row img:hover {
  transform: scale(1.08) translateZ(0);
  position: relative;
  z-index: 1;
}

/* ── Logo grid (mobile) ───────────────────────────────────── */
.logos-mobile {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.8rem;
  gap: 0;
  background: transparent;
  border: none;
}
.logos-mobile__cell {
  flex: 0 0 33.333%;
  background: var(--bg);
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  padding: 0;
  height: 80px;
}
.logos-mobile__cell img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  padding: .55rem .7rem;
  filter: none;
  opacity: 1;
}
.logos-mobile__cell--text {
  flex: 0 0 66.666%;
  height: auto;
  min-height: 80px;
  font-family: var(--serif);
  font-style: italic;
  font-size: .88rem;
  color: var(--ink-3);
  text-align: center;
  line-height: 1.5;
  padding: 1.4rem 1.2rem;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--dark);
  padding: 3.5rem 0;
  border-top: 1px solid rgba(184,146,42,.18);
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer__brand { display: flex; flex-direction: column; gap: 6px; }
.footer__name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: rgba(248,245,241,.9);
}
.footer__tagline {
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(248,245,241,.3);
  line-height: 1.7;
}
.footer__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
}
.footer__contact a,
.footer__contact span {
  font-size: .78rem;
  color: rgba(248,245,241,.45);
  text-decoration: none;
  transition: color .2s;
  letter-spacing: .03em;
}
.footer__contact a:hover { color: var(--gold-l); }
.footer__copy {
  font-size: .66rem;
  color: rgba(248,245,241,.22);
  letter-spacing: .06em;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .over__inner { grid-template-columns: 1fr; }
  .over__photo { position: static; display: none; }
  .diensten__content { padding: 4rem 3rem; }
}

/* Mobile */
@media (max-width: 768px) {
  :root { --header-h: 58px; }

  .header__nav { display: none; }
  .burger { display: flex; }
  .header__logo-name { font-size: 1.15rem; }
  .header__logo-sub { font-size: .5rem; letter-spacing: .14em; }
  .header__logo-img { width: 32px; height: 32px; }

  /* ── Slideshow: vollbreit, panels gestapeld ── */
  .show { height: 82svh; min-height: 440px; }
  .show__viewport { left: 0; right: 0; }
  .show__img { flex-direction: column; }
  .show__divider {
    top: 50%; bottom: auto;
    left: 0; right: 0;
    width: 100%; height: 1px;
  }
  .show__panel img { object-fit: cover; }
  .show__panel--before img { object-position: center center; }
  .show__panel--after  img { object-position: center center; }
  .show__arrow { width: 34px; height: 34px; margin-top: -1.8rem; background: rgba(24,18,12,.72); }
  .show__arrow--prev { left: 6px; }
  .show__arrow--next { right: 6px; }
  .show__caption { padding: .85rem 1.2rem; gap: .75rem; min-height: 56px; }
  .show__caption-text h2 { font-size: 1rem; }
  .show__dots { bottom: 26px; gap: .5rem; }

  /* ── Diensten: stapelen ─────────────────── */
  .diensten__block,
  .diensten__block--flip {
    grid-template-columns: 1fr;
    direction: ltr;
    min-height: auto;
  }
  .diensten__block--flip > * { direction: ltr; }
  .diensten__img-wrap { height: 55vw; min-height: 240px; }
  .diensten__img-inner img { height: 100%; }
  .diensten__content { padding: 2.4rem 1.4rem; }

  /* ── Intro ──────────────────────────────── */
  .intro { padding: 4.5rem 1.4rem; }
  .intro__body { font-size: .84rem; }

  /* ── Over ───────────────────────────────── */
  .over { padding: 4.5rem 0; }
  .over__inner { gap: 2.5rem; padding: 0 1.4rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .over__exp li { flex-wrap: wrap; gap: .1rem; }
  .exp-yr { flex-basis: 100%; font-size: .78rem; color: rgba(248,245,241,.35); padding-top: 0; }

  /* ── Klanten: ticker uit, raster aan ────── */
  .klanten { padding: 3.5rem 0 3rem; }
  .klanten__head { padding: 0 1.4rem; margin-bottom: 2rem; }
  .klanten__head h2 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .ticker-stack { display: none; }
  .logos-mobile { display: flex; padding: 0; }

  /* ── Footer ─────────────────────────────── */
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__contact { align-items: center; }
}

/* Kleinste schermen: pijlen verbergen (swipe werkt) */
@media (max-width: 480px) {
  .show__index { display: none; }
  .show__arrow { display: none; }
}
