.page-home {
  --hero-bleed: clamp(2rem, 6vw, 4rem);
}

.page-home .breadcrumb {
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px 24px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--c-mid);
}
.page-home .breadcrumb__link {
  color: var(--c-primary);
  text-decoration: none;
}
.page-home .breadcrumb__link:hover {
  text-decoration: underline;
}
.page-home .breadcrumb__sep {
  color: var(--c-gold);
}
.page-home .breadcrumb__current {
  font-weight: 600;
}

.page-home .hero {
  position: relative;
  padding: var(--hero-bleed) 0 clamp(2rem, 6vw, 4rem);
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(26,77,46,.04), transparent 60%),
    var(--c-white);
}

.page-home .hero__shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.page-home .hero__cut {
  position: absolute;
  display: block;
  height: 120%;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
}
.page-home .hero__cut--main {
  width: 30vw;
  min-width: 240px;
  top: -10%;
  left: 44%;
  background: linear-gradient(135deg, rgba(26,77,46,.12), rgba(26,77,46,0) 72%);
}
.page-home .hero__cut--side {
  width: 10vw;
  max-width: 140px;
  top: 14%;
  left: 74%;
  background: linear-gradient(160deg, var(--c-orange), rgba(230,126,34,.18));
  opacity: .8;
}

.page-home .speedline {
  position: absolute;
  display: block;
  height: 2px;
  background: linear-gradient(90deg, rgba(26,77,46,0), rgba(26,77,46,.55), rgba(26,77,46,0));
  animation: pagehome-dash 2.4s ease-in-out infinite;
}
.page-home .speedline--a {
  width: 220px;
  top: 18%;
  left: 38%;
  animation-delay: 0s;
}
.page-home .speedline--b {
  width: 160px;
  top: 68%;
  left: 60%;
  animation-delay: .6s;
}
.page-home .speedline--c {
  width: 260px;
  bottom: 12%;
  left: 32%;
  animation-delay: 1.2s;
}
@keyframes pagehome-dash {
  0%, 100% {
    transform: translateX(-30px);
    opacity: .3;
  }
  50% {
    transform: translateX(30px);
    opacity: 1;
  }
}

.page-home .hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.page-home .hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.page-home .hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1.18;
  letter-spacing: -.02em;
  color: var(--c-primary);
  margin: 0 0 24px;
}

.page-home .hero__lead {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--c-mid);
  max-width: 36em;
  margin: 0 0 32px;
}
.page-home .hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 26px;
}
.page-home .hero__btn {
  min-width: 180px;
}
.page-home .hero__meta {
  font-size: 13px;
  color: var(--c-mid);
  border-top: 1px solid var(--c-line);
  padding-top: 16px;
  max-width: 30em;
}
.page-home .hero__media {
  position: relative;
  margin: 0;
}
.page-home .hero__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 32px), 0 100%);
}
.page-home .hero__caption {
  margin-top: 14px;
  font-size: 13px;
  color: var(--c-mid);
  letter-spacing: .04em;
}

.page-home .section__head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.page-home .section__heading-block {
  max-width: 680px;
}
.page-home .section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  line-height: 1.25;
  color: var(--c-primary);
  margin: 0 0 8px;
}
.page-home .section-lead {
  color: var(--c-mid);
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}
.page-home .section-index-label {
  align-self: flex-start;
}
.page-home .section-index-label--light {
  color: rgba(255,255,255,.75);
  border-color: rgba(255,255,255,.3);
}

.page-home .timeline-section {
  padding: 48px 0 40px;
  background: var(--c-white);
}

.page-home .timeline-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 8px 0 32px;
  scrollbar-width: thin;
  scrollbar-color: var(--c-primary) rgba(26,77,46,.08);
}
.page-home .timeline-scroll::-webkit-scrollbar {
  height: 6px;
}
.page-home .timeline-scroll::-webkit-scrollbar-thumb {
  background: var(--c-primary);
}
.page-home .timeline-scroll::-webkit-scrollbar-track {
  background: rgba(26,77,46,.08);
}

.page-home .timeline-track {
  display: flex;
  gap: 20px;
  min-width: max-content;
  position: relative;
  padding-top: 34px;
}
.page-home .timeline-track::before {
  content: "";
  position: absolute;
  top: 44px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--c-primary), rgba(26,77,46,.14));
  z-index: 0;
}

.page-home .timeline-card {
  position: relative;
  width: 270px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow var(--speed) var(--ease), border-color var(--speed) var(--ease);
}
.page-home .timeline-card::after {
  content: "";
  position: absolute;
  top: -34px;
  left: 24px;
  width: 12px;
  height: 12px;
  background: var(--c-orange);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.page-home .timeline-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(26,77,46,.3);
}

.page-home .timeline-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.page-home .fav-mark {
  color: var(--c-gold);
  display: inline-flex;
  line-height: 0;
}
.page-home .timeline-card__media {
  margin: 0;
}
.page-home .timeline-card__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}
.page-home .timeline-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.page-home .timeline-card__round {
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--c-orange);
  font-weight: 700;
}
.page-home .timeline-card__name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--c-dark);
  margin: 0;
}
.page-home .timeline-card__ticket {
  font-size: 13px;
  color: var(--c-mid);
  margin: 0;
}

.page-home .live-section {
  padding: 40px 0 56px;
  background: var(--c-white);
}
.page-home .live-panel {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 1px, transparent 1px 14px),
    linear-gradient(135deg, var(--c-primary-dark), #123524);
  color: var(--c-white);
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
}
.page-home .live-panel::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  right: -80px;
  bottom: -80px;
  border: 2px solid rgba(201,162,39,.5);
  transform: rotate(45deg);
}
.page-home .live-panel__content {
  position: relative;
  z-index: 1;
}
.page-home .live-panel__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  line-height: 1.3;
  margin: 0 0 18px;
  color: var(--c-white);
}
.page-home .live-panel__desc {
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.8;
  margin: 0 0 28px;
  max-width: 44em;
}
.page-home .live-panel__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.page-home .stat-box {
  border-left: 2px solid var(--c-gold);
  padding-left: 12px;
}
.page-home .stat-box__num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  line-height: 1;
  color: var(--c-gold);
  display: block;
}
.page-home .stat-box__label {
  font-size: 12px;
  color: rgba(255,255,255,.72);
  margin-top: 6px;
  display: block;
}
.page-home .live-panel__link {
  min-width: 160px;
  border-color: rgba(255,255,255,.6);
  color: var(--c-white);
}
.page-home .live-panel__link:hover {
  background: rgba(255,255,255,.08);
}
.page-home .live-panel__visual {
  position: relative;
  z-index: 1;
}
.page-home .live-panel__visual .media-frame {
  margin: 0;
}
.page-home .live-panel__visual img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), 0 100%);
}
.page-home .live-panel__badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-orange);
  color: var(--c-white);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
}

.page-home .portal-section {
  padding: 48px 0;
  background: var(--c-white);
}
.page-home .portal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.page-home .portal-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  text-decoration: none;
  border: 1px solid var(--c-border);
  min-height: 220px;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.page-home .portal-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.page-home .portal-card__index {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--c-primary);
  opacity: .25;
}
.page-home .portal-card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--c-dark);
  margin: 0;
}
.page-home .portal-card__desc {
  font-size: 13px;
  line-height: 1.8;
  color: var(--c-mid);
  margin: 0;
  max-width: 32em;
}
.page-home .portal-card__cta {
  margin-top: auto;
  font-size: 13px;
  font-weight: 700;
  color: var(--c-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.page-home .portal-card--primary {
  border-top: 4px solid var(--c-primary);
}
.page-home .portal-card--gold {
  background: linear-gradient(135deg, rgba(201,162,39,.12), rgba(255,255,255,0));
  border-color: rgba(201,162,39,.35);
}
.page-home .portal-card--gold .portal-card__index,
.page-home .portal-card--gold .portal-card__cta {
  color: #8a6d1a;
}
.page-home .portal-card--dark {
  background: var(--c-primary-dark);
  border-color: var(--c-primary-dark);
}
.page-home .portal-card--dark .portal-card__title {
  color: var(--c-white);
}
.page-home .portal-card--dark .portal-card__desc {
  color: rgba(255,255,255,.7);
}
.page-home .portal-card--dark .portal-card__index {
  color: var(--c-gold);
  opacity: 1;
}
.page-home .portal-card--dark .portal-card__cta {
  color: var(--c-gold);
}
.page-home .portal-card--light {
  background: var(--c-light);
}

.page-home .bottom-section {
  background: var(--c-light);
  padding: 48px 0 56px;
}
.page-home .bottom-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.page-home .bottom-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--c-primary);
  margin: 0 0 14px;
}
.page-home .bottom-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--c-mid);
  margin: 0 0 24px;
  max-width: 34em;
}
.page-home .bottom-col__contact {
  margin-top: 12px;
  margin-left: 12px;
}
.page-home .bottom-col__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--c-primary);
  margin: 0 0 18px;
}
.page-home .bottom-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.page-home .bottom-links a {
  color: var(--c-dark);
  text-decoration: none;
  font-size: 14px;
  border-bottom: 1px solid transparent;
  transition: border-color var(--speed) var(--ease), color var(--speed) var(--ease);
}
.page-home .bottom-links a:hover {
  color: var(--c-primary);
  border-color: var(--c-gold);
}
.page-home .bottom-note {
  color: var(--c-mid);
  font-size: 12px;
  margin-top: 20px;
}
.page-home .media-frame--notice {
  margin: 0 0 16px;
}
.page-home .media-frame--notice img {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: cover;
  display: block;
}
.page-home .update-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.page-home .update-list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-dark);
}
.page-home .update-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .5em;
  width: 8px;
  height: 8px;
  background: var(--c-gold);
  clip-path: polygon(0 0, 70% 0, 100% 100%, 0 100%);
}
.page-home .bottom-col__more {
  color: var(--c-primary);
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  border-bottom: 2px solid var(--c-gold);
  padding-bottom: 2px;
}

.page-home [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  transition-delay: .1s;
}
.page-home [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (min-width: 768px) {
  .page-home .hero__grid {
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
  }
  .page-home .section__head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
  .page-home .live-panel {
    grid-template-columns: 1.2fr .8fr;
    padding: 48px 40px;
    align-items: center;
  }
  .page-home .portal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-home .bottom-grid {
    grid-template-columns: 1.1fr .8fr 1fr;
    gap: 40px;
  }
}

@media (min-width: 1024px) {
  .page-home .portal-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .speedline {
    animation: none;
  }
  .page-home .timeline-card,
  .page-home .portal-card {
    transition: none;
  }
  .page-home [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
