:root {
  --ink: #0e2a3b;
  --ink-soft: #34515e;
  --paper: #f7f3ea;
  --paper-deep: #eee6d7;
  --white: #fffdf8;
  --sea: #b9dbd5;
  --sea-deep: #2d7a79;
  --sky: #c9e2ec;
  --sun: #e5b947;
  --coral: #d6674e;
  --plum: #7d5268;
  --line: rgba(14, 42, 59, 0.16);
  --shadow: 0 24px 70px rgba(14, 42, 59, 0.14);
  --radius: 24px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 6% 5%, rgba(185, 219, 213, 0.4), transparent 24rem),
    var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  content: "";
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left;
  background: linear-gradient(90deg, var(--coral), var(--sun), var(--sea-deep));
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
select {
  font: inherit;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  transform: translateY(-150%);
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 12;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 74px;
  padding: 0 4vw;
  transition: background 180ms ease, box-shadow 180ms ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(247, 243, 234, 0.9);
  box-shadow: 0 8px 30px rgba(14, 42, 59, 0.06);
  backdrop-filter: blur(18px);
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.wordmark-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--coral);
}

.header-nav {
  display: flex;
  gap: clamp(18px, 3vw, 44px);
  font-size: 0.82rem;
  font-weight: 700;
}

.header-nav a,
.header-cta {
  text-decoration: none;
}

.header-nav a {
  position: relative;
}

.header-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
  background: var(--coral);
}

.header-nav a:hover::after,
.header-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  justify-self: end;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: 6vh 5vw 9vh;
}

.hero-copy {
  max-width: 690px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 20px;
  color: var(--sea-deep);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow span + span::before {
  margin-right: 14px;
  content: "•";
  color: var(--coral);
}

.hero h1,
.section-heading h2,
.map-heading h2,
.rail-ruler h2,
.destinations-intro h2,
.practical h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(4.2rem, 8vw, 8.4rem);
}

.hero h1 em,
.destinations-intro h2 em {
  color: var(--coral);
  font-weight: 400;
}

.hero-intro {
  max-width: 650px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  border: 0;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 850;
  text-decoration: none;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 12px 26px rgba(14, 42, 59, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--coral);
}

.button-quiet {
  gap: 8px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 700;
}

.hero-proof strong {
  color: var(--ink);
  font-size: 1rem;
}

.hero-visual {
  position: relative;
  min-height: 660px;
}

.hero-photo {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 8px solid var(--white);
  background: var(--sky);
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  transition: transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
  object-fit: cover;
}

.hero-photo:hover img {
  transform: scale(1.035);
}

.hero-photo figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--white);
  background: rgba(14, 42, 59, 0.76);
  font-size: 0.7rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.hero-photo-main {
  z-index: 2;
  top: 55px;
  left: 0;
  width: 68%;
  height: 76%;
  transform: rotate(-2deg);
  border-radius: 38% 8% 8% 8%;
}

.hero-photo-small {
  right: 0;
  width: 40%;
  height: 38%;
  border-radius: 8px;
}

.hero-photo-top {
  top: 0;
  transform: rotate(3deg);
}

.hero-photo-bottom {
  right: 4%;
  bottom: 15px;
  transform: rotate(2deg);
}

.hero-route {
  position: absolute;
  z-index: 4;
  right: 33%;
  bottom: 26%;
  display: flex;
  align-items: center;
  transform: rotate(-7deg);
}

.route-dot {
  width: 12px;
  height: 12px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 2px var(--coral);
}

.route-line {
  width: 120px;
  border-top: 2px dashed var(--coral);
}

.route-train {
  font-size: 1.4rem;
}

.hero-stamp {
  position: absolute;
  z-index: 5;
  top: 47%;
  right: 1%;
  display: grid;
  width: 136px;
  height: 136px;
  place-content: center;
  transform: rotate(8deg);
  border: 2px solid rgba(14, 42, 59, 0.4);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(247, 243, 234, 0.9);
  text-align: center;
  text-transform: uppercase;
  backdrop-filter: blur(7px);
}

.hero-stamp span {
  font-size: 0.5rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.hero-stamp strong {
  display: block;
  margin: 5px 0;
  font-family: var(--serif);
  font-size: 1.2rem;
  text-transform: lowercase;
}

.reality-check {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1.65fr);
  gap: 30px;
  align-items: start;
  padding: clamp(28px, 4vw, 54px) 6vw;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
  background: var(--ink);
}

.reality-check p {
  margin: 0;
}

.reality-label {
  padding-top: 6px;
  color: var(--sun);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.reality-check p:last-child {
  max-width: 1100px;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.1vw, 2rem);
  line-height: 1.45;
}

.finder,
.destinations,
.practical {
  padding: clamp(90px, 11vw, 170px) 5vw;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  column-gap: 5vw;
  align-items: end;
  max-width: 1300px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading h2,
.map-heading h2,
.rail-ruler h2,
.destinations-intro h2,
.practical h2 {
  font-size: clamp(3.4rem, 7vw, 7rem);
}

.section-heading > p:last-child,
.destinations-intro > p:last-child {
  margin: 0 0 8px;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.6;
}

.filter-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr auto;
  gap: 32px;
  align-items: end;
  margin-top: 54px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.7);
}

.filter-group > p {
  margin: 0 0 12px;
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-chip,
.clear-filter {
  min-height: 38px;
  padding: 0 14px;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  font-size: 0.72rem;
  font-weight: 800;
}

.filter-chip:hover,
.filter-chip:focus-visible,
.filter-chip.is-active {
  border-color: var(--ink);
  color: var(--white);
  background: var(--ink);
}

.clear-filter {
  border-color: transparent;
  color: var(--coral);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.trip-deck {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.trip-card {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 330px;
  align-content: end;
  padding: 20px;
  transition: transform 220ms ease, box-shadow 220ms ease, opacity 220ms ease;
  border: 0;
  border-radius: 18px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 8px 28px rgba(14, 42, 59, 0.12);
  text-align: left;
}

.trip-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 30%, rgba(5, 20, 30, 0.88));
}

.trip-card:hover,
.trip-card:focus-visible {
  z-index: 2;
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: var(--shadow);
}

.trip-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: transform 500ms ease, opacity 300ms ease;
  opacity: 0;
  object-fit: cover;
}

.trip-card img.is-loaded {
  opacity: 1;
}

.trip-card:hover img {
  transform: scale(1.045);
}

.trip-card-content {
  position: relative;
  z-index: 1;
}

.trip-card-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trip-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.trip-card p {
  margin: 8px 0 0;
  font-size: 0.8rem;
  line-height: 1.45;
}

.trip-card.is-hidden {
  display: none;
}

.journey-map {
  padding: clamp(90px, 10vw, 150px) 5vw;
  color: var(--white);
  background: var(--ink);
}

.map-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 6vw;
  align-items: end;
  max-width: 1400px;
}

.map-heading .eyebrow {
  color: var(--sun);
}

.map-heading h2 {
  font-size: clamp(3.4rem, 7vw, 7rem);
}

.map-heading h2 em {
  color: var(--coral);
  font-weight: 400;
}

.map-heading > p {
  max-width: 540px;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.6;
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(330px, 0.75fr);
  gap: 18px;
  margin-top: 48px;
}

.map-frame {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  background: var(--paper-deep);
}

.trip-map {
  width: 100%;
  height: 680px;
  color: var(--ink);
  background: var(--paper-deep);
}

.map-unavailable {
  max-width: 460px;
  margin: 0;
  padding: 42px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.5;
}

.map-origin-note {
  position: absolute;
  z-index: 500;
  bottom: 18px;
  left: 18px;
  display: grid;
  grid-template-columns: 18px auto;
  align-items: center;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 10px 32px rgba(14, 42, 59, 0.16);
  backdrop-filter: blur(12px);
}

.map-origin-note > span {
  grid-row: 1 / 3;
  color: var(--coral);
  font-size: 1.1rem;
}

.map-origin-note strong {
  font-size: 0.76rem;
}

.map-origin-note small {
  color: var(--ink-soft);
  font-size: 0.64rem;
}

.map-city-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-content: start;
}

.map-city {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  min-height: 94px;
  padding: 11px;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  text-align: left;
}

.map-city:hover,
.map-city:focus-visible,
.map-city.is-active {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

.map-city-thumb {
  position: relative;
  display: grid;
  overflow: hidden;
  width: 50px;
  height: 58px;
  place-items: center;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.66);
  background: var(--sea-deep);
  font-family: var(--serif);
  font-size: 1.05rem;
}

.map-city-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: opacity 220ms ease;
  opacity: 0;
  object-fit: cover;
}

.map-city-thumb img.is-loaded {
  opacity: 1;
}

.map-city-copy {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.map-city-copy strong {
  overflow: hidden;
  font-family: var(--serif);
  font-size: 1.03rem;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.map-city-copy span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.65rem;
  font-weight: 750;
}

.map-footnote {
  max-width: 880px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.7rem;
  line-height: 1.5;
}

.destination-map-icon,
.copenhagen-map-icon {
  background: transparent;
  border: 0;
}

.map-photo-pin {
  position: relative;
  display: grid;
  overflow: visible;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 4px solid var(--white);
  border-radius: 50% 50% 50% 12px;
  color: var(--white);
  background: var(--sea-deep);
  box-shadow: 0 8px 24px rgba(14, 42, 59, 0.28);
  transform: rotate(-8deg);
}

.map-photo-pin img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  border-radius: inherit;
  object-fit: cover;
}

.map-marker-initial {
  font-family: var(--serif);
  font-size: 1.3rem;
  transform: rotate(8deg);
}

.map-marker-time {
  position: absolute;
  right: -12px;
  bottom: -8px;
  min-width: 35px;
  padding: 4px 6px;
  border: 2px solid var(--white);
  border-radius: 999px;
  color: var(--white);
  background: var(--coral);
  font-size: 0.58rem;
  font-weight: 850;
  line-height: 1;
  text-align: center;
  transform: rotate(8deg);
  z-index: 2;
}

.copenhagen-map-icon {
  display: flex;
  align-items: center;
  gap: 7px;
}

.copenhagen-map-icon strong {
  width: max-content;
  padding: 5px 8px;
  border-radius: 7px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 5px 16px rgba(14, 42, 59, 0.2);
  font-size: 0.64rem;
}

.copenhagen-map-dot {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 4px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 6px 18px rgba(14, 42, 59, 0.25);
  font-family: var(--serif);
  font-size: 1rem;
}

.leaflet-popup-content-wrapper {
  overflow: hidden;
  padding: 0;
  border-radius: 16px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 14px 44px rgba(14, 42, 59, 0.22);
}

.leaflet-popup-content {
  width: 240px !important;
  margin: 0;
}

.map-popup > img,
.map-popup-placeholder {
  width: 100%;
  height: 116px;
  object-fit: cover;
}

.map-popup-placeholder {
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--sea-deep);
  font-family: var(--serif);
  font-size: 2rem;
}

.map-popup > div {
  display: grid;
  gap: 5px;
  padding: 15px;
}

.map-popup p,
.map-popup h3,
.map-popup span {
  margin: 0;
}

.map-popup p {
  color: var(--sea-deep);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.map-popup h3 {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 500;
}

.map-popup strong {
  font-size: 0.75rem;
}

.map-popup span {
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.map-popup a {
  margin-top: 6px;
  color: var(--coral);
  font-size: 0.7rem;
  font-weight: 800;
  text-underline-offset: 3px;
}

.rail-ruler {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1.55fr);
  gap: 8vw;
  padding: clamp(90px, 10vw, 150px) 5vw;
  color: var(--white);
  background: var(--sea-deep);
}

.rail-ruler .eyebrow {
  color: var(--sun);
}

.rail-track {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 18px 0;
}

.rail-track::before {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 101px;
  width: 2px;
  content: "";
  background: rgba(255, 255, 255, 0.25);
}

.rail-stop {
  position: relative;
  display: grid;
  grid-template-columns: 70px 32px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 44px;
}

.rail-time {
  justify-self: end;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 800;
}

.rail-node {
  z-index: 1;
  width: 13px;
  height: 13px;
  justify-self: center;
  border: 3px solid var(--sea-deep);
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.8);
}

.rail-place {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 12px;
  transition: background 160ms ease;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 800;
}

.rail-place:hover {
  background: rgba(255, 255, 255, 0.09);
}

.rail-place span:last-child {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
  font-weight: 650;
}

.destinations {
  padding-bottom: 0;
}

.destinations-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  gap: 5vw;
  align-items: end;
  margin-bottom: 90px;
}

.destinations-intro .eyebrow {
  grid-column: 1 / -1;
}

.destination {
  padding: clamp(74px, 9vw, 140px) 0;
  border-top: 1px solid var(--line);
  content-visibility: auto;
  contain-intrinsic-size: 1400px;
}

.destination-head {
  display: grid;
  grid-template-columns: 110px minmax(0, 1.05fr) minmax(280px, 0.7fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
}

.destination-index {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--coral);
  font-family: var(--serif);
  font-size: 1.5rem;
}

.destination-kicker {
  margin: 0 0 12px;
  color: var(--sea-deep);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.destination h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.88;
}

.destination-summary {
  padding-top: 24px;
}

.destination-summary > p {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.5vw, 1.35rem);
  line-height: 1.6;
}

.route-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 16px;
  margin-top: 26px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.route-card-icon {
  display: grid;
  grid-row: span 2;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: var(--sea);
  font-size: 1.1rem;
}

.route-card strong {
  font-size: 0.82rem;
}

.route-card span:last-child {
  color: var(--ink-soft);
  font-size: 0.73rem;
  line-height: 1.45;
}

.mood-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.mood-list span {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--ink-soft);
  background: var(--paper-deep);
  font-size: 0.64rem;
  font-weight: 800;
}

.photo-section {
  margin-top: 54px;
}

.photo-section-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
}

.photo-section-bar p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-status {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gallery-status::before {
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--coral);
}

.photo-grid {
  display: grid;
  grid-auto-rows: minmax(120px, 13vw);
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--paper-deep);
}

.photo-tile {
  position: relative;
  overflow: hidden;
  min-height: 120px;
  padding: 0;
  cursor: zoom-in;
  border: 0;
  background: linear-gradient(120deg, var(--paper-deep), var(--sky), var(--paper-deep));
  background-size: 200% 100%;
  animation: shimmer 1.8s linear infinite;
}

.photo-tile:nth-child(1) {
  grid-row: span 2;
  grid-column: span 3;
}

.photo-tile:nth-child(2),
.photo-tile:nth-child(3) {
  grid-column: span 3;
}

.photo-tile:nth-child(n + 4) {
  grid-column: span 1;
}

.photo-tile img {
  width: 100%;
  height: 100%;
  transition: opacity 260ms ease, transform 500ms ease;
  opacity: 0;
  object-fit: cover;
}

.photo-tile img.is-loaded {
  opacity: 1;
}

.photo-tile:hover img,
.photo-tile:focus-visible img {
  transform: scale(1.055);
}

.photo-tile::after {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: grid;
  width: 28px;
  height: 28px;
  content: "+";
  transition: transform 180ms ease, opacity 180ms ease;
  opacity: 0;
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.88);
  place-items: center;
}

.photo-tile:hover::after,
.photo-tile:focus-visible::after {
  transform: rotate(90deg);
  opacity: 1;
}

@keyframes shimmer {
  to {
    background-position: -200% 0;
  }
}

.destination-details {
  display: grid;
  grid-template-columns: minmax(250px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(36px, 7vw, 110px);
  margin-top: 70px;
}

.day-shape {
  position: sticky;
  top: 110px;
  align-self: start;
  padding: 26px;
  border-radius: 18px;
  color: var(--white);
  background: var(--ink);
}

.day-shape-label {
  margin: 0 0 18px;
  color: var(--sun);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.day-shape ol {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.day-shape li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--serif);
  font-size: 0.92rem;
  line-height: 1.45;
}

.day-shape time {
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 850;
}

.activities h3 {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.activity-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.activity {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 22px 18px 22px 0;
  border-bottom: 1px solid var(--line);
}

.activity:nth-child(odd) {
  padding-right: 24px;
  border-right: 1px solid var(--line);
}

.activity:nth-child(even) {
  padding-left: 24px;
}

.activity-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: var(--paper-deep);
}

.activity h4 {
  margin: 0 0 6px;
  font-size: 0.88rem;
}

.activity p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
  line-height: 1.55;
}

.destination-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.destination-links a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 850;
  text-decoration: none;
}

.destination-links a:hover,
.destination-links a:focus-visible {
  color: var(--white);
  background: var(--ink);
}

.practical {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 7vw;
  margin-top: 80px;
  color: var(--white);
  background: var(--ink);
}

.practical .eyebrow {
  color: var(--sun);
}

.practical-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.practical-grid article {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.practical-number {
  color: var(--sun);
  font-family: var(--serif);
  font-size: 1.4rem;
}

.practical h3 {
  margin: 34px 0 10px;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
}

.practical article p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  line-height: 1.6;
}

.text-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
}

footer {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding: 50px 5vw 70px;
  color: var(--ink-soft);
  background: var(--paper-deep);
  font-size: 0.74rem;
  line-height: 1.55;
}

footer p {
  margin: 0;
}

.footer-mark {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.65rem;
}

.footer-label {
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lightbox {
  position: fixed;
  width: min(94vw, 1500px);
  height: min(92vh, 980px);
  padding: 0;
  border: 0;
  border-radius: 18px;
  color: var(--white);
  background: #081923;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.55);
}

.lightbox::backdrop {
  background: rgba(4, 14, 20, 0.86);
  backdrop-filter: blur(10px);
}

.lightbox figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  width: 100%;
  height: 100%;
  margin: 0;
}

.lightbox figure > img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}

.lightbox figcaption {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  padding: 18px 78px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.lightbox figcaption h2,
.lightbox figcaption p {
  margin: 0;
}

.lightbox figcaption h2 {
  max-width: 800px;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
}

.lightbox figcaption p:not(.lightbox-count) {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
}

.lightbox-count {
  margin-bottom: 6px !important;
  color: var(--sun);
  font-size: 0.6rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lightbox figcaption a {
  flex: 0 0 auto;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 850;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 46px;
  height: 46px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: var(--white);
  background: rgba(8, 25, 35, 0.75);
  place-items: center;
  backdrop-filter: blur(8px);
}

.lightbox-close {
  top: 16px;
  right: 16px;
  font-size: 1.7rem;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 16px;
}

.lightbox-next {
  right: 16px;
}

.toast {
  position: fixed;
  z-index: 40;
  right: 20px;
  bottom: 20px;
  max-width: min(420px, calc(100vw - 40px));
  padding: 14px 18px;
  transform: translateY(120px);
  transition: transform 240ms ease;
  border-radius: 14px;
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
  font-size: 0.78rem;
}

.toast.is-visible {
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr 0.9fr;
  }

  .hero-visual {
    min-height: 560px;
  }

  .trip-deck {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .photo-grid {
    grid-auto-rows: minmax(110px, 16vw);
    grid-template-columns: repeat(4, 1fr);
  }

  .photo-tile:nth-child(1) {
    grid-column: span 2;
  }

  .photo-tile:nth-child(2),
  .photo-tile:nth-child(3) {
    grid-column: span 2;
  }

  .photo-tile:nth-child(n + 4) {
    grid-column: span 1;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .header-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 8vh;
  }

  .hero-visual {
    min-height: 620px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .section-heading,
  .map-heading,
  .destinations-intro,
  .rail-ruler,
  .practical {
    grid-template-columns: 1fr;
  }

  .section-heading > p:last-child,
  .map-heading > p:last-child,
  .destinations-intro > p:last-child {
    margin-top: 24px;
    max-width: 620px;
  }

  .filter-panel {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .clear-filter {
    justify-self: start;
  }

  .trip-deck {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .map-city-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .rail-ruler-copy {
    margin-bottom: 30px;
  }

  .destination-head {
    grid-template-columns: 72px 1fr;
  }

  .destination-summary {
    grid-column: 2;
  }

  .destination-index {
    width: 58px;
    height: 58px;
  }

  .destination-details {
    grid-template-columns: 1fr;
  }

  .day-shape {
    position: relative;
    top: auto;
  }

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

  footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 70px;
  }

  .site-header {
    min-height: 64px;
    padding: 0 18px;
  }

  .wordmark {
    font-size: 0.66rem;
  }

  .wordmark-mark {
    width: 28px;
    height: 28px;
  }

  .header-cta {
    padding: 9px 12px;
    font-size: 0.65rem;
  }

  .hero,
  .finder,
  .journey-map,
  .destinations,
  .practical,
  .rail-ruler {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero {
    padding-top: 52px;
    padding-bottom: 70px;
  }

  .hero h1 {
    font-size: clamp(3.65rem, 18vw, 5.4rem);
  }

  .hero-intro {
    font-size: 1.04rem;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .hero-proof span {
    display: grid;
  }

  .hero-visual {
    min-height: 480px;
  }

  .hero-photo {
    border-width: 5px;
  }

  .hero-photo-main {
    width: 74%;
    height: 68%;
  }

  .hero-photo-small {
    width: 43%;
    height: 34%;
  }

  .hero-stamp {
    top: 50%;
    width: 108px;
    height: 108px;
  }

  .hero-route {
    display: none;
  }

  .reality-check {
    grid-template-columns: 1fr;
    padding: 34px 18px;
  }

  .section-heading h2,
  .map-heading h2,
  .rail-ruler h2,
  .destinations-intro h2,
  .practical h2 {
    font-size: clamp(3.2rem, 16vw, 5rem);
  }

  .trip-deck {
    display: flex;
    overflow-x: auto;
    margin-right: -18px;
    padding-right: 18px;
    scroll-snap-type: x mandatory;
  }

  .trip-card {
    flex: 0 0 82vw;
    min-height: 430px;
    scroll-snap-align: start;
  }

  .map-frame,
  .trip-map {
    min-height: 520px;
    height: 520px;
  }

  .map-city-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .map-city {
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 76px;
    padding: 9px;
  }

  .map-city-thumb {
    width: 42px;
    height: 50px;
  }

  .map-origin-note {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: max-content;
    max-width: calc(100% - 24px);
  }

  .rail-track::before {
    left: 83px;
  }

  .rail-stop {
    grid-template-columns: 58px 18px 1fr;
    gap: 12px;
  }

  .destination-head {
    display: block;
  }

  .destination-index {
    margin-bottom: 26px;
  }

  .destination-summary {
    margin-top: 22px;
  }

  .destination h2 {
    font-size: clamp(3.6rem, 18vw, 5.5rem);
  }

  .photo-section {
    margin-right: -18px;
    margin-left: -18px;
  }

  .photo-section-bar {
    padding: 0 18px;
  }

  .photo-grid {
    display: flex;
    overflow-x: auto;
    gap: 6px;
    padding: 0 18px;
    border-radius: 0;
    background: transparent;
    scroll-snap-type: x mandatory;
  }

  .photo-tile,
  .photo-tile:nth-child(1),
  .photo-tile:nth-child(2),
  .photo-tile:nth-child(3),
  .photo-tile:nth-child(n + 4) {
    flex: 0 0 78vw;
    height: 58vh;
    max-height: 540px;
    min-height: 360px;
    border-radius: 16px;
    scroll-snap-align: center;
  }

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

  .activity-list,
  .practical-grid {
    grid-template-columns: 1fr;
  }

  .activity,
  .activity:nth-child(odd),
  .activity:nth-child(even) {
    padding: 20px 0;
    border-right: 0;
  }

  .practical {
    margin-top: 40px;
  }

  .lightbox {
    width: 100vw;
    height: 100dvh;
    max-width: none;
    max-height: none;
    border-radius: 0;
  }

  .lightbox figcaption {
    display: block;
    padding: 14px 18px 20px;
  }

  .lightbox figcaption a {
    display: inline-block;
    margin-top: 12px;
  }

  .lightbox-nav {
    top: 44%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
