:root{
  --bg:#f7f8fa;
  --surface:#ffffff;
  --surface-2:#f1f4f8;
  --ink:#17202a;
  --muted:#667085;
  --primary:#315c4f;
  --primary-2:#24483e;
  --accent:#f4b860;
  --border:#e4e7ec;
  --shadow:0 10px 30px rgba(16,24,40,.08);
  --radius:24px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:var(--bg);
  color:var(--ink);
  line-height:1.6;
}

a{
  color:inherit;
}


/* =========================================================
   NAVIGATIE
   ========================================================= */

.topbar{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(247,248,250,.88);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(228,231,236,.9);
}

.nav{
  max-width:1180px;
  margin:auto;
  padding:14px 22px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
}

.brand{
  text-decoration:none;
  font-weight:850;
  letter-spacing:-.04em;
  font-size:18px;
  flex-shrink:0;
}

.brand span{
  color:var(--primary);
}

.menu{
  display:flex;
  gap:22px;
  align-items:center;
  font-size:14px;
}

.menu a{
  text-decoration:none;
  color:#475467;
}

.menu a:hover{
  color:var(--primary);
}


/* Groene hoofdknop */
.nav-cta{
  background:var(--primary);
  color:#fff!important;
  padding:10px 16px;
  border-radius:999px;
  font-weight:750;
  box-shadow:0 6px 18px rgba(49,92,79,.18);
  white-space:nowrap;
}

.nav-cta:hover{
  background:var(--primary-2);
  color:#fff!important;
}


/* Inlogknop */
.nav-login{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:9px 15px;
  border:1px solid var(--primary);
  border-radius:999px;
  color:var(--primary)!important;
  font-weight:750;
  white-space:nowrap;
  transition:.2s ease;
}

.nav-login:hover{
  background:var(--primary);
  color:#fff!important;
}


/* =========================================================
   HERO
   ========================================================= */

.hero{
  padding:92px 22px 70px;
  background:linear-gradient(180deg,#eef4f1 0%,#f7f8fa 100%);
}

.hero-inner{
  max-width:1180px;
  margin:auto;
  display:grid;
  grid-template-columns:1.12fr .88fr;
  gap:64px;
  align-items:center;
}

.eyebrow{
  display:inline-flex;
  gap:8px;
  align-items:center;
  background:#e4eee9;
  color:var(--primary-2);
  padding:8px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
}

h1{
  font-size:clamp(48px,7vw,84px);
  line-height:.98;
  letter-spacing:-.06em;
  margin:18px 0 22px;
}

.hero p{
  font-size:19px;
  color:#475467;
  max-width:720px;
  margin:0 0 30px;
}

.hero-buttons{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.btn{
  display:inline-block;
  text-decoration:none;
  padding:14px 20px;
  border-radius:14px;
  font-weight:800;
  transition:.2s ease;
}

.btn-primary{
  background:var(--primary);
  color:#fff;
  box-shadow:0 8px 18px rgba(49,92,79,.2);
}

.btn-primary:hover{
  transform:translateY(-1px);
}

.btn-secondary{
  background:#fff;
  border:1px solid var(--border);
  color:var(--ink);
}


/* =========================================================
   HERO KAART
   ========================================================= */

.hero-card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:28px;
  padding:28px;
  box-shadow:var(--shadow);
}

.mini-label{
  font-size:12px;
  color:var(--muted);
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.trip-title{
  font-size:30px;
  line-height:1.08;
  letter-spacing:-.04em;
  margin:8px 0 10px;
}

.trip-sub{
  color:var(--muted);
  font-size:14px;
  margin-bottom:18px;
}

.route-line{
  display:grid;
}

.route-stop{
  display:grid;
  grid-template-columns:22px 1fr;
  gap:12px;
  min-height:58px;
}

.dot-col{
  position:relative;
}

.dot{
  width:12px;
  height:12px;
  border-radius:50%;
  background:var(--accent);
  margin-top:7px;
  position:relative;
  z-index:2;
}

.dot-col::after{
  content:"";
  position:absolute;
  top:17px;
  left:5px;
  width:2px;
  height:46px;
  background:#d0d5dd;
}

.route-stop:last-child .dot-col::after{
  display:none;
}

.route-stop strong{
  display:block;
}

.route-stop span{
  font-size:13px;
  color:var(--muted);
}


/* =========================================================
   STATISTIEKEN
   ========================================================= */

.stats-wrap{
  max-width:1180px;
  margin:-28px auto 0;
  padding:0 22px;
  position:relative;
  z-index:5;
}

.stats{
  background:#fff;
  border:1px solid var(--border);
  border-radius:22px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  box-shadow:var(--shadow);
  overflow:hidden;
}

.stat{
  padding:22px 24px;
  border-right:1px solid var(--border);
}

.stat:last-child{
  border-right:none;
}

.stat strong{
  font-size:24px;
  display:block;
  color:var(--primary);
}

.stat span{
  font-size:13px;
  color:var(--muted);
}


/* =========================================================
   ALGEMENE CONTENT
   ========================================================= */

main{
  max-width:1180px;
  margin:auto;
  padding:72px 22px 110px;
}

.section-head{
  max-width:760px;
  margin-bottom:30px;
}

.section-head h2{
  font-size:clamp(32px,4vw,48px);
  line-height:1.04;
  letter-spacing:-.045em;
  margin:0 0 12px;
}

.section-head p{
  color:var(--muted);
  font-size:17px;
}


/* =========================================================
   FEATURES
   ========================================================= */

.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin:28px 0 76px;
}

.feature{
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  padding:26px;
  box-shadow:0 6px 20px rgba(16,24,40,.04);
}

.feature .icon{
  font-size:28px;
}

.feature h3{
  margin:12px 0 8px;
}

.feature p{
  margin:0;
  color:var(--muted);
  font-size:14px;
}


/* =========================================================
   OVER ONS
   ========================================================= */

.personal{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:28px;
  align-items:center;
  background:#fff;
  border:1px solid var(--border);
  border-radius:28px;
  padding:30px;
  margin-bottom:78px;
}

.avatar{
  min-height:260px;
  border-radius:22px;
  background:linear-gradient(135deg,#dfeae5,#f3e4c9);
  display:grid;
  place-items:center;
  font-size:72px;
}

.personal h2{
  font-size:38px;
  letter-spacing:-.04em;
  margin:0 0 12px;
}

.personal p{
  color:var(--muted);
}


/* =========================================================
   DAGOVERZICHT
   ========================================================= */

.route-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) 340px;
  gap:34px;
  align-items:start;
}

.day-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:20px;
  padding:22px;
  margin-bottom:14px;
  display:grid;
  grid-template-columns:70px 1fr auto;
  gap:18px;
  align-items:center;
}

.day-number{
  width:58px;
  height:58px;
  border-radius:18px;
  display:grid;
  place-items:center;
  background:#edf3f0;
  color:var(--primary);
  font-weight:900;
  font-size:20px;
}

.day-card h3{
  margin:0 0 4px;
  font-size:18px;
}

.day-meta{
  color:var(--muted);
  font-size:13px;
}

.tag{
  display:inline-block;
  margin-top:9px;
  background:#fff3db;
  color:#8a5d16;
  padding:5px 9px;
  border-radius:999px;
  font-size:12px;
  font-weight:750;
}

.lock{
  font-size:13px;
  background:#f2f4f7;
  color:#667085;
  padding:7px 10px;
  border-radius:999px;
  white-space:nowrap;
}


/* =========================================================
   VERKOOPKAART
   ========================================================= */

.sidebar{
  position:sticky;
  top:90px;
}

.buy-card{
  background:var(--primary);
  color:white;
  border-radius:26px;
  padding:28px;
  box-shadow:0 16px 36px rgba(49,92,79,.22);
}

.buy-card h3{
  font-size:28px;
  line-height:1.08;
  margin:0 0 10px;
}

.buy-card p{
  color:rgba(255,255,255,.78);
  font-size:14px;
}

.price{
  font-size:42px;
  font-weight:900;
  letter-spacing:-.05em;
  margin:18px 0;
}

.buy-card ul{
  padding-left:20px;
  color:rgba(255,255,255,.92);
  font-size:14px;
}

.buy-card .btn{
  width:100%;
  text-align:center;
  margin-top:8px;
  background:var(--accent);
  color:#26332e;
}

.micro{
  font-size:11px!important;
  text-align:center;
  margin-bottom:0!important;
}


/* =========================================================
   INTRODUCTIEPRIJS
   ========================================================= */

.intro-price{
  margin:18px 0 20px;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px 12px;
}

.intro-price .price{
  margin:0;
}

.old-price{
  font-size:17px;
  color:rgba(255,255,255,.62);
  text-decoration:line-through;
  text-decoration-thickness:2px;
}

.intro-badge{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:5px 10px;
  border-radius:999px;
  background:rgba(239,183,94,.18);
  border:1px solid rgba(239,183,94,.35);
  font-size:12px;
  font-weight:800;
  color:#ffe1a9;
}


/* =========================================================
   BESPAARTIP
   ========================================================= */

.saving{
  margin-top:76px;
  background:#172d27;
  color:#fff;
  border-radius:30px;
  padding:40px;
  display:grid;
  grid-template-columns:1fr .5fr;
  gap:28px;
  align-items:center;
}

.saving .big{
  font-size:68px;
  line-height:1;
  font-weight:900;
  letter-spacing:-.06em;
  color:var(--accent);
}

.saving p{
  color:rgba(255,255,255,.75);
}

.tip-section{
  margin-top:76px;
  background:#eef1f4;
  border-radius:28px;
  padding:38px;
}

.tip-section h2{
  margin-top:0;
  font-size:34px;
  letter-spacing:-.03em;
}

.tips{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}

.tip{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:20px;
}

.tip strong{
  display:block;
  margin-bottom:5px;
}

.tip span{
  color:#667085;
  font-size:14px;
}


/* =========================================================
   PAYWALL DEMO
   ========================================================= */

.paywall-demo{
  margin-top:74px;
  position:relative;
  overflow:hidden;
  border-radius:28px;
  border:1px solid var(--border);
  background:#fff;
  min-height:470px;
}

.paid-content{
  padding:34px;
  filter:blur(4px);
  user-select:none;
  opacity:.72;
}

.paid-content h2{
  font-size:34px;
}

.paid-content .map-placeholder{
  height:170px;
  background:
    linear-gradient(35deg,#d9e3dc 25%,transparent 25%) 0 0/35px 35px,
    linear-gradient(215deg,#e9dfca 25%,transparent 25%) 0 0/35px 35px,
    #eef1eb;
  border-radius:16px;
  margin:20px 0;
}

.paywall-overlay{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  background:linear-gradient(
    to bottom,
    rgba(255,255,255,.08),
    rgba(247,248,250,.96) 54%
  );
  padding:28px;
}

.unlock{
  max-width:470px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  padding:30px;
  text-align:center;
  box-shadow:var(--shadow);
}

.unlock h3{
  font-size:28px;
  margin:8px 0;
}

.unlock p{
  color:var(--muted);
  margin:0 0 20px;
}

.lock-icon{
  font-size:34px;
}


/* =========================================================
   REISKAARTEN
   ========================================================= */

.journeys{
  margin:0 0 78px;
}

.journey-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

.journey-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 8px 24px rgba(16,24,40,.05);
}

.journey-visual{
  height:210px;
  padding:24px;
  display:flex;
  align-items:flex-end;
  font-size:54px;
  background:linear-gradient(135deg,#dfeae5,#eef4f1);
}

.journey-card.iceland .journey-visual{
  background:linear-gradient(135deg,#dbe5ec,#eef0e8);
}

.journey-body{
  padding:26px;
}

.journey-by{
  display:inline-flex;
  background:#f2f4f7;
  color:#475467;
  border-radius:999px;
  padding:6px 10px;
  font-size:12px;
  font-weight:750;
  margin-bottom:12px;
}

.journey-body h3{
  font-size:28px;
  line-height:1.08;
  letter-spacing:-.035em;
  margin:0 0 8px;
}

.journey-body p{
  color:var(--muted);
  font-size:14px;
}

.journey-meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:18px 0;
}

.journey-meta span{
  background:#f7f8fa;
  border:1px solid var(--border);
  padding:6px 9px;
  border-radius:10px;
  font-size:12px;
}


/* =========================================================
   IJSLAND / TOEKOMSTIGE REIZEN
   ========================================================= */

.iceland-detail{
  margin:78px 0;
  background:#fff;
  border:1px solid var(--border);
  border-radius:30px;
  padding:38px;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:34px;
  align-items:center;
}

.iceland-detail h2{
  font-size:42px;
  line-height:1.05;
  letter-spacing:-.045em;
  margin:8px 0 14px;
}

.iceland-detail p{
  color:var(--muted);
}

.iceland-panel{
  background:#eef2f4;
  border-radius:24px;
  padding:28px;
}

.iceland-panel strong{
  display:block;
  font-size:20px;
  margin-bottom:10px;
}

.iceland-list{
  margin:0;
  padding-left:20px;
  color:#475467;
}

.soon{
  display:inline-block;
  background:#fff3db;
  color:#8a5d16;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
}


/* =========================================================
   DAGDETAIL
   ========================================================= */

.day-detail{
  margin:26px 0 34px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 10px 28px rgba(16,24,40,.06);
}

.day-detail-head{
  padding:28px 30px 18px;
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:flex-start;
}

.day-kicker{
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--primary);
}

.day-detail h3{
  font-size:34px;
  line-height:1.08;
  letter-spacing:-.04em;
  margin:5px 0 9px;
}

.day-lead{
  color:var(--muted);
  max-width:680px;
  margin:0;
}

.day-badge{
  background:#e9f2ee;
  color:var(--primary);
  border-radius:999px;
  padding:8px 12px;
  font-size:12px;
  font-weight:800;
  white-space:nowrap;
}

.day-facts{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  background:#fafbfc;
}

.day-fact{
  padding:18px 22px;
  border-right:1px solid var(--border);
}

.day-fact:last-child{
  border-right:none;
}

.day-fact strong{
  display:block;
  font-size:15px;
}

.day-fact span{
  font-size:12px;
  color:var(--muted);
}


/* =========================================================
   ROUTE TIJDLIJN
   ========================================================= */

.route-timeline{
  padding:24px 30px 12px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:8px;
}

.route-step{
  position:relative;
  padding-top:28px;
  font-size:13px;
}

.route-step:before{
  content:"";
  position:absolute;
  top:8px;
  left:0;
  right:-8px;
  height:3px;
  background:#dfe5e2;
}

.route-step:last-child:before{
  right:calc(100% - 14px);
}

.route-step:after{
  content:"";
  position:absolute;
  top:3px;
  left:0;
  width:14px;
  height:14px;
  border-radius:50%;
  background:var(--primary);
  box-shadow:0 0 0 5px #eaf1ee;
}

.route-step.ferry:after{
  background:var(--accent);
}

.route-step strong{
  display:block;
}

.route-step span{
  display:block;
  color:var(--muted);
  font-size:12px;
  margin-top:2px;
}


/* =========================================================
   DAGVERHAAL
   ========================================================= */

.day-story{
  padding:14px 30px 30px;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:24px;
}

.day-story p{
  color:#475467;
}

.story-callout{
  background:#eef4f1;
  border-radius:20px;
  padding:22px;
}

.story-callout strong{
  display:block;
  margin-bottom:6px;
}

.story-callout span{
  font-size:14px;
  color:#52625b;
}


/* =========================================================
   LEAFLET FALLBACK
   ========================================================= */

.leaflet-container{
  position:relative;
  overflow:hidden;
  outline:0;
  background:#dce7eb;
  font-family:inherit;
}

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane>svg,
.leaflet-pane>canvas{
  position:absolute;
  left:0;
  top:0;
}

.leaflet-map-pane,
.leaflet-tile-pane,
.leaflet-overlay-pane,
.leaflet-shadow-pane,
.leaflet-marker-pane,
.leaflet-tooltip-pane,
.leaflet-popup-pane{
  position:absolute;
  left:0;
  top:0;
}

.leaflet-tile{
  visibility:hidden;
}

.leaflet-tile-loaded{
  visibility:inherit;
}

.leaflet-zoom-animated{
  transform-origin:0 0;
}

.leaflet-control-container .leaflet-top,
.leaflet-control-container .leaflet-bottom{
  position:absolute;
  z-index:1000;
  pointer-events:none;
}

.leaflet-control-container .leaflet-top{
  top:0;
}

.leaflet-control-container .leaflet-bottom{
  bottom:0;
}

.leaflet-control-container .leaflet-left{
  left:0;
}

.leaflet-control-container .leaflet-right{
  right:0;
}

.leaflet-control{
  position:relative;
  z-index:800;
  pointer-events:auto;
  float:left;
  clear:both;
}

.leaflet-right .leaflet-control{
  float:right;
}

.leaflet-top .leaflet-control{
  margin-top:10px;
}

.leaflet-left .leaflet-control{
  margin-left:10px;
}

.leaflet-right .leaflet-control{
  margin-right:10px;
}

.leaflet-bottom .leaflet-control{
  margin-bottom:10px;
}

.leaflet-control-zoom a{
  display:block;
  width:30px;
  height:30px;
  line-height:30px;
  text-align:center;
  text-decoration:none;
  background:#fff;
  color:#111;
  border-bottom:1px solid #ddd;
}

.leaflet-control-zoom{
  border:1px solid #ccc;
  border-radius:8px;
  overflow:hidden;
  box-shadow:0 1px 5px rgba(0,0,0,.2);
}

.leaflet-control-attribution{
  background:rgba(255,255,255,.8);
  padding:2px 5px;
  font-size:10px;
}


/* =========================================================
   FOTO'S
   ========================================================= */

.photo-block{
  margin:26px 0 0;
}

.photo-block h4{
  font-size:20px;
  margin:0 0 12px;
}

.photo-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:10px;
}

.trip-photo{
  margin:0;
  overflow:hidden;
  border-radius:18px;
  background:#eef1f4;
  min-height:180px;
}

.trip-photo:first-child{
  grid-row:span 2;
}

.trip-photo img{
  width:100%;
  height:100%;
  min-height:180px;
  object-fit:cover;
  display:block;
}

.trip-photo figcaption{
  padding:8px 10px;
  color:var(--muted);
  font-size:12px;
  background:#fff;
}

.photo-help{
  background:#f7f8fa;
  border:1px dashed #cfd5dc;
  border-radius:18px;
  padding:18px;
  color:var(--muted);
  font-size:13px;
}


/* =========================================================
   KAART
   ========================================================= */

.map-section{
  margin:76px 0;
}

.map-shell{
  background:#fff;
  border:1px solid var(--border);
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 10px 28px rgba(16,24,40,.06);
}

.map-toolbar{
  padding:22px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  border-bottom:1px solid var(--border);
}

.map-toolbar h3{
  margin:0;
  font-size:22px;
  letter-spacing:-.025em;
}

.map-toolbar p{
  margin:3px 0 0;
  color:var(--muted);
  font-size:13px;
}

.map-legend{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.legend-pill{
  font-size:12px;
  background:#f2f4f7;
  border:1px solid var(--border);
  border-radius:999px;
  padding:6px 9px;
}

.map-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) 270px;
}

.route-map{
  height:520px;
  min-height:420px;
  z-index:1;
}

.map-list{
  border-left:1px solid var(--border);
  padding:12px;
  background:#fafbfc;
}

.map-stop{
  width:100%;
  text-align:left;
  border:0;
  background:transparent;
  padding:14px;
  border-radius:14px;
  cursor:pointer;
  font:inherit;
  color:inherit;
}

.map-stop:hover,
.map-stop.active{
  background:#eaf1ee;
}

.map-stop small{
  display:block;
  color:var(--muted);
  margin-top:2px;
}

.map-note{
  padding:13px 16px;
  border-top:1px solid var(--border);
  font-size:12px;
  color:var(--muted);
  background:#fff;
}

.custom-pin{
  width:34px;
  height:34px;
  border-radius:50% 50% 50% 12px;
  transform:rotate(-45deg);
  display:grid;
  place-items:center;
  background:#315c4f;
  border:3px solid white;
  box-shadow:0 4px 10px rgba(0,0,0,.22);
}

.custom-pin span{
  transform:rotate(45deg);
  font-size:14px;
}

.custom-pin.ferry{
  background:#f4b860;
}

.leaflet-popup-content-wrapper{
  border-radius:16px;
}

.leaflet-popup-content{
  font-family:Inter,ui-sans-serif,system-ui,sans-serif;
  line-height:1.45;
}

.popup-title{
  font-weight:800;
  font-size:14px;
}

.popup-sub{
  color:#667085;
  font-size:12px;
  margin-top:2px;
}


/* =========================================================
   FOOTER
   ========================================================= */

footer{
  border-top:1px solid var(--border);
  padding:38px 22px;
  color:var(--muted);
  font-size:13px;
  text-align:center;
}


/* =========================================================
   TABLET
   ========================================================= */

@media(max-width:900px){

  .hero-inner,
  .route-layout,
  .personal,
  .saving,
  .journey-grid,
  .iceland-detail,
  .day-story,
  .map-layout{
    grid-template-columns:1fr;
  }

  .map-list{
    border-left:none;
    border-top:1px solid var(--border);
  }

  .sidebar{
    position:static;
  }

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

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


/* =========================================================
   MOBIEL
   ========================================================= */

@media(max-width:640px){

  .nav{
    padding:10px 14px;
    gap:10px;
  }

  .brand{
    font-size:17px;
  }

  .menu{
    gap:7px;
    margin-left:auto;
  }

  /* Gewone navigatielinks verbergen */
  .menu a:not(.nav-cta):not(.nav-login){
    display:none;
  }

  /* Noorwegen en Inloggen blijven zichtbaar */
  .nav-cta,
  .nav-login{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:7px 10px;
    font-size:11px;
    line-height:1.2;
  }

  .day-detail-head{
    padding:22px 20px 14px;
    display:block;
  }

  .day-badge{
    display:inline-block;
    margin-top:12px;
  }

  .day-facts{
    grid-template-columns:1fr;
  }

  .day-fact{
    border-right:none;
    border-bottom:1px solid var(--border);
  }

  .day-fact:last-child{
    border-bottom:none;
  }

  .route-timeline{
    grid-template-columns:1fr;
    padding:22px 20px;
  }

  .route-step{
    padding:4px 0 18px 30px;
  }

  .route-step:before{
    top:0;
    bottom:-2px;
    left:7px;
    right:auto;
    width:3px;
    height:auto;
  }

  .route-step:last-child:before{
    display:none;
  }

  .route-step:after{
    top:0;
  }

  .day-story{
    padding:8px 20px 22px;
  }

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

  .route-map{
    height:420px;
  }

  .map-list{
    display:grid;
    grid-template-columns:1fr 1fr;
  }

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

  .trip-photo:first-child{
    grid-row:auto;
  }

  .map-stop{
    padding:12px;
  }

  .day-detail h3{
    font-size:28px;
  }

  .hero{
    padding-top:64px;
  }

  .hero p{
    font-size:17px;
  }

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

  .stat{
    border-right:none!important;
    border-bottom:1px solid var(--border);
  }

  .day-card{
    grid-template-columns:58px 1fr;
  }

  .lock{
    grid-column:2;
  }

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

  .tip-section,
  .saving{
    padding:26px;
  }
}


/* Extra smalle telefoons */
@media(max-width:430px){

  .nav{
    padding-left:10px;
    padding-right:10px;
  }

  .brand{
    font-size:15px;
  }

  .menu{
    gap:5px;
  }

  .nav-cta{
    padding:7px 8px;
    font-size:10px;
  }

  .nav-login{
    padding:7px 8px;
    font-size:10px;
  }
}


/* =========================================================
   COMPACTERE DESKTOPWEERGAVE
   ========================================================= */

@media(min-width:901px){

  .nav{
    max-width:1080px;
    padding:11px 20px;
  }

  .menu{
    gap:18px;
  }

  .nav-cta{
    padding:8px 14px;
  }

  .nav-login{
    padding:7px 13px;
  }

  .hero{
    padding:58px 22px 52px;
  }

  .hero-inner{
    max-width:1080px;
    gap:44px;
  }

  h1{
    font-size:clamp(42px,5.2vw,68px);
    margin:14px 0 17px;
  }

  .hero p{
    font-size:17px;
    margin-bottom:23px;
  }

  .hero-card{
    padding:23px;
    border-radius:24px;
  }

  .trip-title{
    font-size:26px;
  }

  .route-stop{
    min-height:50px;
  }

  .stats-wrap{
    max-width:1080px;
    margin-top:-22px;
  }

  .stat{
    padding:17px 20px;
  }

  .stat strong{
    font-size:21px;
  }

  main{
    max-width:1080px;
    padding-top:54px;
    padding-bottom:80px;
  }

  .section-head{
    margin-bottom:23px;
  }

  .section-head h2{
    font-size:clamp(29px,3.2vw,40px);
  }

  .section-head p{
    font-size:15px;
  }

  .grid-3{
    gap:15px;
    margin:22px 0 56px;
  }

  .feature{
    padding:21px;
    border-radius:20px;
  }

  .feature .icon{
    font-size:24px;
  }

  .personal{
    gap:24px;
    padding:24px;
    margin-bottom:58px;
  }

  .avatar{
    min-height:215px;
    font-size:60px;
  }

  .personal h2{
    font-size:32px;
  }

  .journeys{
    margin-bottom:58px;
  }

  .journey-visual{
    height:170px;
    font-size:45px;
  }

  .journey-body{
    padding:22px;
  }

  .journey-body h3{
    font-size:24px;
  }

  .route-layout{
    gap:28px;
    grid-template-columns:minmax(0,1fr) 315px;
  }

  .day-card{
    padding:17px;
    margin-bottom:11px;
  }

  .day-number{
    width:50px;
    height:50px;
    border-radius:15px;
    font-size:18px;
  }

  .buy-card{
    padding:23px;
  }

  .buy-card h3{
    font-size:24px;
  }

  .price{
    font-size:35px;
  }

  .day-detail{
    margin:22px 0 28px;
  }

  .day-detail-head{
    padding:23px 25px 15px;
  }

  .day-detail h3{
    font-size:29px;
  }

  .day-fact{
    padding:14px 18px;
  }

  .route-timeline{
    padding:20px 25px 10px;
  }

  .day-story{
    padding:10px 25px 25px;
  }

  .map-section{
    margin:58px 0;
  }

  .route-map{
    height:450px;
  }

  .map-toolbar{
    padding:18px 20px;
  }

  .saving{
    margin-top:58px;
    padding:31px;
  }

  .saving .big{
    font-size:56px;
  }

  .tip-section{
    margin-top:58px;
    padding:30px;
  }

  .tip-section h2{
    font-size:30px;
  }

  .tip{
    padding:17px;
  }

  .paywall-demo{
    margin-top:58px;
    min-height:410px;
  }
}
