.travel-shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 16px 56px;
}

.travel-hero {
  padding: 24px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

.travel-hero h1 {
  margin: 6px 0;
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 1.15;
}

.travel-hero p,
.lead,
.muted {
  color: var(--text-2);
}

.eyebrow {
  color: var(--text-3);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.trip-meta,
.booking-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.trip-meta span,
.booking-meta span,
.card-badge,
.day-badge {
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--accent-bg);
  color: var(--text-2);
  font-size: .75rem;
}

.continent-filters {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin: 18px 0;
}

.continent-tag {
  padding: 7px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-2);
  background: var(--bg-card);
  font: inherit;
  cursor: pointer;
}

.continent-tag.active {
  border-color: var(--text);
  color: var(--bg);
  background: var(--text);
}

.country-grid,
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.content-card {
  display: block;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  background: var(--bg-card);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}

.content-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.content-card h2,
.content-card h3 {
  margin: 8px 0;
}

.content-card p {
  color: var(--text-2);
}

.card-emoji {
  font-size: 1.6rem;
}

.empty-state {
  display: none;
  padding: 40px;
  text-align: center;
  color: var(--text-3);
}

.page-nav,
.topbar {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.page-nav a,
.topbar a,
.button-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-2);
  background: var(--bg-card);
  text-decoration: none;
}

.page-section {
  margin-top: 18px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

.page-section h2 {
  margin: 0 0 12px;
}

.page-section h3 {
  margin: 22px 0 8px;
}

.page-section p,
.page-section li {
  line-height: 1.75;
}

.page-section ul,
.page-section ol {
  padding-left: 1.25rem;
}

.toc {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 18px 0;
}

.toc a {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--text-2);
  background: var(--accent-bg);
  text-decoration: none;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 10px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.booking-list {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.booking-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-input);
}

.booking-item input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--accent);
}

.booking-body {
  min-width: 0;
}

.booking-body label {
  display: inline-block;
  cursor: pointer;
}

.booking-content {
  margin-top: 4px;
}

.place-what,
.day-summary {
  margin: 8px 0 6px;
  color: var(--text);
  line-height: 1.55;
}

.day-summary {
  margin: 10px 0 14px;
  color: var(--text-2);
}

.reservation-coverage ul {
  margin: 8px 0 0;
  padding-left: 1.2em;
}

.reservation-coverage li {
  margin: 4px 0;
}

.booking-item input:checked + .booking-body {
  opacity: .58;
}

.booking-item input:checked + .booking-body label strong {
  text-decoration: line-through;
}

.booking-window,
.booking-rule,
.priority {
  display: inline-block;
  margin: 8px 5px 0 0;
  padding: 3px 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-2);
  font-size: .75rem;
}

.priority {
  color: var(--accent2);
  font-weight: 700;
}

.official-link {
  display: inline-block;
  margin: 8px 8px 0 0;
  font-weight: 700;
}

.day {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.day:last-child {
  border-bottom: 0;
}

.day-head {
  display: flex;
  align-items: baseline;
  gap: 9px;
  flex-wrap: wrap;
}

.day-date {
  font-size: 1.15rem;
  font-weight: 700;
}

.day-city {
  color: var(--text-2);
}

.day dl {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 6px 12px;
}

.day dt {
  color: var(--text-3);
  font-family: var(--mono);
  font-size: .78rem;
}

.day dd {
  margin: 0;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  border-bottom: 1px dotted var(--text-3);
  color: inherit;
  text-decoration: none;
}

.map-link::before {
  content: "📍";
  font-size: .85em;
}

.notice {
  margin-top: 12px;
  padding: 12px 14px;
  border-left: 3px solid var(--accent);
  color: var(--text-2);
  background: var(--accent-bg);
}

.itinerary-shell {
  max-width: 1180px;
}

.compact-page-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin: 8px 0 12px;
  padding: 10px 2px;
}

.compact-page-head span {
  color: var(--text-3);
  font-family: var(--mono);
  font-size: .7rem;
}

.compact-page-head h1 {
  margin: 2px 0 0;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.2;
  letter-spacing: -.03em;
}

.compact-page-head a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 7px 11px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-2);
  background: var(--bg-card);
  font-size: .76rem;
  text-decoration: none;
}

.itinerary-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 54px);
  background:
    radial-gradient(circle at 88% 8%, color-mix(in srgb, var(--accent) 20%, transparent), transparent 28%),
    linear-gradient(145deg, var(--bg-card), var(--bg-input));
}

.itinerary-hero::after {
  position: absolute;
  right: -48px;
  bottom: -76px;
  width: 220px;
  height: 220px;
  border: 1px solid var(--border);
  border-radius: 50%;
  content: "";
  opacity: .7;
}

.itinerary-hero h1 {
  max-width: 780px;
  font-size: clamp(2.7rem, 8vw, 5.7rem);
  letter-spacing: -.06em;
}

.itinerary-hero > p {
  max-width: 760px;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.8;
}

.route-line {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(12px, 1fr) auto minmax(12px, 1fr) auto minmax(12px, 1fr) auto minmax(12px, 1fr) auto minmax(12px, 1fr) auto minmax(12px, 1fr) auto minmax(12px, 1fr) auto;
  align-items: center;
  gap: 8px;
  margin-top: 34px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--bg-card) 82%, transparent);
}

.route-line i {
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}

.route-stop {
  display: grid;
  gap: 1px;
}

.route-stop span {
  color: var(--text-3);
  font-family: var(--mono);
  font-size: .66rem;
  text-transform: uppercase;
}

.route-stop strong {
  white-space: nowrap;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.section-heading > div {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.section-heading h2,
.section-heading p {
  margin: 0;
}

.section-heading p {
  max-width: 430px;
  color: var(--text-3);
  font-size: .85rem;
}

.section-index {
  color: var(--accent2);
  font-family: var(--mono);
  font-size: .8rem;
  font-weight: 700;
}

.transport-board,
.booking-spotlight,
.itinerary-section {
  margin-top: 22px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

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

.transport-card {
  min-height: 150px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-input);
}

.transport-card strong {
  display: block;
  margin-top: 18px;
  font-family: var(--mono);
  font-size: .9rem;
}

.transport-card p {
  margin: 8px 0 0;
  color: var(--text-2);
  font-size: .82rem;
  line-height: 1.65;
}

.status-pill {
  display: inline-flex;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 700;
}

.booked .status-pill,
.booking-complete .status-pill {
  color: var(--accent3);
  background: color-mix(in srgb, var(--accent3) 13%, transparent);
}

.pending .status-pill {
  color: var(--accent);
  background: var(--accent-bg);
}

.conditional .status-pill {
  color: var(--accent2);
  background: color-mix(in srgb, var(--accent2) 12%, transparent);
}

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

.reservation-card {
  display: grid;
  min-height: 142px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: inherit;
  background: var(--bg-input);
  text-decoration: none;
  transition: transform var(--transition), border-color var(--transition);
}

.reservation-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
}

.reservation-card time {
  color: var(--accent2);
  font-family: var(--mono);
  font-size: .75rem;
}

.reservation-card strong {
  margin: 12px 0 18px;
  font-size: 1.05rem;
}

.reservation-card span {
  align-self: end;
  color: var(--text-3);
  font-size: .78rem;
}

.schedule-section {
  margin-top: 22px;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

.itinerary-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
}

.itinerary-table {
  min-width: 1080px;
  table-layout: fixed;
}

.itinerary-table th {
  position: sticky;
  top: 0;
  z-index: 3;
  padding: 13px 12px;
  border-right: 1px solid var(--border);
  color: var(--text-2);
  background: var(--bg-input);
  font-size: .74rem;
  letter-spacing: .04em;
}

.itinerary-table th:nth-child(1) { width: 125px; }
.itinerary-table th:nth-child(2) { width: 340px; }
.itinerary-table th:nth-child(3) { width: 195px; }
.itinerary-table th:nth-child(4) { width: 240px; }
.itinerary-table th:nth-child(5) { width: 180px; }

.itinerary-table td {
  padding: 17px 12px;
  border-right: 1px solid var(--border);
  color: var(--text-2);
  font-size: .82rem;
  line-height: 1.65;
}

.itinerary-table th:last-child,
.itinerary-table td:last-child {
  border-right: 0;
}

.itinerary-table tbody tr {
  transition: background var(--transition);
}

.itinerary-table tbody tr:hover {
  background: color-mix(in srgb, var(--accent) 5%, transparent);
}

.itinerary-table th:first-child,
.itinerary-table td:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
  background: var(--bg-card);
}

.itinerary-table th:first-child {
  z-index: 4;
  background: var(--bg-input);
}

.itinerary-table td > time,
.itinerary-table td:first-child > .base-link > time {
  display: block;
  color: var(--accent2);
  font-family: var(--mono);
  font-size: .76rem;
  font-weight: 700;
}

.itinerary-table td:first-child > strong {
  display: block;
  margin: 7px 0;
  color: var(--text);
  font-size: .95rem;
}

.day-flow {
  display: grid;
  gap: 11px;
}

.day-flow p {
  margin: 0;
}

.day-flow p + p {
  padding-top: 11px;
  border-top: 1px dashed var(--border);
}

.day-flow time {
  display: block;
  margin-bottom: 3px;
  color: var(--accent2);
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 700;
}

.flight-time-block {
  display: grid;
  gap: 6px;
}

.flight-time-block + .flight-time-block {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
}

.flight-time-block > strong {
  color: var(--accent2);
  font-family: var(--mono);
  font-size: .76rem;
}

.flight-time-block p {
  margin: 0;
  line-height: 1.6;
}

.flight-time-block + .subtle {
  display: block;
  margin-top: 8px;
}

.row-tag {
  display: inline-flex;
  padding: 3px 7px;
  border-radius: 999px;
  color: var(--text-3);
  background: var(--accent-bg);
  font-size: .68rem;
}

.subtle {
  color: var(--text-3);
  font-size: .75rem;
}

.table-booking-link,
.restaurant-link {
  display: inline-block;
  margin-top: 6px;
  color: var(--text);
  font-weight: 700;
  text-decoration-color: var(--accent);
  text-underline-offset: 3px;
}

.priority-link {
  color: var(--accent2);
}

.scenario-a-row td {
  background: color-mix(in srgb, var(--accent) 5%, var(--bg-card));
}

.scenario-b-row td {
  background: color-mix(in srgb, var(--accent2) 5%, var(--bg-card));
}

.scenario-a-row td:first-child,
.scenario-b-row td:first-child {
  box-shadow: inset 3px 0 var(--accent);
}

.scenario-b-row td:first-child {
  box-shadow: inset 3px 0 var(--accent2);
}

.text-link {
  color: var(--text-2);
  font-size: .84rem;
  text-decoration: none;
}

.itinerary-section .day {
  position: relative;
  margin-left: 18px;
  padding: 28px 0 28px 32px;
}

.itinerary-section .day::before {
  position: absolute;
  top: 35px;
  left: -7px;
  width: 13px;
  height: 13px;
  border: 4px solid var(--bg-card);
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 1px var(--border);
  content: "";
}

.itinerary-section .day::after {
  position: absolute;
  top: 48px;
  bottom: -35px;
  left: -1px;
  width: 1px;
  background: var(--border);
  content: "";
}

.itinerary-section .day:last-child::after {
  display: none;
}

.itinerary-section .day-date {
  font-family: var(--mono);
}

.city-amsterdam::before {
  background: #167c80 !important;
}

.city-riviera::before {
  background: #e27d43 !important;
}

.city-paris::before,
.scenario-day::before {
  background: #6b5bd2 !important;
}

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

.scenario-card {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-input);
}

.scenario-card h3 {
  margin: 10px 0 16px;
}

.scenario-card dl {
  grid-template-columns: 70px minmax(0, 1fr);
}

.scenario-label {
  display: inline-flex;
  padding: 4px 9px;
  border-radius: 999px;
  color: var(--text-2);
  background: var(--accent-bg);
  font-size: .75rem;
  font-weight: 700;
}

.scenario-b {
  border-style: dashed;
}

.scenario-b .scenario-label {
  color: var(--accent2);
  background: color-mix(in srgb, var(--accent2) 12%, transparent);
}

.decision-note {
  margin: 22px 0;
  padding: clamp(24px, 5vw, 44px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 12%, transparent), transparent 54%),
    var(--bg-card);
  box-shadow: var(--shadow);
}

.decision-note > span {
  color: var(--accent2);
  font-family: var(--mono);
  font-size: .76rem;
  text-transform: uppercase;
}

.decision-note h2 {
  max-width: 760px;
  margin: 9px 0;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

.decision-note p {
  max-width: 800px;
  color: var(--text-2);
}

.decision-note .button-link {
  margin-top: 12px;
  color: var(--bg);
  background: var(--text);
}

.booking-group {
  margin-top: 22px;
}

.booking-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.booking-group-head h3,
.booking-group-head p {
  margin: 0;
}

.booking-group-head p {
  color: var(--text-3);
  font-size: .82rem;
}

.booking-complete {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--accent3) 6%, var(--bg-input));
}

.booking-complete strong {
  display: block;
  margin: 10px 0 4px;
}

.booking-complete p {
  margin: 0;
  color: var(--text-2);
}

.planner-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 18px 0;
}

.planner-filter {
  padding: 7px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-2);
  background: var(--bg-card);
  font: inherit;
  font-size: .8rem;
  cursor: pointer;
}

.planner-filter.active {
  border-color: var(--text);
  color: var(--bg);
  background: var(--text);
}

.mobile-day-nav,
.mobile-bottom-nav {
  display: none;
}

.booking-item[hidden] {
  display: none;
}

pre.template {
  overflow-x: auto;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  white-space: pre-wrap;
  color: var(--text);
  background: var(--bg-input);
}

@media (max-width: 600px) {
  .country-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .travel-shell {
    padding-inline: 12px;
  }

  .travel-hero,
  .page-section {
    padding: 18px;
  }

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

  .day dt {
    margin-top: 8px;
  }
}

@media (max-width: 920px) {
  .transport-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .route-line {
    grid-template-columns: repeat(4, 1fr);
  }

  .route-line i {
    display: none;
  }
}

@media (max-width: 720px) {
  .scenario-grid {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .booking-group-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .itinerary-section .day {
    margin-left: 8px;
    padding-left: 24px;
  }
}

@media (max-width: 760px) {
  .itinerary-shell {
    padding-bottom: calc(92px + env(safe-area-inset-bottom));
  }

  .mobile-day-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    gap: 7px;
    overflow-x: auto;
    margin: 12px -12px;
    padding: 10px 12px;
    border-block: 1px solid var(--border);
    background: color-mix(in srgb, var(--bg) 92%, transparent);
    box-shadow: 0 8px 20px color-mix(in srgb, var(--text) 8%, transparent);
    scrollbar-width: none;
    backdrop-filter: blur(14px);
  }

  .compact-page-head {
    align-items: flex-start;
    margin-bottom: 4px;
    padding-inline: 2px;
  }

  .compact-page-head h1 {
    font-size: 1.45rem;
  }

  .compact-page-head a {
    min-height: 44px;
  }

  .topbar-secondary {
    display: none !important;
  }

  .mobile-day-nav::-webkit-scrollbar {
    display: none;
  }

  .mobile-day-nav a {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-width: 56px;
    min-height: 40px;
    padding: 6px 10px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text-2);
    background: var(--bg-card);
    font-family: var(--mono);
    font-size: .75rem;
    text-decoration: none;
  }

  .mobile-bottom-nav {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    max-width: 520px;
    margin: 0 auto;
    padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--border);
    background: color-mix(in srgb, var(--bg-card) 94%, transparent);
    box-shadow: 0 -10px 30px color-mix(in srgb, var(--text) 12%, transparent);
    backdrop-filter: blur(16px);
  }

  .mobile-bottom-nav a {
    display: grid;
    min-height: 50px;
    place-content: center;
    border-radius: var(--radius-sm);
    color: var(--text-3);
    text-align: center;
    text-decoration: none;
  }

  .mobile-bottom-nav a.active {
    color: var(--text);
    background: var(--accent-bg);
  }

  .mobile-bottom-nav span {
    font-size: .65rem;
  }

  .mobile-bottom-nav strong {
    font-size: .82rem;
  }

  .page-nav {
    display: none;
  }

  .itinerary-table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .itinerary-table,
  .itinerary-table tbody {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .itinerary-table thead {
    display: none;
  }

  .itinerary-table tbody {
    display: grid;
    gap: 14px;
  }

  .itinerary-table .schedule-row {
    display: grid;
    overflow: hidden;
    scroll-margin-top: 78px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-card);
  }

  .itinerary-table td,
  .itinerary-table td:first-child {
    position: static;
    display: block;
    width: auto;
    padding: 13px 14px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
    background: transparent;
  }

  .itinerary-table td:last-child {
    border-bottom: 0;
  }

  .itinerary-table td::before {
    display: block;
    margin-bottom: 7px;
    color: var(--text-3);
    content: attr(data-label);
    font-family: var(--mono);
    font-size: .67rem;
    line-height: 1.5;
    text-transform: uppercase;
  }

  .itinerary-table td:first-child {
    display: block;
    padding: 17px 14px;
    background: var(--bg-input);
  }

  .itinerary-table td:first-child::before {
    display: none;
  }

  .scenario-a-row td:first-child,
  .scenario-b-row td:first-child {
    box-shadow: inset 4px 0 var(--accent);
  }

  .scenario-b-row td:first-child {
    box-shadow: inset 4px 0 var(--accent2);
  }

  .table-booking-link,
  .restaurant-link,
  .booking-item .official-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
}

@media (max-width: 500px) {
  .transport-grid,
  .reservation-grid {
    grid-template-columns: 1fr;
  }

  .transport-card,
  .reservation-card {
    min-height: 0;
  }

  .route-line {
    grid-template-columns: repeat(2, 1fr);
  }

  .scenario-card dl {
    grid-template-columns: 1fr;
  }
}

@media print {
  .topbar,
  .page-nav,
  .theme-btn,
  .decision-note .button-link {
    display: none !important;
  }

  .travel-shell {
    max-width: none;
    padding: 0;
  }

  .travel-hero,
  .transport-board,
  .booking-spotlight,
  .itinerary-section,
  .decision-note {
    box-shadow: none;
    break-inside: avoid;
  }

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

  .itinerary-table {
    min-width: 0;
    table-layout: auto;
  }

  .itinerary-table th,
  .itinerary-table td {
    position: static;
    padding: 7px;
    font-size: .68rem;
  }
}
