/* Tokyo tour detail — intro block */

.tokyo-page {
  --tokyo-accent: #7cc101;
  --tokyo-hard: #ff8801;
  --tokyo-border: rgba(255, 255, 255, 0.1);
  --tokyo-muted: rgba(255, 255, 255, 0.6);
}

.tokyo-intro {
  padding: 80px 0 64px;
}

.hero__media {
  background:
  linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.61) 1%,
    rgba(0, 0, 0, 0.05) 40%,
    rgba(0, 0, 0, 0) 62%
  ),
  linear-gradient(
    180deg,
    rgba(26, 34, 41, 0) 70%,
    rgba(26, 34, 41, 0.48) 80%,
    #1a2229 100%
  ),
  url(../imgs/tour/tokyo/MILA0108@2x.png) center / cover no-repeat;
}
.tokyo-intro__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.tokyo-intro__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Arrow — same pattern as about-section__head */
.tokyo-intro__title {
  position: relative;
  margin: 0;
  font-weight: 500;
  font-size: 48px;
  line-height: 1;
  color: #ffffff;
}

.tokyo-intro__title::before {
  content: "";
  position: absolute;
  left: -78px;
  top: 50%;
  width: 46px;
  height: 36px;
  transform: translateY(-50%);
  background: url("../imgs/jiantou1.png") center / contain no-repeat;
}

.tokyo-intro__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.tokyo-intro__tag {
  display: inline-flex;
  align-items: center;
  padding: 8px;
  font-family: "en2400";
  font-size: 16px;
  line-height: 1;
  color: #ffffff;
}

.tokyo-intro__tag--accent {
  background: var(--tokyo-accent);
}

.tokyo-intro__tag--muted {
  background: rgba(255, 255, 255, 0.25);
}

.tokyo-intro__desc {
  margin: 0;
  max-width: 100%;
  font-family: "en2400";
  font-size: 16px;
  line-height: 200%;
  color: rgba(255, 255, 255, 0.8);
}

.tokyo-intro__stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 32px;
  border: 1px solid var(--tokyo-border);
  border-radius: 12px;
}

.tokyo-intro__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  text-align: center;
  min-width: 0;
}

.tokyo-intro__stat-label {
  font-family: "en2400";
  font-size: 16px;
  line-height: 1;
  color: var(--tokyo-muted);
}

.tokyo-intro__stat-value {
  margin: 0;
  
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

.tokyo-intro__stat-value--split {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  gap: 6px 8px;
}

.tokyo-intro__stat-part {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.tokyo-intro__stat-num {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.2;
  color: #ffffff;
  white-space: nowrap;
}

.tokyo-intro__stat-plus {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.2;
  color: #ffffff;
  padding-bottom: 22px;
}

.tokyo-intro__stat-sub {
  font-family: "en2400";
  font-size: 14px;
  line-height: 1;
  color: var(--tokyo-muted);
}

.tokyo-intro__stat-value--hard {
  color: var(--tokyo-hard);
}

@media (max-width: 1100px) {
  .tokyo-intro__stats {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 28px;
  }

  .tokyo-intro__stat {
    flex: 1 1 calc(33.333% - 16px);
    min-width: 140px;
  }
}

@media (max-width: 720px) {
  .tokyo-intro {
    padding: 48px 0 40px;
  }

  .tokyo-intro__inner {
    padding-left: 0;
    gap: 28px;
  }

  .tokyo-intro__title {
    font-size: 24px;
    padding-left: 56px;
  }

  .tokyo-intro__title::before {
    left: 0;
    width: 40px;
    height: 32px;
  }

  .tokyo-intro__desc {
    font-size: 14px;
    line-height: 180%;
  }

  .tokyo-intro__stats {
    flex-direction: column;
    align-items: stretch;
    padding: 20px 16px;
    gap: 24px;
  }

  .tokyo-intro__stat {
    flex: none;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--tokyo-border);
  }

  .tokyo-intro__stat:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }

  .tokyo-intro__stat-value--split {
    justify-content: flex-end;
  }

  .tokyo-intro__stat-part {
    align-items: flex-end;
  }

  .tokyo-intro__stat-plus {
    padding-bottom: 22px;
  }
}

/* Route highlights */
.tokyo-highlights {
  padding: 0 0 80px;
}

.tokyo-highlights__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.tokyo-highlights__title {
  position: relative;
  margin: 0;
  font-weight: 500;
  font-size: 48px;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 80px;
}

.tokyo-highlights__title::before {
  content: "";
  position: absolute;
  left: -78px;
  top: 50%;
  width: 46px;
  height: 36px;
  transform: translateY(-50%);
  background: url("../imgs/jiantou1.png") center / contain no-repeat;
}

.tokyo-highlights__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tokyo-highlight {
  position: relative;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background-color: #1a2229;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.tokyo-highlight--1 {
  background-image:
    linear-gradient(
      90deg,
      rgba(26, 34, 41, 0.88) 0%,
      rgba(26, 34, 41, 0.52) 42%,
      rgba(26, 34, 41, 0.12) 72%
    ),
    url("../imgs/tour/tokyo/lxld1.png");
}

.tokyo-highlight--2 {
  background-image:
    linear-gradient(
      90deg,
      rgba(26, 34, 41, 0.88) 0%,
      rgba(26, 34, 41, 0.52) 42%,
      rgba(26, 34, 41, 0.12) 72%
    ),
    url("../imgs/tour/tokyo/lxld2.png");
}

.tokyo-highlight--3 {
  background-image:
    linear-gradient(
      90deg,
      rgba(26, 34, 41, 0.88) 0%,
      rgba(26, 34, 41, 0.52) 42%,
      rgba(26, 34, 41, 0.12) 72%
    ),
    url("../imgs/tour/tokyo/lxld3.png");
}

.tokyo-highlight__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: min(100%, 720px);
  padding: 95px 0 95px 120px;
}

.tokyo-highlight__name {
  margin: 0;
  font-weight: 500;
  font-size: 40px;
  line-height: 100%;
  color: #ffffff;
}

.tokyo-highlight__desc {
  margin: 0;
  font-family: "en2400";
  font-size: 24px;
  line-height: 200%;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 720px) {
  .tokyo-highlights {
    padding-bottom: 48px;
  }

  .tokyo-highlights__inner {
    padding-left: 0;
    gap: 28px;
  }

  .tokyo-highlights__title {
    font-size: 24px;
    padding-left: 56px;
  }

  .tokyo-highlights__title::before {
    left: 0;
    width: 40px;
    height: 32px;
  }

  .tokyo-highlights__list {
    gap: 16px;
  }

  .tokyo-highlight {
    min-height: 200px;
  }

  .tokyo-highlight__content {
    width: 100%;
    padding: 28px 20px;
    gap: 8px;
  }

  .tokyo-highlight__name {
    font-size: 22px;
  }

  .tokyo-highlight__desc {
    font-size: 14px;
    line-height: 180%;
  }

  .tokyo-highlight--1 {
    background-image:
      linear-gradient(
        180deg,
        rgba(26, 34, 41, 0.15) 0%,
        rgba(26, 34, 41, 0.82) 68%
      ),
      url("../imgs/tour/tokyo/lxld1.png");
  }

  .tokyo-highlight--2 {
    background-image:
      linear-gradient(
        180deg,
        rgba(26, 34, 41, 0.15) 0%,
        rgba(26, 34, 41, 0.82) 68%
      ),
      url("../imgs/tour/tokyo/lxld2.png");
  }

  .tokyo-highlight--3 {
    background-image:
      linear-gradient(
        180deg,
        rgba(26, 34, 41, 0.15) 0%,
        rgba(26, 34, 41, 0.82) 68%
      ),
      url("../imgs/tour/tokyo/lxld3.png");
  }
}

/* Itinerary */
.tokyo-itinerary {
  padding: 0 0 80px;
}

.tokyo-itinerary__title {
  position: relative;
  margin: 0 0 80px;
  font-weight: 500;
  font-size: 48px;
  line-height: 1;
  color: #ffffff;
}

.tokyo-itinerary__title::before {
  content: "";
  position: absolute;
  left: -78px;
  top: 50%;
  width: 46px;
  height: 36px;
  transform: translateY(-50%);
  background: url("../imgs/jiantou1.png") center / contain no-repeat;
}

.tokyo-itinerary__days {
  --tokyo-itinerary-rail: 120px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* 左侧贯穿 Day1 / Day2 的连续竖线 */
.tokyo-itinerary__days::before {
  content: "";
  position: absolute;
  left: 13.7%;
  top: 20px;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.tokyo-day + .tokyo-day {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.tokyo-day__meta-accent {
  
  color: var(--accent);
}

.tokyo-day__grid {
  display: flex;
  gap: 0;
  align-items: flex-start;
}

.tokyo-day__aside {
  flex: none;
  padding-left: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 80px;
  border-right: none;
  min-height: 0;
}

.tokyo-day__label {
  margin: 0;
  font-size: 40px;
  line-height: 100%;
  color: #a4ff01;
}

.tokyo-day__rail {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  width: 100%;
}

.tokyo-day.is-expanded .tokyo-day__rail {
  display: flex;
}
/* .tokyo-day__rail_d1 {
  margin-top: 136px;
  min-height: 120px;
}
.tokyo-day__rail_d2 {
  margin-top: 168px;
  min-height: 480px;
}
.tokyo-day__rail_d3 {
  margin-top: 167px;
  min-height: 775px;
}
.tokyo-day__rail_d4 {
  margin-top: 168px;
  min-height: 480px;
}
.tokyo-day__rail_d5 {
  margin-top: 168px;
}
.tokyo-day__rail_d6 {
  margin-top: 104px;
} */
.tokyo-day__time {
  position: absolute;
  left: 0;
  font-size: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.tokyo-day__panel {
  flex: 1;
  min-width: 0;
  padding-left: 80px;
}

.tokyo-day__head {
  margin: 0 0 32px;
}

.tokyo-day__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.tokyo-day__heading {
  
  font-size: 40px;
  font-weight: 500;
  line-height: 100%;
  color: #a4ff01;
}

.tokyo-day__chev {
  flex: none;
  width: 12px;
  height: 12px;
  margin-right: 4px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg);
  transition: transform 0.25s var(--ease, ease);
}

.tokyo-day.is-expanded .tokyo-day__chev {
  transform: rotate(-135deg);
}

.tokyo-day__meta {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 200%;
  opacity: 0.8;
}

.tokyo-day__meta-line {
}

.tokyo-day__meta-key {
  color: rgba(255, 255, 255, 0.85);
}

.tokyo-day__link {
  color: #72fff3;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.tokyo-day__link:hover {
  color: #72fff3;
}

.tokyo-day__preview {
  display: flex;
  gap: 16px;
  align-items: stretch;
}

.tokyo-day__preview[hidden] {
  display: none !important;
}

.tokyo-day__preview > img,
.tokyo-day__preview-more {
  flex: 1;
  min-width: 0;
  height: clamp(160px, 18vw, 220px);
  border-radius: 4px;
  overflow: hidden;
}

.tokyo-day__preview > img {
  width: 100%;
  object-fit: cover;
  cursor: zoom-in;
}

.tokyo-day__preview-more {
  position: relative;
  cursor: zoom-in;
}

.tokyo-day__preview-more img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tokyo-day__preview-count {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
}

.tokyo-day__body {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.tokyo-day__body[hidden] {
  display: none !important;
}

.tokyo-day__period-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.tokyo-day__text {
  margin: 0;
  font-family: "en2400";
  font-size: 16px;
  line-height: 200%;
  color: rgba(255, 255, 255, 0.8);
}

.tokyo-day__swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.tokyo-day__swiper .swiper-slide {
  height: 200px;
}

.tokyo-day__swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
  cursor: zoom-in;
}

.tokyo-swiper__btn {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  cursor: pointer;
  transition: background 0.2s ease;
}

.tokyo-swiper__btn:hover {
  background: rgba(0, 0, 0, 0.65);
}

.tokyo-swiper__btn img {
  width: 100%;
  height: 100%;
}

.tokyo-swiper__btn--prev {
  left: 12px;
}

.tokyo-swiper__btn--next {
  right: 12px;
}

.tokyo-swiper__btn.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* Service items */
.tokyo-services {
}

.tokyo-services__title {
  position: relative;
  margin: 0 0 48px;
  
  font-size: 48px;
  line-height: 1;
  color: #ffffff;
}

.tokyo-services__title::before {
  content: "";
  position: absolute;
  left: -78px;
  top: 50%;
  width: 46px;
  height: 36px;
  transform: translateY(-50%);
  background: url("../imgs/jiantou1.png") center / contain no-repeat;
}

.tokyo-services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  align-items: stretch;
}

.tokyo-services__card {
  border: 1px solid #5b5b5b;
  padding: 56px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(71px) saturate(100%);
}

.tokyo-services__card--included {
  background: url("../imgs/tour/tokyo/DSCF5276@2x.png") top;
  background-size: cover;
  backdrop-filter: blur(71px) saturate(100%);
  background-repeat: no-repeat;
}
.tokyo-services__card_cover{
  position: absolute;
  backdrop-filter: blur(71px) saturate(100%);
  background: rgba(0, 0, 0, 0.74);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.tokyo-services__card--excluded {
  background: rgba(0, 0, 0, 0.02);
}

.tokyo-services__card-title {
  margin: 0 0 40px;
font-size: 40px;
line-height: 100%;
color: #fff;
  text-align: center;
}

.tokyo-services__card--included .tokyo-services__card-title {
color: #A4FF01;
}

.tokyo-services__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.tokyo-services__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.tokyo-services__icon {
  flex: none;
  width: 32px;
  height: 32px;
}

.tokyo-services__item-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tokyo-services__item-title {
  margin: 0;
  
font-size: 32px;
line-height: 100%;
color: #FFFFFF;
}

.tokyo-services__item-desc {
  margin: 0;
  font-family: "en2400";
  color: rgba(255, 255, 255, 0.8);
font-size: 16px;
font-weight: 500;
line-height: 200%;
letter-spacing: normal;
}

@media (max-width: 1024px) {
  .tokyo-services__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .tokyo-itinerary {
    padding-bottom: 48px;
  }

  .tokyo-itinerary__title {
    margin-bottom: 28px;
    padding-left: 56px;
    font-size: 24px;
  }

  .tokyo-itinerary__title::before {
    left: 0;
    width: 40px;
    height: 32px;
  }

  .tokyo-itinerary__days {
    gap: 24px;
  }

  .tokyo-itinerary__days::before {
    display: none;
  }

  .tokyo-day__grid {
    flex-direction: column;
  }

  .tokyo-day__aside {
    width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 0 0 16px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    min-height: 0;
  }

  .tokyo-day__label {
    font-size: 24px;
  }

  .tokyo-day.is-expanded .tokyo-day__rail {
    display: none;
  }

  .tokyo-day__panel {
    padding-left: 0;
    padding-top: 16px;
  }

  .tokyo-day__heading {
    font-size: 22px;
  }

  .tokyo-day__preview {
    flex-direction: column;
  }

  .tokyo-day__preview > img,
  .tokyo-day__preview-more {
    height: 180px;
  }

  .tokyo-day__swiper .swiper-slide {
    height: 200px;
  }

  .tokyo-services {
    padding-bottom: 48px;
  }

  .tokyo-services__title {
    margin-bottom: 28px;
    padding-left: 56px;
    font-size: 24px;
  }

  .tokyo-services__title::before {
    left: 0;
    width: 40px;
    height: 32px;
  }

  .tokyo-services__card {
    padding: 24px 20px 28px;
  }

  .tokyo-services__card-title {
    margin-bottom: 22px;
    font-size: 20px;
  }

  .tokyo-services__list {
    gap: 18px;
  }

  .tokyo-services__item-title {
    font-size: 16px;
  }

  .tokyo-services__item-desc {
    font-size: 13px;
  }
}

/* Image preview lightbox */
body.tokyo-lightbox-open {
  overflow: hidden;
}

.tokyo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.tokyo-lightbox[hidden] {
  display: none !important;
}

.tokyo-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  cursor: zoom-out;
}

.tokyo-lightbox__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: min(1200px, 100%);
  max-height: 100%;
}

.tokyo-lightbox__figure {
  margin: 0;
  width: 100%;
  max-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tokyo-lightbox__img {
  max-width: 100%;
  max-height: calc(100vh - 120px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: var(--shadow-card);
}

.tokyo-lightbox__close {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}

.tokyo-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.22);
}

.tokyo-lightbox__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: background 0.2s ease;
}

.tokyo-lightbox__nav::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  margin: 0 auto;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}

.tokyo-lightbox__nav:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.22);
}

.tokyo-lightbox__nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.tokyo-lightbox__nav[hidden] {
  display: none;
}

.tokyo-lightbox__nav--prev {
  left: 20px;
}

.tokyo-lightbox__nav--prev::before {
  transform: rotate(-135deg);
  margin-left: 18px;
}

.tokyo-lightbox__nav--next {
  right: 20px;
}

.tokyo-lightbox__nav--next::before {
  transform: rotate(45deg);
  margin-right: 18px;
}

.tokyo-lightbox__counter {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 720px) {
  .tokyo-lightbox {
    padding: 12px;
  }

  .tokyo-lightbox__close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
  }

  .tokyo-lightbox__nav {
    width: 40px;
    height: 40px;
  }

  .tokyo-lightbox__nav--prev {
    left: 8px;
  }

  .tokyo-lightbox__nav--next {
    right: 8px;
  }
}
