.page-hall {
  min-height: 100vh;
  overflow-x: hidden;
}

.page-hall__veil {
  position: fixed;
  inset: 0;
  z-index: 4;
  background: #000;
  opacity: 1;
  pointer-events: none;
  transition: opacity 7.5s ease;
}

.page-hall.is-revealed .page-hall__veil {
  opacity: 0;
}

.page-hall .atmosphere::after {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 196, 0, 0.05), transparent 55%),
    radial-gradient(ellipse 70% 45% at 20% 100%, rgba(20, 40, 70, 0.18), transparent 55%),
    linear-gradient(
      180deg,
      rgba(7, 9, 12, 0.28) 0%,
      rgba(7, 9, 12, 0.35) 42%,
      rgba(7, 9, 12, 0.72) 100%
    );
}

.shell--hall {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 6vh, 3.5rem);
  padding: 3rem 0 3.5rem;
  box-sizing: border-box;
  position: relative;
  z-index: 5;
  width: 100%;
}

.brand--hall {
  text-align: center;
  margin-bottom: 0;
  padding: 0 1.25rem;
  animation: none;
  opacity: 0;
  transform: translateY(0.6rem);
  transition: opacity 1.4s ease 0.5s, transform 1.4s ease 0.5s;
}

.hall-back {
  position: fixed;
  top: 1.15rem;
  left: 1.15rem;
  z-index: 6;
  color: rgba(232, 236, 242, 0.72);
  font-family: "Chakra Petch", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: color 0.2s ease, opacity 1.2s ease 0.8s;
}

.page-hall.is-revealed .hall-back {
  opacity: 1;
}

.hall-back:hover {
  color: var(--yellow);
}

.hall-back:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 4px;
}

.page-hall.is-revealed .brand--hall {
  opacity: 1;
  transform: translateY(0);
}

.brand--hall .brand__mark {
  margin-bottom: 0.35rem;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.65);
}

.brand--hall .brand__title {
  margin: 0;
  font-size: clamp(2.4rem, 7vw, 4rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.6);
}

.brand__sub--hall {
  margin: 0.85rem auto 0;
  max-width: 28ch;
  color: rgba(232, 236, 242, 0.82);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.45;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}

.honour {
  width: 100%;
  max-width: 100%;
  opacity: 0;
  transform: translateY(0.75rem);
  transition: opacity 1.5s ease 1.1s, transform 1.5s ease 1.1s;
}

.page-hall.is-revealed .honour {
  opacity: 1;
  transform: translateY(0);
}

.honour__list {
  list-style: none;
  margin: 0;
  padding: 1.5rem clamp(1.75rem, 5vw, 3.5rem) 1.35rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(1.25rem, 4vw, 2.75rem);
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x proximity;
}

.honour__list::-webkit-scrollbar {
  display: none;
}

.honouree {
  display: grid;
  grid-template-rows: auto auto 1.15em 1.1em;
  justify-items: center;
  align-content: start;
  text-align: center;
  gap: 0.85rem;
  flex: 0 0 auto;
  width: clamp(8.5rem, 22vw, 12.5rem);
  padding: 0.7rem 0.55rem 0;
  box-sizing: content-box;
  scroll-snap-align: center;
}

.honouree__badge {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  transform: translateY(0) scale(1);
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.55));
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.35s ease,
    opacity 0.35s ease;
  will-change: transform;
}

.honouree:hover .honouree__badge,
.honouree:focus-within .honouree__badge {
  transform: translateY(-0.45rem) scale(1.06);
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.65))
    drop-shadow(0 0 18px rgba(255, 196, 0, 0.18));
}

.honouree--vacant .honouree__badge {
  opacity: 0.38;
  filter: grayscale(0.25) brightness(0.72) drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
}

.honouree--vacant:hover .honouree__badge,
.honouree--vacant:focus-within .honouree__badge {
  opacity: 0.55;
  filter: grayscale(0.1) brightness(0.85) drop-shadow(0 16px 32px rgba(0, 0, 0, 0.55));
}

.honouree__name {
  margin: 0;
  font-family: "Chakra Petch", sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.55rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  color: var(--text);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
  transition: color 0.3s ease, opacity 0.3s ease;
}

.honouree:hover .honouree__name,
.honouree:focus-within .honouree__name {
  color: #fff;
}

.honouree__name--preserve {
  text-transform: none;
  letter-spacing: 0.04em;
}

.honouree__rank {
  margin: 0;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}

.honouree__dated {
  margin: 0;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(232, 236, 242, 0.62);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

@media (prefers-reduced-motion: reduce) {
  .honouree__badge,
  .honouree__name {
    transition: none;
  }

  .honouree:hover .honouree__badge,
  .honouree:focus-within .honouree__badge {
    transform: none;
  }
}
