
:root{
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-soft: #f8fbff;
  --line: #d8e1ee;
  --text: #132235;
  --muted: #5f6f83;
  --heading: #13314c;
  --accent: #118d8b;
  --accent-2: #1f4f7c;
  --shadow: 0 18px 44px rgba(13, 33, 53, 0.10);
  --shadow-soft: 0 10px 24px rgba(13, 33, 53, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --nav-h: 78px;
  --maxw: 1380px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(17,141,139,0.08), transparent 30%),
    radial-gradient(circle at top right, rgba(95,165,214,0.10), transparent 24%),
    linear-gradient(180deg, #f6f9fd 0%, #eef3f9 100%);
  line-height:1.55;
}

img{max-width:100%; display:block}
a{color:#0d4c8c; text-decoration:none}
a:hover{text-decoration:underline}

body.has-overlay{overflow:hidden}

.site-header{
  position:sticky;
  top:0;
  z-index:1200;
  backdrop-filter: blur(12px);
  background: rgba(247,250,253,0.88);
  border-bottom: 1px solid rgba(19,49,76,0.08);
}
.nav-wrap{
  max-width:var(--maxw);
  margin:0 auto;
  padding:14px 28px;
  display:flex;
  align-items:center;
  gap:20px;
  min-height:var(--nav-h);
}
.brand{
  min-width:0;
}
.brand a{
  display:flex;
  flex-direction:column;
  gap:2px;
  text-decoration:none;
}
.brand-kicker{
  font-size:12px;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:var(--muted);
  font-weight:700;
}
.brand-title{
  font-size:20px;
  line-height:1.1;
  color:var(--heading);
  font-weight:800;
}
.nav-links{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}
.nav-links a{
  padding:10px 12px;
  border-radius:999px;
  color:var(--heading);
  font-weight:600;
  text-decoration:none;
}
.nav-links a:hover{
  background:rgba(17,141,139,0.08);
}
.nav-actions{
  display:flex;
  gap:10px;
  margin-left:8px;
}
.lang-switcher{
  display:flex;
  align-items:center;
  gap:6px;
  padding:4px;
  border:1px solid rgba(19,49,76,0.12);
  border-radius:999px;
  background:#fff;
  box-shadow:var(--shadow-soft);
}
.lang-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:48px;
  padding:8px 12px;
  border-radius:999px;
  color:var(--heading);
  font-weight:800;
  text-decoration:none;
  line-height:1;
}
.lang-link:hover{
  background:rgba(17,141,139,0.08);
  text-decoration:none;
}
.lang-link.active{
  background:var(--heading);
  color:#fff;
}
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:13px 18px;
  border-radius:999px;
  border:1px solid transparent;
  background:var(--heading);
  color:#fff;
  text-decoration:none;
  font-weight:700;
  box-shadow: var(--shadow-soft);
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
  cursor:pointer;
}
.button:hover{
  transform:translateY(-1px);
  box-shadow:0 14px 28px rgba(19,49,76,0.18);
  text-decoration:none;
}
.button.alt{
  background:#fff;
  color:var(--heading);
  border-color:rgba(19,49,76,0.14);
  box-shadow:none;
}
.button.ghost{
  background:transparent;
  color:var(--heading);
  border-color:rgba(19,49,76,0.14);
  box-shadow:none;
}
.button.small{
  padding:10px 14px;
  font-size:14px;
  font-weight:700;
}
.button.icon-only{
  width:44px;height:44px;padding:0;border-radius:50%;
}
.kbd{
  padding:3px 8px;
  border-radius:10px;
  background:#f0f5fb;
  border:1px solid var(--line);
  font-size:12px;
  font-weight:700;
  color:var(--muted);
}

.page{
  max-width:var(--maxw);
  margin:0 auto;
  padding:28px 28px 72px;
}

.section{
  padding:42px 0;
}
.section-header{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:24px;
}
.section-title{
  font-size:clamp(30px, 4.1vw, 48px);
  line-height:1.05;
  font-weight:800;
  color:var(--heading);
  margin:0;
}
.section-intro{
  max-width:820px;
  color:var(--muted);
  font-size:18px;
  margin:0;
}
.section-kicker{
  margin:0 0 8px 0;
  color:var(--accent);
  font-size:13px;
  letter-spacing:0.12em;
  text-transform:uppercase;
  font-weight:800;
}

.hero{
  padding-top:36px;
  display:grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .95fr);
  gap:28px;
  align-items:stretch;
}
.hero-panel{
  background: linear-gradient(180deg, rgba(255,255,255,0.86), rgba(255,255,255,0.96));
  border:1px solid rgba(19,49,76,0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding:34px;
  position:relative;
  overflow:hidden;
}
.hero-panel::before{
  content:"";
  position:absolute;
  inset:auto -80px -100px auto;
  width:280px;
  height:280px;
  background: radial-gradient(circle, rgba(17,141,139,0.16), transparent 70%);
  pointer-events:none;
}
.hero-kicker{
  display:inline-flex;
  gap:10px;
  align-items:center;
  font-size:13px;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:800;
  color:var(--accent);
  margin-bottom:18px;
}
.hero-title{
  margin:0;
  font-size:clamp(40px, 6vw, 74px);
  line-height:.96;
  color:var(--heading);
  letter-spacing:-0.04em;
  font-weight:900;
}
.hero-subtitle{
  margin:16px 0 0 0;
  font-size:clamp(18px, 2.1vw, 24px);
  color:#2c4764;
  max-width:720px;
}
.hero-summary{
  margin:18px 0 0 0;
  color:var(--muted);
  font-size:18px;
  max-width:760px;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:26px;
}
.hero-notes{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
  margin-top:30px;
}
.stat-card{
  background:#f9fbff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px 16px 14px;
}
.stat-value{
  font-size:28px;
  line-height:1;
  font-weight:800;
  color:var(--heading);
  margin:0 0 8px 0;
}
.stat-label{
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--muted);
  margin:0 0 6px 0;
  font-weight:700;
}
.stat-copy{
  margin:0;
  font-size:14px;
  color:var(--muted);
}
.hero-aside{
  display:flex;
  flex-direction:column;
  gap:18px;
}
.hero-collage{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.86), rgba(255,255,255,0.96));
  border:1px solid rgba(19,49,76,0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding:14px;
  min-height:560px;
}
.hero-mosaic-col{
  display:grid;
  gap:14px;
}
.hero-mosaic-col.left{
  grid-template-rows: 1.1fr .9fr;
}
.hero-mosaic-col.right{
  grid-template-rows: .7fr 1fr .8fr;
}
.hero-tile{
  position:relative;
  overflow:hidden;
  border-radius:20px;
  min-height:140px;
  background:#d9e3f1;
}
.hero-tile img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.hero-tile::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(6,21,35,0) 44%, rgba(6,21,35,.72) 100%);
}
.hero-tile-label{
  position:absolute;
  left:14px;
  right:14px;
  bottom:12px;
  z-index:2;
  color:#fff;
  font-weight:800;
  text-shadow:0 1px 10px rgba(0,0,0,0.45);
}
.hero-tile-label small{
  display:block;
  opacity:.88;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.hero-tile-label span{
  display:block;
  font-size:18px;
  line-height:1.1;
}
.hero-note-card{
  background:rgba(255,255,255,0.9);
  border:1px solid rgba(19,49,76,0.08);
  border-radius:20px;
  box-shadow:var(--shadow-soft);
  padding:18px 20px;
}
.hero-note-card h3{
  margin:0 0 8px 0;
  font-size:18px;
  color:var(--heading);
}
.hero-note-card p{
  margin:0;
  color:var(--muted);
  font-size:15px;
}

.card-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}
.info-card{
  background: var(--surface);
  border:1px solid rgba(19,49,76,0.08);
  border-radius:var(--radius-lg);
  padding:22px;
  box-shadow: var(--shadow-soft);
}
.info-card h3{
  margin:0 0 8px 0;
  font-size:22px;
  color:var(--heading);
}
.info-card p,
.info-card li{
  margin:0;
  color:var(--muted);
  font-size:15px;
}
.info-card ul{
  padding-left:18px;
  margin:8px 0 0 0;
}
.info-card li + li{
  margin-top:8px;
}
.info-card .eyebrow{
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--accent);
  font-weight:800;
  margin:0 0 10px 0;
}

.figure-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:18px;
  align-items:start;
  margin-top:18px;
}
.figure-card{
  background:#fff;
  border:1px solid rgba(19,49,76,0.08);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-soft);
  overflow:hidden;
}
.figure-card img{
  width:100%;
  height:auto;
}
.figure-caption{
  padding:14px 18px 18px;
}
.figure-caption h4{
  margin:0 0 6px 0;
  color:var(--heading);
  font-size:18px;
}
.figure-caption p{
  margin:0;
  color:var(--muted);
  font-size:15px;
}

.at-a-glance{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  overflow:hidden;
  border-radius:18px;
}
.table-wrap{
  overflow:auto;
  border-radius:18px;
  border:1px solid var(--line);
}
.at-a-glance th,
.at-a-glance td{
  padding:16px 18px;
  text-align:left;
  vertical-align:top;
  font-size:15px;
}
.at-a-glance th{
  background:#15314d;
  color:#fff;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.08em;
  position:sticky;
  top:0;
}
.at-a-glance tr:nth-child(even) td{
  background:#f8fbff;
}
.at-a-glance td{
  border-top:1px solid #e6edf6;
}
.route-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 11px;
  border-radius:999px;
  background:#eff5fb;
  border:1px solid #d9e4f2;
  color:var(--heading);
  font-weight:700;
  font-size:13px;
}
.dot{
  width:10px;
  height:10px;
  border-radius:50%;
  flex:0 0 auto;
}

.planner-layout{
  display:grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap:20px;
  align-items:start;
}
.controls-panel{
  position:sticky;
  top:calc(var(--nav-h) + 22px);
  background:#ffffffd9;
  backdrop-filter: blur(10px);
  border:1px solid rgba(19,49,76,0.08);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-soft);
  padding:18px;
  max-height:calc(100vh - var(--nav-h) - 48px);
  overflow:auto;
}
.controls-panel h3{
  margin:0 0 6px 0;
  color:var(--heading);
  font-size:20px;
}
.controls-panel p{
  margin:0 0 16px 0;
  color:var(--muted);
  font-size:14px;
}
.control-group{
  margin-bottom:16px;
}
.control-label{
  display:block;
  margin-bottom:8px;
  color:var(--heading);
  font-size:13px;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-weight:800;
}
.search-input,
.select-input{
  width:100%;
  padding:13px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--text);
  font:inherit;
}
.search-input:focus,
.select-input:focus{
  outline:none;
  border-color:#7fb6d3;
  box-shadow:0 0 0 4px rgba(95,165,214,.15);
}
.filter-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:10px;
}
.filter-chip{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  cursor:pointer;
  user-select:none;
  font-weight:700;
  color:var(--heading);
  font-size:14px;
}
.filter-chip input{
  display:none;
}
.filter-chip.active{
  background:#f5fbff;
  border-color:#9fd4e4;
  box-shadow:inset 0 0 0 1px rgba(17,141,139,.12);
}
.filter-chip .mini-dot{
  width:12px;height:12px;border-radius:50%;
}
.map-panel{
  background:#fff;
  border:1px solid rgba(19,49,76,0.08);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-soft);
  padding:14px;
}
.map-head{
  display:flex;
  flex-wrap:wrap;
  gap:10px 18px;
  justify-content:space-between;
  align-items:flex-start;
  padding:4px 6px 14px;
}
.map-head h3{
  margin:0;
  font-size:22px;
  color:var(--heading);
}
.map-head p{
  margin:4px 0 0 0;
  color:var(--muted);
  max-width:720px;
}
.map-toolbar{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.map-shell{
  position:relative;
  border-radius:22px;
  overflow:hidden;
  border:1px solid var(--line);
  background:#dfeaf4;
}
.leaflet-map{
  height:640px;
  width:100%;
  background:#dfeaf4;
}
.map-legend{
  position:absolute;
  z-index:500;
  right:14px;
  bottom:14px;
  width:290px;
  max-width:calc(100% - 28px);
  background:rgba(255,255,255,.94);
  border:1px solid rgba(19,49,76,0.10);
  border-radius:18px;
  box-shadow:var(--shadow-soft);
  padding:14px 14px 12px;
}
.map-legend h4{
  margin:0 0 10px 0;
  font-size:15px;
  color:var(--heading);
}
.legend-row{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:13px;
  color:var(--muted);
}
.legend-row + .legend-row{margin-top:8px}
.legend-marker{
  width:12px;height:12px;border-radius:50%;flex:0 0 auto;
}
.route-line{
  width:28px;height:0;border-top:4px solid #118d8b; border-radius:999px;
}
.route-line.optional{
  border-top-color:#9a6b3e;
  border-top-style:dashed;
}

.points-list{
  display:grid;
  gap:10px;
}
.point-item{
  border:1px solid var(--line);
  background:#fff;
  border-radius:16px;
  padding:12px 12px 12px 14px;
  cursor:pointer;
  transition:transform .14s ease, border-color .14s ease, box-shadow .14s ease;
}
.point-item:hover{
  transform:translateY(-1px);
  border-color:#9fd4e4;
  box-shadow:0 8px 16px rgba(19,49,76,.08);
}
.point-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
}
.point-name{
  margin:0;
  font-size:15px;
  line-height:1.3;
  color:var(--heading);
  font-weight:800;
}
.point-meta{
  margin:8px 0 0 0;
  color:var(--muted);
  font-size:13px;
  line-height:1.45;
}
.badge-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:6px 10px;
  border-radius:999px;
  background:#f3f8fd;
  border:1px solid #dce8f5;
  color:var(--heading);
  font-weight:700;
  font-size:12px;
  line-height:1;
}
.badge .dot{width:8px;height:8px}
.result-count{
  margin:8px 0 12px 0;
  font-size:13px;
  color:var(--muted);
}

.timeline-wrap{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:stretch;
}
.timeline-chip{
  flex:1 1 160px;
  min-width:160px;
  padding:18px 18px 16px;
  border-radius:22px;
  color:#fff;
  cursor:pointer;
  border:none;
  text-align:left;
  box-shadow: var(--shadow-soft);
  transition: transform .16s ease, box-shadow .16s ease;
}
.timeline-chip:hover{transform:translateY(-2px)}
.timeline-chip small{
  display:block;
  text-transform:uppercase;
  letter-spacing:.09em;
  font-weight:800;
  opacity:.9;
  margin-bottom:6px;
}
.timeline-chip strong{
  display:block;
  font-size:22px;
  line-height:1.05;
}
.timeline-chip span{
  display:block;
  font-size:14px;
  margin-top:6px;
  opacity:.92;
}
.timeline-note{
  margin-top:14px;
  font-size:14px;
  color:var(--muted);
}

.base-block{
  border:1px solid rgba(19,49,76,0.08);
  background:rgba(255,255,255,.96);
  border-radius:26px;
  box-shadow: var(--shadow-soft);
  overflow:hidden;
}
.base-block + .base-block{margin-top:22px}
.base-block summary{
  list-style:none;
  cursor:pointer;
  padding:22px 24px;
  display:flex;
  align-items:center;
  gap:18px;
  background:linear-gradient(180deg, rgba(248,251,255,1), rgba(255,255,255,0.92));
}
.base-block summary::-webkit-details-marker{display:none}
.base-summary-main{
  flex:1 1 auto;
  min-width:0;
}
.base-summary-title{
  margin:0;
  font-size:30px;
  line-height:1.05;
  color:var(--heading);
  font-weight:850;
}
.base-summary-sub{
  margin:8px 0 0 0;
  color:var(--muted);
  font-size:16px;
}
.base-summary-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}
.base-order{
  width:58px;height:58px;border-radius:18px;
  display:flex;align-items:center;justify-content:center;
  color:#fff;font-size:24px;font-weight:900;flex:0 0 auto;
  box-shadow: inset 0 -10px 24px rgba(0,0,0,.12), 0 10px 18px rgba(19,49,76,.12);
}
.base-toggle{
  flex:0 0 auto;
  color:var(--muted);
  font-weight:700;
}
.base-block[open] .base-toggle::after{content:"Collapse"}
.base-block:not([open]) .base-toggle::after{content:"Expand"}

.base-content{
  padding:0 24px 26px;
}
.base-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:16px;
  margin-top:6px;
}
.base-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px 18px 16px;
}
.base-card h4{
  margin:0 0 10px 0;
  font-size:18px;
  color:var(--heading);
}
.base-card p,
.base-card li{
  margin:0;
  color:var(--muted);
  font-size:15px;
}
.base-card ul{padding-left:18px; margin:0}
.base-card li + li{margin-top:8px}
.inline-link-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:12px;
}
.poi-group{
  margin-top:18px;
}
.poi-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:12px;
}
.poi-card{
  background:#f8fbff;
  border:1px solid #deebf8;
  border-radius:16px;
  padding:14px;
  display:flex;
  gap:12px;
  align-items:flex-start;
}
.poi-card h5{
  margin:0 0 6px 0;
  font-size:15px;
  color:var(--heading);
}
.poi-card p{
  margin:0;
  color:var(--muted);
  font-size:14px;
}
.poi-card .type-badge{
  margin-top:8px;
}
.poi-icon{
  width:34px;height:34px;border-radius:12px;flex:0 0 auto;
  display:flex;align-items:center;justify-content:center;
  font-size:16px;font-weight:800;color:#fff;
}
.days-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:14px;
  margin-top:18px;
}
.day-card{
  border:1px solid var(--line);
  background:#fff;
  border-radius:18px;
  padding:16px;
}
.day-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.day-label{
  display:flex;
  align-items:center;
  gap:10px;
}
.day-number{
  width:34px;height:34px;border-radius:12px;background:#eff5fb;
  color:var(--heading); font-weight:900; display:flex; align-items:center; justify-content:center;
}
.day-date{
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--muted);
  font-weight:800;
}
.day-title{
  margin:12px 0 8px 0;
  font-size:17px;
  line-height:1.35;
  color:var(--heading);
}
.day-notes{
  margin:0;
  font-size:14px;
  color:var(--muted);
}
.day-actions{
  margin-top:14px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.split-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:20px;
}
.callout{
  background:linear-gradient(135deg, rgba(17,141,139,.10), rgba(95,165,214,.12));
  border:1px solid rgba(17,141,139,.18);
  border-radius:24px;
  padding:22px 22px 20px;
}
.callout h3{
  margin:0 0 10px 0;
  font-size:24px;
  color:var(--heading);
}
.callout p{
  margin:0;
  color:#28415b;
  font-size:18px;
}
.link-list{
  display:grid;
  gap:10px;
}
.link-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px 16px;
  border-radius:16px;
  border:1px solid var(--line);
  background:#fff;
}
.link-item strong{
  color:var(--heading);
  font-size:15px;
}
.link-item span{
  color:var(--muted);
  font-size:13px;
}

.transport-table{
  width:100%;
  border-collapse:collapse;
}
.transport-table th,
.transport-table td{
  text-align:left;
  padding:14px 14px;
  vertical-align:top;
  border-top:1px solid #e6edf6;
  font-size:14px;
}
.transport-table th{
  font-size:12px;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.08em;
}
.transport-table td strong{
  color:var(--heading);
}

.dual-list{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:16px;
}
.list-card{
  border:1px solid var(--line);
  background:#fff;
  border-radius:18px;
  padding:18px;
}
.list-card h3{
  margin:0 0 10px 0;
  color:var(--heading);
  font-size:20px;
}
.list-card ul{
  margin:0; padding-left:18px;
}
.list-card li{
  color:var(--muted);
  font-size:15px;
}
.list-card li + li{margin-top:8px}

.vegan-table{
  width:100%;
  border-collapse:collapse;
}
.vegan-table th,
.vegan-table td{
  padding:14px 16px;
  border-top:1px solid #e6edf6;
  vertical-align:top;
}
.vegan-table th{
  background:#15314d;
  color:#fff;
  text-align:left;
  font-size:13px;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.vegan-table td{
  font-size:14px;
  color:var(--muted);
}

.swap-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:16px;
}
.swap-card{
  border:1px solid var(--line);
  background:#fff;
  border-radius:20px;
  padding:18px;
}
.swap-card h3{
  margin:0 0 10px 0;
  font-size:20px;
  color:var(--heading);
}
.swap-card p{
  margin:0;
  color:var(--muted);
  font-size:15px;
}

.download-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:16px;
}
.download-card{
  border:1px solid var(--line);
  background:#fff;
  border-radius:20px;
  padding:20px;
  display:flex;
  flex-direction:column;
  gap:12px;
  box-shadow:var(--shadow-soft);
}
.download-card h3{
  margin:0;
  font-size:19px;
  color:var(--heading);
}
.download-card p{
  margin:0;
  color:var(--muted);
  font-size:14px;
}

.site-footer{
  padding:34px 0 16px;
  color:var(--muted);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
}
.footer-card{
  border:1px solid rgba(19,49,76,0.08);
  border-radius:22px;
  background:rgba(255,255,255,.96);
  box-shadow:var(--shadow-soft);
  padding:22px;
}
.footer-card h3{
  margin:0 0 12px 0;
  font-size:20px;
  color:var(--heading);
}
.footer-card p,
.footer-card li{
  margin:0;
  color:var(--muted);
  font-size:14px;
}
.footer-card ul{
  margin:0;
  padding-left:18px;
}
.footer-card li + li{
  margin-top:8px;
}
.credit-list{
  display:grid;
  gap:10px;
}
.credit-item{
  display:flex;
  gap:10px;
  align-items:flex-start;
}
.credit-thumb{
  width:64px;
  height:52px;
  border-radius:12px;
  overflow:hidden;
  border:1px solid var(--line);
  flex:0 0 auto;
}
.credit-thumb img{width:100%;height:100%;object-fit:cover}
.credit-text strong{
  display:block;
  color:var(--heading);
}
.credit-text span{
  display:block;
  color:var(--muted);
  font-size:13px;
}
.footer-note{
  margin-top:18px;
  text-align:center;
  font-size:13px;
  color:var(--muted);
}

.leaflet-popup-content-wrapper{
  border-radius:18px;
  box-shadow:0 18px 34px rgba(19,49,76,.18);
}
.leaflet-popup-content{
  margin:0;
  min-width:260px;
}
.popup-card{
  padding:16px;
}
.popup-type{
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--muted);
  font-weight:800;
  margin-bottom:8px;
}
.popup-card h4{
  margin:0 0 8px 0;
  font-size:18px;
  color:var(--heading);
}
.popup-card p{
  margin:0;
  font-size:14px;
  color:var(--muted);
}
.popup-card .badge-row{
  margin-top:12px;
}

.base-pin{
  width:38px;
  height:38px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:17px;
  font-weight:900;
  border:3px solid rgba(255,255,255,.92);
  box-shadow:0 10px 18px rgba(19,49,76,.18);
}
.map-badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:5px 9px;
  border-radius:999px;
  background:#f3f8fd;
  border:1px solid #dce8f5;
  color:var(--heading);
  font-size:12px;
  font-weight:700;
}
.hidden{display:none !important}

.map-full{
  height: calc(100vh - var(--nav-h) - 56px);
}
.map-page .planner-layout{
  grid-template-columns: 340px minmax(0, 1fr);
}
.map-page .page{
  padding-top:20px;
}

.inline-meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:12px;
}
.note-strip{
  margin-top:16px;
  padding:12px 14px;
  border-radius:16px;
  background:#f7fbff;
  border:1px solid #e0ebf6;
  font-size:14px;
  color:var(--muted);
}

@media (max-width: 1200px){
  .hero{
    grid-template-columns:1fr;
  }
  .planner-layout,
  .split-grid,
  .figure-grid,
  .footer-grid,
  .map-page .planner-layout{
    grid-template-columns:1fr;
  }
  .controls-panel{
    position:relative;
    top:auto;
    max-height:none;
  }
}
@media (max-width: 980px){
  .lang-switcher{
    width:max-content;
  }
  .card-grid,
  .base-grid,
  .days-grid,
  .dual-list,
  .swap-grid,
  .download-grid,
  .poi-grid{
    grid-template-columns:1fr;
  }
  .hero-notes{
    grid-template-columns:1fr;
  }
  .nav-wrap{
    flex-wrap:wrap;
    align-items:flex-start;
  }
  .nav-links{
    width:100%;
    margin-left:0;
  }
  .nav-actions{
    margin-left:0;
  }
}
@media (max-width: 720px){
  .page{
    padding:18px 16px 60px;
  }
  .hero-panel{
    padding:24px 20px;
  }
  .hero-collage{
    min-height:unset;
    grid-template-columns:1fr;
  }
  .hero-mosaic-col.left,
  .hero-mosaic-col.right{
    grid-template-rows:repeat(3, 180px);
  }
  .section{
    padding:34px 0;
  }
  .section-title{
    font-size:34px;
  }
  .base-block summary{
    padding:18px 18px;
    gap:14px;
  }
  .base-order{
    width:48px;height:48px;font-size:20px;border-radius:16px;
  }
  .base-summary-title{
    font-size:24px;
  }
  .base-content{
    padding:0 18px 20px;
  }
  .leaflet-map{
    height:480px;
  }
  .map-legend{
    left:14px;
    right:14px;
    width:auto;
  }
}
@media print{
  .site-header,
  .hero-actions,
  .map-panel,
  .download-grid,
  .nav-actions,
  .map-toolbar,
  .controls-panel,
  .footer-card:last-child{
    display:none !important;
  }
  body{
    background:#fff;
  }
  .page{
    max-width:none;
    padding:0;
  }
  .section{
    padding:18px 0;
  }
  .hero,
  .card-grid,
  .base-grid,
  .days-grid,
  .split-grid,
  .figure-grid{
    grid-template-columns:1fr !important;
  }
  .base-block{
    box-shadow:none;
    break-inside:avoid;
  }
}


.svg-map-host{
  position:relative;
  overflow:hidden;
}
.svg-map{
  width:100%;
  height:100%;
  display:block;
  background:linear-gradient(180deg, #edf6ff, #dceafb);
}
.svg-water{
  pointer-events:none;
}
.island-outline{
  fill:#f5eedc;
  stroke:#17324D;
  stroke-width:10;
  opacity:0.98;
}
.svg-route{
  fill:none;
  stroke:#118D8B;
  stroke-width:14;
  stroke-linecap:round;
  stroke-linejoin:round;
  opacity:0.95;
}
.svg-route.optional{
  stroke:#9A6B3E;
  stroke-width:12;
  stroke-dasharray:22 18;
}
.svg-point{
  cursor:pointer;
  transition:opacity .14s ease;
}
.svg-point.hidden{
  display:none;
}
.svg-point .point-ring{
  transition:transform .18s ease, stroke .18s ease, stroke-width .18s ease;
}
.svg-point .point-core{
  transition:transform .18s ease, filter .18s ease;
}
.svg-point:hover .point-core,
.svg-point:focus .point-core{
  transform:scale(1.08);
}
.svg-point.selected .point-ring{
  stroke:#17324D;
  stroke-width:6;
  opacity:1;
}
.svg-point text{
  font-size:28px;
  font-weight:900;
  fill:#fff;
  text-anchor:middle;
  dominant-baseline:middle;
  pointer-events:none;
}
.map-inspector{
  position:absolute;
  z-index:520;
  left:14px;
  top:14px;
  width:320px;
  max-width:calc(100% - 28px);
  background:rgba(255,255,255,.95);
  border:1px solid rgba(19,49,76,0.10);
  border-radius:18px;
  box-shadow:var(--shadow-soft);
}
.map-inspector .popup-card{
  padding:16px;
}
@media (max-width: 720px){
  .map-inspector{
    position:relative;
    left:auto;
    top:auto;
    width:auto;
    max-width:none;
    margin:14px;
  }
}

/* --- PREMIUM UI UPGRADES --- */

body {
  font-family: 'Inter', 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: 
    radial-gradient(circle at 10% 0%, rgba(17,141,139,0.12), transparent 45%),
    radial-gradient(circle at 90% 10%, rgba(95,165,214,0.18), transparent 45%),
    linear-gradient(180deg, #f3f7fc 0%, #eaf0f8 100%);
}

.site-header {
  backdrop-filter: blur(24px) saturate(180%);
  background: rgba(247, 250, 253, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 30px rgba(13, 33, 53, 0.05);
}

/* Smooth micro-animations */
.button, .info-card, .stat-card, .hero-tile, .figure-card, .timeline-chip, .point-item, .base-block {
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.35s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s ease;
}

.info-card:hover, .stat-card:hover, .figure-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(13, 33, 53, 0.1);
}

.button {
  background: linear-gradient(135deg, var(--heading) 0%, #1a4266 100%);
  border: none;
  box-shadow: 0 8px 20px rgba(19,49,76,0.15);
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(19,49,76,0.25);
}

/* Glassmorphism overrides for bases */
.base-block {
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(248,251,255,0.7));
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(13, 33, 53, 0.06);
}
.base-block:hover {
  border-color: rgba(17,141,139,0.3);
  box-shadow: 0 16px 40px rgba(13, 33, 53, 0.1);
}

.hero-panel {
  border: 1px solid rgba(255,255,255,0.8);
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(245,250,255,0.5));
  backdrop-filter: blur(20px);
}

/* Smooth SVG Map Interaction */
.leaflet-map {
  transition: filter 0.3s ease;
}
.route-pill {
  backdrop-filter: blur(8px);
  background: rgba(239, 245, 251, 0.85);
}

