@import url("https://fonts.googleapis.com/css2?family=Bree+Serif&family=Montserrat:wght@400;500;600;700;800;900&display=swap");

:root {
  color-scheme: light;
  --ink: #19130f;
  --charcoal: #211b18;
  --night: #100e0d;
  --paper: #f6efe4;
  --paper-strong: #fff8ee;
  --copper: #b25a24;
  --copper-dark: #783514;
  --gold: #d9aa55;
  --sage: #6f8a75;
  --river: #2f6f7a;
  --cream-line: rgba(255, 248, 238, 0.24);
  --dark-line: rgba(33, 27, 24, 0.16);
  --shadow: 0 24px 70px rgba(25, 19, 15, 0.22);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(255, 248, 238, 0.96), rgba(246, 239, 228, 1)),
    var(--paper);
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 30;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0.75rem 1rem;
  overflow: visible;
  clip: auto;
  border-radius: 6px;
  background: var(--paper-strong);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 76px;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid rgba(255, 248, 238, 0.12);
  background: rgba(16, 14, 13, 0.76);
  color: var(--paper-strong);
  backdrop-filter: blur(18px);
  transition:
    min-height 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.site-header.is-scrolled {
  min-height: 64px;
  border-color: rgba(255, 248, 238, 0.2);
  background: rgba(16, 14, 13, 0.92);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand span {
  display: grid;
  gap: 0.1rem;
}

.brand strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand small {
  color: rgba(255, 248, 238, 0.66);
  font-size: 0.76rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 800;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 0.85rem;
  color: rgba(255, 248, 238, 0.76);
  transition:
    background 180ms ease,
    color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 248, 238, 0.1);
  color: var(--paper-strong);
  outline: 0;
}

.site-nav a.active {
  background: rgba(255, 248, 238, 0.12);
  color: var(--gold);
}

.site-nav .nav-ticket {
  margin-left: 0.3rem;
  background: var(--gold);
  color: var(--ink);
}

.site-nav .nav-ticket:hover,
.site-nav .nav-ticket:focus-visible {
  background: var(--paper-strong);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 248, 238, 0.24);
  border-radius: 6px;
  background: rgba(255, 248, 238, 0.08);
  color: var(--paper-strong);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 2px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  color: var(--paper-strong);
  background: var(--night);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center center;
}

.hero-video {
  background: var(--night);
  object-position: center center;
}

.hero-video.seamless-layer {
  opacity: 0;
  transition: opacity 1.1s ease-in-out;
  will-change: opacity;
}

.hero-video.seamless-layer.is-active {
  opacity: 1;
}

.hero-video::-webkit-media-controls {
  display: none;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(16, 14, 13, 0.94), rgba(16, 14, 13, 0.55) 46%, rgba(16, 14, 13, 0.72)),
    linear-gradient(180deg, rgba(16, 14, 13, 0.2), rgba(16, 14, 13, 0.92));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 2rem));
  min-height: 92svh;
  margin: 0 auto;
  padding: 8.5rem 0 3rem;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.72fr);
  align-items: end;
  gap: 2rem;
}

.hero-copy {
  max-width: 48rem;
  padding-bottom: 1rem;
}

.page-hero {
  position: relative;
  min-height: 58svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 8.5rem 0 4rem;
  background: var(--night);
  color: var(--paper-strong);
}

.compact-page-hero {
  min-height: 48svh;
}

.page-hero img,
.page-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-hero img {
  object-fit: cover;
}

.page-hero-shade {
  background:
    linear-gradient(90deg, rgba(16, 14, 13, 0.92), rgba(16, 14, 13, 0.5) 52%, rgba(16, 14, 13, 0.84)),
    linear-gradient(180deg, rgba(16, 14, 13, 0.18), rgba(16, 14, 13, 0.94));
}

.page-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.page-hero h1 {
  margin-top: 0.55rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.5rem;
  line-height: 0.95;
  font-weight: 900;
  text-wrap: balance;
}

.page-hero p:not(.eyebrow) {
  margin-top: 1rem;
  color: rgba(255, 248, 238, 0.76);
  font-size: 1.12rem;
  line-height: 1.75;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  margin-top: 0.6rem;
  max-width: 12ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5.9rem;
  line-height: 0.9;
  font-weight: 900;
  text-wrap: balance;
}

.hero-lede {
  margin-top: 1.2rem;
  max-width: 42rem;
  color: rgba(255, 248, 238, 0.78);
  font-size: 1.25rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 1.1rem;
  font-size: 0.94rem;
  font-weight: 900;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: 0;
}

.button-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 16px 42px rgba(217, 170, 85, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--paper-strong);
}

.button-ghost {
  border-color: rgba(255, 248, 238, 0.38);
  color: var(--paper-strong);
  background: rgba(255, 248, 238, 0.08);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgba(255, 248, 238, 0.72);
  background: rgba(255, 248, 238, 0.16);
}

.hero-panel {
  border: 1px solid rgba(255, 248, 238, 0.2);
  border-radius: 8px;
  padding: 1rem;
  background: rgba(16, 14, 13, 0.6);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.event-lockup {
  width: min(15rem, 70%);
  margin: 0 auto 0.8rem;
}

.event-meta {
  display: grid;
  gap: 0.65rem;
}

.event-meta div {
  display: grid;
  gap: 0.16rem;
  padding: 0.9rem;
  border: 1px solid rgba(255, 248, 238, 0.12);
  border-radius: 6px;
  background: rgba(255, 248, 238, 0.08);
}

.event-meta span,
.countdown p,
.countdown small,
.quick-item span,
.card-kicker,
.schedule-card span,
.ticket-panel span {
  color: rgba(255, 248, 238, 0.66);
  font-size: 0.78rem;
  font-weight: 800;
}

.event-meta strong {
  line-height: 1.3;
}

.countdown {
  margin-top: 0.8rem;
  padding: 0.9rem;
  border-radius: 6px;
  background: var(--copper-dark);
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
  margin-top: 0.65rem;
}

.countdown-grid span {
  display: grid;
  place-items: center;
  min-height: 64px;
  border-radius: 6px;
  background: rgba(255, 248, 238, 0.12);
}

.countdown-grid strong {
  font-size: 1.35rem;
  line-height: 1;
}

.countdown-grid small {
  margin-top: 0.35rem;
  font-size: 0.68rem;
}

.quick-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 248, 238, 0.2);
  border-bottom: 1px solid rgba(255, 248, 238, 0.2);
  background: var(--charcoal);
  color: var(--paper-strong);
}

.quick-item {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 0.35rem;
  padding: 1.1rem 1.25rem;
  border-right: 1px solid rgba(255, 248, 238, 0.14);
}

.quick-item:last-child {
  border-right: 0;
}

.quick-item strong {
  font-size: 1.1rem;
  line-height: 1.25;
}

.section {
  padding: 5rem 0;
}

.section-inner {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.section-light {
  background: var(--paper);
  color: var(--ink);
}

.section-dark {
  background:
    linear-gradient(180deg, rgba(16, 14, 13, 0.96), rgba(33, 27, 24, 1)),
    var(--night);
  color: var(--paper-strong);
}

.intro-grid,
.section-heading,
.ticket-grid,
.faq-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 2rem;
  align-items: start;
}

.intro-grid h2,
.section-heading h2,
.visit-copy h2,
.photo-band-copy h2,
.ticket-grid h2,
.faq-layout h2,
.contact-layout h2 {
  margin-top: 0.55rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.1rem;
  line-height: 1;
  font-weight: 900;
  text-wrap: balance;
}

.intro-grid p,
.section-heading p,
.visit-copy p,
.photo-band-copy p,
.ticket-grid p,
.faq-layout p,
.contact-layout p {
  color: rgba(25, 19, 15, 0.72);
  font-size: 1.05rem;
  line-height: 1.8;
}

.section-dark .section-heading p,
.section-dark .ticket-grid p {
  color: rgba(255, 248, 238, 0.72);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.2rem;
}

.feature-card {
  display: grid;
  grid-template-rows: 20rem auto;
  overflow: hidden;
  border: 1px solid var(--dark-line);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: 0 18px 44px rgba(25, 19, 15, 0.08);
}

.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--charcoal);
}

.feature-card div {
  padding: 1rem;
}

.feature-card .card-kicker,
.schedule-card span {
  color: var(--copper);
}

.feature-card h3 {
  margin-top: 0.35rem;
  font-size: 1.25rem;
  line-height: 1.1;
}

.feature-card p:not(.card-kicker) {
  margin-top: 0.7rem;
  color: rgba(25, 19, 15, 0.7);
  line-height: 1.55;
}

.page-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.2rem;
}

.page-card {
  display: grid;
  grid-template-rows: 16rem auto auto;
  overflow: hidden;
  border: 1px solid var(--dark-line);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: 0 18px 44px rgba(25, 19, 15, 0.08);
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.page-card:hover,
.page-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(178, 90, 36, 0.55);
  outline: 0;
}

.page-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--charcoal);
}

.page-card span {
  padding: 1rem 1rem 0;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.page-card strong {
  padding: 0.35rem 1rem 1rem;
  font-size: 1.05rem;
  line-height: 1.35;
}

.schedule-section {
  border-top: 1px solid rgba(255, 248, 238, 0.12);
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 2rem;
}

.schedule-card {
  min-height: 25rem;
  display: grid;
  align-content: start;
  gap: 0.85rem;
  border: 1px solid rgba(255, 248, 238, 0.14);
  border-radius: 8px;
  padding: 1.1rem;
  background: rgba(255, 248, 238, 0.06);
}

.schedule-card.highlight {
  background:
    linear-gradient(180deg, rgba(178, 90, 36, 0.58), rgba(120, 53, 20, 0.44)),
    rgba(255, 248, 238, 0.06);
}

.schedule-card h3 {
  min-height: 4.2rem;
  font-size: 1.35rem;
  line-height: 1.12;
}

.schedule-card li {
  position: relative;
  padding-left: 1rem;
  margin-top: 0.6rem;
  color: rgba(255, 248, 238, 0.72);
  line-height: 1.45;
}

.schedule-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--gold);
}

.schedule-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.text-link {
  color: var(--gold);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 0.22rem;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--paper-strong);
  outline: 0;
}

.visit-section {
  padding-bottom: 0;
}

.visit-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 1.1fr);
  gap: 2rem;
  align-items: start;
}

.visit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.visit-list article {
  min-height: 10.8rem;
  border: 1px solid var(--dark-line);
  border-radius: 8px;
  padding: 1rem;
  background: rgba(255, 248, 238, 0.74);
}

.visit-list h3 {
  font-size: 1.15rem;
}

.visit-list p {
  margin-top: 0.55rem;
  font-size: 0.96rem;
  line-height: 1.6;
}

.visit-media {
  display: grid;
  gap: 0.7rem;
}

.visit-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid var(--dark-line);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: 0 18px 54px rgba(25, 19, 15, 0.16);
}

.map-link {
  justify-self: start;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  padding: 0 0.8rem;
  background: var(--river);
  color: #fff;
  font-weight: 900;
}

.photo-band {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  min-height: 32rem;
  padding: 0;
  background: var(--charcoal);
  color: var(--paper-strong);
}

.photo-band-image {
  min-height: 32rem;
}

.photo-band-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-band-copy {
  display: grid;
  align-content: center;
  padding: 4rem min(5vw, 5rem);
}

.photo-band-copy p {
  color: rgba(255, 248, 238, 0.74);
}

.tickets-section {
  border-bottom: 1px solid rgba(255, 248, 238, 0.12);
}

.ticket-panel {
  display: grid;
  gap: 1rem;
  border: 1px solid rgba(255, 248, 238, 0.16);
  border-radius: 8px;
  padding: 1.2rem;
  background: rgba(255, 248, 238, 0.07);
}

.ticket-panel strong {
  font-size: 1.7rem;
}

.ticket-panel span {
  color: rgba(255, 248, 238, 0.68);
  line-height: 1.5;
}

.ticket-panel .button {
  justify-self: start;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-list details {
  border: 1px solid var(--dark-line);
  border-radius: 8px;
  background: var(--paper-strong);
}

.faq-list summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 0.95rem 1rem;
  font-weight: 900;
}

.faq-list summary::marker {
  color: var(--copper);
}

.faq-list p {
  padding: 0 1rem 1rem;
  font-size: 0.98rem;
  line-height: 1.7;
}

.contact-section {
  padding: 4rem 0;
  background:
    linear-gradient(180deg, rgba(47, 111, 122, 0.18), rgba(111, 138, 117, 0.18)),
    var(--paper);
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.contact-links a {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--dark-line);
  border-radius: 8px;
  padding: 0.75rem;
  background: var(--paper-strong);
  font-weight: 900;
  text-align: center;
}

.contact-links a:hover,
.contact-links a:focus-visible {
  border-color: var(--river);
  color: var(--river);
  outline: 0;
}

.information-hero {
  position: relative;
  display: grid;
  min-height: 28rem;
  align-items: center;
  padding-top: 7rem;
  padding-bottom: 7rem;
  background:
    linear-gradient(90deg, rgba(16, 14, 13, 0.62), rgba(16, 14, 13, 0.42)),
    var(--page-hero-image) center / cover;
  color: #fff;
  text-align: center;
}

.information-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 6vw, 4.4rem);
  line-height: 1;
  font-weight: 900;
}

.information-history {
  padding: 4.2rem 0 4.8rem;
  background: rgba(210, 135, 68, 0.39);
}

.information-title-band {
  width: min(100%, 980px);
  margin: 0 auto;
  border-radius: 20px;
  padding: 0.65rem 1.25rem;
  background: var(--gold);
  color: #fff;
  text-align: center;
}

.information-title-band h2,
.information-map-section h2,
.information-faq-section h2,
.information-contact-section h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.05;
  font-weight: 900;
}

.information-history-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.78fr);
  gap: 3rem;
  align-items: start;
  margin-top: 3rem;
}

.information-copy {
  display: grid;
  gap: 1rem;
  color: rgba(24, 24, 33, 0.82);
  font-size: 1rem;
  line-height: 1.85;
}

.information-logo-panel {
  display: grid;
  justify-items: center;
}

.information-logo-panel img {
  width: min(20rem, 72%);
  height: auto;
  object-fit: contain;
}

.information-park-band {
  background: #1a1b24;
  color: #fff;
}

.information-park-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(20rem, 2fr);
  align-items: center;
}

.information-park-photo {
  min-height: 30rem;
  height: 100%;
}

.information-park-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.information-park-copy {
  display: grid;
  gap: 1rem;
  justify-items: center;
  padding: 3.4rem min(8vw, 8rem) 3.4rem 2rem;
  text-align: center;
}

.information-park-copy img {
  width: min(100%, 28rem);
  margin-bottom: 0.25rem;
}

.information-park-copy p {
  color: rgba(255, 248, 238, 0.84);
  font-size: 0.96rem;
  line-height: 1.55;
}

.information-map-section {
  padding: 4rem 0 5rem;
  background: #1a1b24;
  color: #fff;
  text-align: center;
}

.information-map-section h2,
.information-faq-section h2,
.information-contact-section h2 {
  color: #fff;
  margin-bottom: 2rem;
  text-align: center;
}

.information-map-section a {
  display: block;
}

.information-map-section img {
  width: min(100%, 1120px);
  margin: 0 auto;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

.information-faq-section {
  padding: 4rem 0 5rem;
  background:
    linear-gradient(rgba(26, 27, 36, 0.92), rgba(26, 27, 36, 0.94)),
    url("assets/track-detail.png") center / cover;
  color: #fff;
}

.information-faq-shell {
  display: grid;
  gap: 1.35rem;
}

.information-faq-header {
  max-width: 920px;
  display: grid;
  justify-items: center;
  gap: 0.8rem;
  margin: 0 auto 0.65rem;
  text-align: center;
}

.information-faq-header .eyebrow {
  color: var(--gold);
}

.information-faq-section .information-faq-header h2 {
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 4.7vw, 4.3rem);
  line-height: 0.98;
  font-weight: 900;
}

.information-faq-header > p:not(.eyebrow) {
  max-width: 44rem;
  color: rgba(255, 248, 238, 0.78);
  font-size: 1.05rem;
  line-height: 1.65;
}

.information-faq-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 0.35rem;
}

.information-faq-stats span {
  border: 1px solid rgba(217, 170, 85, 0.42);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  background: rgba(255, 248, 238, 0.08);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.information-faq-tabs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.6rem;
  border: 1px solid rgba(217, 170, 85, 0.34);
  border-radius: 999px;
  padding: 0.65rem;
  background: rgba(255, 248, 238, 0.09);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.information-faq-tabs button {
  min-height: 48px;
  border: 1px solid rgba(255, 248, 238, 0.18);
  border-radius: 999px;
  padding: 0 0.85rem;
  background: rgba(255, 248, 238, 0.08);
  color: rgba(255, 248, 238, 0.86);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-align: center;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.information-faq-tabs button:hover,
.information-faq-tabs button:focus-visible,
.information-faq-tabs button.active {
  border-color: var(--gold);
  background: var(--gold);
  color: #32170d;
  outline: 0;
}

.information-faq-tabs button:hover,
.information-faq-tabs button:focus-visible {
  transform: translateY(-2px);
}

.information-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
  margin-top: 0.4rem;
}

.information-faq-column {
  display: contents;
}

.faq-group {
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

.faq-group {
  margin-bottom: 0;
  border: 1px solid rgba(217, 170, 85, 0.22);
  border-radius: 22px;
  padding: 0.9rem;
  background:
    linear-gradient(145deg, rgba(255, 248, 238, 0.97), rgba(246, 239, 228, 0.93)),
    var(--paper-strong);
  color: rgba(24, 24, 33, 0.84);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.faq-group:not(.active) {
  display: none;
}

.faq-group h3 {
  border-radius: 16px;
  padding: 0.75rem 1rem;
  background: #1a1b24;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 900;
  text-align: left;
}

.faq-group details {
  border: 1px solid rgba(178, 90, 36, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  color: rgba(24, 24, 33, 0.84);
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(25, 19, 15, 0.08);
}

.faq-group summary {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  padding: 0.8rem 1rem;
  color: #522b1c;
  font-family: "Bree Serif", Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.3;
  list-style: none;
}

.faq-group summary::-webkit-details-marker {
  display: none;
}

.faq-group summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 1.75rem;
  height: 1.75rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #32170d;
  font-family: Montserrat, sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1;
}

.faq-group details[open] summary::after {
  content: "-";
}

.faq-group details > p,
.faq-group details > ul {
  padding: 0 1rem 1rem;
}

.faq-group p,
.faq-group li {
  font-size: 0.94rem;
  line-height: 1.65;
}

.faq-group ul {
  padding-left: 2rem;
}

.information-contact-section {
  padding: 4rem 0 5rem;
  background: #1a1b24;
  color: #fff;
}

.information-contact-intro {
  margin: -1rem auto 2rem;
  color: rgba(255, 248, 238, 0.8);
  text-align: center;
}

.information-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 1fr);
  gap: 3rem;
  align-items: start;
}

.information-contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.information-contact-form label {
  display: grid;
  gap: 0.35rem;
}

.information-contact-form label > span {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.information-contact-form input,
.information-contact-form select,
.information-contact-form textarea {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 0;
  padding: 0.9rem;
  background: #eee;
  color: #222;
  font: inherit;
}

.information-contact-form textarea {
  min-height: 10rem;
  resize: vertical;
}

.information-form-wide,
.information-form-bottom {
  grid-column: 1 / -1;
}

.information-form-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: end;
  gap: 1rem;
}

.information-captcha {
  width: 10rem;
}

.information-form-bottom button {
  min-height: 50px;
  border: 2px solid var(--gold);
  border-radius: 0;
  padding: 0 1.5rem;
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.information-form-bottom button:hover,
.information-form-bottom button:focus-visible {
  background: var(--gold);
  color: #1a1b24;
  outline: 0;
}

.information-contact-grid > img {
  width: 100%;
  box-shadow: var(--shadow);
}

.plan-hero {
  position: relative;
  display: grid;
  min-height: 390px;
  align-items: center;
  padding-top: 126px;
  padding-bottom: 126px;
  background: #1a1b24 var(--page-hero-image) center top / cover no-repeat;
  color: #fff;
  text-align: center;
}

.plan-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 6vw, 4.4rem);
  line-height: 1;
  font-weight: 900;
}

.plan-title-band,
.plan-intro-section,
.plan-parking-section,
.plan-other-section {
  background: #eed0b6;
}

.plan-title-band {
  padding: 5.4rem 0 0.35rem;
}

.plan-title-band h2,
.plan-dark-split h2,
.plan-parking-section h2,
.plan-other-section h2 {
  width: min(100%, 980px);
  margin: 0 auto;
  border-radius: 20px;
  padding: 0.65rem 1.25rem;
  background: var(--gold);
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.05;
  font-weight: 900;
  text-align: center;
}

.plan-title-band h2 {
  width: min(100%, 1152px);
  max-width: 1152px;
}

.plan-page main {
  padding-top: 84px;
}

.plan-intro-section > .section-inner,
.plan-dark-split > .section-inner,
.plan-parking-section > .section-inner,
.plan-other-section > .section-inner {
  width: min(80%, 1920px);
}

.plan-intro-section {
  padding: 4rem 0 7.6rem;
}

.plan-intro-grid,
.plan-split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 1fr);
  gap: 4rem;
  align-items: start;
}

.plan-image-card img,
.discover-app-row img,
.plan-split-images img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 6px 6px 18px rgba(0, 0, 0, 0.3);
}

.plan-intro-copy {
  display: grid;
  gap: 1rem;
  color: #4f4f4f;
  font-size: 1rem;
  line-height: 1.85;
}

.discover-app-row {
  display: grid;
  grid-template-columns: 0.8fr 1fr 0.8fr;
  gap: 1rem;
  align-items: start;
  margin-top: 1rem;
  text-align: center;
}

.discover-app-row > a {
  display: grid;
  gap: 0.65rem;
  color: #24242f;
  font-weight: 700;
}

.discover-app-row > a img {
  width: min(100%, 7rem);
  justify-self: center;
}

.discover-app-row > img {
  width: min(100%, 7rem);
  justify-self: center;
}

.plan-dark-split {
  padding: 5.35rem 0 4rem;
  background: #1a1b24;
  color: #fff;
}

.plan-split-copy,
.plan-split-images {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.plan-split-copy p {
  color: rgba(255, 248, 238, 0.88);
  font-size: 1rem;
  line-height: 1.7;
}

.plan-split-images p {
  color: rgba(255, 248, 238, 0.9);
  font-size: 1rem;
  line-height: 1.65;
}

.plan-card-grid,
.plan-other-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.plan-card-grid {
  grid-template-columns: repeat(3, 8.75rem);
  justify-content: space-between;
  row-gap: 1.5rem;
}

.plan-card-grid-three {
  grid-template-columns: repeat(3, 8.75rem);
}

.plan-other-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.plan-link-card {
  min-height: 14.2rem;
  display: grid;
  align-content: center;
  gap: 0.6rem;
  border-radius: 20px;
  padding: 1.5rem 1rem;
  background: var(--gold);
  color: #fff;
  text-align: center;
  box-shadow: 6px 6px 18px rgba(0, 0, 0, 0.3);
  transition: background 180ms ease, transform 180ms ease;
}

.plan-link-card:hover,
.plan-link-card:focus-visible {
  background: #a24103;
  transform: translateY(-2px);
  outline: 0;
}

.plan-link-card strong {
  display: grid;
  gap: 0.4rem;
  font-size: 1rem;
  line-height: 1.2;
}

.plan-link-card strong::after {
  content: "_";
  font-weight: 900;
}

.plan-link-card span,
.plan-link-card em {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.45;
}

.plan-parking-section,
.plan-other-section {
  padding: 4rem 0;
}

.plan-copy-panel {
  width: min(100%, 1080px);
  margin: 2rem auto 0;
  color: #4f4f4f;
  font-size: 1rem;
  line-height: 1.75;
}

.plan-copy-panel p + p {
  margin-top: 1rem;
}

.plan-other-grid {
  margin-top: 2rem;
}

#local .plan-split-images p {
  border-radius: 20px;
  padding: 1.5rem;
  background: var(--gold);
  color: #fff;
  box-shadow: 6px 6px 18px rgba(0, 0, 0, 0.3);
}

.site-footer {
  display: block;
  background: #1a1b24;
  color: rgba(255, 248, 238, 0.82);
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3.5rem;
  padding-top: 4rem;
  padding-bottom: 3.2rem;
}

.footer-brand img {
  width: min(100%, 10.5rem);
}

.footer-brand p {
  max-width: 22rem;
  margin-top: 1.1rem;
  color: rgba(255, 248, 238, 0.82);
  font-size: 1rem;
  line-height: 1.75;
}

.footer-column h2 {
  margin: 0 0 1.1rem;
  color: #fff;
  font-family: "Bree Serif", Georgia, serif;
  font-size: 1.5rem;
  line-height: 1;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  align-content: start;
}

.footer-links a {
  display: block;
  padding: 0.28rem 0 0.28rem 1.55rem;
  color: #fff;
  font-family: "Bree Serif", Georgia, serif;
  font-size: 0.93rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.footer-links span {
  display: none;
}

.footer-icon {
  width: 1.45rem;
  height: 1.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--gold);
  outline: 0;
}

.footer-contact {
  display: grid;
  align-content: start;
  gap: 0.85rem;
}

.footer-contact p {
  display: grid;
  grid-template-columns: 1.7rem 1fr;
  gap: 0.75rem;
  align-items: start;
  margin: 0;
  color: rgba(255, 248, 238, 0.9);
  line-height: 1.6;
}

.footer-contact a {
  color: rgba(255, 248, 238, 0.9);
  overflow-wrap: anywhere;
}

.footer-social {
  display: flex;
  gap: 0.7rem;
  margin-top: 0.1rem;
}

.footer-social a {
  width: 2.55rem;
  height: 2.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--gold);
  color: #32170d;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  background: #fff;
  color: var(--copper-dark);
  outline: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(210, 135, 68, 0.34);
  padding: 1.1rem 1rem;
  color: rgba(255, 248, 238, 0.74);
  font-size: 0.94rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: #fff;
  font-weight: 800;
}

@media (max-width: 1080px) {
  .hero h1 {
    font-size: 4.8rem;
  }

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

  .page-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .schedule-card {
    min-height: 20rem;
  }

  .schedule-card h3 {
    min-height: auto;
  }

  .schedule-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: 76px 0 auto;
    display: grid;
    gap: 0;
    max-height: calc(100svh - 76px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 0.75rem;
    border-bottom: 1px solid rgba(255, 248, 238, 0.16);
    background: rgba(16, 14, 13, 0.96);
    pointer-events: none;
    visibility: hidden;
    transform: translateY(calc(-100% - 86px));
    transition: transform 180ms ease;
  }

  body.nav-open .site-nav {
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    justify-content: flex-start;
    min-height: 48px;
  }

  .site-nav .nav-ticket {
    margin-left: 0;
    justify-content: center;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 7.5rem;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .page-hero h1 {
    font-size: 3.5rem;
  }

  .hero-panel {
    max-width: 30rem;
  }

  .quick-band,
  .intro-grid,
  .section-heading,
  .ticket-grid,
  .faq-layout,
  .contact-layout,
  .visit-layout,
  .photo-band {
    grid-template-columns: 1fr;
  }

  .quick-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-item:nth-child(2) {
    border-right: 0;
  }

  .quick-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 248, 238, 0.14);
  }

  .intro-grid h2,
  .section-heading h2,
  .visit-copy h2,
  .photo-band-copy h2,
  .ticket-grid h2,
  .faq-layout h2,
  .contact-layout h2 {
    font-size: 2.45rem;
  }

  .photo-band-image {
    min-height: 22rem;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 0.65rem 0.85rem;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand small {
    display: none;
  }

  .hero-inner,
  .section-inner {
    width: min(100% - 1rem, 1180px);
  }

  .hero h1 {
    font-size: 3.05rem;
  }

  .hero-lede {
    font-size: 1.04rem;
  }

  .hero-actions,
  .schedule-cta {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .countdown-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-band,
  .feature-grid,
  .page-card-grid,
  .schedule-grid,
  .visit-list,
  .contact-links {
    grid-template-columns: 1fr;
  }

  .quick-item,
  .quick-item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 248, 238, 0.14);
  }

  .quick-item:last-child {
    border-bottom: 0;
  }

  .feature-card {
    grid-template-rows: 18rem auto;
  }

  .page-card {
    grid-template-rows: 14rem auto auto;
  }

  .page-hero {
    min-height: auto;
    padding: 7rem 0 3rem;
  }

  .page-hero h1 {
    font-size: 2.75rem;
  }

  .schedule-card:last-child {
    grid-column: auto;
  }

  .section {
    padding: 3.6rem 0;
  }

  .visit-section {
    padding-bottom: 0;
  }

  .photo-band-copy {
    padding: 3rem 1rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
}

/* Current-site mimic pass */
:root {
  --ink: #181821;
  --charcoal: #1a1b24;
  --night: #1f120d;
  --paper: #f5eee3;
  --paper-strong: #fffaf0;
  --copper: #8c3401;
  --copper-dark: #5b2b1c;
  --gold: #d28744;
  --dark-line: rgba(140, 52, 1, 0.32);
  --shadow: 6px 6px 18px rgba(0, 0, 0, 0.3);
}

body {
  background: var(--paper);
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  color: var(--ink);
}

h1,
h2,
h3,
.hero-countdown-title,
.day-detail-heading,
.stuff-card strong {
  font-family: "Bree Serif", Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.site-header {
  min-height: 84px;
  padding: 0 clamp(1rem, 5.5vw, 5rem);
  background: #1a1b24;
  color: #fff;
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.site-header.is-scrolled {
  min-height: 72px;
  background: rgba(26, 27, 36, 0.96);
}

.brand {
  gap: 0;
}

.brand img {
  width: 68px;
  height: 68px;
}

.brand span {
  display: none;
}

.header-ticket {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  padding: 0 1.25rem;
  margin-right: auto;
  margin-left: 1rem;
  background: var(--gold);
  color: #fff;
  font-size: 1.28rem;
  font-weight: 800;
  box-shadow: 0 2px 9px rgba(0, 0, 0, 0.18);
}

.site-nav {
  gap: 1.4rem;
  margin-right: 6.4rem;
  font-size: 0.94rem;
  font-weight: 500;
}

.site-nav a {
  min-height: auto;
  border-radius: 0;
  padding: 0;
  color: #fff;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  background: transparent;
  color: var(--gold);
}

.site-nav .nav-ticket {
  display: none;
}

.nav-caret::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: 0.42rem;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
}

.nav-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-menu::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  height: 0.75rem;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.7rem);
  left: 0;
  z-index: 30;
  display: grid;
  gap: 0.2rem;
  min-width: 15rem;
  padding: 0.55rem;
  border: 1px solid rgba(255, 248, 238, 0.16);
  border-radius: 8px;
  background: rgba(16, 14, 13, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(-0.35rem);
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    visibility 160ms ease;
}

.nav-menu:hover .nav-dropdown,
.nav-menu:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateY(0);
}

.site-nav .nav-dropdown a {
  min-height: 38px;
  justify-content: flex-start;
  border-radius: 6px;
  padding: 0 0.75rem;
  color: rgba(255, 248, 238, 0.84);
  font-size: 0.86rem;
  white-space: nowrap;
}

.site-nav .nav-dropdown a:hover,
.site-nav .nav-dropdown a:focus-visible {
  background: rgba(255, 248, 238, 0.1);
  color: var(--paper-strong);
}

.hero.current-home-hero {
  min-height: 100svh;
}

.current-home-hero .hero-shade {
  background:
    linear-gradient(90deg, rgba(26, 27, 36, 0.2), rgba(26, 27, 36, 0.14)),
    linear-gradient(180deg, rgba(26, 27, 36, 0.18), rgba(26, 27, 36, 0.24));
}

.current-home-hero .hero-inner {
  width: min(86%, 1920px);
  min-height: 100svh;
  grid-template-columns: minmax(22rem, 1.08fr) minmax(26rem, 0.92fr);
  align-items: start;
  padding-top: 7.5rem;
  padding-bottom: 4rem;
}

.hero-logo-wrap {
  align-self: start;
}

.hero-brand-mark {
  width: min(36rem, 100%);
  opacity: 1;
  filter: drop-shadow(0 14px 20px rgba(0, 0, 0, 0.45));
}

.current-hero-panel {
  display: grid;
  justify-items: center;
  gap: 2rem;
  align-self: start;
  padding-top: 3.9rem;
  text-align: center;
}

.home-countdown {
  width: min(30.25rem, 100%);
  border-radius: 20px;
  padding: 2rem 1.75rem 1.55rem;
  background: rgba(162, 65, 3, 0.82);
  box-shadow: var(--shadow);
}

.hero-countdown-title {
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(2.5rem, 5vw, 4.35rem);
  line-height: 1;
}

.home-countdown .countdown-grid {
  display: flex;
  justify-content: center;
  gap: 1.55rem;
  margin-top: 1.4rem;
}

.home-countdown .countdown-grid span {
  position: relative;
  min-height: auto;
  display: grid;
  place-items: center;
  border-radius: 0;
  background: transparent;
}

.home-countdown .countdown-grid span:not(:last-child)::after {
  content: ":";
  position: absolute;
  top: -0.16rem;
  right: -1rem;
  color: #fff;
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1;
}

.home-countdown .countdown-grid strong {
  color: #fff;
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1;
}

.home-countdown .countdown-grid small {
  margin-top: 0.45rem;
  color: #fff;
  font-size: 0.73rem;
  line-height: 1.2;
}

.home-ticket-block {
  width: min(24rem, 90%);
  min-height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 1rem 1.4rem;
  background: rgba(210, 135, 68, 0.76);
  color: rgba(255, 255, 255, 0.7);
  font-family: "Bree Serif", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: var(--shadow);
}

.home-hero-rule {
  width: min(27rem, 82%);
  height: 3px;
  background: var(--gold);
}

.home-hero-copy {
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.08rem;
  line-height: 1.65;
}

@media (min-width: 1200px) and (max-width: 1499px) {
  .hero-brand-mark {
    width: min(40rem, 100%);
  }

  .home-countdown {
    width: min(38rem, 100%);
    padding: 2rem 2.1rem 1.45rem;
  }

  .hero-countdown-title {
    font-size: clamp(3.05rem, 3.8vw, 3.75rem);
    white-space: nowrap;
  }

  .home-countdown .countdown-grid {
    gap: 1.9rem;
  }

  .home-countdown .countdown-grid span:not(:last-child)::after {
    right: -1.18rem;
    font-size: 2.25rem;
  }

  .home-countdown .countdown-grid strong {
    font-size: 2.25rem;
  }

  .home-ticket-block {
    width: min(31rem, 90%);
    min-height: 58px;
    font-size: 1.35rem;
    white-space: nowrap;
  }

  .home-hero-rule {
    width: min(31rem, 88%);
  }
}

@media (min-width: 1500px) {
  .site-header {
    justify-content: flex-start;
    min-height: 96px;
    padding: 0 clamp(5rem, 5.2vw, 6.5rem);
  }

  .site-header.is-scrolled {
    min-height: 78px;
  }

  .brand img {
    width: 72px;
    height: 72px;
  }

  .header-ticket {
    min-height: 50px;
    padding: 0 1.5rem;
    margin-left: clamp(4rem, 5vw, 6rem);
    margin-right: clamp(10rem, 18.75vw, 23rem);
    font-size: 1.28rem;
  }

  .site-nav {
    gap: 1.35rem;
    margin-right: 0;
    font-size: 0.94rem;
  }

  .current-home-hero .hero-inner {
    width: min(86%, 1920px);
    grid-template-columns: minmax(40rem, 1.08fr) minmax(40rem, 0.92fr);
    padding-top: 8.35rem;
    padding-bottom: 4.5rem;
  }

  .hero-logo-wrap {
    padding-left: clamp(3.25rem, 3.45vw, 4.25rem);
  }

  .hero-brand-mark {
    width: min(44rem, 100%);
  }

  .current-hero-panel {
    gap: 2.35rem;
    padding-top: 4rem;
  }

  .home-countdown {
    width: min(45rem, 100%);
    border-radius: 18px;
    padding: 2.35rem 2.5rem 1.6rem;
  }

  .hero-countdown-title {
    font-size: clamp(4rem, 3.75vw, 4.7rem);
    white-space: nowrap;
  }

  .home-countdown .countdown-grid {
    gap: 2.85rem;
    margin-top: 1.25rem;
  }

  .home-countdown .countdown-grid span:not(:last-child)::after {
    top: -0.14rem;
    right: -1.72rem;
    font-size: 2.65rem;
  }

  .home-countdown .countdown-grid strong {
    font-size: 2.65rem;
  }

  .home-countdown .countdown-grid small {
    margin-top: 0.38rem;
  }

  .home-ticket-block {
    width: min(35rem, 82%);
    min-height: 58px;
    padding: 0.8rem 1.6rem;
    font-size: 1.55rem;
    white-space: nowrap;
  }

  .home-hero-rule {
    width: min(35rem, 82%);
  }

  .home-hero-copy {
    max-width: 42rem;
    font-size: 1.05rem;
    line-height: 1.6;
  }
}

.home-split {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1fr);
  background: #1a1b24;
  color: #fff;
}

.home-split-logo {
  min-height: 30rem;
  display: grid;
  place-items: center;
  padding: 3rem;
}

.home-split-logo img {
  width: min(29rem, 90%);
}

.home-split-photo img {
  width: 100%;
  height: 100%;
  min-height: 30rem;
  object-fit: cover;
}

.live-home-events {
  padding-top: clamp(3.2rem, 4.2vw, 4.1rem);
  padding-bottom: clamp(4.8rem, 6vw, 6.3rem);
  background: rgba(210, 135, 68, 0.39);
  color: #000;
}

.live-home-events .section-heading {
  width: 100%;
  max-width: none;
  margin-top: 0;
  margin-bottom: clamp(2rem, 2.6vw, 2.9rem);
}

.live-home-events .centered-heading > div {
  max-width: none;
}

.live-home-events h2 {
  color: #000;
  font-size: clamp(2.75rem, 3vw, 3.5rem);
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
}

.event-poster-slider {
  width: 100%;
  max-width: none;
  margin-top: 0;
  overflow: hidden;
}

.live-home-events .event-poster-track {
  grid-auto-columns: calc(20% - 1.5rem);
  align-items: stretch;
  gap: 1.875rem;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  scrollbar-width: none;
}

.live-home-events .event-poster-track::-webkit-scrollbar {
  display: none;
}

.live-home-events .event-poster-track > a {
  display: block;
  overflow: hidden;
  border-radius: 13px;
  box-shadow: var(--shadow);
}

.live-home-events .event-poster-track > img,
.live-home-events .event-poster-track > a > img {
  width: 100%;
  aspect-ratio: 5 / 7;
  object-fit: cover;
  border-radius: 13px;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.event-poster-dots {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 1rem;
}

.event-poster-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
}

.event-poster-dots .active {
  background: #0c0c0c;
}

#events-title {
  scroll-margin-top: 120px;
}

.home-plan-section {
  padding: 0;
  background: rgba(210, 135, 68, 0.39);
  color: #fff;
}

.home-plan-layout {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 0;
  align-items: stretch;
  background: #522b1c;
}

.home-plan-layout img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home-plan-layout > div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3.4rem, 5.2vw, 5.25rem) clamp(2rem, 6.5vw, 6.25rem) clamp(2.4rem, 4vw, 4rem) clamp(1.7rem, 3vw, 2rem);
}

.home-plan-layout h2,
.sponsor-section h2,
.facebook-section h2,
.instagram-section h2 {
  margin-top: 0.55rem;
  color: var(--ink);
  font-family: "Bree Serif", Georgia, serif;
  font-size: 3rem;
  line-height: 1.05;
}

.home-plan-layout h2 {
  margin-top: 0;
  color: #fff;
  font-size: clamp(2.25rem, 3.6vw, 2.875rem);
  font-weight: 700;
  line-height: 1.2;
}

.home-plan-layout p {
  max-width: 31rem;
  margin: 0.85rem 0 0;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.8;
}

.home-plan-layout .button {
  width: max-content;
  margin-top: 2rem;
  border-radius: 9px;
  background: #fff;
  color: var(--gold);
  font-weight: 700;
}

.sponsor-section {
  padding-top: 3.5rem;
  padding-bottom: 3.25rem;
  background: rgba(210, 135, 68, 0.39);
  color: var(--ink);
}

.sponsor-tier {
  position: relative;
  min-width: 0;
  margin-top: 1.65rem;
}

.sponsor-tier h3 {
  width: min(80%, 52rem);
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 10px;
  margin: 0 auto 1.15rem;
  padding: 0.45rem 1.5rem;
  background: var(--gold);
  color: #fff;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.3);
  font-family: "Bree Serif", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 2.375rem);
  letter-spacing: 0;
  line-height: 1.2;
  text-align: center;
}

.sponsor-track {
  --visible-count: 5;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  grid-auto-columns: calc((100% - ((var(--visible-count) - 1) * 1.2rem)) / var(--visible-count));
  align-items: center;
  justify-content: safe center;
  gap: 1.2rem;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  overflow-x: auto;
}

.sponsor-track > a {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.sponsor-track > a:hover,
.sponsor-track > a:focus-visible {
  border: 0;
  transform: translateY(-2px);
  outline: 0;
}

.sponsor-track > a > img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  padding: 1.15rem;
  background: transparent;
  object-fit: contain;
  box-shadow: none;
}

.sponsor-track img {
  border: 0;
  box-shadow: none;
}

.live-home-events .slider-arrow,
.sponsor-section .slider-arrow {
  display: none;
}

.facebook-section {
  background: #f5eee3;
}

.instagram-section {
  padding-top: 4.8rem;
  padding-bottom: 4.8rem;
  background: rgba(210, 135, 68, 0.39);
}

.instagram-feed {
  color: #666;
  font-size: 0.88rem;
}

.instagram-feed-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.instagram-feed-header img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
}

.instagram-feed-header h2 {
  margin: 0;
  color: #333;
  font-family: Montserrat, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.instagram-feed-header a {
  color: var(--copper);
  font-size: 0.92rem;
}

.instagram-feed-header p {
  margin-top: 0.2rem;
  line-height: 1.4;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.instagram-grid a {
  position: relative;
  display: block;
  overflow: hidden;
  background: #ddd;
}

.instagram-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 180ms ease, opacity 180ms ease;
}

.instagram-grid a:hover img,
.instagram-grid a:focus-visible img {
  opacity: 0.86;
  transform: scale(1.03);
}

.instagram-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--copper);
  font-weight: 700;
}

.facebook-post-grid {
  display: grid;
  grid-template-columns: repeat(5, 220px);
  gap: 1rem;
  align-items: start;
  justify-content: center;
  margin-top: 2rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
}

.facebook-post-card {
  min-width: 0;
  overflow: hidden;
  background: transparent;
  scroll-snap-align: start;
}

.facebook-post-embed {
  display: block;
  width: 100%;
  min-height: 360px;
  background: transparent;
}

.page-title-section {
  position: relative;
  overflow: hidden;
  padding: 10.5rem 0 5.5rem;
  background: #20120d;
  color: #fff;
}

.page-title-section.has-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(32, 18, 13, 0.88), rgba(32, 18, 13, 0.74)), var(--page-hero-image);
  background-size: cover;
  background-position: center;
  opacity: 0.72;
}

.page-title-section > .section-inner {
  position: relative;
  z-index: 1;
}

.page-title-section .section-inner {
  max-width: 1150px;
}

.page-title-section h1 {
  font-size: clamp(3rem, 5.2vw, 4.6rem);
  line-height: 1;
}

.page-title-section p {
  max-width: 880px;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.22rem;
  line-height: 1.58;
}

.page-title-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.6rem;
}

.button {
  border-radius: 999px;
  min-height: 44px;
  padding: 0 1.45rem;
  font-weight: 600;
}

.button-primary {
  background: var(--gold);
  color: #32170d;
  box-shadow: none;
}

.button-ghost {
  border-color: #fff;
  background: transparent;
  color: #fff;
}

.schedule-anchor-bar {
  position: sticky;
  top: 78px;
  z-index: 4;
  background: rgba(26, 27, 36, 0.96);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

.schedule-anchor-bar .section-inner {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  scrollbar-width: thin;
}

.schedule-anchor-bar a {
  flex: 0 0 auto;
  border: 1px solid rgba(210, 135, 68, 0.58);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.schedule-anchor-bar a:hover,
.schedule-anchor-bar a:focus-visible {
  background: var(--gold);
  color: #32170d;
  outline: 0;
}

#history,
#facility,
#faq,
#contact,
#rocky,
#local,
#parking,
#dining,
#other,
#schedule,
#vendor,
#drivers,
#outriders,
#outrider,
#entertainment {
  scroll-margin-top: 150px;
}

.section-light {
  background: var(--paper);
}

.schedule-mimic {
  padding-top: 4rem;
}

.schedule-shell {
  border: 2px solid var(--gold);
  border-radius: 20px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.32);
}

.schedule-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.65rem;
}

.schedule-tab {
  min-height: 118px;
  border: 1px solid var(--gold);
  border-radius: 16px;
  padding: 1.05rem 1.2rem;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.schedule-tab.active {
  background: #1a1b24;
  color: #fff;
  box-shadow: var(--shadow);
}

.schedule-tab span {
  display: block;
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.schedule-tab strong {
  display: block;
  margin-top: 0.6rem;
  font-size: 1.28rem;
}

.schedule-tab small {
  display: block;
  margin-top: 0.25rem;
  line-height: 1.45;
}

.day-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(18rem, 0.7fr);
  gap: 2rem;
  margin-top: 1rem;
}

.schedule-panel[hidden] {
  display: none;
}

.day-heading-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.7rem;
}

.day-detail,
.stuff-info {
  border: 2px solid var(--gold);
  border-radius: 20px;
  background: #fff;
  padding: 2rem;
}

.day-detail-kicker {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
}

.day-detail-heading {
  color: var(--ink);
  font-size: 2.1rem;
  line-height: 1;
}

.sponsor-pill {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border-radius: 999px;
  padding: 0.45rem 1rem;
  background: var(--gold);
  color: #32170d;
  font-size: 0.86rem;
  font-weight: 800;
}

.schedule-line {
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  gap: 1.4rem;
  align-items: start;
  border: 1px solid var(--gold);
  border-radius: 16px;
  padding: 1.2rem;
  margin-top: 1.1rem;
}

.schedule-time {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--copper-dark);
  color: #fff;
  font-weight: 900;
}

.schedule-line h3 {
  color: var(--copper-dark);
  font-size: 1.5rem;
  line-height: 1.1;
}

.schedule-line p,
.schedule-line details {
  margin-top: 0.35rem;
  line-height: 1.55;
}

.schedule-line summary {
  cursor: pointer;
  color: var(--copper);
  font-weight: 800;
}

.stuff-card {
  border-radius: 20px;
  padding: 1.8rem;
  background: var(--copper-dark);
  color: #fff;
}

.stuff-card strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1.08;
}

.stuff-info {
  margin-top: 1rem;
  line-height: 1.75;
}

.schedule-ticket-link {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(21rem, 100%);
  border: 2px dashed var(--gold);
  border-radius: 20px;
  margin-top: 1rem;
  padding: 0.9rem 1.2rem;
  background: #fff;
  color: var(--copper-dark);
  font-family: "Bree Serif", Georgia, serif;
  font-size: 1.15rem;
  text-transform: uppercase;
}

.live-image-break {
  min-height: 28rem;
  background:
    linear-gradient(180deg, rgba(26, 27, 36, 0.18), rgba(26, 27, 36, 0.48)),
    var(--break-image) center / cover fixed;
}

.centered-heading {
  display: block;
  text-align: center;
}

.centered-heading > div {
  max-width: 760px;
  margin: 0 auto;
}

.live-carousel-section {
  background: #1a1b24;
}

.live-slider {
  position: relative;
}

.slider-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(10rem, 1fr);
  gap: 1.2rem;
  overflow-x: auto;
  padding: 0.5rem 2.9rem 1.1rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.slider-track > img,
.slider-track > article,
.slider-track > a {
  scroll-snap-align: start;
}

.slider-track > img,
.slider-track > a > img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 18px;
  padding: 0.8rem;
  background: #fff;
}

.slider-track > a {
  color: inherit;
  text-decoration: none;
}

.sponsor-track > a {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.sponsor-track > a:hover,
.sponsor-track > a:focus-visible {
  border: 0;
  box-shadow: none;
}

.sponsor-track > a > img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  padding: 1.15rem;
  background: transparent;
  object-fit: contain;
  box-shadow: none;
}

.sponsor-section .sponsor-track {
  --visible-count: 5;
  grid-auto-columns: calc((100% - ((var(--visible-count) - 1) * 1.2rem)) / var(--visible-count));
  gap: 1.2rem;
  padding: 0;
}

.sponsor-section .sponsor-track > a,
.sponsor-section .sponsor-track > a > img {
  width: 100%;
  height: 100%;
}

.feature-slider .slider-track {
  grid-auto-columns: minmax(17rem, 25%);
}

.feature-slider article,
.feature-slider .slider-track > a {
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
}

.feature-slider article img,
.feature-slider .slider-track > a > img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0;
  padding: 0;
}

.profile-slider article img,
.profile-slider .slider-track > a > img {
  object-fit: contain;
  padding: 0.7rem 0.7rem 0;
  background: #fff;
}

.feature-slider article strong,
.feature-slider .slider-track > a strong {
  display: block;
  padding: 1rem;
  color: var(--copper-dark);
  font-family: "Bree Serif", Georgia, serif;
  font-size: 1.35rem;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--gold);
  color: #32170d;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 900;
  transform: translateY(-50%);
}

.slider-arrow[data-slider-prev] {
  left: 0;
}

.slider-arrow[data-slider-next] {
  right: 0;
}

.page-card,
.feature-card,
.visit-list article,
.faq-list details,
.contact-links a {
  border-color: var(--gold);
  border-radius: 20px;
}

.page-card span,
.feature-card .card-kicker,
.schedule-card span {
  color: var(--gold);
}

.info-copy {
  display: grid;
  gap: 1rem;
}

.wide-logo-art {
  width: min(100%, 34rem);
  margin-top: 1rem;
}

.info-copy p {
  color: rgba(24, 24, 33, 0.74);
  font-size: 1.05rem;
  line-height: 1.8;
}

.collaborate-grid .page-card {
  grid-template-rows: 15rem auto auto;
}

.collaborate-live-intro {
  background: rgba(210, 135, 68, 0.28);
}

.collaborate-live-grid {
  display: grid;
  grid-template-columns: minmax(16rem, 0.84fr) minmax(0, 1fr);
  gap: 3.2rem;
  align-items: center;
}

.collaborate-live-grid > *,
.collaborate-form-shell > *,
.collaborate-application-form > * {
  min-width: 0;
}

.collaborate-fundraising-ad {
  width: 100%;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}

.collaborate-live-copy {
  color: rgba(24, 24, 33, 0.76);
  font-size: 1.05rem;
  line-height: 1.78;
}

.collaborate-live-copy .wide-logo-art {
  width: min(100%, 42rem);
  max-width: 100%;
  height: auto;
  margin: 0 0 1.5rem;
}

.collaborate-live-copy p + p {
  margin-top: 1rem;
}

.collaborate-ad-carousel {
  background: #1a1b24;
}

.collaborate-role-track {
  grid-auto-columns: minmax(14rem, 18rem);
  padding-right: 0;
  padding-left: 0;
}

.collaborate-role-track > img {
  width: 100%;
  aspect-ratio: 5 / 7;
  object-fit: cover;
  border-radius: 18px;
  padding: 0;
  background: transparent;
  box-shadow: var(--shadow);
}

.collaborate-form-section {
  background: #eed0b6;
  color: #1a1b24;
}

.collaborate-form-shell {
  display: grid;
  grid-template-columns: minmax(17rem, 0.72fr) minmax(0, 1.28fr);
  gap: 3rem;
  align-items: start;
}

.collaborate-apply-copy {
  display: grid;
  gap: 1rem;
}

.collaborate-apply-copy h2 {
  border-radius: 20px;
  padding: 0.75rem 1.15rem;
  background: var(--gold);
  color: #fff;
  font-family: "Bree Serif", Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 4vw, 3.35rem);
  line-height: 1.05;
}

.collaborate-apply-copy p:not(.eyebrow) {
  color: rgba(24, 24, 33, 0.78);
  font-size: 1.02rem;
  line-height: 1.78;
}

.collaborate-application-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  border-radius: 20px;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #1a1b24;
  color: #fff;
  box-shadow: var(--shadow);
}

.collaborate-application-form label {
  display: grid;
  gap: 0.4rem;
}

.collaborate-application-form label > span {
  color: rgba(255, 248, 238, 0.92);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.collaborate-application-form input,
.collaborate-application-form select,
.collaborate-application-form textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 248, 238, 0.18);
  border-radius: 8px;
  padding: 0.9rem;
  background: #fff;
  color: #1a1b24;
  font: inherit;
}

.collaborate-application-form textarea {
  min-height: 9.5rem;
  resize: vertical;
}

.collaborate-form-wide,
.collaborate-application-form button {
  grid-column: 1 / -1;
}

.collaborate-file-upload {
  border: 1px dashed rgba(210, 135, 68, 0.85);
  border-radius: 14px;
  padding: 1rem;
  background: rgba(255, 248, 238, 0.08);
}

.collaborate-file-upload input[type="file"] {
  border: 0;
  border-radius: 8px;
  padding: 0.8rem;
}

.collaborate-file-upload small {
  color: rgba(255, 248, 238, 0.72);
  font-size: 0.88rem;
}

.collaborate-application-form button {
  min-height: 54px;
  justify-self: start;
  border: 0;
  border-radius: 999px;
  padding: 0 1.75rem;
  background: var(--gold);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.collaborate-application-form button:hover,
.collaborate-application-form button:focus-visible {
  background: #a24103;
  outline: 0;
}

.schedule-page {
  background: #fff;
  color: #666;
}

.schedule-page main {
  padding-top: 84px;
  background: #f6f0e4;
}

.schedule-page .site-header {
  position: absolute;
}

.schedule-page .section-inner {
  width: min(80%, 1152px);
}

.schedule-page .page-title-section {
  min-height: 513px;
  padding: 5.35rem 0 4.65rem;
  background: #201712;
  color: #fff;
}

.schedule-page .page-title-section.has-bg::before {
  display: none;
}

.schedule-page .page-title-section h1 {
  font-size: 55px;
  line-height: 1;
  letter-spacing: 0;
}

.schedule-page .page-title-section p {
  max-width: 910px;
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
}

.schedule-page .page-title-actions {
  margin-top: 1.5rem;
}

.schedule-page .button {
  min-height: 42px;
  padding: 0 1.55rem;
}

.schedule-page .button-primary {
  background: #d28744;
  color: #32170d;
}

.schedule-page .schedule-mimic {
  padding-top: 5.4rem;
  padding-bottom: 6.35rem;
  background: #f6f0e4;
}

.schedule-page .schedule-shell {
  border-color: #c58f46;
  border-radius: 20px;
  padding: 20px;
  background: transparent;
}

.schedule-page .schedule-tabs {
  gap: 10px;
}

.schedule-page .schedule-tab {
  height: 136px;
  min-height: 136px;
  border-color: #c58f46;
  border-radius: 20px;
  padding: 20px 25px;
  background: transparent;
  color: #1a1b24;
  font-size: 15px;
  line-height: 1.7;
}

.schedule-page .schedule-tab.active {
  background: #1a1b24;
  color: #fff;
  box-shadow: none;
}

.schedule-page .schedule-tab span {
  font-family: "Bree Serif", Georgia, serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 4px;
}

.schedule-page .schedule-tab strong {
  margin-top: 0.6rem;
  font-size: 22px;
  line-height: 1.1;
}

.schedule-page .schedule-tab small {
  margin-top: 0.2rem;
  color: inherit;
  font-size: 13.5px;
  line-height: 1.45;
}

.schedule-page .day-layout {
  grid-template-columns: minmax(0, 1.45fr) minmax(18rem, 0.7fr);
  gap: 35px;
  margin-top: 17px;
}

.schedule-page .day-detail,
.schedule-page .stuff-info {
  border-color: #c58f46;
  border-radius: 30px;
  background: #fff;
  padding: 30px 32px;
}

.schedule-page .day-detail {
  padding-bottom: 75px;
}

.schedule-page .day-detail-kicker {
  color: #c58f46;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 3px;
  line-height: 1.9;
}

.schedule-page .day-heading-row {
  margin-top: 0;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(82, 43, 28, 0.6);
}

.schedule-page .day-detail-heading {
  color: #1a1b24;
  font-size: 29px;
  font-weight: 600;
  line-height: 1;
}

.schedule-page .sponsor-pill {
  min-height: 38px;
  border-radius: 19px;
  padding: 0.45rem 1rem;
  background: rgba(246, 240, 228, 0.92);
  color: #522b1c;
  font-size: 13px;
  font-weight: 500;
}

.schedule-page .schedule-line {
  grid-template-columns: 130px 1fr;
  gap: 29px;
  min-height: 120px;
  border-color: #c58f46;
  border-radius: 20px;
  margin-top: 20px;
  padding: 20px;
}

.schedule-page .schedule-time {
  width: 130px;
  min-height: 42px;
  justify-content: center;
  border-radius: 10px;
  padding: 10px 20px 4px;
  background: #522b1c;
  color: #fff;
  font-family: "Bree Serif", Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
}

.schedule-page .schedule-line h3 {
  color: #522b1c;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
}

.schedule-page .schedule-line details {
  margin-top: 6px;
}

.schedule-page .schedule-line summary {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #522b1c;
  border-radius: 20px;
  padding: 10px 20px;
  background: #fff;
  color: #522b1c;
  font-family: "Bree Serif", Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  list-style: none;
}

.schedule-page .schedule-line summary::-webkit-details-marker {
  display: none;
}

.schedule-page .schedule-line summary::after {
  content: "\2193";
  color: rgba(82, 43, 28, 0.25);
  font-family: Montserrat, Helvetica, Arial, sans-serif;
}

.schedule-page .schedule-line details[open] summary::after {
  content: "\2191";
}

.schedule-page .schedule-line p {
  margin-top: 0.8rem;
  color: rgba(26, 27, 36, 0.75);
  font-size: 15px;
  line-height: 1.7;
}

.schedule-page .stuff-card {
  min-height: 102px;
  border-radius: 30px;
  padding: 30px 20px;
  background: #522b1c;
}

.schedule-page .stuff-card strong {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.05;
}

.schedule-page .stuff-info {
  margin-top: 17px;
  padding: 30px 20px 10px;
  color: #1a1b24;
  font-size: 15px;
  line-height: 1.9;
}

.schedule-page .schedule-ticket-link {
  width: 70%;
  min-height: 50px;
  border-color: #c58f46;
  border-radius: 30px;
  margin-top: 20px;
  background: transparent;
  color: #c58f46;
  font-size: 16px;
  letter-spacing: 3px;
}

.schedule-page .live-image-break {
  min-height: 383px;
  background:
    linear-gradient(180deg, rgba(26, 27, 36, 0.44), rgba(26, 27, 36, 0.54)),
    var(--break-image) center / cover fixed;
}

.schedule-page .live-carousel-section {
  padding-top: 57.6px;
  padding-bottom: 115.2px;
  background: rgba(210, 135, 68, 0.39);
  color: #333;
}

.schedule-page #drivers,
.schedule-page #outriders {
  padding-bottom: 127.8px;
}

.schedule-page #entertainment {
  padding-bottom: 124.4px;
}

.schedule-page .centered-heading {
  min-height: 80px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  place-items: center;
  border-radius: 14px;
  margin-bottom: 58px;
  background: #d28744;
  text-align: center;
}

.schedule-page .centered-heading h2 {
  width: auto;
  justify-self: center;
  color: #fff;
  font-size: 55px;
  line-height: 1;
  text-align: center;
}

.schedule-page .live-slider {
  overflow: hidden;
}

.schedule-page .live-slider .slider-arrow {
  display: none;
}

.schedule-page .live-slider .slider-track {
  grid-auto-columns: 139px;
  gap: 30px;
  padding: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.schedule-page .live-slider .slider-track::-webkit-scrollbar {
  display: none;
}

.schedule-page .live-slider .slider-track > a {
  overflow: visible;
  border-radius: 0;
  background: transparent;
  color: #522b1c;
  text-align: center;
}

.schedule-page .live-slider .slider-track > a > img {
  width: 100%;
  height: 139px;
  aspect-ratio: auto;
  border-radius: 0;
  padding: 0;
  background: transparent;
  object-fit: contain;
}

.schedule-page .feature-slider .slider-track {
  grid-auto-columns: 215px;
}

.schedule-page .feature-slider .slider-track > a > img {
  height: 237px;
  object-fit: cover;
}

.schedule-page .feature-slider .slider-track > a strong {
  padding: 18px 0 0;
  color: #522b1c;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.15;
  text-align: center;
}

.schedule-page #entertainment .feature-slider .slider-track {
  grid-auto-columns: 266px;
}

.schedule-page #entertainment .feature-slider .slider-track > a > img {
  height: 266px;
}

.visit-cards-section {
  padding-top: 2rem;
}

.page-hero {
  min-height: 52svh;
}

.page-hero h1 {
  font-size: clamp(3rem, 5vw, 4.8rem);
}

.site-footer {
  background: #1a1b24;
}

@media (min-width: 981px) and (max-width: 1080px) {
  .site-header {
    min-height: 76px;
  }

  .header-ticket {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: 76px 0 auto;
    display: grid;
    gap: 0;
    margin-right: 0;
    max-height: calc(100svh - 76px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 0.75rem;
    border-bottom: 1px solid rgba(82, 43, 28, 0.16);
    background: #fff;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(calc(-100% - 86px));
    transition: transform 180ms ease;
  }

  body.nav-open .site-nav {
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    min-height: 48px;
    justify-content: flex-start;
    border-radius: 0;
    padding: 0 0.85rem;
    color: #522b1c;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-nav a.active {
    background: transparent;
    color: var(--gold);
  }

  .site-nav .nav-menu {
    display: grid;
    width: 100%;
    align-items: stretch;
  }

  .site-nav .nav-menu::after {
    display: none;
  }

  .site-nav .nav-menu > .nav-caret {
    justify-content: flex-start;
    min-height: 48px;
    color: #522b1c;
  }

  .site-nav .nav-dropdown {
    position: static;
    min-width: 0;
    padding: 0 0 0.5rem 1rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: none;
  }

  .site-nav .nav-dropdown a {
    min-height: 38px;
    justify-content: flex-start;
    padding: 0 0.85rem;
    color: rgba(82, 43, 28, 0.84);
    font-size: 0.84rem;
  }

  .site-nav .nav-ticket {
    display: flex;
    justify-content: center;
    margin-left: 0;
    border-radius: 999px;
    background: var(--gold);
    color: #fff;
  }
}

@media (max-width: 980px) {
  .site-header {
    min-height: 76px;
  }

  .header-ticket {
    display: none;
  }

  .site-nav {
    inset: 76px 0 auto;
    gap: 0;
    margin-right: 0;
    max-height: calc(100svh - 76px);
    overflow-y: auto;
    background: #fff;
  }

  .site-nav a {
    min-height: 48px;
    color: #522b1c;
  }

  .site-nav .nav-menu {
    display: grid;
    width: 100%;
    align-items: stretch;
  }

  .site-nav .nav-menu::after {
    display: none;
  }

  .site-nav .nav-menu > .nav-caret {
    justify-content: flex-start;
    min-height: 48px;
    color: #522b1c;
  }

  .site-nav .nav-dropdown {
    position: static;
    min-width: 0;
    padding: 0 0 0.5rem 1rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: none;
  }

  .site-nav .nav-dropdown a {
    min-height: 38px;
    justify-content: flex-start;
    padding: 0 0.85rem;
    color: rgba(82, 43, 28, 0.84);
    font-size: 0.84rem;
  }

  .site-nav .nav-ticket {
    display: flex;
    color: #fff;
    background: var(--gold);
    padding: 0 1rem;
    border-radius: 999px;
  }

  .current-home-hero .hero-inner,
  .home-split,
  .home-plan-layout,
  .day-layout,
  .information-history-grid,
  .information-park-grid,
  .information-contact-grid,
  .plan-intro-grid,
  .plan-split-grid,
  .collaborate-form-shell {
    grid-template-columns: 1fr;
  }

  .collaborate-application-form {
    grid-template-columns: 1fr;
  }

  .current-home-hero .hero-inner {
    width: min(90%, 1080px);
  }

  .current-hero-panel {
    order: 2;
  }

  .hero-logo-wrap {
    display: none;
  }

  .live-home-events .event-poster-track {
    grid-auto-columns: calc(33.333% - 1.25rem);
  }

  .home-plan-layout img {
    height: auto;
  }

  .home-plan-layout > div:last-child {
    padding: 3rem clamp(1.5rem, 7vw, 3.5rem) 3.4rem;
  }

  .sponsor-track {
    --visible-count: 3;
  }

  .sponsor-section .sponsor-track {
    --visible-count: 3;
  }

  .instagram-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .schedule-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .schedule-mimic {
    padding-top: 3rem;
  }

  .information-park-photo {
    min-height: 24rem;
  }

  .information-park-copy {
    padding: 3rem 2rem;
  }

  .information-contact-form {
    grid-template-columns: 1fr;
  }

  .information-faq-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-radius: 24px;
  }

  .plan-card-grid,
  .plan-card-grid-three,
  .plan-other-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .live-image-break {
    background-attachment: scroll;
  }

  .facebook-post-grid {
    grid-auto-flow: column;
    grid-auto-columns: 220px;
    grid-template-columns: none;
    justify-content: start;
    scroll-snap-type: x proximity;
  }
}

@media (max-width: 620px) {
  .brand img {
    width: 52px;
    height: 52px;
  }

  .page-title-section h1,
  .page-hero h1,
  .information-hero h1,
  .plan-hero h1 {
    font-size: 2.45rem;
    line-height: 1.05;
  }

  .page-title-section p {
    max-width: 100%;
    font-size: 1.05rem;
    line-height: 1.55;
    overflow-wrap: break-word;
  }

  .intro-grid h2,
  .section-heading h2,
  .visit-copy h2,
  .photo-band-copy h2,
  .ticket-grid h2,
  .faq-layout h2,
  .contact-layout h2 {
    font-size: 2rem;
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  .current-home-hero .hero-inner {
    padding-top: 6rem;
  }

  .home-countdown {
    padding: 1.2rem;
  }

  .hero-countdown-title {
    font-size: 2.7rem;
  }

  .home-ticket-block {
    width: 100%;
  }

  .live-home-events {
    padding-top: 0;
    padding-bottom: 3.4rem;
  }

  .live-home-events h2 {
    white-space: normal;
  }

  .live-home-events .event-poster-track {
    grid-auto-columns: minmax(72%, 1fr);
    gap: 1rem;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .instagram-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .instagram-feed-header {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .instagram-feed-header img {
    margin: 0 auto;
  }

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

  .information-hero {
    min-height: 20rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .information-history {
    padding: 3rem 0;
  }

  .information-title-band {
    border-radius: 14px;
    padding: 0.75rem 1rem;
  }

  .information-history-grid {
    gap: 1.6rem;
    margin-top: 2rem;
  }

  .information-logo-panel img {
    width: min(15rem, 68%);
  }

  .information-park-photo {
    min-height: 18rem;
  }

  .information-park-copy {
    padding: 2.2rem 1rem;
  }

  .information-map-section,
  .information-faq-section,
  .information-contact-section {
    padding-top: 3rem;
    padding-bottom: 3.5rem;
  }

  .information-faq-header {
    gap: 0.7rem;
    text-align: left;
  }

  .information-faq-header,
  .information-faq-header > p:not(.eyebrow) {
    justify-items: start;
  }

  .information-faq-stats {
    justify-content: flex-start;
  }

  .information-faq-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .information-faq-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 20px;
    padding: 0.5rem;
  }

  .information-faq-tabs button {
    min-height: 44px;
    padding: 0 0.65rem;
    font-size: 0.92rem;
  }

  .faq-group {
    border-radius: 18px;
    padding: 0.7rem;
  }

  .faq-group h3 {
    border-radius: 14px;
    padding: 0.7rem 0.85rem;
  }

  .faq-group summary {
    min-height: 50px;
    padding: 0.75rem 0.85rem;
  }

  .faq-group details > p,
  .faq-group details > ul {
    padding-right: 0.85rem;
    padding-left: 0.85rem;
  }

  .information-form-bottom {
    justify-content: flex-start;
  }

  .information-captcha {
    width: 100%;
  }

  .collaborate-form-shell {
    gap: 1.8rem;
  }

  .collaborate-fundraising-ad,
  .collaborate-live-copy .wide-logo-art,
  .collaborate-apply-copy,
  .collaborate-application-form {
    width: min(100%, calc(100vw - 1rem));
    max-width: 100%;
  }

  .collaborate-application-form {
    border-radius: 16px;
    padding: 1rem;
  }

  .collaborate-application-form button {
    width: 100%;
    justify-self: stretch;
  }

  .plan-hero {
    min-height: 20rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .plan-title-band,
  .plan-intro-section,
  .plan-dark-split,
  .plan-parking-section,
  .plan-other-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .plan-title-band {
    padding-bottom: 0.7rem;
  }

  .plan-title-band h2,
  .plan-dark-split h2,
  .plan-parking-section h2,
  .plan-other-section h2 {
    border-radius: 14px;
    padding: 0.75rem 1rem;
  }

  .plan-intro-grid,
  .plan-split-grid {
    gap: 1.6rem;
  }

  .discover-app-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .plan-card-grid,
  .plan-card-grid-three,
  .plan-other-grid {
    grid-template-columns: 1fr;
  }

  .plan-link-card {
    min-height: 8.5rem;
  }

  .schedule-tabs,
  .schedule-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .schedule-mimic {
    padding-top: 2rem;
    padding-bottom: 2.8rem;
  }

  .schedule-shell {
    padding: 0.75rem;
    border-radius: 16px;
  }

  .schedule-tabs {
    gap: 0.5rem;
  }

  .schedule-tab {
    min-height: auto;
    border-radius: 12px;
    padding: 0.8rem 0.85rem;
  }

  .schedule-tab strong {
    margin-top: 0.2rem;
    font-size: 1.08rem;
  }

  .schedule-tab small {
    font-size: 0.82rem;
    line-height: 1.25;
  }

  .day-layout {
    margin-top: 0.75rem;
  }

  .day-detail,
  .stuff-info {
    padding: 1.2rem;
    border-radius: 16px;
  }

  .schedule-line {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 0.85rem;
    padding: 0.95rem;
    border-radius: 12px;
  }

  .stuff-card {
    padding: 1.25rem;
    border-radius: 16px;
  }

  .home-plan-layout h2,
  .sponsor-section h2,
  .facebook-section h2 {
    font-size: 2rem;
  }

  .slider-track,
  .sponsor-track {
    grid-auto-columns: minmax(72%, 1fr);
    padding-left: 2.4rem;
    padding-right: 2.4rem;
  }

  .sponsor-track {
    grid-auto-columns: 11rem;
  }

  .sponsor-section .sponsor-track {
    grid-auto-columns: 11rem;
    padding-right: 2.4rem;
    padding-left: 2.4rem;
  }

  .sponsor-track > a {
    width: 11rem;
    height: 11rem;
  }

  .sponsor-section .sponsor-track > a {
    width: 11rem;
    height: 11rem;
  }

  .sponsor-tier h3 {
    width: calc(100% - 4.8rem);
    border-radius: 14px;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .collaborate-live-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .collaborate-fundraising-ad {
    max-width: 32rem;
    margin: 0 auto;
  }

  .page-title-section {
    padding: 7rem 0 3.5rem;
  }
}

@media (max-width: 980px) {
  .schedule-page main {
    padding-top: 76px;
  }

  .schedule-page .section-inner {
    width: min(calc(100% - 2rem), 1152px);
  }

  .schedule-page .page-title-section {
    min-height: 0;
    padding: 5.5rem 0 4rem;
  }

  .schedule-page .page-title-section h1 {
    font-size: clamp(3.1rem, 14vw, 55px);
  }

  .schedule-page .page-title-section p {
    font-size: 17px;
    line-height: 1.55;
  }

  .schedule-page .schedule-mimic {
    padding-top: 3.5rem;
    padding-bottom: 4rem;
  }

  .schedule-page .schedule-shell {
    padding: 16px;
  }

  .schedule-page .schedule-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .schedule-page .schedule-tab {
    height: auto;
    min-height: 132px;
    padding: 18px;
  }

  .schedule-page .day-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .schedule-page .day-detail,
  .schedule-page .stuff-info {
    padding: 1.5rem;
    border-radius: 24px;
  }

  .schedule-page .day-detail {
    padding-bottom: 1.5rem;
  }

  .schedule-page .day-heading-row {
    align-items: flex-start;
  }

  .schedule-page .sponsor-pill {
    margin-top: 0.2rem;
  }

  .schedule-page .schedule-line {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    min-height: 0;
    padding: 1rem;
  }

  .schedule-page .schedule-time {
    width: max-content;
    max-width: 100%;
  }

  .schedule-page .stuff-card {
    min-height: 0;
    border-radius: 24px;
  }

  .schedule-page .schedule-ticket-link {
    width: 100%;
  }

  .schedule-page .live-image-break {
    min-height: 18rem;
    background-attachment: scroll;
  }

  .schedule-page .live-carousel-section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .schedule-page .centered-heading {
    min-height: 70px;
    margin-bottom: 2.4rem;
  }

  .schedule-page .centered-heading h2 {
    font-size: clamp(2.4rem, 12vw, 3.4rem);
  }

  .schedule-page .live-slider .slider-track {
    grid-auto-columns: 8.8rem;
    gap: 1.4rem;
  }

  .schedule-page .feature-slider .slider-track {
    grid-auto-columns: 13.5rem;
  }

  .schedule-page #entertainment .feature-slider .slider-track {
    grid-auto-columns: 13.5rem;
  }
}

/* Keep all non-home page heroes consistent. */
.information-page main,
.collaborate-page main {
  padding-top: 84px;
}

.page-title-section,
.information-hero,
.plan-hero,
.schedule-page .page-title-section {
  height: 390px;
  min-height: 390px;
  padding-top: 5.35rem;
  padding-bottom: 5.35rem;
}

.information-hero h1,
.plan-hero h1,
.page-title-section h1,
.schedule-page .page-title-section h1 {
  font-family: "Bree Serif", Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 6vw, 4.4rem);
  font-weight: 400;
  line-height: 1;
}

.collaborate-page .page-title-section {
  display: grid;
  align-items: center;
  text-align: center;
}

.collaborate-page .page-title-section .section-inner {
  display: grid;
  justify-items: center;
}

.collaborate-page .page-title-section.has-bg::before {
  background-image:
    linear-gradient(90deg, rgba(16, 14, 13, 0.62), rgba(16, 14, 13, 0.42)),
    var(--page-hero-image);
  opacity: 1;
}

.schedule-page .page-title-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.schedule-page .page-title-section p {
  display: -webkit-box;
  max-width: 900px;
  overflow: hidden;
  font-size: 16px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.schedule-page .page-title-actions {
  margin-top: 1rem;
}

.schedule-page .page-title-section.has-bg::before {
  display: block;
  background-image:
    linear-gradient(90deg, rgba(16, 14, 13, 0.62), rgba(16, 14, 13, 0.42)),
    var(--page-hero-image);
  background-position: center;
  opacity: 1;
}

.schedule-page .page-title-section {
  height: 390px;
  min-height: 390px;
  max-height: 390px;
  display: grid;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
}

@media (max-width: 980px) {
  .information-page main,
  .collaborate-page main {
    padding-top: 76px;
  }

  .page-title-section,
  .information-hero,
  .plan-hero,
  .schedule-page .page-title-section {
    height: 20rem;
    min-height: 20rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .schedule-page .page-title-section {
    height: 20rem;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}

@media (max-width: 620px) {
  .page-title-section,
  .information-hero,
  .plan-hero,
  .schedule-page .page-title-section {
    height: 18rem;
    min-height: 18rem;
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .schedule-page .page-title-section p,
  .schedule-page .page-title-actions {
    display: none;
  }
}

/* Mobile media and carousel tuning. */
@media (max-width: 980px) {
  .hero-image,
  .hero-video {
    object-position: center center;
  }

  .current-home-hero {
    min-height: 100svh;
  }

  .current-home-hero .hero-inner {
    min-height: 100svh;
    align-items: center;
    padding-top: 6rem;
    padding-bottom: 2.5rem;
  }

  .current-hero-panel {
    align-self: center;
    gap: 1.4rem;
    padding-top: 0;
  }

  .home-split-logo {
    min-height: clamp(22rem, 72vw, 31rem);
    padding: clamp(1rem, 4vw, 2rem) 0.75rem;
  }

  .home-split-logo img {
    width: min(46rem, 96vw);
    max-width: 96vw;
  }

  .home-split-photo img {
    min-height: clamp(18rem, 62vw, 28rem);
    aspect-ratio: 16 / 10;
    object-position: center center;
  }

  .home-plan-layout img,
  .plan-image-card img,
  .plan-split-images img,
  .information-park-photo img {
    height: auto;
    aspect-ratio: 16 / 11;
    object-fit: cover;
    object-position: center center;
  }

  .information-park-photo {
    min-height: 0;
  }

  .collaborate-fundraising-ad {
    height: auto;
    object-fit: contain;
  }

  .schedule-page .live-image-break {
    min-height: clamp(16rem, 42vw, 24rem);
    background-attachment: scroll;
    background-position: center center;
  }
}

@media (max-width: 620px) {
  .current-home-hero .hero-inner {
    width: min(92%, 38rem);
    padding-top: 5.25rem;
    padding-bottom: 1.5rem;
  }

  .current-hero-panel {
    gap: 1.15rem;
  }

  .home-countdown {
    width: min(100%, 24rem);
    border-radius: 16px;
    padding: 1.1rem 0.8rem 1rem;
  }

  .hero-countdown-title {
    font-size: clamp(2.25rem, 11vw, 3.1rem);
  }

  .home-countdown .countdown-grid {
    gap: 0.92rem;
    margin-top: 0.9rem;
  }

  .home-countdown .countdown-grid strong {
    font-size: clamp(1.34rem, 7vw, 1.9rem);
  }

  .home-countdown .countdown-grid span:not(:last-child)::after {
    top: -0.05rem;
    right: -0.56rem;
    font-size: clamp(1.3rem, 6vw, 1.8rem);
  }

  .home-countdown .countdown-grid small {
    font-size: 0.62rem;
  }

  .home-ticket-block {
    min-height: 54px;
    font-size: clamp(1.05rem, 5vw, 1.35rem);
  }

  .home-hero-copy {
    max-width: 30rem;
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .home-hero-rule {
    width: 86%;
  }

  .home-split-logo {
    min-height: clamp(20rem, 88vw, 28rem);
    padding: 5rem 0.25rem 1rem;
  }

  .home-split-logo img {
    width: min(42rem, 98vw);
    max-width: 98vw;
  }

  .home-split-photo img,
  .plan-image-card img,
  .plan-split-images img,
  .information-park-photo img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .live-home-events {
    padding-top: 3rem;
  }

  .live-home-events .event-poster-track {
    grid-auto-columns: calc((100% - 0.9rem) / 2);
    gap: 0.9rem;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .slider-track {
    gap: 0.9rem;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .schedule-page .live-slider {
    width: min(100%, calc(100vw - 1.25rem));
  }

  .schedule-page .profile-slider .slider-track,
  .schedule-page #entertainment .feature-slider .slider-track {
    grid-auto-columns: calc((100% - 0.9rem) / 2);
    gap: 0.9rem;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .schedule-page .profile-slider .slider-track > a > img,
  .schedule-page #entertainment .feature-slider .slider-track > a > img {
    height: auto;
    aspect-ratio: 1;
  }

  .schedule-page .profile-slider .slider-track > a > img {
    object-fit: contain;
    padding: 0.35rem;
  }

  .schedule-page .profile-slider .slider-track > a strong {
    min-height: 2.7rem;
    padding: 0.65rem 0.2rem 0;
    font-size: clamp(0.84rem, 3.7vw, 1rem);
    line-height: 1.15;
  }
}

@media (max-width: 430px) {
  .home-countdown .countdown-grid {
    gap: 0.72rem;
  }

  .home-countdown .countdown-grid span:not(:last-child)::after {
    right: -0.45rem;
  }

  .home-countdown .countdown-grid small {
    font-size: 0.56rem;
  }
}
