.route-page {
  --route-ink: #191b19;
  --route-muted: #5d625e;
  --route-green: #175347;
  --route-mint: #edf3ee;
  --route-sky: #eaf0fc;
  --route-blush: #fbeef0;
  --route-yellow: #f2be3e;
  --route-focus: #173e35;
  --route-line: #dce2de;
  --route-shell: 1320px;
  --route-reading: 920px;
  --route-gutter: clamp(22px, 4.4vw, 66px);
  overflow: clip;
  background: #fff;
  color: var(--route-ink);
  font-family: "Montserrat Navigation", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  font-weight: 470;
  line-height: 1.68;
}

.page-route main {
  background: #fff;
}

.route-page *,
.route-page *::before,
.route-page *::after {
  box-sizing: border-box;
}

.route-page__shell {
  width: min(100%, var(--route-shell));
  margin-inline: auto;
  padding-inline: var(--route-gutter);
}

.route-page h1,
.route-page h2,
.route-page h3,
.route-page p,
.route-page ul,
.route-page ol,
.route-page dl {
  margin-top: 0;
}

.route-page h1,
.route-page h2,
.route-page h3 {
  color: var(--route-ink);
  font-family: inherit;
  letter-spacing: -.035em;
}

.route-page a {
  text-underline-offset: .2em;
}

.route-page a:hover {
  text-decoration: underline;
}

.route-page :focus-visible {
  outline-color: var(--route-focus);
}

.route-page__hero {
  min-height: var(--planning-hero-active-height);
  background: var(--route-mint);
}

.route-page__hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, .76fr);
  gap: clamp(44px, 7vw, 100px);
  align-items: center;
  min-height: var(--planning-hero-active-stage-height);
  padding-block: var(--planning-hero-active-padding-start) var(--planning-hero-active-padding-end);
}

.route-page__hero-copy {
  min-width: 0;
  align-self: start;
  margin-top: var(--planning-hero-active-copy-offset);
}

.route-page__eyebrow,
.route-page__section-label {
  margin-bottom: 12px;
  color: var(--route-green);
  font-size: 13px;
  font-weight: 720;
  letter-spacing: .105em;
  line-height: 1.35;
  text-transform: uppercase;
}

.route-page__eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
}

.route-page__eyebrow::before {
  width: 42px;
  height: 4px;
  border-radius: 99px;
  background: var(--route-yellow);
  content: "";
  transform: rotate(-2deg);
}

.route-page__hero h1 {
  max-width: 760px;
}

.route-page__hero-lead {
  max-width: 690px;
  margin-bottom: 16px;
  color: #303431;
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.55;
}

.route-page__review {
  position: absolute;
  bottom: clamp(16px, 1.7vw, 22px);
  left: var(--page-intro-gutter);
  margin: 0;
  color: var(--route-muted);
  font-size: 13px;
  font-weight: 500;
}

.route-page .breadcrumbs :is(li, a, [aria-current="page"]) {
  font-size: 13px;
}

.route-page__hero-media {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 0 -96px auto;
}

.route-page__hero-media::before {
  position: absolute;
  z-index: 1;
  right: -18px;
  bottom: 28px;
  width: 72px;
  height: 72px;
  border: 12px solid var(--route-yellow);
  border-radius: 50%;
  content: "";
}

.route-page__hero-media img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 330px;
  border-radius: 12px 64px 12px 64px;
  box-shadow: 0 24px 54px rgba(29, 45, 40, .16);
  object-fit: cover;
}

.route-page__notice {
  padding-top: 82px;
}

.route-page__notice:empty {
  display: none;
}

.route-page__opening {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, .88fr);
  gap: clamp(46px, 7vw, 96px);
  align-items: start;
  padding-top: 76px;
  padding-bottom: 70px;
}

.route-page__answer h2,
.route-page__heading h2,
.route-page__path-heading h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 670;
  line-height: 1.12;
}

.route-page__answer > p:not(.route-page__section-label) {
  max-width: 720px;
  margin-bottom: 0;
  font-size: 17px;
  line-height: 1.7;
}

.route-page__answer-tradeoff {
  margin-top: 20px !important;
  padding-left: 20px;
  border-left: 4px solid var(--route-yellow);
}

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

.route-page__stats div {
  min-height: 112px;
  padding: 20px 22px;
  border-right: 1px solid var(--route-line);
  border-bottom: 1px solid var(--route-line);
}

.route-page__stats dt {
  margin-bottom: 7px;
  color: var(--route-muted);
  font-size: 13px;
  font-weight: 690;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.route-page__stats dd {
  margin: 0;
  color: var(--route-ink);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.35;
}

.route-page__path-band {
  background: var(--route-sky);
}

.route-page__path-inner {
  display: grid;
  grid-template-columns: minmax(230px, .55fr) minmax(0, 1.45fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
  padding-block: 54px;
}

.route-page__path-heading h2 {
  margin-bottom: 0;
  font-size: clamp(26px, 2.4vw, 34px);
}

.route-page__path {
  display: grid;
  grid-auto-columns: minmax(150px, 1fr);
  grid-auto-flow: column;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.route-page__path li {
  position: relative;
  min-width: 0;
  padding: 0 20px 0 30px;
}

.route-page__path li::before {
  position: absolute;
  top: 15px;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(23, 83, 71, .24);
  content: "";
}

.route-page__path li:last-child::before {
  width: 30px;
}

.route-page__path-index {
  position: absolute;
  z-index: 1;
  top: 5px;
  left: 0;
  display: grid;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--route-green);
  color: #fff;
  font-size: 9px;
  font-weight: 720;
  place-items: center;
}

.route-page__path strong,
.route-page__path span:not(.route-page__path-index),
.route-page__path small {
  position: relative;
  z-index: 1;
  display: block;
  width: fit-content;
  background: var(--route-sky);
}

.route-page__path strong {
  margin-top: 42px;
  padding-right: 8px;
  font-size: 15px;
}

.route-page__path span:not(.route-page__path-index) {
  color: var(--route-green);
  font-size: 13px;
  font-weight: 680;
}

.route-page__path small {
  margin-top: 4px;
  color: var(--route-muted);
  font-size: 13px;
  line-height: 1.45;
}

.route-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(46px, 6vw, 84px);
  align-items: start;
  padding-top: 82px;
  padding-bottom: 86px;
}

.route-page--with-sidebar .route-page__layout {
  grid-template-columns: minmax(0, 1fr) minmax(190px, 228px);
}

.route-page__content {
  min-width: 0;
}

.route-page--without-sidebar .route-page__content {
  width: min(100%, 1060px);
  margin-inline: auto;
}

.route-page__heading {
  max-width: 780px;
  margin-bottom: 40px;
}

.route-page__heading > p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: #404541;
  font-size: 16px;
}

.route-page__days {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.route-page__days::before {
  position: absolute;
  top: 12px;
  bottom: 30px;
  left: 43px;
  width: 3px;
  border-radius: 99px;
  background: linear-gradient(var(--route-green), var(--route-yellow));
  content: "";
}

.route-page__day {
  position: relative;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 22px;
  padding-bottom: 34px;
  scroll-margin-top: 118px;
}

.route-page__day-marker {
  position: relative;
  z-index: 1;
  padding-top: 4px;
}

.route-page__day-marker span {
  display: grid;
  width: 86px;
  min-height: 42px;
  padding: 6px;
  border: 2px solid var(--route-green);
  border-radius: 22px;
  background: #fff;
  color: var(--route-green);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.15;
  text-align: center;
  place-items: center;
}

.route-page__day-card {
  padding: 0 0 30px;
  border-bottom: 1px solid var(--route-line);
}

.route-page__day:last-child .route-page__day-card {
  border-bottom: 0;
}

.route-page__day-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 16px;
  margin-bottom: 9px;
  color: var(--route-muted);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.route-page__day-topline span + span::before {
  margin-right: 16px;
  color: var(--route-yellow);
  content: "•";
}

.route-page__day h3 {
  margin-bottom: 11px;
  font-size: clamp(21px, 2vw, 27px);
  font-weight: 670;
  line-height: 1.2;
}

.route-page__day-copy > p {
  max-width: 68ch;
  margin-bottom: 16px;
  color: #353936;
}

.route-page__day-overview--with-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(220px, 24vw, 300px);
  gap: clamp(24px, 3vw, 42px);
  align-items: start;
}

.route-page__day-copy {
  min-width: 0;
}

.route-page__day-media {
  margin: 0;
}

.route-page__day-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  border-radius: 12px 28px 12px 12px;
  box-shadow: 0 14px 34px rgba(25, 27, 25, .11);
  object-fit: cover;
}

.route-page__day-media figcaption {
  margin-top: 7px;
  color: var(--route-muted);
  font-size: 13px;
  font-weight: 480;
  line-height: 1.45;
}

.route-page__day-media figcaption a {
  color: inherit;
}

.route-page__day-lead {
  font-size: 15px;
  line-height: 1.72;
}

.route-page__day-focus {
  display: grid;
  gap: 8px;
  margin: 17px 0 0;
  padding: 0;
  list-style: none;
}

.route-page__day-focus li {
  position: relative;
  padding-left: 19px;
  color: #343835;
  font-size: 14px;
}

.route-page__day-focus li::before {
  position: absolute;
  top: .7em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--route-yellow);
  content: "";
}

.route-page__day-details {
  margin-top: 24px;
  padding: 0;
  border-top: 0;
}

.route-page__day-details summary {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-block: 12px 2px;
  color: var(--route-green);
  font-size: 14px;
  font-weight: 680;
  list-style: none;
  text-decoration: none;
}

.route-page__day-details summary::before {
  content: "+";
  font-size: 18px;
  line-height: 1;
}

.route-page__day-details[open] summary::before {
  content: "−";
}

.route-page__day-details-label--open {
  display: none;
}

.route-page__day-details[open] .route-page__day-details-label--closed {
  display: none;
}

.route-page__day-details[open] .route-page__day-details-label--open {
  display: inline;
}

.route-page__day-details:not(.route-page__day-details--full) p {
  max-width: 68ch;
  margin: 10px 0 0;
  color: var(--route-muted);
  font-size: 14px;
}

.route-page__day-details--full {
  margin-top: 22px;
}

.route-page__day-details--full summary {
  width: fit-content;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid #cbd8d3;
  border-radius: 999px;
  background: var(--route-mint);
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.route-page__day-details--full summary:hover {
  border-color: var(--route-green);
  background: #f7faf8;
  box-shadow: 0 8px 20px rgba(25, 27, 25, .09);
  text-decoration: none;
  transform: translateY(-2px);
}

.route-page__day-details--full summary:focus-visible {
  outline: 3px solid var(--route-focus);
  outline-offset: 3px;
}

.route-page__day-details--full[open] summary {
  border-color: var(--route-green);
  background: var(--route-sky);
}

.route-page__day-expanded {
  margin-top: 18px;
  padding: 24px;
  border-radius: 18px;
  background: #f8faf9;
}

.route-page__day-schedule {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 24px;
}

.route-page__day-schedule section {
  padding-top: 15px;
  border-top: 2px solid var(--route-yellow);
}

.route-page__day-schedule section > p:first-child {
  margin-bottom: 7px;
  color: var(--route-green);
  font-size: 13px;
  font-weight: 730;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.route-page__day-schedule h4 {
  margin: 0 0 8px;
  color: var(--route-ink);
  font-size: 16px;
  line-height: 1.35;
}

.route-page__day-schedule section > p:last-child {
  margin: 0;
  color: #414642;
  font-size: 14px;
  line-height: 1.62;
}

.route-page__day-practical {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px;
  margin: 24px 0 0;
  border-top: 1px solid var(--route-line);
}

.route-page__day-practical div {
  padding: 17px 0;
  border-bottom: 1px solid var(--route-line);
}

.route-page__day-practical dt {
  color: var(--route-green);
  font-size: 13px;
  font-weight: 730;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.route-page__day-practical dd {
  margin: 5px 0 0;
  color: #3f4440;
  font-size: 14px;
  line-height: 1.6;
}

.route-page__day-avoid {
  margin: 22px 0 0;
  padding: 15px 17px;
  border-left: 4px solid var(--route-yellow);
  background: #fff;
  color: #383d39;
  font-size: 14px;
}

.route-page__day-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 18px;
}

.route-page__day-links a {
  color: var(--route-green);
  font-size: 14px;
  font-weight: 680;
}

.route-page__route-choice {
  padding-block: 76px 88px;
  background: #fff;
}

.route-page--with-route-options .route-page__opening {
  padding-bottom: 34px;
}

.route-page--with-route-options .route-page__route-choice {
  padding-top: 34px;
}

.route-page__choice-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.route-page__choice-heading h2 {
  margin-bottom: 18px;
  font-size: clamp(31px, 3.1vw, 42px);
  line-height: 1.12;
}

.route-page__choice-heading > p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: #404541;
}

.route-page__choice-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 32px;
}

.route-page__choice-tabs :is(a, button) {
  display: grid;
  width: 100%;
  min-height: 132px;
  padding: 22px 24px;
  border: 2px solid transparent;
  border-radius: 20px;
  background: var(--route-mint);
  color: var(--route-ink);
  cursor: pointer;
  font: inherit;
  text-align: left;
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.route-page__choice-tabs :is(a, button):hover {
  border-color: rgba(23, 83, 71, .55);
  box-shadow: 0 13px 28px rgba(25, 27, 25, .1);
  text-decoration: none;
  transform: translateY(-3px);
}

.route-page__choice-tabs :is(a, button):focus-visible {
  outline: 3px solid var(--route-focus);
  outline-offset: 3px;
  text-decoration: none;
}

.route-page__choice-tabs :is(a, button):nth-child(2) {
  background: var(--route-sky);
}

.route-page__choice-tabs :is(a, button)[aria-selected="true"] {
  border-color: var(--route-green);
  box-shadow: 0 12px 28px rgba(25, 27, 25, .08);
}

.route-page__choice-tabs span {
  margin-bottom: 7px;
  color: var(--route-green);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.route-page__choice-tabs strong {
  font-size: 20px;
  line-height: 1.25;
}

.route-page__choice-tabs small {
  margin-top: 8px;
  color: var(--route-muted);
  font-size: 14px;
  line-height: 1.5;
}

.route-page__choice-panel {
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--route-line);
  border-radius: 26px;
}

.route-page__choice-panel + .route-page__choice-panel {
  margin-top: 42px;
}

.route-page__route-choice--enhanced .route-page__choice-panel[hidden] {
  display: none;
}

.route-page__choice-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .75fr);
  gap: 36px;
  align-items: end;
}

.route-page__choice-summary > div > p:first-child,
.route-page__option-path > p {
  margin-bottom: 8px;
  color: var(--route-green);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.route-page__choice-summary h3 {
  margin-bottom: 12px;
  font-size: clamp(27px, 2.7vw, 36px);
  line-height: 1.15;
}

.route-page__choice-summary > div > p:last-child {
  margin-bottom: 0;
  color: #3d423e;
}

.route-page__choice-summary dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
}

.route-page__choice-summary dl div {
  padding: 12px 15px;
  border-top: 1px solid var(--route-line);
}

.route-page__choice-summary dt {
  color: var(--route-muted);
  font-size: 13px;
  text-transform: uppercase;
}

.route-page__choice-summary dd {
  margin: 3px 0 0;
  font-size: 14px;
  font-weight: 680;
}

.route-page__option-path {
  margin: 32px 0 58px;
  padding: 24px;
  border-radius: 18px;
  background: var(--route-sky);
}

.route-page__option-path ol {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.route-page__option-path li {
  display: grid;
  grid-template-columns: 28px auto;
  align-items: center;
}

.route-page__option-path li > span {
  grid-row: 1 / span 2;
  color: var(--route-green);
  font-size: 13px;
  font-weight: 760;
}

.route-page__option-path strong,
.route-page__option-path small {
  display: block;
}

.route-page__option-path small {
  color: var(--route-muted);
  font-size: 13px;
}

.route-page__option-comparison {
  margin-top: 64px;
}

.route-page__editorial,
.route-page__section {
  margin-top: 70px;
}

.route-page__editorial > .route-page__section + .route-page__section {
  margin-top: 64px;
}

.route-page__section h2,
.route-page__editorial h2 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(29px, 2.9vw, 39px);
  font-weight: 670;
  line-height: 1.15;
}

.route-page__section h3,
.route-page__editorial h3 {
  font-size: 20px;
  font-weight: 660;
  line-height: 1.3;
}

.route-page__editorial p,
.route-page__editorial li,
.route-page__section p,
.route-page__section li {
  color: #363a37;
}

.route-page__prose {
  max-width: 74ch;
}

.route-page__prose p + p {
  margin-top: 18px;
}

.route-page__decision-grid,
.route-page__booking-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.route-page__decision-grid article,
.route-page__booking-grid article {
  padding: 24px;
  border: 1px solid var(--route-line);
  border-radius: 18px;
  background: #fff;
}

.route-page__decision-grid article:nth-child(4n + 1),
.route-page__booking-grid article:nth-child(4n + 2) {
  background: var(--route-mint);
}

.route-page__decision-grid article:nth-child(4n + 2),
.route-page__booking-grid article:nth-child(4n + 3) {
  background: var(--route-sky);
}

.route-page__decision-grid span,
.route-page__booking-grid span,
.route-page__variant-list article > span {
  display: block;
  margin-bottom: 8px;
  color: var(--route-green);
  font-size: 13px;
  font-weight: 730;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.route-page__decision-grid p,
.route-page__booking-grid p {
  margin-bottom: 0;
  font-size: 14px;
}

.route-page__wide-note {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(0, 1.3fr);
  gap: clamp(30px, 5vw, 68px);
  margin-top: 34px;
  padding: 34px 38px;
  border-radius: 22px;
  background: var(--route-blush);
}

.route-page__wide-note h3,
.route-page__wide-note p {
  margin-bottom: 0;
}

.route-page__steps {
  display: grid;
  gap: 0;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: route-step;
}

.route-page__steps li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  padding: 19px 0;
  border-top: 1px solid var(--route-line);
  counter-increment: route-step;
}

.route-page__steps li::before {
  display: grid;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--route-yellow);
  color: var(--route-ink);
  content: counter(route-step, decimal-leading-zero);
  font-size: 11px;
  font-weight: 760;
  place-items: center;
}

.route-page__steps strong,
.route-page__steps span {
  display: block;
}

.route-page__steps span {
  margin-top: 3px;
  color: var(--route-muted);
  font-size: 14px;
}

.route-page__table-wrap {
  max-width: 100%;
  margin-top: 28px;
  overflow-x: auto;
  border: 1px solid var(--route-line);
  border-radius: 18px;
  background: #fff;
}

.route-page__table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.route-page__table caption {
  padding: 18px 20px;
  color: var(--route-green);
  font-size: 13px;
  font-weight: 730;
  letter-spacing: .06em;
  text-align: left;
  text-transform: uppercase;
}

.route-page__table th,
.route-page__table td {
  padding: 16px 18px;
  border-top: 1px solid var(--route-line);
  text-align: left;
  vertical-align: top;
}

.route-page__table thead th {
  background: var(--route-mint);
  font-size: 13px;
}

.route-page__table tbody th {
  font-size: 14px;
}

.route-page__table td {
  color: #454a46;
  font-size: 14px;
}

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

.route-page__variant-list article {
  padding: 26px 0 28px;
  border-bottom: 1px solid var(--route-line);
}

.route-page__variant-list h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.route-page__variant-list p {
  margin-bottom: 9px;
  font-size: 14px;
}

.route-page__section--cut {
  margin-inline: calc(var(--route-gutter) * -1);
  padding: 44px var(--route-gutter);
  border-radius: 28px;
  background: var(--route-mint);
}

.route-page__section--cut ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 42px;
  margin: 0;
  padding-left: 24px;
}

.route-page__faq-list {
  border-top: 1px solid var(--route-line);
}

.route-page__faq-list details {
  border-bottom: 1px solid var(--route-line);
}

.route-page__faq-list summary {
  position: relative;
  padding: 22px 48px 22px 0;
  color: var(--route-ink);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.45;
  list-style: none;
}

.route-page__faq-list summary::after {
  position: absolute;
  top: 20px;
  right: 2px;
  color: var(--route-green);
  content: "+";
  font-size: 24px;
  font-weight: 500;
}

.route-page__faq-list details[open] summary::after {
  content: "−";
}

.route-page__faq-list p {
  max-width: 72ch;
  padding: 0 48px 22px 0;
}

.route-page__sidebar {
  min-width: 0;
}

.route-page__sidebar-sticky {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  padding: 20px 0 0 20px;
  border-left: 2px solid var(--route-line);
}

.route-page__sidebar-title {
  margin-bottom: 12px;
  color: var(--route-muted);
  font-size: 13px;
  font-weight: 730;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.route-page__sidebar nav ol {
  display: grid;
  gap: 3px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.route-page__sidebar nav a {
  display: block;
  margin-left: -10px;
  padding: 8px 10px;
  border-radius: 8px;
  color: #484d49;
  font-size: 14px;
  font-weight: 560;
  line-height: 1.35;
}

.route-page__sidebar nav a[aria-current="location"] {
  background: var(--route-sky);
  color: var(--route-green);
  font-weight: 680;
}

.route-page__sidebar-nights {
  display: grid;
  gap: 8px;
  margin: 24px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--route-line);
}

.route-page__sidebar-nights div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  font-size: 13px;
}

.route-page__sidebar-nights dt {
  color: var(--route-muted);
}

.route-page__sidebar-nights dd {
  margin: 0;
  color: var(--route-green);
  font-weight: 700;
}

.route-page__sources {
  padding-block: 28px;
  background: var(--route-sky);
}

.route-page__sources details {
  width: min(100%, 1000px);
  margin-inline: auto;
}

.route-page__sources summary {
  display: flex;
  position: relative;
  min-height: 48px;
  padding-right: 40px;
  align-items: center;
  color: var(--route-green);
  font-size: 15px;
  font-weight: 680;
  list-style: none;
}

.route-page__sources summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  content: "+";
  font-size: 22px;
  transform: translateY(-50%);
}

.route-page__sources details[open] summary::after {
  content: "−";
}

.route-page__sources details > div {
  padding-top: 20px;
}

.route-page__sources p,
.route-page__sources li {
  max-width: 82ch;
  color: #3f4641;
  font-size: 13px;
}

.route-page__sources ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 28px;
  margin: 16px 0 0;
  padding-left: 18px;
}

.route-page__related {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-top: 54px;
  padding-bottom: 70px;
}

.route-page__related > p {
  grid-column: 1 / -1;
}

.route-page__related a {
  display: block;
  padding: 20px 0;
  border-top: 3px solid var(--route-yellow);
}

.route-page__related strong,
.route-page__related span {
  display: block;
}

.route-page__related strong {
  font-size: 15px;
}

.route-page__related span {
  margin-top: 4px;
  color: var(--route-muted);
  font-size: 13px;
}

/* Variante 2: capítulos sin línea temporal ni lateral. */
.route-page--chapters .route-page__days::before {
  display: none;
}

.route-page--chapters .route-page__days {
  display: block;
}

.route-page--chapters .route-page__day {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--route-line);
}

.route-page--chapters .route-page__day-marker {
  position: static;
  width: auto;
  padding: 0;
}

.route-page--chapters .route-page__day-marker span {
  width: auto;
  min-height: 0;
  padding: 5px 9px;
  border: 0;
  border-radius: 8px;
  background: var(--route-yellow);
  color: var(--route-ink);
}

.route-page--chapters .route-page__day-card {
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
}

.route-page--chapters .route-page__day:nth-child(4n + 3) {
  margin-inline: -22px;
  padding-inline: 22px;
  border-radius: 18px;
  background: var(--route-mint);
}

/* Variante 3: lectura por bases; el color hace visible el cambio territorial. */
.route-page--bases .route-page__day--cairo .route-page__day-marker span {
  border-color: #6751a3;
  color: #5b458f;
}

.route-page--bases .route-page__day--luxor .route-page__day-marker span {
  border-color: #b4881c;
  color: #715810;
}

.route-page--bases .route-page__day--aswan .route-page__day-marker span {
  border-color: #327094;
  color: #245d7c;
}

.route-page--bases .route-page__day-card {
  padding: 22px 24px 26px;
  border: 0;
  border-radius: 18px;
  background: #f8faf9;
}

/* Variante 4: fases amplias ciudad, río y costa, sin lateral. */
.route-page--horizon .route-page__days::before {
  display: none;
}

.route-page--horizon .route-page__day {
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 26px;
  padding: 28px 0;
  border-bottom: 1px solid var(--route-line);
}

.route-page--horizon .route-page__day-marker span {
  width: 100px;
  border: 0;
  border-radius: 10px;
  background: var(--route-sky);
}

.route-page--horizon .route-page__day--river .route-page__day-marker span {
  background: var(--route-mint);
}

.route-page--horizon .route-page__day--coast .route-page__day-marker span {
  background: var(--route-blush);
}

.route-page--horizon .route-page__day-card {
  padding: 0;
  border: 0;
}

/* Variante 5: atlas largo, con hitos más compactos para catorce días. */
.route-page--atlas .route-page__day {
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 18px;
  padding-bottom: 23px;
}

.route-page--atlas .route-page__days::before {
  left: 36px;
}

.route-page--atlas .route-page__day-marker span {
  width: 74px;
  min-height: 36px;
  border-radius: 18px;
}

.route-page--atlas .route-page__day-card {
  padding: 0 0 23px;
}

.route-page--atlas .route-page__day-copy > p {
  max-width: 72ch;
}

@media (max-width: 1080px) {
  .route-page__hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(310px, .7fr);
    gap: 42px;
  }

  .route-page__opening {
    grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
    gap: 40px;
  }

  .route-page--with-sidebar .route-page__layout {
    grid-template-columns: minmax(0, 1fr) 190px;
    gap: 42px;
  }

  .route-page__path-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}

@media (max-width: 820px) {
  .route-page__hero-inner,
  .route-page__opening,
  .route-page--with-sidebar .route-page__layout {
    grid-template-columns: 1fr;
  }

  .route-page__hero-inner {
    min-height: var(--planning-hero-active-stage-height);
    gap: 0;
    padding-block: var(--planning-hero-active-padding-start) var(--planning-hero-active-padding-end);
  }

  .route-page__hero-copy {
    margin-bottom: clamp(28px, 5vw, 38px);
  }

  .route-page__hero-media {
    width: min(100%, 520px);
    max-width: 520px;
    justify-self: start;
    margin: 0 0 20px;
  }

  .route-page__hero-media img {
    height: auto;
    aspect-ratio: 3 / 2;
    border-radius: 12px 48px 12px 48px;
  }

  .route-page__hero-media::before {
    right: 18px;
    bottom: -24px;
  }

  .route-page__review {
    position: static;
    grid-column: 1;
  }

  .route-page__notice {
    padding-top: 44px;
  }

  .route-page__opening {
    gap: 36px;
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .route-page__layout {
    padding-top: 62px;
    padding-bottom: 68px;
  }

  .route-page__route-choice {
    padding-block: 60px 70px;
  }

  .route-page--with-route-options .route-page__opening {
    padding-bottom: 28px;
  }

  .route-page--with-route-options .route-page__route-choice {
    padding-top: 28px;
  }

  .route-page__choice-summary {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .route-page__day-schedule {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .route-page__day-practical {
    grid-template-columns: 1fr;
  }

  .route-page__sidebar {
    grid-row: 1;
  }

  .route-page__sidebar-sticky {
    position: static;
    padding: 18px 20px;
    border: 0;
    border-radius: 16px;
    background: var(--route-sky);
  }

  .route-page__sidebar nav ol {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
  }

  .route-page__sidebar nav a {
    margin: 0;
    background: rgba(255, 255, 255, .65);
  }

  .route-page__sidebar-nights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .route-page__path {
    grid-auto-flow: row;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 0;
  }

  .route-page__path li::before {
    display: none;
  }

  .route-page__path strong {
    margin-top: 0;
  }

  .route-page__path-index {
    top: 0;
  }

}

@media (max-width: 620px) {
  .route-page {
    font-size: 15px;
  }

  .route-page__hero-lead {
    font-size: 16px;
  }

  .route-page__hero-media img {
    height: auto;
    aspect-ratio: 3 / 2;
    border-radius: 10px 34px 10px 34px;
  }

  .route-page__answer h2,
  .route-page__heading h2,
  .route-page__path-heading h2,
  .route-page__section h2,
  .route-page__editorial h2 {
    font-size: 28px;
  }

  .route-page__answer > p:not(.route-page__section-label) {
    font-size: 16px;
  }

  .route-page__stats,
  .route-page__decision-grid,
  .route-page__booking-grid,
  .route-page__variant-list,
  .route-page__section--cut ol,
  .route-page__sources ul,
  .route-page__related,
  .route-page--chapters .route-page__days {
    grid-template-columns: 1fr;
  }

  .route-page__choice-tabs {
    grid-template-columns: 1fr;
  }

  .route-page__choice-tabs :is(a, button) {
    min-height: 0;
    padding: 18px 20px;
  }

  .route-page__choice-panel {
    margin-inline: calc(var(--route-gutter) * -.35);
    padding: 26px calc(var(--route-gutter) * .35);
    border-radius: 20px;
  }

  .route-page__choice-summary dl {
    grid-template-columns: 1fr 1fr;
  }

  .route-page__option-path ol {
    display: grid;
    grid-template-columns: 1fr;
  }

  .route-page__day-expanded {
    margin-inline: -8px;
    padding: 20px 16px;
  }

  .route-page__day-overview--with-media {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .route-page__day-media {
    max-width: 560px;
  }

  .route-page__day-media img {
    aspect-ratio: 16 / 9;
    border-radius: 10px 24px 10px 10px;
  }

  .route-page__stats div {
    min-height: 0;
  }

  .route-page__path {
    grid-template-columns: 1fr;
  }

  .route-page__path li {
    padding-left: 34px;
  }

  .route-page__day,
  .route-page--horizon .route-page__day,
  .route-page--atlas .route-page__day {
    display: block;
    padding: 0 0 28px;
  }

  .route-page__days::before,
  .route-page--horizon .route-page__days::before {
    left: 13px;
  }

  .route-page__day-marker,
  .route-page--chapters .route-page__day-marker {
    position: relative;
    top: auto;
    left: auto;
    width: fit-content;
    margin-bottom: 13px;
    padding: 0;
  }

  .route-page__day-marker span,
  .route-page--horizon .route-page__day-marker span,
  .route-page--atlas .route-page__day-marker span {
    width: auto;
    min-width: 76px;
    min-height: 34px;
  }

  .route-page__day-card,
  .route-page--bases .route-page__day-card,
  .route-page--chapters .route-page__day-card {
    margin-left: 30px;
    padding: 0 0 24px;
    border: 0;
    border-bottom: 1px solid var(--route-line);
    border-radius: 0;
    background: transparent !important;
  }

  .route-page--chapters .route-page__day {
    display: block;
    margin-inline: 0;
    padding-inline: 0;
  }

  .route-page--chapters .route-page__day-card {
    margin-left: 0;
  }

  .route-page__day h3 {
    font-size: 21px;
  }

  .route-page__wide-note {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .route-page__section--cut {
    margin-inline: calc(var(--route-gutter) * -.55);
    padding-inline: calc(var(--route-gutter) * .55);
    border-radius: 18px;
  }

  .route-page__related a {
    padding-block: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .route-page * {
    scroll-behavior: auto !important;
  }
}
