/* ============================================================
   P.G.C. HAJENIUS — mobile.css
   1826 — 2026
   Mobile-first overrides + polish.
   Laad NA tokens.css en styles.css.
   ============================================================ */

/* ------------------------------------------------------------
   0 · Globale viewport-veiligheid
   Geen horizontale scroll, geen content die buiten het scherm valt.
   ------------------------------------------------------------ */
html, body {
  overflow-x: clip;
  max-width: 100vw;
}
body { width: 100%; }

img, video, iframe, table { max-width: 100%; }
table { display: block; overflow-x: auto; }

/* iOS safe-area: padding INSIDE de footer (donker), NIET op body (wit).
   Voorkomt een witte strook onder de donkere footer. */
@supports (padding: env(safe-area-inset-bottom)) {
  .footer {
    padding-bottom: calc(24px + env(safe-area-inset-bottom)) !important;
  }
}
/* Alleen HTML donker — body blijft wit zoals het hoort.
   Als iOS Safari onder de body uit-scrollt, ziet hij html (donker)
   in plaats van een witte strook. */
html { background: #1A1410; }

/* ------------------------------------------------------------
   1 · Topbar — flex met order op mobiel (hamburger-links, logo-midden, util-rechts)
   ------------------------------------------------------------ */
@media (max-width: 1024px) {
  /* Topbar = relative parent. Logo wordt ABSOLUUT gecentreerd
     zodat asymmetrische hamburger (1 icon) vs util (4 icons) het
     niet uit het midden duwt. */
  .topbar__inner {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px var(--gutter-m);
    min-height: 64px;
    grid-template-columns: none !important;
    position: relative;
  }
  .topbar__menu {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    flex: 0 0 44px;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    order: 0 !important;
    z-index: 2;
  }
  .topbar__brand {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    order: 1 !important;
    pointer-events: auto;
    z-index: 1;
  }
  .topbar__nav { display: none !important; }
  .topbar__util {
    flex: 0 0 auto;
    gap: 2px;
    margin: 0 0 0 auto !important;
    order: 2 !important;
    justify-content: flex-end;
    z-index: 2;
  }
  .topbar__util .iconbtn,
  .topbar__util .langbtn {
    width: 40px; height: 40px;
    min-width: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  .topbar__util .langbtn { width: auto; min-width: 0; padding: 0 8px; font-size: 11px; }
  .topbar__logo {
    height: 46px;
    max-height: 46px;
    max-width: 140px;
    width: auto;
    object-fit: contain;
  }
}

@media (max-width: 480px) {
  .topbar__inner { padding: 8px 12px; min-height: 60px; gap: 4px; }
  .topbar__logo { height: 38px; max-height: 38px; max-width: 110px; }
  .topbar__menu { width: 40px; height: 40px; flex-basis: 40px; }
  .topbar__util .iconbtn { width: 36px; height: 36px; min-width: 36px; }
  .topbar__util .iconbtn svg { width: 18px; height: 18px; }
  .topbar__util .langbtn { padding: 0 6px; font-size: 10.5px; }
  .topbar__util .iconbtn--cart { position: relative; }
  .cart-badge { font-size: 9px; min-width: 14px; height: 14px; }
}

/* ------------------------------------------------------------
   2 · Promobar — strakker, beter readable
   ------------------------------------------------------------ */
@media (max-width: 720px) {
  .promobar__inner {
    flex-direction: column;
    gap: 4px;
    padding: 8px 16px;
    text-align: center;
  }
  .promobar__text { font-size: 11px; line-height: 1.4; }
  .promobar__link { font-size: 11px; }
}
@media (max-width: 380px) {
  .promobar { display: none; }
}

/* ------------------------------------------------------------
   3 · Hero video — performance + leesbaarheid
   13MB video niet auto-laden op mobiel.
   ------------------------------------------------------------ */
@media (max-width: 900px) {
  .hero--video {
    min-height: 70vh;
    max-height: 720px;
  }
  .hero-video__bg video {
    object-fit: cover;
    object-position: center;
  }
  .hero-video__scrim {
    background:
      linear-gradient(180deg, rgba(8, 5, 3, 0.20) 0%, rgba(8, 5, 3, 0.55) 100%),
      radial-gradient(ellipse at 50% 80%, rgba(8, 5, 3, 0.5) 0%, rgba(8, 5, 3, 0) 70%);
  }
  .hero-video__corner { width: 36px; height: 36px; }
  .hero-video__corner--tl { top: 16px; left: 16px; }
  .hero-video__corner--tr { top: 16px; right: 16px; }
  .hero-video__corner--bl { bottom: 16px; left: 16px; }
  .hero-video__corner--br { bottom: 16px; right: 16px; }

  /* Corner-content centreren op mobiel — anders te krap rechtsonder */
  .hero-video__content--corner {
    position: absolute;
    right: 16px; left: 16px;
    bottom: 32px;
    max-width: none;
    align-items: center;
    text-align: center;
    gap: 14px;
  }
  .hero-video__content--corner .hero-video__logo { width: 120px; }
  .hero-video__content--corner .hero-video__signature {
    font-size: 14px;
    max-width: 28ch;
  }
  .hero-video__content--corner .hero-video__cta {
    width: 100%;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    justify-content: center;
  }
  .hero-video__content--corner .btn {
    width: 100%;
    padding: 14px 18px;
    font-size: 12px;
    min-height: 48px;
  }
}

/* Mobile data-saving: poster ipv video op kleine schermen.
   Werkt samen met JS dat preload="none" zet en pas activeert bij intersection. */
@media (max-width: 600px) {
  .hero-video__bg video[data-mobile-hide="true"] {
    display: none;
  }
  .hero-video__bg[data-poster] {
    background-size: cover;
    background-position: center;
  }
}

/* ------------------------------------------------------------
   4 · Sticky header polish op scroll
   ------------------------------------------------------------ */
.topbar { transition: padding .25s var(--ease-out), min-height .25s var(--ease-out); }
@media (max-width: 1024px) {
  .topbar[data-scrolled="true"] .topbar__inner {
    min-height: 52px;
    padding-top: 6px;
    padding-bottom: 6px;
  }
  .topbar[data-scrolled="true"] .topbar__logo { height: 36px; }
}

/* ------------------------------------------------------------
   5 · Mobile menu — volle hoogte, scrollable, dichter tegen brand
   ------------------------------------------------------------ */
@media (max-width: 1024px) {
  .mobile-menu__inner {
    padding: 16px 20px env(safe-area-inset-bottom, 16px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .mobile-menu__list a {
    font-size: 24px;
    padding: 12px 0;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .mobile-menu__sub a {
    font-size: 18px;
    padding-left: 16px;
    color: var(--grijs-warm);
  }
}

/* ------------------------------------------------------------
   6 · Touch targets — alle knoppen min. 44×44
   ------------------------------------------------------------ */
@media (max-width: 1024px) {
  .btn,
  button:not(.iconbtn-tiny),
  a.btn,
  .pdp__qty button,
  .pdp__variant {
    min-height: 44px;
  }
}

/* ------------------------------------------------------------
   7 · Hero (image variant) — strakker mobile
   ------------------------------------------------------------ */
@media (max-width: 720px) {
  .hero { min-height: 72vh; max-height: 760px; }
  .hero__content {
    min-height: 72vh;
    padding-bottom: 48px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero__title {
    font-size: clamp(34px, 9vw, 48px) !important;
    line-height: 1.08;
    max-width: 16ch;
  }
  .hero__sub { font-size: 16px; line-height: 1.5; }
  .hero__logo { width: clamp(220px, 64vw, 320px); }
  .hero__tagline { font-size: clamp(18px, 4.6vw, 22px); }
}

/* ------------------------------------------------------------
   8 · Sectie padding & rhythm
   ------------------------------------------------------------ */
@media (max-width: 720px) {
  .section { padding: 48px 0; }
  .section__head { margin-bottom: 28px; padding: 0 4px; }
  .section__head-lead { font-size: 15px; line-height: 1.55; margin-top: 16px; }
  .container { padding-left: 20px; padding-right: 20px; }
  .h2 {
    font-size: clamp(26px, 7.2vw, 34px) !important;
    line-height: 1.15;
  }
  .eyebrow { font-size: 11px; letter-spacing: 0.20em; }
}

@media (max-width: 480px) {
  .section { padding: 40px 0; }
  .container { padding-left: 16px; padding-right: 16px; }
  :root { --gutter-m: 16px; }
}

/* ------------------------------------------------------------
   9 · Grids — netjes 1-koloms onder 600px
   ------------------------------------------------------------ */
@media (max-width: 600px) {
  .gift-grid,
  .product-grid,
  .verkooppunten-grid,
  .footer__cols,
  .winkel-grid,
  .pdp__details-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .split { grid-template-columns: 1fr !important; }
  .split__media img { aspect-ratio: 4 / 3; min-height: 280px; }
  .split__body { padding: 36px 20px !important; }
  .split__prose { font-size: 16px; line-height: 1.6; }
}

/* Productgrid op 2-koloms tussen 481–768px */
@media (min-width: 481px) and (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
  .gift-tile__name { font-size: 16px; }
}

/* ------------------------------------------------------------
   10 · Buttons stack & full-width op mobiel
   ------------------------------------------------------------ */
@media (max-width: 600px) {
  .hero__cta,
  .hero-video__cta,
  .section__cta-row,
  .btn-row {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
    gap: 10px;
  }
  .hero__cta .btn,
  .hero-video__cta .btn,
  .section__cta-row .btn,
  .btn-row .btn {
    width: 100%;
    padding: 14px 20px;
    min-height: 48px;
    font-size: 12px;
  }
}

/* ------------------------------------------------------------
   11 · Velvet band + heritage strip — kleinere typo
   ------------------------------------------------------------ */
@media (max-width: 720px) {
  .heritage-strip__text {
    font-size: 12px;
    line-height: 1.6;
    padding: 12px 16px;
  }
  .heritage-strip__text span { display: inline; }

  .velvet-band__inner { padding: 56px 24px; }
  .velvet-band__title { font-size: clamp(28px, 8vw, 40px); line-height: 1.12; }
  .velvet-band__line { font-size: 15px; line-height: 1.55; padding: 0 8px; }
  .velvet-band__logo { width: 88px; }
  .velvet-band__eyebrow { font-size: 11px; }
}

/* ------------------------------------------------------------
   12 · Marmer timeline — horizontale scroll-strip op mobiel/tablet
   Editorial-tijdlijn pattern (Apple/NYT-style). Native scroll-snap,
   progress-bar bovenaan, swipe-hint die wegfade na eerste scroll.
   ------------------------------------------------------------ */

/* Progress-bar (alleen zichtbaar op kleine schermen) */
.marmer-timeline__progress {
  display: none;
  position: relative;
  height: 2px;
  margin: 0 auto var(--space-6);
  max-width: 320px;
  background: rgba(201, 160, 92, 0.18);
  z-index: 2;
  overflow: hidden;
}
.marmer-timeline__progress-fill {
  display: block;
  height: 100%;
  width: 8%;
  background: linear-gradient(90deg, var(--goud-warm), var(--goud-licht));
  transform-origin: left center;
  transition: width .15s linear;
}

/* Swipe-hint chevron */
.marmer-timeline__scroller { position: relative; }
.marmer-timeline__hint {
  display: none;
  position: absolute;
  right: clamp(8px, 4vw, 24px);
  bottom: -10px;
  font-family: var(--font-sc);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--goud-warm);
  align-items: center;
  gap: 8px;
  pointer-events: none;
  animation: timelineHintNudge 2.4s ease-in-out infinite;
  z-index: 3;
}
.marmer-timeline__hint svg { transform: translateY(0); }
.marmer-timeline__scroller[data-scrolled="true"] .marmer-timeline__hint {
  opacity: 0;
  transition: opacity .4s ease;
}
@keyframes timelineHintNudge {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(-6px); }
}

@media (max-width: 1023px) {
  /* Fade-edges links/rechts zodat het visueel "doorscrollt" */
  .marmer-timeline__scroller {
    position: relative;
    margin: 0 calc(var(--gutter-m, 20px) * -1);
  }
  .marmer-timeline__scroller::before,
  .marmer-timeline__scroller::after {
    content: "";
    position: absolute;
    top: 0; bottom: 0;
    width: 32px;
    pointer-events: none;
    z-index: 4;
  }
  .marmer-timeline__scroller::before {
    left: 0;
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
  }
  .marmer-timeline__scroller::after {
    right: 0;
    background: linear-gradient(270deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
  }

  .marmer-timeline {
    display: flex !important;
    grid-template-columns: none !important;
    flex-wrap: nowrap !important;
    gap: 16px !important;
    padding: 24px var(--gutter-m, 20px) 56px !important;
    margin: 0 !important;
    overflow-x: auto !important;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--gutter-m, 20px);
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }
  .marmer-timeline::-webkit-scrollbar { display: none; }

  /* Geen horizontale gouden hairline in scroll-mode — wel een subtiele
     vertical accent links op elke kaart. */
  .marmer-timeline::before { display: none !important; }

  .marmer-timeline__item {
    flex: 0 0 86%;
    max-width: 360px;
    min-width: 280px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    grid-template-columns: 1fr !important;
    gap: 14px;
    padding: 24px 22px 28px !important;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(201, 160, 92, .25);
    border-left: 2px solid var(--goud-warm);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    box-shadow: 0 1px 0 rgba(14, 9, 7, .04), 0 12px 28px rgba(14, 9, 7, .06);
    /* Eerder ingestelde IO-fade niet meer nodig in scroll-strip */
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .marmer-timeline__item::before { display: none !important; }

  /* Subtiele inactive→active state — niet-actieve kaarten iets ingetogener */
  .marmer-timeline__item { transition: opacity .35s ease, transform .35s ease !important; }
  .marmer-timeline__item:not(.is-active) {
    opacity: 0.65;
  }
  .marmer-timeline__item.is-active {
    opacity: 1;
    box-shadow: 0 2px 0 rgba(201, 160, 92, .45), 0 18px 36px rgba(14, 9, 7, .12);
  }

  .marmer-timeline__yearwrap {
    display: flex !important;
    flex-direction: row;
    align-items: baseline;
    gap: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(201, 160, 92, .35);
    opacity: 1 !important; transform: none !important;
  }
  .marmer-timeline__year {
    font-size: 42px !important;
    line-height: 1;
    font-weight: 700;
    color: var(--inkt);
    letter-spacing: -0.01em;
  }
  .marmer-timeline__tag {
    font-size: 10px !important;
    letter-spacing: 0.22em;
    color: var(--rood-diep);
  }
  .marmer-timeline__body { display: flex; flex-direction: column; gap: 10px; }
  .marmer-timeline__body > * { opacity: 1 !important; transform: none !important; }
  .marmer-timeline__lead {
    font-size: 17px !important;
    line-height: 1.35;
    font-family: var(--font-display);
    font-style: italic;
    color: var(--inkt);
    margin: 4px 0 2px;
  }
  .marmer-timeline__text {
    font-size: 14px !important;
    line-height: 1.6;
    color: var(--grijs-warm);
  }
  .marmer-timeline__figure { margin: 4px 0 0; }
  .marmer-timeline__figure img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 2px;
  }
  .marmer-timeline__figure--portrait img {
    aspect-ratio: 3 / 4;
    max-width: 180px;
  }
  .marmer-timeline__figure figcaption {
    font-size: 11px;
    letter-spacing: 0.04em;
    color: var(--grijs-warm);
    margin-top: 6px;
  }

  /* Story-header strakker boven de scroll-strip */
  .marmer-story { padding: 64px 0 56px !important; }
  .marmer-story__head { margin-bottom: 24px !important; }
  .marmer-story__title { font-size: clamp(30px, 8vw, 44px) !important; line-height: 1.1; }
  .marmer-story__lead { font-size: 15px; line-height: 1.6; padding: 0 4px; }

  /* Progress + hint zichtbaar maken */
  .marmer-timeline__progress { display: block; }
  .marmer-timeline__hint { display: inline-flex; }
}

/* Op heel kleine schermen kaart iets breder zodat tekst niet drukt */
@media (max-width: 480px) {
  .marmer-timeline__item { flex-basis: 88%; padding: 22px 20px 24px !important; }
  .marmer-timeline__year { font-size: 38px !important; }
}

/* Op tablet (768–1023px): toon meerdere kaarten tegelijk */
@media (min-width: 768px) and (max-width: 1023px) {
  .marmer-timeline__item { flex: 0 0 calc(50% - 12px); max-width: 380px; }
}

/* Respecteer reduced-motion — geen swipe-hint animatie */
@media (prefers-reduced-motion: reduce) {
  .marmer-timeline__hint { animation: none; }
}

/* ------------------------------------------------------------
   13 · Footer
   ------------------------------------------------------------ */
@media (max-width: 720px) {
  .footer__cols { grid-template-columns: 1fr !important; gap: 28px !important; }
  .footer__col h4 { font-size: 11px; letter-spacing: 0.22em; }
  .footer__col ul li { padding: 4px 0; min-height: 28px; }
  .footer__legal { flex-direction: column-reverse; gap: 16px; align-items: flex-start; }
  .footer__legal-list { flex-wrap: wrap; gap: 12px 20px; }
  .footer__legal small { font-size: 11px; }
}

/* ------------------------------------------------------------
   14 · Cart drawer & mobile-menu = volle viewport op mobiel
   ------------------------------------------------------------ */
@media (max-width: 600px) {
  .cart-drawer { width: 100vw; max-width: 100vw; }
  .mobile-menu { width: 100vw; max-width: 100vw; }
}

/* ------------------------------------------------------------
   15 · Popup-gift — sticky bottom card
   ------------------------------------------------------------ */
@media (max-width: 600px) {
  .popup-gift {
    left: 12px; right: 12px;
    bottom: 12px;
    width: auto;
    grid-template-columns: 90px 1fr;
  }
  .popup-gift__body { padding: 12px 14px; gap: 4px; }
  .popup-gift__title { font-size: 15px; padding-right: 28px; }
  .popup-gift__sub { font-size: 12px; }
  .popup-gift__cta { font-size: 10px; }
  .popup-gift__close { width: 32px; height: 32px; top: 4px; right: 4px; }
}

/* ------------------------------------------------------------
   16 · Productdetail (PDP) — stack + sticky add-to-cart
   ------------------------------------------------------------ */
@media (max-width: 1023px) {
  .pdp__grid { grid-template-columns: 1fr !important; gap: 28px !important; }
  .pdp__buybox { position: static; }
}
@media (max-width: 600px) {
  .pdp { padding-top: calc(var(--topbar-h-m, 60px) + 16px); }
  .pdp__title { font-size: 26px; line-height: 1.18; }
  .pdp__crumbs { font-size: 10px; }
  .pdp__gallery { grid-template-columns: 1fr; }
  .pdp__dots { flex-direction: row; justify-content: center; order: 2; gap: 8px; }
  .pdp__price { font-size: 22px; }

  /* Sticky add-to-cart bar onderaan */
  .pdp__sticky-bar {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    background: #FFFFFF;
    border-top: 1px solid rgba(201, 160, 92, .3);
    padding: 12px 16px env(safe-area-inset-bottom, 12px);
    z-index: 50;
    display: flex;
    gap: 12px;
    align-items: center;
    box-shadow: 0 -4px 16px rgba(14, 9, 7, .08);
  }
  .pdp__sticky-bar .btn { flex: 1; min-height: 48px; }
}

/* ------------------------------------------------------------
   17 · Modal / age-gate — fit mobile
   ------------------------------------------------------------ */
@media (max-width: 600px) {
  .modal__card,
  .age-gate__card {
    padding: 28px 20px !important;
    margin: 16px;
    max-width: calc(100vw - 32px);
  }
  .age-gate__title { font-size: clamp(24px, 7vw, 32px) !important; }
  .age-gate__sub { font-size: 14px; line-height: 1.5; }
  .age-gate__cta { flex-direction: column; gap: 10px; }
  .age-gate__cta .btn { width: 100%; min-height: 48px; }
}

/* ------------------------------------------------------------
   18 · Forms (newsletter, contact)
   ------------------------------------------------------------ */
@media (max-width: 600px) {
  .newsletter__form {
    flex-direction: column;
    gap: 10px;
    max-width: 100%;
  }
  .newsletter__form input,
  .newsletter__form .btn {
    width: 100%;
    min-height: 48px;
    font-size: 16px; /* voorkomt iOS zoom-on-focus */
  }
  input, select, textarea { font-size: 16px !important; }
}

/* ------------------------------------------------------------
   19 · Editorial banners & full-bleed images
   ------------------------------------------------------------ */
@media (max-width: 720px) {
  .editorial-banner {
    min-height: 420px;
  }
  .editorial-banner__content {
    align-items: flex-start;
    text-align: left;
    padding: 56px 20px;
  }
  .editorial-banner__title { font-size: clamp(28px, 7.5vw, 38px); }
  .editorial-banner__lead { font-size: 15px; line-height: 1.55; }
}

/* ------------------------------------------------------------
   20 · Sigaren / pijpen / accessoires kaart-grids
   ------------------------------------------------------------ */
@media (max-width: 600px) {
  .card,
  .product-card,
  .gift-tile {
    border-radius: 4px;
  }
  .product-card__media {
    aspect-ratio: 4 / 5;
  }
}

/* ------------------------------------------------------------
   21 · Tap highlight + accessible focus
   ------------------------------------------------------------ */
* {
  -webkit-tap-highlight-color: rgba(139, 26, 26, 0.12);
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--goud-warm);
  outline-offset: 2px;
}

/* ------------------------------------------------------------
   22 · Image loading hints
   ------------------------------------------------------------ */
img[loading="lazy"] { background: rgba(201, 160, 92, .05); }

/* ------------------------------------------------------------
   23 · Reduced motion en data-saver respecteren
   ------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  .hero-video__bg video { display: none; }
  .hero--video { background: var(--inkt) url("../img/editorial/pand-schets-mahonie.webp") center/cover no-repeat; }
}

/* Save-Data via JS toegevoegde class */
html.save-data .hero-video__bg video { display: none; }
html.save-data img[data-lazy] { content-visibility: auto; }

/* ------------------------------------------------------------
   24 · Print
   ------------------------------------------------------------ */
@media print {
  .topbar, .promobar, .footer, .popup-gift, .age-gate, .cart-drawer { display: none !important; }
  body { color: #000; background: #fff; }
}

/* ------------------------------------------------------------
   25 · FAILSAFE — Reveal-animaties UIT op mobiel
   IntersectionObserver triggert niet betrouwbaar op iOS Safari
   met dynamic viewport / scroll-restore. Content moet ALTIJD
   zichtbaar zijn — animatie is een nice-to-have, geen MUST.
   ------------------------------------------------------------ */
@media (max-width: 1024px) {
  .reveal,
  .reveal:not(.revealed):not(.is-visible),
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
  /* Idem voor specifieke items die via JS opacity:0 krijgen */
  .marmer-timeline__yearwrap,
  .marmer-timeline__body > *,
  .marmer-timeline__body figure,
  .marmer-timeline__body p,
  .jubileum-feature__body > *,
  .vitrine-tile,
  .footer__cols > *,
  .section__head > *,
  .velvet-band__inner > *,
  .marmer-story__head > *,
  .heritage-strip__inner > *,
  .newsletter__inner > *,
  .split__inner > *,
  .editorial-banner__content > *,
  .winkel-grid > *,
  .hero__content > *,
  .banner__content > * {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition-delay: 0s !important;
  }
}

/* ------------------------------------------------------------
   26 · DUPONT — volledig wit, geen gekleurde vlakken op pc of mobiel
   De PNG's hebben een ingebakken cream achtergrond. mix-blend-mode:
   multiply laat die cream optisch oplossen tegen het witte pagina-vlak.
   ------------------------------------------------------------ */
.dupont-row,
.dupont-row.section,
.dupont-row.section--light {
  background: #FFFFFF !important;
}
.dupont-marquee,
.dupont-marquee__track,
.dupont-marquee__item,
.dupont-marquee__item a,
.dupont-marquee__item figure {
  background: transparent !important;
  background-image: none !important;
}
/* Cream-achtergrond uit de PNG's optisch wegblenden tegen wit */
.dupont-marquee__item img {
  mix-blend-mode: multiply;
  background: #FFFFFF !important;
}

/* ------------------------------------------------------------
   27 · JUBILEUM-FEATURE — strakker op mobiel
   Body niet onnodig hoog, image niet onnodig groot.
   ------------------------------------------------------------ */
@media (max-width: 900px) {
  .jubileum-feature {
    min-height: auto !important;
    grid-template-columns: 1fr !important;
  }
  .jubileum-feature__media {
    min-height: 320px !important;
    aspect-ratio: 4 / 3;
    padding: 0 !important;
  }
  .jubileum-feature__body {
    padding: 40px 24px !important;
    min-height: auto !important;
  }
  .jubileum-feature__eyebrow { margin-bottom: 12px; }
  .jubileum-feature__title {
    font-size: clamp(24px, 7vw, 32px) !important;
    margin-bottom: 14px;
    max-width: 100%;
  }
  .jubileum-feature__lead {
    font-size: 15px !important;
    line-height: 1.55;
    margin-bottom: 24px;
    max-width: 100%;
  }
  .jubileum-feature__cta { padding: 12px 20px; font-size: 11px; }
}

/* ------------------------------------------------------------
   28 · VITRINE (onyx) + ander donker — strakker en zichtbaar
   ------------------------------------------------------------ */
@media (max-width: 900px) {
  .section--onyx { padding: 56px 0 !important; }
  .vitrine-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
}

/* ------------------------------------------------------------
   29 · FOOTER tagline + warrant — fleur-de-lis verbergen
   ------------------------------------------------------------ */
.footer__warrant { letter-spacing: 0.18em; }
.footer__head {
  padding: 32px 0 24px !important;
}
@media (max-width: 720px) {
  .footer__head { padding: 24px 0 16px !important; text-align: center; }
  .footer__tagline { font-size: 16px; }
  .footer__warrant { font-size: 10px; letter-spacing: 0.2em; }
}
