@font-face {
  font-family: "Quicksand";
  src: url("../fonts/quicksand/quicksand-300.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Quicksand";
  src: url("../fonts/quicksand/quicksand-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Quicksand";
  src: url("../fonts/quicksand/quicksand-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Quicksand";
  src: url("../fonts/quicksand/quicksand-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Quicksand";
  src: url("../fonts/quicksand/quicksand-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
body {
  margin: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: #1a1f1b;
  background: #e8e6dc;
  -webkit-font-smoothing: antialiased;
}

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

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.6em;
  font-weight: 600;
  line-height: 1.2;
  color: #968a55;
}

p {
  margin: 0 0 1em;
}

.screen-reader-text {
  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 {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  background: #968a55;
  color: #394a3c;
  padding: 0.75rem 1rem;
  font-weight: 600;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(100% - 2rem, 1120px);
  margin-inline: auto;
}

.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: #e8e6dc;
}

.section--alt {
  background: #ffffff;
}

.section__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.35em;
  color: #968a55;
}

.section__lead {
  color: #4a5248;
  max-width: 36rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.7rem 1.4rem;
  border: none;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.btn:focus-visible {
  outline: 2px solid #968a55;
  outline-offset: 3px;
}

.btn--primary {
  background: #968a55;
  color: #1a1f1b;
}
.btn--primary:hover {
  background: rgb(166.6, 154.12, 99);
  color: #1a1f1b;
}

.btn--ghost {
  background: transparent;
  color: #1a1f1b;
  border: 1px solid rgba(197, 192, 170, 0.75);
}
.btn--ghost:hover {
  background: rgba(150, 138, 85, 0.1);
  border-color: #968a55;
  color: #968a55;
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
}
.fade-up.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
  }
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 64px;
  background: rgba(57, 74, 60, 0.97);
  color: #ffffff;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(197, 192, 170, 0.3);
}
@media (min-width: 992px) {
  .site-header {
    height: 96px;
  }
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  height: 64px;
}
@media (min-width: 992px) {
  .site-header__inner {
    gap: 1rem;
    height: 96px;
  }
}

.site-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  color: #ffffff;
}
.site-header__logo img {
  display: block;
  height: 50px;
  width: auto;
  max-width: min(200px, 54vw);
  object-fit: contain;
  object-position: left center;
}
@media (min-width: 992px) {
  .site-header__logo img {
    height: 72px;
    max-width: 280px;
  }
}

.site-header__nav {
  display: none;
  align-items: center;
  gap: 0;
}
@media (min-width: 992px) {
  .site-header__nav {
    display: flex;
    flex: 1;
    justify-content: center;
  }
}

.site-header__link {
  padding: 0.5rem clamp(0.55rem, 1vw, 0.85rem);
  font-size: clamp(1rem, 0.35vw + 0.95rem, 1.1875rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.2;
  text-transform: uppercase;
  color: #ffffff;
  border-radius: 0;
  background: transparent;
  transition: color 0.2s ease;
}
.site-header__link:not(:last-child)::after {
  content: "|";
  margin-left: clamp(0.55rem, 1vw, 0.85rem);
  color: #3d6142;
  font-weight: 400;
  opacity: 0.95;
  pointer-events: none;
}
.site-header__link:hover {
  color: #968a55;
  background: transparent;
}
.site-header__link:hover::after, .site-header__link:focus-visible::after {
  color: #3d6142;
}
.site-header__link.is-active {
  color: #968a55;
  background: transparent;
}
.site-header__link:focus-visible {
  outline: 2px solid #968a55;
  outline-offset: 3px;
}

.site-header__cta {
  display: none;
}
@media (min-width: 992px) {
  .site-header__cta {
    display: inline-flex;
  }
}

.site-header__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  border: 1px solid rgba(197, 192, 170, 0.5);
  color: #ffffff;
  border-radius: 8px;
  padding: 0.45rem 0.75rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  min-height: 44px;
}
@media (min-width: 992px) {
  .site-header__toggle {
    display: none;
  }
}
.site-header__toggle:hover {
  border-color: #968a55;
  color: #968a55;
}
.site-header__toggle:focus-visible {
  outline: 2px solid #968a55;
  outline-offset: 2px;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(57, 74, 60, 0.98);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.5rem 2rem;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.3s ease, visibility 0.3s ease;
}
.nav-overlay.is-open {
  transform: translateX(0);
  visibility: visible;
}
@media (min-width: 992px) {
  .nav-overlay {
    display: none;
  }
}

.nav-overlay__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 64px;
  margin-bottom: 2rem;
}
.nav-overlay__top .site-header__logo img {
  height: 50px;
  max-width: min(200px, 54vw);
}

.nav-overlay__close {
  background: transparent;
  border: 1px solid rgba(197, 192, 170, 0.5);
  color: #ffffff;
  border-radius: 8px;
  padding: 0.45rem 0.75rem;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.nav-overlay__close:hover {
  border-color: #968a55;
  color: #968a55;
}

.nav-overlay__list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.nav-overlay__link {
  display: block;
  padding: 0.85rem 0.5rem;
  font-size: clamp(1.125rem, 4.5vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(197, 192, 170, 0.25);
  color: #ffffff;
  transition: color 0.2s ease;
}
.nav-overlay__link:hover {
  color: #968a55;
}
.nav-overlay__link.is-active {
  color: #968a55;
}

.nav-overlay__cta {
  margin-top: 1.5rem;
  width: 100%;
}

.nav-overlay__social {
  margin-top: 1.5rem;
}

.nav-overlay__social-links,
.site-footer__bar-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
}
.nav-overlay__social-links a,
.site-footer__bar-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.nav-overlay__social-links a:hover,
.site-footer__bar-social a:hover {
  opacity: 0.72;
}

.nav-overlay__social-links {
  color: rgba(255, 255, 255, 0.7);
}
.nav-overlay__social-links a {
  color: rgba(255, 255, 255, 0.7);
}
.nav-overlay__social-links a:hover {
  color: #968a55;
  opacity: 1;
}

.nav-overlay__social-links__label {
  color: rgba(255, 255, 255, 0.7);
}

body.nav-open {
  overflow: hidden;
}

.site-footer {
  background: #ffffff;
  color: #1a1f1b;
  border-top: 1px solid rgba(197, 192, 170, 0.45);
}

.site-footer--has-main .site-footer__main {
  background: #394a3c;
  color: #ffffff;
  padding: 3rem 0 2rem;
  border-bottom: 1px solid rgba(197, 192, 170, 0.3);
}

.site-footer__grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.site-footer__brand {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.site-footer__text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  max-width: 28rem;
}

.site-footer__cta {
  margin-top: 1rem;
}

.site-footer__heading {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #968a55;
  margin-bottom: 0.85rem;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
}
.site-footer__links a:hover {
  color: #968a55;
}

.site-footer__bar {
  padding: clamp(1.35rem, 3vw, 2rem) 0;
}

.site-footer__bar-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .site-footer__bar-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
}

.site-footer__bar-logo {
  display: flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
}
.site-footer__bar-logo img {
  display: block;
  height: clamp(44px, 8vw, 56px);
  width: auto;
  max-width: min(220px, 70vw);
  object-fit: contain;
  object-position: left center;
}

.site-footer__bar-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}
@media (min-width: 768px) {
  .site-footer__bar-meta {
    align-items: flex-end;
  }
}

.site-footer__bar-social {
  gap: 0.65rem 0.85rem;
}
.site-footer__bar-social a {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  color: #1a1f1b;
}
.site-footer__bar-social a:hover {
  color: #968a55;
  opacity: 1;
}
.site-footer__bar-social a svg {
  display: block;
}

.site-footer__bar-copy {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #4a5248;
  text-align: center;
}
@media (min-width: 768px) {
  .site-footer__bar-copy {
    text-align: right;
  }
}

.page-hero {
  padding: calc(96px + 2.5rem) 0 2.5rem;
  background: linear-gradient(160deg, #394a3c 0%, #3d6142 100%);
  color: #ffffff;
  border-bottom: 1px solid rgba(197, 192, 170, 0.25);
}
.page-hero h1 {
  color: #968a55;
  font-size: clamp(2rem, 4vw, 3rem);
}
.page-hero p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 36rem;
}

.prose-narrow {
  max-width: 720px;
}

.prose-narrow p {
  color: #1a1f1b;
}

.site-footer__main .contact-form label {
  color: #ffffff;
}

.site-footer__main .contact-form input,
.site-footer__main .contact-form textarea {
  background: #ffffff;
  color: #1a1f1b;
  border-color: rgba(197, 192, 170, 0.65);
}
.site-footer__main .contact-form input::placeholder,
.site-footer__main .contact-form textarea::placeholder {
  color: rgba(26, 31, 27, 0.45);
}

.site-footer__main .contact-form__status {
  color: rgba(255, 255, 255, 0.8);
}
.site-footer__main .contact-form__status.is-success {
  color: rgb(183.2021276596, 173.0659574468, 128.2978723404);
}

.section--decorated {
  position: relative;
  overflow: hidden;
}
.section--decorated > .container,
.section--decorated > .lineup-grid__wrap,
.section--decorated > .tickets__wrap {
  position: relative;
  z-index: 1;
}

.art-motif {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  display: block;
  object-fit: contain;
  max-width: none;
  height: auto;
}
.art-motif--light {
  opacity: 0.2;
  mix-blend-mode: multiply;
}
.art-motif--accent {
  opacity: 0.42;
  mix-blend-mode: multiply;
}
.art-motif--featured {
  opacity: 1;
  mix-blend-mode: normal;
  position: relative;
  width: min(100%, 360px);
  margin-inline: auto;
}
.art-motif--dark {
  opacity: 0.55;
  mix-blend-mode: screen;
}
.art-motif--pos-top-right {
  top: max(-1rem, -2vw);
  right: max(-2%, -1vw);
  width: clamp(120px, 22vw, 280px);
}
.art-motif--pos-top-left {
  top: 0;
  left: max(-3%, -1vw);
  width: clamp(100px, 18vw, 220px);
}
.art-motif--pos-bottom-right {
  right: 0;
  bottom: max(-4%, -2vw);
  width: clamp(130px, 24vw, 300px);
}
.art-motif--pos-bottom-left {
  left: max(-3%, -1vw);
  bottom: max(-5%, -2vw);
  width: clamp(120px, 22vw, 260px);
}
.art-motif--pos-center-left {
  top: 50%;
  left: max(-4%, -2vw);
  width: clamp(140px, 26vw, 340px);
  transform: translateY(-50%);
}
.art-motif--pos-center-right {
  top: 50%;
  right: max(-4%, -2vw);
  width: clamp(140px, 26vw, 340px);
  transform: translateY(-50%);
}
.art-motif--saxophone.art-motif--pos-center-right {
  width: clamp(160px, 30vw, 380px);
}
.art-motif--landscape.art-motif--pos-bottom-left {
  width: clamp(160px, 32vw, 420px);
  opacity: 0.16;
}
.art-motif--drums.art-motif--pos-top-right {
  width: clamp(110px, 20vw, 240px);
  opacity: 0.18;
}
.art-motif--waves.art-motif--pos-top-left {
  width: clamp(90px, 16vw, 200px);
  opacity: 0.17;
}
.art-motif--flow-dark.art-motif--pos-bottom-right {
  width: clamp(160px, 34vw, 440px);
  opacity: 0.35;
}
@media (max-width: 767px) {
  .art-motif--hide-mobile {
    display: none;
  }
  .art-motif--pos-top-right, .art-motif--pos-top-left {
    width: clamp(72px, 20vw, 120px);
    opacity: 0.12;
  }
  .art-motif--pos-bottom-right, .art-motif--pos-bottom-left {
    width: clamp(80px, 22vw, 130px);
    opacity: 0.1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .art-motif {
    mix-blend-mode: normal;
  }
}

.about__media--art {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: linear-gradient(145deg, #e8e6dc 0%, rgba(232, 230, 220, 0.85) 100%);
  border: 1px solid rgba(197, 192, 170, 0.35);
}
.about__media--art .art-motif--featured {
  width: min(72%, 320px);
  filter: drop-shadow(0 8px 24px rgba(26, 31, 27, 0.06));
}

.page-hero--decorated {
  position: relative;
  overflow: hidden;
}
.page-hero--decorated .container {
  position: relative;
  z-index: 1;
}
.page-hero--decorated .art-motif--dark {
  opacity: 0.28;
}

.hero {
  position: relative;
  color: #ffffff;
  background: #394a3c;
}
.hero:not(.hero--carousel) {
  min-height: min(100vh, 860px);
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero--carousel {
  --hero-slide-width: min(98vw, 100%);
  --hero-gap: clamp(6px, 1.2vw, 16px);
  --hero-radius: clamp(10px, 2.8vw, 22px);
  padding: 0 0 clamp(0.5rem, 1.25vw, 1.25rem);
  overflow: visible;
}
@media (min-width: 768px) {
  .hero--carousel {
    --hero-slide-width: min(98.5vw, 100%);
  }
}
@media (min-width: 992px) {
  .hero--carousel {
    --hero-slide-width: min(99vw, 100%);
  }
}
.hero--carousel.hero--single-slide {
  --hero-slide-width: 100%;
  --hero-radius: 0;
  padding-bottom: clamp(0.5rem, 1.25vw, 1.25rem);
}
.hero--carousel.hero--single-slide .hero__slide {
  border-radius: 0;
}

.hero__frame {
  position: relative;
  width: 100%;
  margin-inline: auto;
}
.hero--carousel .hero__frame {
  max-width: none;
}
.hero:not(.hero--carousel) .hero__frame {
  width: min(100% - clamp(1rem, 3vw, 2.5rem), 1380px);
}

.hero__media {
  position: relative;
  z-index: 0;
  width: 100%;
  border-radius: var(--hero-radius, clamp(10px, 2.8vw, 22px));
  overflow: hidden;
  aspect-ratio: 2.3333333333;
  max-height: clamp(180px, 56vw, 720px);
}
.hero__media video,
.hero__media > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero--carousel .hero__media {
  overflow: visible;
  border-radius: 0;
  aspect-ratio: auto;
  max-height: none;
}
.hero:not(.hero--carousel) .hero__media {
  position: absolute;
  inset: 0;
  border-radius: 0;
  max-height: none;
  aspect-ratio: auto;
}
.hero:not(.hero--carousel) .hero__media video,
.hero:not(.hero--carousel) .hero__media img,
.hero:not(.hero--carousel) .hero__media .swiper,
.hero:not(.hero--carousel) .hero__media .swiper-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero:not(.hero--carousel) .hero__media .swiper {
  position: absolute;
  inset: 0;
}
.hero:not(.hero--carousel) .hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(57, 74, 60, 0.35) 0%, rgba(57, 74, 60, 0.6) 45%, rgba(57, 74, 60, 0.9) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero__slide {
  width: 100%;
  aspect-ratio: 2.3333333333;
  border-radius: var(--hero-radius, clamp(10px, 2.8vw, 22px));
  overflow: hidden;
  background: rgb(48.1236641221, 62.4763358779, 50.6564885496);
}
.hero__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-swiper {
  overflow: visible;
  width: 100%;
}
.hero-swiper .swiper-slide {
  width: var(--hero-slide-width, min(98vw, 100%));
  height: auto;
}
.hero--single-slide .hero-swiper .swiper-slide {
  width: 100%;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 0 clamp(3rem, 8vw, 5.5rem);
}

.hero__brand {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #968a55;
  margin-bottom: 0.75rem;
}

.hero__title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 700;
  color: #968a55;
  max-width: 14ch;
  margin-bottom: 0.75rem;
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  max-width: 36rem;
  margin-bottom: 1.5rem;
}

.hero__nav {
  position: absolute;
  bottom: clamp(0.5rem, 1.75vw, 1.15rem);
  right: clamp(0.5rem, 3vw, 1.75rem);
  z-index: 3;
  display: flex;
  gap: 0.35rem;
}
.hero:not(.hero--carousel) .hero__nav {
  bottom: 1.5rem;
  right: 1.5rem;
  gap: 0.5rem;
}
.hero__nav .swiper-button-prev,
.hero__nav .swiper-button-next {
  position: static;
  width: clamp(34px, 9vw, 44px);
  height: clamp(34px, 9vw, 44px);
  margin: 0;
  background: rgba(57, 74, 60, 0.75);
  border: 1px solid rgba(197, 192, 170, 0.45);
  border-radius: 50%;
  color: #ffffff;
}
.hero__nav .swiper-button-prev:hover,
.hero__nav .swiper-button-next:hover {
  border-color: #968a55;
  color: #968a55;
}
.hero__nav .swiper-button-prev::after,
.hero__nav .swiper-button-next::after {
  font-size: 0.85rem;
  font-weight: 700;
}

.tickets {
  background: #ffffff;
  border-top: 1px solid rgba(197, 192, 170, 0.45);
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}

.tickets__wrap {
  max-width: 1080px;
}

.tickets__header {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.tickets__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: clamp(1rem, 2.5vw, 1.5rem) auto 0;
  max-width: min(100%, 320px);
}
.tickets__logo img {
  display: block;
  width: auto;
  height: clamp(44px, 9vw, 72px);
  max-width: 100%;
  object-fit: contain;
  object-position: center;
}
.tickets__logo--banner {
  max-width: min(100%, 480px);
}
.tickets__logo--banner img {
  height: clamp(36px, 7.5vw, 56px);
  max-width: min(100%, 480px);
}

.tickets__eyebrow {
  margin: 0 0 0.65rem;
  font-size: clamp(0.8rem, 1.6vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1a1f1b;
}

.tickets__headline {
  margin: 0;
  font-size: clamp(2.4rem, 7vw, 4.25rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #3d6142;
}

.tickets__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2.5vw, 1.35rem);
  align-items: stretch;
}
@media (min-width: 768px) {
  .tickets__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.tickets__notes {
  margin-top: clamp(2rem, 5vw, 3rem);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(197, 192, 170, 0.55);
}

.tickets__notes-title {
  margin: 0 0 clamp(0.85rem, 2vw, 1.15rem);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1a1f1b;
}

.tickets__notes-body {
  color: #4a5248;
  font-size: clamp(0.88rem, 1.7vw, 0.98rem);
  line-height: 1.65;
}
.tickets__notes-body p {
  margin: 0 0 0.75rem;
}
.tickets__notes-body p:last-child {
  margin-bottom: 0;
}
.tickets__notes-body ul,
.tickets__notes-body ol {
  margin: 0;
  padding-left: 1.25rem;
}
.tickets__notes-body li {
  margin-bottom: 0.45rem;
}
.tickets__notes-body li:last-child {
  margin-bottom: 0;
}
.tickets__notes-body a {
  color: #3d6142;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.tickets__notes-body a:hover {
  color: #968a55;
}

.ticket-card {
  background: #1a1f1b;
  color: #ffffff;
  border-radius: 20px;
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.35rem, 3vw, 1.75rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  min-height: clamp(240px, 32vw, 280px);
  border: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.ticket-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(26, 31, 27, 0.28);
}

.ticket-card__badge {
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #968a55;
  color: #1a1f1b;
  padding: 0.35rem 0.6rem;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.ticket-card__title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ffffff;
}

.ticket-card__blurb {
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.92rem, 1.8vw, 1rem);
  line-height: 1.55;
  flex: 1;
  width: 100%;
}
.ticket-card__blurb p {
  margin: 0 0 0.65rem;
}
.ticket-card__blurb p:last-child {
  margin-bottom: 0;
}
.ticket-card__blurb ul,
.ticket-card__blurb ol {
  margin: 0;
  padding-left: 1.15rem;
}
.ticket-card__blurb li {
  margin-bottom: 0.35rem;
}
.ticket-card__blurb a {
  color: #968a55;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.ticket-card__prices {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.15rem;
}

.ticket-card__price-old {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
  font-size: 0.9rem;
}

.ticket-card__price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #968a55;
}

.btn--ticket {
  margin-top: auto;
  align-self: flex-start;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border-radius: 14px;
  background: #3d6142;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.btn--ticket:hover {
  background: rgb(72.8139240506, 115.7860759494, 78.782278481);
  color: #ffffff;
}
.btn--ticket:focus-visible {
  outline: 2px solid #968a55;
  outline-offset: 3px;
}

.about {
  background: #e8e6dc;
  border-block: 1px solid rgba(197, 192, 170, 0.45);
}

.about__inner {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
}
@media (min-width: 992px) {
  .about--has-image .about__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: clamp(2rem, 5vw, 3.5rem);
  }
}

.about__content {
  min-width: 0;
}

.about__title {
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.about__text {
  color: #1a1f1b;
}
.about__text p {
  color: #1a1f1b;
  margin-bottom: 1rem;
}
.about__text p:last-child {
  margin-bottom: 0;
}

.about__cta {
  margin-top: 1.25rem;
  margin-bottom: 0;
}

.about__media {
  border-radius: clamp(12px, 1.5vw, 20px);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: rgb(219.8655172414, 216.8103448276, 201.5344827586);
}
.about__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #968a55;
  margin-bottom: 0.75rem;
}

.about__inner > .about__content p.about__cta {
  color: inherit;
}

.highlights {
  background: #ffffff;
}

.highlights__grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .highlights__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.highlight-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 280px;
  background: #394a3c;
  color: #ffffff;
  display: flex;
  align-items: flex-end;
  border: 1px solid rgba(197, 192, 170, 0.35);
}
.highlight-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.highlight-card__body {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(57, 74, 60, 0.95));
  width: 100%;
}

.highlight-card__title {
  color: #968a55;
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}

.highlight-card__body p {
  color: rgba(255, 255, 255, 0.82);
}

.sponsors {
  background: #ffffff;
  border-top: 1px solid rgba(197, 192, 170, 0.45);
  padding-block: clamp(3rem, 6vw, 4.5rem);
}

.sponsors__wrap {
  max-width: 980px;
}

.sponsors__headline {
  margin: 0 0 clamp(2.25rem, 5vw, 3.25rem);
  text-align: center;
  font-size: clamp(2rem, 5.5vw, 3.25rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #1a1f1b;
}

.sponsors__tier-block {
  margin-bottom: clamp(2.25rem, 4.5vw, 3.25rem);
}
.sponsors__tier-block:last-child {
  margin-bottom: 0;
}

.sponsors__tier-label, .sponsors__tier {
  margin: 0 0 clamp(1rem, 2.5vw, 1.35rem);
  text-align: center;
  font-size: clamp(0.72rem, 1.5vw, 0.82rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1a1f1b;
}

.sponsors__logos, .sponsors__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(0.85rem, 2.5vw, 1.5rem);
}

.sponsor-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 1 auto;
  padding: 0.35rem;
  color: #4a5248;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.sponsor-logo:hover {
  opacity: 0.82;
  transform: translateY(-1px);
}
.sponsor-logo img {
  display: block;
  width: auto;
  height: clamp(36px, 5vw, 56px);
  max-width: min(280px, 45vw);
  object-fit: contain;
  object-position: center;
}

.sponsor-logo--banner {
  flex: 1 1 100%;
  width: 100%;
  max-width: 100%;
}
.sponsor-logo--banner img {
  height: clamp(56px, 9vw, 88px);
  width: auto;
  max-width: min(1100px, 100%);
  margin-inline: auto;
}

.sponsor-logo__fallback {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  color: #4a5248;
  border: 1px dashed rgba(197, 192, 170, 0.65);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  min-width: 88px;
}

.sponsors__tier-block--promoted .sponsors__logos, .sponsors__tier-block--promoted .sponsors__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 3vw, 2rem);
  max-width: 620px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .sponsors__tier-block--promoted .sponsors__logos, .sponsors__tier-block--promoted .sponsors__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.sponsors__tier-block--promoted .sponsor-logo img {
  height: clamp(52px, 8vw, 76px);
  max-width: min(320px, 45vw);
}
.sponsors__tier-block--promoted .sponsor-logo__fallback {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sponsors__tier-block--main .sponsors__logos, .sponsors__tier-block--main .sponsors__grid {
  gap: 0;
}
.sponsors__tier-block--main .sponsor-logo img {
  height: clamp(72px, 12vw, 120px);
  max-width: min(360px, 55vw);
}
.sponsors__tier-block--main .sponsor-logo__fallback {
  min-height: 100px;
  min-width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.sponsors__tier-block--standard .sponsors__logos, .sponsors__tier-block--standard .sponsors__grid {
  gap: clamp(1rem, 2.8vw, 1.75rem);
  max-width: 920px;
  margin-inline: auto;
}
.sponsors__tier-block--standard .sponsor-logo {
  flex: 0 1 calc(33.333% - 1rem);
}
@media (min-width: 768px) {
  .sponsors__tier-block--standard .sponsor-logo {
    flex: 0 1 auto;
  }
}
.sponsors__tier-block--standard .sponsor-logo img {
  height: clamp(36px, 5vw, 52px);
  max-width: min(220px, 38vw);
}
.sponsors__tier-block--standard .sponsor-logo--banner img {
  height: clamp(52px, 8vw, 72px);
  max-width: min(1100px, 100%);
}

.sponsors__tier-block--supported .sponsors__logos, .sponsors__tier-block--supported .sponsors__grid {
  gap: clamp(0.55rem, 1.8vw, 1rem);
  max-width: 940px;
  margin-inline: auto;
}
.sponsors__tier-block--supported .sponsor-logo {
  flex: 0 1 calc(25% - 0.75rem);
}
@media (min-width: 768px) {
  .sponsors__tier-block--supported .sponsor-logo {
    flex: 0 1 auto;
  }
}
.sponsors__tier-block--supported .sponsor-logo img {
  height: clamp(28px, 4vw, 40px);
  max-width: min(180px, 32vw);
}
.sponsors__tier-block--supported .sponsor-logo--banner img {
  height: clamp(56px, 9vw, 88px);
  max-width: min(1100px, 100%);
}
.sponsors__tier-block--supported .sponsor-logo__fallback {
  min-width: 72px;
  padding: 0.55rem 0.65rem;
  font-size: 0.62rem;
}

.media-partners {
  color: #ffffff;
}
.media-partners.section--decorated > .media-partners__strip > .media-partners__inner {
  position: relative;
  z-index: 1;
}

.media-partners__strip {
  background: #1a1f1b;
  border-top: 1px solid rgba(197, 192, 170, 0.2);
  position: relative;
}

.media-partners__inner {
  max-width: 100%;
  padding-inline: clamp(1rem, 3vw, 2rem);
}

.media-partners__row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(1rem, 2.5vw, 2rem);
  padding-block: clamp(1.35rem, 3vw, 2rem);
}
.media-partners__row--with-ticket {
  justify-content: center;
}
@media (min-width: 768px) {
  .media-partners__row {
    flex-wrap: nowrap;
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }
  .media-partners__row--with-ticket {
    justify-content: center;
  }
}

.media-partners__ticket-logo {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.media-partners__ticket-logo img {
  display: block;
  height: clamp(56px, 9vw, 88px);
  width: auto;
  max-width: min(180px, 28vw);
  object-fit: contain;
  object-position: center;
}
.media-partners__ticket-logo--banner img {
  max-width: min(220px, 34vw);
}

.media-partners__banner {
  display: flex;
  flex: 1 1 auto;
  justify-content: center;
  align-items: center;
  min-width: 0;
}
.media-partners__banner img {
  display: block;
  height: clamp(56px, 9vw, 88px);
  width: auto;
  max-width: min(1100px, 100%);
  object-fit: contain;
  object-position: center;
}

.media-partners__track {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(0.55rem, 1.8vw, 1rem);
  min-width: 0;
}
.media-partners__track--has-banner {
  gap: clamp(1rem, 2.5vw, 1.5rem);
}
@media (max-width: 767px) {
  .media-partners__track {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 0.5rem;
  }
  .media-partners__track .media-partner-logo--banner {
    flex: 0 0 auto;
    min-width: min(1100px, 92vw);
  }
}

.media-partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  line-height: 0;
  scroll-snap-align: center;
  transition: opacity 0.2s ease;
}
.media-partner-logo:hover {
  opacity: 0.82;
}
.media-partner-logo img {
  display: block;
  height: clamp(28px, 4vw, 40px);
  width: auto;
  max-width: min(180px, 32vw);
  object-fit: contain;
  object-position: center;
}

.media-partner-logo--banner {
  flex: 1 1 100%;
  width: 100%;
  max-width: 100%;
}
.media-partner-logo--banner img {
  height: clamp(56px, 9vw, 88px);
  width: auto;
  max-width: min(1100px, 100%);
  margin-inline: auto;
}

.section--lineup {
  background: #ffffff;
}

.lineup-grid__wrap {
  width: min(100% - clamp(1.25rem, 4vw, 2.5rem), 1200px);
  margin-inline: auto;
}

.lineup-grid {
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .lineup-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .lineup-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.artist-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(0.85rem, 2vw, 1.25rem);
  border-radius: clamp(12px, 1.5vw, 16px);
  background: #ffffff;
  border: 1px solid rgba(26, 31, 27, 0.12);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.artist-card:hover {
  border-color: rgba(26, 31, 27, 0.22);
  box-shadow: 0 8px 24px rgba(26, 31, 27, 0.06);
}
.artist-card:focus-visible {
  outline: 2px solid #968a55;
  outline-offset: 2px;
}

.artist-card__media {
  overflow: hidden;
  border-radius: clamp(8px, 1vw, 12px);
  background: rgba(197, 192, 170, 0.2);
}
.artist-card__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  background: rgba(197, 192, 170, 0.35);
}

.artist-card__body {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  padding: clamp(0.85rem, 2vw, 1.15rem) clamp(0.35rem, 1vw, 0.5rem) clamp(0.35rem, 1vw, 0.5rem);
  text-align: center;
}

.artist-card__name {
  margin: 0;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1a1f1b;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 720px;
}

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  min-height: 52px;
}
.faq-item__q[aria-expanded=true] .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__icon {
  transition: transform 0.2s ease;
  flex-shrink: 0;
  color: #4a5248;
}

.faq-item__a {
  display: none;
  padding: 0 1.15rem 1.15rem;
}
.faq-item__a.is-open {
  display: block;
}

.rundown-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.rundown-table th,
.rundown-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(197, 192, 170, 0.55);
  text-align: left;
}

.facilities {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
}

.facility {
  text-align: center;
  padding: 1.25rem 0.75rem;
  border: 1px solid rgba(197, 192, 170, 0.55);
  border-radius: 12px;
}
.facility .icon {
  display: inline-flex;
  margin-bottom: 0.65rem;
  color: #968a55;
}

.venue-map {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(197, 192, 170, 0.55);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.venue-map iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

.contact-form {
  display: grid;
  gap: 1rem;
  max-width: 520px;
}

.contact-form__row {
  display: grid;
  gap: 0.35rem;
}

.contact-form input,
.contact-form textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 8px;
  min-height: 44px;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #968a55;
  outline-offset: 1px;
  border-color: #968a55;
}

.contact-form__hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.single-artist {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .single-artist {
    grid-template-columns: 320px 1fr;
  }
}

.single-artist__photo {
  border-radius: 12px;
  overflow: hidden;
}
.single-artist__photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.back-link {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.list-disc {
  list-style: disc;
  padding-left: 1.25rem;
}

.empty-state {
  padding: 2rem;
  text-align: center;
  border-radius: 12px;
}

.highlight-card__tba {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #968a55;
  margin-bottom: 0.5rem;
}

.faq-item {
  border: 1px solid rgba(197, 192, 170, 0.55);
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
}

.faq-item__q {
  color: #1a1f1b;
}
.faq-item__q:hover, .faq-item__q[aria-expanded=true] {
  color: #968a55;
}

.faq-item__a {
  color: #4a5248;
}

.rundown-table {
  color: #1a1f1b;
}
.rundown-table th {
  background: rgba(197, 192, 170, 0.35);
  color: #968a55;
}
.rundown-table td {
  color: #1a1f1b;
}

.facility {
  background: #ffffff;
}
.facility span {
  color: #1a1f1b;
}

.venue-map {
  background: rgba(197, 192, 170, 0.25);
  color: #4a5248;
}

.contact-form label {
  color: #1a1f1b;
}

.contact-form input,
.contact-form textarea {
  background: #ffffff;
  color: #1a1f1b;
  border: 1px solid rgba(197, 192, 170, 0.65);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(26, 31, 27, 0.4);
}

.contact-form__status {
  color: #4a5248;
}
.contact-form__status.is-success {
  color: #3d6142;
}
.contact-form__status.is-error {
  color: #8b3a3a;
}

.single-artist p {
  color: #1a1f1b;
}

.single-artist__photo {
  background: rgba(197, 192, 170, 0.25);
  border: 1px solid rgba(197, 192, 170, 0.45);
}

.back-link {
  color: #4a5248;
}
.back-link:hover {
  color: #968a55;
}

.list-disc {
  color: #4a5248;
}

.empty-state {
  color: #4a5248;
  border: 1px dashed rgba(197, 192, 170, 0.65);
  background: #ffffff;
}

.site-main {
  background: #e8e6dc;
}
