/* Homecoming — page-specific styles */

@keyframes hc-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes hc-pulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}

.page-hc {
  --hc-deep: #0d3e2d;
  --hc-ink: #0a2f22;
  --hc-panel: #123c2e;
  --hc-gold: var(--lca-gold);
  --hc-cream: var(--cream);
  --hc-muted: rgba(255, 255, 255, 0.78);
  background: var(--off-white);
  scroll-padding-top: 5.5rem;
}

html.reveal-active .page-hc .evt-reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(1.5rem);
}

html.reveal-active .page-hc .evt-reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.75s ease, transform 0.75s ease;
}

/* Hero */
.page-hc .hc-hero {
  position: relative;
  min-height: min(88vh, 52rem);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--hc-ink);
}

.page-hc .hc-hero__media {
  position: absolute;
  inset: 0;
}

.page-hc .hc-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  transform: scale(1.04);
  animation: hc-pulse 18s ease-in-out infinite;
}

.page-hc .hc-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 47, 34, 0.35) 0%, rgba(10, 47, 34, 0.72) 48%, rgba(10, 47, 34, 0.94) 100%),
    radial-gradient(ellipse 70% 55% at 80% 15%, rgba(255, 184, 28, 0.22), transparent 55%);
}

.page-hc .hc-hero__inner {
  position: relative;
  z-index: 1;
  padding: clamp(5rem, 12vw, 8rem) 0 clamp(3rem, 6vw, 4.5rem);
  max-width: 44rem;
}

.page-hc .hc-hero__eyebrow {
  margin: 0 0 0.75rem;
  font-family: var(--font-subhead);
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-style: italic;
  color: var(--hc-gold);
}

.page-hc .hc-hero__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-headline);
  font-size: clamp(2.75rem, 8vw, 5.5rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-hc .hc-hero__lead {
  margin: 0 0 1.5rem;
  max-width: 34rem;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.page-hc .hc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.page-hc .hc-hero .btn--outline {
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--white);
}

.page-hc .hc-hero .btn--outline:hover,
.page-hc .hc-hero .btn--outline:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

/* Marquee */
.page-hc .hc-marquee {
  background: var(--hc-gold);
  color: var(--lca-green);
  overflow: hidden;
  padding: 0.7rem 0;
}

.page-hc .hc-marquee__track {
  display: flex;
  width: max-content;
  animation: hc-marquee 48s linear infinite;
  font-family: var(--font-headline);
  font-size: 0.875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.page-hc .hc-marquee__track span {
  flex: 0 0 auto;
  padding: 0;
  white-space: nowrap;
}

/* Subnav */
.page-hc .hc-subnav {
  background: var(--white);
  border-bottom: 1px solid rgba(21, 71, 52, 0.12);
  position: sticky;
  top: 0;
  z-index: 20;
}

.page-hc .hc-subnav__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.65rem;
  padding: 0.75rem 0;
}

.page-hc .hc-subnav a {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  padding: 0.35rem 0.7rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--lca-green);
  line-height: 1.2;
}

.page-hc .hc-subnav a:hover,
.page-hc .hc-subnav a:focus-visible {
  color: var(--green-light);
}

/* Sections */
.page-hc .hc-section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  background: var(--white);
}

.page-hc .hc-section--alt {
  background: var(--cream);
}

.page-hc .hc-section--deep {
  background: var(--hc-deep);
  color: var(--white);
}

.page-hc .hc-section--field {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--hc-ink);
}

.page-hc .hc-section--field .hc-section__media {
  position: absolute;
  inset: 0;
}

.page-hc .hc-section--field .hc-section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.page-hc .hc-section--field .hc-section__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10, 47, 34, 0.92) 0%, rgba(10, 47, 34, 0.78) 55%, rgba(10, 47, 34, 0.55) 100%);
}

.page-hc .hc-section--field .container {
  position: relative;
  z-index: 1;
}

.page-hc .hc-eyebrow {
  margin: 0 0 0.65rem;
  font-family: var(--font-subhead);
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--lca-gold);
}

.page-hc .hc-section--deep .hc-eyebrow,
.page-hc .hc-section--field .hc-eyebrow {
  color: var(--hc-gold);
}

.page-hc .hc-section__header {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.page-hc .hc-section__header--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.page-hc .hc-section__header h2,
.page-hc .hc-split__body h2,
.page-hc .hc-panel h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-headline);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--lca-green);
}

.page-hc .hc-section--deep .hc-section__header h2,
.page-hc .hc-section--field .hc-section__header h2,
.page-hc .hc-section--deep .hc-split__body h2,
.page-hc .hc-section--field .hc-split__body h2 {
  color: var(--white);
}

.page-hc .hc-section__header p,
.page-hc .hc-split__body p,
.page-hc .hc-panel p {
  margin: 0 0 1rem;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--gray-600);
}

.page-hc .hc-section--deep .hc-section__header p,
.page-hc .hc-section--deep .hc-split__body p,
.page-hc .hc-section--field .hc-section__header p,
.page-hc .hc-section--field .hc-split__body p,
.page-hc .hc-section--field .hc-panel p {
  color: var(--hc-muted);
}

.page-hc .hc-audience {
  display: inline-flex;
  align-items: center;
  margin: 0 0 1rem;
  padding: 0.35rem 0.7rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 184, 28, 0.2);
  color: var(--lca-green);
  border: 1px solid rgba(255, 184, 28, 0.55);
}

.page-hc .hc-section--deep .hc-audience,
.page-hc .hc-section--field .hc-audience {
  background: rgba(255, 184, 28, 0.16);
  color: var(--hc-gold);
  border-color: rgba(255, 184, 28, 0.4);
}

.page-hc .hc-audience--upper {
  background: rgba(21, 71, 52, 0.08);
  color: var(--lca-green);
  border-color: rgba(21, 71, 52, 0.25);
}

.page-hc .hc-meta {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--lca-green);
}

.page-hc .hc-section--deep .hc-meta,
.page-hc .hc-section--field .hc-meta {
  color: var(--hc-gold);
}

.page-hc .hc-meta strong {
  font-weight: 600;
}

.page-hc .hc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.25rem;
}

.page-hc .hc-actions--center {
  justify-content: center;
  margin-top: 1.75rem;
  width: 100%;
  text-align: center;
}

.page-hc .hc-text-link {
  color: var(--lca-green);
  font-weight: 600;
  text-underline-offset: 0.18em;
}

.page-hc .hc-section--deep .hc-text-link,
.page-hc .hc-section--field .hc-text-link {
  color: var(--hc-gold);
}

.page-hc .hc-section--deep .btn--outline,
.page-hc .hc-section--field .btn--outline {
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--white);
}

.page-hc .hc-section--deep .btn--outline:hover,
.page-hc .hc-section--field .btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Split / video */
.page-hc .hc-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
}

.page-hc .hc-split--reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.page-hc .hc-split--reverse .hc-split__media {
  order: -1;
}

.page-hc .hc-video {
  margin: 0;
  position: relative;
  background: var(--hc-ink);
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.page-hc .hc-video video,
.page-hc .hc-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: cover;
}

.page-hc .hc-video__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(13, 62, 45, 0.92), rgba(10, 47, 34, 0.88)),
    url("assets/homecoming/hero.jpg") center / cover;
  color: var(--white);
}

.page-hc .hc-video__placeholder strong {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-hc .hc-video__placeholder span {
  max-width: 22rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.page-hc .hc-photo,
.page-hc .hc-feature-photo {
  margin: 0;
  overflow: hidden;
}

.page-hc .hc-photo img,
.page-hc .hc-feature-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-hc .hc-feature-photo {
  margin-bottom: 1.75rem;
  max-height: 28rem;
}

.page-hc .hc-feature-photo img {
  width: 100%;
  height: min(28rem, 55vw);
  object-fit: cover;
}

.page-hc .hc-photo--inset {
  margin-bottom: 1.25rem;
}

.page-hc .hc-photo--inset img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.page-hc .hc-split__media .hc-video {
  margin-top: 1rem;
}

.page-hc .hc-carousel {
  margin: 0;
}

.page-hc .hc-carousel__stage {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.65rem;
  align-items: center;
}

.page-hc .hc-carousel__viewport {
  position: relative;
  overflow: hidden;
  background: rgba(21, 71, 52, 0.04);
  border: 1px solid rgba(21, 71, 52, 0.1);
  min-height: 14rem;
}

.page-hc .hc-carousel__track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.page-hc .hc-carousel__slide {
  flex: 0 0 100%;
  margin: 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1.25rem);
  box-sizing: border-box;
}

.page-hc .hc-carousel__slide figure {
  margin: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hc .hc-carousel__slide img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(68vh, 34rem);
  object-fit: contain;
}

.page-hc .hc-carousel__nav {
  width: 2.75rem;
  height: 2.75rem;
  border: 2px solid rgba(21, 71, 52, 0.2);
  background: var(--white);
  color: var(--lca-green);
  border-radius: 999px;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 0.15rem;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.page-hc .hc-carousel__nav:hover,
.page-hc .hc-carousel__nav:focus-visible {
  background: var(--lca-green);
  border-color: var(--lca-green);
  color: var(--white);
  outline: none;
}

.page-hc .hc-carousel__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem 1.25rem;
  margin-top: 1rem;
}

.page-hc .hc-carousel__status {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lca-green);
}

.page-hc .hc-carousel__dots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
}

.page-hc .hc-carousel__dot {
  width: 0.65rem;
  height: 0.65rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(21, 71, 52, 0.25);
  cursor: pointer;
}

.page-hc .hc-carousel__dot.is-active,
.page-hc .hc-carousel__dot:hover,
.page-hc .hc-carousel__dot:focus-visible {
  background: var(--lca-gold);
  outline: none;
}

.page-hc .hc-gallery__credit {
  margin: 1.5rem 0 0;
  text-align: center;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.page-hc .hc-gallery__credit a {
  color: var(--lca-green);
  font-weight: 600;
  text-underline-offset: 0.18em;
}

@media (max-width: 640px) {
  .page-hc .hc-carousel__stage {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .page-hc .hc-carousel__viewport {
    grid-column: 1 / -1;
    order: 1;
  }

  .page-hc .hc-carousel__nav--prev {
    order: 2;
    justify-self: end;
  }

  .page-hc .hc-carousel__nav--next {
    order: 3;
    justify-self: start;
  }

  .page-hc .hc-carousel__slide img {
    max-height: min(58vh, 26rem);
  }
}

/* Dress-up days */
.page-hc .hc-days {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
}

.page-hc .hc-day {
  padding: 1.25rem 1rem;
  background: var(--white);
  border-top: 3px solid var(--lca-gold);
  min-height: 9.5rem;
}

.page-hc .hc-section--alt .hc-day {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.page-hc .hc-day__label {
  margin: 0 0 0.35rem;
  font-family: var(--font-headline);
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lca-gold);
}

.page-hc .hc-day__theme {
  margin: 0 0 0.5rem;
  font-family: var(--font-headline);
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--lca-green);
  line-height: 1.25;
}

.page-hc .hc-day p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--gray-600);
}

/* Maps */
.page-hc .hc-maps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.page-hc .hc-map {
  background: var(--white);
  overflow: hidden;
}

.page-hc .hc-map--immersive {
  margin-top: 0.5rem;
}

.page-hc .hc-map__label {
  margin: 0;
  padding: 0.85rem 1rem;
  font-family: var(--font-headline);
  font-size: 0.9375rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lca-green);
  background: var(--cream);
}

.page-hc .hc-map__frame {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #dfe5e1;
}

.page-hc .hc-map__frame--tall {
  aspect-ratio: auto;
  height: min(42rem, 72vh);
  min-height: 28rem;
}

.page-hc .hc-map__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.page-hc .hc-map__note {
  margin: 0;
  padding: 0.75rem 1rem 1rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--gray-600);
}

/* Schedule */
.page-hc .hc-schedule {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 40rem;
}

.page-hc .hc-schedule li {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(21, 71, 52, 0.12);
}

.page-hc .hc-section--deep .hc-schedule li {
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.page-hc .hc-schedule__time {
  font-family: var(--font-headline);
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lca-gold);
}

.page-hc .hc-schedule__event {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.45;
  color: var(--lca-green);
}

.page-hc .hc-section--deep .hc-schedule__event {
  color: var(--white);
}

.page-hc .hc-schedule__event span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.page-hc .hc-section--deep .hc-schedule__event span {
  color: var(--hc-muted);
}

/* Parking / panels */
.page-hc .hc-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.page-hc .hc-panels:has(> :nth-child(4):last-child) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-hc .hc-panel {
  padding: 1.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 184, 28, 0.22);
}

.page-hc .hc-section:not(.hc-section--deep):not(.hc-section--field) .hc-panel {
  background: var(--cream);
  border-color: transparent;
}

.page-hc .hc-panel h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-headline);
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--hc-gold);
}

.page-hc .hc-section:not(.hc-section--deep):not(.hc-section--field) .hc-panel h3 {
  color: var(--lca-green);
}

.page-hc .hc-panel p:last-child {
  margin-bottom: 0;
}

.page-hc .hc-note {
  margin-top: 1rem !important;
  font-style: italic;
  font-size: 0.9375rem !important;
}

/* AlumNight — centered, polished */
.page-hc .hc-section--alumni {
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%, rgba(255, 184, 28, 0.12), transparent 55%),
    linear-gradient(180deg, #f7f3ea 0%, var(--off-white) 100%);
  border-block: 1px solid rgba(21, 71, 52, 0.08);
}

.page-hc .hc-section--alumni .hc-section__header {
  max-width: 42rem;
}

.page-hc .hc-section--alumni .hc-section__header .hc-audience {
  margin-left: auto;
  margin-right: auto;
}

.page-hc .hc-section--alumni .hc-section__header h2 {
  position: relative;
  margin-bottom: 1.15rem;
  padding-bottom: 1rem;
}

.page-hc .hc-section--alumni .hc-section__header h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 3.5rem;
  height: 3px;
  transform: translateX(-50%);
  background: var(--lca-gold);
}

.page-hc .hc-alumni-perk {
  display: inline-block;
  margin: 0.35rem 0 0 !important;
  padding: 0.55rem 1rem;
  font-family: var(--font-subhead);
  font-size: 1rem !important;
  font-style: italic;
  line-height: 1.45 !important;
  color: var(--lca-green) !important;
  background: rgba(255, 184, 28, 0.16);
  border-left: 3px solid var(--lca-gold);
}

.page-hc .hc-alumni-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 52rem;
  margin: 0 auto 2rem;
}

.page-hc .hc-alumni-card {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--white);
  border-top: 3px solid var(--lca-gold);
  box-shadow: 0 10px 30px rgba(21, 71, 52, 0.06);
  text-align: center;
}

.page-hc .hc-alumni-card__time {
  margin: 0 0 0.55rem !important;
  font-size: 0.8125rem !important;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lca-gold) !important;
}

.page-hc .hc-alumni-card h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-headline);
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lca-green);
}

.page-hc .hc-alumni-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-600);
}

.page-hc .hc-alumni-cta {
  text-align: center;
}

.page-hc .hc-alumni-cta .hc-actions {
  margin-top: 0;
}

.page-hc .hc-section--alumni .btn--outline {
  background: transparent;
  color: var(--lca-green);
  border-color: var(--lca-green);
}

.page-hc .hc-section--alumni .btn--outline:hover,
.page-hc .hc-section--alumni .btn--outline:focus-visible {
  background: var(--lca-green);
  color: var(--white);
  border-color: var(--lca-green);
}

.page-hc .hc-alumni-cta .hc-note {
  color: var(--lca-green);
}

@media (max-width: 720px) {
  .page-hc .hc-alumni-cards {
    grid-template-columns: 1fr;
    max-width: 28rem;
  }
}

/* Week at a glance */
.page-hc .hc-glance {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.page-hc .hc-glance__item {
  padding: 1.35rem 1.15rem 1.25rem;
  background: var(--white);
  border-top: 3px solid var(--lca-gold);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-height: 100%;
}

.page-hc .hc-glance__item--highlight {
  background: var(--lca-green);
  border-top-color: var(--lca-gold);
}

.page-hc .hc-glance__item--highlight .hc-glance__when,
.page-hc .hc-glance__item--highlight .hc-glance__what,
.page-hc .hc-glance__item--highlight .hc-glance__who,
.page-hc .hc-glance__item--highlight .hc-glance__detail,
.page-hc .hc-glance__item--highlight .hc-text-link {
  color: var(--white);
}

.page-hc .hc-glance__item--highlight .hc-text-link {
  color: var(--lca-gold);
}

.page-hc .hc-glance__when {
  margin: 0;
  font-family: var(--font-subhead);
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--lca-gold);
}

.page-hc .hc-glance__what {
  margin: 0.15rem 0 0.25rem;
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lca-green);
  line-height: 1.2;
}

.page-hc .hc-glance__who,
.page-hc .hc-glance__detail {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--gray-600);
}

.page-hc .hc-glance__detail {
  margin-top: 0.35rem;
}

.page-hc .hc-glance__item .hc-text-link {
  margin-top: auto;
  padding-top: 0.85rem;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  align-self: flex-start;
}

.page-hc .hc-checklist {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}

.page-hc .hc-checklist li {
  position: relative;
  margin: 0 0 0.85rem;
  padding-left: 1.15rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--gray-600);
}

.page-hc .hc-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--lca-gold);
}

.page-hc .hc-checklist li:last-child {
  margin-bottom: 0;
}

/* Friday Morning Guide */
.page-hc .hc-section--friday {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(255, 184, 28, 0.14), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 100%, rgba(255, 184, 28, 0.08), transparent 50%),
    var(--hc-deep);
  color: var(--white);
}

.page-hc .hc-section--friday > .container {
  width: min(100% - 2rem, var(--container-max, 72rem));
  margin-inline: auto;
}

.page-hc .hc-section--friday .hc-section__header {
  max-width: 40rem;
  margin-bottom: clamp(2rem, 5vw, 3rem);
  padding-inline: 0.25rem;
}

.page-hc .hc-section--friday .hc-section__header h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 5.5vw, 2.75rem);
}

.page-hc .hc-section--friday .hc-section__header p {
  color: var(--hc-muted);
  font-size: clamp(0.975rem, 2.2vw, 1.0625rem);
}

.page-hc .hc-section--friday .hc-eyebrow {
  color: var(--hc-gold);
}

.page-hc .hc-section--friday .hc-audience {
  background: rgba(255, 184, 28, 0.14);
  color: var(--hc-gold);
  border-color: rgba(255, 184, 28, 0.35);
  max-width: 100%;
  text-wrap: balance;
}

.page-hc .hc-timeline {
  list-style: none;
  margin: 0 0 clamp(2rem, 5vw, 3.5rem);
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 1.75rem) clamp(1rem, 2.5vw, 1.5rem);
  position: relative;
}

.page-hc .hc-timeline::before {
  content: "";
  position: absolute;
  top: 3.4rem;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 184, 28, 0.55), transparent);
  pointer-events: none;
}

.page-hc .hc-timeline__step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  min-width: 0;
  height: 100%;
}

@media (min-width: 1101px) {
  .page-hc .hc-timeline__step {
    align-items: center;
    text-align: center;
  }

  .page-hc .hc-timeline__link {
    justify-self: center;
  }
}

.page-hc .hc-timeline__time {
  margin: 0 0 0.65rem;
  min-height: 1.4rem;
  font-family: var(--font-subhead);
  font-size: clamp(0.9375rem, 2vw, 1rem);
  font-style: italic;
  color: var(--hc-gold);
  letter-spacing: 0.01em;
}

.page-hc .hc-timeline__marker {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 184, 28, 0.55);
  border-radius: 50%;
  background: var(--hc-deep);
  box-shadow: 0 0 0 6px var(--hc-deep);
  font-family: var(--font-headline);
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  color: var(--hc-gold);
}

.page-hc .hc-timeline__title {
  margin: 0 0 0.55rem;
  font-family: var(--font-headline);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--white);
  text-wrap: balance;
}

.page-hc .hc-timeline__body {
  margin: 0 0 0.85rem;
  font-size: clamp(0.875rem, 2vw, 0.9375rem);
  line-height: 1.65;
  color: var(--hc-muted);
}

.page-hc .hc-timeline__body strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

.page-hc .hc-timeline__inline-link {
  color: var(--hc-gold);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.page-hc .hc-timeline__inline-link:hover,
.page-hc .hc-timeline__inline-link:focus-visible {
  color: #ffd56a;
}

.page-hc .hc-timeline__inline-link strong {
  color: inherit;
}

.page-hc .hc-timeline__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--hc-gold);
  border-bottom: 1px solid rgba(255, 184, 28, 0.45);
  padding-bottom: 0.15rem;
}

.page-hc .hc-timeline__link:hover,
.page-hc .hc-timeline__link:focus-visible {
  border-bottom-color: var(--hc-gold);
}

.page-hc .hc-parade-map {
  margin: 0 0 clamp(2rem, 5vw, 3.5rem);
  padding: 0;
}

.page-hc .hc-parade-map__label {
  margin: 0 0 0.85rem;
  font-family: var(--font-headline);
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hc-gold);
}

.page-hc .hc-parade-map__link {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 184, 28, 0.28);
  background: rgba(0, 0, 0, 0.2);
}

.page-hc .hc-parade-map__link img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

.page-hc .hc-parade-map__note {
  margin: 0.85rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--hc-muted);
}

.page-hc .hc-parade-map__note .hc-timeline__link {
  min-height: auto;
  display: inline;
  border-bottom-width: 1px;
}

.page-hc .hc-parade-map--half {
  max-width: min(32rem, 50%);
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 640px) {
  .page-hc .hc-parade-map--half {
    max-width: 100%;
  }
}

.page-hc .hc-friday-band {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(16rem, 1fr);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 184, 28, 0.2);
}

.page-hc .hc-friday-band__photo {
  margin: 0;
  min-height: 100%;
  min-width: 0;
}

.page-hc .hc-friday-band__photo img {
  width: 100%;
  height: 100%;
  min-height: 18rem;
  object-fit: cover;
  display: block;
}

.page-hc .hc-friday-band__facts {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  background:
    linear-gradient(160deg, rgba(18, 60, 46, 0.95), rgba(10, 47, 34, 0.98));
}

.page-hc .hc-friday-band__label {
  margin: 0 0 0.35rem;
  font-family: var(--font-subhead);
  font-size: 1rem;
  font-style: italic;
  color: var(--hc-gold);
}

.page-hc .hc-friday-band__facts h3 {
  margin: 0 0 1.25rem;
  font-family: var(--font-headline);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
}

.page-hc .hc-friday-facts {
  margin: 0 0 1.5rem;
  padding: 0;
}

.page-hc .hc-friday-facts > div {
  display: grid;
  grid-template-columns: minmax(5.5rem, 7.5rem) minmax(0, 1fr);
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.page-hc .hc-friday-facts > div:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.page-hc .hc-friday-facts dt {
  margin: 0;
  font-family: var(--font-headline);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hc-gold);
  align-self: center;
}

.page-hc .hc-friday-facts dd {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
}

.page-hc .hc-section--friday .hc-actions {
  gap: 0.65rem;
}

.page-hc .hc-section--friday .hc-actions .btn {
  flex: 1 1 auto;
  justify-content: center;
  text-align: center;
}

.page-hc .hc-section--friday .btn--outline {
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--white);
}

.page-hc .hc-section--friday .btn--outline:hover,
.page-hc .hc-section--friday .btn--outline:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

/* Friday Morning — responsive */
@media (max-width: 1100px) {
  .page-hc .hc-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1.75rem;
  }

  .page-hc .hc-timeline::before {
    display: none;
  }
}

@media (max-width: 980px) {
  .page-hc .hc-friday-band {
    grid-template-columns: 1fr;
  }

  .page-hc .hc-friday-band__photo img {
    min-height: 12rem;
    max-height: 18rem;
  }
}

@media (max-width: 640px) {
  .page-hc .hc-timeline {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 0.25rem;
  }

  .page-hc .hc-timeline__step {
    display: grid;
    grid-template-columns: 2.75rem minmax(0, 1fr);
    grid-template-areas:
      "marker time"
      "marker title"
      "marker body"
      "marker link";
    column-gap: 1rem;
    row-gap: 0.2rem;
    padding: 0 0 1.75rem;
    border-left: none;
    position: relative;
  }

  .page-hc .hc-timeline__step:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 1.3rem;
    top: 2.75rem;
    bottom: 0;
    width: 1px;
    background: rgba(255, 184, 28, 0.35);
  }

  .page-hc .hc-timeline__step:last-child {
    padding-bottom: 0;
  }

  .page-hc .hc-timeline__marker {
    grid-area: marker;
    margin: 0;
    position: relative;
    z-index: 1;
  }

  .page-hc .hc-timeline__time {
    grid-area: time;
    margin: 0;
    min-height: 0;
    align-self: center;
  }

  .page-hc .hc-timeline__title {
    grid-area: title;
    margin: 0.15rem 0 0.35rem;
  }

  .page-hc .hc-timeline__body {
    grid-area: body;
    margin: 0;
  }

  .page-hc .hc-timeline__link {
    grid-area: link;
    margin-top: 0.5rem;
    justify-self: start;
  }

  .page-hc .hc-friday-facts > div {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .page-hc .hc-section--friday .hc-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .page-hc .hc-section--friday .hc-actions .btn {
    width: 100%;
  }
}

/* HOCO shirt preorder */
.page-hc .hc-shirt-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  min-width: 0;
}

.page-hc .hc-shirt-photo {
  margin: 0;
  padding: clamp(0.75rem, 2vw, 1.25rem);
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(255, 184, 28, 0.1), transparent 65%),
    var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
}

.page-hc .hc-shirt-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  max-height: min(32rem, 70vh);
}

.page-hc .hc-shirt-photo figcaption {
  margin: 0;
  font-family: var(--font-headline);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lca-green);
}

@media (max-width: 640px) {
  .page-hc .hc-shirt-gallery {
    grid-template-columns: 1fr;
    max-width: 22rem;
    margin-inline: auto;
  }
}

/* Dance */
.page-hc .hc-dance-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: flex-start;
  margin-top: 0.5rem;
}

.page-hc .hc-dance-links .btn {
  min-width: 14rem;
}

/* CTA */
.page-hc .hc-cta {
  padding: clamp(3.5rem, 8vw, 5rem) 0;
  text-align: center;
  background: var(--lca-green);
  color: var(--white);
}

.page-hc .hc-cta__inner {
  max-width: 38rem;
  margin: 0 auto;
}

.page-hc .hc-cta h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-headline);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.page-hc .hc-cta p {
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}

.page-hc .hc-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.page-hc .hc-cta .btn--outline {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}

@media (prefers-reduced-motion: reduce) {
  .page-hc .hc-marquee__track {
    animation: none;
    width: 100%;
    justify-content: center;
  }

  .page-hc .hc-hero__media img {
    animation: none;
  }

  .page-hc .evt-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 980px) {
  .page-hc .hc-days {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-hc .hc-panels,
  .page-hc .hc-maps,
  .page-hc .hc-glance {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 880px) {
  .page-hc .hc-split,
  .page-hc .hc-split--reverse {
    grid-template-columns: 1fr;
  }

  .page-hc .hc-split--reverse .hc-split__media {
    order: 0;
  }
}

@media (max-width: 640px) {
  .page-hc .hc-days,
  .page-hc .hc-glance {
    grid-template-columns: 1fr;
  }

  .page-hc .hc-schedule li {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .page-hc .hc-hero__actions,
  .page-hc .hc-actions,
  .page-hc .hc-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }
}
