:root {
  color-scheme: light;
  --ink: #182126;
  --muted: #657176;
  --paper: #fbf8f2;
  --panel: #ffffff;
  --teal: #0b7778;
  --teal-dark: #07585a;
  --red: #c74435;
  --gold: #c58b2b;
  --blue: #315f8f;
  --line: #ded8cc;
  --shadow: 0 20px 60px rgba(24, 33, 38, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

a {
  color: inherit;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  z-index: -2;
}

.hero__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 17, 20, 0.82), rgba(10, 17, 20, 0.34) 52%, rgba(10, 17, 20, 0.08)),
    linear-gradient(0deg, rgba(10, 17, 20, 0.62), rgba(10, 17, 20, 0.04) 45%);
}

.topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  padding: 18px clamp(20px, 5vw, 64px);
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}

.topbar::-webkit-scrollbar {
  display: none;
}

.topbar a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  background: rgba(10, 17, 20, 0.22);
  backdrop-filter: blur(8px);
}

.hero__content {
  width: min(100%, 1120px);
  padding: 140px clamp(20px, 5vw, 64px) 74px;
  color: #ffffff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.8rem, 8vw, 6.1rem);
  line-height: 0.94;
}

h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.04;
}

h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.2;
}

.lede {
  max-width: 640px;
  margin: 26px 0 32px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.2rem;
  line-height: 1.55;
}

.no-break {
  white-space: nowrap;
}

.band {
  padding: 84px clamp(20px, 5vw, 64px);
}

.band:nth-of-type(even) {
  background: #ffffff;
}

.container {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.section-heading {
  margin-bottom: 32px;
}

.grid-two {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: 36px;
  align-items: start;
}

.route-line {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  margin: 42px 0 0;
  position: relative;
}

.route-line::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 8%;
  right: 8%;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--red), var(--blue), var(--gold));
}

.route-line li {
  position: relative;
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
  padding: 0 10px;
}

.route-dot {
  width: 30px;
  height: 30px;
  border: 6px solid var(--paper);
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 2px rgba(11, 119, 120, 0.24);
  z-index: 1;
}

.route-line li:nth-child(2) .route-dot,
.route-line li:nth-child(6) .route-dot {
  background: var(--red);
}

.route-line li:nth-child(3) .route-dot,
.route-line li:nth-child(5) .route-dot {
  background: var(--blue);
}

.route-line li:nth-child(4) .route-dot {
  background: var(--gold);
}

.route-line strong {
  font-size: 1.05rem;
}

.route-line small {
  color: var(--muted);
  line-height: 1.45;
}

.date-list {
  display: grid;
  gap: 14px;
}

.date-item,
.city-card,
.transport-card,
.accom-panel,
.task-board {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(24, 33, 38, 0.06);
}

.date-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  padding: 18px;
}

.date-item time {
  color: var(--teal-dark);
  font-weight: 800;
}

.date-item p,
.transport-card p,
.task-board li,
dd {
  color: var(--muted);
  line-height: 1.55;
}

.date-item p {
  margin: 6px 0 0;
}

.date-item.alert {
  border-left: 5px solid var(--red);
}

.date-item.warning {
  border-left: 5px solid var(--gold);
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.city-card {
  padding: 22px;
}

.city-card.feature {
  border-color: rgba(199, 68, 53, 0.42);
  box-shadow: var(--shadow);
}

.city-card__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.city-number {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #ffffff;
  background: var(--teal);
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.86rem;
}

dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

dt {
  margin-bottom: 3px;
  color: var(--ink);
  font-weight: 800;
}

dd {
  margin: 0;
}

.transport-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(190px, 1fr));
  gap: 16px;
}

.transport-card {
  padding: 20px;
}

.transport-card p {
  margin: 12px 0;
}

.transport-card strong {
  color: var(--red);
}

.accom-panel,
.task-board {
  padding: 24px;
}

.accom-panel h3,
.task-board h3 {
  margin-bottom: 18px;
}

.task-board ul {
  margin: 0;
  padding-left: 20px;
}

.task-board li + li {
  margin-top: 10px;
}

@media (max-width: 980px) {
  .topbar {
    justify-content: flex-start;
  }

  .grid-two,
  .city-grid {
    grid-template-columns: 1fr;
  }

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

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

  .route-line::before {
    top: 0;
    bottom: 0;
    left: 14px;
    right: auto;
    width: 3px;
    height: auto;
  }

  .route-line li {
    grid-template-columns: 30px 1fr;
    justify-items: start;
    text-align: left;
  }

  .route-line small {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 88vh;
  }

  .hero__content {
    padding-bottom: 46px;
  }

  h1 {
    font-size: 2.85rem;
  }

  .lede {
    max-width: 31ch;
  }

  .band {
    padding: 58px 18px;
  }

  h2 {
    font-size: 2rem;
  }

  .date-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .transport-grid {
    grid-template-columns: 1fr;
  }
}
