.page-home {
  --ghost-size: clamp(4.5rem, 13vw, 9rem);
  --card-shadow: 4px 4px 0 rgba(185, 165, 120, 0.22);
  overflow-x: hidden;
  color: var(--charcoal);
  font-family: var(--font-body);
  line-height: 1.8;
  background: var(--paper);
}

.page-home img {
  max-width: 100%;
  height: auto;
}

.page-home .section-hint {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
}

.page-home .chapter-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.375rem;
  border: 1px solid var(--gold);
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--gold);
  line-height: 1;
}

.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.page-home .btn--gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.page-home .btn--gold:hover {
  background: transparent;
  color: var(--gold);
}

.page-home .btn--ghost {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.page-home .btn--ghost:hover {
  background: var(--gold);
  color: var(--ink);
}

.page-home .home-section-head {
  margin-bottom: 2rem;
}

.page-home .home-section-head h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4.5vw, 2.75rem);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0.01em;
}

.page-home .home-section-head--inverse h2 {
  color: var(--paper);
}

.page-home .home-section-head__note {
  margin: 0.75rem 0 0;
  color: var(--slate);
  font-size: 0.875rem;
}

.page-home .home-section-head--inverse .home-section-head__note {
  color: var(--cyan-gray);
}

.page-home .home-directory {
  position: relative;
  padding: calc(var(--header-h) + 2.25rem) 0 3.25rem;
  background: var(--paper);
  overflow: hidden;
}

.page-home .home-directory::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 58%;
  height: 100%;
  border-left: 1px solid rgba(199, 164, 108, 0.28);
  transform: skewX(-14deg);
  transform-origin: top right;
  pointer-events: none;
}

.page-home .home-directory__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.page-home .home-directory__intro {
  max-width: 30rem;
}

.page-home .home-directory__intro h1 {
  margin: 0 0 1.25rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2.125rem, 7vw, 4.25rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.page-home .home-directory__lead {
  margin: 0 0 1.5rem;
  color: var(--slate);
  font-size: 0.96875rem;
}

.page-home .home-directory__map {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--gold-light);
}

.page-home .home-directory__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem 0.5rem;
  overflow: hidden;
  border-bottom: 1px solid var(--gold-light);
  color: var(--charcoal);
  text-decoration: none;
  transition: border-color var(--dur) var(--ease), padding-left var(--dur) var(--ease);
}

.page-home .home-directory__item:hover {
  padding-left: 1.25rem;
  border-bottom-color: var(--gold);
}

.page-home .home-directory__item-num {
  flex-shrink: 0;
  font-family: var(--font-data);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.page-home .home-directory__item-body {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.25rem 0.875rem;
}

.page-home .home-directory__item-name {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 700;
  color: var(--ink);
}

.page-home .home-directory__item-desc {
  width: 100%;
  font-size: 0.8125rem;
  color: var(--slate);
}

.page-home .home-directory__item-arrow {
  margin-left: auto;
  font-size: 1.125rem;
  color: var(--gold);
  transition: transform var(--dur) var(--ease);
}

.page-home .home-directory__item:hover .home-directory__item-arrow {
  transform: translateX(0.25rem);
}

.page-home .home-directory__ghost {
  position: absolute;
  right: 0;
  bottom: -0.875rem;
  z-index: 0;
  font-family: var(--font-display);
  font-size: var(--ghost-size);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(199, 164, 108, 0.35);
  pointer-events: none;
  user-select: none;
}

.page-home .home-data {
  padding: 2.5rem 0;
  background: var(--ink);
}

.page-home .home-data__panel {
  position: relative;
  border: 1px solid rgba(199, 164, 108, 0.5);
  overflow: hidden;
}

.page-home .home-data__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.24;
}

.page-home .home-data__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(120deg, rgba(11, 29, 42, 0.92) 12%, rgba(11, 29, 42, 0.62) 58%, rgba(11, 29, 42, 0.78) 100%);
  pointer-events: none;
}

.page-home .home-data__content {
  position: relative;
  z-index: 1;
  padding: 2rem 1.25rem 1.75rem;
}

.page-home .home-data__content .section-hint {
  color: var(--gold);
}

.page-home .home-data__content h2 {
  margin: 0 0 0.125rem;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 900;
  line-height: 1.2;
}

.page-home .home-data__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 1rem;
  margin: 1.75rem 0 1.25rem;
}

.page-home .home-data__stat {
  padding-left: 0.75rem;
  border-left: 1px solid rgba(199, 164, 108, 0.4);
}

.page-home .home-data__stat dt {
  margin: 0;
  font-size: 0.71875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan-gray);
}

.page-home .home-data__stat dd {
  margin: 0.125rem 0 0;
  font-family: var(--font-data);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--gold);
}

.page-home .home-data__stat dd i {
  font-style: normal;
  font-size: 0.6em;
  vertical-align: 0.08em;
}

.page-home .home-data__sync {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-size: 0.8125rem;
  color: var(--cyan-gray);
}

.page-home .home-data__sync-dot {
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--red);
  animation: pg-home-breathe 2.4s var(--ease) infinite;
}

@keyframes pg-home-breathe {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(178, 59, 59, 0.55);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(178, 59, 59, 0);
  }
}

.page-home .home-services {
  padding: 3.5rem 0 4rem;
  background: var(--paper);
}

.page-home .home-services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

.page-home .home-service-card {
  position: relative;
  display: block;
  padding: 1.75rem 1.5rem 1.5rem;
  background: #fffdf8;
  border: 1px solid rgba(11, 29, 42, 0.16);
  box-shadow: var(--card-shadow);
  color: inherit;
  text-decoration: none;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.page-home .home-service-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 1.75rem;
  height: 1.75rem;
  border-top: 3px solid var(--gold);
  border-left: 3px solid var(--gold);
}

.page-home .home-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 6px 6px 0 rgba(185, 165, 120, 0.35);
}

.page-home .home-service-card__tag {
  margin: 0 0 0.625rem;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.page-home .home-service-card h3 {
  margin: 0 0 0.5rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.35;
}

.page-home .home-service-card__text {
  margin: 0 0 1.25rem;
  color: var(--slate);
  font-size: 0.90625rem;
}

.page-home .home-service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--azure);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
}

.page-home .home-service-card__cta i {
  font-style: normal;
  transition: transform var(--dur) var(--ease);
}

.page-home .home-service-card:hover .home-service-card__cta i {
  transform: translateX(0.25rem);
}

.page-home .home-corridor {
  padding: 3.5rem 0 2.5rem;
  background: var(--ink);
  overflow: hidden;
}

.page-home .home-corridor .section-hint {
  color: var(--gold);
}

.page-home .home-corridor__track {
  display: flex;
  gap: 1rem;
  padding: 0.25rem 1.25rem 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.page-home .home-corridor__track::-webkit-scrollbar {
  height: 6px;
}

.page-home .home-corridor__track::-webkit-scrollbar-thumb {
  background: rgba(199, 164, 108, 0.45);
  border-radius: 3px;
}

.page-home .home-corridor__track::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
}

.page-home .home-corridor__card {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  flex: 0 0 15rem;
  min-height: 6.5rem;
  border: 1px solid rgba(199, 164, 108, 0.4);
  background: rgba(255, 255, 255, 0.04);
  color: var(--paper);
  text-decoration: none;
  transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.page-home .home-corridor__card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
}

.page-home .home-corridor__card--feature {
  flex-basis: 17.5rem;
}

.page-home .home-corridor__media img {
  display: block;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 2;
}

.page-home .home-corridor__body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.875rem 1rem 1.125rem;
}

.page-home .home-corridor__league {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.3;
}

.page-home .home-corridor__meta {
  font-size: 0.8125rem;
  color: var(--cyan-gray);
}

.page-home .home-corridor__status {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 0.375rem;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}

.page-home .home-chinese {
  padding: 3.5rem 0;
  background: var(--paper);
}

.page-home .home-chinese__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.page-home .home-chinese__content h2 {
  margin: 0 0 1rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 900;
  line-height: 1.2;
}

.page-home .home-chinese__content p {
  margin: 0 0 1rem;
  color: var(--slate);
  font-size: 0.96875rem;
}

.page-home .home-chinese__content .btn {
  margin-top: 0.625rem;
}

.page-home .home-chinese__media {
  position: relative;
}

.page-home .home-chinese__media::after {
  content: "";
  position: absolute;
  right: -0.875rem;
  bottom: -0.875rem;
  width: 100%;
  height: 100%;
  border: 1px solid var(--gold);
  z-index: 0;
  pointer-events: none;
}

.page-home .home-chinese__media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 8 / 5;
}

.page-home .home-season {
  padding: 3.5rem 0;
  background: var(--ink);
}

.page-home .home-season .section-hint {
  color: var(--gold);
}

.page-home .home-season__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.page-home .home-season__dial {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 21rem;
  margin: 0 auto;
}

.page-home .home-season__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 50%;
  opacity: 0.35;
}

.page-home .home-season__svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 21rem;
  height: auto;
  transform: translate(-50%, -50%);
  overflow: visible;
}

.page-home .home-season__ring {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1;
  opacity: 0.7;
}

.page-home .home-season__ring--inner {
  stroke-width: 1;
  opacity: 0.4;
}

.page-home .home-season__axis {
  stroke: rgba(199, 164, 108, 0.32);
  stroke-width: 1;
}

.page-home .home-season__axis--diag {
  stroke-dasharray: 2 5;
}

.page-home .home-season__label {
  fill: var(--paper);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.page-home .home-season__core {
  fill: var(--gold);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.page-home .home-season__core-sub {
  fill: var(--cyan-gray);
  font-family: var(--font-body);
  font-size: 9.5px;
  letter-spacing: 0.2em;
}

.page-home .home-season__dot-ring {
  fill: none;
  stroke: rgba(178, 59, 59, 0.4);
  stroke-width: 2;
  animation: pg-home-dot-ring 2.4s var(--ease) infinite;
}

@keyframes pg-home-dot-ring {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.45);
    opacity: 0.1;
  }
}

.page-home .home-season__dot {
  fill: var(--red);
}

.page-home .home-season__content h2 {
  margin: 0 0 1rem;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 900;
  line-height: 1.2;
}

.page-home .home-season__content > p {
  margin: 0 0 1rem;
  color: var(--cyan-gray);
  font-size: 0.96875rem;
}

.page-home .home-season__timeline {
  list-style: none;
  margin: 1.5rem 0 1.75rem;
  padding: 0;
  display: grid;
  gap: 1rem;
  border-left: 1px solid rgba(199, 164, 108, 0.4);
}

.page-home .home-season__timeline li {
  position: relative;
  padding-left: 1.25rem;
}

.page-home .home-season__timeline li::before {
  content: "";
  position: absolute;
  left: -0.3125rem;
  top: 0.375rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(199, 164, 108, 0.2);
}

.page-home .home-season__year {
  display: block;
  color: var(--gold);
  font-family: var(--font-data);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.page-home .home-season__timeline p {
  margin: 0.125rem 0 0;
  color: var(--cyan-gray);
  font-size: 0.875rem;
}

.page-home .home-season__content .btn {
  margin-top: 0.25rem;
}

@media (min-width: 720px) {
  .page-home .home-directory__item-body {
    flex-wrap: nowrap;
  }

  .page-home .home-directory__item-desc {
    width: auto;
    margin-left: 0.375rem;
  }

  .page-home .home-data__content {
    max-width: 74%;
    margin-left: auto;
    padding: 3rem 2rem 3rem 3rem;
  }

  .page-home .home-data__stats {
    gap: 2rem 1.5rem;
  }

  .page-home .home-services__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .page-home .home-service-card--tall {
    transform: translateY(1.25rem);
  }

  .page-home .home-service-card--tall:hover {
    transform: translateY(calc(1.25rem - 4px));
  }

  .page-home .home-corridor__track {
    padding-left: calc((100vw - var(--container)) / 2 + 1.25rem);
    padding-right: 1.5rem;
  }

  .page-home .home-chinese__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }

  .page-home .home-season__grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
  }

  .page-home .home-season__dial {
    max-width: 22rem;
  }

  .page-home .home-season__svg {
    max-width: 22rem;
  }
}

@media (min-width: 1080px) {
  .page-home .home-directory {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding-top: calc(var(--header-h) + 1.5rem);
  }

  .page-home .home-directory > .page-inner {
    width: 100%;
  }

  .page-home .home-directory__grid {
    grid-template-columns: 5fr 7fr;
    gap: 3rem;
  }

  .page-home .home-directory__intro {
    max-width: 26rem;
  }

  .page-home .home-directory__lead {
    font-size: 1rem;
  }

  .page-home .home-directory__item {
    gap: 1.125rem;
    padding: 1.25rem 0.75rem;
  }

  .page-home .home-directory__ghost {
    right: 1rem;
    bottom: -1.25rem;
  }

  .page-home .home-data {
    padding: 3.5rem 0;
  }

  .page-home .home-services {
    padding: 4.5rem 0 5rem;
  }

  .page-home .home-corridor {
    padding: 4.5rem 0 3rem;
  }

  .page-home .home-chinese {
    padding: 4.5rem 0;
  }

  .page-home .home-season {
    padding: 4.5rem 0;
  }

  .page-home .home-season__dial {
    max-width: 24rem;
  }

  .page-home .home-season__svg {
    max-width: 24rem;
  }
}
