/* ============================================================
   Captain Baltazar - site stylesheet
   Tokens ported 1:1 from "Captain Baltazar Design System.dc.html"
   ============================================================ */

:root {
  /* Neutral - ink & paper */
  --neutral-100: #f9f4ed;
  --neutral-200: #eee7db;
  --neutral-300: #dcd3c4;
  --neutral-400: #c0b6a5;
  --neutral-500: #a19786;
  --neutral-600: #82796a;
  --neutral-700: #645c50;
  --neutral-800: #474238;
  --neutral-900: #2e2b25;

  /* Terracotta - warmth & action */
  --terracotta-100: #fff2eb;
  --terracotta-200: #ffe1d0;
  --terracotta-300: #ffc6a5;
  --terracotta-400: #f6a06b;
  --terracotta-500: #d67f48;
  --terracotta-600: #b2622d;
  --terracotta-700: #8c491a;
  --terracotta-800: #643312;
  --terracotta-900: #402310;

  /* Sage - water & flexibility */
  --sage-100: #f0fae1;
  --sage-200: #e1eecc;
  --sage-300: #ccdbb2;
  --sage-400: #aebf92;
  --sage-500: #8fa073;
  --sage-600: #728157;
  --sage-700: #56633f;
  --sage-800: #3d472b;
  --sage-900: #272e1b;

  /* Base */
  --bg: #f5ead8;
  --ink: #201e1d;
  --cta: #c67139; /* dedicated button terracotta from the design system components */
  --ink-75: rgba(32, 30, 29, 0.75);
  --ink-60: rgba(32, 30, 29, 0.6);
  --line: rgba(32, 30, 29, 0.12);

  --display: 'Caprasimo', system-ui, sans-serif;
  --body: 'Figtree', system-ui, sans-serif;
  --mono: ui-monospace, 'Cascadia Mono', Consolas, monospace;

  --radius-card: 24px;
  --radius-big: 32px;
  --header-h: 72px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(198, 113, 57, 0.3); }

a { color: var(--terracotta-700); text-underline-offset: 3px; }
a:hover { color: var(--terracotta-600); }

img, svg { max-width: 100%; display: block; }

[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

:focus-visible {
  outline: 3px solid var(--terracotta-500);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Type ---------- */

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
}

h1 { font-size: clamp(38px, 5.4vw, 58px); letter-spacing: -0.01em; }
h2 { font-size: clamp(26px, 3.4vw, 34px); }
h3 { font-size: clamp(20px, 2.4vw, 25px); }
h4 { font-size: 20px; }

p { margin: 0; }

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--terracotta-700);
}

.eyebrow--sage { color: var(--sage-700); }

.muted { color: var(--ink-60); }

/* ---------- Layout ---------- */

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: 88px 0; }
.section--flush-top { padding-top: 0; }

.section-head {
  max-width: 620px;
  margin-bottom: 44px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ---------- Buttons & tags ---------- */

.btn {
  font-family: var(--display);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 13px 26px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.btn-primary {
  background: var(--cta);
  color: var(--bg);
}
.btn-primary:hover { background: var(--terracotta-600); color: var(--bg); transform: translateY(-1px); }

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(32, 30, 29, 0.2);
}
.btn-secondary:hover { background: var(--neutral-100); color: var(--ink); }

.btn-ghost {
  background: none;
  color: var(--terracotta-600);
  padding: 13px 10px;
}
.btn-ghost:hover { color: var(--terracotta-700); }

.btn-dark {
  background: var(--ink);
  color: var(--bg);
}
.btn-dark:hover { background: var(--neutral-800); color: var(--bg); }

.tag {
  display: inline-flex;
  align-items: center;
  font-size: 11.5px;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 999px;
  background: var(--terracotta-200);
  color: var(--terracotta-800);
  white-space: nowrap;
}

.tag--sage { background: var(--sage-200); color: var(--sage-800); }
.tag--outline { background: transparent; border: 1px solid var(--terracotta-500); color: var(--terracotta-600); }

/* ---------- Cards ---------- */

.card {
  background: var(--neutral-200);
  border-radius: var(--radius-card);
  padding: 26px;
}

.card--paper { background: var(--neutral-100); }

/* ---------- Placeholder imagery (washed treatment from the design system) ---------- */

.ph {
  margin: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: repeating-linear-gradient(135deg, #c0b6a5, #c0b6a5 10px, #dcd3c4 10px, #dcd3c4 20px);
  filter: saturate(0.6) contrast(0.85) brightness(1.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.ph figcaption {
  background: rgba(245, 234, 216, 0.92);
  border-radius: 10px;
  padding: 10px 14px;
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
  color: var(--ink);
}

.ph--43 { aspect-ratio: 4 / 3; }
.ph--square { aspect-ratio: 1; }

/* A figure that holds a real photo rather than the striped placeholder -
   fills whichever sizing class (hero-img, path-img, exp-shot...) it carries.
   Sizing classes with their own radius (hero-img, path-img, exp-shot...)
   override this default further down the sheet. */
.photo-fig { margin: 0; overflow: hidden; border-radius: var(--radius-card); }
.photo-fig img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 234, 216, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.site-header .container {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 24px;
}

.wordmark {
  font-family: var(--display);
  font-size: 20px;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.wordmark:hover { color: var(--ink); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.site-nav a {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}
.site-nav a:hover { color: var(--terracotta-600); }

/* The nav's own Book CTA only appears inside the mobile menu panel -
   on desktop the standalone .header-cta is the one visible button. */
.site-nav .btn { display: none; }

.header-cta { padding: 10px 20px; font-size: 14px; }

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 1px solid rgba(32, 30, 29, 0.2);
  border-radius: 999px;
  padding: 9px 16px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
  cursor: pointer;
}

/* ---------- Hero ---------- */

.hero { padding: 72px 0 88px; }

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }

.hero-copy p { font-size: 17px; color: var(--ink-75); max-width: 460px; }

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

.hero-proof { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 6px; }

.hero-img { aspect-ratio: 4 / 3.2; border-radius: var(--radius-big); }

/* ---------- Story ---------- */

.quote-block {
  background: var(--neutral-200);
  border-radius: var(--radius-big);
  padding: 36px 40px;
  margin-bottom: 28px;
}

.quote-block .eyebrow { margin-bottom: 10px; display: block; }

.quote-block blockquote {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.35;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 28px;
}

.story-grid > div p + p { margin-top: 14px; }
.story-grid p { color: var(--ink-75); line-height: 1.75; }
.story-grid h3 { margin-bottom: 14px; }

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pillar {
  background: var(--neutral-100);
  border-radius: 20px;
  padding: 24px;
}

.pillar-dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  margin-bottom: 14px;
}

.pillar h4 { font-size: 16px; margin-bottom: 6px; }
.pillar p { font-size: 13.5px; line-height: 1.55; color: var(--ink-75); }

/* ---------- Tinted section bands ---------- */

.band {
  border-radius: var(--radius-big);
  padding: 52px 48px;
}

.band--route { background: var(--neutral-100); padding-top: 40px; }
.band--book { background: var(--neutral-200); }
.band--boarding { background: var(--neutral-200); }

/* ---------- A day aboard: the route chart (signature) ---------- */

.route-wrap {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
}

.route-intro { position: sticky; top: calc(var(--header-h) + 32px); display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.route-intro p { color: var(--ink-75); }
.route-facts { display: flex; flex-direction: column; gap: 8px; margin-top: 6px; font-size: 14px; color: var(--ink-75); }
.route-facts strong { color: var(--ink); font-weight: 600; }

.route {
  position: relative;
  padding: 8px 0;
}

/* The waterway. Drawn per stop rather than once down the whole route so it
   runs marker-to-marker and stops dead at the last one, instead of carrying
   on past it. top = marker centre; height 100% reaches the next marker centre. */
.stop::before {
  content: '';
  position: absolute;
  left: 21px;
  top: 20px;
  height: 100%;
  border-left: 3px dashed var(--sage-500);
  opacity: 0.75;
}

.stop:last-child::before { content: none; }

.stop {
  position: relative;
  padding: 0 0 40px 68px;
}

.stop:last-child { padding-bottom: 0; }

.stop-marker {
  position: absolute;
  left: 0;
  top: -2px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sage-200);
  border: 3px solid var(--sage-600);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 16px;
  color: var(--sage-800);
}

.stop--lock .stop-marker { background: var(--terracotta-200); border-color: var(--terracotta-600); color: var(--terracotta-800); }
.stop--home .stop-marker { background: var(--ink); border-color: var(--ink); color: var(--bg); }

.stop-title {
  display: flex;
  align-items: center;
  gap: 8px 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.stop-title h3 { font-size: 19px; }

.stop p { font-size: 14.5px; line-height: 1.65; color: var(--ink-75); max-width: 520px; }

.route-note {
  margin-top: 36px;
  font-size: 13px;
  color: var(--ink-60);
  background: var(--neutral-200);
  border-radius: 16px;
  padding: 20px 22px;
  max-width: 560px;
}

/* ---------- What the Zaanse Schans ticket opens (value stack) ----------
   Same shape language as .route-note so it reads as native to the chart,
   with the sage left edge picking up the dashed waterway alongside it. */

.unlocks {
  margin-top: 18px;
  max-width: 560px;
  background: var(--neutral-200);
  border-left: 3px solid var(--sage-500);
  border-radius: 16px;
  padding: 20px 22px;
}

.unlocks-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.unlocks-head strong {
  font-family: var(--display);
  font-weight: 400;
  font-size: 16px;
  color: var(--sage-800);
}

.unlocks-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-75);
}

.unlocks-list li { position: relative; padding-left: 18px; }
.unlocks-list strong { color: var(--ink); font-weight: 600; }
.unlocks-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage-500);
}

.unlocks-foot {
  margin: 14px 0 0;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--ink-60);
}

/* Full-width variant for the experience page, where there's no route gutter */
.unlocks--wide { max-width: none; padding: 26px 28px; }
.unlocks--wide .unlocks-list { font-size: 14px; gap: 10px 28px; }

/* ---------- The boat ---------- */

.boat-diagram {
  margin: 0 0 28px;
  padding: 24px;
  background: var(--neutral-100);
  border-radius: var(--radius-card);
}

.boat-diagram img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2.6 / 1;
  object-fit: cover;
  object-position: center 49%;
}

.specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.spec {
  background: var(--neutral-200);
  border-radius: 16px;
  padding: 16px;
}

.spec-label {
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 6px;
}

.spec-value { font-size: 14px; font-weight: 600; }

.boat-lower {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: start;
}

.boat-rooms p { color: var(--ink-75); line-height: 1.7; }
.boat-rooms h4 { margin-bottom: 10px; }

.departures { display: flex; flex-direction: column; gap: 12px; }

.departure {
  background: var(--neutral-100);
  border-radius: 20px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.departure h4 { font-size: 16px; }
.departure p { font-size: 13.5px; line-height: 1.6; color: var(--ink-75); }

/* ---------- Where you board ---------- */

.usp {
  background: var(--sage-100);
  border: 1px solid var(--sage-300);
  border-radius: var(--radius-card);
  padding: 26px 28px;
  margin-bottom: 28px;
}

.usp .eyebrow { display: block; margin-bottom: 10px; }
.usp p { max-width: 780px; }
.usp p:first-of-type { font-family: var(--display); font-size: clamp(19px, 2.2vw, 23px); line-height: 1.3; margin-bottom: 10px; }
.usp p:first-of-type strong { font-weight: 400; }
.usp p + p { font-size: 14.5px; line-height: 1.65; color: var(--ink-75); }
.usp p.usp-body { font-family: var(--body); font-weight: 400; font-size: 15.5px; line-height: 1.65; color: var(--ink-75); margin-bottom: 16px; }
.usp p + p strong { color: var(--ink); font-weight: 700; }

/* Map on top as a centred figure, the two moorings side by side beneath it -
   a two-column split leaves a large void under the map, since the cards are
   always the taller of the two. */
.map-figure {
  max-width: 760px;
  margin: 0 auto 24px;
  background: var(--neutral-100);
  border: 1px solid rgba(32, 30, 29, 0.08);
  border-radius: var(--radius-card);
  padding: 10px 10px 0;
  overflow: hidden;
}

.map-figure figcaption {
  padding: 12px 12px 16px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-60);
}

/* position + z-index give the map its own stacking context. Leaflet's controls
   sit at z-index 800, which would otherwise punch straight through the sticky
   header (z-index 50) as you scroll past. */
.map-canvas {
  position: relative;
  z-index: 0;
  height: 480px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--neutral-200);
  display: grid;
  place-items: center;
}

.map-loading { font-size: 13px; color: var(--ink-60); }

/* ---------- Leaflet, dressed for the house palette ---------- */

.leaflet-container {
  font-family: var(--body);
  background: var(--neutral-200);
}

/* CARTO Voyager is the warmest of the free basemaps and still keeps water
   reading as water; this walks the land the rest of the way to our paper. */
.leaflet-tile-pane { filter: saturate(0.78) sepia(0.22) brightness(1.02) contrast(0.97); }

/* Our markers are all custom, so drop Leaflet's default white icon chrome. */
.leaflet-div-icon { background: transparent; border: none; }

.leaflet-control-attribution {
  background: rgba(249, 244, 237, 0.84);
  font-size: 10.5px;
  color: var(--ink-60);
  padding: 1px 6px;
}
.leaflet-control-attribution a { color: var(--terracotta-700); }

.leaflet-bar {
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(32, 30, 29, 0.14);
}
.leaflet-bar a,
.leaflet-bar a:hover {
  background: var(--neutral-100);
  color: var(--ink);
  border-bottom-color: var(--line);
}
.leaflet-bar a:hover { background: var(--neutral-200); }

/* ---------- Markers ---------- */

/* Same teardrop the section's hand-drawn chart used before this map replaced
   it, so the pins still read as ours rather than as stock map furniture. */
.map-pin { cursor: pointer; }
.map-pin .pin { filter: drop-shadow(0 3px 5px rgba(32, 30, 29, 0.3)); overflow: visible; }
.map-pin .pin-body { fill: var(--cta); transition: fill 0.25s ease; }
.map-pin .pin-hole { fill: var(--neutral-100); }
.map-pin .pin-num {
  fill: var(--terracotta-700);
  font-family: var(--display);
  font-size: 16px;
  text-anchor: middle;
}

.map-pin:hover .pin-body,
.map-pin:focus-visible .pin-body,
.map-pin.is-active .pin-body { fill: var(--terracotta-700); }

.map-pin.is-active .pin { filter: drop-shadow(0 6px 12px rgba(32, 30, 29, 0.4)); }

.map-landmark { pointer-events: none; }

.landmark-dot {
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--ink);
  border: 3px solid var(--neutral-100);
  box-shadow: 0 0 0 4px rgba(32, 30, 29, 0.14);
}

.landmark-label {
  position: absolute;
  left: 50%;
  top: 26px;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: var(--display);
  font-size: 14px;
  color: var(--ink);
  /* stacked shadows stand in for the SVG map's paint-order halo */
  text-shadow: 0 0 3px #f9f4ed, 0 0 6px #f9f4ed, 0 0 10px #f9f4ed;
}

/* A bearing and a distance from the station, not a walking route. */
.map-leg { stroke: var(--terracotta-500); opacity: 0.75; stroke-linecap: round; }

.map-dist {
  font-family: var(--body);
  font-weight: 700;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  color: var(--terracotta-700);
  text-shadow: 0 0 3px #f9f4ed, 0 0 6px #f9f4ed, 0 0 10px #f9f4ed;
  pointer-events: none;
}

/* ---------- The pin popup ---------- */

.mooring-popup .leaflet-popup-content-wrapper {
  background: var(--neutral-100);
  color: var(--ink);
  border-radius: var(--radius-card);
  box-shadow: 0 18px 42px rgba(32, 30, 29, 0.24);
}

.mooring-popup .leaflet-popup-content {
  margin: 18px 20px 20px;
  font-size: 14px;
  line-height: 1.6;
}

.mooring-popup .leaflet-popup-tip { background: var(--neutral-100); }

.mooring-popup .leaflet-popup-close-button {
  color: var(--ink-60);
  font-size: 22px;
  width: 32px;
  height: 32px;
  padding: 5px 7px 0 0;
}
.mooring-popup .leaflet-popup-close-button:hover { color: var(--ink); }

/* Popup content: a name, a tag and a link out to Google Maps - nothing this
   page's other sections already say. */
.mooring-popup-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.mooring-popup-content h3 { font-size: 18px; }

.mooring-popup-link { width: 100%; }

/* ---------- Mooring detail (the no-JS fallback) ---------- */

.map-details { margin-bottom: 24px; }
.map-details .mooring {
  background: var(--neutral-100);
  border: 1px solid rgba(32, 30, 29, 0.08);
  border-radius: var(--radius-card);
  padding: 26px;
}
.map-details .mooring + .mooring { margin-top: 16px; }

.mooring-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.mooring-head > div { display: flex; flex-direction: column; align-items: flex-start; gap: 7px; }
.mooring-head h3 { font-size: 21px; }

.mooring-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cta);
  color: var(--bg);
  font-family: var(--display);
  font-size: 15px;
  display: grid;
  place-items: center;
}
.mooring-num--alt { background: var(--sage-200); color: var(--sage-800); }

.mooring-alt { font-size: 12.5px; color: var(--ink-60); margin-top: -3px; }

.mooring-lede {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-75);
  margin-bottom: 16px;
}

.mooring-facts { margin: 0 0 18px; display: flex; flex-direction: column; gap: 12px; }
.mooring-facts > div { display: flex; flex-direction: column; gap: 3px; }

.mooring-facts dt {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--terracotta-700);
}

.mooring-facts dd { margin: 0; font-size: 13px; line-height: 1.55; }
.mooring-facts--tight { gap: 11px; margin-bottom: 0; }

.mooring-common {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-bottom: 18px;
}
.mooring-common h4 { font-size: 16px; margin-bottom: 12px; }

.mooring-checks {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  line-height: 1.5;
}
.mooring-checks li { position: relative; padding-left: 18px; }
.mooring-checks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage-500);
}

.mooring-cta { width: 100%; }

.boarding-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.boarding-card {
  background: var(--neutral-100);
  border-radius: var(--radius-card);
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.boarding-card--primary {
  background: var(--bg);
  box-shadow: inset 0 0 0 2px var(--cta);
}

.boarding-head { display: flex; align-items: flex-start; gap: 14px; }
.boarding-head > div { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.boarding-head h3 { font-size: 22px; }

.boarding-num {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--cta);
  color: var(--bg);
  font-family: var(--display);
  font-size: 16px;
  display: grid;
  place-items: center;
}

.boarding-card:not(.boarding-card--primary) .boarding-num {
  background: var(--sage-200);
  color: var(--sage-800);
}

.boarding-photo { width: 100%; aspect-ratio: 16 / 10; border-radius: 14px; }

.boarding-what { font-size: 14.5px; line-height: 1.65; color: var(--ink-75); }

.boarding-meta { margin: 0; display: flex; flex-direction: column; gap: 10px; width: 100%; }
.boarding-meta > div { display: flex; gap: 14px; align-items: baseline; }

.boarding-meta dt {
  flex: 0 0 108px;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-60);
}

.boarding-meta dd { margin: 0; font-size: 13.5px; line-height: 1.5; }

/* keep both "Show on the map" buttons on the same line */
.boarding-card > .btn { margin-top: auto; }

/* ---------- Reviews ---------- */

.review-score {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--ink-60);
}

.review-score strong { font-family: var(--display); font-weight: 400; font-size: 26px; color: var(--ink); }

.stars { color: var(--cta); letter-spacing: 0.12em; font-size: 15px; }

.reviews {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 16px;
}

.reviews > .review:first-child { grid-row: 1 / span 2; }

.review {
  margin: 0;
  background: var(--neutral-200);
  border-radius: var(--radius-card);
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review blockquote {
  margin: 0;
  flex: 1;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-75);
}

.review blockquote::before { content: '\201C'; }
.review blockquote::after  { content: '\201D'; }

.reviews > .review:first-child { padding: 30px 32px; }
.reviews > .review:first-child blockquote { font-size: 17px; line-height: 1.75; }

.review figcaption { display: flex; flex-direction: column; gap: 2px; }
.review figcaption a { font-weight: 700; font-size: 14px; text-decoration: none; }
.review figcaption a:hover { text-decoration: underline; }
.review figcaption span { font-size: 11.5px; color: var(--ink-60); }

/* ---------- Choose your experience ---------- */

.paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.path {
  border-radius: 28px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.path--cruise { background: var(--neutral-200); }

.path--charter { background: var(--ink); color: var(--bg); }
.path--charter .eyebrow { color: var(--terracotta-400); }

.path p { font-size: 14.5px; line-height: 1.6; color: var(--ink-75); }
.path--charter p { color: rgba(245, 234, 216, 0.8); }
.path .meta { font-size: 12.5px; color: var(--ink-60); }
.path--charter .meta { color: rgba(245, 234, 216, 0.6); }
.path .btn { margin-top: auto; }
.path h3 { max-width: 380px; }

.path-img { width: 100%; aspect-ratio: 16 / 7; border-radius: 16px; margin-bottom: 6px; }

/* ---------- Private charter: the two tiers ----------
   Same light/dark inversion the .path cards use above, for the same reason:
   the dark card reads as the fuller offer. Neither card carries a number -
   the day rate is quoted personally - so .tier-price holds a phrase where
   .exp-price would hold a price. */

.tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.tier {
  border-radius: 28px;
  padding: 30px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.tier--standard { background: var(--neutral-200); }
.tier--premium { background: var(--ink); color: var(--bg); }

.tier h3 { font-size: 23px; }
.tier > p { font-size: 14.5px; line-height: 1.65; color: var(--ink-75); }
.tier--premium > p { color: rgba(245, 234, 216, 0.8); }

/* what you get before the bonuses - the one-line spec of the tier */
.tier-core {
  width: 100%;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--ink-60);
}
.tier-core strong { color: var(--ink); font-weight: 600; }
.tier--premium .tier-core { color: rgba(245, 234, 216, 0.6); border-bottom-color: rgba(245, 234, 216, 0.18); }
.tier--premium .tier-core strong { color: var(--bg); }

.tier-bonuses {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-75);
}
.tier-bonuses li { position: relative; padding-left: 18px; }
.tier-bonuses li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage-500);
}
.tier-bonuses strong { color: var(--ink); }
.tier--premium .tier-bonuses { color: rgba(245, 234, 216, 0.8); }
.tier--premium .tier-bonuses li::before { background: var(--terracotta-400); }
.tier--premium .tier-bonuses strong { color: var(--bg); }

/* pushed to the bottom so both cards' CTAs line up whatever the copy length */
.tier-price {
  width: 100%;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tier-price strong { font-family: var(--display); font-weight: 400; font-size: 19px; color: var(--sage-800); }
.tier-price span { font-size: 12.5px; line-height: 1.5; color: var(--ink-75); }
.tier--premium .tier-price { border-top-color: rgba(245, 234, 216, 0.18); }
.tier--premium .tier-price strong { color: var(--sage-300); }
.tier--premium .tier-price span { color: rgba(245, 234, 216, 0.7); }

.tier > .btn { width: 100%; }

/* The only prices on the page: confirmed add-on rates. They also do the
   arithmetic that makes the hosted tier look like the sensible buy. */
.tier-addons {
  margin-top: 20px;
  background: var(--neutral-100);
  border-radius: 16px;
  padding: 22px 24px;
}
.tier-addons h4 { font-size: 16px; margin-bottom: 10px; }
.tier-addons p { font-size: 13px; line-height: 1.7; color: var(--ink-75); }
.tier-addons strong { color: var(--ink); }

/* ---------- Good to know ---------- */

.faq { max-width: 720px; display: flex; flex-direction: column; gap: 10px; }

.faq details {
  background: var(--neutral-100);
  border-radius: 16px;
  overflow: hidden;
}

.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 700;
  font-size: 14.5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: '+';
  font-family: var(--display);
  font-size: 18px;
  color: var(--terracotta-600);
  flex-shrink: 0;
  width: 1em;
  text-align: center;
}

.faq details[open] summary::after { content: '\2212'; }

.faq .faq-a {
  padding: 0 20px 18px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-75);
}

/* ---------- Book / contact ---------- */

.book-eyebrow { display: block; margin-bottom: 14px; }

.book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Both columns open with an h2 of the same size and colour, so the two
   headings share a baseline instead of one sitting a step above the other. */
.book-col { display: flex; flex-direction: column; gap: 14px; }
.book-col > h2 { font-size: clamp(24px, 2.9vw, 30px); color: var(--ink); }
.book-col > p { color: var(--ink-75); max-width: 440px; }
.book-col > .book-form { margin-top: 10px; }

.book-form {
  background: var(--neutral-100);
  border-radius: var(--radius-card);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.field { display: flex; flex-direction: column; gap: 6px; }

.field label { font-size: 12.5px; font-weight: 600; color: var(--ink-75); }

.field input,
.field select,
.field textarea {
  font-family: var(--body);
  font-size: 14px;
  color: var(--ink);
  background: var(--neutral-200);
  border: 1px solid rgba(32, 30, 29, 0.16);
  border-radius: 999px;
  padding: 11px 18px;
  width: 100%;
  appearance: none;
}

/* A pill can't hold several lines - the only field that isn't one. */
.field textarea {
  border-radius: 18px;
  line-height: 1.55;
  resize: vertical;
  min-height: 84px;
}

.field select {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23645c50' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 40px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--terracotta-500);
  outline-offset: 1px;
}

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.form-fineprint { font-size: 12px; color: var(--ink-60); line-height: 1.5; }

.form-confirm {
  background: var(--sage-100);
  color: var(--sage-800);
  border-radius: 16px;
  padding: 16px 18px;
  font-size: 14px;
  line-height: 1.55;
}

.form-confirm[hidden] { display: none; }

.contact-rows { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }

.contact-row {
  background: var(--neutral-100);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-size: 14px;
}

.contact-row strong { font-weight: 700; }
.contact-row span { color: var(--ink-60); font-size: 13px; text-align: right; }

/* ---------- Footer ---------- */

.site-footer {
  margin-top: 88px;
  background: var(--ink);
  color: rgba(245, 234, 216, 0.8);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1.05fr 0.75fr 0.85fr;
  gap: 40px;
  padding: 64px 0 36px;
}

.footer-brand { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }

.footer-brand .wordmark { color: var(--bg); font-size: 22px; }

.footer-brand p { font-style: italic; font-size: 14px; max-width: 320px; color: rgba(245, 234, 216, 0.7); }

.footer-col h4 {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--body);
  font-weight: 700;
  color: rgba(245, 234, 216, 0.55);
  margin-bottom: 14px;
}

.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }

.footer-col a { color: rgba(245, 234, 216, 0.85); text-decoration: none; font-size: 14px; }
.footer-col a:hover { color: var(--terracotta-400); }

.footer-col li { font-size: 14px; }

.footer-places a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.4;
}

.footer-places strong { font-weight: 700; }
.footer-places span { font-size: 12.5px; color: rgba(245, 234, 216, 0.55); }
.footer-places a:hover span { color: rgba(245, 234, 216, 0.75); }

/* ---------- Footer: ways you can pay ---------- */

/* Sits as the fifth column in .footer-main now, so its heading lines up with
   "Contact" - no separate strip, no border of its own. */
.footer-pay h4 {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--body);
  font-weight: 700;
  color: rgba(245, 234, 216, 0.55);
  margin-bottom: 14px;
}

.pay-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.pay-list li { display: flex; flex: 0 0 auto; }

.pay-list img {
  height: 30px;
  width: auto;
}

.footer-legal {
  border-top: 1px solid rgba(245, 234, 216, 0.15);
  padding: 22px 0 32px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: rgba(245, 234, 216, 0.55);
}

/* ---------- Reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   Experience page
   Written so the same markup works twice: as a standalone page, and
   lifted into the overlay below. Nothing here may assume the window is
   the scroll container.
   ============================================================ */

.experience {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px 88px;
}

/* Sticky section tabs. On the standalone page they clear the site header;
   inside the overlay the panel is the scroller, so top: 0 is right there. */
.exp-tabs {
  position: sticky;
  top: var(--header-h);
  z-index: 20;
  margin: 0 -24px 32px;
  padding: 0 24px;
  background: rgba(245, 234, 216, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.exp-tabs-inner {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}
.exp-tabs-inner::-webkit-scrollbar { display: none; }

.exp-tabs a {
  flex: none;
  padding: 16px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-60);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
}

.exp-tabs a:hover { color: var(--ink); }

.exp-tabs a.is-current {
  color: var(--terracotta-700);
  border-bottom-color: var(--cta);
}

.exp-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 56px;
  align-items: start;
}

.exp-main { min-width: 0; display: flex; flex-direction: column; gap: 64px; }

.exp-section {
  /* the tab bar would otherwise sit on top of whatever it scrolled to */
  scroll-margin-top: calc(var(--header-h) + 64px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.exp-section h2 { margin-bottom: 2px; }
.exp-section-lede { font-size: 15px; line-height: 1.7; color: var(--ink-75); max-width: 680px; }

/* ---------- Intro ---------- */

.exp-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 10px;
  aspect-ratio: 16 / 9;
  margin-bottom: 12px;
}

.exp-shot { height: 100%; border-radius: 16px; }
.exp-shot--lead { grid-row: 1 / span 2; }

.exp-lede { font-size: 16.5px; line-height: 1.75; color: var(--ink-75); max-width: 680px; }

.exp-quickfacts {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

/* The Zaanse Schans page carries 5 quick facts rather than 4 - repeat(4, 1fr)
   would strand the 5th tile alone on its own row with empty cells beside it.
   Scoped to the width band where the plain 4-column rule above is in force;
   narrower breakpoints below still stack these into a clean 2-col/1-col list. */
@media (min-width: 1061px) {
  #exp-intro .exp-quickfacts:has(li:nth-child(5)) {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

.exp-quickfacts li {
  background: var(--neutral-100);
  border: 1px solid rgba(32, 30, 29, 0.08);
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.exp-quickfacts strong { font-family: var(--display); font-weight: 400; font-size: 16px; }
.exp-quickfacts span { font-size: 12px; line-height: 1.4; color: var(--ink-60); }

/* ---------- Highlights ---------- */

.exp-highlights { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }

.exp-highlights li {
  position: relative;
  padding-left: 34px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-75);
}

/* a small anchor, rather than a generic bullet */
.exp-highlights li::before {
  content: '⚓';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 15px;
  color: var(--cta);
}

/* ---------- Route ---------- */

.route--compact .stop { padding-bottom: 32px; }
.route--compact .stop p { font-size: 14px; }

/* ---------- Practical information ---------- */

.exp-facts {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.exp-facts > div {
  background: var(--neutral-100);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.exp-facts dt {
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--terracotta-700);
}

.exp-facts dd { margin: 0; font-size: 14px; line-height: 1.65; color: var(--ink-75); }
.exp-facts dd strong { color: var(--ink); }

/* ---------- Getting there ---------- */

.exp-places { display: flex; flex-direction: column; gap: 16px; }

.exp-place {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: var(--neutral-100);
  border: 1px solid rgba(32, 30, 29, 0.08);
  border-radius: var(--radius-card);
  padding: 26px;
}

.exp-place > div { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.exp-place h3 { font-size: 20px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.exp-place p { font-size: 14px; line-height: 1.6; color: var(--ink-75); }
.exp-place-addr { font-family: var(--mono); font-size: 12.5px; color: var(--ink) !important; }

/* the walk-time badge, the one thing people scan this section for */
.exp-place-badge {
  flex: none;
  width: 96px;
  aspect-ratio: 1;
  border-radius: 18px;
  background: var(--terracotta-200);
  color: var(--terracotta-800);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  text-align: center;
  padding: 10px;
}

.exp-place-badge--alt { background: var(--sage-200); color: var(--sage-800); }
.exp-place-badge strong { font-family: var(--display); font-weight: 400; font-size: 19px; }
.exp-place-badge span { font-size: 10.5px; line-height: 1.3; }

.exp-place-photo {
  flex: none;
  width: 160px;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  margin-left: auto;
}

/* TODO copy, until the family confirms transport and parking */
.exp-place-todo {
  font-size: 12.5px !important;
  color: var(--ink-60) !important;
  border-left: 2px solid var(--neutral-400);
  padding-left: 12px;
}

/* ---------- Booking card ---------- */

.exp-aside { position: sticky; top: calc(var(--header-h) + 24px); }

.exp-book {
  background: var(--neutral-100);
  border: 1px solid rgba(32, 30, 29, 0.1);
  border-radius: var(--radius-big);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 32px rgba(32, 30, 29, 0.07);
}

.exp-book-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.exp-book-dur { font-size: 12.5px; color: var(--ink-60); }
.exp-book-title { font-size: 24px; }

.exp-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--sage-100);
  border: 1px solid var(--sage-300);
}

.exp-price strong { font-family: var(--display); font-weight: 400; font-size: 21px; color: var(--sage-800); }
.exp-price span { font-size: 12.5px; line-height: 1.5; color: var(--ink-75); }

/* the card is already a card - the form inside it shouldn't be a second one */
.exp-book-form { background: transparent; padding: 0; gap: 14px; }
.exp-book-form .btn { width: 100%; }

.exp-book-reassure {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-60);
}

/* ---------- The Boat page ---------- */

/* The ship's history reuses the route chart as a timeline - these markers
   carry a four-digit year where the route carries a single digit. Doubled
   selector so it also wins over the mobile .stop-marker rule further down. */
.stop-marker.stop-marker--year { font-size: 12.5px; letter-spacing: 0; }

/* A photograph inside a timeline stop. */
.stop-fig { max-width: 520px; aspect-ratio: 16 / 10; border-radius: 14px; margin-top: 14px; }

.boat-diagram figcaption {
  padding-top: 12px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-60);
  text-align: center;
}

/* The boat page's aside holds two CTAs instead of a booking form. */
.exp-book-ctas { display: flex; flex-direction: column; gap: 10px; }
.exp-book-ctas .btn { width: 100%; }

/* ============================================================
   Experience overlay
   The experience page, shown over whatever you were reading, with its
   own URL in the address bar.
   ============================================================ */

.has-overlay { overflow: hidden; }

.exp-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 24px;
}

.exp-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(32, 30, 29, 0.55);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.exp-overlay.is-open .exp-overlay-backdrop { opacity: 1; }

.exp-overlay-panel {
  position: relative;
  width: 100%;
  max-width: 1180px;
  max-height: 100%;
  background: var(--bg);
  border-radius: var(--radius-big);
  box-shadow: 0 30px 80px rgba(32, 30, 29, 0.4);
  opacity: 0;
  transform: translateY(16px) scale(0.99);
  transition: opacity 0.2s ease, transform 0.2s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.exp-overlay.is-open .exp-overlay-panel { opacity: 1; transform: none; }

.exp-overlay-scroll {
  overflow-y: auto;
  overscroll-behavior: contain;
}

/* Inside the overlay the panel is the scroller and there is no site header
   above the tabs, so they stick to the top of the panel instead. */
.exp-overlay .exp-tabs { top: 0; }
/* ...and the last tab must not slide under the close button. */
.exp-overlay .exp-tabs-inner { padding-right: 52px; }
.exp-overlay .exp-section { scroll-margin-top: 72px; }
.exp-overlay .exp-aside { top: 80px; }
.exp-overlay .experience { padding-bottom: 56px; }

.exp-overlay-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 30;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--neutral-100);
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background-color 0.18s ease;
}

.exp-overlay-close:hover { background: var(--neutral-300); }
.exp-overlay-close svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; stroke-linecap: round; fill: none; }

/* A CTA waiting on its page to arrive. */
.btn.is-loading { opacity: 0.7; pointer-events: none; }

/* ---------- Responsive ---------- */

/* The nav collapses to the menu button well before the rest of the layout
   does - with nine items it runs out of room long before 720px. */
@media (max-width: 1120px) {
  .nav-toggle { display: inline-flex; }
  .header-cta { display: none; }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 16px;
  }

  .site-nav.open { display: flex; }

  .site-nav a { padding: 12px 20px; font-size: 15px; }
  .site-nav .btn {
    display: inline-flex;
    align-self: flex-start;
    margin: 10px 20px 0;
    padding: 13px 26px;
  }
}

@media (max-width: 1060px) {
  /* The booking card stops being a sidebar and becomes the first thing you
     see, before the gallery - it is the point of the page. */
  .exp-layout { grid-template-columns: 1fr; gap: 36px; }
  .exp-aside { position: static; order: -1; }
  .exp-book { flex-direction: column; }
  .exp-quickfacts { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; gap: 36px; }
  .reviews { grid-template-columns: 1fr 1fr; }
  .reviews > .review:first-child { grid-row: auto; grid-column: 1 / -1; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-pay { grid-column: 1 / -1; }
  .band { padding: 48px 32px; }
  .route-wrap { grid-template-columns: 1fr; gap: 40px; }
  .route-intro { position: static; }
  .story-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .specs { grid-template-columns: 1fr 1fr; }
  .boat-lower { grid-template-columns: 1fr; }
  .book-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 720px) {
  .section { padding: 56px 0; }

  .container { padding: 0 20px; }
  .band { padding: 36px 20px; }

  /* Taller rather than shorter on a phone: the popups carry a lot of copy and
     Leaflet pans them into view, so it needs the room to pan into. */
  .map-canvas { height: 66vh; min-height: 420px; max-height: 560px; }
  .landmark-label { font-size: 13px; }
  .mooring-popup .leaflet-popup-content { margin: 16px 16px 18px; }
  .map-details .mooring { padding: 22px; }

  .usp { padding: 22px; }
  .boarding-list { grid-template-columns: 1fr; }
  .boarding-card { padding: 22px; }
  .boarding-meta > div { flex-direction: column; gap: 2px; }
  .boarding-meta dt { flex: none; }

  .reviews { grid-template-columns: 1fr; }
  .reviews > .review:first-child { grid-column: auto; }

  /* Route chart: slimmer gutter so stop copy keeps its width */
  .stop::before { left: 17px; top: 16px; }
  .stop { padding: 0 0 32px 52px; }
  .stop-marker { width: 36px; height: 36px; font-size: 14px; border-width: 2.5px; }
  .stop p { font-size: 14px; }

  .unlocks { padding: 18px 20px; }
  .unlocks--wide { padding: 20px 22px; }
  .unlocks-list { grid-template-columns: 1fr; }

  .paths { grid-template-columns: 1fr; }
  .tiers { grid-template-columns: 1fr; }
  .tier { padding: 26px 24px; }
  .tier-addons { padding: 20px; }
  .pillars { grid-template-columns: 1fr; }
  .specs { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-legal { flex-direction: column; }

  /* seven badges have to clear a 350px content width */
  .pay-list { gap: 8px; }
  .pay-list img { height: 26px; }

  /* Experience page */
  .experience { padding: 0 20px 56px; }
  .exp-tabs { margin: 0 -20px 24px; padding: 0 20px; }
  .exp-tabs a { padding: 14px 11px; font-size: 13px; }
  .exp-main { gap: 48px; }
  .exp-gallery { grid-template-columns: 1fr; grid-template-rows: none; aspect-ratio: auto; }
  .exp-shot { aspect-ratio: 16 / 10; }
  .exp-shot--lead { grid-row: auto; }
  .exp-quickfacts { grid-template-columns: 1fr; }
  .exp-facts { grid-template-columns: 1fr; }
  .exp-facts > div { padding: 20px; gap: 8px; }
  .exp-facts dt { font-size: 12.5px; }
  .exp-facts dd { font-size: 13.5px; line-height: 1.7; }
  .exp-place { flex-direction: column; gap: 16px; padding: 22px; }
  .exp-place-badge { order: 1; width: auto; aspect-ratio: auto; flex-direction: row; gap: 8px; padding: 10px 16px; align-self: flex-start; }
  .exp-place-photo { order: 2; width: 100%; aspect-ratio: 16 / 9; margin-left: 0; }
  .exp-place > div { order: 3; }
  .exp-book { padding: 22px; }

  /* Full-bleed sheet on a phone - a floating dialog wastes the screen. */
  .exp-overlay { padding: 0; }
  .exp-overlay-panel { max-width: none; height: 100%; max-height: none; border-radius: 0; }
  .exp-overlay-close { top: 10px; right: 10px; }
  .exp-overlay .exp-section { scroll-margin-top: 64px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn { transition: none; }
}
