/* ==========================================================================
   POM DOMBURG — twee homepage ontwerpen in één document
   V1 "Apertuur"  : de gekantelde O uit het POM logo als diafragma
   V2 "De route"  : van zee naar toonbank als getekende lijn
   Alle tokens, id's en klassen zijn per versie genamespaced (v1- / v2-).
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  overflow-x: clip;
  background: #FFF7F0;
  font-family: 'Instrument Sans', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, p, dl, dd, figure, blockquote, ol, ul { margin: 0; padding: 0; }
ol, ul { list-style: none; }
button { font: inherit; color: inherit; }

::selection { background: #FF7B5B; color: #17120F; }

.skip {
  position: fixed; top: 8px; left: 8px; z-index: 999;
  transform: translateY(-200%);
  background: #17120F; color: #fff; padding: 12px 18px;
  border-radius: 999px; text-decoration: none; font-size: 14px; font-weight: 600;
}
.skip:focus-visible { transform: none; }

:where(a, button, [tabindex]):focus-visible {
  outline: 3px solid #17120F;
  outline-offset: 3px;
  border-radius: 4px;
}

/* --------------------------------------------------------------------------
   VERSIE SWITCH — bewust neutraal, hoort bij geen van beide ontwerpen
   -------------------------------------------------------------------------- */
.vswitch {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  top: 76px;
  z-index: 900;
  display: flex; align-items: center; gap: 4px;
  padding: 5px 6px 5px 12px;
  background: rgba(20, 17, 15, .88);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(20, 17, 15, .22);
}
.vswitch__label {
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255, 255, 255, .55); margin-right: 4px; font-weight: 600;
}
.vswitch__btn {
  appearance: none; border: 0; cursor: pointer;
  background: transparent; color: rgba(255, 255, 255, .62);
  font-size: 12px; font-weight: 700; letter-spacing: .06em;
  padding: 7px 12px; border-radius: 999px;
  transition: background .22s ease, color .22s ease;
  min-height: 32px;
}
.vswitch__btn:hover { color: #fff; }
.vswitch__btn[aria-pressed="true"] { background: #FF7B5B; color: #17120F; }
.vswitch__btn:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

@media (max-width: 860px) {
  .vswitch { top: 66px; padding: 3px 4px; }
  .vswitch__btn { padding: 6px 10px; font-size: 11px; min-height: 28px; }
  .vswitch__label { display: none; }
}

.version[hidden] { display: none !important; }


/* ==========================================================================
   V E R S I E   1  —  A P E R T U U R
   ========================================================================== */
#v1 {
  --v1-cream:  #FFF7F0;
  --v1-paper:  #FFFFFF;
  --v1-ink:    #17120F;
  --v1-ink-70: rgba(23, 18, 15, .74);
  --v1-muted:  #6B605A;
  --v1-line:   rgba(23, 18, 15, .14);
  --v1-coral:  #FF7B5B;
  --v1-coral-d:#BE4022;
  --v1-warm:   #F3E7DC;

  --v1-display: 'Archivo', system-ui, sans-serif;
  --v1-serif:   'Instrument Serif', Georgia, serif;
  --v1-body:    'Instrument Sans', system-ui, sans-serif;

  --v1-pad: clamp(20px, 5vw, 64px);
  --v1-max: 1440px;

  background: var(--v1-cream);
  color: var(--v1-ink);
  font-family: var(--v1-body);
}

.v1-wrap {
  width: 100%;
  max-width: var(--v1-max);
  margin-inline: auto;
  padding-inline: var(--v1-pad);
}

#v1 .v1-kicker {
  font-size: 11px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--v1-coral-d);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 22px;
}
#v1 .v1-kicker::before {
  content: ""; width: 16px; height: 22px; flex: none;
  border: 4px solid var(--v1-coral);
  border-radius: 50%;
  transform: rotate(-16deg);
}

/* --- knoppen --- */
#v1 .v1-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 26px; border-radius: 999px;
  font-size: 15px; font-weight: 600; letter-spacing: .01em;
  text-decoration: none; white-space: nowrap;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), background .25s ease, color .25s ease, border-color .25s ease;
}
#v1 .v1-btn svg { width: 17px; height: 17px; transition: transform .3s cubic-bezier(.2,.8,.2,1); }
#v1 .v1-btn:hover svg { transform: translateX(4px); }
#v1 .v1-btn--solid { background: var(--v1-coral); color: var(--v1-ink); }
#v1 .v1-btn--solid:hover { background: var(--v1-ink); color: var(--v1-cream); transform: translateY(-2px); }
#v1 .v1-btn--ghost { border: 1.5px solid var(--v1-line); color: var(--v1-ink); }
#v1 .v1-btn--ghost:hover { border-color: var(--v1-ink); transform: translateY(-2px); }
#v1 .v1-btn--dark { background: var(--v1-ink); color: var(--v1-cream); }
#v1 .v1-btn--dark:hover { background: var(--v1-paper); color: var(--v1-ink); transform: translateY(-2px); }

/* --- navigatie --- */
.v1-nav {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--v1-cream) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.v1-nav.is-stuck { border-bottom-color: var(--v1-line); }
.v1-nav__in {
  max-width: var(--v1-max); margin-inline: auto;
  padding: 14px var(--v1-pad);
  display: flex; align-items: center; gap: 28px;
}
.v1-nav__brand { flex: none; }
.v1-nav__brand img { width: 78px; height: auto; }
.v1-nav__links { margin-left: auto; display: flex; gap: 30px; }
.v1-nav__links a {
  text-decoration: none; font-size: 14px; font-weight: 500;
  color: var(--v1-ink-70); position: relative; padding: 4px 0;
}
.v1-nav__links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1.5px;
  background: var(--v1-coral); transition: right .35s cubic-bezier(.2,.8,.2,1);
}
.v1-nav__links a:hover { color: var(--v1-ink); }
.v1-nav__links a:hover::after { right: 0; }
.v1-nav__cta {
  flex: none; text-decoration: none;
  background: var(--v1-ink); color: var(--v1-cream);
  padding: 11px 20px; border-radius: 999px;
  font-size: 14px; font-weight: 600;
  transition: background .25s ease, color .25s ease;
}
.v1-nav__cta:hover { background: var(--v1-coral); color: var(--v1-ink); }

@media (max-width: 900px) {
  .v1-nav__links { display: none; }
  .v1-nav__cta { margin-left: auto; }
}

/* --- hero : het diafragma --- */
.v1-hero {
  position: relative;
  min-height: min(96svh, 900px);
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(40px, 8vh, 90px) 0 clamp(28px, 5vh, 60px);
  overflow: clip;
}
.v1-hero__stage {
  position: relative;
  width: 100%; max-width: var(--v1-max);
  margin-inline: auto; padding-inline: var(--v1-pad);
  display: grid; place-items: center;
}

/* het diafragma: gekantelde ellips, exact het gebaar van de O in het logo.
   De buitenste laag draagt geen eigen transform, zodat schaal geanimeerd
   kan worden zonder de kanteling of de centrering te overschrijven. */
.v1-ap {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  z-index: 1;
  pointer-events: none;
  will-change: transform;
}
.v1-ap__lens {
  position: relative;
  width: clamp(230px, 30vw, 400px);
  aspect-ratio: 0.74 / 1;
  transform: rotate(-14deg);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 40px 90px -40px rgba(23, 18, 15, .45);
}
.v1-ap__inner { position: absolute; inset: 0; transform: rotate(14deg) scale(1.5); }
.v1-ap__inner img { width: 100%; height: 100%; object-fit: cover; }
/* lichte sluier zodat de zware kop altijd leesbaar over het beeld valt */
.v1-ap__lens::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(115% 88% at 50% 48%,
    rgba(255, 247, 240, .52) 0%,
    rgba(255, 247, 240, .26) 62%,
    rgba(255, 247, 240, 0) 100%);
}

.v1-hero__type { position: relative; z-index: 2; text-align: center; pointer-events: none; width: 100%; }
.v1-hero__type .v1-eyebrow {
  display: inline-flex;
  padding: 8px 16px 7px; border-radius: 999px;
  background: var(--v1-ink); color: var(--v1-cream);
  font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  margin-bottom: clamp(18px, 4vh, 40px);
}
.v1-hero__h1 {
  font-family: var(--v1-display);
  font-variation-settings: 'wdth' 112, 'wght' 800;
  font-size: clamp(38px, 12vw, 200px);
  line-height: .84;
  letter-spacing: -.035em;
  text-transform: uppercase;
  margin: 0;
}
.v1-hero__l1, .v1-hero__l2 { display: block; will-change: transform; }
.v1-hero__l2 { margin-top: clamp(8px, 1.4vh, 18px); }
.v1-hero__h1 em {
  font-family: var(--v1-serif);
  font-style: italic;
  font-variation-settings: normal;
  text-transform: none;
  font-size: 1.08em;
  letter-spacing: -.01em;
  color: var(--v1-coral-d);
}

.v1-hero__foot {
  position: relative; z-index: 3;
  width: 100%; max-width: var(--v1-max);
  margin: clamp(30px, 6vh, 66px) auto 0;
  padding-inline: var(--v1-pad);
  display: flex; flex-wrap: wrap; align-items: flex-end;
  justify-content: space-between; gap: 24px;
}
.v1-hero__lead {
  max-width: 34ch; font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.55; color: var(--v1-ink-70);
}
.v1-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.v1-scrollhint {
  position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%);
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--v1-muted); z-index: 3;
}
.v1-scrollhint::after {
  content: ""; display: block; width: 1px; height: 24px; margin: 8px auto 0;
  background: linear-gradient(var(--v1-muted), transparent);
}

@media (max-width: 760px) {
  .v1-ap__lens { width: min(60vw, 260px); }
  .v1-ap__inner { transform: rotate(14deg) scale(1.6); }
  .v1-hero__foot { flex-direction: column; align-items: stretch; margin-top: clamp(52px, 11vh, 96px); }
  .v1-hero__lead { max-width: none; }
  .v1-hero__actions .v1-btn { flex: 1 1 auto; justify-content: center; }
  .v1-scrollhint { display: none; }
}

/* --- manifest --- */
.v1-manifest { padding: clamp(90px, 15vh, 190px) 0 clamp(70px, 11vh, 150px); }
.v1-manifest__h {
  font-family: var(--v1-display);
  font-variation-settings: 'wdth' 100, 'wght' 600;
  font-size: clamp(30px, 5.4vw, 78px);
  line-height: 1.02; letter-spacing: -.03em;
  max-width: 17ch;
  margin-bottom: clamp(40px, 7vh, 84px);
}
.v1-manifest__h em {
  font-family: var(--v1-serif); font-style: italic;
  font-variation-settings: normal;
  color: var(--v1-coral-d); font-size: 1.06em;
}
.v1-manifest__cols {
  display: grid; gap: clamp(20px, 3vw, 56px);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 980px; margin-left: auto;
}
.v1-manifest__cols p { font-size: clamp(15px, 1.15vw, 17.5px); line-height: 1.65; color: var(--v1-ink-70); }

/* --- wat wij maken --- */
.v1-kaart { padding: clamp(60px, 9vh, 120px) 0 clamp(70px, 11vh, 150px); }
.v1-kaart__grid { display: grid; gap: clamp(36px, 5vw, 90px); grid-template-columns: minmax(0, 340px) minmax(0, 1fr); align-items: start; }
.v1-kaart__side { position: sticky; top: 110px; }
.v1-kaart__side h2 {
  font-family: var(--v1-display);
  font-variation-settings: 'wdth' 96, 'wght' 700;
  font-size: clamp(26px, 2.6vw, 40px); line-height: 1.05; letter-spacing: -.025em;
  margin-bottom: 18px;
}
.v1-kaart__note { font-size: 15px; line-height: 1.6; color: var(--v1-muted); max-width: 34ch; }

.v1-kaart__list { display: grid; gap: clamp(14px, 2vw, 26px); }
.v1-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 235px) minmax(0, 1fr);
  gap: clamp(16px, 2.6vw, 40px);
  align-items: center;
  padding: clamp(18px, 2.6vw, 34px) clamp(16px, 2.4vw, 32px);
  background: var(--v1-paper);
  border-radius: 18px;
  border: 1px solid var(--v1-line);
  transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s ease;
}
.v1-item:hover { transform: translateY(-4px); box-shadow: 0 26px 50px -30px rgba(23,18,15,.4); }
.v1-item__no {
  font-family: var(--v1-display); font-variation-settings: 'wdth' 80, 'wght' 700;
  font-size: 13px; letter-spacing: .1em; color: var(--v1-coral-d); align-self: start; padding-top: 6px;
}
.v1-item__pic {
  aspect-ratio: 0.76 / 1;
  border-radius: 50%;
  overflow: hidden;
  transform: rotate(-14deg);
  background: var(--v1-warm);
}
.v1-item__pic img { width: 100%; height: 100%; object-fit: cover; transform: rotate(14deg) scale(1.45); transition: transform .8s cubic-bezier(.2,.8,.2,1); }
.v1-item:hover .v1-item__pic img { transform: rotate(14deg) scale(1.56); }
.v1-item__txt h3 {
  font-family: var(--v1-display); font-variation-settings: 'wdth' 105, 'wght' 700;
  font-size: clamp(24px, 3vw, 46px); line-height: 1; letter-spacing: -.03em;
  text-transform: uppercase; margin-bottom: 12px;
}
.v1-item__txt p { font-size: clamp(14px, 1.05vw, 17px); line-height: 1.6; color: var(--v1-ink-70); max-width: 50ch; }

@media (max-width: 980px) {
  .v1-kaart__grid { grid-template-columns: 1fr; }
  .v1-kaart__side { position: static; }
}
@media (max-width: 620px) {
  .v1-item { grid-template-columns: 40px 1fr; row-gap: 16px; }
  .v1-item__pic { grid-column: 2; width: min(56%, 190px); }
  .v1-item__txt { grid-column: 2; }
}

/* --- de basis : mozaïek --- */
.v1-basis { padding: clamp(60px, 9vh, 120px) 0 clamp(70px, 11vh, 150px); }
.v1-basis__h {
  font-family: var(--v1-display); font-variation-settings: 'wdth' 100, 'wght' 600;
  font-size: clamp(26px, 4vw, 58px); line-height: 1.05; letter-spacing: -.03em;
  max-width: 20ch; margin-bottom: clamp(40px, 7vh, 80px);
}
.v1-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(14px, 2.4vw, 34px);
  align-items: start;
}
.v1-mos { margin: 0; will-change: transform; }
.v1-mos img { width: 100%; border-radius: 14px; }
.v1-mos figcaption {
  display: flex; gap: 10px; align-items: baseline;
  margin-top: 14px; font-size: 13px; color: var(--v1-muted);
}
.v1-mos figcaption span { font-weight: 700; color: var(--v1-coral-d); font-size: 11px; letter-spacing: .1em; }
.v1-mos--a { grid-column: 1 / span 5; }
.v1-mos--b { grid-column: 6 / span 4; margin-top: clamp(50px, 10vw, 130px); }
.v1-mos--c { grid-column: 10 / span 3; margin-top: clamp(16px, 3vw, 40px); }
.v1-mos--a img { aspect-ratio: 4/3; object-fit: cover; }
.v1-mos--b img { aspect-ratio: 3/4; object-fit: cover; }
.v1-mos--c img { aspect-ratio: 1/1; object-fit: cover; }

@media (max-width: 860px) {
  .v1-mos--a { grid-column: 1 / span 7; }
  .v1-mos--b { grid-column: 8 / span 5; margin-top: 40px; }
  .v1-mos--c { grid-column: 1 / span 8; margin-top: 26px; }
}
@media (max-width: 520px) {
  .v1-mos--a, .v1-mos--b, .v1-mos--c { grid-column: 1 / -1; margin-top: 0; }
}

/* --- lint --- */
.v1-ribbon {
  padding: clamp(30px, 5vh, 60px) 0;
  border-block: 1px solid var(--v1-line);
  overflow: hidden;
  background: var(--v1-warm);
}
.v1-ribbon__track { display: flex; width: max-content; }
.v1-ribbon__set { display: flex; align-items: center; gap: clamp(28px, 4vw, 64px); padding-right: clamp(28px, 4vw, 64px); }
.v1-ribbon__word {
  font-family: var(--v1-display); font-variation-settings: 'wdth' 115, 'wght' 700;
  font-size: clamp(30px, 5vw, 76px); text-transform: uppercase;
  letter-spacing: -.03em; color: var(--v1-ink); white-space: nowrap;
}
.v1-lens {
  display: block; flex: none;
  width: clamp(74px, 8vw, 120px); aspect-ratio: 0.74/1;
  border-radius: 50%; overflow: hidden; transform: rotate(-14deg);
}
.v1-lens img { width: 100%; height: 100%; object-fit: cover; transform: rotate(14deg) scale(1.5); }

/* --- de plek --- */
.v1-plek { position: relative; padding: clamp(90px, 16vh, 200px) 0; overflow: clip; }
.v1-plek__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.v1-plek::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(23,18,15,.62) 0%, rgba(23,18,15,.22) 62%, rgba(23,18,15,.05) 100%);
}
.v1-plek__in { position: relative; z-index: 2; }
.v1-plek__card {
  background: var(--v1-cream);
  padding: clamp(28px, 4vw, 56px);
  border-radius: 22px;
  max-width: 560px;
}
.v1-plek__card h2 {
  font-family: var(--v1-display); font-variation-settings: 'wdth' 98, 'wght' 700;
  font-size: clamp(26px, 3.2vw, 46px); line-height: 1.03; letter-spacing: -.03em;
  margin-bottom: 20px;
}
.v1-plek__card p { font-size: 16px; line-height: 1.6; color: var(--v1-ink-70); margin-bottom: 24px; }
.v1-plek__card address {
  font-style: normal; font-size: 17px; line-height: 1.5; font-weight: 600;
  padding: 18px 0; border-top: 1px solid var(--v1-line); border-bottom: 1px solid var(--v1-line);
  margin-bottom: 24px;
}

/* --- bestellen --- */
.v1-order { background: var(--v1-coral); color: var(--v1-ink); padding: clamp(70px, 12vh, 150px) 0; }
.v1-order__h {
  font-family: var(--v1-display); font-variation-settings: 'wdth' 118, 'wght' 800;
  font-size: clamp(46px, 11vw, 170px); line-height: .86; letter-spacing: -.045em;
  text-transform: uppercase;
}
.v1-order__sub { font-size: clamp(16px, 1.4vw, 20px); margin: 20px 0 clamp(40px, 7vh, 76px); max-width: 40ch; }
.v1-order__ways { display: grid; gap: clamp(24px, 3vw, 48px); grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.v1-order__ways li { border-top: 1.5px solid var(--v1-ink); padding-top: 22px; }
.v1-order__no { font-size: 11px; font-weight: 700; letter-spacing: .18em; opacity: .6; }
.v1-order__ways h3 {
  font-family: var(--v1-display); font-variation-settings: 'wdth' 100, 'wght' 700;
  font-size: clamp(22px, 2.2vw, 30px); letter-spacing: -.02em; margin: 12px 0 10px;
}
.v1-order__ways p { font-size: 15px; line-height: 1.55; margin-bottom: 22px; opacity: .82; }

/* --- footer --- */
.v1-foot { background: var(--v1-ink); color: var(--v1-cream); padding: clamp(60px, 10vh, 120px) 0 0; }
.v1-foot__grid { display: grid; gap: clamp(36px, 5vw, 80px); grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); padding-bottom: clamp(50px, 8vh, 90px); }
.v1-foot__brand img { width: 120px; margin-bottom: 18px; }
.v1-foot__brand p { font-family: var(--v1-serif); font-style: italic; font-size: 26px; color: var(--v1-coral); }
.v1-foot__data { display: grid; grid-template-columns: 110px 1fr; gap: 14px 20px; align-content: start; font-size: 15px; }
.v1-foot__data dt { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; opacity: .62; padding-top: 3px; }
.v1-foot__data dd { line-height: 1.5; }
.v1-foot__data a { text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.28); }
.v1-foot__data a:hover { border-bottom-color: var(--v1-coral); color: var(--v1-coral); }
.v1-foot__bar {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between;
  padding-block: 24px; border-top: 1px solid rgba(255,255,255,.14);
  font-size: 13px; opacity: .76;
}
.v1-foot__bar a { text-decoration: none; }
.v1-foot__bar a:hover { color: var(--v1-coral); }

/* --- vaste balk op mobiel --- */
.v1-sticky, .v2-sticky {
  position: fixed; z-index: 80;
  left: 0; right: 0; bottom: 0;
  display: none; gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--v1-cream, #FFF7F0) 92%, transparent);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--v1-line, rgba(0,0,0,.12));
}
.v1-sticky .v1-btn, .v2-sticky .v2-btn { flex: 1 1 auto; justify-content: center; padding-block: 14px; }
.v1-sticky__tel, .v2-sticky__tel {
  flex: none; display: inline-flex; align-items: center; padding: 14px 20px;
  border-radius: 999px; border: 1.5px solid currentColor; text-decoration: none;
  font-size: 15px; font-weight: 600;
}
@media (max-width: 860px) {
  .v1-sticky, .v2-sticky { display: flex; }
  .v1-foot__bar, .v2-foot__bar { padding-bottom: 92px; }
}


/* ==========================================================================
   V E R S I E   2  —  I N   H E T   H A R T   V A N   D O M B U R G
   ========================================================================== */
#v2 {
  --v2-paper:    #F7F1E7;
  --v2-sand:     #EDE3D4;
  --v2-sandDark: #DFD0B8;
  --v2-sea:      #103C39;
  --v2-seaDeep:  #0A2B29;
  --v2-ink:      #14211F;
  --v2-ink-72:   rgba(20, 33, 31, .72);
  --v2-muted:    #5C6A66;
  --v2-line:     rgba(20, 33, 31, .18);
  --v2-coral:    #FF7B5B;
  --v2-coralD:   #B33F22;

  --v2-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --v2-text:    'Newsreader', Georgia, serif;
  --v2-mono:    'DM Mono', ui-monospace, monospace;

  --v2-pad: clamp(20px, 5vw, 64px);
  --v2-max: 1320px;

  background: var(--v2-paper);
  color: var(--v2-ink);
  font-family: var(--v2-text);
}

.v2-wrap { width: 100%; max-width: var(--v2-max); margin-inline: auto; padding-inline: var(--v2-pad); }

#v2 .v2-kicker {
  font-family: var(--v2-mono);
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--v2-coralD); margin-bottom: 18px;
}
#v2 .v2-coord { font-family: var(--v2-mono); font-size: 11px; letter-spacing: .14em; color: var(--v2-muted); }

#v2 .v2-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 28px; border-radius: 3px;
  font-family: var(--v2-mono); font-size: 13px; letter-spacing: .08em; text-transform: uppercase;
  text-decoration: none; white-space: nowrap;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .3s cubic-bezier(.2,.8,.2,1);
}
#v2 .v2-btn--solid { background: var(--v2-coral); color: var(--v2-ink); }
#v2 .v2-btn--solid:hover { background: var(--v2-ink); color: var(--v2-paper); transform: translateY(-2px); }
#v2 .v2-btn--line { border: 1.5px solid var(--v2-line); color: var(--v2-ink); }
#v2 .v2-btn--line:hover { border-color: var(--v2-ink); background: var(--v2-ink); color: var(--v2-paper); }
#v2 .v2-btn--lineLight { border: 1.5px solid rgba(247,241,231,.45); color: var(--v2-paper); }
#v2 .v2-btn--lineLight:hover { background: var(--v2-paper); color: var(--v2-ink); }

/* --- navigatie --- */
.v2-nav {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--v2-paper) 90%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease;
}
.v2-nav.is-stuck { border-bottom-color: var(--v2-line); }
.v2-nav__in { max-width: var(--v2-max); margin-inline: auto; padding: 14px var(--v2-pad); display: flex; align-items: center; gap: 28px; }
.v2-nav__brand img { width: 72px; }
.v2-nav__links { margin-left: auto; display: flex; gap: 28px; }
.v2-nav__links a {
  font-family: var(--v2-mono); font-size: 12px; letter-spacing: .06em;
  text-decoration: none; color: var(--v2-ink-72); padding: 4px 0; border-bottom: 1px solid transparent;
}
.v2-nav__links a:hover { color: var(--v2-ink); border-bottom-color: var(--v2-coral); }
.v2-nav__cta {
  flex: none; text-decoration: none; background: var(--v2-sea); color: var(--v2-paper);
  padding: 11px 20px; border-radius: 3px;
  font-family: var(--v2-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  transition: background .25s ease;
}
.v2-nav__cta:hover { background: var(--v2-coral); color: var(--v2-ink); }
@media (max-width: 900px) { .v2-nav__links { display: none; } .v2-nav__cta { margin-left: auto; } }

/* --- hero : horizon --- */
.v2-hero { position: relative; }
.v2-hero__sea { position: relative; height: clamp(220px, 38svh, 420px); overflow: hidden; background: var(--v2-sea); }
.v2-hero__sea img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.v2-hero__sea::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(16,60,57,.16), rgba(247,241,231,.06) 55%, var(--v2-paper) 100%);
}
.v2-hero__land { padding: clamp(30px, 6vh, 62px) 0 clamp(56px, 10vh, 110px); }
.v2-hero__in { display: grid; gap: 26px; }
.v2-hero__h1 {
  font-family: var(--v2-display);
  font-variation-settings: 'wdth' 100, 'opsz' 96, 'wght' 700;
  font-size: clamp(34px, 8.6vw, 122px);
  line-height: .92; letter-spacing: -.038em;
  max-width: 14ch;
}
.v2-hero__h1 em { font-style: italic; color: var(--v2-coralD); font-weight: 500; }
.v2-hero__lead { font-size: clamp(17px, 1.5vw, 22px); line-height: 1.55; color: var(--v2-ink-72); max-width: 52ch; }
.v2-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 640px) { .v2-hero__actions .v2-btn { flex: 1 1 auto; } }

/* --- route --- */
.v2-route { padding: clamp(70px, 12vh, 150px) 0 clamp(60px, 10vh, 130px); background: var(--v2-sand); }
.v2-route__h {
  font-family: var(--v2-display); font-variation-settings: 'wdth' 96, 'wght' 600;
  font-size: clamp(28px, 4.6vw, 62px); line-height: 1.02; letter-spacing: -.032em;
  max-width: 18ch; margin-bottom: clamp(40px, 7vh, 80px);
}
/* De route zelf: een meelopende rail waarop de haltes echt op de lijn liggen. */
.v2-route__body {
  display: grid;
  grid-template-columns: minmax(170px, 250px) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 76px);
}
.v2-rail { position: sticky; top: 100px; height: min(68vh, 580px); align-self: start; }
.v2-rail__in { position: relative; width: 100%; height: 100%; color: var(--v2-coral); }
.v2-path { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.v2-marks { position: absolute; inset: 0; pointer-events: none; }
.v2-mark {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--v2-sand);
  border: 2px solid var(--v2-coral);
  color: var(--v2-coralD);
  font-family: var(--v2-mono); font-size: 12px; letter-spacing: .04em;
  transition: background .45s ease, color .45s ease, transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s ease;
}
.v2-mark.is-on {
  background: var(--v2-coral); color: var(--v2-ink);
  transform: translate(-50%, -50%) scale(1.2);
  box-shadow: 0 0 0 7px rgba(255, 123, 91, .2);
}
.v2-rail__cap {
  position: absolute; left: 50%; transform: translateX(-50%);
  font-family: var(--v2-mono); font-size: 10.5px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--v2-muted); white-space: nowrap;
}
.v2-rail__cap--top { top: -26px; }
.v2-rail__cap--end { bottom: -26px; color: var(--v2-coralD); }

.v2-stops { display: grid; gap: clamp(46px, 8vh, 104px); }
.v2-stop {
  position: relative; will-change: transform, opacity;
  display: grid; align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(18px, 3vw, 46px);
  padding-left: clamp(14px, 2vw, 26px);
  border-left: 2px solid transparent;
  transition: border-color .45s ease;
}
.v2-stop.is-on { border-left-color: var(--v2-coral); }
.v2-stop:nth-child(even) .v2-stop__pic { order: -1; }
.v2-stop__txt { grid-column: auto; }
.v2-stop__no { font-family: var(--v2-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--v2-coralD); }
.v2-stop h3 {
  font-family: var(--v2-display); font-variation-settings: 'wdth' 100, 'wght' 700;
  font-size: clamp(24px, 3vw, 42px); line-height: 1.05; letter-spacing: -.03em; margin: 10px 0 12px;
}
.v2-stop p { font-size: clamp(15px, 1.2vw, 18px); line-height: 1.6; color: var(--v2-ink-72); }
.v2-stop__pic { overflow: hidden; border-radius: 2px; }
.v2-stop__pic img { width: 100%; aspect-ratio: 5/4; object-fit: cover; }

@media (max-width: 860px) {
  .v2-route__body { grid-template-columns: 52px minmax(0, 1fr); gap: 14px; }
  .v2-rail { top: 78px; height: min(52vh, 400px); }
  .v2-mark { width: 28px; height: 28px; font-size: 10px; border-width: 1.5px; }
  .v2-rail__cap { font-size: 9px; letter-spacing: .12em; }
  .v2-stop { grid-template-columns: 1fr; gap: 18px; }
  .v2-stop:nth-child(even) .v2-stop__pic { order: 0; }
  .v2-stops { gap: 52px; }
}

/* --- waarom : index --- */
.v2-waarom { padding: clamp(70px, 12vh, 150px) 0; }
.v2-waarom__h {
  font-family: var(--v2-display); font-variation-settings: 'wdth' 96, 'wght' 600;
  font-size: clamp(28px, 4.6vw, 62px); line-height: 1.02; letter-spacing: -.032em;
  max-width: 16ch; margin-bottom: clamp(36px, 6vh, 70px);
}
.v2-index > div {
  display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(16px, 4vw, 60px);
  padding: clamp(22px, 3vh, 34px) 0;
  border-top: 1px solid var(--v2-line);
  align-items: baseline;
}
.v2-index > div:last-child { border-bottom: 1px solid var(--v2-line); }
.v2-index dt {
  font-family: var(--v2-display); font-variation-settings: 'wdth' 100, 'wght' 600;
  font-size: clamp(20px, 2.4vw, 32px); letter-spacing: -.025em; line-height: 1.15;
  display: flex; gap: 14px;
}
.v2-index dt span { font-family: var(--v2-mono); font-size: 12px; color: var(--v2-coralD); letter-spacing: .1em; padding-top: .55em; }
.v2-index dd { font-size: clamp(15px, 1.2vw, 18px); line-height: 1.6; color: var(--v2-ink-72); }
@media (max-width: 700px) { .v2-index > div { grid-template-columns: 1fr; gap: 12px; } }

/* --- toonbank --- */
.v2-toonbank { padding: clamp(60px, 10vh, 130px) 0; background: var(--v2-sea); color: var(--v2-paper); }
#v2 .v2-toonbank .v2-kicker { color: var(--v2-coral); }
.v2-toonbank__h {
  font-family: var(--v2-display); font-variation-settings: 'wdth' 100, 'wght' 600;
  font-size: clamp(28px, 4.4vw, 58px); letter-spacing: -.032em; line-height: 1.02;
  margin-bottom: clamp(34px, 6vh, 62px); max-width: 16ch;
}
.v2-cards { display: grid; gap: clamp(18px, 2.4vw, 34px); grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.v2-card {
  background: rgba(247,241,231,.06);
  border: 1px solid rgba(247,241,231,.16);
  border-radius: 3px; padding: 14px 14px 26px;
  transition: transform .5s cubic-bezier(.2,.8,.2,1), background .4s ease;
  will-change: transform;
}
.v2-card:hover { transform: translateY(-6px); background: rgba(247,241,231,.11); }
.v2-card__pic { overflow: hidden; border-radius: 2px; margin-bottom: 20px; }
.v2-card__pic img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .9s cubic-bezier(.2,.8,.2,1); }
.v2-card:hover .v2-card__pic img { transform: scale(1.06); }
.v2-card h3 {
  font-family: var(--v2-display); font-variation-settings: 'wdth' 100, 'wght' 700;
  font-size: clamp(22px, 2.2vw, 30px); letter-spacing: -.025em; margin: 0 4px 10px;
}
.v2-card p { font-size: 15.5px; line-height: 1.6; color: rgba(247,241,231,.78); margin: 0 4px; }

/* --- citaat --- */
.v2-quote { position: relative; padding: clamp(90px, 18vh, 220px) 0; overflow: clip; }
.v2-quote__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.v2-quote::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,43,41,.80), rgba(10,43,41,.66)); }
.v2-quote blockquote { position: relative; z-index: 2; color: var(--v2-paper); text-align: center; }
.v2-quote p {
  font-family: var(--v2-display); font-variation-settings: 'wdth' 92, 'wght' 500;
  font-size: clamp(30px, 6vw, 88px); line-height: 1.02; letter-spacing: -.035em;
  max-width: 16ch; margin-inline: auto;
}
.v2-quote p em { font-style: italic; color: var(--v2-coral); }
.v2-quote footer { font-family: var(--v2-mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; margin-top: 30px; opacity: .7; }

/* --- de plek : kaart --- */
.v2-plek { padding: clamp(70px, 12vh, 150px) 0; }
.v2-plek__grid { display: grid; gap: clamp(34px, 5vw, 76px); grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); align-items: center; }
.v2-plek__txt h2 {
  font-family: var(--v2-display); font-variation-settings: 'wdth' 98, 'wght' 600;
  font-size: clamp(28px, 4vw, 54px); letter-spacing: -.032em; line-height: 1.02; margin-bottom: 20px;
}
.v2-plek__txt > p { font-size: clamp(16px, 1.3vw, 19px); line-height: 1.6; color: var(--v2-ink-72); margin-bottom: 28px; max-width: 44ch; }
.v2-contact { display: grid; grid-template-columns: 110px 1fr; gap: 12px 18px; margin-bottom: 30px; font-size: 16px; }
.v2-contact dt { font-family: var(--v2-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--v2-muted); padding-top: 4px; }
.v2-contact a { text-decoration: none; border-bottom: 1px solid var(--v2-line); }
.v2-contact a:hover { border-bottom-color: var(--v2-coral); color: var(--v2-coralD); }
.v2-map { margin: 0; }
.v2-map svg { width: 100%; height: auto; border: 1px solid var(--v2-line); border-radius: 3px; display: block; }
.v2-map figcaption { font-family: var(--v2-mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--v2-muted); margin-top: 12px; }

/* --- bestelband --- */
.v2-order { background: var(--v2-seaDeep); color: var(--v2-paper); padding: clamp(50px, 9vh, 110px) 0; }
.v2-order__in { display: flex; flex-wrap: wrap; gap: 28px; align-items: center; justify-content: space-between; }
.v2-order h2 {
  font-family: var(--v2-display); font-variation-settings: 'wdth' 100, 'wght' 600;
  font-size: clamp(26px, 3.6vw, 48px); letter-spacing: -.032em; line-height: 1.05; max-width: 16ch;
}
.v2-order p { margin-top: 12px; color: rgba(247,241,231,.76); font-size: 17px; }
.v2-order__acts { display: flex; flex-wrap: wrap; gap: 12px; }

/* --- footer --- */
.v2-foot { background: var(--v2-sand); padding: clamp(50px, 9vh, 100px) 0 0; }
.v2-foot__grid { display: grid; gap: clamp(30px, 5vw, 70px); grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); padding-bottom: clamp(40px, 7vh, 80px); }
.v2-foot__brand img { width: 110px; margin-bottom: 16px; }
.v2-foot__brand p { font-family: var(--v2-display); font-style: italic; font-size: 24px; color: var(--v2-coralD); }
.v2-foot dl { display: grid; grid-template-columns: 110px 1fr; gap: 12px 18px; align-content: start; font-size: 15.5px; }
.v2-foot dt { font-family: var(--v2-mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--v2-muted); padding-top: 4px; }
.v2-foot dd { line-height: 1.5; }
.v2-foot a { text-decoration: none; border-bottom: 1px solid var(--v2-line); }
.v2-foot a:hover { color: var(--v2-coralD); }
.v2-foot__bar { padding-block: 22px; border-top: 1px solid var(--v2-line); font-family: var(--v2-mono); font-size: 11.5px; letter-spacing: .1em; color: var(--v2-muted); }

.v2-sticky { background: color-mix(in srgb, var(--v2-paper) 92%, transparent); border-top-color: var(--v2-line); color: var(--v2-ink); }


/* ==========================================================================
   BEWEGING UIT
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .v1-ribbon__track { transform: none !important; }
}
