/* =============================================================
   VERSIE 2 · "Het uur waarop u belt"
   De pagina begint in de nacht en loopt naar de dageraad. Die reis
   zit in de secties zelf, dus ook zonder JavaScript klopt hij.
   Alle tokens staan onder #v2-root.
   ============================================================= */

#v2-root {
  --v2-night:   #070A11;
  --v2-night-2: #090D18;
  --v2-deep:    #0C1220;
  --v2-deep-2:  #101728;
  --v2-deep-3:  #151E36;
  --v2-deep-4:  #1B2540;

  --v2-dawn:    #EDE2D8;
  --v2-dawn-2:  #F6EDE4;
  --v2-dawn-3:  #E5D9CC;

  --v2-lite:    #E6ECF6;
  --v2-lite-2:  rgba(230, 236, 246, 0.64);
  --v2-lite-3:  rgba(230, 236, 246, 0.34);
  --v2-ink:     #14192A;
  --v2-ink-2:   #4C5266;
  --v2-sig:     #E3A15E;
  --v2-sig-2:   #F0B87E;

  --v2-display: 'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --v2-mono: 'IBM Plex Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;
  --v2-ui: 'Inter Tight', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --v2-pad: clamp(22px, 6vw, 108px);

  background: var(--v2-night);
  color: var(--v2-lite);
  font-family: var(--v2-ui);
  font-size: 17px;
  line-height: 1.62;
}

/* -------------------------------------------------------------
   Bouwstenen
   ------------------------------------------------------------- */
#v2-root .v2-eyebrow {
  font-family: var(--v2-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--v2-sig);
}

#v2-root .v2-h2 {
  font-family: var(--v2-display);
  font-weight: 700;
  font-size: clamp(28px, 4.3vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 0.36em 0 0;
}

#v2-root p { text-wrap: pretty; }

.v2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-family: var(--v2-ui);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.v2-btn--lg { min-height: 58px; padding: 0 32px; font-size: 16.5px; }
.v2-btn--sig { background: var(--v2-sig); color: #0B1020; }
.v2-btn--sig:hover { background: var(--v2-sig-2); transform: translateY(-1px); }
.v2-btn--line { border: 1px solid var(--v2-lite-3); color: var(--v2-lite); }
.v2-btn--line:hover { border-color: var(--v2-lite); background: rgba(230, 236, 246, 0.08); }

#v2-root a:focus-visible,
#v2-root button:focus-visible,
#v2-root summary:focus-visible {
  outline: 2px solid var(--v2-sig);
  outline-offset: 3px;
}

.v2-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--v2-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--v2-lite-2);
}
.v2-pulse {
  position: relative;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #57C98A;
  flex: none;
}
.v2-pulse::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid rgba(87, 201, 138, 0.6);
  animation: v2-ping 2.4s ease-out infinite;
}
@keyframes v2-ping {
  0% { transform: scale(0.5); opacity: 0.9; }
  100% { transform: scale(1.5); opacity: 0; }
}

.v2-bullets { display: grid; gap: 0.55em; margin-top: 1em; }
.v2-bullets li {
  position: relative;
  padding-left: 20px;
  font-size: 15.5px;
  line-height: 1.5;
}
/* Een vierkantje in plaats van een streepje, zodat het opsommingsteken
   nooit als leesteken gelezen wordt. */
.v2-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.62em;
  width: 5px; height: 5px;
  background: var(--v2-sig);
}

/* -------------------------------------------------------------
   Navigatie
   ------------------------------------------------------------- */
#v2-nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(7, 10, 17, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(230, 236, 246, 0.1);
}
.v2-nav__in { display: flex; align-items: center; gap: 24px; padding: 11px var(--v2-pad); }
.v2-nav__brand img { width: 164px; height: auto; }
.v2-nav__links { display: flex; gap: 24px; margin-left: auto; font-size: 14.5px; }
.v2-nav__links a {
  text-decoration: none;
  color: var(--v2-lite-2);
  padding: 6px 0;
  transition: color 0.18s ease;
}
.v2-nav__links a:hover { color: var(--v2-lite); }
.v2-nav__act { display: flex; align-items: center; gap: 16px; }
.v2-clock {
  font-family: var(--v2-mono);
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--v2-lite-2);
  font-variant-numeric: tabular-nums;
}
.v2-nav__burger {
  display: none;
  appearance: none;
  border: 1px solid rgba(230, 236, 246, 0.24);
  background: transparent;
  border-radius: 999px;
  width: 44px; height: 44px;
  cursor: pointer;
  padding: 0;
}
.v2-nav__burger i {
  display: block;
  width: 17px; height: 1.5px;
  margin: 3.5px auto;
  background: var(--v2-lite);
  transition: transform 0.22s ease, opacity 0.22s ease;
}
#v2-nav.v2-open .v2-nav__burger i:nth-child(1) { transform: translateY(5px) rotate(45deg); }
#v2-nav.v2-open .v2-nav__burger i:nth-child(2) { opacity: 0; }
#v2-nav.v2-open .v2-nav__burger i:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* -------------------------------------------------------------
   1 · Hero, de klok
   ------------------------------------------------------------- */
.v2-hero {
  position: relative;
  min-height: calc(100vh - 66px);
  min-height: calc(100svh - 66px);
  display: flex;
  align-items: center;
  padding: clamp(44px, 7vw, 90px) var(--v2-pad) clamp(52px, 7vw, 96px);
  overflow: hidden;
  isolation: isolate;
}
.v2-hero__bg { position: absolute; inset: 0; z-index: -2; }
.v2-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 46%; }
.v2-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 90% at 18% 78%, rgba(7, 10, 17, 0.5) 0%, rgba(7, 10, 17, 0.92) 62%, var(--v2-night) 100%);
}
.v2-hero__in { max-width: 1180px; width: 100%; }
.v2-hero__clock {
  font-family: var(--v2-mono);
  font-weight: 400;
  font-size: clamp(72px, 15.5vw, 208px);
  line-height: 0.86;
  letter-spacing: -0.05em;
  margin: 0.16em 0 0;
  color: var(--v2-lite);
  font-variant-numeric: tabular-nums;
}
.v2-hero__clock small {
  font-size: 0.28em;
  letter-spacing: 0.02em;
  color: var(--v2-sig);
  vertical-align: super;
  margin-left: 0.16em;
}
.v2-hero__title {
  font-family: var(--v2-display);
  font-weight: 800;
  font-size: clamp(31px, 5.4vw, 74px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0.34em 0 0;
}
.v2-hero__title em { font-style: normal; color: var(--v2-sig); }
.v2-hero__lead {
  max-width: 48ch;
  margin-top: 1.1em;
  font-size: clamp(16px, 1.3vw, 18.5px);
  color: var(--v2-lite-2);
}
.v2-hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 1.7em; }

/* -------------------------------------------------------------
   2 · De nummers
   ------------------------------------------------------------- */
.v2-bel { background: var(--v2-night-2); padding: clamp(48px, 6.5vw, 92px) var(--v2-pad); }
.v2-bel__list { margin-top: clamp(20px, 2.6vw, 34px); border-top: 1px solid rgba(230, 236, 246, 0.14); }
.v2-bel__list li { border-bottom: 1px solid rgba(230, 236, 246, 0.14); }
.v2-bel__list a {
  display: grid;
  grid-template-columns: minmax(0, 240px) minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: clamp(18px, 2.4vw, 30px) 0;
  text-decoration: none;
  transition: padding-left 0.3s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.3s ease;
}
.v2-bel__list a:hover { padding-left: 18px; background: rgba(230, 236, 246, 0.04); }
.v2-bel__reg {
  font-family: var(--v2-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--v2-lite-2);
}
.v2-bel__no {
  font-family: var(--v2-display);
  font-weight: 700;
  font-size: clamp(28px, 5vw, 62px);
  line-height: 1;
  letter-spacing: -0.035em;
  font-variant-numeric: tabular-nums;
}
.v2-bel__no--sm {
  font-size: clamp(17px, 2.4vw, 30px);
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
}
.v2-bel__go {
  font-family: var(--v2-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--v2-sig);
  white-space: nowrap;
}

/* -------------------------------------------------------------
   3 · De eerste 24 uur
   ------------------------------------------------------------- */
.v2-uur { background: var(--v2-deep); padding: clamp(52px, 7vw, 100px) 0; }
.v2-uur__head { padding: 0 var(--v2-pad); max-width: 1000px; }
.v2-uur__view {
  margin-top: clamp(30px, 4vw, 54px);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
}
.v2-uur__track {
  display: flex;
  gap: 16px;
  padding: 4px var(--v2-pad) 22px;
  width: max-content;
}
.v2-card {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: min(340px, 78vw);
  padding: 26px 26px 30px;
  border: 1px solid rgba(230, 236, 246, 0.14);
  border-radius: 4px;
  background: rgba(230, 236, 246, 0.03);
}
.v2-card__t {
  display: block;
  font-family: var(--v2-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--v2-sig);
}
.v2-card h3 {
  font-family: var(--v2-display);
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 27px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: 1.6em;
}
.v2-card p { margin-top: 0.7em; font-size: 15.5px; color: var(--v2-lite-2); }
.v2-card--sig { background: rgba(227, 161, 94, 0.08); border-color: rgba(227, 161, 94, 0.34); }
.v2-card--sig .v2-btn { margin-top: 20px; }

/* -------------------------------------------------------------
   4 · Wat wij regelen
   ------------------------------------------------------------- */
.v2-reg { background: var(--v2-deep-2); padding: clamp(52px, 7vw, 104px) var(--v2-pad); }
.v2-reg__head { max-width: 900px; }
.v2-reg__list { margin-top: clamp(28px, 3.6vw, 50px); max-width: 1120px; border-top: 1px solid rgba(230, 236, 246, 0.14); }
.v2-acc { border-bottom: 1px solid rgba(230, 236, 246, 0.14); }
.v2-acc summary {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
}
.v2-acc summary::-webkit-details-marker { display: none; }
.v2-acc__i {
  font-family: var(--v2-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--v2-sig);
  flex: none;
}
.v2-acc__h {
  flex: 1;
  font-family: var(--v2-display);
  font-weight: 600;
  font-size: clamp(19px, 2.5vw, 32px);
  letter-spacing: -0.022em;
  line-height: 1.16;
}
.v2-acc__x { position: relative; width: 15px; height: 15px; flex: none; }
.v2-acc__x::before, .v2-acc__x::after {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 15px; height: 1.5px;
  background: var(--v2-lite);
  transition: transform 0.24s ease;
}
.v2-acc__x::after { transform: rotate(90deg); }
.v2-acc[open] .v2-acc__x::after { transform: rotate(0deg); }
.v2-acc__b { padding: 0 0 26px; max-width: 76ch; }
.v2-acc__b p { color: var(--v2-lite-2); font-size: 16px; }
.v2-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.v2-chips li {
  padding: 7px 14px;
  border: 1px solid rgba(230, 236, 246, 0.2);
  border-radius: 999px;
  font-size: 13.5px;
  color: var(--v2-lite);
}
.v2-acc__fig { margin-top: 22px; }
.v2-acc__fig img { width: 100%; border-radius: 4px; }
.v2-acc__b .v2-bullets li { color: var(--v2-lite-2); }

/* -------------------------------------------------------------
   5 · Onafhankelijk, harde tweedeling
   ------------------------------------------------------------- */
.v2-split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  background: var(--v2-deep-3);
}
.v2-split__media { position: relative; min-height: 380px; }
.v2-split__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 60% 30%; }
.v2-split__body { padding: clamp(48px, 6.5vw, 106px) var(--v2-pad) clamp(48px, 6.5vw, 106px) clamp(26px, 4vw, 64px); }
.v2-split__list { margin-top: clamp(24px, 3vw, 38px); display: grid; gap: 0; border-top: 1px solid rgba(230, 236, 246, 0.14); }
.v2-split__list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(230, 236, 246, 0.14);
  font-size: 16px;
  color: var(--v2-lite);
}
.v2-split__note { margin-top: 1.5em; color: var(--v2-lite-2); font-size: 16px; max-width: 52ch; }
.v2-split__note strong { color: var(--v2-sig); font-weight: 600; }

/* -------------------------------------------------------------
   6 · Prijzen
   ------------------------------------------------------------- */
.v2-pr { background: var(--v2-deep-4); padding: clamp(52px, 7vw, 104px) var(--v2-pad); }
.v2-pr__head { max-width: 900px; }
.v2-pr__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: clamp(28px, 3.6vw, 48px);
}
.v2-pr__tabs button {
  appearance: none;
  cursor: pointer;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(230, 236, 246, 0.22);
  background: transparent;
  color: var(--v2-lite-2);
  font-size: 14.5px;
  font-weight: 500;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.v2-pr__tabs button:hover { color: var(--v2-lite); border-color: rgba(230, 236, 246, 0.44); }
.v2-pr__tabs button[aria-selected='true'] {
  background: var(--v2-sig);
  border-color: var(--v2-sig);
  color: #0B1020;
}
.v2-pr__panels { margin-top: clamp(26px, 3.2vw, 40px); }
.v2-pan { max-width: 880px; }
.v2-pan:focus-visible { outline: 2px solid var(--v2-sig); outline-offset: 8px; }
.v2-pan__price { display: block; }
.v2-pan__eur {
  display: block;
  font-family: var(--v2-display);
  font-weight: 700;
  font-size: clamp(40px, 7vw, 88px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--v2-sig);
  font-variant-numeric: tabular-nums;
}
.v2-pan__from {
  display: block;
  margin-bottom: 0.7em;
  font-family: var(--v2-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--v2-lite-2);
}
.v2-pan__lead { margin-top: 1em; max-width: 60ch; color: var(--v2-lite-2); font-size: 16.5px; }
.v2-pan .v2-bullets { margin-top: 1.5em; }
.v2-pan .v2-bullets li { color: var(--v2-lite); }
.v2-pan__fine { margin-top: 1.4em; font-size: 14px; color: var(--v2-lite-3); max-width: 62ch; }
.v2-pr__foot {
  margin-top: clamp(30px, 4vw, 52px);
  padding-top: clamp(20px, 2.4vw, 30px);
  border-top: 1px solid rgba(230, 236, 246, 0.14);
  font-size: 16px;
  color: var(--v2-lite-2);
  max-width: 70ch;
}
.v2-pr__foot a { color: var(--v2-sig); overflow-wrap: anywhere; }

/* -------------------------------------------------------------
   7 · Het licht keert terug. De dageraad zit in de achtergrond
       zelf, met een vaste overgang van 240px zodat er nooit tekst
       in het schemergebied valt.
   ------------------------------------------------------------- */
.v2-licht {
  background: linear-gradient(180deg, var(--v2-deep-4) 0px, #4A5673 96px, #A99C99 184px, var(--v2-dawn) 244px);
  background-color: var(--v2-dawn);
  color: var(--v2-ink);
  padding: 300px var(--v2-pad) clamp(56px, 7vw, 104px);
}
.v2-licht .v2-eyebrow { color: #A5561B; }
.v2-licht__head { max-width: 1000px; }
.v2-licht__head p { margin-top: 1.1em; color: var(--v2-ink-2); max-width: 56ch; }
/* Sluitend mozaiek: de twee staande beelden overspannen twee rijen, de
   liggende stapelen ertussen, zodat er nergens een gat valt. */
.v2-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: clamp(150px, 15.5vw, 240px);
  gap: clamp(10px, 1.4vw, 20px);
  margin-top: clamp(34px, 4.4vw, 62px);
}
.v2-mo { overflow: hidden; border-radius: 3px; min-height: 0; }
.v2-mo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.v2-mo:hover img { transform: scale(1.04); }
.v2-mo--a { grid-column: 1 / 5;   grid-row: 1 / 3; }
.v2-mo--b { grid-column: 5 / 10;  grid-row: 1 / 2; }
.v2-mo--c { grid-column: 10 / 13; grid-row: 1 / 3; }
.v2-mo--d { grid-column: 5 / 10;  grid-row: 2 / 3; }
.v2-mo--e { grid-column: 1 / 5;   grid-row: 3 / 4; }
.v2-mo--f { grid-column: 5 / 13;  grid-row: 3 / 4; }

/* -------------------------------------------------------------
   8 · Werkgebied
   ------------------------------------------------------------- */
.v2-geo { background: var(--v2-dawn); color: var(--v2-ink); padding: clamp(40px, 5.5vw, 84px) var(--v2-pad) clamp(56px, 7vw, 100px); }
.v2-geo .v2-eyebrow { color: #A5561B; }
.v2-geo__field {
  margin-top: 0.5em;
  font-family: var(--v2-display);
  font-weight: 700;
  font-size: clamp(27px, 5.6vw, 76px);
  line-height: 1.1;
  letter-spacing: -0.035em;
  max-width: 20ch;
}
/* Naam en scheidingsteken vormen samen een blok, zodat een regel nooit met
   een losse punt begint. */
.v2-geo__i { white-space: nowrap; }
.v2-geo__field em { font-style: italic; font-weight: 500; color: var(--v2-ink-2); }
.v2-geo__s { color: #B9834E; font-weight: 500; padding: 0 0.34em 0 0.28em; }
.v2-geo__note { margin-top: 1.6em; max-width: 52ch; color: var(--v2-ink-2); font-size: 16px; }

/* -------------------------------------------------------------
   9 · Vooraf vastleggen
   ------------------------------------------------------------- */
.v2-naz {
  background: var(--v2-dawn-2);
  color: var(--v2-ink);
  padding: clamp(56px, 7.5vw, 112px) var(--v2-pad);
}
.v2-naz .v2-eyebrow { color: #A5561B; }
.v2-naz .v2-h2 { max-width: 18ch; }
.v2-naz__body { max-width: 60ch; margin-top: clamp(24px, 3vw, 40px); display: grid; gap: 1.1em; }
.v2-naz__body p { color: var(--v2-ink-2); font-size: 17px; }
.v2-naz__hl {
  padding: 18px 22px;
  border-left: 2px solid var(--v2-sig);
  background: rgba(227, 161, 94, 0.14);
  color: var(--v2-ink) !important;
  font-weight: 500;
}

/* -------------------------------------------------------------
   10 · Slot
   ------------------------------------------------------------- */
.v2-end {
  position: relative;
  padding: clamp(64px, 9vw, 136px) var(--v2-pad);
  overflow: hidden;
  color: var(--v2-ink);
  isolation: isolate;
}
.v2-end__media { position: absolute; inset: 0; z-index: -2; }
.v2-end__media img { width: 100%; height: 100%; object-fit: cover; }
.v2-end::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(95deg, rgba(246, 237, 228, 0.96) 0%, rgba(246, 237, 228, 0.88) 48%, rgba(246, 237, 228, 0.6) 100%);
}
.v2-end .v2-status { color: var(--v2-ink-2); }
.v2-end__t {
  font-family: var(--v2-display);
  font-weight: 800;
  font-size: clamp(38px, 7vw, 94px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin: 0.28em 0 0;
}
.v2-end__t em { font-style: normal; color: #A5561B; }
.v2-end__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 1.6em; }
.v2-end .v2-btn--line { border-color: rgba(20, 25, 42, 0.28); color: var(--v2-ink); }
.v2-end .v2-btn--line:hover { border-color: var(--v2-ink); background: rgba(20, 25, 42, 0.06); }
.v2-end__mail { margin-top: 1.4em; font-size: 16px; }
.v2-end__mail a { color: var(--v2-ink-2); overflow-wrap: anywhere; }

/* -------------------------------------------------------------
   Voet
   ------------------------------------------------------------- */
.v2-foot { background: var(--v2-dawn-3); color: var(--v2-ink-2); }
.v2-foot__in {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas: 'logo contact' 'tag contact';
  gap: 14px clamp(30px, 5vw, 76px);
  padding: clamp(40px, 5.5vw, 76px) var(--v2-pad) clamp(28px, 3.6vw, 46px);
}
.v2-foot__in img { grid-area: logo; width: 200px; filter: brightness(0.16) saturate(0); }
.v2-foot__tag { grid-area: tag; max-width: 32ch; font-size: 15px; }
.v2-foot__c {
  grid-area: contact;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px 24px;
  align-content: start;
}
.v2-foot__c dt {
  font-family: var(--v2-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #86786A;
}
.v2-foot__c dd { margin: 5px 0 0; }
.v2-foot__c a {
  color: var(--v2-ink);
  text-decoration: none;
  font-size: 16px;
  border-bottom: 1px solid rgba(20, 25, 42, 0.24);
  overflow-wrap: anywhere;
}
.v2-foot__c a:hover { border-bottom-color: var(--v2-ink); }
.v2-foot__base {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  justify-content: space-between;
  padding: 16px var(--v2-pad) 20px;
  border-top: 1px solid rgba(20, 25, 42, 0.14);
  font-size: 13px;
}
.v2-foot__base a { color: var(--v2-ink); }

.v2-sticky { display: none; }

/* -------------------------------------------------------------
   Adaptief
   ------------------------------------------------------------- */
@media (max-width: 1000px) {
  .v2-split { grid-template-columns: 1fr; }
  .v2-split__media { min-height: 300px; height: 62vw; max-height: 460px; }
  .v2-split__body { padding-left: var(--v2-pad); }
  .v2-bel__list a { grid-template-columns: minmax(0, 1fr) auto; }
  .v2-bel__reg { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .v2-nav__links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    padding: 8px var(--v2-pad) 18px;
    background: #070A11;
    border-bottom: 1px solid rgba(230, 236, 246, 0.14);
  }
  #v2-nav.v2-open .v2-nav__links { display: flex; }
  .v2-nav__links a { padding: 13px 0; border-bottom: 1px solid rgba(230, 236, 246, 0.1); font-size: 17px; }
  .v2-nav__burger { display: block; order: 3; }
  .v2-nav__act { margin-left: auto; }
  .v2-clock { display: none; }

  /* Twee kolommen, elk beeld zijn eigen vak. */
  .v2-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
  .v2-mo { grid-column: auto; grid-row: auto; aspect-ratio: 4 / 5; }
}

@media (max-width: 720px) {
  #v2-root { font-size: 16px; --v2-pad: 22px; }
  .v2-nav__brand img { width: 140px; }
  .v2-nav__act .v2-btn--sig { min-height: 40px; padding: 0 16px; font-size: 13.5px; }
  .v2-hero { min-height: auto; padding-top: clamp(34px, 9vw, 60px); }
  .v2-hero__cta .v2-btn { flex: 1 1 100%; }
  .v2-licht { padding-top: 264px; }
  .v2-end__cta .v2-btn { flex: 1 1 100%; }
  .v2-foot { padding-bottom: 68px; }
  .v2-foot__in { grid-template-columns: 1fr; grid-template-areas: 'logo' 'tag' 'contact'; }

  .v2-sticky {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    background: var(--v2-sig);
    color: #0B1020;
    text-decoration: none;
    box-shadow: 0 -8px 24px rgba(7, 10, 17, 0.4);
  }
  .v2-sticky span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--v2-mono);
    font-size: 11.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .v2-sticky .v2-pulse { background: #14532D; }
  .v2-sticky .v2-pulse::after { border-color: rgba(20, 83, 45, 0.6); }
  .v2-sticky strong { font-size: 16px; font-weight: 700; font-variant-numeric: tabular-nums; }
}

@media (max-width: 420px) {
  .v2-sticky { flex-direction: column; align-items: flex-start; gap: 2px; }
  .v2-mosaic { grid-template-columns: 1fr; }
  .v2-mo { aspect-ratio: 4 / 3; }
}
