/* =========================================================
   Luchtballon Eindhoven — 2026
   Warme zonsopgang-palet + moderne typografie
   ========================================================= */

:root{
  --night:        #0f2417;     /* deep forest */
  --night-2:      #18351f;     /* slightly lighter forest */
  --cream:        #f6faf2;     /* off-white with green tint */
  --cream-2:      #e8f3dc;     /* pale lime */
  --green:        #3fab01;     /* logo primary */
  --green-2:      #58c41a;     /* lighter hover */
  --green-d:      #2e8500;     /* darker pressed */
  --lime:         #b4be28;     /* logo accent (citroen) */
  --lime-2:       #c8dc1e;
  --warm:         #f4a82b;     /* small warm accent for sunsets */
  --ink:          #14241a;
  --ink-soft:     #46594c;
  --line:         rgba(15,36,23,.10);

  /* legacy aliases */
  --sun:          var(--green);
  --sun-2:        var(--lime);
  --ember:        var(--green-d);

  --font-display: "Funnel Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body:    "Funnel Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(14,23,48,.06), 0 4px 12px rgba(14,23,48,.05);
  --shadow-md: 0 4px 8px rgba(14,23,48,.06), 0 24px 48px -16px rgba(14,23,48,.18);
  --shadow-lg: 0 12px 24px rgba(14,23,48,.10), 0 40px 80px -20px rgba(14,23,48,.25);

  --max: 1240px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 17px;
  line-height: 1.55;
}

img{ max-width:100%; display:block; }
a{ color: inherit; }

.wrap{ max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* === Buttons ============================================ */
.btn{
  display: inline-flex;
  align-items: center;
  gap: .55em;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  border: none;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}
.btn-primary{
  background: linear-gradient(135deg, var(--green-2) 0%, var(--green-d) 100%);
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(63,171,1,.45);
}
.btn-primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 32px -8px rgba(63,171,1,.65);
}
.btn-ghost{
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.4);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover{ background: rgba(255,255,255,.22); }
.btn-lg{ padding: 16px 26px; font-size: 16px; }
.btn-block{ display: flex; justify-content: center; width: 100%; }

/* === Topbar ============================================= */
.topbar{
  position: sticky;
  top: 0; z-index: 50;
  background: rgba(255,247,236,.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line);
}
.bar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}

.brand{
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
  color: var(--night);
}
.brand-logo{
  height: 46px;
  width: auto;
  display: block;
  flex: 0 0 auto;
}
.brand-logo-footer{
  height: 56px;
}

.nav{ display:flex; gap: 28px; }
.nav a{
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding: 6px 0;
}
.nav a:hover{ color: var(--green-d); }

.bar-cta{ display:flex; align-items:center; gap: 14px; }
.phone{
  display: inline-flex; align-items:center; gap: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  color: var(--night);
}
.phone:hover{ color: var(--green-d); }

/* === Hero =============================================== */
.hero{
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}
.hero-img{
  position: absolute; inset:0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  animation: heroFloat 22s ease-in-out infinite alternate;
}
@keyframes heroFloat{
  from{ transform: scale(1.04) translateY(0); }
  to{   transform: scale(1.10) translateY(-1.5%); }
}
.hero-overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(14,23,48,0) 35%, rgba(14,23,48,.65) 100%),
    linear-gradient(90deg, rgba(14,23,48,.55) 0%, rgba(14,23,48,0) 60%);
  z-index: -1;
}

.hero-content{
  width: 100%;
  padding: 80px 24px 120px;
}
.eyebrow{
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.hero h1{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(44px, 8vw, 96px);
  line-height: .98;
  margin: 22px 0 18px;
  letter-spacing: -.02em;
  text-shadow: 0 2px 28px rgba(0,0,0,.35);
}
.hero h1 em{
  font-style: italic;
  font-weight: 400;
  color: var(--lime-2);
}
.hero .lead{
  max-width: 600px;
  font-size: clamp(16px, 1.7vw, 19px);
  color: rgba(255,255,255,.92);
  text-shadow: 0 1px 12px rgba(0,0,0,.4);
  margin-bottom: 28px;
}

.hero-actions{
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 56px;
}

.hero-meta{
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  max-width: 720px;
  border-top: 1px solid rgba(255,255,255,.25);
  padding-top: 24px;
}
.hero-meta li{
  display:flex; flex-direction:column;
}
.hero-meta strong{
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.hero-meta span{
  font-size: 13px;
  color: rgba(255,255,255,.85);
  margin-top: 4px;
}

.scroll-hint{
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 44px;
  border: 2px solid rgba(255,255,255,.6);
  border-radius: 14px;
  display: grid; place-items: center;
}
.scroll-hint span{
  width: 4px; height: 8px;
  background: #fff;
  border-radius: 2px;
  animation: scrollDot 1.6s ease-in-out infinite;
}
@keyframes scrollDot{
  0%,100%{ transform: translateY(-6px); opacity: .4; }
  50%    { transform: translateY(6px);  opacity: 1;  }
}

/* === Sections (generic) ================================ */
.section{ padding: 96px 0; }
.section-head{
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head .kicker,
.kicker{
  display: inline-block;
  color: var(--green-d);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-head h2,
h2{
  font-family: var(--font-display);
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -.02em;
  margin: 0 0 16px;
  color: var(--night);
}
h2 em{
  font-style: italic;
  font-weight: 400;
  color: var(--green-d);
}
.section-head p{
  color: var(--ink-soft);
  font-size: 17px;
}
.section-head.light .kicker{ color: var(--lime-2); }
.section-head.light h2{ color: #fff; }
.section-head.light h2 em{ color: var(--lime-2); }
.section-head.light p{ color: rgba(255,255,255,.8); }
.kicker.light{ color: var(--lime-2); }
.kicker-soft{
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--ink-soft);
}

/* === Pakketten ========================================= */
.section-pakketten{
  background:
    radial-gradient(1200px 500px at 20% -10%, rgba(63,171,1,.10), transparent 60%),
    radial-gradient(900px 400px at 90% 10%, rgba(180,190,40,.10), transparent 70%),
    var(--cream);
}

.cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card{
  background: #fff;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card-featured{
  outline: 2px solid var(--green);
  outline-offset: -2px;
  position: relative;
}
.card-featured::after{
  content: "Aanrader";
  position: absolute; top: 16px; right: 16px;
  background: var(--night); color: #fff;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 999px;
  z-index: 2;
}
.card-img{
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.card-img img{
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.card:hover .card-img img{ transform: scale(1.04); }
.badge{
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,.95);
  color: var(--night);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.badge-warm{ background: var(--green); color: #fff; }
.badge-soft{ background: var(--cream-2); color: var(--green-d); }

.card-body{
  padding: 28px;
  display: flex; flex-direction: column;
  flex: 1;
}
.card-body h3{
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 4px;
  letter-spacing: -.01em;
}
.card-sub{
  color: var(--ink-soft);
  margin: 0 0 16px;
  font-size: 14px;
}
.price{
  display: baseline; align-items: baseline;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--line);
}
.price .amount{
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--night);
  margin-right: 8px;
}
.price .per{
  font-size: 14px;
  color: var(--ink-soft);
}
.features{
  list-style: none; padding: 0; margin: 0 0 22px;
  flex: 1;
}
.features li{
  position: relative;
  padding: 6px 0 6px 26px;
  font-size: 15px;
}
.features li::before{
  content: "";
  position: absolute; left: 0; top: 12px;
  width: 16px; height: 16px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><circle cx='8' cy='8' r='8' fill='%233fab01'/><path d='M4.5 8.2 7 10.5l4.5-5' stroke='white' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
}

/* === Steps ============================================= */
.section-steps{
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}
.steps{
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  counter-reset: step;
}
.steps li{
  background: #fff;
  border-radius: var(--r-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.step-num{
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--green);
  display: block;
  line-height: 1;
  margin-bottom: 16px;
}
.steps h3{
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px;
}
.steps p{
  color: var(--ink-soft);
  margin: 0;
  font-size: 15px;
}

/* === Beleving (split section) ========================== */
.section-beleving{
  background: var(--cream);
}
.split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-text h2{ text-align: left; }
.split-text > .kicker{ display: inline-block; }
.split-text p{
  color: var(--ink-soft);
  font-size: 17px;
  margin: 16px 0 24px;
}
.check-list{
  list-style: none; padding: 0; margin: 0 0 28px;
}
.check-list li{
  position: relative;
  padding: 8px 0 8px 30px;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
}
.check-list li:last-child{ border-bottom: 0; }
.check-list li::before{
  content: "✦";
  position: absolute; left: 0;
  color: var(--green);
  font-weight: 700;
}
.split-media{
  position: relative;
  height: 580px;
}
.split-media img{
  position: absolute;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}
.split-media .m1{
  width: 70%;
  height: 64%;
  top: 0; left: 0;
}
.split-media .m2{
  width: 64%;
  height: 56%;
  bottom: 0; right: 0;
  outline: 8px solid var(--cream);
}

/* === Reviews =========================================== */
.section-reviews{
  background: linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 100%);
}
.reviews{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review{
  background: #fff;
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.stars{
  color: var(--warm);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.review blockquote{
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  font-style: italic;
  margin: 0 0 24px;
  line-height: 1.4;
  color: var(--night);
  flex: 1;
}
.review footer{
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.review footer strong{ font-size: 15px; }
.review footer span{ font-size: 13px; color: var(--ink-soft); }

/* === Locaties ========================================== */
.section-locaties{
  background: var(--cream);
}
.locations{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.loc{
  display: flex; flex-direction: column;
  background: #fff;
  border-radius: var(--r-lg);
  text-decoration: none;
  color: var(--night);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform .2s ease, border-color .15s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}
.loc:hover{
  transform: translateY(-4px);
  border-color: var(--green);
  box-shadow: var(--shadow-md);
}
.loc-card img{
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.loc-card:hover img{ transform: scale(1.05); }
.loc-card-body{
  padding: 22px;
  display: flex; flex-direction: column;
}
.loc .dot{
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(63,171,1,.20);
  margin-bottom: 14px;
}
.loc strong{ font-family: var(--font-display); font-size: 22px; font-weight: 700; }
.loc small{ color: var(--ink-soft); font-size: 13px; margin-top: 4px; }

.loc-extra{
  grid-column: 1 / -1;
  margin-top: 16px;
  padding: 24px;
  background: var(--cream-2);
  border-radius: var(--r-lg);
}
.loc-extra p{
  margin: 8px 0 0;
  color: var(--night);
  font-size: 15px;
}

/* === Special occasions ================================ */
.section-special{
  background: linear-gradient(135deg, var(--night) 0%, var(--night-2) 100%);
  color: #fff;
}
.section-special .section-head h2{ color: #fff; }
.section-special .section-head h2 em{ color: var(--lime-2); }
.special-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.special{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: background .2s, transform .15s;
}
.special:hover{
  background: rgba(255,255,255,.10);
  transform: translateY(-3px);
}
.special-icon{
  display: inline-grid;
  place-items: center;
  width: 56px; height: 56px;
  background: rgba(180,190,40,.18);
  border-radius: 16px;
  font-size: 26px;
  margin-bottom: 18px;
}
.special h3{
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px;
}
.special p{
  color: rgba(255,255,255,.75);
  font-size: 15px;
  margin: 0;
}

/* === FAQ =============================================== */
.section-faq{
  background: var(--cream);
}
.faq{
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq details{
  background: #fff;
  border-radius: var(--r-md);
  padding: 4px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.faq summary{
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--night);
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.faq summary::-webkit-details-marker{ display: none; }
.faq summary::after{
  content: "+";
  font-family: var(--font-body);
  font-size: 26px;
  font-weight: 300;
  color: var(--green-d);
  transition: transform .2s;
  line-height: 1;
}
.faq details[open] summary::after{ transform: rotate(45deg); }
.faq p{
  color: var(--ink-soft);
  font-size: 16px;
  margin: 0 0 18px;
}

/* === Contact =========================================== */
.section-contact{
  background: linear-gradient(135deg, var(--green-d) 0%, var(--green) 60%, var(--lime) 100%);
  color: #fff;
}
.section-contact .section-head .kicker.light{ color: var(--cream-2); }
.section-contact .split-text h2{ color: #fff; }
.section-contact .split-text h2 em{ color: var(--cream-2); }
.section-contact .split-text p{ color: rgba(255,255,255,.92); }

.contact-block{
  display: flex; flex-direction: column;
  gap: 14px;
}
.contact-item{
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  padding: 18px 22px;
  border-radius: var(--r-md);
  text-decoration: none;
  color: #fff;
  transition: background .2s;
}
.contact-item:hover{ background: rgba(255,255,255,.20); }
.contact-item strong{ display:block; font-size: 17px; }
.contact-item span{ font-size: 13px; color: rgba(255,255,255,.85); }

.form{
  background: #fff;
  border-radius: var(--r-xl);
  padding: 36px;
  color: var(--ink);
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
  gap: 16px;
}
.form h3{
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 8px;
}
.form-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form label{
  display: flex; flex-direction: column;
}
.form label span{
  font-size: 13px; font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 6px;
  letter-spacing: .04em;
}
.form input, .form select, .form textarea{
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--cream);
  color: var(--ink);
  transition: border-color .15s, background .15s;
}
.form input:focus, .form select:focus, .form textarea:focus{
  outline: none;
  border-color: var(--green);
  background: #fff;
}
.form-note{
  color: var(--ink-soft);
  font-size: 12px;
  text-align: center;
}

/* === Footer ============================================ */
.footer{
  background: var(--night);
  color: rgba(255,255,255,.78);
  padding: 64px 0 28px;
  font-size: 14px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer h4{
  font-family: var(--font-display);
  font-size: 16px;
  color: #fff;
  margin: 0 0 14px;
}
.footer ul{ list-style: none; padding: 0; margin: 0; }
.footer li{ padding: 4px 0; }
.footer a{ color: rgba(255,255,255,.78); text-decoration: none; }
.footer a:hover{ color: var(--lime-2); }
.brand-footer{ background: #fff; padding: 14px 22px; border-radius: 14px; display: inline-flex; box-shadow: 0 8px 24px -12px rgba(0,0,0,.4); }
.muted{ color: rgba(255,255,255,.55); font-size: 13px; line-height: 1.5; margin: 12px 0 0; }
.footer-bottom{
  display: flex; justify-content: space-between;
  padding-top: 28px;
  font-size: 12px;
  color: rgba(255,255,255,.45);
}

/* === Mobile sticky CTA ================================= */
.mobile-cta{
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255,247,236,.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  z-index: 60;
}

/* === Responsive ======================================== */
@media (max-width: 1080px){
  .nav{ display: none; }
  .cards{ grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .steps{ grid-template-columns: repeat(2, 1fr); }
  .reviews{ grid-template-columns: 1fr; }
  .locations{ grid-template-columns: repeat(2, 1fr); }
  .special-grid{ grid-template-columns: repeat(2, 1fr); }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .split{ grid-template-columns: 1fr; gap: 40px; }
  .split-media{ height: 480px; max-width: 600px; margin: 0 auto; width: 100%; }
}

@media (max-width: 640px){
  body{ font-size: 16px; }
  .section{ padding: 64px 0; }
  .bar{ height: 60px; }
  .brand-logo{ height: 36px; }
  .phone span{ display: none; }
  .hero{ min-height: 92vh; }
  .hero-content{ padding: 60px 24px 100px; }
  .hero-meta{ grid-template-columns: 1fr; gap: 12px; padding-top: 18px; }
  .hero-meta strong{ font-size: 22px; }
  .steps{ grid-template-columns: 1fr; }
  .locations{ grid-template-columns: 1fr; }
  .special-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom{ flex-direction: column; gap: 8px; text-align: center; }
  .form{ padding: 24px; }
  .form-row{ grid-template-columns: 1fr; }
  .split-media{ height: 380px; }
  .mobile-cta{ display: block; }
  body{ padding-bottom: 76px; }
}

/* =========================================================
   v2 — components added for full multipage site
   ========================================================= */

/* Hamburger / mobile nav */
.hamburger{ display:none; background:none; border:none; cursor:pointer; padding:8px; }
.hamburger span{ display:block; width:24px; height:2px; background:var(--night); margin:5px 0; transition:transform .25s, opacity .15s; }
body.menu-open .hamburger span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
body.menu-open .hamburger span:nth-child(2){ opacity:0; }
body.menu-open .hamburger span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.mobile-nav{
  position:absolute; top:100%; left:0; right:0;
  background:#fff;
  border-bottom: 1px solid var(--line);
  padding: 16px 24px 24px;
  display: none;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 16px 32px -16px rgba(0,0,0,.2);
}
body.menu-open .mobile-nav{ display: flex; }
.mobile-nav a{
  padding: 12px 0;
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.mobile-nav a:last-child{ border:0; margin-top: 8px; justify-content:center; }

/* Page hero (interior pages) */
.page-hero{
  position: relative;
  min-height: 56vh;
  padding: 96px 0 64px;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  background: var(--page-hero-img, none) center/cover no-repeat;
}
.page-hero::before{
  content:""; position:absolute; inset:0; z-index:-1;
  background:
    linear-gradient(180deg, rgba(15,36,23,.45) 0%, rgba(15,36,23,.75) 100%);
}
.page-hero.compact{ min-height: 38vh; padding-top: 80px; padding-bottom: 40px; }
.page-hero h1{
  font-family: var(--font-display);
  font-size: clamp(36px, 6.5vw, 80px);
  line-height: .98;
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 14px 0 14px;
  color: #fff;
  text-shadow: 0 2px 28px rgba(0,0,0,.3);
}
.page-hero h1 em{ font-style: italic; font-weight: 400; color: var(--lime-2); }
.page-hero .lead{
  max-width: 640px;
  font-size: clamp(16px, 1.6vw, 19px);
  color: rgba(255,255,255,.92);
  text-shadow: 0 1px 12px rgba(0,0,0,.4);
  margin-bottom: 24px;
}

/* Breadcrumb */
.breadcrumb{
  display: flex; gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.85);
  margin-bottom: 8px;
}
.breadcrumb a{ color: rgba(255,255,255,.85); text-decoration: none; }
.breadcrumb a:hover{ color: #fff; text-decoration: underline; }
.breadcrumb span:last-child{ font-weight: 500; }

/* Ticker section */
.ticker-section{
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  font-size: 14px;
}
.ticker-wrap{
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.ticker-pulse{
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--green);
  position: relative;
  flex: 0 0 auto;
}
.ticker-pulse::after{
  content:"";
  position: absolute; inset: 0;
  border-radius: 50%;
  background: var(--green);
  opacity: .5;
  animation: pulse 1.6s ease-out infinite;
}
@keyframes pulse{
  0%{ transform: scale(1); opacity: .5; }
  100%{ transform: scale(2.5); opacity: 0; }
}
.ticker-label{
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.ticker-track{
  flex: 1;
  position: relative;
  height: 22px;
  overflow: hidden;
  min-width: 240px;
}
.ticker-item{
  position: absolute; inset: 0;
  font-weight: 500;
  color: var(--ink);
  opacity: 0;
  transition: opacity .4s, transform .4s;
  transform: translateY(8px);
}
.ticker-item.is-active{ opacity: 1; transform: translateY(0); }
.ticker-meta{
  color: var(--ink-soft);
  font-size: 13px;
}
.ticker-meta strong{ color: var(--green-d); }

/* USPs grid */
.section-usps{ background: var(--cream-2); padding: 48px 0; }
.usps{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.usp{
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 6px;
}
.usp-icon{
  display: inline-grid; place-items: center;
  width: 44px; height: 44px;
  background: #fff; border-radius: 12px;
  font-size: 22px;
  margin-bottom: 8px;
}
.usp strong{ font-family: var(--font-display); font-size: 17px; }
.usp span{ font-size: 14px; color: var(--ink-soft); }

/* More options pills */
.more-options{
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center;
  margin-top: 36px;
}
.link-pill{
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--night);
  text-decoration: none;
  transition: border-color .15s, transform .15s;
}
.link-pill:hover{ border-color: var(--green); transform: translateY(-2px); }

.link-arrow{
  color: var(--green-d);
  font-weight: 600;
  text-decoration: none;
}
.link-arrow:hover{ text-decoration: underline; }

.centered{ text-align: center; }
.centered-content{ text-align: center; max-width: 720px; margin: 0 auto; }

.section-soft{ background: var(--cream-2); }

/* Final CTA */
.section-cta-final{
  background: linear-gradient(135deg, var(--green-d) 0%, var(--green) 60%, var(--lime) 100%);
  color: #fff;
  padding: 80px 0;
}
.section-cta-final h2{ color: #fff; }
.section-cta-final h2 em{ color: var(--cream); font-style: italic; font-weight: 400; }
.section-cta-final p{ color: rgba(255,255,255,.92); font-size: 18px; margin: 0 auto 28px; max-width: 600px; }
.cta-row{
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.btn-ghost-light{
  background: rgba(255,255,255,.18);
  color: #fff;
  border: 1px solid rgba(255,255,255,.45);
  backdrop-filter: blur(6px);
}
.btn-ghost-light:hover{ background: rgba(255,255,255,.28); }
.btn-ghost-dark{
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost-dark:hover{ background: var(--cream-2); }

/* Pricing grid */
.pricing-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.pricing-card{
  position: relative;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 28px 24px;
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
}
.pricing-card h3{ font-family: var(--font-display); font-size: 20px; margin: 0 0 12px; }
.pricing-card .price{ margin-bottom: 12px; padding-bottom: 12px; border:0; }
.pricing-card p{ font-size: 14px; color: var(--ink-soft); margin: 0 0 16px; flex: 1; }
.pricing-card .btn{ margin-top: auto; }
.pricing-featured{ outline: 2px solid var(--green); outline-offset: -2px; }
.pricing-badge{
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: #fff;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* Stat grid (about page) */
.stat-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
  text-align: center;
}
.stat strong{
  display: block;
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: var(--green-d);
  line-height: 1;
}
.stat span{ display: block; margin-top: 8px; color: var(--ink-soft); font-size: 14px; }

/* Locations practical grid */
.practical-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.practical-item{
  background: #fff;
  border-radius: var(--r-md);
  padding: 18px 20px;
  border: 1px solid var(--line);
}
.practical-item strong{ display:block; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); margin-bottom: 4px; }
.practical-item span{ display: block; font-size: 15px; color: var(--ink); }

/* Cards: mini variant for location detail */
.cards.mini{ grid-template-columns: repeat(3, 1fr); }
.cards.mini .card-body{ padding: 22px; }

/* FAQ multi-column */
.faq-cols{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.faq-cols h3{
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--green-d);
}
.faq-cols details{
  background: #fff;
  border-radius: 10px;
  padding: 4px 18px;
  margin-bottom: 8px;
  border: 1px solid var(--line);
}
.faq-cols summary{
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  padding: 14px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.faq-cols summary::-webkit-details-marker{ display: none; }
.faq-cols summary::after{
  content: "+"; font-size: 22px; color: var(--green-d);
  transition: transform .2s;
}
.faq-cols details[open] summary::after{ transform: rotate(45deg); }
.faq-cols p{ color: var(--ink-soft); font-size: 15px; margin: 0 0 14px; }

/* Booking page */
.boek-page{ padding: 100px 0 80px; background: var(--cream); min-height: 90vh; }
.boek-head h1{
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  margin: 14px 0 8px;
}
.boek-head h1 em{ font-style: italic; font-weight: 400; color: var(--green-d); }
.boek-head p{ color: var(--ink-soft); font-size: 17px; margin-bottom: 36px; }

.boek-grid{
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 36px;
  align-items: flex-start;
}
.boek-form{
  background: #fff;
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.stepper{
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  position: relative;
  counter-reset: step;
}
.stepper::before{
  content:"";
  position: absolute;
  top: 18px; left: 24px; right: 24px;
  height: 2px;
  background: var(--line);
  z-index: 0;
}
.step{
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  position: relative; z-index: 1;
  flex: 1;
}
.step-dot{
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--line);
  display: grid; place-items: center;
  font-weight: 700;
  color: var(--ink-soft);
  transition: all .2s;
}
.step.is-active .step-dot{
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.step-label{ font-size: 12px; color: var(--ink-soft); text-align: center; }
.step.is-active .step-label{ color: var(--green-d); font-weight: 600; }

.boek-step{ display: none; }
.boek-step.is-active{ display: block; animation: fadeUp .25s; }
@keyframes fadeUp{ from{opacity:0; transform: translateY(8px);} to{opacity:1; transform:none;}}
.boek-step h2{
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 24px;
}

.option-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}
.option-card{
  display: flex; align-items: flex-start; gap: 12px;
  padding: 18px;
  border: 2px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
  background: #fff;
  transition: border-color .15s, background .15s;
}
.option-card:hover{ border-color: var(--green-2); background: var(--cream-2); }
.option-card input{ accent-color: var(--green); margin-top: 4px; }
.option-card input:checked + div strong{ color: var(--green-d); }
.option-card:has(input:checked){ border-color: var(--green); background: var(--cream-2); }
.option-card strong{ display: block; font-family: var(--font-display); font-size: 17px; }
.option-card span{ font-size: 13px; color: var(--ink-soft); }

.counter{
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--line);
  border-radius: 14px;
  background: #fff;
  margin-bottom: 12px;
}
.counter input{
  width: 80px;
  text-align: center;
  border: 0; padding: 14px 0;
  font-family: var(--font-display);
  font-size: 24px; font-weight: 700;
  background: transparent;
}
.counter-btn{
  width: 50px; height: 50px;
  border: 0; background: transparent;
  font-size: 20px; cursor: pointer;
  color: var(--green-d);
}
.counter-btn:hover{ background: var(--cream-2); }

.form-field{ display: flex; flex-direction: column; margin-bottom: 16px; }
.form-field span{ font-size: 13px; font-weight: 600; color: var(--ink-soft); margin-bottom: 6px; letter-spacing: .04em; }
.form-field input,
.form-field select,
.form-field textarea{
  font-family: inherit; font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--cream);
  color: var(--ink);
  transition: border-color .15s, background .15s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus{
  outline: none; border-color: var(--green); background: #fff;
}
.checkbox{ display: flex; gap: 10px; align-items: flex-start; font-size: 14px; margin: 18px 0; }
.checkbox input{ margin-top: 4px; }

.boek-actions{ display: flex; justify-content: space-between; gap: 12px; margin-top: 28px; }

.boek-summary{
  background: #fff;
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 96px;
}
.boek-summary h3{ font-family: var(--font-display); font-size: 20px; margin: 0 0 18px; }
.boek-summary dl{ margin: 0; }
.boek-summary dt{ font-size: 12px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .08em; margin-top: 12px; }
.boek-summary dd{ margin: 0; font-weight: 500; }
.sum-total{
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 24px; padding-top: 16px;
  border-top: 1px solid var(--line);
}
.sum-total span{ font-size: 13px; color: var(--ink-soft); }
.sum-total strong{ font-family: var(--font-display); font-size: 26px; color: var(--green-d); }
.sum-trust{
  margin-top: 24px; padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 13px; color: var(--ink-soft);
}
.sum-trust p{ margin: 4px 0; }

/* Success state */
.success-card{
  text-align: center;
  background: #fff;
  border-radius: var(--r-xl);
  padding: 60px 40px;
  box-shadow: var(--shadow-md);
  max-width: 600px;
  margin: 40px auto;
}
.success-icon{ font-size: 64px; display: block; margin-bottom: 16px; }
.success-card h2{ margin: 0 0 12px; }

/* Article (blog post) */
.article{
  max-width: 720px;
  margin: 0 auto;
}
.article p{ font-size: 17px; line-height: 1.7; margin: 0 0 18px; }
.article h2{
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin: 36px 0 14px;
  color: var(--night);
}
.article ol, .article ul{ font-size: 17px; line-height: 1.7; margin: 0 0 24px; padding-left: 24px; }
.article li{ margin-bottom: 8px; }
.article img{ border-radius: 14px; margin: 24px 0 8px; }
.img-caption{ display: block; color: var(--ink-soft); font-size: 13px; text-align: center; margin-bottom: 24px; }
.article-cta{
  background: var(--cream-2);
  border-radius: 18px;
  padding: 36px;
  margin-top: 48px;
  text-align: center;
}
.article-cta h3{ font-family: var(--font-display); font-size: 24px; margin: 0 0 8px; }
.article-cta p{ color: var(--ink-soft); margin: 0 0 18px; }

/* Blog grid */
.blog-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.blog-card{
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: var(--ink);
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.blog-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card img{ width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.blog-card-body{ padding: 24px; }
.blog-card h3{ font-family: var(--font-display); font-size: 22px; font-weight: 700; margin: 8px 0 8px; }
.blog-card p{ color: var(--ink-soft); font-size: 14px; margin: 0 0 12px; }

/* Reviews — big rating block */
.rating-block{
  text-align: center;
  margin-bottom: 48px;
}
.big-rating{
  font-family: var(--font-display);
  font-size: 96px;
  font-weight: 800;
  color: var(--green-d);
  line-height: 1;
}
.rating-stars{ color: var(--warm); font-size: 26px; letter-spacing: 4px; margin: 8px 0; }
.rating-meta{ color: var(--ink-soft); font-size: 14px; }

.review.big blockquote{ font-size: 22px; }

/* Trust badges */
.trust{ display:flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.trust-badge{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: rgba(255,255,255,.85);
}
.trust-badge strong{ color: #fff; }

/* Social */
.social{ display:flex; gap: 8px; margin-top: 16px; }
.social a{
  display: grid; place-items: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.85);
  transition: background .15s;
}
.social a:hover{ background: rgba(255,255,255,.18); color: #fff; }

/* Mobile CTA bar bottom */
.mobile-cta{
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  z-index: 60;
  align-items: center; gap: 12px;
  box-shadow: 0 -8px 24px -16px rgba(0,0,0,.2);
}
.mobile-cta-info{ flex: 1; display: flex; flex-direction: column; }
.mobile-cta-info strong{ font-family: var(--font-display); font-size: 16px; color: var(--green-d); }
.mobile-cta-info span{ font-size: 11px; color: var(--ink-soft); }

/* Cookie banner */
.cookie-banner{
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(15,36,23,.96);
  color: #fff;
  padding: 18px;
  z-index: 80;
  backdrop-filter: blur(8px);
}
.cookie-inner{
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-inner p{ flex: 1; font-size: 14px; margin: 0; min-width: 220px; }
.cookie-inner a{ color: var(--lime-2); text-decoration: underline; }
.cookie-buttons{ display: flex; gap: 10px; }

/* One-img split media variant */
.split-media.one-img{ position: relative; height: 480px; }
.split-media.one-img img{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
}
.split-media.one-img .img-caption{
  position: absolute; bottom: 12px; left: 16px; right: 16px;
  color: #fff;
  background: rgba(15,36,23,.65);
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 12px;
  text-align: center;
}

.check-list.big li{ font-size: 16px; padding: 10px 0 10px 30px; }
.check-list.big li::before{ font-size: 18px; }

/* Legal pages */
.legal{ max-width: 760px; margin: 0 auto; }
.legal h2{
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  margin: 36px 0 12px;
}
.legal p, .legal ul{ font-size: 16px; line-height: 1.65; }
.legal ul{ padding-left: 22px; margin-bottom: 16px; }
.legal li{ margin-bottom: 6px; }

/* Form (contact) sizing */
.form{ display: flex; flex-direction: column; gap: 0; }

/* Responsive */
@media (max-width: 1080px){
  .nav{ display: none; }
  .hamburger{ display: block; }
  .pricing-grid{ grid-template-columns: repeat(2, 1fr); }
  .blog-grid{ grid-template-columns: 1fr; }
  .faq-cols{ grid-template-columns: 1fr; }
  .boek-grid{ grid-template-columns: 1fr; }
  .boek-summary{ position: static; }
  .cards.mini{ grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .stepper{ font-size: 0; }
  .stepper .step-label{ font-size: 11px; }
}
@media (max-width: 640px){
  .mobile-cta{ display: flex; }
  body{ padding-bottom: 84px; }
  .pricing-grid{ grid-template-columns: 1fr; }
  .option-grid{ grid-template-columns: 1fr; }
  .form-row{ grid-template-columns: 1fr; }
  .stepper .step-label{ display:none; }
  .boek-form{ padding: 24px 20px; }
  .ticker-section .ticker-meta{ display:none; }
  .page-hero{ padding-top: 80px; min-height: 50vh; }
  .article p, .article ul, .article ol{ font-size: 16px; }
}

/* WhatsApp floating button */
.wa-float{
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 70;
  display: inline-flex; align-items: center; gap: 8px;
  background: #25d366;
  color: #fff;
  padding: 12px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 8px 24px -8px rgba(37,211,102,.55), 0 4px 8px rgba(0,0,0,.12);
  transition: transform .15s, box-shadow .15s;
}
.wa-float:hover{ transform: translateY(-2px); box-shadow: 0 14px 28px -8px rgba(37,211,102,.7), 0 6px 12px rgba(0,0,0,.15); }
.wa-label{ display: inline-block; }
@media (max-width: 640px){
  .wa-float{ right: 14px; bottom: 92px; padding: 12px; }
  .wa-label{ display: none; }
}

/* Village grid (alle locaties pagina) */
.village-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px;
}
.village-grid a{
  display: block;
  background: #fff;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--night);
  font-weight: 500;
  transition: border-color .15s, transform .15s, background .15s;
  position: relative;
}
.village-grid a::before{
  content:"📍 ";
  margin-right: 4px;
  opacity: .6;
}
.village-grid a:hover{
  border-color: var(--green);
  transform: translateY(-2px);
  background: var(--cream-2);
  color: var(--green-d);
}

/* Inline icon helper (SVG inside text/buttons) */
.ic{
  display: inline-block;
  vertical-align: -3px;
  margin-right: 4px;
  flex-shrink: 0;
}
.btn .ic{ vertical-align: -4px; margin-right: 6px; }
.usp-icon .ic{ width: 26px; height: 26px; color: var(--green-d); margin: 0; }
.special-icon .ic{ width: 26px; height: 26px; color: var(--lime-2); margin: 0; }
.special-icon{ background: rgba(180,190,40,.20); }
.success-icon .ic{ color: var(--green); width: 64px; height: 64px; vertical-align: 0; }
.success-icon{ font-size: 0; }  /* hide any leftover text */
.village-grid a .ic{ width: 12px; height: 12px; vertical-align: -1px; opacity: .5; }
.village-grid a::before{ content: ""; }  /* drop emoji-pin */

/* Map section */
.section-map{
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}
.map-frame{
  background: #fff;
  border-radius: var(--r-xl);
  padding: 16px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid var(--line);
}
.map-svg{
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1000/720;
  pointer-events: auto;
}
@media (max-width: 640px){
  .map-frame{ padding: 6px; border-radius: var(--r-lg); }
}

/* Home map: tighter spacing + smaller below */
.map-frame--home{
  margin-bottom: 56px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 640px){
  .map-frame--home{ margin-bottom: 40px; }
}

/* === Aankomende vaarten widget ============================ */
.section-upcoming{
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  padding: 80px 0 64px;
}

.flights-loading,
.flights-error,
.flights-empty{
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 36px 24px;
  background: #fff;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 15px;
  text-align: center;
}
.flights-error a, .flights-empty a{ color: var(--green-d); font-weight: 600; }

.flight-spinner{
  width: 18px; height: 18px;
  border: 2px solid rgba(63,171,1,.25);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: flight-spin .8s linear infinite;
}
@keyframes flight-spin{ to{ transform: rotate(360deg); } }

.flights-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}

.flight-card{
  display: grid;
  grid-template-columns: 80px 1fr 28px;
  align-items: stretch;
  gap: 16px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  text-decoration: none;
  color: var(--ink);
  transition: border-color .2s, transform .15s, box-shadow .2s;
}
.flight-card:hover{
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.flight-date{
  display: flex; flex-direction: column; align-items: center;
  justify-content: center;
  background: var(--cream-2);
  border-radius: 12px;
  padding: 10px 0;
  text-transform: uppercase;
}
.flight-day-name{
  font-size: 11px;
  font-weight: 600;
  color: var(--green-d);
  letter-spacing: .12em;
}
.flight-day{
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  color: var(--night);
  margin-top: 2px;
}
.flight-month{
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: .12em;
  margin-top: 2px;
}

.flight-body{
  display: flex; flex-direction: column;
  justify-content: center;
  gap: 6px;
  min-width: 0;
}
.flight-loc{
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--night);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.flight-meta{
  display: flex; gap: 8px; align-items: center;
  font-size: 12px;
  color: var(--ink-soft);
}
.flight-time{ font-weight: 600; }
.flight-tag{
  background: var(--cream-2);
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  color: var(--green-d);
  font-weight: 600;
}
.flight-foot{
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 4px;
}
.flight-price{
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--green-d);
}
.flight-av{
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 999px;
  letter-spacing: .02em;
}
.av-good{ background: rgba(63,171,1,.12); color: var(--green-d); }
.av-med { background: rgba(244,168,43,.16); color: #b06f0f; }
.av-low { background: rgba(232,83,58,.14); color: #b13b22; }
.av-unknown{ background: var(--cream-2); color: var(--ink-soft); }

.flight-cta{
  display: flex; align-items: center; justify-content: center;
  color: var(--green-d);
  opacity: .55;
  transition: opacity .15s, transform .15s;
}
.flight-card:hover .flight-cta{ opacity: 1; transform: translateX(2px); }

@media (max-width: 640px){
  .flights-grid{ grid-template-columns: 1fr; }
  .flight-card{ padding: 14px; gap: 12px; grid-template-columns: 70px 1fr 20px; }
  .flight-day{ font-size: 26px; }
}

/* Prefilled event banner on boeken page */
.prefilled-event{
  display: flex; align-items: center; gap: 14px;
  background: #fff;
  border: 1px solid var(--green);
  border-left: 4px solid var(--green);
  border-radius: var(--r-md);
  padding: 14px 18px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.prefilled-icon{
  flex: 0 0 auto;
}
.prefilled-body{
  display: flex; flex-direction: column; gap: 2px;
}
.prefilled-body strong{
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--green-d);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.prefilled-body span{
  font-size: 16px;
  color: var(--ink);
}

/* Force hidden elements to be hidden, even with display:flex on the rule */
.flights-loading[hidden],
.flights-error[hidden],
.flights-empty[hidden],
.flights-grid[hidden],
[hidden]{ display: none !important; }

/* Locked option/field/step (when flight is pre-selected from calendar) */
.option-card.option-locked{
  opacity: .35;
  cursor: not-allowed;
  pointer-events: none;
}
.option-card.option-locked:has(input:checked){
  opacity: 1;
  cursor: default;
  border-color: var(--green);
  background: var(--cream-2);
}
.option-card.option-locked:has(input:checked)::after{
  content: "Vaart geselecteerd";
  position: absolute;
  top: 8px; right: 12px;
  font-size: 10px;
  font-weight: 700;
  color: var(--green-d);
  background: #fff;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid var(--green);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.option-card{ position: relative; }

.field-locked{
  background: #f4f7f0 !important;
  color: var(--ink-soft) !important;
  cursor: not-allowed;
}

.stepper .step.step-locked .step-dot{
  background: var(--cream-2);
  border-color: var(--cream-2);
  color: var(--ink-soft);
  position: relative;
}
.stepper .step.step-locked .step-dot::after{
  content: "✓";
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  font-size: 16px;
  color: var(--green-d);
  background: #fff;
  border: 2px solid var(--green);
  border-radius: 50%;
}
.stepper .step.step-locked .step-label{
  color: var(--green-d);
  font-weight: 600;
}

/* Featured special-card (huwelijksaanzoek) — bovenaan met grote foto */
.special-featured{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-xl);
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  margin-bottom: 24px;
  transition: background .2s, transform .15s;
}
.special-featured:hover{
  background: rgba(255,255,255,.10);
  transform: translateY(-3px);
}
.special-featured-photo{
  aspect-ratio: 4/5;
  overflow: hidden;
}
.special-featured-photo img{
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.special-featured:hover .special-featured-photo img{ transform: scale(1.04); }
.special-featured-text{
  padding: 36px;
  display: flex; flex-direction: column;
  justify-content: center;
}
.special-featured-text .special-icon{
  margin-bottom: 18px;
  width: 64px; height: 64px;
}
.special-featured-text h3{
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  margin: 0 0 14px;
  letter-spacing: -.01em;
  color: #fff;
}
.special-featured-text p{
  color: rgba(255,255,255,.85);
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 20px;
}
.special-featured-text .link-arrow{
  color: var(--lime-2);
  font-size: 15px;
  font-weight: 700;
}

@media (max-width: 880px){
  .special-featured{ grid-template-columns: 1fr; }
  .special-featured-photo{ aspect-ratio: 4/3; }
  .special-featured-text{ padding: 28px; }
}
