.page-wrap {
  max-width: 1400px;
  margin: 0 auto;
  background: var(--offwhite);
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background .3s, box-shadow .3s;
}
nav.solid {
  background: rgba(247,246,242,.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(30,46,42,.07);
}
.nav-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 52px;
  transition: padding .3s;
}
nav.solid .nav-inner { padding: 16px 52px; }
.nav-logo { font-family: 'Geologica', sans-serif; font-size: 1.6rem; font-weight: 800; color: #fff; text-decoration: none; letter-spacing: -.03em; transition: color .3s; }
nav.solid .nav-logo { color: var(--text); }
.nav-right { display: flex; align-items: center; gap: 28px; }
.nav-links { list-style: none; display: flex; gap: 28px; align-items: center; }
.nav-links a { font-size: .82rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; text-decoration: none; color: rgba(255,255,255,.7); transition: color .2s; }
nav.solid .nav-links a { color: rgba(30,46,42,.4); }
.nav-links a:hover { color: #fff; }
nav.solid .nav-links a:hover { color: var(--text); }

/* TAALVLAGGEN */
.lang-group { display: flex; align-items: center; gap: 6px; }
.lang-btn { width: 24px; height: 24px; border-radius: 50%; border: none; overflow: hidden; cursor: pointer; transition: transform .15s, border-color .15s; background: none; padding: 0; opacity: .5; display: block; }
.lang-btn:hover { transform: scale(1.12); opacity: 1; }
.lang-btn.active { opacity: 1; }
.lang-btn img { width: 100%; height: 100%; object-fit: cover; display: block; }

.nav-cta { border: 1.5px solid rgba(255,255,255,.4); color: #fff; padding: 9px 22px; border-radius: 100px; font-weight: 700; font-size: .78rem; text-decoration: none; transition: background .2s; }
nav.solid .nav-cta { border-color: var(--petrol); color: var(--petrol); }
.nav-cta:hover { background: rgba(255,255,255,.12); }
nav.solid .nav-cta:hover { background: rgba(30,50,64,.06); }
.nav-hamburger { display:none; align-items:center; justify-content:center; width:28px; height:28px; padding:4px; border:0; background:none; color:#fff; cursor:pointer; }
nav.solid .nav-hamburger { color:var(--text); }
.mobile-menu { display:none; position:fixed; inset:0; z-index:300; background:rgba(247,246,242,.98); flex-direction:column; align-items:center; justify-content:center; gap:32px; }
.mobile-menu.open { display:flex; }
.mobile-menu>a:not(.nav-cta) { color:var(--text); font-size:1.4rem; font-weight:700; text-decoration:none; }
.mobile-menu .nav-cta { color:#fff; background:var(--petrol); border-color:var(--petrol); font-size:1rem; padding:14px 36px; }
.mobile-close { position:absolute; right:24px; top:24px; padding:10px; border:0; background:none; color:var(--text); cursor:pointer; }
.mobile-lang { display:flex; align-items:center; gap:10px; }

/* HERO */
.hero {
  height: calc(100svh + 28px); min-height: 688px;
  position: relative; overflow: hidden;
}
.hero-img {
  position: absolute; inset: 0;
}
.hero-img img { width:100%; height:100%; display:block; object-fit:cover; object-position:center 55%; }
.hero-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(30,50,64,.6) 0%, rgba(30,50,64,.08) 38%, transparent 62%);
}
.hero-text { position: absolute; bottom: 0; left: 0; right: 0; width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 52px 52px; z-index: 2; }
.hero-h1 {
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 800; line-height: .95;
  color: #fff; letter-spacing: -.035em; margin-bottom: 28px;
}
.hero-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; }
.hero-sub { font-size: .95rem; font-weight: 400; color: rgba(255,255,255,.7); max-width: 340px; line-height: 1.65; }
.hero-btns { display: flex; gap: 10px; flex-shrink: 0; }
.btn-sage { background: var(--sage); color: #fff; font-size: .78rem; font-weight: 700; letter-spacing: .03em; text-decoration: none; padding: 12px 26px; border-radius: 100px; transition: background .2s, transform .15s; display: inline-block; }
.btn-sage:hover { background: var(--sage-dk); transform: translateY(-1px); }
.btn-ghost { border: 1.5px solid rgba(255,255,255,.38); color: rgba(255,255,255,.85); font-size: .78rem; font-weight: 600; text-decoration: none; padding: 11px 24px; border-radius: 100px; transition: background .2s; display: inline-block; }
.btn-ghost:hover { background: rgba(255,255,255,.12); }

/* PILL STRIP */
.pill-strip {
  position: relative; z-index: 10;
  margin: -28px 52px 0;
  background: var(--petrol); border-radius: 100px;
  display: flex; justify-content: center;
}
.pill-stat { padding: 22px 44px; text-align: center; border-right: 1px solid rgba(255,255,255,.08); flex: 1; }
.pill-stat:last-child { border-right: none; }
.ps-n { font-size: 1.5rem; font-weight: 800; color: #fff; display: block; letter-spacing: -.02em; line-height: 1; }
.ps-l { font-size: .65rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-top: 3px; display: block; }

/* INTRO */
.intro-section { padding: 80px 52px 0; }
.intro-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; align-items: start; }
.intro-photo { border-radius: 36px; overflow: hidden; height: 600px; }
.intro-photo picture { display:block; width:100%; height:100%; }
.intro-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s; }
.intro-photo:hover img { transform: scale(1.03); }
.intro-card {
  background: var(--offwhite); border-radius: 32px; padding: 52px 48px;
  margin-left: -64px; margin-top: 80px;
  position: relative; z-index: 2;
  box-shadow: 0 24px 64px rgba(30,50,64,.11);
}
.intro-h { font-size: clamp(1.5rem, 2.3vw, 2rem); font-weight: 800; color: var(--text); line-height: 1.15; letter-spacing: -.02em; margin-bottom: 16px; }
.intro-h em, .fac-h em, .reviews-h em { font-family:Georgia,serif; font-weight:400; color:var(--sage-dk); }
.intro-p { font-size: .88rem; line-height: 1.8; font-weight: 400; color: rgba(30,46,42,.55); margin-bottom: 10px; }
.specs-row { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(30,46,42,.08); }
.sp-n { font-size: 1.7rem; font-weight: 800; color: var(--sage); display: block; line-height: 1; letter-spacing: -.02em; }
.sp-l { font-size: .62rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(30,46,42,.35); margin-top: 2px; display: block; }

/* FOTO GALERIJ: horizontaal scrollbaar */
.gallery-section { padding: 56px 0 0; }
.gallery-label {
  padding: 0 52px; margin-bottom: 20px;
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(30,46,42,.35);
}
.gallery-scroll {
  display: flex; gap: 16px;
  overflow-x: auto;
  padding-bottom: 24px;
  /* geen zijpadding op de container zelf */
  scroll-snap-type: x mandatory;
  scroll-padding-left: 52px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gallery-scroll::-webkit-scrollbar { display: none; }
.gallery-item {
  flex: 0 0 auto;
  border-radius: 24px; overflow: hidden;
  scroll-snap-align: start;
  position: relative;
}
/* eerste foto begint op dezelfde plek als de rest van de pagina */
.gallery-item:first-child { margin-left: 52px; }
/* laatste foto eindigt ook netjes */
.gallery-item:last-child { margin-right: 52px; }
.gallery-item:nth-child(1) { width: 520px; height: 380px; }
.gallery-item:nth-child(2) { width: 440px; height: 380px; }
.gallery-item:nth-child(3) { width: 340px; height: 380px; }
.gallery-item:nth-child(4) { width: 400px; height: 380px; }
.gallery-item:nth-child(5) { width: 360px; height: 380px; }
.gallery-item:nth-child(6) { width: 480px; height: 380px; }
.gallery-item:nth-child(7) { width: 320px; height: 380px; }
.gallery-item:nth-child(8) { width: 440px; height: 380px; }
.gallery-item:nth-child(9) { width: 460px; height: 380px; }
.gallery-item:nth-child(10) { width: 400px; height: 380px; }
.gallery-item:nth-child(11) { width: 360px; height: 380px; }
.gallery-item:nth-child(12) { width: 360px; height: 380px; }
.gallery-item:nth-child(13) { width: 300px; height: 380px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .55s; }
.gallery-item:hover img { transform: scale(1.03); }
.gallery-item-lbl {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(247,246,242,.92); backdrop-filter: blur(6px);
  border-radius: 100px; padding: 5px 13px;
  font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--text);
}
.gallery-hint {
  padding: 0 52px;
  font-size: .75rem; font-weight: 500; color: rgba(30,46,42,.3);
  display: flex; align-items: center; gap: 6px;
}
.gallery-hint::before { content: ''; display: inline-block; width: 20px; height: 1px; background: rgba(30,46,42,.2); }

/* OMGEVING */
.omg-section { padding: 56px 52px 0; }
.omg-wrap { border-radius: 40px; overflow: hidden; position: relative; height: 560px; }
.omg-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; object-position: center 30%; }
.omg-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(30,50,64,.65) 0%, rgba(30,50,64,.1) 48%, transparent 70%); }
.omg-overlay { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 44px 48px; display: flex; justify-content: space-between; align-items: flex-end; }
.omg-left h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 800; color: #fff; letter-spacing: -.025em; line-height: 1.1; margin-bottom: 10px; }
.omg-left h2 em, .cta-h em { font-family:Georgia,serif; font-weight:400; color:var(--sand); }
.omg-left p { font-size: .88rem; font-weight: 400; color: rgba(255,255,255,.65); max-width: 340px; line-height: 1.7; }
.dist-pills { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }
.dp { background: rgba(255,255,255,.14); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.18); border-radius: 100px; padding: 9px 18px; display: flex; align-items: center; gap: 12px; white-space: nowrap; }
.dp-place { font-size: .78rem; font-weight: 500; color: rgba(255,255,255,.85); }
.dp-val { font-size: .72rem; font-weight: 700; color: var(--sage); letter-spacing: .04em; }

/* FAC */
.fac-section { padding: 72px 52px 0; }
.fac-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 36px; }
.fac-h { font-size: clamp(1.5rem, 2.2vw, 2rem); font-weight: 800; color: var(--text); letter-spacing: -.02em; }
.price-tag { background: var(--petrol); border-radius: 100px; padding: 12px 24px; display: flex; align-items: baseline; gap: 6px; }
.pt-from { font-size: .68rem; font-weight: 600; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .07em; }
.pt-amt { font-size: 1.4rem; font-weight: 800; color: #fff; letter-spacing: -.02em; }
.pt-unit { font-size: .72rem; font-weight: 600; color: rgba(255,255,255,.4); }
.fac-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.fac-grid .fi:nth-child(2) { margin-top: 24px; }
.fac-grid .fi:nth-child(3) { margin-top: 12px; }
.fac-grid .fi:nth-child(4) { margin-top: 36px; }
.fi { background: var(--sand); border-radius: 28px; padding: 28px 24px; transition: transform .2s, background .2s; }
.fi:hover { transform: translateY(-4px); background: #ddd5c8; }
.fi-dot { width: 8px; height: 8px; background: var(--sage); border-radius: 50%; margin-bottom: 16px; }
.fi-name { font-size: .9rem; font-weight: 700; color: var(--text); margin-bottom: 7px; }
.fi-desc { font-size: .77rem; font-weight: 400; color: rgba(30,46,42,.5); line-height: 1.65; }

/* CTA */
.cta-section { padding: 60px 52px 52px; }
.cta-wrap { border-radius: 40px; overflow: hidden; position: relative; min-height: 420px; display: flex; align-items: flex-end; }
.cta-bg { position: absolute; inset: 0; background: url('../images/cta.jpg') center 25% / cover no-repeat; }
.cta-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(30,50,64,.72) 0%, rgba(30,50,64,.12) 50%, transparent 72%); }
.cta-inner { position: relative; z-index: 2; width: 100%; padding: 48px 52px; display: flex; justify-content: space-between; align-items: flex-end; }
.cta-h { font-size: clamp(2rem, 4vw, 3.6rem); font-weight: 800; color: #fff; letter-spacing: -.03em; line-height: 1.05; }
.cta-sub { font-size: .83rem; font-weight: 400; color: rgba(255,255,255,.5); margin-top: 8px; }

/* REVIEWS */
.reviews-section { padding: 80px 52px; }
.reviews-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; }
.reviews-h { font-size: clamp(1.5rem, 2.2vw, 2rem); font-weight: 800; color: var(--text); letter-spacing: -.02em; }
.reviews-scores { display: flex; gap: 28px; }
.rs-block { text-align: center; }
.rs-platform { font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(30,46,42,.35); margin-bottom: 4px; }
.rs-score { font-size: 2rem; font-weight: 800; color: var(--text); letter-spacing: -.03em; line-height: 1; }
.rs-max { font-size: .82rem; color: rgba(30,46,42,.35); }
.rs-stars { display: flex; gap: 2px; color: #F5A623; justify-content: center; margin-top: 4px; }
.rs-verdict { margin-top:5px; color:var(--sage-dk); font-size:.72rem; font-weight:800; }
.rs-count { font-size: .72rem; color: rgba(30,46,42,.35); margin-top: 2px; }
.reviews-track-wrap { overflow: hidden; }
.reviews-track { display: flex; gap: 16px; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.review-card-item { flex: 0 0 calc(33.333% - 11px); background: #fff; border-radius: 28px; padding: 28px; box-sizing: border-box; display: flex; flex-direction: column; gap: 14px; }
.rc-platform { display: flex; align-items: center; gap: 8px; }
.rc-platform-logo { font-size: .7rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: rgba(30,46,42,.35); border: 1.5px solid rgba(30,46,42,.12); border-radius: 6px; padding: 3px 8px; }
.rc-platform-logo.airbnb { color: #FF5A5F; border-color: #FF5A5F30; }
.rc-platform-logo.booking { color: #003580; border-color: #00358030; }
.rc-platform-logo.expedia { color: #FFC72C; border-color: #FFC72C50; background: #00355F; }
.rc-platform-logo.vrbo { color: #3D6BE4; border-color: #3D6BE430; }
.rc-platform-logo.micazu { color: #FF6B00; border-color: #FF6B0030; }
.rc-stars { display: flex; gap: 2px; color: #F5A623; }
.rc-text { font-size: .9rem; line-height: 1.65; color: rgba(30,46,42,.7); flex: 1; }
.rc-flag-img { width: 20px; height: 20px; border-radius: 50%; object-fit: cover; display: block; }
.rc-author { display: flex; align-items: center; gap: 8px; }
.rc-flag { font-size: 1.1rem; }
.rc-name { font-size: .82rem; font-weight: 700; color: var(--text); }
.reviews-nav { display: flex; align-items: center; gap: 12px; margin-top: 24px; justify-content: center; }
.rev-btn { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid rgba(30,46,42,.15); background: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--text); transition: border-color .15s, background .15s; }
.rev-btn:hover { border-color: var(--sage); background: var(--sage); color: #fff; }
.rev-dots { display: flex; gap: 6px; }
.rev-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(30,46,42,.15); transition: background .2s, width .2s; cursor: pointer; border: none; outline: none; padding: 0; }
.rev-dot.active { background: var(--sage); width: 20px; border-radius: 3px; }
@media (max-width: 900px) {
  .nav-inner { padding: 15px 20px !important; justify-content:flex-start; }
  .nav-logo { margin-right:auto; }
  .nav-right { gap:0; margin-right:8px; }
  .nav-links { display: none; }
  .nav-cta { display:none; }
  .nav-hamburger { display:flex; }
  .mobile-menu .nav-cta { display:block; }
  .hero-text { padding: 0 24px 36px; }
  .hero-row { flex-direction: column; align-items: flex-start; gap: 16px; }
  .pill-strip { margin: -20px 20px 0; border-radius: 20px; flex-wrap: wrap; }
  .pill-stat { padding: 16px 20px; flex: 1 1 40%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .intro-section { padding: 40px 20px 0; }
  .intro-layout { grid-template-columns: 1fr; }
  .intro-photo { height: 300px; border-radius: 24px 24px 0 0; }
  .intro-card { margin-left: 0; margin-top: 0; border-radius: 0 0 24px 24px; box-shadow: none; padding: 36px 28px; }
  .gallery-section { padding: 40px 0 0; }
  .gallery-label, .gallery-hint { padding: 0 20px; }
  .gallery-scroll { padding-bottom: 20px; gap: 12px; scroll-padding-left: 20px; }
  .gallery-item:first-child { margin-left: 20px; }
  .gallery-item:last-child { margin-right: 20px; }
  .gallery-item:nth-child(1) { width: 300px; height: 260px; }
  .gallery-item:nth-child(2) { width: 260px; height: 260px; }
  .gallery-item:nth-child(3) { width: 220px; height: 260px; }
  .gallery-item:nth-child(4) { width: 260px; height: 260px; }
  .gallery-item:nth-child(5) { width: 240px; height: 260px; }
  .gallery-item:nth-child(6) { width: 280px; height: 260px; }
  .gallery-item:nth-child(7) { width: 220px; height: 260px; }
  .gallery-item:nth-child(8) { width: 260px; height: 260px; }
  .gallery-item:nth-child(9) { width: 280px; height: 260px; }
  .gallery-item:nth-child(10) { width: 240px; height: 260px; }
  .gallery-item:nth-child(11) { width: 220px; height: 260px; }
  .gallery-item:nth-child(12) { width: 240px; height: 260px; }
  .gallery-item:nth-child(13) { width: 200px; height: 260px; }
  .omg-section, .fac-section, .cta-section { padding-left: 20px; padding-right: 20px; }
  .omg-wrap { height: 440px; }
  .omg-overlay { flex-direction: column; align-items: flex-start; gap: 20px; padding: 28px; }
  .dist-pills { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
  .fac-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .fac-grid .fi { margin-top: 0 !important; }
  .fac-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cta-inner { flex-direction: column; align-items: flex-start; gap: 20px; padding: 32px 28px; }
  .reviews-section { padding: 48px 20px; }
  .reviews-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .review-card-item { flex: 0 0 calc(100% - 0px); }
  .reviews-scores { gap: 16px; }
  .reviews-track-wrap { overflow-x:auto; margin-right:-20px; scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch; scrollbar-width:none; }
  .reviews-track-wrap::-webkit-scrollbar { display:none; }
  .reviews-track { width:max-content; transform:none!important; }
  .review-card-item { flex:0 0 82vw; width:82vw; scroll-snap-align:start; }
  .reviews-nav { display:none; }
  .footer-inner { flex-direction: column; gap: 16px; padding: 28px 20px; }
}
@media (prefers-reduced-motion: reduce) { * { transition: none !important; } }
