#top {
  scroll-margin-top: 96px;
}

#overview,
#disciplines,
#schedule,
#featured,
#venue,
#updates,
#faq {
  scroll-margin-top: 104px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--nav-shadow);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}

.brand {
  color: var(--green-brand);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.site-nav a,
.site-footer__links a {
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 600;
}

.hero {
  padding: 56px 0 72px;
  background: var(--cream);
}

.hero__grid,
.venue-grid,
.final-cta,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 36px;
  align-items: center;
}

.hero__content {
  position: relative;
  padding: 24px 0;
}

.hero__content::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 88px;
  height: 4px;
  border-radius: 999px;
  background: var(--green-accent);
  content: "";
}

.hero__eyebrow,
.hero__meta span,
.update-card__meta,
.feature-card__index,
.person-card__role {
  color: var(--green-brand);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--green-brand);
}

.hero__description {
  max-width: 58ch;
  font-size: 1.18rem;
  line-height: 1.75;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 28px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__visual,
.media-card--portrait {
  height: 560px;
  min-height: 560px;
}

.hero__visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--card-shadow);
}

.hero__visual img,
.media-card--portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section--overview {
  padding-top: 72px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.stat-card,
.feature-card,
.schedule-card,
.person-card,
.update-card,
.faq-item {
  min-height: 100%;
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--card-shadow);
}

.section--dark .stat-card,
.section--dark .feature-card,
.section--dark .schedule-card,
.section--dark .person-card,
.section--dark .update-card,
.section--dark .faq-item {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green-brand);
  font-family: "Lora", Georgia, serif;
  font-size: 2.75rem;
  font-weight: 600;
  line-height: 1;
}

.stat-card span {
  display: block;
}

.feature-card,
.schedule-card,
.person-card,
.update-card {
  position: relative;
}

.feature-card__index {
  display: inline-block;
  margin-bottom: 24px;
}

.schedule-list {
  display: grid;
  gap: 20px;
}

.schedule-card {
  display: grid;
  gap: 10px;
  grid-template-columns: 140px minmax(0, 1fr);
  align-items: start;
}

.schedule-card__day {
  margin-bottom: 0;
}

.section--featured .section-heading__title,
.section--final h2 {
  font-family: "Lora", Georgia, serif;
  font-weight: 600;
}

.section--featured .section-heading__title,
.section--featured h3,
.section--final h2,
.site-footer .brand--footer {
  color: var(--white);
}

.venue-grid .media-card {
  height: 500px;
  min-height: 500px;
}

.sponsor-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.sponsor-pill {
  padding: 20px;
  border-radius: var(--radius-pill);
  background: var(--white);
  box-shadow: var(--card-shadow);
  color: var(--green-brand);
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.faq-list {
  display: grid;
  gap: 18px;
}

.section--final {
  padding-bottom: 104px;
}

.final-cta {
  padding: 36px;
  border-radius: var(--radius-xl);
  align-items: stretch;
}

.final-cta__content {
  align-self: center;
}

.media-card--portrait {
  background: rgba(255, 255, 255, 0.12);
}

.site-footer {
  background: var(--green-house);
  color: var(--white);
  padding: 0 0 48px;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 24px;
  padding: 32px 0 0;
}

.site-footer .brand--footer {
  display: inline-block;
  margin-bottom: 12px;
}

.site-footer__links {
  display: grid;
  gap: 12px;
  align-content: start;
}

.site-footer__links a {
  color: var(--white-soft);
}

@media (max-width: 1024px) {
  .hero__grid,
  .venue-grid,
  .final-cta,
  .faq-layout,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .sponsor-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__visual,
  .media-card--portrait,
  .venue-grid .media-card {
    height: 420px;
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .site-header__inner {
    min-height: 72px;
    align-items: flex-start;
    padding: 16px 0;
  }

  .site-nav {
    gap: 12px;
  }

  .hero {
    padding-top: 40px;
  }

  .hero__content {
    padding-top: 24px;
  }

  .stats-grid,
  .sponsor-strip {
    grid-template-columns: 1fr;
  }

  .schedule-card {
    grid-template-columns: 1fr;
  }

  .stat-card,
  .feature-card,
  .schedule-card,
  .person-card,
  .update-card,
  .faq-item,
  .final-cta {
    padding: 22px;
  }
}
