*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  color: #333;
  background: #fff;
}

a {
  color: inherit;
}

/* Hero */
.tour-hero {
  position: relative;
  min-height: clamp(22rem, 52vh, 32rem);
  overflow: hidden;
  background: #1a1f1d;
}

.tour-hero__media {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.tour-hero__media img {
  display: block;
  width: 100%;
  height: 130%;
  object-fit: cover;
  object-position: center 35%;
}

.tour-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.15) 55%, rgba(0, 0, 0, 0.35) 100%);
  pointer-events: none;
}

.tour-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  min-height: clamp(22rem, 52vh, 32rem);
  max-width: 72rem;
  margin: 0 auto;
  padding: 2rem 1.25rem 2.5rem;
}

.tour-hero__panel {
  max-width: 34rem;
  padding: 1.35rem 1.35rem 1.35rem 1.15rem;
  border-left: 4px solid #952f24;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(6px);
}

.tour-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
}

.tour-hero__badge {
  margin: 0;
  padding: 0.3rem 0.65rem;
  border-radius: 0.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  background: rgba(149, 47, 36, 0.9);
}

.tour-hero__badge--muted {
  background: rgba(255, 255, 255, 0.14);
}

.tour-hero__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.65rem, 4.5vw, 2.35rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
}

.tour-hero__subtitle {
  margin: 0;
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}

.tour-hero__subtitle--second {
  margin-top: 0.75rem;
}

.tour-hero__price {
  margin: 0.85rem 0 0;
  font-size: clamp(1.05rem, 2.8vw, 1.2rem);
  font-weight: 600;
  line-height: 1.35;
  color: #fff;
}

/* Meta bar */
.tour-meta {
  background: #2b2f2e;
  color: #fff;
}

.tour-meta__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  max-width: 72rem;
  margin: 0 auto;
}

.tour-meta__item {
  padding: 1rem 1.25rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.tour-meta__item:last-child {
  border-right: none;
}

.tour-meta__label {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.tour-meta__value {
  display: block;
  font-size: 1.05rem;
  font-weight: 500;
  color: #fff;
}

@media (max-width: 640px) {
  .tour-meta__inner--split-price {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tour-meta__inner--split-price .tour-meta__item:nth-child(3) {
    border-right: none;
  }

  .tour-meta__inner--split-price .tour-meta__item--price {
    grid-column: 1 / -1;
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    gap: 0.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-right: none;
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
  }

  .tour-meta__inner--split-price .tour-meta__item--price .tour-meta__label,
  .tour-meta__inner--split-price .tour-meta__item--price .tour-meta__value {
    display: inline;
    margin: 0;
  }
}

/* Nav */
.tour-nav-wrap {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.tour-nav {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 1rem;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.tour-nav__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tour-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 1rem 1.1rem;
  border-bottom: 3px solid transparent;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: #555;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.tour-nav__home-icon {
  display: block;
  width: 0.95rem;
  height: 0.95rem;
  flex-shrink: 0;
}

.tour-nav__link:hover {
  color: #952f24;
}

.tour-nav__link.is-active {
  color: #952f24;
  border-bottom-color: #952f24;
}

.tour-nav__cta {
  display: inline-flex;
  align-items: center;
  align-self: center;
  flex-shrink: 0;
  padding: 0.65rem 1.15rem;
  border-radius: 0.2rem;
  background: #2b2f2e;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.15s ease;
}

.tour-nav__cta:hover {
  opacity: 0.88;
}

/* Layout */
.tour-body {
  max-width: 72rem;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

.tour-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 17.5rem;
  gap: 2.5rem;
  align-items: start;
}

.tour-section {
  margin-bottom: 2.75rem;
}

.tour-section:last-child {
  margin-bottom: 0;
}

.tour-section__title {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
  color: #222;
}

.tour-section__text {
  margin: 0 0 1rem;
  color: #444;
}

.tour-section__text:last-child {
  margin-bottom: 0;
}

.tour-audio {
  margin-top: 1.5rem;
  padding: 1.15rem 1.2rem;
  border-left: 4px solid #952f24;
  background: #f7f6f4;
  border-radius: 0 0.35rem 0.35rem 0;
}

.tour-audio__quote {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.45;
  color: #2b2f2e;
}

.tour-audio__player {
  display: block;
  width: 100%;
  max-width: 28rem;
  height: 2.75rem;
}

/* Why us list */
.tour-why {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tour-why li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.75rem;
  color: #444;
}

.tour-why li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #952f24;
}

/* Itinerary table */
.tour-table-wrap {
  overflow-x: auto;
}

.tour-table-wrap--flush .tour-table td {
  padding-left: 0;
  padding-right: 0;
}

.tour-table-wrap--flush .tour-table td:first-child {
  white-space: normal;
  font-weight: 400;
}

.tour-table-wrap--flush .tour-table td:last-child {
  font-weight: 400;
}

.tour-table-wrap--flush .tour-table tr:last-child td {
  font-weight: 700;
}

.tour-table td:last-child {
  text-align: right;
  white-space: nowrap;
  font-weight: 500;
}

.tour-table tr:last-child td:last-child {
  font-weight: 700;
}

.anastasia-trigger {
  display: inline;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  font-weight: inherit;
  color: #952f24;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-style: dashed;
  text-decoration-color: rgba(149, 47, 36, 0.5);
  text-underline-offset: 0.15em;
}

.anastasia-trigger:hover,
.anastasia-trigger:focus-visible {
  outline: none;
  text-decoration-color: #952f24;
}

.flight-dates-wrap {
  position: relative;
  display: inline-block;
  vertical-align: baseline;
}

.flight-dates-trigger {
  display: inline;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  font-weight: inherit;
  color: inherit;
  cursor: pointer;
  text-align: inherit;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-color: rgba(47, 79, 63, 0.45);
  text-underline-offset: 0.18em;
}

.flight-dates-trigger:hover,
.flight-dates-trigger:focus-visible,
.flight-dates-wrap.is-open .flight-dates-trigger {
  outline: none;
  text-decoration-color: #2f4f3f;
}

.flight-dates-flyout {
  position: absolute;
  z-index: 60;
  left: 50%;
  top: calc(100% - 1px);
  transform: translateX(-50%);
  width: min(17rem, calc(100vw - 2rem));
  margin-top: 0;
  padding: 0.65rem 0.85rem;
  border-radius: 0.55rem;
  background: #4a1c18;
  border: 1px solid rgba(149, 47, 36, 0.45);
  box-shadow: 0 10px 28px rgba(58, 18, 14, 0.35);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.45;
  color: #f0f0f0;
  text-align: left;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease, visibility 0.15s;
}

.flight-dates-wrap.is-open .flight-dates-flyout {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.flight-dates-flyout--fixed {
  position: fixed;
  z-index: 1000;
  left: 0.75rem;
  right: 0.75rem;
  width: auto;
  max-width: none;
  transform: none;
}

@media (max-width: 640px) {
  .flight-dates-flyout {
    width: auto;
    max-width: none;
  }
}

.flight-dates-flyout a,
.flight-dates-flyout a:visited {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.flight-dates-flyout a:hover,
.flight-dates-flyout a:focus-visible {
  color: #ffe8e4;
}

.tour-hero__panel,
.tour-hero__badges,
.tour-meta,
.tour-meta__item {
  overflow: visible;
}

.tour-hero .flight-dates-trigger,
.tour-meta .flight-dates-trigger {
  text-decoration-color: rgba(255, 255, 255, 0.72);
}

.tour-hero .flight-dates-trigger:hover,
.tour-hero .flight-dates-trigger:focus-visible,
.tour-hero .flight-dates-wrap.is-open .flight-dates-trigger,
.tour-meta .flight-dates-trigger:hover,
.tour-meta .flight-dates-trigger:focus-visible,
.tour-meta .flight-dates-wrap.is-open .flight-dates-trigger {
  text-decoration-color: #fff;
}

.tour-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.tour-table th,
.tour-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #e8e8e8;
  text-align: left;
  vertical-align: top;
}

.tour-table th {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #777;
  background: #fafafa;
}

.tour-table td:first-child {
  font-weight: 600;
  white-space: nowrap;
  color: #222;
}

.tour-table__link {
  display: inline-block;
  margin-top: 1rem;
  color: #952f24;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

/* Video panel */
.video-panel__layout {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.video-panel__tabs {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
  min-width: 0;
}

.video-panel__tab {
  display: block;
  width: 100%;
  padding: 0.6rem 0.7rem;
  border: 1px solid #e8e8e8;
  border-radius: 0.35rem;
  background: #fafafa;
  color: #666;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
}

.video-panel__tab.is-active {
  border-color: #952f24;
  background: #fff;
  color: #222;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.video-panel__player {
  flex-shrink: 0;
  width: min(11rem, 38vw);
}

.video-panel__panel {
  display: none;
}

.video-panel__panel.is-active {
  display: block;
}

.video-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 0.5rem;
  overflow: hidden;
  background: linear-gradient(165deg, #dce4df 0%, #b8c5bc 45%, #8f9f94 100%);
}

.video-card__media--placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 12px, rgba(255, 255, 255, 0.06) 12px, rgba(255, 255, 255, 0.06) 24px);
}

.video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #222;
  font-size: 1rem;
  line-height: 3rem;
  text-align: center;
}

.video-card__label {
  position: absolute;
  bottom: 0.65rem;
  left: 0.65rem;
  right: 0.65rem;
  padding: 0.3rem 0.5rem;
  border-radius: 0.3rem;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
}

/* How it works */
.tour-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 0.5rem;
}

.tour-step__num {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #952f24;
}

.tour-step__title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #222;
}

.tour-step__text {
  margin: 0;
  font-size: 0.92rem;
  color: #666;
  line-height: 1.55;
}

.tour-step__text a {
  color: #952f24;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.tour-step__note {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.85rem;
  font-style: italic;
  color: #999;
}

/* Sidebar */
.tour-sidebar__card {
  margin-bottom: 1.25rem;
  padding: 1.25rem;
  border: 1px solid #e8e8e8;
  border-radius: 0.35rem;
  background: #fafafa;
}

.tour-sidebar__card--accent {
  border-color: rgba(149, 47, 36, 0.25);
  background: #fff;
}

.tour-sidebar__heading {
  margin: 0 0 0.75rem;
  padding-bottom: 0.65rem;
  border-bottom: 3px solid #952f24;
  font-size: 1rem;
  font-weight: 600;
  color: #222;
}

.tour-sidebar__price {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #952f24;
}

.tour-sidebar__note {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #666;
}

.tour-sidebar__btn {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 0.25rem;
  background: #952f24;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.15s ease;
}

.tour-sidebar__btn:hover {
  opacity: 0.9;
}

.tour-sidebar__btn--dark {
  background: #2b2f2e;
}

/* Subpage title */
.tour-page-title {
  margin: 0 0 1.75rem;
  font-size: 1.75rem;
  font-weight: 600;
  color: #222;
}

/* Day accordion */
.day-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.day-accordion__item {
  border: 1px solid #ddd9d2;
  border-radius: 0.5rem;
  overflow: hidden;
  background: #fff;
}

.day-accordion__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
  color: #1f1f1f;
  background: #f0eeea;
  cursor: pointer;
  list-style: none;
  transition: background 0.15s ease;
}

.day-accordion__summary:hover {
  background: #e8e4de;
}

.day-accordion__summary::-webkit-details-marker {
  display: none;
}

.day-accordion__summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.55rem;
  height: 1.55rem;
  border: 1px solid #c9c2b8;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  color: #7a736b;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  box-shadow: none;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.day-accordion__summary:hover::after {
  border-color: #952f24;
  color: #952f24;
}

.day-accordion__item[open] .day-accordion__summary::after {
  content: "−";
  border-color: #952f24;
  color: #952f24;
  background: rgba(149, 47, 36, 0.07);
}

.day-accordion__item[open] .day-accordion__summary {
  background: #e3dfd8;
  border-bottom: 1px solid #ddd9d2;
}

.day-accordion__content {
  padding: 1.15rem 1.15rem 1.3rem;
  background: #fff;
  color: #444;
}

.day-accordion__layout {
  display: grid;
  grid-template-columns: minmax(0, 9.5rem) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.day-accordion__text {
  font-size: 1rem;
  line-height: 1.5;
  color: #444;
}

.day-accordion__text > p {
  margin: 0 0 0.65rem;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

.day-accordion__text > p:last-child {
  margin-bottom: 0;
}

.day-accordion__place {
  margin: 0 0 0.65rem !important;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #952f24;
}

.day-accordion__placeholder {
  padding: 1rem;
  border-radius: 0.35rem;
  background: #f7f5f2;
  color: #777;
  font-style: italic;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  border: 1px solid #ddd9d2;
  border-radius: 0.5rem;
  overflow: hidden;
  background: #fff;
}

.faq-item {
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #ddd9d2;
  background: transparent;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
  color: #1f1f1f;
  background: #f0eeea;
  cursor: pointer;
  list-style: none;
  transition: background 0.15s ease;
}

.faq-item__summary:hover {
  background: #e8e4de;
}

.faq-item__summary::-webkit-details-marker {
  display: none;
}

.faq-item__summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.55rem;
  height: 1.55rem;
  border: 1px solid #c9c2b8;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  color: #7a736b;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  box-shadow: none;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.faq-item__summary:hover::after {
  border-color: #952f24;
  color: #952f24;
}

.faq-item[open] .faq-item__summary {
  background: #e3dfd8;
}

.faq-item[open] .faq-item__summary::after {
  content: "−";
  border-color: #952f24;
  color: #952f24;
  background: rgba(149, 47, 36, 0.07);
}

.faq-item__answer {
  padding: 1.15rem 1.15rem 1.3rem;
  background: #fff;
  color: #444;
}

.faq-item__answer .tour-table-wrap + p {
  margin-top: 2.25rem;
}

.faq-item__answer p {
  margin: 0 0 0.85rem;
}

.faq-item__answer a {
  color: #952f24;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.faq-item__answer a:hover {
  color: #6d2319;
}

.faq-item__answer .flight-dates-flyout a,
.faq-item__answer .flight-dates-flyout a:visited {
  color: #fff;
}

.faq-item__answer .flight-dates-flyout a:hover,
.faq-item__answer .flight-dates-flyout a:focus-visible {
  color: #ffe8e4;
}

.tour-hero .flight-dates-flyout a,
.tour-hero .flight-dates-flyout a:visited,
.tour-meta .flight-dates-flyout a,
.tour-meta .flight-dates-flyout a:visited {
  color: #fff;
}

.tour-hero .flight-dates-flyout a:hover,
.tour-hero .flight-dates-flyout a:focus-visible,
.tour-meta .flight-dates-flyout a:hover,
.tour-meta .flight-dates-flyout a:focus-visible {
  color: #ffe8e4;
}

.faq-item__answer ul {
  margin: 0 0 0.85rem;
  padding-left: 1.2rem;
}

.faq-item__answer li {
  margin-bottom: 0.35rem;
}

.faq-item__answer li:last-child {
  margin-bottom: 0;
}

.faq-item__answer p:last-child {
  margin-bottom: 0;
}

/* Days page */
.days-intro {
  margin-bottom: 1.75rem;
}

.days-intro .tour-page-title {
  margin-bottom: 0.45rem;
}

.days-intro__meta {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  color: #6b645c;
}

.day-accordion__concert {
  margin: 0 0 0.65rem;
  padding: 0;
  border: none;
  background: none;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

.day-accordion__concert-head {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.15rem;
}

.day-accordion__concert-icon {
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  background-color: #952f24;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18V5l12-2v13'/%3E%3Ccircle cx='6' cy='18' r='3'/%3E%3Ccircle cx='18' cy='16' r='3'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18V5l12-2v13'/%3E%3Ccircle cx='6' cy='18' r='3'/%3E%3Ccircle cx='18' cy='16' r='3'/%3E%3C/svg%3E") center / contain no-repeat;
}

.day-accordion__concert-body {
  display: block;
  margin: 0;
  color: inherit;
}

.day-accordion__concert strong {
  color: #952f24;
  font-weight: 600;
}

/* Evening options (games / free time / Anastasia) */
.day-extras {
  margin: 0;
  padding: 0;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  text-align: left;
}

.day-extras__label {
  color: #952f24;
  font-weight: 600;
}

.day-extras__anastasia {
  display: inline;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  font-size: inherit;
  color: inherit;
  cursor: pointer;
  vertical-align: baseline;
}

.day-extras__anastasia .day-extras__icon {
  color: #952f24;
  opacity: 0.75;
}

.day-extras__icon {
  display: inline-block;
  width: 0.9rem;
  height: 0.9rem;
  margin: 0 0.1rem 0 0;
  vertical-align: -0.12em;
  opacity: 0.85;
}

.day-extras__anastasia:hover,
.day-extras__anastasia:focus-visible {
  outline: none;
}

.day-extras__anastasia-label {
  font-size: inherit;
  line-height: inherit;
  color: #952f24;
  text-decoration: underline;
  text-decoration-style: dashed;
  text-decoration-color: rgba(149, 47, 36, 0.5);
  text-underline-offset: 0.15em;
}

.day-extras__anastasia:hover .day-extras__anastasia-label,
.day-extras__anastasia:focus-visible .day-extras__anastasia-label {
  text-decoration-color: #952f24;
  color: #952f24;
}

/* Anastasia brief dialog */
.anastasia-dialog:not([open]) {
  display: none;
}

.anastasia-dialog[open] {
  display: block;
  margin: auto;
  border: none;
}

.anastasia-dialog {
  width: min(30rem, calc(100vw - 2rem));
  max-height: calc(100vh - 2rem);
  padding: 0;
  border: 1px solid #ddd9d2;
  border-radius: 0.55rem;
  box-shadow: 0 12px 40px rgba(58, 53, 48, 0.18);
  background: #fff;
  color: #444;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  overflow: hidden;
}

.anastasia-dialog::backdrop {
  background: rgba(31, 31, 31, 0.45);
}

.anastasia-dialog__inner {
  position: relative;
  max-height: calc(100vh - 2rem);
  padding: 1.25rem 1.2rem 1.1rem;
  overflow-y: auto;
}

.anastasia-dialog__close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border: 1px solid #ddd9d2;
  border-radius: 50%;
  background: #faf9f7;
  color: #7a736b;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
}

.anastasia-dialog__close:hover {
  border-color: #952f24;
  color: #952f24;
}

.anastasia-dialog__intro {
  margin: 0 2rem 0.65rem 0;
  font-size: inherit;
  font-weight: 400;
  line-height: inherit;
  color: inherit;
}

.anastasia-dialog__list {
  margin: 0 0 0.85rem;
  padding-left: 1.1rem;
  font-size: inherit;
  font-weight: 400;
  line-height: inherit;
  color: inherit;
}

.anastasia-dialog__list li {
  margin-bottom: 0.45rem;
}

.anastasia-dialog__list li:last-child {
  margin-bottom: 0;
}

.anastasia-dialog__note {
  margin: 0 0 0.85rem;
  font-size: inherit;
  font-weight: 400;
  line-height: inherit;
  color: inherit;
}

.anastasia-dialog__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: inherit;
  font-weight: 400;
  color: #952f24;
}

.anastasia-dialog__ext-icon {
  width: 0.85rem;
  height: 0.85rem;
  flex-shrink: 0;
}

.anastasia-dialog__link:hover {
  text-decoration: underline;
}

.day-accordion__figures {
  margin-top: 0;
}

.day-accordion__figures img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.35rem;
  box-shadow: 0 3px 14px rgba(58, 53, 48, 0.12);
  background: #fff;
}

@media (max-width: 640px) {
  .day-accordion__layout {
    grid-template-columns: minmax(0, 6.75rem) minmax(0, 1fr);
    gap: 0.5rem 0.75rem;
    align-items: start;
  }

  .day-accordion__figures {
    grid-column: 1;
    grid-row: 1;
    max-width: none;
  }

  .day-accordion__text {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    font-size: 0.92rem;
  }

  .day-accordion__concert-icon {
    width: 1rem;
    height: 1rem;
  }
}

.days-outro {
  margin: 2rem 0 0;
  padding: 1.25rem 1rem;
  border-top: 1px solid #ddd5c8;
  font-size: 1.05rem;
  font-weight: 500;
  font-style: italic;
  text-align: center;
  color: #4a4540;
}

/* Reviews */
.reviews-intro {
  margin: -0.75rem 0 1.25rem;
  max-width: 40rem;
  color: #555;
  line-height: 1.6;
}

.reviews-table-wrap {
  margin-bottom: 1.5rem;
}

.reviews-table td:first-child,
.reviews-table th:first-child {
  width: 9rem;
  white-space: nowrap;
}

.reviews-table td:nth-child(2),
.reviews-table th:nth-child(2) {
  width: 10rem;
}

.reviews-table td:last-child {
  color: #444;
  line-height: 1.55;
}

.reviews-note {
  margin: 0;
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

.reviews-note a {
  color: #952f24;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.reviews-placeholder {
  padding: 2.5rem 1.5rem;
  border: 1px dashed #ccc;
  border-radius: 0.35rem;
  text-align: center;
  color: #777;
}

.reviews-intro--secondary {
  margin-top: -0.75rem;
  font-size: 0.95rem;
}

.reviews-intro a {
  color: #952f24;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.reviews-section {
  margin: 2.25rem 0 0;
  padding-top: 2rem;
  border-top: 1px solid #e8e4dc;
}

.reviews-section:first-of-type,
.reviews-section--first {
  margin-top: 1.5rem;
  padding-top: 0;
  border-top: none;
}

.reviews-section__title {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: #222;
}

.reviews-section__lead {
  margin: 0 0 1.25rem;
  max-width: 40rem;
  color: #555;
  line-height: 1.6;
}

.reviews-theme-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.25rem;
}

.reviews-theme-btn {
  margin: 0;
  padding: 0.45rem 0.85rem;
  border: 1px solid #d8d2c8;
  border-radius: 999px;
  background: #fff;
  color: #444;
  font: inherit;
  font-size: 0.84rem;
  line-height: 1.35;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s, box-shadow 0.15s;
}

.reviews-theme-btn:hover {
  border-color: #b0bab4;
  background: #f7f6f3;
}

.reviews-theme-btn.is-active {
  border-color: #2f4f3f;
  background: #2f4f3f;
  color: #fff;
  box-shadow: 0 1px 3px rgba(47, 79, 63, 0.18);
}

.reviews-theme-btn--all.is-active {
  border-color: #952f24;
  background: #952f24;
  box-shadow: 0 1px 3px rgba(149, 47, 36, 0.18);
}

.review-highlight {
  padding: 0.05em 0.12em;
  border-radius: 0.15em;
  background: rgba(201, 162, 39, 0.35);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.reviews-dashboard {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.reviews-carousel {
  border: 1px solid #e8e4dc;
  border-radius: 0.35rem;
  background: #faf9f7;
  overflow: hidden;
}

.reviews-carousel__viewport {
  overflow: hidden;
}

.reviews-carousel__track {
  display: flex;
  transition: transform 0.35s ease;
}

.reviews-carousel__slide {
  flex: 0 0 100%;
  margin: 0;
  padding: 1.25rem 1.2rem 1.1rem;
}

.reviews-carousel__quote {
  margin: 0;
  font-size: 1.02rem;
  font-style: italic;
  line-height: 1.6;
  color: #444;
}

.reviews-carousel__meta {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #666;
}

.reviews-carousel__quote-text {
  margin: 0;
}

.reviews-carousel__quote-text + .reviews-carousel__quote-text {
  margin-top: 0.85rem;
}

.reviews-carousel__translate {
  display: inline-block;
  margin: 0.65rem 0 0;
  padding: 0.2rem 0.55rem;
  border: 1px solid #ddd5c8;
  border-radius: 0.25rem;
  background: #fff;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #666;
  cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.reviews-carousel__translate:hover {
  color: #952f24;
  border-color: #c9bfb0;
}

.reviews-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.6rem 1rem 0.75rem;
  border-top: 1px solid #ebe6de;
}

.reviews-carousel__controls--top {
  border-top: none;
  border-bottom: 1px solid #ebe6de;
  padding: 0.65rem 1rem;
  gap: 0.85rem;
}

.reviews-carousel__dots {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  max-width: 14rem;
  min-height: 0.55rem;
}

.reviews-carousel__dot {
  display: block;
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #ccc5b8;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: background 0.15s ease, transform 0.15s ease;
}

.reviews-carousel__dot:hover {
  background: #a39a8f;
}

.reviews-carousel__dot.is-active {
  background: #952f24;
  transform: scale(1.2);
}

.reviews-carousel--long .reviews-carousel__viewport--long {
  max-height: min(28rem, 70vh);
  overflow-y: auto;
}

.reviews-carousel__quote--long {
  font-style: normal;
  font-size: 0.98rem;
  line-height: 1.65;
}

.reviews-carousel__quote--long p {
  margin: 0 0 0.85rem;
}

.reviews-carousel__quote--long p:last-child {
  margin-bottom: 0;
}

.reviews-carousel__note {
  margin: 0.65rem 0 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #777;
}

.reviews-connect {
  margin: 1rem 0 0;
  max-width: 40rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
}

.reviews-carousel__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 1px solid #ddd5c8;
  border-radius: 0.3rem;
  background: #fff;
  color: #555;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.reviews-carousel__btn:hover {
  background: #fff;
  border-color: #c9bfb0;
  color: #952f24;
}

.reviews-ratings {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.reviews-rating-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-height: 8.5rem;
  padding: 1rem 1.1rem;
  border: 1px solid #e8e4dc;
  border-radius: 0.35rem;
  background: #faf9f7;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.reviews-rating-card:hover {
  border-color: #c9bfb0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.reviews-rating-card__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #888;
}

.reviews-rating-card__row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: auto;
}

.reviews-rating-card__stars {
  display: block;
  flex-shrink: 0;
}

.reviews-rating-card__score {
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
  line-height: 1;
}

.reviews-rating-card__hint {
  font-size: 0.86rem;
  line-height: 1.4;
  color: #952f24;
}

.reviews-rating-card:hover .reviews-rating-card__hint {
  color: #7a241c;
}

.reviews-more {
  margin: 0;
  font-size: 0.88rem;
  color: #666;
  line-height: 1.6;
}

.reviews-more a {
  color: #952f24;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.reviews-table__empty {
  padding: 1.5rem 1rem !important;
  text-align: center;
  color: #999;
  font-style: italic;
}

.review-card {
  padding: 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid #e8e8e8;
  border-radius: 0.35rem;
  background: #fafafa;
}

.review-card__text {
  margin: 0;
  font-style: italic;
  color: #444;
}

.review-card__author {
  margin: 0.65rem 0 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: #666;
}

/* Footer */
.tour-footer {
  margin-top: 2rem;
  padding: 1.5rem 1.25rem;
  border-top: 1px solid #e8e8e8;
  font-size: 0.88rem;
  color: #888;
  text-align: center;
  line-height: 1.6;
}

.tour-footer p {
  margin: 0 0 0.35rem;
}

.tour-footer strong {
  font-weight: 600;
  color: #666;
}

.tour-footer a {
  color: #952f24;
  text-decoration: none;
}

.tour-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 820px) {
  .tour-layout {
    grid-template-columns: 1fr;
  }

  .tour-sidebar {
    margin-top: 0.5rem;
  }

  .tour-steps {
    grid-template-columns: 1fr;
  }

  .tour-nav {
    flex-direction: column;
    padding-bottom: 0.75rem;
  }

  .tour-nav__tabs {
    width: 100%;
  }

  .tour-nav__link {
    padding: 0.75rem 0.65rem;
    font-size: 0.75rem;
    gap: 0.3rem;
  }

  .tour-nav__home-icon {
    width: 0.85rem;
    height: 0.85rem;
  }

  .tour-nav__cta {
    align-self: stretch;
    justify-content: center;
    margin-bottom: 0.5rem;
  }

  .video-panel__layout {
    gap: 0.55rem;
  }

  .video-panel__tab {
    font-size: 0.72rem;
    padding: 0.45rem;
  }

  .video-panel__player {
    width: min(9.5rem, 42vw);
  }

  .reviews-ratings {
    grid-template-columns: 1fr;
  }
}

.tour-hero__media .media-placeholder--hero {
  width: 100%;
  height: 130%;
  min-height: clamp(22rem, 52vh, 32rem);
  border-radius: 0;
}

/* Media placeholders */
.media-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 12rem;
  border-radius: 0.5rem;
  background: linear-gradient(145deg, #d8ddd9 0%, #c4ccc7 45%, #b0bab4 100%);
  border: 1px dashed rgba(47, 79, 63, 0.28);
}

.media-placeholder--compact {
  min-height: 8rem;
  margin-top: 1rem;
}

.media-placeholder--tall {
  min-height: 14rem;
}

.media-placeholder__label {
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(42, 52, 48, 0.65);
  text-align: center;
}

/* Photo gallery */
.tour-section--gallery {
  padding-top: 0.25rem;
}

.tour-section__title--gallery {
  margin-bottom: 0.45rem;
}

.tour-gallery__note {
  margin: 0 0 0.85rem;
  max-width: 36rem;
  font-size: 0.78rem;
  line-height: 1.55;
  color: #888;
}

.tour-gallery__notify {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.tour-gallery__notify:hover {
  color: #555;
}

.tour-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
  grid-auto-rows: 8.5rem;
}

.tour-gallery--collage {
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(5.5rem, 10vw);
  gap: 0;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.tour-gallery--collage .tour-gallery__item {
  border-radius: 0;
}

.tour-gallery--collage .tour-gallery__img {
  border-radius: 0;
}

.tour-gallery__item--p0 { grid-column: 1 / 5; grid-row: 1 / 4; }
.tour-gallery__item--p1 { grid-column: 5 / 6; grid-row: 1 / 2; }
.tour-gallery__item--p2 { grid-column: 6 / 7; grid-row: 1 / 2; }
.tour-gallery__item--p3 { grid-column: 5 / 6; grid-row: 2 / 3; }
.tour-gallery__item--p4 { grid-column: 6 / 7; grid-row: 2 / 3; }
.tour-gallery__item--p5 { grid-column: 5 / 7; grid-row: 3 / 4; }
.tour-gallery__item--p6 { grid-column: 1 / 4; grid-row: 4 / 6; }
.tour-gallery__item--p7 { grid-column: 4 / 7; grid-row: 4 / 6; }
.tour-gallery__item--p8 { grid-column: 1 / 3; grid-row: 6 / 8; }
.tour-gallery__item--p9 { grid-column: 3 / 5; grid-row: 6 / 8; }
.tour-gallery__item--p10 { grid-column: 5 / 7; grid-row: 6 / 8; }
.tour-gallery__item--p11 { grid-column: 1 / 3; grid-row: 8 / 10; }
.tour-gallery__item--p12 { grid-column: 3 / 5; grid-row: 8 / 10; }
.tour-gallery__item--p13 { grid-column: 5 / 6; grid-row: 8 / 10; }
.tour-gallery__item--p14 { grid-column: 6 / 7; grid-row: 8 / 10; }
.tour-gallery__item--p15 { grid-column: 1 / 4; grid-row: 10 / 11; }
.tour-gallery__item--p16 { grid-column: 4 / 7; grid-row: 10 / 11; }

.tour-gallery__item {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0;
  border: none;
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: zoom-in;
  background: transparent;
  font: inherit;
  text-align: left;
}

.tour-gallery__media {
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 0.5rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.tour-gallery__item .media-placeholder {
  min-height: 0;
  height: 100%;
}

.tour-gallery__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.tour-gallery__item:hover .tour-gallery__media,
.tour-gallery__item:hover .tour-gallery__img,
.tour-gallery__item:focus-visible .tour-gallery__media,
.tour-gallery__item:focus-visible .tour-gallery__img {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.tour-gallery__item:focus-visible {
  outline: 2px solid #952f24;
  outline-offset: 3px;
}

.tour-gallery__item--wide {
  grid-column: span 2;
}

.tour-gallery__item--tall {
  grid-row: span 2;
}

.tour-gallery__item--large {
  grid-column: span 2;
  grid-row: span 2;
}

/* Lightbox */
body.tour-lightbox-open {
  overflow: hidden;
}

.tour-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 4rem 4.5rem;
  background: rgba(18, 20, 19, 0.88);
}

.tour-lightbox[hidden] {
  display: none !important;
}

.tour-lightbox__stage {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: min(92vw, 56rem);
  max-height: 78vh;
}

.tour-lightbox__img {
  display: block;
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  height: auto;
  border-radius: 0.35rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.tour-lightbox__placeholder {
  min-width: min(88vw, 42rem);
  min-height: min(60vh, 28rem);
  border-radius: 0.35rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.tour-lightbox__caption {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  margin: 0;
  max-width: min(90vw, 36rem);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
}

.tour-lightbox__close,
.tour-lightbox__nav {
  position: absolute;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s ease;
}

.tour-lightbox__close:hover,
.tour-lightbox__nav:hover,
.tour-lightbox__close:focus-visible,
.tour-lightbox__nav:focus-visible {
  background: rgba(255, 255, 255, 0.22);
  outline: none;
}

.tour-lightbox__close {
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
}

.tour-lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  font-size: 1.25rem;
  line-height: 1;
}

.tour-lightbox__nav--prev {
  left: 1rem;
}

.tour-lightbox__nav--next {
  right: 1rem;
}

@media (max-width: 720px) {
  .tour-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 7.5rem;
  }

  .tour-gallery--collage {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(5.5rem, 26vw);
    grid-auto-flow: row;
  }

  .tour-gallery--collage .tour-gallery__item {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }

  /* Один крупный кадр сверху; остальные попарно — без дыр */
  .tour-gallery--collage .tour-gallery__item--p0 {
    grid-column: 1 / -1 !important;
    grid-row: span 2 !important;
  }

  .tour-gallery__item--large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .tour-lightbox {
    padding: 3rem 1rem 4rem;
  }

  .tour-lightbox__nav--prev {
    left: 0.35rem;
  }

  .tour-lightbox__nav--next {
    right: 0.35rem;
  }
}

/* Quote block (replaces audio on home) */
.tour-audio--quote {
  margin-top: 1.5rem;
  padding: 1.25rem 1.35rem;
  border-left: 4px solid #952f24;
  background: #f6f6f4;
  border-radius: 0 0.35rem 0.35rem 0;
}

.tour-audio--quote .tour-audio__quote {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.5;
  color: #2a2f2d;
}

.tour-audio__attribution {
  margin: 0.65rem 0 0;
  font-size: 0.88rem;
  color: #777;
}

.tour-section__text--lead {
  font-size: 1.05rem;
  color: #444;
}

/* Journey anchors (start / finish) */
.journey-anchors {
  display: grid;
  gap: 0;
  margin: 1.25rem 0 1.5rem;
}

@media (min-width: 640px) {
  .journey-anchors {
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
    gap: 0 1rem;
  }
}

.journey-anchor {
  padding: 1.25rem 1.35rem;
  background: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: 0.5rem;
}

.journey-anchor__tag {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.2rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #952f24;
  background: rgba(149, 47, 36, 0.1);
  border-radius: 0.2rem;
}

.journey-anchor__date {
  margin: 0 0 0.15rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: #222;
}

.journey-anchor__place {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
  font-weight: 600;
  color: #2f4f3f;
}

.journey-anchor__detail {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #666;
}

.journey-anchor__photo {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 1rem;
  border-radius: 0.35rem;
}

.journey-spine {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 0;
  color: #b0bab4;
}

@media (min-width: 640px) {
  .journey-spine {
    padding: 0 0.35rem;
    align-self: center;
  }
}

.journey-spine__route {
  display: flex;
  align-items: center;
  justify-content: center;
}

.journey-spine__route--down {
  flex-direction: column;
  width: 1rem;
  height: 4.25rem;
}

.journey-spine__route--right {
  display: none;
  flex-direction: row;
  width: 6rem;
  height: 1rem;
}

@media (min-width: 640px) {
  .journey-spine__route--down {
    display: none;
  }

  .journey-spine__route--right {
    display: flex;
  }
}

.journey-spine__shaft {
  flex: 1 1 auto;
  background: #b0bab4;
}

.journey-spine__route--down .journey-spine__shaft {
  width: 2px;
  min-height: 0.85rem;
}

.journey-spine__route--right .journey-spine__shaft {
  height: 2px;
  min-width: 0.85rem;
}

.journey-spine__dot {
  flex-shrink: 0;
  width: 0.55rem;
  height: 0.55rem;
  border: 2px solid #952f24;
  border-radius: 50%;
  background: #fff;
}

.journey-spine__head {
  flex-shrink: 0;
  width: 0;
  height: 0;
}

.journey-spine__head--down {
  border-top: 0.45rem solid #952f24;
  border-left: 0.35rem solid transparent;
  border-right: 0.35rem solid transparent;
}

.journey-spine__head--right {
  border-left: 0.45rem solid #952f24;
  border-top: 0.35rem solid transparent;
  border-bottom: 0.35rem solid transparent;
}

.journey-spine__label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #888;
  text-align: center;
  white-space: nowrap;
}

/* Promise grid */
.promise-grid {
  display: grid;
  gap: 1rem;
  margin-top: 0.75rem;
}

@media (min-width: 640px) {
  .promise-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.promise-card {
  padding: 1.25rem 1.35rem;
  border-radius: 0.5rem;
  border: 1px solid #e8e8e8;
}

.promise-card--sure {
  background: #f8faf9;
  border-color: rgba(47, 79, 63, 0.18);
}

.promise-card--flex {
  background: #faf8f6;
  border-color: rgba(149, 47, 36, 0.15);
}

.promise-card__title {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: #2f4f3f;
}

.promise-card--flex .promise-card__title {
  color: #952f24;
}

.promise-card__list {
  margin: 0;
  padding-left: 1.2rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #444;
}

.promise-card__list li {
  margin-bottom: 0.4rem;
}

.promise-card__list li:last-child {
  margin-bottom: 0;
}

/* Sidebar teaser */
.tour-sidebar__card:not(.tour-sidebar__card--accent) {
  margin-top: 1rem;
  padding: 1.15rem 1.25rem;
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 0.5rem;
}

.tour-sidebar__teaser {
  margin: 0;
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.55;
  color: #555;
}

.tour-sidebar__teaser-link {
  margin: 0.85rem 0 0;
  font-size: 0.9rem;
}

.tour-sidebar__teaser-link a {
  color: #952f24;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

/* Cities page */
.days-intro__lead {
  max-width: 40rem;
  margin: 0.75rem auto 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #555;
  text-align: center;
}

.route-spine-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.75rem;
  margin: 1.5rem 0 2rem;
  padding: 1rem 1.25rem;
  background: #2b2f2e;
  border-radius: 0.5rem;
  color: #fff;
}

.route-spine-banner__city {
  font-size: 1.05rem;
  font-weight: 600;
}

.route-spine-banner__arrow {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.45);
}

.city-chapter {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #e8e8e8;
}

.city-chapter:last-of-type {
  border-bottom: none;
  margin-bottom: 2rem;
}

.city-chapter__header {
  margin-bottom: 1.25rem;
}

.city-chapter__title {
  margin: 0 0 0.25rem;
  font-size: clamp(1.45rem, 4vw, 1.85rem);
  font-weight: 600;
  color: #2f4f3f;
}

.city-chapter__meta {
  margin: 0;
  font-size: 0.92rem;
  color: #888;
}

.city-chapter__layout {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .city-chapter__layout {
    grid-template-columns: minmax(0, 14rem) 1fr;
    gap: 1.75rem;
    align-items: start;
  }

  .city-chapter__media {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-self: start;
    width: 100%;
    max-width: 14rem;
  }
}

.city-chapter__figure {
  margin: 0;
  width: 100%;
}

.city-chapter__photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 0.5rem;
}

.city-chapter__photo--tall {
  aspect-ratio: 2 / 3;
}

.city-chapter__caption {
  margin: 0.4rem 0 0;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #888;
  text-align: left;
}

.city-chapter__body p {
  margin: 0 0 1rem;
  line-height: 1.65;
  color: #444;
}

.city-chapter__subtitle {
  margin: 1.25rem 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
}

.city-chapter__list {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  line-height: 1.6;
  color: #444;
}

.city-chapter__list li {
  margin-bottom: 0.4rem;
}

.city-chapter__hotel {
  margin: 0;
  padding: 0.85rem 1rem;
  font-size: 0.92rem;
  background: #f6f6f4;
  border-radius: 0.35rem;
  border-left: 3px solid #952f24;
}

.freedom-block {
  margin: 2rem 0;
  padding: 1.5rem 1.35rem;
  background: linear-gradient(135deg, #f8faf9 0%, #faf8f6 100%);
  border: 1px solid rgba(47, 79, 63, 0.12);
  border-radius: 0.5rem;
}

.freedom-block__title {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: #2f4f3f;
}

.freedom-block__list {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  line-height: 1.6;
  color: #444;
}

.freedom-block__list li {
  margin-bottom: 0.45rem;
}

.freedom-block__note {
  margin: 0;
  font-size: 0.92rem;
  color: #666;
}

.cities-cta {
  margin: 2rem 0;
  text-align: center;
}

.cities-cta .tour-sidebar__btn {
  display: inline-block;
  width: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

@media (prefers-reduced-motion: reduce) {
  .tour-hero__media {
    transform: none !important;
  }
}
