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

/* INTRO OVERLAY */

#site-intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.9s ease;
  overflow: hidden;
}

#site-intro.intro-done {
  opacity: 0;
  pointer-events: none;
}

.intro-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  filter: brightness(0.38);
  animation: introImgIn 1s ease 0.2s both, introZoom 7s ease both;
}

@keyframes introImgIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes introZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.05); }
}

.intro-body {
  position: relative;
  z-index: 1;
  text-align: center;
  transition: opacity 0.5s ease;
}

.intro-body.hide {
  opacity: 0;
}

.intro-name {
  color: #fff;
  font-size: 26px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 18px;
  animation: introFadeUp 0.6s ease 0.3s both;
}

.intro-sub {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 300;
  animation: introFadeUp 0.5s ease 0.7s both;
}

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

.intro-quote {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 86vw;
  max-width: 700px;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 22px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 300;
  line-height: 1.6;
  opacity: 0;
  transition: opacity 0.9s ease;
  z-index: 1;
}

.intro-quote.visible {
  opacity: 1;
}

.intro-enter {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 2;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.intro-enter:hover {
  border-color: rgba(255, 255, 255, 0.8);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

:root {
  --gap: 6px;
  --photo-gap: 12px;
  --nav-height: 60px;
}

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: #fff;
  color: #111;
  font-size: 14px;
  letter-spacing: 0.02em;
}

a {
  color: inherit;
  text-decoration: none;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 32px;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 100;
  border-bottom: 1px solid #f0f0f0;
}

.nav-name {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
  flex-shrink: 0;
}

.nav-name-sub {
  opacity: 0.45;
}

.nav-tagline {
  flex: 1;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.35);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 1;
}

main {
  margin-top: var(--nav-height);
}

/* HOMEPAGE */

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

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  padding: var(--gap);
}

.destination-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  display: block;
}

.destination-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.22);
  transition: background 0.4s ease;
  pointer-events: none;
}

.destination-card:hover::after {
  background: rgba(0, 0, 0, 0.35);
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.destination-card:hover img {
  transform: scale(1.06);
}

.destination-card-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  z-index: 1;
  white-space: nowrap;
}

.card-name {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: letter-spacing 0.5s ease;
}

.destination-card:hover .card-name {
  letter-spacing: 0.34em;
}

/* PORTFOLIO — FILMSTRIP PAGE */

.rotate-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: #0c0c0c;
  z-index: 9999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.rotate-overlay p {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
}

body.filmstrip-page {
  background: #0c0c0c;
  color: #fff;
  overflow-y: auto;
}

/* Highlights info-sectie (zichtbaar na scrollen, zoals destination-header) */
.hl-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 44px 40px 36px;
  background: #0c0c0c;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hl-info-left {
  flex: 1;
  min-width: 0;
}

.hl-title {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
}

.hl-tagline {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 300;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 6px;
}

.hl-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
  line-height: 1.6;
  max-width: 480px;
}

.hl-info-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* Lichte toggle-variant voor donkere achtergrond */
.hl-view-toggle.view-toggle-group {
  border-color: rgba(255, 255, 255, 0.22);
  width: fit-content;
}

.hl-view-toggle .view-btn {
  color: rgba(255, 255, 255, 0.4);
  border-right-color: rgba(255, 255, 255, 0.12);
}

.hl-view-toggle .view-btn.active {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
}

.hl-view-toggle .view-btn:hover:not(.active) {
  color: rgba(255, 255, 255, 0.65);
}

.hl-speed {
  font-size: 10px;
  letter-spacing: 0.13em;
  display: flex;
  align-items: center;
  gap: 5px;
}

.hl-speed .speed-opt {
  color: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.hl-speed .speed-opt.active {
  color: rgba(255, 255, 255, 0.85);
}

body.filmstrip-page nav,
body.highlights-page nav {
  background: rgba(12, 12, 12, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

body.filmstrip-page .nav-name,
body.filmstrip-page .nav-links a,
body.highlights-page .nav-name,
body.highlights-page .nav-links a {
  color: rgba(255, 255, 255, 0.75);
}

body.filmstrip-page .nav-links a:hover,
body.highlights-page .nav-links a:hover {
  opacity: 1;
  color: #fff;
}

/* ── HIGHLIGHTS HERO (fullscreen auto-slideshow) ─────── */

body.highlights-page {
  background: #0c0c0c;
  color: #fff;
}

.hl-hero {
  position: relative;
  height: 100svh;
  overflow: hidden;
  background: #000;
}


.hl-hero-dest {
  position: absolute;
  bottom: 40px;
  left: 28px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  z-index: 5;
  white-space: nowrap;
}

.hl-hero-dest.visible {
  opacity: 1;
}


/* ── HIGHLIGHTS INFO SECTIE (donker, destination-stijl) ─ */

.hl-dest-count {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.hl-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 300;
  line-height: 1.85;
  max-width: 520px;
  margin-top: 10px;
}


.filmstrip-main {
  display: flex;
  flex-direction: column;
  height: calc(100svh - var(--nav-height));
  margin-top: var(--nav-height);
}

.filmstrip-nav-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.filmstrip-nav-title {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  flex-shrink: 0;
}

.filmstrip-nav-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.25);
  font-weight: 300;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.filmstrip-header h1 {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}

.filmstrip-desc {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 300;
}

.filmstrip-count {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  margin-top: 8px;
}

.filmstrip-wrap {
  position: relative;
  flex: 1;
  min-height: 0;
}


.filmstrip {
  display: flex;
  height: 100%;
  overflow-x: scroll;
  overflow-y: hidden;
  gap: 20px;
  padding: 0 40px 24px;
  cursor: grab;
  user-select: none;
  animation: fadeUp 0.7s ease 0.1s both;
  touch-action: pan-x;
}

.filmstrip:active {
  cursor: grabbing;
}

.filmstrip::-webkit-scrollbar {
  display: none;
}

.filmstrip-item {
  position: relative;
  flex: 0 0 auto;
  height: 100%;
  overflow: hidden;
  outline: 1px solid rgba(255, 255, 255, 0.07);
}

.filmstrip-item img {
  height: 100%;
  width: auto;
  aspect-ratio: auto 3 / 2;
  display: block;
  opacity: 0.6;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.filmstrip-item:hover img,
.filmstrip.scrolling .filmstrip-item img {
  opacity: 1;
}

.filmstrip-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}

.filmstrip-item:hover .filmstrip-label {
  opacity: 1;
}

@keyframes scrollHintBounce {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50%       { transform: translateY(-50%) translateX(7px); }
}

.filmstrip-scroll-hint {
  position: absolute;
  right: 44px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: none;
  animation: scrollHintBounce 1.8s ease-in-out infinite;
  transition: opacity 0.6s;
}

.filmstrip-scroll-hint span {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.filmstrip-scroll-hint.hidden {
  opacity: 0;
}

/* Destination title overlay on filmstrip */
.filmstrip-dest-title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(24px, 3.8vw, 54px);
  letter-spacing: 0.38em;
  text-transform: uppercase;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.62);
  pointer-events: none;
  text-align: center;
  white-space: nowrap;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.8s ease;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.75);
}

.filmstrip-dest-title.visible {
  opacity: 1;
}

/* Portfolio grid view toggle */
.view-toggle-group {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
}

.view-btn {
  background: none;
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 400;
  font-family: inherit;
  padding: 5px 11px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.view-btn:last-child {
  border-right: none;
}

.view-btn.active {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
}

.view-btn:hover:not(.active) {
  color: rgba(255, 255, 255, 0.65);
}

.dest-header-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.dest-speed-selector {
  display: flex;
  color: rgba(0, 0, 0, 0.35);
}

.dest-speed-selector .speed-opt {
  color: rgba(0, 0, 0, 0.3);
}

.dest-speed-selector .speed-opt.active {
  color: rgba(0, 0, 0, 0.7);
}

.dest-speed-selector .speed-opt:hover {
  color: rgba(0, 0, 0, 0.55);
}

.dest-speed-selector .speed-sep {
  color: rgba(0, 0, 0, 0.18);
}

/* Destination-pagina: lichte achtergrond, donkere toggle */
.dest-view-toggle.view-toggle-group {
  border-color: rgba(0, 0, 0, 0.18);
  width: fit-content;
}

.dest-view-toggle .view-btn {
  color: rgba(0, 0, 0, 0.38);
  border-right-color: rgba(0, 0, 0, 0.1);
}

.dest-view-toggle .view-btn.active {
  background: rgba(0, 0, 0, 0.06);
  color: rgba(0, 0, 0, 0.75);
}

.dest-view-toggle .view-btn:hover:not(.active) {
  color: rgba(0, 0, 0, 0.6);
}

.speed-selector {
  display: none;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  letter-spacing: 0.13em;
  flex-shrink: 0;
}

.speed-selector.visible {
  display: flex;
}

.speed-opt {
  cursor: pointer;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.15s;
  padding: 2px 1px;
}

.speed-opt.active {
  color: rgba(255, 255, 255, 0.85);
}

.speed-opt:hover {
  color: rgba(255, 255, 255, 0.65);
}

.speed-sep {
  color: rgba(255, 255, 255, 0.2);
}

/* KEN BURNS OVERLAY */

.kb-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: #000;
  display: none;
  overflow: hidden;
}

.kb-overlay.active {
  display: block;
}

.kb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.9s ease;
  will-change: opacity;
}

.kb-img.kb-front {
  opacity: 1;
}

.kb-back-btn {
  position: absolute;
  top: 20px;
  left: 24px;
  z-index: 10;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 6px 0;
  transition: color 0.2s, opacity 0.5s ease;
  opacity: 1;
}

.kb-back-btn:hover {
  color: #fff;
}

.kb-back-btn.hidden {
  opacity: 0;
  pointer-events: none;
}

.kb-dest-name {
  position: absolute;
  bottom: 20px;
  left: 32px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  opacity: 1;
  transition: opacity 0.5s ease;
  pointer-events: none;
  font-weight: 400;
}

.kb-dest-name.hidden {
  opacity: 0;
}

.kb-controls {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(18, 18, 18, 0.72);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 6px 8px;
  z-index: 10;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.kb-controls.hidden {
  opacity: 0;
  pointer-events: none;
}

.kb-ctrl {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  width: 34px;
  height: 34px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  transition: background 0.15s, color 0.15s;
  line-height: 1;
}

.kb-ctrl:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.kb-speed {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 6px;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.kb-speed-opt {
  cursor: pointer;
  color: rgba(255, 255, 255, 0.32);
  transition: color 0.15s;
  padding: 2px 1px;
}

.kb-speed-opt.active {
  color: rgba(255, 255, 255, 0.85);
}

.kb-speed-opt:hover {
  color: rgba(255, 255, 255, 0.65);
}

.kb-speed-sep {
  color: rgba(255, 255, 255, 0.18);
}

.kb-ctrl-shuffle {
  color: rgba(255, 255, 255, 0.25);
  font-size: 17px;
}

.kb-ctrl-shuffle.active {
  color: rgba(255, 255, 255, 0.85);
}

.portfolio-grid-view {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: calc((100vw - 96px) / 4.5);
  gap: 8px;
  padding: 12px 40px 60px;
  background: #0c0c0c;
}

.portfolio-grid-item {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.portfolio-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-grid-item:hover .filmstrip-label {
  opacity: 1;
}

.portfolio-grid-view::-webkit-scrollbar {
  width: 3px;
}

.portfolio-grid-view::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
}

.photo-item {
  position: relative;
}

.photo-dest-label {
  position: absolute;
  bottom: 10px;
  left: 12px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.photo-item:hover .photo-dest-label {
  opacity: 1;
}

/* DESTINATION PAGE */

.destination-hero {
  width: 100%;
  height: 100svh;
  overflow: hidden;
  position: relative;
  touch-action: pan-y;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  background: #000;
  pointer-events: none;
}

.hero-slide.active {
  pointer-events: auto;
  opacity: 1;
}

.hero-slide-bg {
  position: absolute;
  inset: -30px;
  width: calc(100% + 60px);
  height: calc(100% + 60px);
  object-fit: cover;
  filter: blur(28px) brightness(0.3);
  display: block;
}

.hero-slide-fg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  cursor: pointer;
  touch-action: manipulation;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hero-slide-fg.loaded {
  opacity: 1;
}

.hero-slide-fg.landscape {
  object-fit: cover;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.25; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 0.8;  transform: translateX(-50%) translateY(7px); }
}

.scroll-hint {
  position: absolute;
  bottom: 52px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 10;
  animation: scrollPulse 2.2s ease-in-out infinite;
}

.scroll-hint.hidden {
  opacity: 0;
  pointer-events: none;
  animation: none;
  transition: opacity 0.4s;
}

.back-btn {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 200;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 18px;
  border-radius: 50%;
  text-decoration: none;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}

.back-btn:hover {
  background: rgba(0, 0, 0, 0.65);
}

.destination-header {
  padding: 44px 32px 28px;
  animation: fadeUp 0.6s ease both;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.dest-header-left {
  flex: 1;
  min-width: 0;
}

.dest-header-right {
  flex-shrink: 0;
  align-self: center;
}


.back-link {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.32;
  margin-bottom: 14px;
  transition: opacity 0.2s;
}

.back-link::before {
  content: '← ';
}

.back-link:hover {
  opacity: 1;
}

.dest-number {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  font-weight: 400;
  opacity: 0.4;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.destination-header h1 {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
}

.not-found {
  min-height: calc(100dvh - var(--nav-height));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  animation: fadeUp 0.6s ease both;
}

.not-found p {
  font-size: 14px;
  letter-spacing: 0.04em;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 300;
}

/* PHOTO GRID */

.photos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: calc((100vw - 96px) / 4.5);
  gap: 8px;
  padding: 20px 40px 80px;
}

/* CONTACT PAGE */

.contact-hero {
  width: 100%;
}

.contact-hero img {
  width: 100%;
  height: auto;
  display: block;
}

.contact-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 44px 32px 36px;
  animation: fadeUp 0.6s ease both;
}

.contact-bio-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}

.contact-bio-block p {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 300;
}

.story-section-title {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.85);
  margin-bottom: 32px;
}

.story-photo-full {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px;
}

.story-photo-full img {
  width: 100%;
  height: auto;
  display: block;
}

.story-photo-studio {
  overflow: hidden;
}

.story-photo-studio img {
  width: 120%;
  margin-left: -7%;
  height: auto;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-links a,
.contact-links span {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(0, 0, 0, 0.4);
  transition: color 0.2s;
  letter-spacing: 0.02em;
}

.contact-links a:hover {
  color: #111;
}

/* NAV TAGLINE (homepage only) */

.nav-tagline {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
  font-weight: 300;
  white-space: nowrap;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.nav-tagline.faded {
  opacity: 0;
}

/* PUBLICATIES (homepage footer + contact) */

.faq-title {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.35);
  margin-bottom: 28px;
}

.faq-list dt {
  font-size: 13px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.7);
  margin-top: 20px;
  margin-bottom: 6px;
}

.faq-list dd {
  font-size: 13px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.75;
  margin-left: 0;
}

.homepage-intro-text {
  max-width: calc(100% / 3);
  padding: 20px 0 28px 32px;
  animation: fadeUp 0.6s ease 0.1s both;
}

.homepage-intro-text p {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 300;
  letter-spacing: 0.01em;
}

.publications-section {
  border-top: 1px solid #ebebeb;
  padding: 40px 48px 64px;
  animation: fadeUp 0.7s ease 0.15s both;
}

.site-footer {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(0, 0, 0, 0.22);
  padding: 32px 24px;
  border-top: 1px solid #ebebeb;
}

.publications-inner {
  text-align: left;
}

.pub-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.35;
  margin-bottom: 28px;
}

.pub-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 28px 48px;
}

.pub-logos img {
  height: 36px;
  width: auto;
  opacity: 0.7;
  filter: grayscale(1);
  transition: opacity 0.2s;
  display: block;
}

.pub-logos img:hover {
  opacity: 1;
}

/* Publications in grid view (donkere achtergrond) */
.portfolio-grid-view .publications-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 0 60px;
  animation: none;
}

.portfolio-grid-view .pub-label {
  color: rgba(255, 255, 255, 0.35);
}

.portfolio-grid-view .pub-logos img {
  filter: grayscale(1) invert(1);
  opacity: 0.5;
}

.portfolio-grid-view .pub-logos img:hover {
  opacity: 0.9;
}

/* LIGHTBOX */

@keyframes lightboxIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lightbox-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-overlay img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  animation: lightboxIn 0.3s ease both;
  transition: opacity 0.18s ease;
}

/* Gedeelde cirkelstijl voor alle lightbox-knoppen */
.lightbox-back,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.38);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  touch-action: manipulation;
  line-height: 1;
}

.lightbox-back:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
}

/* Posities */
.lightbox-back { top: 20px; left: 20px; }
.lightbox-prev { top: 50%; left: 20px; transform: translateY(-50%); }
.lightbox-next { top: 50%; right: 20px; transform: translateY(-50%); }

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.3);
  font-size: 11px;
  letter-spacing: 0.1em;
}

/* HOMEPAGE — VIEW TOGGLE */

.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-shrink: 0;
}

.view-toggle {
  display: none;
}

.toggle-btn {
  font-family: inherit;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  color: rgba(0, 0, 0, 0.4);
}

.toggle-btn:first-child {
  border-right: none;
}

.toggle-btn.active {
  background: rgba(0,0,0,0.09);
  color: rgba(0,0,0,0.65);
  border-color: rgba(0,0,0,0.18);
}

#map-container {
  width: 100%;
  height: calc(100dvh - var(--nav-height));
  animation: fadeUp 0.5s ease both;
}

.map-tooltip {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  color: #111;
  padding: 4px 10px;
  border-radius: 0;
}

.leaflet-tooltip.map-tooltip::before {
  display: none;
}

.map-marker {
  cursor: pointer;
}

/* DESTINATION PAGE — DESCRIPTION */

/* HERO NAME OVERLAY */

@keyframes heroNameReveal {
  0%   { opacity: 0; transform: translateY(8px); }
  18%  { opacity: 1; transform: translateY(0); }
  68%  { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; }
}

.hero-name-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
  animation: heroNameReveal 2.4s ease forwards;
}

.hero-name-overlay span {
  color: #fff;
  font-size: clamp(22px, 3.5vw, 52px);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 300;
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.55);
}

.hero-all-photos {
  position: absolute;
  top: 24px;
  right: 28px;
  z-index: 20;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 6px 0;
  transition: color 0.2s;
}

.hero-all-photos:hover {
  color: #fff;
}

.dest-description {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.55);
  font-weight: 300;
  max-width: 480px;
  margin-top: 18px;
}

/* DESTINATION PAGE — MORE DESTINATIONS */

.more-destinations {
  padding: 60px 32px 64px;
  border-top: 1px solid #ebebeb;
  margin-top: 48px;
  animation: fadeUp 0.7s ease 0.15s both;
}

.more-dest-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.35;
  margin-bottom: 24px;
}

.more-dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

/* STORY PAGE — MAGAZINE LAYOUT */

.story-hero {
  width: 100%;
  overflow: hidden;
}

.story-hero img {
  width: 100%;
  height: 88vh;
  object-fit: cover;
  object-position: center 70%;
  display: block;
}

.story-photo-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin: 0 0 0 0;
}

.story-photo-item {
  overflow: hidden;
}

.story-photo-item img {
  width: 100%;
  height: 56vh;
  object-fit: cover;
  display: block;
}

.story-photo-single {
  overflow: hidden;
  margin: 48px 0;
}

.story-photo-single img {
  width: 116%;
  margin-left: -2%;
  height: auto;
  display: block;
}

.story-text-mid {
  padding-top: 56px;
  padding-bottom: 56px;
}


/* RESPONSIVE */

/* Tablet */
@media (max-width: 900px) {
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .destination-hero {
    height: 100svh;
  }
}

/* Phone portrait — 1 kolom */
@media (max-width: 768px) and (orientation: portrait) {
  .homepage-intro-text {
    max-width: 100%;
    padding: 16px 16px 20px;
  }

  nav {
    padding: 0 16px;
  }

  .nav-tagline {
    display: none;
  }

  .nav-name-sub {
    display: none;
  }

  .nav-right .view-toggle {
    display: none;
  }

  /* Filmstrip — lagere hoogte zodat beelden niet te hoog worden */
  body.filmstrip-page {
    height: 100dvh;
  }

  body.filmstrip-page .nav-links {
    display: none;
  }

  .filmstrip-main {
    height: calc(100dvh - var(--nav-height));
  }

  /* Portrait: één foto per swipe, fullscreen cover */
  .filmstrip-item {
    width: 100vw;
    flex-shrink: 0;
  }

  .filmstrip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .filmstrip-nav-meta {
    display: none;
  }

  .portfolio-grid-view {
    padding: 4px 8px 40px;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: calc((100vw - 24px) / 3);
  }

  .hl-hero-dest {
    bottom: 48px;
  }

  .destinations-grid {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 4px;
  }

  .destination-hero {
    height: 70svh;
  }

  .hero-slide-fg {
    object-fit: cover;
  }

  .destination-header {
    padding: 28px 16px 20px;
  }

  .dest-description {
    font-size: 14px;
    max-width: 100%;
  }

  .photos-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    padding: 8px 16px 40px;
    gap: 4px;
  }

  .more-destinations {
    padding: 40px 16px 48px;
  }

  .more-dest-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .lightbox-prev,
  .lightbox-next {
    display: flex;
    width: 36px;
    height: 36px;
    font-size: 15px;
  }

  .scroll-hint-label {
    display: none;
  }

  .contact-hero img {
    width: 100%;
  }

  .story-hero img {
    height: 60vh;
    object-position: center 25%;
  }

  .story-photo-pair {
    grid-template-columns: 1fr;
  }

  .story-photo-item img {
    height: 52vw;
  }

  .story-text-mid {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .contact-content {
    padding: 48px 20px;
  }

  .publications-section {
    padding: 48px 20px 56px;
  }

  .pub-logos {
    gap: 20px 28px;
  }

  .contact-links a,
  .contact-links span {
    padding: 6px 0;
  }
}

/* Phone landscape — 2 kolommen */
@media (max-width: 932px) and (orientation: landscape) {
  .homepage-intro-text {
    max-width: 50%;
    padding: 16px 16px 20px;
  }

  nav {
    padding: 0 16px;
  }

  .nav-tagline {
    display: none;
  }

  .nav-name-sub {
    display: none;
  }

  .filmstrip-nav-meta {
    display: none;
  }

  body.filmstrip-page {
    height: 100dvh;
    min-height: calc(100vh + 1px);
    overflow: visible;
  }

  .filmstrip-main {
    height: calc(100dvh - var(--nav-height));
  }

  .filmstrip-label {
    opacity: 0.75;
    font-size: 8px;
    letter-spacing: 0.12em;
  }

  .portfolio-grid-view {
    padding: 4px 16px 40px;
  }

  .portfolio-grid-view {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: calc((100vw - 48px) / 3);
  }

  .filmstrip-dest-title {
    font-size: 15px;
    letter-spacing: 0.22em;
    background: rgba(0, 0, 0, 0.42);
    padding: 6px 18px;
    border-radius: 3px;
  }

  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    padding: 4px;
  }

  .destination-hero {
    height: 100svh;
  }

  .hero-slide-fg {
    object-fit: cover;
  }

  .destination-header {
    padding: 20px 16px 16px;
  }

  .photos-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: calc((100vw - 40px) / 3);
    padding: 8px 16px 40px;
    gap: 4px;
  }

  .more-dest-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-hero img {
    height: 70vh;
  }

  .story-photo-item img {
    height: 45vh;
  }

  .contact-content {
    padding: 40px 24px;
  }

  .publications-section {
    padding: 48px 24px 56px;
  }

  .kb-dest-name {
    bottom: 16px;
  }

  .hl-hero-dest {
    bottom: 20px;
  }
}
