.page-home {
  --page-gap: 80px;
  background: var(--color-primary-bg);
  color: var(--color-text-light);
  overflow-x: hidden;
}

.page-home .home-breadcrumb {
  padding-top: 20px;
}

.page-home .home-breadcrumb__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-muted);
}

.page-home .home-breadcrumb__sep {
  color: var(--color-accent-gold);
}

.page-home .home-breadcrumb__link {
  color: var(--color-link);
  text-decoration: none;
  padding: 4px 10px;
  border-radius: 999px;
  transition: background var(--transition-speed) var(--transition-ease), color var(--transition-speed) var(--transition-ease);
}

.page-home .home-breadcrumb__link:hover {
  background: rgba(240, 160, 48, 0.14);
  color: var(--color-accent-gold);
}

.page-home .home-breadcrumb__current {
  color: var(--color-text-light);
  font-weight: 700;
}

.page-home .home-hero {
  position: relative;
  padding: 48px 0 56px;
  overflow: hidden;
}

.page-home .home-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: repeating-linear-gradient(90deg, transparent 0, transparent 32px, rgba(255, 255, 255, 0.025) 32px, rgba(255, 255, 255, 0.025) 34px);
  pointer-events: none;
}

.page-home .home-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

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

.page-home .home-hero__number {
  position: absolute;
  top: -24px;
  left: -6px;
  z-index: 2;
  font-size: 92px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px var(--color-accent-gold);
  pointer-events: none;
}

.page-home .home-hero__image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-secondary-bg);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

.page-home .home-hero__image-wrap img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-home .home-hero__image-tag {
  position: absolute;
  right: 16px;
  bottom: 16px;
}

.page-home .home-hero__content {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
}

.page-home .home-hero__content h1 {
  font-family: var(--font-headline);
  font-size: 28px;
  line-height: 1.3;
  margin: 12px 0 16px;
  color: var(--color-text-light);
}

.page-home .home-hero__content h1 strong {
  color: var(--color-accent-gold);
}

.page-home .home-hero__lead {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-muted);
  margin: 0 0 24px;
}

.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-home .home-hero__rule {
  background: var(--color-secondary-bg);
  color: var(--color-text-dark);
  border-radius: var(--radius-md);
  padding: 20px 20px 8px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.page-home .home-hero__rule-summary {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  cursor: pointer;
  font-weight: 700;
}

.page-home .home-hero__rule-summary::-webkit-details-marker {
  display: none;
}

.page-home .home-hero__rule-title {
  flex: 1;
  min-width: 160px;
  font-size: 14px;
}

.page-home .home-hero__rule-icon {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-accent-orange);
  flex-shrink: 0;
  transition: transform var(--transition-speed) var(--transition-ease);
}

.page-home .home-hero__rule-icon::before,
.page-home .home-hero__rule-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transform: translate(-50%, -50%);
}

.page-home .home-hero__rule-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.page-home .home-hero__rule[open] .home-hero__rule-icon {
  transform: rotate(45deg);
}

.page-home .home-hero__rule-body {
  padding-top: 16px;
  border-top: 1px dashed rgba(26, 26, 26, 0.15);
  margin-top: 14px;
}

.page-home .home-hero__rule-body p {
  font-size: 14px;
  line-height: 1.8;
  margin: 0 0 10px;
}

.page-home .home-hero__chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  font-size: 14px;
  border: 1px solid;
}

.page-home .home-hero__chip--condition {
  background: rgba(240, 160, 48, 0.12);
  border-color: var(--color-accent-gold);
  color: var(--color-text-light);
}

.page-home .home-hero__chip--time {
  background: rgba(232, 93, 42, 0.12);
  border-color: var(--color-accent-orange);
  color: var(--color-text-light);
}

.page-home .home-hero__chip-label {
  font-weight: 800;
  color: var(--color-accent-gold);
}

.page-home .home-hero__chip--time .home-hero__chip-label {
  color: var(--color-accent-orange);
}

.page-home .home-hero__chip-value {
  color: var(--color-text-light);
  font-size: 13px;
}

.page-home .home-hero__vertical {
  display: none;
}

.page-home .home-index {
  padding: 0 0 56px;
}

.page-home .home-index__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.page-home .home-index__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text-light);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: background var(--transition-speed) var(--transition-ease), border-color var(--transition-speed) var(--transition-ease);
}

.page-home .home-index__item:hover {
  background: rgba(240, 160, 48, 0.14);
  border-color: var(--color-accent-gold);
}

.page-home .home-index__num {
  color: var(--color-accent-gold);
  font-weight: 900;
}

.page-home .home-tier__header,
.page-home .home-mobile__header,
.page-home .home-vendor__header,
.page-home .home-gift__header,
.page-home .home-faq__header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.page-home .home-tier__heading h2,
.page-home .home-mobile__heading h2,
.page-home .home-vendor__heading h2,
.page-home .home-gift__heading h2,
.page-home .home-faq__heading h2 {
  font-family: var(--font-headline);
  font-size: 26px;
  line-height: 1.35;
  margin: 8px 0 12px;
}

.page-home .home-tier__heading > p:last-child,
.page-home .home-mobile__heading > p:last-child,
.page-home .home-vendor__heading > p:last-child,
.page-home .home-gift__heading > p:last-child,
.page-home .home-faq__heading > p:last-child {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-muted);
  margin: 0;
  max-width: 640px;
}

.page-home .home-tier {
  padding: 0 0 72px;
}

.page-home .home-tier__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.page-home .home-tier__card {
  position: relative;
  overflow: hidden;
  background: var(--color-secondary-bg);
  color: var(--color-text-dark);
  border-radius: var(--radius-md);
  padding: 24px 24px 20px 28px;
  transition: transform var(--transition-speed) var(--transition-ease), box-shadow var(--transition-speed) var(--transition-ease);
}

.page-home .home-tier__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 6px;
  background: var(--color-muted);
}

.page-home .home-tier__card--advance::before {
  background: var(--color-link);
}

.page-home .home-tier__card--elite::before {
  background: var(--color-accent-gold);
}

.page-home .home-tier__card--vip::before {
  background: var(--color-accent-orange);
}

.page-home .home-tier__card--royal {
  background: linear-gradient(135deg, #1A2A44, var(--color-primary-bg));
  color: var(--color-text-light);
}

.page-home .home-tier__card--royal::before {
  background: linear-gradient(180deg, var(--color-accent-gold), var(--color-accent-orange));
}

.page-home .home-tier__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.page-home .home-tier__level {
  font-size: 26px;
  font-weight: 900;
  color: var(--color-accent-orange);
  letter-spacing: 0.04em;
}

.page-home .home-tier__card--royal .home-tier__level {
  color: var(--color-accent-gold);
}

.page-home .home-tier__card h3 {
  font-size: 18px;
  margin: 10px 0 6px;
  font-weight: 900;
}

.page-home .home-tier__card p {
  font-size: 14px;
  margin: 0;
  color: #555;
  line-height: 1.6;
}

.page-home .home-tier__card--royal p {
  color: var(--color-muted);
}

.page-home .home-tier__foot {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.page-home .home-tier__banner {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.page-home .home-tier__foot p {
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.page-home .panel--cream {
  background: var(--color-secondary-bg);
  color: var(--color-text-dark);
  border-radius: 40px;
  padding: 36px 20px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
}

.page-home .panel--cream .exhibit-label {
  color: var(--color-accent-orange);
}

.page-home .home-mobile {
  padding: 16px 0 48px;
}

.page-home .home-mobile__header {
  color: var(--color-text-dark);
}

.page-home .home-mobile__heading > p:last-child {
  color: #555;
}

.page-home .home-mobile__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.page-home .home-mobile__event {
  background: #fffdf8;
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: transform var(--transition-speed) var(--transition-ease), box-shadow var(--transition-speed) var(--transition-ease);
}

.page-home .home-mobile__event:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.page-home .home-mobile__event h3 {
  font-size: 18px;
  margin: 12px 0 8px;
}

.page-home .home-mobile__event p {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
  margin: 0;
}

.page-home .home-mobile__link {
  margin: 0;
  text-align: right;
}

.page-home .home-mobile__link a {
  color: var(--color-link);
  text-decoration: underline;
  font-size: 14px;
}

.page-home .home-vendor {
  position: relative;
  padding: 48px 0 72px;
  overflow: hidden;
}

.page-home .home-vendor::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 85% 20%, rgba(240, 160, 48, 0.1), transparent 30%), radial-gradient(circle at 10% 80%, rgba(232, 93, 42, 0.08), transparent 26%);
  pointer-events: none;
}

.page-home .home-vendor__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

.page-home .home-vendor__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-secondary-bg);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
}

.page-home .home-vendor__map img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-home .home-vendor__list {
  display: grid;
  gap: 12px;
}

.page-home .home-vendor__item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
}

.page-home .home-vendor__city {
  font-weight: 800;
  color: var(--color-text-light);
  min-width: 64px;
}

.page-home .home-vendor__industry {
  flex: 1;
  color: var(--color-muted);
  font-size: 14px;
}

.page-home .home-vendor__note {
  color: var(--color-muted);
  font-size: 13px;
  margin: 4px 0 0;
  line-height: 1.7;
}

.page-home .home-gift {
  padding: 16px 0 48px;
}

.page-home .home-gift__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.page-home .home-gift__header {
  color: var(--color-text-dark);
}

.page-home .home-gift__heading > p:last-child {
  color: #555;
}

.page-home .home-gift__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.page-home .home-gift__step {
  position: relative;
  padding: 24px 20px 24px 72px;
  background: #fffdf8;
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: var(--radius-md);
}

.page-home .home-gift__num {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-accent-gold);
  color: var(--color-text-dark);
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.page-home .home-gift__step h3 {
  margin: 0 0 6px;
  font-size: 17px;
}

.page-home .home-gift__step p {
  margin: 0;
  font-size: 14px;
  color: #444;
  line-height: 1.7;
}

.page-home .home-gift__media {
  align-self: center;
}

.page-home .home-gift__media img {
  display: block;
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 0 auto;
  border-radius: 24px;
  object-fit: cover;
}

.page-home .home-faq {
  padding: 48px 0 72px;
}

.page-home .home-faq__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.page-home .home-faq__item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}

.page-home .home-faq__item h3 {
  font-size: 16px;
  color: var(--color-accent-gold);
  margin: 0 0 8px;
}

.page-home .home-faq__item p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-muted);
  margin: 0;
}

.page-home .home-faq__more {
  text-align: center;
}

.page-home .home-trust {
  padding: 0 0 56px;
}

.page-home .home-trust__inner {
  display: grid;
  gap: 20px;
  justify-items: center;
  text-align: center;
  background: var(--color-secondary-bg);
  color: var(--color-text-dark);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
}

.page-home .home-trust__text {
  max-width: 640px;
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-dark);
}

.page-home .home-contact {
  padding: 0 0 80px;
}

.page-home .home-contact__inner {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 48px;
}

.page-home .home-contact__inner h2 {
  font-size: 24px;
  margin: 4px 0 0;
}

.page-home .home-contact__inner p {
  color: var(--color-muted);
  font-size: 14px;
  margin: 0 0 8px;
}

@media (min-width: 900px) {
  .page-home .home-breadcrumb {
    padding-top: 32px;
  }

  .page-home .home-hero {
    padding: 72px 0 88px;
  }

  .page-home .home-hero__grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
  }

  .page-home .home-hero__visual {
    grid-column: 1 / 7;
    grid-row: 1 / 3;
  }

  .page-home .home-hero__content {
    grid-column: 7 / 12;
    grid-row: 1;
    padding: 40px 36px;
    margin-top: 40px;
  }

  .page-home .home-hero__rule {
    grid-column: 8 / 13;
    grid-row: 2;
  }

  .page-home .home-hero__chip--condition {
    grid-column: 7 / 10;
    grid-row: 3;
  }

  .page-home .home-hero__chip--time {
    grid-column: 10 / 13;
    grid-row: 3;
  }

  .page-home .home-hero__vertical {
    display: block;
    position: absolute;
    right: 12px;
    top: 150px;
    color: var(--color-accent-gold);
    font-size: 13px;
    letter-spacing: 0.24em;
    opacity: 0.9;
  }

  .page-home .home-hero__content h1 {
    font-size: 38px;
  }

  .page-home .home-hero__lead {
    font-size: 16px;
  }

  .page-home .home-hero__number {
    font-size: 120px;
    top: -36px;
  }

  .page-home .home-index {
    padding-bottom: 72px;
  }

  .page-home .home-index__inner {
    justify-content: flex-start;
  }

  .page-home .home-tier {
    padding-bottom: 96px;
  }

  .page-home .home-tier__header,
  .page-home .home-mobile__header,
  .page-home .home-vendor__header,
  .page-home .home-gift__header,
  .page-home .home-faq__header {
    grid-template-columns: 160px 1fr;
    gap: 32px;
    align-items: start;
    margin-bottom: 44px;
  }

  .page-home .home-tier__header .chapter-number,
  .page-home .home-mobile__header .chapter-number,
  .page-home .home-vendor__header .chapter-number,
  .page-home .home-gift__header .chapter-number,
  .page-home .home-faq__header .chapter-number {
    margin: 4px 0 0;
  }

  .page-home .home-tier__heading h2,
  .page-home .home-mobile__heading h2,
  .page-home .home-vendor__heading h2,
  .page-home .home-gift__heading h2,
  .page-home .home-faq__heading h2 {
    font-size: 32px;
  }

  .page-home .home-tier__heading > p:last-child,
  .page-home .home-mobile__heading > p:last-child,
  .page-home .home-vendor__heading > p:last-child,
  .page-home .home-gift__heading > p:last-child,
  .page-home .home-faq__heading > p:last-child {
    font-size: 15px;
  }

  .page-home .home-tier__grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
  }

  .page-home .home-tier__card {
    padding: 28px 20px 24px;
  }

  .page-home .home-tier__foot {
    grid-template-columns: 1fr 1.4fr;
    padding: 32px 40px;
  }

  .page-home .panel--cream {
    padding: 56px 48px;
    border-radius: 48px;
  }

  .page-home .home-mobile {
    padding: 24px 0 64px;
  }

  .page-home .home-mobile__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .page-home .home-vendor {
    padding: 64px 0 96px;
  }

  .page-home .home-vendor__grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
  }

  .page-home .home-gift {
    padding: 24px 0 64px;
  }

  .page-home .home-gift__grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }

  .page-home .home-gift__steps {
    gap: 18px;
  }

  .page-home .home-faq {
    padding: 64px 0 96px;
  }

  .page-home .home-faq__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .page-home .home-trust {
    padding-bottom: 64px;
  }

  .page-home .home-contact {
    padding-bottom: 96px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
