/* ==========================================================================
   Nutri & Train — by Sem
   Soft-luxury coaching · blush / crème / bordeaux
   ========================================================================== */

/* ---------- Custom properties ---------- */
:root {
  --blush: #F2E4DC;
  --cream: #FBF6F0;
  --bordeaux: #6E2130;
  --bordeaux-deep: #571825;
  --rose: #C99A87;
  --rose-light: #E0B3A0;
  --rose-deep: #8A5B44;
  --on-dark: #F3E3DA;
  --hairline: rgba(110, 33, 48, .18);
  --hairline-dark: rgba(243, 227, 218, .22);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-script: "Mrs Saint Delafield", cursive;

  --ease-out: cubic-bezier(.19, 1, .22, 1);
  --nav-h: 5rem;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--bordeaux);
  background: var(--blush);
  /* Expliciete overflow-y voorkomt dat 'clip' naar beide assen doorwerkt */
  overflow-x: clip;
  overflow-y: auto;
}

img, video { display: block; max-width: 100%; height: auto; }

a { color: inherit; }

ul, ol { list-style: none; }

::selection { background: var(--bordeaux); color: var(--cream); }

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
  border-radius: 2px;
}

section[id] { scroll-margin-top: var(--nav-h); }

.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

.icon { width: 1.05em; height: 1.05em; fill: currentColor; }

/* ---------- Skip-link ---------- */
.skip-link {
  position: fixed;
  top: .75rem; left: .75rem;
  z-index: 200;
  padding: .7rem 1.2rem;
  background: var(--bordeaux);
  color: var(--on-dark);
  font-weight: 600;
  font-size: .85rem;
  text-decoration: none;
  border-radius: 999px;
  transform: translateY(-300%);
  transition: transform .3s var(--ease-out);
}
.skip-link:focus-visible { transform: translateY(0); outline-color: var(--on-dark); }

/* ---------- Layout-utilities ---------- */
.container { width: min(1160px, 92vw); margin-inline: auto; }

.section { padding-block: clamp(5rem, 10vw, 8.5rem); }

.section-cream { background: var(--cream); }

.section-dark { background: var(--bordeaux); color: var(--on-dark); }

.section-head { max-width: 38rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }

/* ---------- Typografie ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 380;
  line-height: 1.08;
  letter-spacing: -.01em;
}

h1 em, h2 em, h3 em, .hw-em {
  font-style: italic;
  font-weight: 420;
}

h2 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }

h3 { font-size: 1.45rem; line-height: 1.25; }

.overline {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--rose-deep);
  margin-bottom: 1.1rem;
}
.section-dark .overline,
.overline-dark { color: var(--rose-light); }

/* ---------- Knoppen ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .95rem 1.9rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .02em;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background-color .35s var(--ease-out), color .35s var(--ease-out),
              border-color .35s var(--ease-out), transform .35s var(--ease-out);
}
.btn:hover { transform: translateY(-2px); }

.btn-solid { background: var(--bordeaux); color: var(--on-dark); }
.btn-solid:hover { background: var(--bordeaux-deep); }

.btn-ghost { border-color: var(--hairline); color: var(--bordeaux); }
.btn-ghost:hover { border-color: var(--bordeaux); }

.btn-cream { background: var(--cream); color: var(--bordeaux); }
.btn-cream:hover { background: var(--blush); }

.btn-ghost-dark { border-color: var(--hairline-dark); color: var(--on-dark); }
.btn-ghost-dark:hover { border-color: var(--on-dark); }

.btn-sm { padding: .65rem 1.4rem; font-size: .85rem; }
.btn-lg { padding: 1.15rem 2.3rem; font-size: 1rem; }

.section-dark :focus-visible { outline-color: var(--on-dark); }

/* Pijl-link in kaarten */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-top: auto;
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  padding-top: 1.4rem;
}
.arrow-link .icon { transition: transform .4s var(--ease-out); }
.arrow-link:hover .icon, .arrow-link:focus-visible .icon { transform: translateX(6px); }

/* ---------- Motieven: boog & polaroid ---------- */
.arch {
  border-radius: 999px 999px 0 0;
  overflow: hidden;
}
.arch img, .arch video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Parallax-buffer: media iets groter dan de boog-mask, zodat de ±16px
   parallax-verschuiving nooit de rand van de clip binnentrekt */
.hero-arch video,
.over-arch img {
  height: calc(100% + 32px);
  margin-top: -16px;
}

.polaroid {
  background: var(--cream);
  padding: .8rem .8rem 0;
  box-shadow: 0 18px 45px -22px rgba(110, 33, 48, .35);
}
.polaroid img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.polaroid-caption {
  font-family: var(--font-script);
  font-size: 1.9rem;
  line-height: 1;
  text-align: center;
  color: var(--rose-deep);
  padding: .85rem 0 .95rem;
}

/* ==========================================================================
   NAV
   ========================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 130; /* boven het mobiele menu, zodat de sluitknop bereikbaar blijft */
  transition: background-color .45s var(--ease-out), box-shadow .45s var(--ease-out);
}
.site-header.scrolled {
  background: var(--blush);
  box-shadow: 0 1px 0 var(--hairline);
}
body.menu-open .site-header {
  background: transparent;
  box-shadow: none;
}
body.menu-open .brand { color: var(--on-dark); }
body.menu-open .brand-script { color: var(--rose); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-h);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: .55rem;
  text-decoration: none;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 480;
  font-size: 1.28rem;
  letter-spacing: .01em;
}
.brand-script {
  font-family: var(--font-script);
  font-size: 2.1rem;
  line-height: 1;
  color: var(--rose-deep);
  transform: translateY(.1em);
}

.nav-links { display: flex; align-items: center; gap: 2rem; }

.nav-link {
  position: relative;
  font-weight: 500;
  font-size: .93rem;
  text-decoration: none;
  padding: .35rem 0;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--bordeaux);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease-out);
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

/* Mobiele toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 7px;
  padding: 1rem .6rem;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav-toggle-bar {
  display: block;
  width: 28px; height: 2px;
  background: currentColor;
  color: var(--bordeaux);
  transition: transform .4s var(--ease-out), opacity .3s;
}
body.menu-open .nav-toggle-bar { color: var(--on-dark); }
body.menu-open .nav-toggle-bar:first-child { transform: translateY(4.5px) rotate(45deg); }
body.menu-open .nav-toggle-bar:last-child { transform: translateY(-4.5px) rotate(-45deg); }

/* Fullscreen mobiel menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: var(--bordeaux);
  color: var(--on-dark);
  display: flex;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity .5s var(--ease-out), visibility 0s linear .5s;
}
.mobile-menu.open {
  visibility: visible;
  opacity: 1;
  transition: opacity .5s var(--ease-out);
}
.mobile-menu-inner {
  width: min(1160px, 92vw);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.mobile-link {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 9vw, 3.4rem);
  font-weight: 380;
  line-height: 1.25;
  text-decoration: none;
  width: fit-content;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.mobile-menu.open .mobile-link,
.mobile-menu.open .mobile-menu-footer {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(.12s + var(--i) * 70ms);
}
.mobile-link:hover { font-style: italic; color: var(--rose); }
.mobile-menu-footer {
  margin-top: 2.2rem;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.mobile-menu-insta {
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--hairline-dark);
  padding-bottom: .1rem;
}
body.menu-open { overflow: hidden; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: calc(var(--nav-h) + clamp(1.5rem, 4vh, 3.5rem));
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
  flex: 1;
  padding-bottom: clamp(2rem, 5vh, 4rem);
}

.hero-title {
  font-size: clamp(3rem, 8.5vw, 6.8rem);
  max-width: 12ch;
}

/* Woord-voor-woord rise */
.hw { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: .08em; margin-bottom: -.08em; }
.hw-in { display: inline-block; }
body.js .hw-in {
  transform: translateY(115%);
  transition: transform 1s var(--ease-out);
  transition-delay: calc(.15s + var(--i) * 70ms);
}
body.js.is-loaded .hw-in { transform: translateY(0); }

.hero-sub { max-width: 46ch; margin-top: 1.6rem; }

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.4rem;
}

/* Hero-media: boog + video + badge */
.hero-media {
  position: relative;
  justify-self: end;
  width: min(100%, 26rem);
}
.hero-arch {
  aspect-ratio: 9 / 13;
  max-height: 76vh;
  width: 100%;
}
.hero-arch video { will-change: transform; }

.hero-badge {
  position: absolute;
  left: clamp(-3.2rem, -4vw, -2rem);
  bottom: 9%;
  width: clamp(7rem, 11vw, 8.75rem);
  aspect-ratio: 1;
  filter: drop-shadow(0 14px 30px rgba(110, 33, 48, .22));
}
.badge-disc { fill: var(--cream); }
.badge-rotor {
  transform-origin: 60px 60px;
  animation: badge-spin 18s linear infinite;
}
.badge-text {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 10.6px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  fill: var(--bordeaux);
}
.badge-star { fill: var(--bordeaux); }

@keyframes badge-spin { to { transform: rotate(360deg); } }

/* Pijlers-regel */
.pillars {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding-block: 1.6rem;
}
.pillars-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3.5vw, 2.5rem);
  flex-wrap: wrap;
}
.pillar {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 380;
  font-size: clamp(1.35rem, 3vw, 2.1rem);
}
.pillar-sep { color: var(--rose); font-size: 1rem; }

/* ==========================================================================
   AANBOD
   ========================================================================== */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.4rem, 2.5vw, 2rem);
  align-items: stretch;
}

.offer-card {
  display: flex;
  flex-direction: column;
  background: var(--blush);
  border-radius: 999px 999px 22px 22px;
  padding: 1.15rem 1.15rem 2rem;
  transition: transform .6s var(--ease-out);
}
.offer-card:hover, .offer-card:focus-within { transform: translateY(-6px); }

.offer-arch { aspect-ratio: 4 / 4.4; }
.offer-arch img {
  transition: transform 1.4s var(--ease-out);
}
.offer-card:hover .offer-arch img,
.offer-card:focus-within .offer-arch img { transform: scale(1.04); }

.offer-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.6rem 1rem 0;
}
.offer-body h3 { margin-bottom: .8rem; }
.offer-body p { font-size: .98rem; }

/* Donkere coaching-kaart */
.offer-card-dark {
  background: var(--bordeaux);
  color: var(--on-dark);
  justify-content: flex-end;
  padding-top: 2rem;
}
.offer-script {
  font-family: var(--font-script);
  font-size: clamp(3.4rem, 5vw, 4.6rem);
  line-height: 1.1;
  color: var(--rose);
  text-align: center;
  padding: clamp(2rem, 4vw, 3.5rem) 0 1rem;
}
.star-list { margin-top: 1.3rem; display: grid; gap: .55rem; }
.star-list li {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .95rem;
  font-weight: 500;
}
.icon-star-sm { width: .8em; height: .8em; fill: var(--rose); flex: none; }

.offer-note {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
  font-size: 1rem;
}
.offer-note a {
  font-weight: 600;
  text-decoration-color: var(--rose);
  text-underline-offset: 4px;
}
.offer-note a:hover { color: var(--bordeaux-deep); }

/* ==========================================================================
   OVER SEM
   ========================================================================== */
.over-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: center;
}

.over-script {
  font-family: var(--font-script);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--rose-deep);
  margin-bottom: .4rem;
}

.over-copy h2 { margin-bottom: 1.6rem; }
.over-copy p + p { margin-top: 1.1rem; }

.signature {
  margin-top: 2rem;
  font-size: 1rem;
}
.signature-script {
  font-family: var(--font-script);
  font-size: 2.6rem;
  line-height: 1;
  vertical-align: middle;
  margin-left: .3rem;
}

.over-media {
  position: relative;
  padding-bottom: 3.5rem;
}
.over-arch {
  width: 82%;
  margin-left: auto;
  aspect-ratio: 4 / 5;
}
.over-arch img { will-change: transform; }
.over-polaroid-wrap {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(46%, 15rem);
  will-change: transform;
}
.over-polaroid {
  transform: rotate(-4deg);
  transition: transform .6s var(--ease-out);
}
.over-polaroid:hover { transform: rotate(0deg); }

/* ==========================================================================
   BALANS-QUOTE
   ========================================================================== */
.quote { padding-block: clamp(6.5rem, 14vw, 11rem); }

.quote-inner { max-width: 56rem; text-align: center; }

.quote-line {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 350;
  font-size: clamp(2rem, 5.2vw, 3.9rem);
  line-height: 1.25;
}
.qw { opacity: .25; transition: opacity .5s linear; }
body:not(.js) .qw { opacity: 1; }
.qw-script {
  font-family: var(--font-script);
  font-style: normal;
  font-size: 1.35em;
  color: var(--rose);
}

.quote-sub {
  margin-top: 2.2rem;
  max-width: 52ch;
  margin-inline: auto;
  color: var(--on-dark);
  opacity: .92;
}

/* ==========================================================================
   REVIEWS
   ========================================================================== */
.reviews-head {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.carousel-nav { display: flex; gap: .7rem; }

.carousel-btn {
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  background: transparent;
  color: var(--bordeaux);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background-color .35s var(--ease-out), color .35s var(--ease-out),
              border-color .35s var(--ease-out), opacity .35s;
}
.carousel-btn .icon { width: 1.15rem; height: 1.15rem; }
.carousel-btn:hover:not(:disabled) {
  background: var(--bordeaux);
  border-color: var(--bordeaux);
  color: var(--cream);
}
.carousel-btn:disabled { opacity: .35; cursor: default; }

.carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(26.5rem, 84vw);
  gap: clamp(1.2rem, 2vw, 1.8rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: .8rem;
  scrollbar-width: none;
  cursor: grab;
}
.carousel::-webkit-scrollbar { display: none; }
.carousel.dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
  -webkit-user-select: none;
}
.carousel.dragging .review-card { pointer-events: none; }

.review-card {
  scroll-snap-align: start;
  background: var(--blush);
  border-radius: 22px;
  padding: clamp(1.8rem, 3vw, 2.4rem);
  display: flex;
  flex-direction: column;
}

.stars { display: flex; gap: .3rem; margin-bottom: 1.4rem; }
.star { width: .95rem; height: .95rem; fill: var(--bordeaux); }

.review-quote {
  font-family: var(--font-display);
  font-weight: 360;
  font-size: 1.16rem;
  line-height: 1.55;
}

.review-name {
  margin-top: auto;
  padding-top: 1.6rem;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .04em;
  color: var(--rose-deep);
}

/* ==========================================================================
   WERKWIJZE
   ========================================================================== */
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
}
.steps::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0; right: 0;
  height: 1px;
  background: var(--hairline);
}
.step { position: relative; padding-top: 2.4rem; }
.step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--bordeaux);
}
.step-num {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 340;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--rose-deep);
  margin-bottom: .9rem;
}
.step h3 { font-size: 1.3rem; margin-bottom: .6rem; }
.step p { font-size: .98rem; }

/* ==========================================================================
   GALERIJ-MARQUEE
   ========================================================================== */
.gallery { padding-block: clamp(4.5rem, 8vw, 7rem); }

.gallery-overline {
  text-align: center;
  margin-bottom: clamp(2.2rem, 4vw, 3.2rem);
}

.marquee { overflow: hidden; }

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 48s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }

.marquee-group {
  display: flex;
  gap: clamp(1.4rem, 3vw, 2.4rem);
  padding-inline: clamp(.7rem, 1.5vw, 1.2rem);
  padding-block: 1.6rem;
}

.marquee .polaroid {
  width: clamp(13rem, 18vw, 16rem);
  flex: none;
  transition: transform .6s var(--ease-out);
}
.marquee .polaroid:nth-child(odd) { transform: rotate(-2.4deg); }
.marquee .polaroid:nth-child(even) { transform: rotate(2deg) translateY(6px); }
.marquee .polaroid:hover { transform: rotate(0deg) translateY(0) scale(1.02); }

@keyframes marquee { to { transform: translateX(-50%); } }

/* ==========================================================================
   CTA & FOOTER
   ========================================================================== */
.cta { padding-block: clamp(6.5rem, 13vw, 10.5rem); }

.cta-inner { text-align: center; max-width: 52rem; }

.cta-title { font-size: clamp(2.5rem, 6vw, 4.6rem); }

.cta-sub {
  max-width: 46ch;
  margin: 1.6rem auto 0;
  opacity: .92;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.8rem;
}
.cta-actions .btn { max-width: 100%; overflow-wrap: anywhere; }

.footer {
  background: var(--bordeaux);
  color: var(--on-dark);
  border-top: 1px solid var(--hairline-dark);
  padding-block: 2.4rem;
  font-size: .88rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-brand { display: inline-flex; align-items: baseline; gap: .5rem; }
.footer-brand .brand-name { font-size: 1.1rem; }
.footer-brand .brand-script { color: var(--rose); font-size: 1.9rem; }

.footer-pillars {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
}
.footer-pillars span { color: var(--rose); font-size: .8em; }

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}
.footer-links a {
  text-decoration: none;
  border-bottom: 1px solid var(--hairline-dark);
  padding-bottom: .1rem;
  transition: border-color .3s;
}
.footer-links a:hover { border-color: var(--on-dark); }
.footer-copy { opacity: .7; }

/* ==========================================================================
   SCROLL-REVEALS
   ========================================================================== */
body.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
body.js .reveal.in-view { opacity: 1; transform: translateY(0); }

body.js .reveal-img {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.15s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
body.js .reveal-img.in-view { clip-path: inset(0 0 0 0); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1020px) {
  .offer-grid { grid-template-columns: 1fr 1fr; }
  .offer-card-dark { grid-column: 1 / -1; }
  .offer-card-dark .offer-body { max-width: 34rem; margin-inline: auto; text-align: center; }
  .offer-card-dark .star-list { justify-items: center; }
  .offer-card-dark .arrow-link { margin-inline: auto; }
}

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .hero { padding-top: calc(var(--nav-h) + 1rem); }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-media { justify-self: center; width: min(100%, 21rem); }
  .hero-arch { max-height: none; }
  /* Offset begrensd op de viewportmarge, zodat de badge op smalle schermen niet wordt afgesneden */
  .hero-badge { left: auto; right: max(-1.2rem, calc((100vw - 100%) / -2 + .4rem)); bottom: 6%; }

  .over-grid { grid-template-columns: 1fr; }
  .over-media { max-width: 30rem; }

  .reviews-head { flex-direction: column; align-items: flex-start; }

  .steps { grid-template-columns: 1fr; gap: 2.6rem; }
  .steps::before {
    top: 0; bottom: 0;
    left: 5px; right: auto;
    width: 1px; height: auto;
  }
  .step { padding-top: 0; padding-left: 2.2rem; }
  .step::before { top: 7px; }
}

@media (max-width: 560px) {
  .offer-grid { grid-template-columns: 1fr; }
  .offer-card-dark .offer-body { text-align: left; }
  .offer-card-dark .star-list { justify-items: start; }
  .offer-card-dark .arrow-link { margin-inline: 0; }
  .btn-lg { padding: 1rem 1.6rem; font-size: .92rem; }
}

/* ==========================================================================
   PREFERS-REDUCED-MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    transition-delay: 0ms !important;
  }

  body.js .reveal, body.js .hw-in { opacity: 1; transform: none; }
  body.js .reveal-img { clip-path: inset(0 0 0 0); }
  .qw { opacity: 1 !important; }
  .marquee-track { animation: none; }
  .badge-rotor { animation: none; }
}
