:root {
  --ink: #1a1a18;
  --text: #3d3d3a;
  --muted: #74736d;
  --line: #e2e0da;
  --bg: #ffffff;
  --alt: #f5f4f0;
  --accent: #2f4a3f;
  --accent-dark: #22372e;
  --accent-soft: #e3ebe6;
  --sans: 'Hanken Grotesk', system-ui, sans-serif;
  --serif: 'Newsreader', Georgia, serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; }
body { margin: 0; font: 400 16px/1.6 var(--sans); color: var(--text); background: var(--bg); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { color: inherit; }
h1, h2, h3 { color: var(--ink); margin: 0 0 .5em; font-weight: 500; }
h1, h2 { font-family: var(--serif); letter-spacing: -.01em; line-height: 1.1; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.05rem; font-weight: 600; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.alt { background: var(--alt); }
.head-row { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 40px; }
.head-row h2 { margin: 0; }
.head-row p { margin: 0; color: var(--muted); max-width: 480px; }

/* Buttons */
.btn { display: inline-block; background: var(--accent); color: #fff; border: 0; border-radius: 6px; padding: 14px 24px; font: 500 .95rem var(--sans); text-decoration: none; cursor: pointer; transition: background .2s; }
.btn:hover:not(:disabled) { background: var(--accent-dark); }
.btn:disabled { background: #9aa8a1; cursor: not-allowed; }
.btn-sm { padding: 9px 16px; font-size: .9rem; }
.btn-outline { background: transparent; color: var(--accent); border: 1px solid var(--accent); }
.btn-outline:hover:not(:disabled) { background: var(--accent-soft); }
.btn-block { width: 100%; }

/* Nav */
.nav { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.97); border-bottom: 1px solid var(--line); }
.nav-inner { display: flex; align-items: center; gap: 36px; height: 68px; }
.brand { font-family: var(--serif); font-size: 1.45rem; font-weight: 500; color: var(--ink); text-decoration: none; }
.nav nav { display: flex; gap: 28px; margin-left: auto; }
.nav nav a { text-decoration: none; font-size: .95rem; color: var(--text); }
.nav nav a:hover { color: var(--accent); }
.menu { display: none; background: none; border: 0; width: 32px; height: 24px; position: relative; cursor: pointer; margin-left: auto; }
.menu i { position: absolute; left: 4px; right: 4px; height: 2px; background: var(--ink); }
.menu i:first-child { top: 7px; } .menu i:last-child { top: 15px; }

/* Photos (drop real images into /images — see app.js) */
.photo { position: relative; background: #d9d6ce center / cover no-repeat; border-radius: 8px; overflow: hidden; }
.photo:not(.has-img)::after { content: attr(data-label); position: absolute; left: 14px; bottom: 12px; font-size: .8rem; color: #6d6a62; }

/* Hero */
.hero { position: relative; min-height: min(720px, 88vh); display: flex; align-items: flex-end; color: #fff; }
.hero-photo { position: absolute; inset: 0; border-radius: 0; background-color: #58605a; }
.hero-photo:not(.has-img)::after { color: rgba(255,255,255,.6); left: auto; right: 24px; top: 20px; bottom: auto; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.55), rgba(0,0,0,.15) 55%, rgba(0,0,0,0) 75%), linear-gradient(0deg, rgba(0,0,0,.45), rgba(0,0,0,0) 55%); }
.hero-inner { position: relative; padding-bottom: 64px; width: 100%; }
.hero h1 { color: #fff; font-size: clamp(2.4rem, 5vw, 3.6rem); max-width: 560px; text-shadow: 0 1px 12px rgba(0,0,0,.25); margin-bottom: .3em; }
.lead { font-size: 1.15rem; max-width: 560px; margin: 0 0 28px; color: rgba(255,255,255,.92); }
.quick { display: flex; gap: 10px; background: #fff; padding: 10px; border-radius: 10px; max-width: 640px; align-items: flex-end; }
.quick label { flex: 1; margin: 0; padding: 4px 8px; color: var(--muted); font-size: .78rem; }
.quick input { border: 0; padding: 4px 0; background: transparent; margin-top: 2px; }
.quick .btn { white-space: nowrap; }
.quick-note { margin: 14px 0 0; font-size: .9rem; color: rgba(255,255,255,.85); }

/* Van */
.gallery { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 230px 230px; gap: 12px; margin-bottom: 56px; }
.g1 { grid-row: span 2; }
.specs { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.specs dl { margin: 0; padding: 20px 24px 20px 0; border-bottom: 1px solid var(--line); }
.specs dt { font-size: .85rem; color: var(--muted); margin-bottom: 4px; }
.specs dd { margin: 0; color: var(--ink); }

/* Routes */
.routes { display: grid; grid-template-columns: 300px 1fr; gap: 24px; }
.route-list { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.route-btn { text-align: left; background: none; border: 0; border-bottom: 1px solid var(--line); padding: 16px 12px 16px 16px; cursor: pointer; font: inherit; color: inherit; border-left: 3px solid transparent; }
.route-btn:hover { background: #fff; }
.route-btn.active { background: #fff; border-left-color: var(--accent); }
.route-btn b { display: block; color: var(--ink); font-weight: 600; }
.route-btn small { color: var(--muted); font-size: .88rem; }
.route-main { background: #fff; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
#map { height: 440px; }
.route-detail { padding: 28px 30px 30px; }
.route-detail h3 { font-family: var(--serif); font-size: 1.7rem; font-weight: 500; margin-bottom: .3em; }
.route-detail > p { max-width: 640px; }
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 16px; margin: 20px 0 24px; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats small { display: block; font-size: .82rem; color: var(--muted); }
.stats strong { font-size: 1.05rem; font-weight: 600; color: var(--ink); }
.stops-title { font-weight: 600; color: var(--ink); margin: 0 0 10px; }
.highlights { margin: 0 0 24px; padding: 0; list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0 32px; }
.highlights li { padding: 10px 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
.highlights b { display: block; color: var(--ink); font-weight: 600; }
.highlights span { color: var(--muted); font-size: .9rem; }
.leaflet-container { font-family: var(--sans); }
.tint { filter: saturate(.55) brightness(1.02); }
.pin { width: 14px; height: 14px; border-radius: 50%; background: var(--accent); border: 2px solid #fff; box-shadow: 0 1px 4px rgba(0,0,0,.35); }
.pin.town { width: 10px; height: 10px; background: #fff; border: 2px solid var(--ink); }

/* Forms / panels */
.panel { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 28px; }
label { display: block; font-size: .88rem; font-weight: 500; color: var(--ink); margin-bottom: 16px; }
input, select, textarea { display: block; width: 100%; margin-top: 6px; padding: 11px 12px; border: 1px solid #d3d1ca; border-radius: 6px; background: #fff; font: 400 .95rem var(--sans); color: var(--ink); }
input:focus, select:focus, textarea:focus { outline: 2px solid var(--accent-soft); border-color: var(--accent); }
label.check { display: flex; gap: 10px; align-items: center; font-weight: 400; }
label.check input { width: 18px; height: 18px; margin: 0; accent-color: var(--accent); flex: none; }

/* Planner */
.planner { display: grid; grid-template-columns: 320px 1fr; gap: 24px; align-items: start; }
.planner-out h3 { font-family: var(--serif); font-size: 1.7rem; font-weight: 500; }
.legs { margin: 0 0 20px; padding: 0; list-style: none; }
.legs li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
.note { font-size: .88rem; color: var(--muted); }
.avail-ok { color: #2d6a45; font-weight: 500; }
.avail-no { color: #a2412a; font-weight: 500; }
#pmap { height: 320px; border-radius: 6px; margin-bottom: 24px; }

/* Booking */
.notice { padding: 14px 18px; margin-bottom: 20px; background: #fff7e6; border: 1px solid #f0dcb0; border-radius: 6px; }
.booking { display: grid; grid-template-columns: 1.3fr 1fr; gap: 24px; align-items: start; }
.cal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.cal-head span { font-weight: 600; color: var(--ink); }
.cal-head button { width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 6px; background: #fff; cursor: pointer; font-size: 1rem; }
.cal-head button:disabled { opacity: .35; cursor: default; }
.cal-months { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.cal-month h4 { margin: 0 0 10px; text-align: center; font-weight: 600; color: var(--ink); }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.dow { font-size: .75rem; text-align: center; color: var(--muted); padding-bottom: 6px; }
.day { aspect-ratio: 1; border: 0; border-radius: 6px; background: none; font: 500 .9rem var(--sans); color: var(--ink); cursor: pointer; position: relative; }
.day:hover:not(:disabled) { background: var(--accent-soft); }
.day.empty { cursor: default; }
.day:disabled { color: #c3c1ba; cursor: not-allowed; }
.day.booked { background: #eeede9; color: #b3b1aa; text-decoration: line-through; }
.day.in-range { background: var(--accent-soft); border-radius: 0; }
.day.sel { background: var(--accent); color: #fff; }
.day.today { box-shadow: inset 0 0 0 1px var(--ink); }
.cal-legend { display: flex; gap: 20px; margin-top: 18px; font-size: .85rem; color: var(--muted); flex-wrap: wrap; }
.cal-legend i { display: inline-block; width: 12px; height: 12px; border-radius: 3px; margin-right: 6px; vertical-align: -1px; }
.lg-free { border: 1px solid #d3d1ca; }
.lg-booked { background: #eeede9; }
.lg-sel { background: var(--accent); }
.dates { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); border-radius: 6px; margin-bottom: 20px; }
.dates div { padding: 12px 14px; }
.dates div + div { border-left: 1px solid var(--line); }
.dates small { display: block; font-size: .8rem; color: var(--muted); }
.dates strong { font-weight: 600; color: var(--ink); }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.extras { border: 0; padding: 0; margin: 0 0 16px; }
.extras legend { font-size: .88rem; font-weight: 500; color: var(--ink); margin-bottom: 8px; }
.extras label.check { margin-bottom: 8px; }
.extras label.check span:first-of-type { flex: 1; }
.extras .price { color: var(--muted); font-size: .9rem; }
.summary { border-top: 1px solid var(--line); padding: 14px 0 6px; margin-bottom: 14px; font-size: .95rem; }
.summary:empty { display: none; }
.summary div { display: flex; justify-content: space-between; padding: 3px 0; }
.summary .total { border-top: 1px solid var(--line); margin-top: 10px; padding-top: 12px; font-weight: 600; font-size: 1.1rem; color: var(--ink); }
.secure { font-size: .82rem; color: var(--muted); text-align: center; margin: 12px 0 0; }
.err { color: #a2412a; font-size: .9rem; margin: 0 0 12px; }

/* Included / FAQ / footer */
.incl { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 32px; }
.incl div { border-top: 2px solid var(--accent); padding-top: 18px; }
.incl p { margin: 0; color: var(--muted); }
.faq { display: grid; grid-template-columns: 1fr 1.6fr; gap: 48px; }
details { border-bottom: 1px solid var(--line); padding: 18px 0; }
details:first-child { border-top: 1px solid var(--line); }
summary { cursor: pointer; font-weight: 600; color: var(--ink); list-style: none; display: flex; justify-content: space-between; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; font-weight: 400; color: var(--muted); }
details[open] summary::after { content: '−'; }
details p { margin: 10px 0 0; color: var(--muted); }
.foot { background: var(--ink); color: #b9b8b2; padding: 56px 0 28px; font-size: .95rem; }
.foot .brand { color: #fff; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.foot h4 { color: #fff; font-weight: 600; margin: 0 0 8px; font-size: .95rem; }
.foot a { text-decoration: none; }
.foot a:hover { color: #fff; }
.copy { margin-top: 40px; padding-top: 20px; border-top: 1px solid #33332f; font-size: .85rem; }

.modal { position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,.5); display: grid; place-items: center; padding: 16px; }
.modal[hidden] { display: none; }
.modal-box { background: #fff; border-radius: 10px; max-width: 460px; padding: 36px; }

/* Responsive */
@media (max-width: 1000px) {
  .routes, .planner, .booking, .faq { grid-template-columns: 1fr; }
  .specs { grid-template-columns: 1fr 1fr; }
  .incl { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .wrap { padding: 0 16px; }
  .section { padding: 64px 0; }
  .nav nav, .nav-inner > .btn { display: none; }
  .menu { display: block; }
  .nav-open .nav-inner { flex-wrap: wrap; height: auto; padding: 18px 16px; }
  .nav-open .nav nav { display: flex; flex-direction: column; width: 100%; gap: 14px; order: 3; }
  .head-row { grid-template-columns: 1fr; gap: 12px; }
  .quick { flex-direction: column; align-items: stretch; }
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 140px 140px; }
  .g1 { grid-column: span 2; grid-row: auto; }
  .g5 { display: none; }
  .cal-months { grid-template-columns: 1fr; }
  .cal-months .cal-month + .cal-month { display: none; }
  .row2, .highlights, .incl, .foot-grid, .specs { grid-template-columns: 1fr; }
  .panel { padding: 20px 16px; }
  #map { height: 320px; }
}

/* Gallery + lightbox */
.gallery .photo { border: 0; padding: 0; cursor: zoom-in; transition: filter .2s; }
.gallery .photo:hover { filter: brightness(.92); }
.hero-photo { background-position: 40% center; }
.all-photos { position: absolute; right: 12px; bottom: 12px; background: #fff; color: var(--ink); font: 500 .85rem var(--sans); padding: 8px 12px; border-radius: 6px; }
.lightbox { position: fixed; inset: 0; z-index: 3000; background: rgba(12,12,11,.94); display: flex; align-items: center; justify-content: center; gap: 12px; padding: 16px; }
.lightbox[hidden] { display: none; }
.lightbox figure { margin: 0; max-width: min(1100px, 100%); text-align: center; }
.lightbox img { max-width: 100%; max-height: 82vh; border-radius: 6px; display: block; margin: 0 auto; }
.lightbox figcaption { color: #cfcdc6; font-size: .9rem; margin-top: 12px; }
.lightbox button { background: rgba(255,255,255,.12); color: #fff; border: 0; width: 44px; height: 44px; border-radius: 50%; font-size: 1.2rem; cursor: pointer; flex: none; }
.lightbox button:hover { background: rgba(255,255,255,.22); }
.lb-close { position: absolute; top: 16px; right: 16px; font-size: 1.6rem !important; }
@media (max-width: 760px) {
  .lb-prev, .lb-next { position: absolute; bottom: 20px; }
  .lb-prev { left: calc(50% - 56px); } .lb-next { right: calc(50% - 56px); }
  .g5 { display: block; grid-column: span 2; }
  .gallery { grid-template-rows: 240px 150px 150px 150px; }
}

/* Route itinerary */
.route-cols { display: grid; grid-template-columns: 1fr 1.3fr; gap: 36px; margin-bottom: 24px; }
.drive, .sights { list-style: none; margin: 0; padding: 0; }
.drive li { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: .93rem; }
.drive li span:last-child { color: var(--muted); white-space: nowrap; }
.sights li { display: flex; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--line); cursor: pointer; font-size: .93rem; }
.sights li:hover b { color: var(--accent); }
.sights i { flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--accent); color: #fff; font: 600 .75rem/22px var(--sans); text-align: center; margin-top: 1px; }
.sights b { display: block; color: var(--ink); font-weight: 600; }
.sights span { color: var(--muted); font-size: .88rem; }
.pin.num { width: 22px; height: 22px; color: #fff; font: 600 .72rem/18px var(--sans); text-align: center; }
@media (max-width: 760px) { .route-cols { grid-template-columns: 1fr; gap: 20px; } }

/* Contact */
.contact-inner { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; }
.contact-inner h2 { margin-bottom: .3em; }
.contact-inner p { margin: 0; color: var(--muted); max-width: 520px; }
.contact-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.contact-actions .btn { overflow-wrap: anywhere; }
.contact-ig { font-size: .92rem; color: var(--accent); }
@media (max-width: 760px) { .contact-inner { grid-template-columns: 1fr; gap: 20px; } }
.ig-link { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
.ig-link:hover span { text-decoration: underline; }
.contact-actions .ig-link { color: var(--ink); font-weight: 500; }
.foot .ig-link { margin-top: 4px; }
.ig-icon { flex: none; display: block; }
.ig-nav { display: inline-flex; align-items: center; }
