@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/fonts/dm-sans-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/fonts/dm-sans-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Newsreader";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/fonts/newsreader-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Newsreader";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/fonts/newsreader-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --paper: #f4f1e9;
  --paper-deep: #ebe5d9;
  --sand: #ded5c6;
  --ink: #15363b;
  --ink-deep: #0d282d;
  --adriatic: #2d6b77;
  --adriatic-light: #93c5c7;
  --olive: #6d755d;
  --terracotta: #a64d35;
  --terracotta-deep: #9f472f;
  --sun: #e4bf64;
  --white: #fffdf8;
  --line: rgba(21, 54, 59, 0.18);
  --line-light: rgba(255, 253, 248, 0.22);
  --serif: "Newsreader", Georgia, serif;
  --sans: "DM Sans", "Segoe UI", sans-serif;
  --shell: min(100% - 48px, 1240px);
  --section-space: clamp(88px, 10vw, 150px);
  --shadow: 0 32px 80px rgba(12, 37, 41, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
select,
input {
  color: inherit;
  font: inherit;
}

button,
select,
label {
  -webkit-tap-highlight-color: transparent;
}

button,
a,
input,
select {
  outline-offset: 4px;
}

:focus-visible {
  outline: 3px solid var(--white);
  box-shadow: 0 0 0 5px var(--ink-deep);
}

p,
h1,
h2,
h3,
dl,
dd,
ol,
ul {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

h1 em,
h2 em,
h3 em {
  font-weight: 400;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.content-narrow {
  width: min(100% - 48px, 920px);
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
}

.section--ink {
  color: var(--white);
  background: var(--ink-deep);
}

.section--sand {
  background: var(--paper-deep);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  margin-bottom: 24px;
  color: var(--adriatic);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--adriatic-light);
}

.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 1px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--light {
  color: var(--ink-deep);
  background: var(--white);
}

.button--light:hover {
  background: var(--sun);
}

.button--dark {
  color: var(--white);
  background: var(--ink);
}

.button--dark:hover {
  background: var(--adriatic);
}

.button--outline {
  border-color: var(--ink);
}

.button--outline:hover {
  color: var(--white);
  background: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 700;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.text-link--light {
  color: var(--white);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  color: var(--ink);
  background: rgba(244, 241, 233, 0.96);
  border-bottom: 1px solid var(--line);
  transition: color 250ms ease, background 250ms ease, border-color 250ms ease, transform 250ms ease;
  backdrop-filter: blur(16px);
}

.site-header--overlay {
  color: var(--white);
  background: linear-gradient(180deg, rgba(5, 24, 29, 0.7), rgba(5, 24, 29, 0.2));
  border-bottom-color: var(--line-light);
  backdrop-filter: none;
}

.site-header--overlay.is-scrolled,
.site-header.menu-active {
  color: var(--ink);
  background: rgba(244, 241, 233, 0.97);
  border-bottom-color: var(--line);
  backdrop-filter: blur(16px);
}

.nav-shell {
  display: flex;
  width: min(100% - 48px, 1400px);
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  letter-spacing: -0.01em;
}

.brand strong {
  font-weight: 700;
}

.brand-mark {
  position: relative;
  display: inline-flex;
  width: 25px;
  height: 25px;
  align-items: end;
  justify-content: center;
  gap: 2px;
  transform: rotate(-5deg);
}

.brand-mark i {
  display: block;
  width: 6px;
  background: currentColor;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.brand-mark i:nth-child(1) { height: 15px; opacity: 0.65; }
.brand-mark i:nth-child(2) { height: 23px; }
.brand-mark i:nth-child(3) { height: 18px; opacity: 0.82; }

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.7vw, 42px);
  font-size: 12px;
  font-weight: 600;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
  padding-block: 10px;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 20px;
  padding: 10px 17px;
  color: var(--white);
  background: var(--ink);
}

.site-header--overlay:not(.is-scrolled):not(.menu-active) .nav-cta {
  color: var(--ink);
  background: var(--white);
}

.language-switcher {
  position: relative;
  flex: 0 0 auto;
}

.language-switcher details,
.language-switcher summary {
  margin: 0;
}

.language-switcher summary {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  list-style: none;
}

.language-switcher summary::-webkit-details-marker {
  display: none;
}

.language-switcher details > div {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: grid;
  min-width: 150px;
  padding: 8px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.language-switcher a {
  padding: 9px 10px;
  font-size: 12px;
}

.language-switcher a:hover,
.language-switcher a[aria-current="page"] {
  color: var(--white);
  background: var(--ink);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 200ms ease;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink-deep);
}

.hero::after {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  left: 0;
  height: 150px;
  background: linear-gradient(180deg, rgba(5, 25, 30, 0.58), transparent);
  content: "";
  pointer-events: none;
}

.hero--video {
  background: var(--ink-deep);
}

.hero-poster,
.hero-video,
.hero-shade,
.hero-grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
}

.hero-video {
  object-fit: cover;
  object-position: center 52%;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(5, 26, 31, 0.82) 0%, rgba(7, 33, 38, 0.46) 48%, rgba(7, 32, 36, 0.12) 100%), linear-gradient(0deg, rgba(5, 24, 29, 0.4) 0%, transparent 42%);
}

.hero-grain {
  opacity: 0.12;
  background-image: repeating-radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.15) 0 0.5px, transparent 0.75px 3px);
  background-size: 7px 7px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: clamp(120px, 16vh, 180px);
  padding-bottom: 100px;
}

.hero-content h1 {
  max-width: 950px;
  margin-bottom: 28px;
  font-size: clamp(58px, 7.7vw, 110px);
}

.hero-content h1 em {
  color: #d7ece9;
}

.hero-copy {
  max-width: 590px;
  margin-bottom: 38px;
  color: rgba(255, 253, 248, 0.85);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.55;
}

.video-control {
  position: absolute;
  right: 30px;
  bottom: 28px;
  z-index: 3;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 10px;
  padding: 8px 13px;
  color: var(--white);
  background: rgba(7, 31, 36, 0.35);
  border: 1px solid var(--line-light);
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.pause-icon {
  width: 9px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-left: 2px solid currentColor;
}

.video-control.is-paused .pause-icon {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-right: 0;
  border-bottom: 6px solid transparent;
  border-left: 9px solid currentColor;
}

.video-control-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-caption {
  position: absolute;
  bottom: 32px;
  left: 30px;
  z-index: 3;
  display: flex;
  gap: 26px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-scroll {
  position: absolute;
  right: 24px;
  top: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right center;
}

.hero-scroll i {
  font-style: normal;
  transform: rotate(-90deg);
}

.section-heading {
  margin-bottom: clamp(48px, 6vw, 82px);
}

.section-heading h2,
.itinerary-copy h2,
.route-intro h2,
.trust-copy h2,
.boundary-note h2 {
  margin-bottom: 0;
  font-size: clamp(44px, 5.2vw, 72px);
}

.section-heading > p:last-child,
.section-heading--split > p,
.route-intro > p:not(.eyebrow),
.itinerary-copy > p:not(.eyebrow) {
  max-width: 490px;
  margin-top: 26px;
  color: rgba(21, 54, 59, 0.72);
  font-size: 17px;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  align-items: end;
  gap: 64px;
}

.section-heading--split > p,
.section-heading--split > .text-link {
  justify-self: end;
}

.section-heading--split > p {
  margin-bottom: 6px;
}

.section-heading--split > .text-link {
  margin-bottom: 10px;
}

.quick-finder {
  position: relative;
}

.quick-finder::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 56px;
  background: var(--line);
  content: "";
}

.finder-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) 1.2fr;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.35);
  box-shadow: 0 22px 55px rgba(18, 53, 57, 0.05);
}

.finder-strip label {
  position: relative;
  display: flex;
  min-height: 112px;
  flex-direction: column;
  justify-content: center;
  padding: 22px 24px;
  border-right: 1px solid var(--line);
}

.finder-strip label > span {
  margin-bottom: 11px;
  color: var(--adriatic);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.finder-strip select {
  width: 100%;
  padding: 0 25px 0 0;
  font-family: var(--serif);
  font-size: 19px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.finder-submit {
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  color: var(--white);
  background: var(--terracotta);
  border: 0;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 180ms ease;
}

.finder-submit:hover {
  background: var(--ink);
}

.finder-submit i {
  font-size: 21px;
  font-style: normal;
}

.decision-section {
  position: relative;
  overflow: hidden;
}

.decision-section::after {
  position: absolute;
  right: -6vw;
  bottom: -19vw;
  width: 46vw;
  height: 46vw;
  border: 1px solid rgba(147, 197, 199, 0.13);
  border-radius: 50%;
  content: "";
}

.decision-section .section-heading--split > p {
  color: rgba(255, 253, 248, 0.88);
}

.decision-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.decision-card {
  display: flex;
  min-height: 440px;
  flex-direction: column;
  padding: 30px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  transition: color 220ms ease, background 220ms ease;
}

.decision-card:hover {
  color: var(--ink);
  background: var(--white);
}

.decision-card--accent {
  color: var(--ink-deep);
  background: var(--sun);
}

.decision-card > span {
  color: var(--adriatic-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.decision-card:hover > span,
.decision-card--accent > span {
  color: var(--adriatic);
}

.decision-card h3 {
  margin: auto 0 26px;
  font-size: clamp(34px, 3vw, 46px);
}

.decision-card p {
  min-height: 96px;
  margin-bottom: 26px;
  color: rgba(255, 253, 248, 0.88);
  font-size: 13px;
}

.decision-card:hover p,
.decision-card--accent p {
  color: rgba(21, 54, 59, 0.72);
}

.decision-card > i {
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
}

.destination-list {
  border-top: 1px solid var(--line);
}

.destination-card {
  position: relative;
  display: grid;
  grid-template-columns: 80px minmax(0, 1.6fr) minmax(260px, 0.7fr) 30px;
  align-items: center;
  gap: 28px;
  min-height: 170px;
  border-bottom: 1px solid var(--line);
  transition: padding 200ms ease, background 200ms ease;
}

.destination-card:hover {
  padding-inline: 18px;
  background: rgba(255, 253, 248, 0.55);
}

.card-index {
  color: var(--terracotta);
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
}

.card-main > p {
  margin-bottom: 8px;
  color: var(--adriatic);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.card-main h3 {
  margin-bottom: 9px;
  font-size: clamp(35px, 4vw, 54px);
}

.card-main > span {
  display: block;
  max-width: 600px;
  color: rgba(21, 54, 59, 0.76);
  font-size: 13px;
}

.destination-card dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 0;
}

.destination-card dt {
  margin-bottom: 5px;
  color: rgba(21, 54, 59, 0.76);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.destination-card dd {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
}

.card-arrow {
  font-size: 22px;
  transition: transform 180ms ease;
}

.destination-card:hover .card-arrow {
  transform: translate(4px, -4px);
}

.destination-card--compact {
  grid-template-columns: 70px minmax(0, 1fr) minmax(240px, 0.6fr) 30px;
  min-height: 128px;
}

.route-section {
  background: var(--paper-deep);
}

.route-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(60px, 9vw, 130px);
}

.route-intro {
  align-self: start;
}

.route-intro .button {
  margin-top: 24px;
}

.route-list {
  border-top: 1px solid var(--line);
}

.route-row {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) auto 24px;
  min-height: 118px;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  transition: padding 180ms ease, color 180ms ease;
}

.route-row:hover {
  padding-inline: 14px;
  color: var(--adriatic);
}

.route-number {
  color: var(--terracotta);
  font-family: var(--serif);
  font-style: italic;
}

.route-name {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--serif);
  font-size: clamp(24px, 2.8vw, 36px);
  letter-spacing: -0.03em;
}

.route-name i {
  font-family: var(--sans);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}

.route-meta {
  color: rgba(21, 54, 59, 0.76);
  font-size: 11px;
  white-space: nowrap;
}

.route-arrow {
  transition: transform 180ms ease;
}

.route-row:hover .route-arrow {
  transform: translate(3px, -3px);
}

.itinerary-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
}

.itinerary-visual {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  color: var(--white);
  background: var(--adriatic);
  box-shadow: var(--shadow);
}

.itinerary-visual::before,
.itinerary-visual::after {
  position: absolute;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 50%;
  content: "";
}

.itinerary-visual::before {
  right: -120px;
  bottom: -100px;
  width: 520px;
  height: 520px;
}

.itinerary-visual::after {
  top: -70px;
  left: -80px;
  width: 360px;
  height: 360px;
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.17;
  background-image: linear-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.35) 1px, transparent 1px);
  background-size: 58px 58px;
}

.map-route {
  position: absolute;
  top: 115px;
  left: 47%;
  width: 2px;
  height: 380px;
  background: var(--sun);
  transform: rotate(8deg);
  transform-origin: top;
}

.map-route::before,
.map-route::after {
  position: absolute;
  left: 50%;
  width: 12px;
  height: 12px;
  background: var(--sun);
  border: 4px solid var(--adriatic);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.map-route::before { top: 0; }
.map-route::after { bottom: 0; }

.map-label {
  position: absolute;
  z-index: 2;
  padding: 7px 10px;
  color: var(--ink-deep);
  background: var(--white);
  font-size: 11px;
  font-weight: 700;
}

.map-label--a { top: 92px; left: 57%; }
.map-label--b { top: 260px; left: 30%; }
.map-label--c { top: 410px; left: 60%; }
.map-label--d { top: 515px; left: 34%; }

.map-note {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: flex;
  width: 150px;
  min-height: 105px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  color: var(--ink);
  background: var(--sun);
}

.map-note strong {
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 500;
}

.map-note span {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.itinerary-copy > p:not(.eyebrow) {
  margin-bottom: 28px;
}

.itinerary-copy ul {
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.itinerary-copy li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 600;
}

.trust-band {
  padding-block: 95px;
  color: var(--white);
  background: var(--olive);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 0.45fr) 1.65fr;
  gap: 36px;
}

.trust-grid > div:not(.trust-copy) {
  padding-right: 28px;
  border-right: 1px solid rgba(255, 253, 248, 0.25);
}

.trust-grid > div > span {
  display: block;
  margin-bottom: 13px;
  font-family: var(--serif);
  font-size: 62px;
  line-height: 1;
}

.trust-grid > div > p {
  color: var(--white);
  font-size: 11px;
}

.trust-copy {
  padding-left: 34px;
}

.trust-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(35px, 4vw, 55px);
}

.trust-copy .eyebrow {
  color: var(--white);
}

.site-footer {
  color: var(--white);
  background: var(--ink-deep);
}

.footer-lead {
  display: flex;
  min-height: 400px;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding-block: 70px;
  border-bottom: 1px solid var(--line-light);
}

.footer-lead h2 {
  margin: 0;
  font-size: clamp(48px, 6vw, 82px);
}

.circle-link {
  display: flex;
  width: 150px;
  height: 150px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--sun);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  transition: transform 200ms ease;
}

.circle-link:hover {
  transform: rotate(5deg) scale(1.04);
}

.circle-link span {
  margin-left: 6px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 0.8fr 0.8fr;
  gap: 70px;
  padding-block: 70px;
}

.footer-grid h3 {
  margin-bottom: 22px;
  color: var(--adriatic-light);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) a {
  display: block;
  margin-bottom: 11px;
  color: rgba(255, 253, 248, 0.88);
  font-size: 13px;
}

.footer-grid > div:not(.footer-brand) a:hover {
  color: var(--white);
}

.footer-brand p {
  max-width: 370px;
  margin-top: 22px;
  color: rgba(255, 253, 248, 0.88);
  font-size: 13px;
}

.footer-bottom {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--line-light);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 253, 248, 0.82);
  font-size: 12px;
}

.footer-bottom p:first-child {
  max-width: 650px;
}

.breadcrumbs {
  margin-bottom: 70px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(21, 54, 59, 0.76);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 8px;
  content: "/";
}

.page-hero {
  position: relative;
  padding: 158px 0 94px;
  overflow: hidden;
  background: var(--paper);
}

.page-hero::after {
  position: absolute;
  right: -12vw;
  bottom: -26vw;
  width: 52vw;
  height: 52vw;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

.page-hero .shell {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  max-width: 1000px;
  margin-bottom: 30px;
  font-size: clamp(58px, 7.4vw, 104px);
}

.page-hero > .shell > p:last-child,
.page-hero-grid > p,
.destination-title > p {
  max-width: 610px;
  margin-bottom: 0;
  color: rgba(21, 54, 59, 0.7);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
}

.page-hero--country {
  padding-bottom: 115px;
  color: var(--white);
  background: var(--adriatic);
}

.page-hero--country::after {
  border-color: rgba(255, 255, 255, 0.16);
}

.page-hero--country .breadcrumbs ol,
.page-hero--country > .shell > p:last-child {
  color: rgba(255, 253, 248, 0.92);
}

.country-kicker {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 25px;
  color: rgba(255, 253, 248, 0.92);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fact-ribbon {
  color: var(--white);
  background: var(--ink-deep);
}

.fact-ribbon dl {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
}

.fact-ribbon--country dl {
  grid-template-columns: repeat(5, 1fr);
}

.fact-ribbon dl > div {
  min-height: 112px;
  padding: 28px 28px 24px 0;
  border-right: 1px solid var(--line-light);
}

.fact-ribbon dl > div:not(:first-child) {
  padding-left: 28px;
}

.fact-ribbon dt {
  margin-bottom: 8px;
  color: var(--adriatic-light);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fact-ribbon dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 19px;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.story-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 30px;
  background: var(--paper);
  transition: color 180ms ease, background 180ms ease;
}

.story-card:hover {
  color: var(--white);
  background: var(--adriatic);
}

.story-card > span {
  color: var(--terracotta);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-card h3 {
  margin: auto 0 20px;
  font-size: 35px;
}

.story-card p {
  color: rgba(21, 54, 59, 0.76);
  font-size: 13px;
}

.story-card:hover p {
  color: rgba(255, 253, 248, 0.88);
}

.story-card i {
  margin-top: 14px;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
}

.destination-title,
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: 75px;
}

.destination-title h1,
.page-hero-grid h1 {
  margin-bottom: 0;
}

.destination-tags,
.trip-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 52px;
}

.destination-tags span,
.trip-tags span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  font-size: 10px;
  font-weight: 700;
  text-transform: capitalize;
}

.destination-detail,
.route-detail,
.border-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(290px, 0.5fr);
  align-items: start;
  gap: clamp(55px, 9vw, 130px);
}

.detail-main > h2,
.booking-card h2,
.border-detail h2 {
  margin-bottom: 26px;
  font-size: clamp(42px, 4.7vw, 66px);
}

.lead {
  max-width: 730px;
  margin-bottom: 56px;
  color: rgba(21, 54, 59, 0.78);
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.3;
}

.fit-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-bottom: 70px;
  background: var(--line);
  border: 1px solid var(--line);
}

.fit-columns > div {
  padding: 28px;
  background: var(--paper);
}

.fit-columns h3 {
  margin-bottom: 22px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fit-columns ul,
.booking-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-columns li,
.booking-card li {
  padding-block: 10px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  text-transform: capitalize;
}

.fit-columns li::before,
.booking-card li::before {
  margin-right: 9px;
  color: var(--terracotta);
  content: "•";
}

.practical-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.practical-grid article {
  display: grid;
  grid-template-columns: 55px 0.55fr 1fr;
  gap: 24px;
  padding-block: 30px;
  border-bottom: 1px solid var(--line);
}

.practical-grid article > span {
  color: var(--terracotta);
  font-family: var(--serif);
  font-style: italic;
}

.practical-grid h3 {
  margin: 0;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.practical-grid p {
  margin: 0;
  color: rgba(21, 54, 59, 0.76);
  font-size: 13px;
}

/* Each "Getting around" clause is an answer, so it carries the question it
   answers instead of standing alone as a fragment. */
.practical-grid dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.practical-grid dt {
  color: var(--adriatic);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.practical-grid dd {
  margin: 0;
  font-size: 13px;
}

.booking-card {
  position: sticky;
  top: 112px;
  max-height: calc(100vh - 132px);
  padding: 34px;
  overflow-y: auto;
  color: var(--ink);
  background: var(--sun);
  box-shadow: var(--shadow);
}

.booking-card .eyebrow {
  color: rgba(21, 54, 59, 0.8);
}

.booking-card > p:not(.eyebrow) {
  margin-bottom: 26px;
  font-size: 13px;
}

.booking-card h3 {
  margin: 30px 0 12px;
  padding-top: 22px;
  border-top: 1px solid rgba(21, 54, 59, 0.22);
  font-size: 22px;
}

.booking-card > p.booking-link {
  margin-bottom: 0;
  font-size: 14px;
}

.booking-card .booking-link a {
  color: var(--ink-deep);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(21, 54, 59, 0.4);
}

.booking-card .booking-link a:hover {
  border-bottom-color: var(--ink-deep);
}

/* Sits directly under the sentence that declines to publish a queue figure,
   and gives the reason that sentence leaves unexplained. */
.booking-card > p.border-wait-note {
  margin: -14px 0 26px;
  padding-left: 12px;
  border-left: 2px solid rgba(21, 54, 59, 0.22);
  font-size: 12px;
}

.booking-card > p.cta-choice {
  margin: 18px 0 4px;
  padding: 14px 16px;
  background: rgba(255, 253, 248, 0.72);
  border-left: 3px solid var(--terracotta);
  font-size: 12px;
}

.booking-card .button {
  width: 100%;
  margin-top: 10px;
}

.booking-card .button + .button {
  margin-top: 10px;
}

.booking-card small {
  display: block;
  margin-top: 15px;
  color: rgba(21, 54, 59, 0.76);
  font-size: 9px;
  line-height: 1.5;
}

.sources-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  margin-top: var(--section-space);
  margin-bottom: var(--section-space);
  padding-top: 55px;
  border-top: 1px solid var(--line);
}

.sources-block h2 {
  margin-bottom: 14px;
  font-size: 36px;
}

.sources-block p {
  color: rgba(21, 54, 59, 0.76);
  font-size: 12px;
}

.sources-block ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sources-block li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  font-weight: 600;
}

.sources-block a:hover {
  color: var(--adriatic);
}

.page-hero--route,
.page-hero--compare,
.page-hero--itinerary,
.page-hero--border {
  min-height: 650px;
}

.page-hero--route {
  color: var(--white);
  background: var(--ink-deep);
}

.page-hero--route .eyebrow {
  color: var(--adriatic-light);
}

.page-hero--route::after {
  border-color: rgba(255, 253, 248, 0.14);
}

.page-hero--route .breadcrumbs ol,
.page-hero--route > .shell > p:not(.eyebrow) {
  color: rgba(255, 253, 248, 0.92);
}

.page-hero--route h1 span,
.page-hero--compare h1 span {
  font-family: var(--sans);
  font-size: 0.2em;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  vertical-align: middle;
}

.route-visual {
  position: absolute;
  top: 42%;
  right: 2vw;
  width: 28vw;
  min-width: 300px;
  height: 110px;
}

.route-visual::before {
  position: absolute;
  top: 50%;
  right: 15px;
  left: 15px;
  height: 1px;
  background: var(--sun);
  content: "";
}

.route-visual i {
  position: absolute;
  top: calc(50% - 7px);
  width: 15px;
  height: 15px;
  background: var(--sun);
  border: 4px solid var(--ink-deep);
  border-radius: 50%;
}

.route-visual i:first-child { left: 8px; }
.route-visual i:nth-child(2) { right: 8px; }

.route-visual span {
  position: absolute;
  top: 12px;
  left: 50%;
  color: var(--adriatic-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  transform: translateX(-50%);
  text-transform: uppercase;
}

.alert-card,
.stop-card {
  margin-block: 50px;
  padding: 30px;
  border-left: 4px solid var(--terracotta);
  background: var(--paper-deep);
}

.alert-card > span {
  color: var(--terracotta-deep);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.alert-card h3,
.stop-card h3 {
  margin: 13px 0 15px;
  font-size: 32px;
  line-height: 1.08;
}

/* A route can carry more than one verified stop, so the card lists them all. */
.stop-card ul {
  margin: 13px 0 15px;
  padding: 0;
  list-style: none;
}

.stop-card li {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.14;
}

.stop-card li + li {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.alert-card p,
.stop-card p {
  margin-bottom: 14px;
  color: rgba(21, 54, 59, 0.7);
  font-size: 13px;
}

.alert-card a {
  font-size: 11px;
  font-weight: 700;
}

.step-list {
  border-top: 1px solid var(--line);
}

.step-list article {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.step-list article > span {
  color: var(--terracotta);
  font-family: var(--serif);
  font-style: italic;
}

.step-list h3 {
  margin: 0 0 8px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
}

.step-list p {
  margin: 0;
  color: rgba(21, 54, 59, 0.76);
  font-size: 13px;
}

.page-hero--compare {
  color: var(--white);
  background: var(--terracotta);
}

.page-hero--compare .eyebrow {
  color: var(--white);
}

.page-hero--compare::after {
  border-color: rgba(255, 253, 248, 0.18);
}

.page-hero--compare .breadcrumbs ol,
.page-hero--compare > .shell > p:last-child {
  color: rgba(255, 253, 248, 0.92);
}

.verdict-band {
  padding-block: 42px;
  color: var(--ink);
  background: var(--sun);
}

.verdict-band .shell {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 45px;
}

.verdict-band span {
  padding-top: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.verdict-band p {
  max-width: 850px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.25;
}

.comparison-head {
  display: grid;
  grid-template-columns: 1fr 70px 1fr;
  align-items: center;
  gap: 30px;
  margin-bottom: 60px;
  text-align: center;
}

.comparison-head > div > span {
  color: var(--terracotta);
  font-size: 10px;
  font-weight: 700;
}

.comparison-head h2 {
  margin: 8px 0;
  font-size: clamp(48px, 6vw, 78px);
}

.comparison-head p {
  margin: 0;
  color: rgba(21, 54, 59, 0.76);
  font-size: 11px;
  text-transform: capitalize;
}

.comparison-head > i {
  color: rgba(21, 54, 59, 0.76);
  font-family: var(--serif);
  font-size: 24px;
}

.comparison-table {
  border-top: 1px solid var(--line);
}

.comparison-row {
  display: grid;
  grid-template-columns: 0.55fr 1fr 1fr;
  gap: 30px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.comparison-row strong {
  font-size: 11px;
  text-transform: uppercase;
}

.comparison-row span {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.25;
}

.comparison-row--head {
  padding-block: 14px;
  color: var(--adriatic);
}

.comparison-row--head span {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}

.choose-grid article {
  padding: clamp(34px, 5vw, 65px);
  background: var(--ink-deep);
}

.choose-grid article > span {
  color: var(--adriatic-light);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.choose-grid h2 {
  margin: 35px 0 20px;
  overflow-wrap: anywhere;
  font-size: clamp(40px, 5.2vw, 60px);
}

.choose-grid p {
  max-width: 450px;
  margin-bottom: 30px;
  color: rgba(255, 253, 248, 0.88);
}

.page-hero--itinerary {
  color: var(--white);
  background: var(--olive);
}

.page-hero--itinerary .eyebrow {
  color: var(--white);
}

.page-hero--itinerary::after {
  border-color: rgba(255, 253, 248, 0.18);
}

.page-hero--itinerary .breadcrumbs ol,
.page-hero--itinerary > .shell > p:last-of-type {
  color: var(--white);
}

.page-hero--itinerary .trip-tags span {
  border-color: rgba(255, 253, 248, 0.26);
}

.day-list {
  border-top: 1px solid var(--line);
}

.day-row {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) minmax(260px, 0.8fr);
  gap: 35px;
  padding: 35px 0;
  border-bottom: 1px solid var(--line);
}

.day-number span,
.day-route span {
  display: block;
  margin-bottom: 6px;
  color: var(--adriatic);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.day-number strong {
  font-family: var(--serif);
  font-size: 35px;
  font-weight: 500;
}

.day-place h3 {
  margin: 0 0 9px;
  font-size: 35px;
}

.day-place p {
  max-width: 520px;
  margin: 0;
  color: rgba(21, 54, 59, 0.76);
  font-size: 13px;
}

.day-route {
  align-self: center;
  padding-left: 30px;
  border-left: 1px solid var(--line);
}

.day-route strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
}

.day-route i {
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
}

.day-route--empty {
  color: rgba(21, 54, 59, 0.76);
}

.boundary-note {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}

.boundary-note p:last-child {
  color: rgba(21, 54, 59, 0.7);
  font-size: 17px;
}

.page-hero--border {
  color: var(--ink);
  background: var(--sun);
}

.page-hero--border .eyebrow {
  color: var(--ink-deep);
}

.page-hero--border > .shell > p:last-child {
  color: rgba(21, 54, 59, 0.82);
}

.truth-band {
  color: var(--white);
  background: var(--ink-deep);
}

.truth-band .shell {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.truth-band .shell > div {
  min-height: 110px;
  padding: 28px 30px 25px 0;
  border-right: 1px solid var(--line-light);
}

.truth-band .shell > div:not(:first-child) {
  padding-left: 30px;
}

.truth-band span {
  display: block;
  margin-bottom: 7px;
  color: var(--adriatic-light);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.truth-band strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
}

.checklist {
  border-top: 1px solid var(--line);
}

.checklist article {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 25px;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}

.checklist span {
  color: var(--terracotta);
  font-family: var(--serif);
  font-style: italic;
}

.checklist p {
  margin: 0;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.25;
}

.page-hero--finder {
  color: var(--white);
  background: var(--adriatic);
}

.page-hero--finder .eyebrow {
  color: var(--white);
}

.page-hero--finder::after {
  border-color: rgba(255, 253, 248, 0.16);
}

.page-hero--finder .breadcrumbs ol,
.page-hero--finder .page-hero-grid > p {
  color: rgba(255, 253, 248, 0.92);
}

.finder-workspace {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(50px, 8vw, 110px);
}

.finder-panel {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.finder-panel fieldset {
  margin: 0 0 30px;
  padding: 0;
  border: 0;
}

.finder-panel legend {
  margin-bottom: 13px;
  font-family: var(--serif);
  font-size: 22px;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.option-grid--wide {
  grid-template-columns: repeat(2, 1fr);
}

.option-grid label {
  cursor: pointer;
}

.option-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-grid span {
  display: flex;
  min-height: 43px;
  align-items: center;
  justify-content: center;
  padding: 7px;
  border: 1px solid var(--line);
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  transition: color 150ms ease, background 150ms ease, border-color 150ms ease;
}

.option-grid input:checked + span {
  color: var(--white);
  background: var(--adriatic);
  border-color: var(--adriatic);
}

.option-grid input:focus-visible + span {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
}

.finder-panel > .button {
  width: 100%;
}

.results-intro h2 {
  margin-bottom: 24px;
  font-size: clamp(43px, 5vw, 68px);
}

.results-intro > p:last-child {
  color: rgba(21, 54, 59, 0.76);
}

.result-card {
  position: relative;
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 25px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.result-rank {
  display: flex;
  width: 78px;
  height: 78px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--adriatic);
  border-radius: 50%;
}

.result-rank strong {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
}

.result-rank span {
  max-width: 68px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

.result-card:nth-of-type(2) .result-rank,
.result-card:nth-of-type(3) .result-rank {
  color: var(--ink);
  background: var(--paper-deep);
}

.result-card h3 {
  margin: 0 0 7px;
  font-size: 37px;
}

.result-card p {
  max-width: 600px;
  margin-bottom: 12px;
  color: rgba(21, 54, 59, 0.76);
  font-size: 13px;
}

.result-reasons {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 16px;
}

.result-reasons span {
  padding: 6px 9px;
  color: var(--adriatic);
  background: rgba(45, 107, 119, 0.09);
  font-size: 11px;
  font-weight: 700;
}

.result-card a {
  font-size: 11px;
  font-weight: 700;
}

/* A generated route is useful only if the traveller can keep it. The trip pack
   remains a normal lightweight page component; save/share/print use browser
   capabilities and no account or remote state. */
.trip-builder-section {
  background: var(--paper-deep);
}

.trip-builder-section > .shell {
  max-width: 1080px;
}

.trip-intro {
  max-width: 720px;
  margin: -22px 0 40px;
  color: rgba(21, 54, 59, 0.78);
  font-size: 15px;
  line-height: 1.65;
}

.trip-panel {
  display: grid;
  gap: 24px;
  margin-bottom: 42px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.trip-panel fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.trip-panel legend {
  margin-bottom: 13px;
  font-family: var(--serif);
  font-size: 22px;
}

.trip-panel > .button {
  justify-self: start;
}

.trip-resume {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
  padding: 26px;
  background: var(--sun);
  border-left: 5px solid var(--terracotta);
}

.trip-resume[hidden] {
  display: none;
}

.trip-resume h3 {
  margin: 6px 0 8px;
  font-size: 28px;
}

.trip-resume p:last-child {
  max-width: 650px;
  margin: 0;
  font-size: 13px;
}

.trip-resume-actions,
.trip-plan-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.text-button {
  padding: 9px 2px;
  color: var(--ink-deep);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(21, 54, 59, 0.45);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
}

.text-button:hover {
  border-bottom-color: var(--ink-deep);
}

.text-button:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 4px;
}

.trip-results {
  display: grid;
  gap: 32px;
  scroll-margin-top: 100px;
}

.trip-results[hidden] {
  display: none;
}

.trip-option {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(21, 54, 59, 0.07);
}

.trip-option--selected {
  border-color: var(--adriatic);
  box-shadow: 0 18px 48px rgba(21, 54, 59, 0.13);
}

.trip-option-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  align-items: end;
  gap: 34px;
  padding: clamp(25px, 4vw, 40px);
  color: var(--white);
  background: var(--ink-deep);
}

.trip-option--selected .trip-option-head {
  background: var(--adriatic);
}

.trip-option-label {
  margin: 0 0 8px;
  color: var(--adriatic-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trip-option--selected .trip-option-label {
  color: var(--white);
}

.trip-option-head h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(34px, 4vw, 52px);
}

.trip-totals {
  margin: 0;
  color: rgba(255, 253, 248, 0.9);
  font-size: 13px;
  line-height: 1.65;
}

.trip-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 18px clamp(25px, 4vw, 40px);
  list-style: none;
  background: rgba(239, 176, 91, 0.2);
  border-bottom: 1px solid var(--line);
}

.trip-flag {
  padding: 7px 10px;
  background: var(--white);
  border: 1px solid rgba(21, 54, 59, 0.16);
  font-size: 11px;
  font-weight: 700;
}

.trip-bases {
  padding: 0 clamp(25px, 4vw, 40px);
}

.trip-base {
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.trip-base:last-child {
  border-bottom: 0;
}

.trip-base-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 25px;
}

.trip-base-head h4 {
  margin: 0;
  font-size: 31px;
}

.trip-nights {
  flex: 0 0 auto;
  color: var(--terracotta);
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
}

.trip-why {
  margin: 8px 0 0;
  color: rgba(21, 54, 59, 0.75);
  font-size: 12px;
}

.trip-leg {
  display: grid;
  grid-template-columns: minmax(150px, 0.7fr) minmax(210px, 1fr) minmax(145px, 0.7fr) auto;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  padding: 18px;
  background: var(--paper);
  border-left: 3px solid var(--adriatic);
}

.trip-leg-to {
  font-weight: 700;
}

.trip-leg-facts,
.trip-leg-checked,
.trip-leg-border {
  color: rgba(21, 54, 59, 0.76);
  font-size: 11px;
  line-height: 1.45;
}

.trip-leg-border {
  grid-column: 1 / -1;
  padding-top: 9px;
  color: var(--ink-deep);
  border-top: 1px solid var(--line);
  font-weight: 700;
}

.trip-leg .text-link {
  justify-self: end;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 700;
}

.trip-leg--end {
  display: block;
  color: rgba(21, 54, 59, 0.7);
  border-left-color: var(--terracotta);
  font-size: 12px;
}

.trip-pack-caveat {
  margin: 0 clamp(25px, 4vw, 40px);
  padding: 24px;
  background: var(--sun);
  border-left: 4px solid var(--terracotta);
}

.trip-pack-caveat h4 {
  margin: 0 0 8px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 800;
}

.trip-pack-caveat p {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
}

.trip-plan-actions {
  padding: 24px clamp(25px, 4vw, 40px) 34px;
}

.trip-plan-actions .button {
  min-height: 45px;
  padding: 12px 18px;
  font-size: 11px;
}

.trip-plan-notice {
  padding: 18px 22px;
  background: var(--white);
  border-left: 5px solid var(--adriatic);
}

.trip-plan-notice--warning {
  background: var(--sun);
  border-left-color: var(--terracotta);
}

.trip-plan-notice--success {
  background: rgba(45, 107, 119, 0.1);
}

.trip-plan-notice p {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

.trip-empty {
  padding: clamp(28px, 5vw, 52px);
  background: var(--white);
  border: 1px solid var(--line);
}

.trip-empty h3 {
  margin-bottom: 16px;
  font-size: 36px;
}

.trip-diagnostic {
  color: rgba(21, 54, 59, 0.72);
  font-size: 12px;
}

.route-mode-decision {
  margin: 34px 0;
  padding: clamp(24px, 3vw, 34px);
  background: var(--sun);
  border-left: 5px solid var(--terracotta);
}

.route-mode-decision h3 {
  margin: 8px 0 12px;
  font-size: clamp(29px, 3vw, 40px);
}

.route-mode-decision > p:last-child {
  margin: 0;
  color: rgba(21, 54, 59, 0.86);
  line-height: 1.65;
}

.page-hero--editorial {
  color: var(--white);
  background: var(--ink-deep);
}

.page-hero--editorial .eyebrow {
  color: var(--adriatic-light);
}

.page-hero--editorial::after {
  border-color: rgba(255, 253, 248, 0.14);
}

.page-hero--editorial .breadcrumbs ol,
.page-hero--editorial > .shell > p:last-child {
  color: var(--white);
}

.editorial-body {
  display: grid;
  grid-template-columns: 0.45fr 1.55fr;
  gap: 80px;
}

.editorial-index {
  position: sticky;
  top: 110px;
  align-self: start;
}

.editorial-index span {
  font-family: var(--serif);
  font-size: 24px;
}

.editorial-index p {
  margin-top: 8px;
  color: rgba(21, 54, 59, 0.76);
  font-size: 10px;
}

.editorial-sections {
  border-top: 1px solid var(--line);
}

.editorial-sections article {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 25px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}

.editorial-sections article > span {
  color: var(--terracotta);
  font-family: var(--serif);
  font-style: italic;
}

.editorial-sections h2 {
  margin-bottom: 14px;
  font-size: 36px;
}

.editorial-sections p {
  max-width: 690px;
  color: rgba(21, 54, 59, 0.72);
  font-size: 16px;
}

.commercial-action {
  margin-top: 18px;
}

.commercial-action .button {
  width: 100%;
  justify-content: space-between;
}

.affiliate-note,
.provider-note {
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.55;
}

.affiliate-note {
  padding: 10px 12px;
  color: var(--ink-deep);
  background: rgba(255, 253, 248, 0.72);
  border-left: 3px solid var(--terracotta);
}

.provider-note {
  color: rgba(21, 54, 59, 0.82);
}

.booking-warning {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(21, 54, 59, 0.22);
  font-size: 12px;
}

.editorial-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 34px 0 10px;
  padding: 11px 14px;
  color: var(--ink-deep);
  background: var(--paper-deep);
  border-left: 3px solid var(--terracotta);
  font-size: 12px;
}

.editorial-label span {
  color: rgba(21, 54, 59, 0.78);
}

.stay-decision {
  margin-top: 50px;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
}

.stay-decision h3,
.non-car-options h3 {
  margin-bottom: 22px;
  font-size: 34px;
}

.stay-decision ol {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 22px;
}

.stay-decision li {
  padding-left: 6px;
  color: rgba(21, 54, 59, 0.86);
}

.destination-guide > .section-heading > p,
.comparison-questions > .section-heading > p,
.itinerary-choice > .section-heading > p {
  max-width: 470px;
}

.destination-guide-grid,
.comparison-question-grid,
.itinerary-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.destination-guide-grid article,
.comparison-question-grid article,
.itinerary-choice-grid article {
  min-width: 0;
  padding: clamp(26px, 3.2vw, 42px);
  background: var(--paper);
}

.destination-guide-grid article > span,
.comparison-question-grid article > span,
.itinerary-choice-grid article > span {
  display: block;
  margin-bottom: 34px;
  color: var(--terracotta);
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
}

.destination-guide-grid h3,
.comparison-question-grid h3,
.itinerary-choice-grid h3 {
  margin-bottom: 16px;
  font-size: clamp(27px, 2.6vw, 38px);
  line-height: 1.03;
}

.destination-guide-grid p,
.comparison-question-grid p,
.itinerary-choice-grid p {
  margin: 0;
  color: rgba(21, 54, 59, 0.76);
  font-size: 14px;
  line-height: 1.7;
}

.activity-anchor-list {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(38px, 7vw, 100px);
  margin-top: 24px;
  padding: clamp(30px, 4.8vw, 62px);
  color: var(--white);
  background: var(--adriatic);
}

.activity-anchor-list h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(32px, 3.6vw, 49px);
}

.activity-anchor-list .eyebrow--light {
  color: var(--white);
}

.activity-anchor-list ul {
  display: grid;
  align-content: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.activity-anchor-list li {
  position: relative;
  padding: 16px 12px 16px 34px;
  border-top: 1px solid rgba(255, 253, 248, 0.2);
  color: rgba(255, 253, 248, 0.88);
  font-size: 14px;
}

.activity-anchor-list li:last-child {
  border-bottom: 1px solid rgba(255, 253, 248, 0.2);
}

.activity-anchor-list li::before {
  position: absolute;
  top: 17px;
  left: 8px;
  color: var(--sun);
  content: "→";
}

.comparison-question-grid article:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.itinerary-choice-grid article {
  display: flex;
  min-height: 330px;
  flex-direction: column;
}

.itinerary-choice-grid article > span {
  font-family: var(--sans);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.itinerary-choice-grid article > a {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 28px;
  color: var(--adriatic);
  font-size: 12px;
  font-weight: 700;
}

.route-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 36px 0 20px;
  background: var(--line);
  border: 1px solid var(--line);
}

.route-proof > div,
.route-proof > a {
  padding: 18px;
  background: var(--white);
}

.route-proof span {
  display: block;
  margin-bottom: 5px;
  color: rgba(21, 54, 59, 0.76);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-proof strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
}

.route-proof > a {
  grid-column: 1 / -1;
  color: var(--adriatic);
  font-size: 12px;
  font-weight: 700;
}

.dynamic-caveat {
  margin-bottom: 34px;
  padding: 16px 18px;
  color: rgba(21, 54, 59, 0.88);
  background: var(--paper-deep);
  font-size: 13px;
}

.non-car-options {
  margin-top: 44px;
  padding-top: 38px;
  border-top: 1px solid var(--line);
}

.non-car-options article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.non-car-options article > span {
  color: var(--terracotta);
  font-size: 11px;
  font-weight: 700;
  text-transform: capitalize;
}

.non-car-options article p {
  margin: 0;
  color: rgba(21, 54, 59, 0.82);
  font-size: 15px;
  line-height: 1.65;
}

.finder-select-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 30px;
}

.finder-select-grid label > span {
  display: block;
  margin-bottom: 7px;
  color: rgba(21, 54, 59, 0.8);
  font-size: 11px;
  font-weight: 700;
}

.finder-select-grid select {
  width: 100%;
  min-height: 46px;
  padding: 8px 10px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: 12px;
}

.planner-boundary {
  margin: 28px 0 18px;
  padding: 20px;
  background: var(--sun);
}

.planner-boundary strong {
  font-size: 12px;
  text-transform: uppercase;
}

.planner-boundary p {
  margin: 7px 0 12px;
  color: var(--ink-deep);
  font-size: 13px;
}

.planner-boundary a,
.result-tradeoff strong {
  font-size: 12px;
  font-weight: 700;
}

.result-tradeoff {
  margin: 0 0 15px;
  padding: 10px 12px;
  background: var(--paper-deep);
  border-left: 3px solid var(--terracotta);
}

.planner-method {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: clamp(50px, 8vw, 110px);
}

.planner-method h2 {
  font-size: clamp(44px, 5vw, 68px);
}

.planner-method-grid {
  display: grid;
  gap: 0;
}

.planner-method-grid article {
  display: grid;
  grid-template-columns: 50px 0.55fr 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.planner-method-grid strong {
  color: var(--terracotta-deep);
  font-family: var(--serif);
  font-style: italic;
}

.planner-method-grid h3,
.planner-method-grid p {
  margin: 0;
}

.planner-method-grid h3 {
  font-family: var(--sans);
  font-size: 14px;
}

.planner-method-grid p {
  color: rgba(21, 54, 59, 0.82);
  font-size: 13px;
}

.trip-summary {
  padding: 32px 0;
  color: var(--ink-deep);
  background: var(--sun);
}

.trip-summary dl {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
}

.trip-summary dl > div {
  padding: 0 24px;
  border-left: 1px solid rgba(21, 54, 59, 0.24);
}

.trip-summary dl > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.trip-summary dt {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.trip-summary dd {
  margin: 5px 0 0;
  font-family: var(--serif);
  font-size: 24px;
}

.trip-summary p {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(21, 54, 59, 0.24);
  font-size: 12px;
}

.transport-plan,
.departure-plan,
.cross-border-tools {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.transport-plan h2,
.departure-plan h2,
.cross-border-tools h2 {
  font-size: clamp(42px, 5vw, 66px);
}

.transport-plan ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: transport;
}

.transport-plan li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 15px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  counter-increment: transport;
}

.transport-plan li::before {
  color: var(--terracotta);
  content: counter(transport, decimal-leading-zero);
  font-family: var(--serif);
  font-style: italic;
}

.departure-plan > div:last-child {
  display: grid;
  gap: 14px;
}

.departure-plan article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
}

.departure-plan article.is-recommended {
  border-left: 5px solid var(--terracotta);
}

.departure-plan article > span {
  color: var(--terracotta);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.departure-plan h3 {
  margin: 8px 0;
  font-size: 26px;
}

.departure-plan p {
  margin: 0;
  color: rgba(21, 54, 59, 0.82);
  font-size: 13px;
}

/* The booking section reads as three ordered bands: decide the bases, book the
   moving parts, then book the stays. Each band is its own bordered grid. */
.base-decisions,
.booking-sequence {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}

.base-decisions > article,
.booking-sequence > article,
.trip-booking-tools > article {
  padding: 26px;
  background: rgba(255, 253, 248, 0.06);
}

.base-decisions > article > span,
.booking-sequence > article > span {
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.base-decisions h3,
.booking-sequence h3,
.trip-booking-tools h3 {
  margin: 12px 0;
  font-size: 30px;
}

.base-decisions p,
.booking-sequence p,
.trip-booking-tools p {
  color: rgba(255, 253, 248, 0.88);
  font-size: 13px;
}

.booking-sequence .provider-note,
.trip-booking-tools .provider-note {
  color: rgba(255, 253, 248, 0.9);
}

.booking-sequence .affiliate-note,
.trip-booking-tools .affiliate-note {
  color: var(--ink-deep);
}

.base-decisions a {
  color: var(--white);
  border-bottom: 1px solid rgba(255, 253, 248, 0.42);
}

.base-decisions a:hover {
  border-bottom-color: var(--white);
}

.book-trip .section-heading--split > p {
  color: rgba(255, 253, 248, 0.92);
}

.book-trip .band-label {
  margin: 44px 0 14px;
}

.book-trip .band-label:first-of-type {
  margin-top: 0;
}

.trip-booking-tools {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}

.connectivity-grid,
.connectivity-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.connectivity-grid article,
.connectivity-actions > div {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
}

.connectivity-grid article > span {
  color: var(--terracotta);
  font-family: var(--serif);
  font-style: italic;
}

.connectivity-grid h3,
.connectivity-actions h2 {
  margin: 12px 0;
  font-size: 30px;
}

.connectivity-grid p,
.connectivity-actions p,
.cross-border-tools p {
  color: rgba(21, 54, 59, 0.84);
  font-size: 13px;
}

.cross-border-tools > div:last-child {
  padding: 28px;
  background: var(--sun);
}

.not-found {
  display: flex;
  min-height: 80vh;
  align-items: center;
  padding: 150px 0 100px;
  background: var(--sun);
}

.not-found h1 {
  margin-bottom: 28px;
  font-size: clamp(62px, 8vw, 108px);
}

.not-found p:not(.eyebrow) {
  margin-bottom: 34px;
  font-size: 18px;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Keep compact editorial copy readable at normal-text contrast. */
.section-heading > p:last-child,
.section-heading--split > p,
.route-intro > p:not(.eyebrow),
.itinerary-copy > p:not(.eyebrow),
.card-main > span,
.destination-card dt,
.route-meta,
.breadcrumbs ol,
.story-card p,
.practical-grid p,
.practical-grid dd,
.booking-card small,
.sources-block p,
.comparison-head p,
.day-place p,
.day-route--empty,
.result-card p,
.editorial-index p {
  color: rgba(21, 54, 59, 0.78);
}

.page-hero--country > .shell > p:last-child,
.page-hero--route > .shell > p:not(.eyebrow),
.page-hero--compare > .shell > p:last-child,
.page-hero--itinerary > .shell > p:last-of-type,
.page-hero--finder .page-hero-grid > p,
.page-hero--editorial > .shell > p:last-child {
  color: rgba(255, 253, 248, 0.92);
}

.non-car-options .transport-body {
  grid-column: 1 / -1;
  min-width: 0;
}

.non-car-options .transport-body p + p {
  margin-top: 16px;
}

.non-car-options .transport-checked {
  font-size: 12px;
}

.transport-sources {
  padding-left: 20px;
  font-size: 13px;
  overflow-wrap: anywhere;
}

.source-checked {
  display: block;
  margin-top: 6px;
  font-size: 11px;
}

.verification-status {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  margin-bottom: 22px;
  color: inherit;
  font-size: 13px;
  line-height: 1.6;
}

.transport-sources li + li {
  margin-top: 8px;
}

.reverse-route a,
.transport-sources a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-hero--itinerary > .shell > p:last-of-type {
  color: var(--white);
}

/* Restore light copy after the general light-section readability rule above. */
.book-trip .section-heading--split > p {
  color: rgba(255, 253, 248, 0.92);
}

/* Short labelled link groups that move travellers on to the next decision. */
.next-links-section {
  padding-block: clamp(40px, 5vw, 62px);
}

.next-links-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 30px;
  margin-top: 55px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.next-links-section > .next-links-band {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

/* A split-leg band sits inside a route's main column, not between sections. */
.next-links-band--inline {
  margin-top: 38px;
  padding-top: 26px;
}

.next-links .eyebrow {
  margin-bottom: 14px;
}

.next-links ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.next-links a {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.25;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

.next-links a:hover {
  border-bottom-color: var(--ink);
}

.summary-link {
  margin: 18px 0 0;
}

.summary-link a {
  color: var(--ink-deep);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(21, 54, 59, 0.4);
}

.summary-link a:hover {
  border-bottom-color: var(--ink-deep);
}

/* Verified border facts: figures in tables, every gap labelled. */
.green-card-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.green-card-facts {
  margin: 0;
}

.green-card-facts > div {
  display: grid;
  gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.green-card-facts > div:first-child {
  border-top: 1px solid var(--line);
}

.green-card-facts dt {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.green-card-facts dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.2;
}

/* Scope qualifier: keeps the yes/no headline while stating who it applies to. */
.green-card-facts dd span {
  display: block;
  margin-top: 8px;
  color: rgba(21, 54, 59, 0.78);
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.55;
}

.table-note {
  max-width: 730px;
  margin: 0 0 26px;
  color: rgba(21, 54, 59, 0.78);
  font-size: 13px;
}

.fact-table-wrap {
  overflow-x: auto;
}

.fact-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.fact-table caption {
  padding-bottom: 14px;
  color: var(--adriatic);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-align: left;
  text-transform: uppercase;
}

.fact-table th,
.fact-table td {
  padding: 16px 18px 16px 0;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  font-size: 13px;
  font-weight: 400;
}

.fact-table thead th {
  border-bottom-color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fact-table tbody th {
  padding-right: 26px;
  font-weight: 700;
}

.fact-table tbody th span {
  display: block;
  margin-top: 6px;
  max-width: 260px;
  color: rgba(21, 54, 59, 0.78);
  font-weight: 400;
}

.fact-table--operators {
  min-width: 780px;
}

@media (max-width: 1050px) {
  .decision-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .decision-card {
    min-height: 360px;
  }

  .finder-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .finder-strip label:nth-child(2),
  .finder-strip label:nth-child(4) {
    border-right: 0;
  }

  .finder-submit {
    grid-column: 1 / -1;
    min-height: 70px;
  }

  .destination-card {
    grid-template-columns: 60px minmax(0, 1fr) 250px 24px;
  }

  .route-layout,
  .itinerary-feature,
  .destination-detail,
  .route-detail,
  .border-detail,
  .finder-workspace,
  .planner-method,
  .transport-plan,
  .departure-plan,
  .cross-border-tools,
  .green-card-grid {
    grid-template-columns: 1fr;
  }

  .base-decisions,
  .booking-sequence,
  .trip-booking-tools {
    grid-template-columns: repeat(2, 1fr);
  }

  .connectivity-actions {
    grid-template-columns: 1fr;
  }

  .route-intro {
    max-width: 650px;
  }

  .itinerary-visual {
    min-height: 570px;
  }

  .booking-card {
    position: static;
    max-width: 520px;
    max-height: none;
    overflow-y: visible;
  }

  .fact-ribbon--country dl {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-copy {
    grid-column: 1 / -1;
    padding: 40px 0 0;
  }

  .route-visual {
    display: none;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 32px, 1240px);
    --section-space: 82px;
  }

  .content-narrow {
    width: min(100% - 32px, 920px);
  }

  .trip-summary dl,
  .connectivity-grid,
  .trip-booking-tools {
    grid-template-columns: 1fr;
  }

  .destination-guide-grid,
  .comparison-question-grid,
  .itinerary-choice-grid,
  .activity-anchor-list {
    grid-template-columns: 1fr;
  }

  .comparison-question-grid article:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .itinerary-choice-grid article {
    min-height: 0;
  }

  .trip-summary dl > div,
  .trip-summary dl > div:first-child {
    padding: 14px 0;
    border-top: 1px solid rgba(21, 54, 59, 0.24);
    border-left: 0;
  }

  .trip-summary dl > div:first-child {
    border-top: 0;
  }

  .route-proof,
  .non-car-options article,
  .planner-method-grid article {
    grid-template-columns: 1fr;
  }

  .route-proof > a {
    grid-column: auto;
  }

  .planner-method-grid article {
    gap: 8px;
  }

  .nav-shell {
    width: min(100% - 32px, 1400px);
    min-height: 72px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-of-type(1) {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-of-type(2) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: 72px;
    right: 0;
    left: 0;
    display: flex;
    height: calc(100svh - 72px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 30px 16px;
    color: var(--ink);
    background: var(--paper);
    opacity: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .site-nav > a:not(.nav-cta) {
    padding: 18px 6px;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 34px;
    font-weight: 500;
  }

  .site-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .language-switcher {
    padding: 18px 6px;
    border-bottom: 1px solid var(--line);
  }

  .language-switcher summary {
    width: auto;
    height: auto;
    place-items: start;
    border: 0;
    border-radius: 0;
    font-size: 13px;
  }

  .language-switcher details > div {
    position: static;
    display: flex;
    min-width: 0;
    flex-wrap: wrap;
    gap: 6px;
    padding: 12px 0 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .language-switcher a {
    padding: 8px 10px;
    border: 1px solid var(--line);
  }

  .nav-cta,
  .site-header--overlay:not(.is-scrolled):not(.menu-active) .nav-cta {
    min-height: 58px;
    justify-content: space-between;
    margin-top: 28px;
    color: var(--white);
    background: var(--ink);
  }

  .hero-content {
    padding-top: 140px;
    padding-bottom: 150px;
  }

  .hero-content h1 {
    font-size: clamp(51px, 13.5vw, 82px);
  }

  .hero-copy {
    max-width: 540px;
    font-size: 16px;
  }

  .hero-scroll {
    display: none;
  }

  .hero-caption {
    right: 16px;
    bottom: 20px;
    left: 16px;
    justify-content: space-between;
  }

  .video-control {
    right: 16px;
    bottom: 52px;
  }

  .section-heading--split,
  .destination-title,
  .page-hero-grid,
  .boundary-note,
  .sources-block,
  .editorial-body {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-heading--split > p,
  .section-heading--split > .text-link {
    justify-self: start;
  }

  .destination-card,
  .destination-card--compact {
    grid-template-columns: 42px minmax(0, 1fr) 24px;
    gap: 15px;
    padding-block: 24px;
  }

  .destination-card dl {
    grid-column: 2 / -1;
    grid-row: 2;
    max-width: 350px;
  }

  .destination-card .card-arrow {
    grid-column: 3;
    grid-row: 1;
  }

  .route-row {
    grid-template-columns: 38px minmax(0, 1fr) 20px;
    gap: 13px;
    padding-block: 20px;
  }

  .route-meta {
    grid-column: 2 / -1;
    grid-row: 2;
  }

  .route-arrow {
    grid-column: 3;
    grid-row: 1;
  }

  .route-name {
    flex-wrap: wrap;
  }

  .footer-lead {
    min-height: 350px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 30px;
  }

  .page-hero {
    padding-top: 128px;
  }

  .page-hero h1 {
    font-size: clamp(51px, 13vw, 80px);
  }

  .breadcrumbs {
    margin-bottom: 48px;
  }

  .fact-ribbon dl {
    grid-template-columns: 1fr 1fr;
  }

  .fact-ribbon dl > div:nth-child(2) {
    border-right: 0;
  }

  .story-grid {
    grid-template-columns: 1fr;
  }

  .sources-block {
    gap: 20px;
  }

  .editorial-index {
    position: static;
  }

  .verdict-band .shell {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .comparison-row {
    grid-template-columns: 1fr 1fr;
  }

  .comparison-row strong {
    grid-column: 1 / -1;
  }

  .day-row {
    grid-template-columns: 70px 1fr;
  }

  .day-route {
    grid-column: 2;
    padding: 20px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  /* Six columns need 780px, which a phone does not have. Below this width each
     operator becomes a card of label/value pairs instead: the header row moves
     into the data-label on every cell, so no column is dropped and every
     "Could not verify" stays attached to the question it answers. The wrapper
     keeps its focusable, labelled region for the widths that still scroll. */
  .fact-table--operators,
  .fact-table--operators caption,
  .fact-table--operators tbody,
  .fact-table--operators tr,
  .fact-table--operators tbody th,
  .fact-table--operators td {
    display: block;
  }

  .fact-table--operators {
    min-width: 0;
  }

  .fact-table--operators thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .fact-table--operators tr {
    margin-bottom: 18px;
    padding: 20px;
    border: 1px solid var(--line);
    background: var(--white);
  }

  .fact-table--operators tbody th,
  .fact-table--operators td {
    padding: 0;
    border-bottom: 0;
  }

  .fact-table--operators tbody th {
    padding-bottom: 16px;
    font-size: 15px;
  }

  .fact-table--operators tbody th span {
    max-width: none;
  }

  .fact-table--operators td {
    padding-top: 12px;
    margin-top: 12px;
    border-top: 1px solid var(--line);
  }

  .fact-table--operators td::before {
    display: block;
    margin-bottom: 3px;
    color: var(--adriatic);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    content: attr(data-label);
  }
}

@media (max-width: 590px) {
  .hero {
    min-height: 760px;
  }

  .hero-video {
    display: none;
  }

  .video-control {
    display: none;
  }

  .hero-content h1 br {
    display: none;
  }

  .button-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .finder-strip {
    grid-template-columns: 1fr;
  }

  .finder-strip label,
  .finder-strip label:nth-child(2),
  .finder-strip label:nth-child(4) {
    min-height: 90px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .decision-grid {
    grid-template-columns: 1fr;
  }

  .decision-card {
    min-height: 330px;
  }

  .itinerary-visual {
    min-height: 500px;
  }

  .map-label--a { left: 52%; }
  .map-label--b { left: 18%; }
  .map-label--c { left: 51%; }
  .map-label--d { left: 22%; top: 430px; }
  .map-route { height: 315px; left: 46%; }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-grid > div:not(.trust-copy) {
    min-height: 120px;
  }

  .trust-grid > div:nth-child(3) {
    grid-column: 1 / -1;
  }

  .trust-grid > div > span {
    font-size: 50px;
  }

  .footer-lead {
    align-items: flex-start;
    flex-direction: column;
  }

  .circle-link {
    width: 125px;
    height: 125px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 22px;
  }

  .fact-ribbon dl {
    grid-template-columns: 1fr;
  }

  .fact-ribbon dl > div,
  .fact-ribbon dl > div:not(:first-child) {
    min-height: auto;
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .fit-columns,
  .choose-grid {
    grid-template-columns: 1fr;
  }

  .practical-grid article {
    grid-template-columns: 40px 1fr;
  }

  .practical-grid article p,
  .practical-grid article > div {
    grid-column: 2;
  }

  .booking-card,
  .finder-panel {
    padding: 26px;
  }

  .comparison-head {
    grid-template-columns: 1fr;
  }

  .comparison-head > i {
    margin-block: -10px;
  }

  .comparison-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .comparison-row strong,
  .comparison-row span {
    grid-column: auto;
  }

  .comparison-row:not(.comparison-row--head) span::before {
    display: inline-block;
    width: 24px;
    color: var(--terracotta);
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 700;
    content: "A";
    vertical-align: middle;
  }

  .comparison-row:not(.comparison-row--head) span:last-child::before {
    content: "B";
  }

  .truth-band .shell {
    grid-template-columns: 1fr;
  }

  .truth-band .shell > div,
  .truth-band .shell > div:not(:first-child) {
    min-height: auto;
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .option-grid,
  .option-grid--wide {
    grid-template-columns: 1fr 1fr;
  }

  .result-card {
    grid-template-columns: 72px 1fr;
  }

  .result-rank {
    width: 62px;
    height: 62px;
  }

  .editorial-sections article {
    grid-template-columns: 38px 1fr;
  }

  .finder-select-grid,
  .base-decisions,
  .booking-sequence {
    grid-template-columns: 1fr;
  }

  .book-trip .band-label {
    margin-top: 34px;
  }

  .editorial-label {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .stay-decision,
  .connectivity-grid article,
  .connectivity-actions > div,
  .base-decisions > article,
  .booking-sequence > article,
  .trip-booking-tools > article {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-video {
    display: none;
  }

  .hero--video {
    background: var(--ink-deep);
  }

  .video-control {
    display: none;
  }

  .reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

[hidden] {
  display: none !important;
}

.consent-banner {
  position: fixed;
  inset: auto 16px 16px 16px;
  z-index: 60;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-items: center;
  justify-content: space-between;
  max-width: 720px;
  margin-inline: auto;
  padding: 18px 22px;
  background: var(--ink-deep);
  color: var(--white);
  border: 1px solid var(--line-light);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.consent-banner p {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.92rem;
  line-height: 1.5;
  flex: 1 1 320px;
}

.consent-banner a {
  color: var(--adriatic-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.consent-accept,
.consent-decline {
  font-family: var(--sans);
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
}

.consent-accept {
  background: var(--sun);
  color: var(--ink-deep);
  font-weight: 600;
}

.consent-accept:hover,
.consent-accept:focus-visible {
  background: var(--white);
}

.consent-decline {
  background: transparent;
  color: var(--white);
  border-color: var(--line-light);
}

.consent-decline:hover,
.consent-decline:focus-visible {
  border-color: var(--white);
}

@media (max-width: 590px) {
  .consent-banner {
    inset: auto 10px 10px 10px;
    padding: 16px;
  }
}

.feedback-widget {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 55;
  width: min(320px, calc(100vw - 32px));
  padding: 18px 20px;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  font-family: var(--sans);
}

.feedback-close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: 0;
  background: none;
  color: var(--ink);
  opacity: 0.55;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px;
}

.feedback-close:hover,
.feedback-close:focus-visible {
  opacity: 1;
}

.feedback-question {
  margin: 0 14px 12px 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.feedback-choices {
  display: flex;
  gap: 8px;
}

.feedback-vote {
  flex: 1;
  padding: 8px 12px;
  font-family: var(--sans);
  font-size: 0.88rem;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
}

.feedback-vote:hover,
.feedback-vote:focus-visible {
  background: var(--paper-deep);
}

.feedback-label {
  display: block;
  font-size: 0.82rem;
  line-height: 1.45;
  margin-bottom: 8px;
}

.feedback-follow textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 0.88rem;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  resize: vertical;
}

.feedback-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.feedback-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.feedback-send {
  padding: 8px 18px;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 600;
  background: var(--ink);
  color: var(--white);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.feedback-send:hover,
.feedback-send:focus-visible {
  background: var(--ink-deep);
}

.feedback-skip {
  padding: 8px 14px;
  font-family: var(--sans);
  font-size: 0.88rem;
  background: none;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
}

.feedback-thanks {
  margin: 0;
  font-size: 0.9rem;
}

.practical-grid small {
  display: block;
  margin-top: 8px;
  color: rgba(21, 54, 59, 0.7);
  font-size: 11px;
  line-height: 1.45;
}

.feedback-error {
  margin: 0.75rem 0 0;
  color: #8b2f22;
  font-size: 0.85rem;
  line-height: 1.45;
}

/* On a phone the fixed card was effectively full width and floated over
   whatever sat at the bottom of the viewport, including booking buttons. At
   this width it leaves the fixed layer entirely and closes the page in normal
   flow, so it can no longer cover a commercial call to action. `relative` keeps
   it the containing block for the absolutely positioned close button. */
@media (max-width: 590px) {
  .feedback-widget {
    position: relative;
    left: auto;
    bottom: auto;
    width: auto;
    margin: 16px 10px;
    padding: 14px 16px;
  }
}

@media (max-width: 820px) {
  .trip-resume,
  .trip-option-head,
  .trip-leg {
    grid-template-columns: 1fr;
  }

  .trip-resume-actions {
    justify-content: flex-start;
  }

  .trip-leg {
    gap: 8px;
  }

  .trip-leg .text-link {
    justify-self: start;
  }

  .trip-plan-actions .button,
  .trip-plan-actions .text-button {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

@media print {
  @page {
    margin: 14mm;
  }

  body.printing-trip-pack {
    color: #111;
    background: #fff;
  }

  body.printing-trip-pack .site-header,
  body.printing-trip-pack .site-footer,
  body.printing-trip-pack .consent-banner,
  body.printing-trip-pack .feedback-widget,
  body.printing-trip-pack main > :not(.trip-builder-section),
  body.printing-trip-pack .trip-builder-section .section-heading,
  body.printing-trip-pack .trip-builder-section > .shell > .trip-intro,
  body.printing-trip-pack .trip-resume,
  body.printing-trip-pack .trip-panel,
  body.printing-trip-pack .trip-plan-notice,
  body.printing-trip-pack .trip-plan-actions,
  body.printing-trip-pack .trip-option:not(.trip-option--selected) {
    display: none !important;
  }

  body.printing-trip-pack .trip-builder-section,
  body.printing-trip-pack .trip-builder-section > .shell,
  body.printing-trip-pack .trip-results,
  body.printing-trip-pack .trip-option--selected {
    display: block !important;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    background: #fff;
    border: 0;
    box-shadow: none;
  }

  body.printing-trip-pack .trip-option-head {
    display: block;
    padding: 0 0 8mm;
    color: #111;
    background: #fff;
    border-bottom: 2px solid #111;
  }

  body.printing-trip-pack .trip-option-head h3,
  body.printing-trip-pack .trip-option-label,
  body.printing-trip-pack .trip-totals {
    color: #111;
  }

  body.printing-trip-pack .trip-base,
  body.printing-trip-pack .trip-leg,
  body.printing-trip-pack .trip-pack-caveat {
    break-inside: avoid;
  }

  body.printing-trip-pack .trip-bases,
  body.printing-trip-pack .trip-pack-caveat {
    margin-inline: 0;
    padding-inline: 0;
  }

  body.printing-trip-pack .trip-leg {
    grid-template-columns: 1fr 1fr;
    background: #fff;
    border: 1px solid #bbb;
    border-left: 3px solid #111;
  }

  body.printing-trip-pack .trip-leg .text-link {
    justify-self: start;
  }

  body.printing-trip-pack .trip-leg .text-link::after {
    content: " (https://planthebalkans.com" attr(href) ")";
    font-weight: 400;
    overflow-wrap: anywhere;
  }

  body.printing-trip-pack .trip-pack-caveat {
    margin-top: 8mm;
    padding: 5mm;
    border: 1px solid #999;
  }
}
