:root {
  --festival-gold: #caa45d;
  --festival-red: #8e1f2f;
  --festival-ink: #111111;
  --festival-paper: #f7f2e8;
}

body {
  background: var(--festival-ink);
  color: var(--festival-paper);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.site-header {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.top-bar {
  background: #050505;
  border-bottom: 1px solid rgba(202, 164, 93, 0.24);
  color: rgba(247, 242, 232, 0.86);
  font-size: 0.84rem;
}

.top-bar a {
  color: rgba(247, 242, 232, 0.86);
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease;
}

.top-bar a:hover,
.top-bar a:focus {
  color: var(--festival-gold);
}

.social-list a {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
}

.contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 2.25rem;
  max-width: 100%;
}

.top-bar svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
  flex: 0 0 auto;
}

.site-nav {
  min-height: 76px;
  background: rgba(247, 242, 232, 0.96);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(16px);
}

.navbar-brand {
  color: var(--festival-ink);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.navbar-brand img {
  width: min(190px, 52vw);
  height: auto;
}

.navbar-brand:hover,
.navbar-brand:focus,
.nav-link {
  color: var(--festival-ink);
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
  color: var(--festival-red) !important;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.16rem rgba(142, 31, 47, 0.22);
}

.hero {
  position: relative;
  background: #111111;
}

.hero-media {
  height: auto;
}

@supports (aspect-ratio: 1) {
  .hero-media {
    aspect-ratio: 1920 / 720;
    object-fit: contain;
    object-position: center;
  }
}

.eyebrow {
  margin-bottom: 0.75rem;
  color: var(--festival-gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2 {
  max-width: 780px;
  font-weight: 800;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.75rem, 6vw, 5.4rem);
  line-height: 1;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

.lead,
.section-copy {
  max-width: 620px;
  color: rgba(247, 242, 232, 0.78);
}

.section-pad {
  padding-block: 5rem;
  background: linear-gradient(180deg, #111111 0%, #241116 100%);
}

.festival-card {
  overflow: hidden;
  background: #f8f4eb;
  color: #17130f;
}

.festival-card .card-title {
  color: var(--festival-red);
  font-weight: 800;
}

.festival-card .card-text {
  color: rgba(23, 19, 15, 0.76);
}

.festival-link {
  color: var(--festival-red);
  font-weight: 700;
  text-decoration-color: rgba(142, 31, 47, 0.35);
  text-underline-offset: 0.18em;
}

.festival-link:hover,
.festival-link:focus {
  color: #641421;
}

.site-footer {
  padding-block: 1.45rem;
  background: #050505;
  border-top: 1px solid rgba(202, 164, 93, 0.28);
  color: rgba(247, 242, 232, 0.78);
  font-size: 0.9rem;
}

.footer-copyright {
  display: block;
}

.footer-menu a {
  color: rgba(247, 242, 232, 0.78);
  text-decoration: none;
  transition: color 160ms ease;
}

.footer-menu a:hover,
.footer-menu a:focus {
  color: var(--festival-gold);
}

@media (max-width: 767.98px) {
  .contact-list {
    font-size: 0.76rem;
  }

  .contact-list li {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .contact-list a {
    width: 100%;
  }

  .contact-list a span {
    display: block;
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .social-list a,
  .contact-list a {
    min-height: 1.9rem;
  }

  .site-nav {
    min-height: 66px;
  }

}
