/* ============================================================
   Max Moens Coaching — stylesheet
   Palette: paper #EFEDE8 / ink #161513 / red #D8352B
   Type: Anton (display) / Archivo (body) / Allura (script)
   ============================================================ */

:root {
  --ink: #161513;
  --ink-2: #211f1c;
  --paper: #efede8;
  --paper-2: #e6e3dc;
  --red: #d8352b;
  --red-deep: #b0271f;
  --red-bright: #ff6a5e; /* leesbaar rood voor kleine tekst op donkere vlakken (WCAG AA) */
  --muted-ink: #5d5952;
  --muted-paper: rgba(239, 237, 232, 0.68);
  --line-ink: rgba(22, 21, 19, 0.14);
  --line-paper: rgba(239, 237, 232, 0.16);
  --bronze: #a9713f;
  --silver: #8e959c;
  --gold: #b8933c;

  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-script: "Allura", cursive;

  --pad-y: clamp(4.5rem, 9vw, 8rem);
  --radius: 20px;
  --nav-h: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

a,
button,
input,
textarea,
label {
  touch-action: manipulation;
}

ul {
  list-style: none;
}

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

::selection {
  background: var(--red);
  color: var(--paper);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  background: var(--paper);
  color: var(--ink);
  font-weight: 600;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  transform: translateY(-200%);
}

.skip-link:focus-visible {
  transform: none;
}

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

.section--paper {
  background: var(--paper);
  color: var(--ink);
  padding-block: var(--pad-y);
}

.section--ink {
  background: var(--ink);
  color: var(--paper);
  padding-block: var(--pad-y);
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-ink);
}

.eyebrow--paper {
  color: var(--muted-paper);
}

.eyebrow--red {
  color: var(--red-bright);
}

.h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-top: 0.75rem;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn--lg {
  padding: 1.05rem 2.1rem;
  font-size: 1rem;
}

.btn--red {
  background: var(--red);
  color: var(--paper);
}

.btn--red:hover {
  background: var(--red-deep);
}

.btn--ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(239, 237, 232, 0.45);
}

.btn--ghost:hover {
  border-color: var(--paper);
  background: rgba(239, 237, 232, 0.08);
}

.btn--dark {
  background: var(--ink);
  color: var(--paper);
}

.btn--dark:hover {
  background: #35322d;
}

/* ---------- nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.nav.is-scrolled {
  background: rgba(22, 21, 19, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line-paper);
}

.nav__inner {
  width: min(1320px, 94vw);
  margin-inline: auto;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--paper);
}

.nav__brand {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  text-decoration: none;
}

.nav__brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}

.nav__brand-script {
  font-family: var(--font-script);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--red);
  transform: translateY(0.1em);
}

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

.nav__links a:not(.btn) {
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  opacity: 0.9;
}

.nav__links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav__links a:not(.btn):hover::after,
.nav__links a:not(.btn).is-active::after {
  transform: scaleX(1);
}

.nav__links a:not(.btn).is-active {
  opacity: 1;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.nav__cta {
  padding: 0.65rem 1.4rem;
  font-size: 0.9rem;
}

.nav__cta-mobile {
  display: none;
}

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav__burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--paper);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav__burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav__burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0 0 0 auto;
  width: 42.5%;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  filter: grayscale(1) contrast(1.05);
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ink) 0%, rgba(22, 21, 19, 0.25) 30%, rgba(22, 21, 19, 0) 60%);
}

.hero__content {
  grid-column: 1;
  grid-row: 1;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-block: calc(var(--nav-h) + 2rem) 4rem;
  width: 100%;
  padding-inline: max(4vw, calc((100vw - 1320px) / 2)) 0;
  margin-inline: 0;
}

.hero__eyebrow {
  margin-bottom: 1.4rem;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(3.3rem, 9.5vw, 8rem);
  line-height: 0.96;
  letter-spacing: 0.005em;
  display: flex;
  flex-direction: column;
}

.hero__line {
  display: block;
}

.hero__title .dot {
  color: var(--red);
}

.hero__script {
  font-family: var(--font-script);
  text-transform: none;
  font-size: clamp(1.9rem, 3.8vw, 3.3rem);
  line-height: 1.15;
  color: var(--red-bright);
  margin-top: 0.6rem;
  letter-spacing: 0;
}

.hero__sub {
  max-width: 34rem;
  margin-top: 1.6rem;
  font-size: 1.1rem;
  color: var(--muted-paper);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.2rem;
}

/* hero load animation */
.hero__eyebrow,
.hero__line,
.hero__script,
.hero__sub,
.hero__actions {
  animation: rise 0.85s cubic-bezier(0.2, 0.65, 0.25, 1) both;
}

.hero__line:nth-child(2) {
  animation-delay: 0.08s;
}

.hero__script {
  animation-delay: 0.18s;
}

.hero__sub {
  animation-delay: 0.28s;
}

.hero__actions {
  animation-delay: 0.38s;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- ticker ---------- */
.ticker {
  background: var(--red);
  color: var(--paper);
  overflow: hidden;
  padding-block: 0.85rem;
  border-block: 1px solid rgba(22, 21, 19, 0.25);
}

.ticker__track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: ticker 38s linear infinite;
}

.ticker__track span {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ---------- aanbod ---------- */
.aanbod__grid {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 2rem;
}

.aanbod__rail .eyebrow {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.aanbod__intro {
  font-size: 1.13rem;
  line-height: 1.65;
  max-width: 46rem;
  color: var(--muted-ink);
  margin-bottom: 1.4rem;
}

.aanbod__regios {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  max-width: 46rem;
  border-left: 3px solid var(--red);
  background: var(--paper-2);
  border-radius: 0 12px 12px 0;
  padding: 0.9rem 1.2rem;
  font-size: 1rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.aanbod__regios svg {
  flex-shrink: 0;
  color: var(--red);
  margin-top: 0.15rem;
}

.dienst {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding-block: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--line-ink);
}

.dienst--flip .dienst__text {
  order: 2;
}

.dienst--flip .dienst__media {
  order: 1;
}

.dienst__head {
  display: flex;
  align-items: baseline;
  gap: 1.1rem;
  margin-bottom: 1.1rem;
}

.dienst__num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--red);
}

.dienst__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1;
  text-transform: uppercase;
}

.dienst__desc {
  max-width: 36rem;
  color: var(--muted-ink);
  margin-bottom: 1.6rem;
}

.dienst__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 12%;
  border-radius: var(--radius);
  filter: saturate(0.88) contrast(1.03);
}

/* checklists */
.checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1.6rem;
}

.checks li {
  position: relative;
  padding-left: 1.7rem;
  font-size: 0.98rem;
  font-weight: 500;
}

.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.32em;
  width: 1.05rem;
  height: 1.05rem;
  background-color: var(--red);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.checks--compact {
  grid-template-columns: 1fr;
  gap: 0.55rem;
}

.checks--compact li {
  font-size: 0.94rem;
}

/* ---------- pakketten ---------- */
.pakketten__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.pakketten__note {
  max-width: 21rem;
  color: var(--muted-paper);
  font-size: 0.98rem;
  text-align: right;
}

.pakketten__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  align-items: stretch;
}

.pakket {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 2rem 1.8rem 1.8rem;
}

.pakket--featured {
  outline: 3px solid var(--red);
  outline-offset: 0;
}

.pakket__badge {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--paper);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
}

.pakket__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}

.pakket__metal {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.32rem 0.75rem;
  border-radius: 999px;
  border: 1.5px solid currentColor;
}

.pakket__metal--bronze {
  color: var(--bronze);
}

.pakket__metal--silver {
  color: var(--silver);
}

.pakket__metal--gold {
  color: var(--gold);
}

.pakket__duur {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted-ink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pakket__naam {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.9rem;
  text-transform: uppercase;
  line-height: 1;
}

.pakket__prijs {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  line-height: 1;
  margin: 0.7rem 0 1.4rem;
}

.pakket .checks {
  margin-bottom: 1.8rem;
}

.pakket__cta {
  margin-top: auto;
}

/* losse sessies */
.losse {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: center;
  background: var(--ink-2);
  border: 1px solid var(--line-paper);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  margin-top: 1.4rem;
}

.losse__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.7rem;
  text-transform: uppercase;
  line-height: 1.05;
}

.losse__sub {
  color: var(--muted-paper);
  font-size: 0.98rem;
  margin-top: 0.5rem;
}

.losse__opties {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.losse__optie {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  border-left: 2px solid var(--red);
  padding-left: 1rem;
}

.losse__aantal {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-paper);
}

.losse__prijs {
  font-family: var(--font-display);
  font-size: 1.9rem;
  line-height: 1.1;
}

.losse__per {
  font-size: 0.85rem;
  color: var(--muted-paper);
}

/* ---------- filosofie ---------- */
.filosofie__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.filosofie__statement {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 7vw, 5.8rem);
  line-height: 1.02;
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
}

.filosofie__accent {
  color: var(--red);
}

.filosofie__tekst {
  max-width: 44rem;
  margin-top: 1.8rem;
  font-size: 1.13rem;
  color: var(--muted-ink);
}

.filosofie__quote {
  margin-top: 2.6rem;
}

.filosofie__quote p {
  font-family: var(--font-script);
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.3;
  max-width: 34ch;
  color: var(--ink);
}

.filosofie__quote cite {
  display: block;
  margin-top: 0.9rem;
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}

/* ---------- over max ---------- */
.over__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.over__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 15%;
  border-radius: var(--radius);
}

.over__tekst {
  margin-top: 1.4rem;
  color: var(--muted-paper);
  max-width: 38rem;
}

.over__subkop {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-paper);
  margin-top: 2.4rem;
}

.cv {
  margin-top: 0.9rem;
}

.cv__rij {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 1.2rem;
  padding-block: 0.85rem;
  border-top: 1px solid var(--line-paper);
  align-items: baseline;
}

.cv__rij:last-child {
  border-bottom: 1px solid var(--line-paper);
}

.cv__periode {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: var(--red-bright);
  white-space: nowrap;
}

.cv__wat {
  font-size: 0.98rem;
  font-weight: 500;
}

.cv__wat em {
  display: block;
  font-style: normal;
  font-weight: 400;
  font-size: 0.86rem;
  color: var(--muted-paper);
}

/* ---------- contact ---------- */
.contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--ink);
}

.contact__info {
  position: relative;
  color: var(--paper);
  background:
    linear-gradient(rgba(22, 21, 19, 0.82), rgba(22, 21, 19, 0.94)),
    url("assets/max-studio-full.jpg") center 20% / cover no-repeat;
}

.contact__info-inner {
  padding: var(--pad-y) clamp(1.5rem, 5vw, 4.5rem);
  max-width: 620px;
  margin-left: auto;
}

.contact__tekst {
  margin-top: 1.3rem;
  color: var(--muted-paper);
  max-width: 30rem;
}

.contact__rijen {
  margin-top: 2.2rem;
  display: flex;
  flex-direction: column;
}

.contact__rijen li {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 1rem;
  padding-block: 0.9rem;
  border-top: 1px solid var(--line-paper);
  font-size: 1rem;
}

.contact__rijen li:last-child {
  border-bottom: 1px solid var(--line-paper);
}

.contact__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red-bright);
  transform: translateY(0.25em);
}

.contact__rijen a {
  text-decoration: none;
  font-weight: 600;
}

.contact__rijen a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact__acties {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.contact__extra {
  margin-top: 1.4rem;
  font-size: 0.9rem;
  color: var(--muted-paper);
}

/* form panel */
.contact__form-panel {
  background: var(--paper-2);
  color: var(--ink);
}

.contact__form-inner {
  padding: var(--pad-y) clamp(1.5rem, 5vw, 4.5rem);
  max-width: 620px;
  margin-right: auto;
}

.contact__form-titel {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  text-transform: uppercase;
  margin-bottom: 1.8rem;
}

.form__rij {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form__veld {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.form__veld label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.verplicht {
  color: var(--red-deep);
}

.form__veld input,
.form__veld textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line-ink);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  transition: border-color 0.2s ease;
}

.form__veld textarea {
  resize: vertical;
  min-height: 120px;
}

.form__veld input:focus,
.form__veld textarea:focus {
  outline: none;
  border-color: var(--ink);
}

.form__veld ::placeholder {
  color: #6c675f;
  opacity: 1;
}

.form__akkoord {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.9rem;
  margin: 0.4rem 0 1.4rem;
  cursor: pointer;
}

.form__akkoord input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.2rem;
  accent-color: var(--red);
  flex-shrink: 0;
}

.form__submit {
  width: 100%;
}

.form__status {
  margin-top: 0.9rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}

.form__status:empty {
  display: none;
}

.form__uitleg {
  margin-top: 1rem;
  font-size: 0.86rem;
  color: var(--muted-ink);
}

.form__uitleg a {
  font-weight: 600;
}

/* ---------- footer ---------- */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(3.5rem, 7vw, 6rem) 0 2rem;
  border-top: 1px solid var(--line-paper);
  overflow: hidden;
}

.footer__wordmark {
  position: relative;
  text-align: center;
  line-height: 0.9;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.footer__naam {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 15.5vw, 13.5rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.footer__script {
  position: absolute;
  right: clamp(0.5rem, 8vw, 9rem);
  bottom: -0.35em;
  font-family: var(--font-script);
  font-size: clamp(2.2rem, 6.5vw, 5.5rem);
  color: var(--red-bright);
  transform: rotate(-5deg);
}

.footer__kolommen {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line-paper);
}

.footer__kolom {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.95rem;
}

.footer__kolom h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-paper);
  margin-bottom: 0.4rem;
}

.footer__kolom a {
  text-decoration: none;
  width: fit-content;
  padding-block: 0.2rem;
}

.footer__kolom a:hover {
  color: var(--red);
}

.footer__kolom span {
  color: var(--muted-paper);
}

.footer__socials {
  display: flex;
  gap: 0.9rem;
}

.footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--line-paper);
  border-radius: 50%;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer__socials a:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

.footer__onderbalk {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-paper);
  font-size: 0.85rem;
  color: var(--muted-paper);
}

.footer__motto {
  font-family: var(--font-script);
  font-size: 1.35rem;
  color: var(--red-bright);
}

/* ---------- reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.2, 0.65, 0.25, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  .aanbod__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .aanbod__rail .eyebrow {
    position: static;
  }

  .pakketten__grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .pakket--featured {
    order: -1;
  }

  .losse {
    grid-template-columns: 1fr;
  }

  .contact {
    grid-template-columns: 1fr;
  }

  .contact__info-inner,
  .contact__form-inner {
    max-width: none;
    margin: 0;
  }
}

@media (max-width: 860px) {
  .nav__links {
    position: fixed;
    inset: 0;
    z-index: -1;
    flex-direction: column;
    justify-content: center;
    gap: 1.6rem;
    background: var(--ink);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .nav__links a:not(.btn) {
    font-family: var(--font-display);
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    opacity: 1;
  }

  .nav__links.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .nav.is-menu-open {
    background: var(--ink);
  }

  .nav__cta {
    display: none;
  }

  .nav__cta-mobile {
    display: inline-flex;
    margin-top: 0.6rem;
  }

  .nav__burger {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 100svh;
  }

  .hero__media {
    position: absolute;
    inset: 0;
    width: 100%;
  }

  .hero__media img {
    object-position: 65% 15%;
  }

  .hero__media::after {
    background: linear-gradient(180deg, rgba(22, 21, 19, 0.45) 0%, rgba(22, 21, 19, 0.55) 45%, var(--ink) 92%);
  }

  .hero__content {
    grid-column: 1;
    grid-row: 1;
    justify-content: flex-end;
    padding: calc(var(--nav-h) + 1.5rem) 4vw 3.5rem;
  }

  .dienst {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .dienst--flip .dienst__text {
    order: 1;
  }

  .dienst--flip .dienst__media {
    order: 2;
  }

  .dienst__media img {
    aspect-ratio: 4 / 3;
  }

  .checks {
    grid-template-columns: 1fr;
  }

  .pakketten__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .pakketten__note {
    text-align: left;
  }

  .over__grid {
    grid-template-columns: 1fr;
  }

  .over__media {
    max-width: 420px;
  }

  .footer__kolommen {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

@media (max-width: 480px) {
  .hero__actions .btn {
    width: 100%;
  }

  .form__rij {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .cv__rij {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }
}

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

  .hero__eyebrow,
  .hero__line,
  .hero__script,
  .hero__sub,
  .hero__actions {
    animation: none;
  }

  .ticker__track {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn,
  .footer__socials a {
    transition: none;
  }
}
