:root {
  --color-evergreen: #2f4e21;
  --color-ink: #17323d;
  --color-ink-soft: #304669;
  --color-gold: #f6d15d;
  --color-paper: #f8fbfc;
  --color-muted: #a9a9a9;
  --font-body: "josefin-sans", "Josefin Sans", Arial, sans-serif;
  --font-heading: "sweet-gothic", "Sweet Gothic", var(--font-body);
  --section-max: 1110px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 4px;
}

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

.is-hidden {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 50;
  padding: 0.7rem 1rem;
  background: #ffffff;
  color: var(--color-ink);
  font-weight: 700;
  transform: translateY(-140%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  width: 100%;
  overflow-x: clip;
}

.hero {
  position: relative;
  --sunray-width: clamp(1800px, 130vw, 2350px);
  --sunray-drop: clamp(203px, 14.6vw, 265px);
  --sunray-x-offset: clamp(53px, 3.83vw, 69px);
  min-height: clamp(278px, 30vw, 395px);
  overflow: hidden;
  background: #edf8fc;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: -8px -7vw 0;
  z-index: 0;
  content: "";
  background: url("/assets/images/gradient.png") center 20% / cover no-repeat;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 45%, rgba(255, 255, 255, 0.18) 100%),
    url("/assets/images/sunrays.svg");
  background-position:
    center,
    calc(50% - var(--sunray-x-offset)) calc(100% + var(--sunray-drop));
  background-repeat: no-repeat;
  background-size:
    auto,
    var(--sunray-width) auto;
  pointer-events: none;
}

.hero__tree {
  position: fixed;
  z-index: 9;
  top: clamp(12px, 2vw, 28px);
  width: clamp(145px, 20vw, 305px);
  pointer-events: none;
  transition:
    transform 760ms cubic-bezier(0.65, 0, 0.25, 1),
    opacity 520ms ease;
  will-change: transform, opacity;
}

.hero__tree svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.hero__tree--left {
  left: max(-64px, -4vw);
  transform: translateX(0);
}

.hero__tree--right {
  right: max(-62px, -3.6vw);
  transform: translateX(0);
}

.trees-exit .hero__tree--left {
  opacity: 0;
  transform: translateX(-110%);
}

.trees-exit .hero__tree--right {
  opacity: 0;
  transform: translateX(110%);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(94px, 0.58fr) minmax(260px, 1fr) minmax(94px, 0.58fr);
  align-items: start;
  gap: clamp(14px, 4vw, 70px);
  width: min(100%, 1000px);
  min-height: inherit;
  margin: 0 auto;
  padding: clamp(22px, 2.5vw, 38px) clamp(18px, 5vw, 48px) 0;
}

.hero__badge {
  width: clamp(92px, 12.5vw, 154px);
  margin-top: clamp(54px, 6.7vw, 96px);
}

.hero__badge--time {
  justify-self: end;
}

.hero__badge--date {
  justify-self: start;
}

.hero__brand {
  position: relative;
  display: grid;
  justify-items: center;
  align-self: start;
  padding-top: 0.2rem;
}

.hero__sun {
  display: none;
}

.hero__logo-lockup {
  display: grid;
  justify-items: center;
  width: clamp(250px, 32vw, 430px);
}

.hero__logo {
  width: 100%;
  margin: 0;
  transform: translateX(clamp(-100px, -7.8vw, -28px));
}

.hero__presented {
  width: min(86%, 360px);
  margin-top: clamp(0.65rem, 1vw, 0.95rem);
}

.primary-nav {
  position: relative;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(28px, 6vw, 88px);
  min-height: 68px;
  padding: 0.8rem clamp(1rem, 4vw, 2rem);
  background: var(--color-evergreen);
}

.primary-nav a {
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.55vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease, transform 160ms ease;
}

.primary-nav a:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.intro {
  display: grid;
  place-items: center;
  min-height: clamp(170px, 19vw, 245px);
  padding: clamp(3rem, 5.4vw, 5rem) 1.5rem;
  background: #E4F1FA;
}

.intro__inner {
  display: grid;
  justify-items: center;
  width: min(100%, 830px);
  text-align: center;
}

.intro__heading {
  width: min(100%, 800px);
  margin: 0;
  color: var(--color-evergreen);
  font-family: var(--font-body);
  font-size: clamp(1.52rem, 2vw, 1.78rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.32;
  text-transform: none;
}

.intro p {
  width: min(100%, 805px);
  margin: 1rem 0 0;
  color: var(--color-evergreen);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  font-weight: 700;
  line-height: 1.52;
}

.section {
  padding: clamp(3.6rem, 7vw, 6.5rem) 1.5rem;
}

.section--faq {
  padding-top: clamp(3.4rem, 6vw, 5.3rem);
  padding-bottom: clamp(2.4rem, 5vw, 4.25rem);
}

.section--logos {
  padding-top: clamp(2.8rem, 5vw, 4.9rem);
  padding-bottom: clamp(2.8rem, 7vw, 5.8rem);
}

.section--food {
  background: #E4F1FA;
}

.section--music {
  padding-top: clamp(2.8rem, 5vw, 4.9rem);
  padding-bottom: clamp(2.8rem, 6vw, 5.2rem);
}

.section__inner {
  width: min(100%, var(--section-max));
  margin: 0 auto;
}

h2 {
  margin: 0 0 clamp(2.15rem, 4vw, 3.35rem);
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.section--faq h2 {
  font-size: clamp(1.45rem, 2.35vw, 2.05rem);
}

.faq-list {
  border-top: 2px solid rgba(48, 70, 105, 0.76);
}

.faq-item {
  border-bottom: 2px solid rgba(48, 70, 105, 0.76);
}

.faq-item summary {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.5rem;
  min-height: 75px;
  padding: 0.75rem 0.9rem 0.72rem 0.75rem;
  color: var(--color-ink-soft);
  cursor: pointer;
  font-size: clamp(1.07rem, 1.43vw, 1.28rem);
  font-weight: 700;
  line-height: 1.2;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  color: var(--color-ink-soft);
  font-family: var(--font-body);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1;
}

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

.faq-item__content {
  max-width: 850px;
  padding: 0 3.2rem 1.45rem 0.75rem;
  color: #243a44;
  font-size: clamp(1.04rem, 1.26vw, 1.14rem);
  line-height: 1.58;
}

.faq-item__content p {
  margin: 0 0 0.72rem;
}

.faq-item__content p:last-child {
  margin-bottom: 0;
}

.faq-item__content a {
  color: #079991;
  font-weight: 700;
  text-decoration: none;
}

.map-link,
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.34em;
}

.faq-link-icon {
  width: 1em;
  font-size: 1.12em;
  line-height: 1;
  text-align: center;
  transform: translateY(0.09em);
}

.social-links {
  display: grid;
  gap: 0.35rem;
  margin-top: 0.55rem;
}

.faq-item__content ul {
  margin: 0.2rem 0 0;
  padding-left: 1.2rem;
}

.faq-item__content li + li {
  margin-top: 0.22rem;
}


.music-feature {
  display: grid;
  grid-template-columns: .8fr 2.2fr;
  align-items: center;
  justify-items: center;
  gap: clamp(2rem, 7vw, 6rem);
  width: min(100%, 960px);
  margin: 0 auto;
}

.music-feature__logo {
  width: clamp(112px, 15vw, 184px);
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
}

.music-feature__list {
  display: grid;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 320px; /* Keeps the list from stretching too wide */
}

.music-feature__list li {
  list-style: none;
  display: grid;
  grid-template-columns: 125px 1fr; /* 125px for the image, the rest for text */
  gap: 1.25rem;
  align-items: center;
  text-align: left; /* Overrides the old center alignment */
}

.music-feature__image {
  width: 100%;
  aspect-ratio: 1; 
  object-fit: cover; /* Add this when you switch to real <img> tags! */
}

.music-feature__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.music-feature__act {
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}


.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(74px, 1fr));
  gap: clamp(1.25rem, 4vw, 4.05rem);
  align-items: center;
  justify-items: center;
  margin: 0;
  padding: 0 clamp(0rem, 1vw, 0.5rem);
  list-style: none;
}

.logo-grid--partners {
  grid-template-columns: repeat(6, minmax(82px, 1fr));
  gap: clamp(1.25rem, 2.6vw, 2.35rem);
}

@media (min-width: 881px) {
  .logo-grid--partners {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .logo-grid--partners > li {
    grid-column: span 2;
  }

  .logo-grid--partners > li:nth-last-child(1):nth-child(6n + 1) {
    grid-column: 6 / span 2;
  }

  .logo-grid--partners > li:nth-last-child(2):nth-child(6n + 1) {
    grid-column: 5 / span 2;
  }

  .logo-grid--partners > li:nth-last-child(3):nth-child(6n + 1) {
    grid-column: 4 / span 2;
  }

  .logo-grid--partners > li:nth-last-child(4):nth-child(6n + 1) {
    grid-column: 3 / span 2;
  }

  .logo-grid--partners > li:nth-last-child(5):nth-child(6n + 1) {
    grid-column: 2 / span 2;
  }
}

.logo-placeholder {
  display: block;
  width: clamp(74px, 10vw, 128px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--color-muted);
}


.partner-logo {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: clamp(76px, 9vw, 112px);
  text-decoration: none;
}

.partner-logo--link {
  transition: opacity 160ms ease, transform 160ms ease;
}

.partner-logo--link:hover {
  opacity: 0.82;
  transform: translateY(-1px);
}

.partner-logo img {
  width: auto;
  max-width: min(100%, 145px);
  max-height: clamp(58px, 7vw, 86px);
  object-fit: contain;
}

.partner-logo img[src*="logo-warren"],
.partner-logo img[src*="logo-marx-bensdorf"] {
  width: min(100%, 172px);
  max-width: 172px;
}

.volunteer-signup {
  background: #E4F1FA;
  text-align: center;
  padding-top: clamp(2.8rem, 5vw, 4.9rem);
  padding-bottom: clamp(2.8rem, 7vw, 5.8rem);
}

.volunteer-signup h2 {
  margin-bottom: clamp(.75rem, 1.75vw, 1.4rem);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  padding: 2rem 1.5rem 2.4rem;
  background: var(--color-ink);
  color: #ffffff;
  text-align: center;
}

.site-footer--motion-ready {
  transform: translateY(100%);
  transition: transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.site-footer--visible {
  transform: translateY(0);
}

.site-footer p {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.8rem;
  margin: 0;
  line-height: 1.35;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-footer strong {
  display: inline-block;
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  line-height: 1.35;
  margin-top: -1px;
}

.site-footer__time {
  color: var(--color-gold);
}

.footer-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.58rem 1.05rem;
  border: 1px solid var(--color-gold);
  border-radius: 999px;
  background: var(--color-gold);
  color: var(--color-ink);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.footer-pill:hover {
  background: #ffffff;
  color: var(--color-ink);
  text-decoration: none;
  transform: translateY(-1px);
}

.footer-pill:visited {
  color: var(--color-ink);
  text-decoration: none;
}

.intro-pill {
  margin-top: clamp(1.25rem, 2.4vw, 1.8rem);
  border-color: var(--color-ink);
  background: var(--color-ink);
  color: var(--color-gold);
}

.intro-pill:hover,
.intro-pill:visited {
  color: var(--color-gold);
  text-decoration: none;
}

.intro-pill:hover {
  background: var(--color-evergreen);
  transform: translateY(-1px);
}

@media (max-width: 880px) {
  .hero {
    --sunray-width: clamp(1380px, 185vw, 1900px);
    --sunray-drop: clamp(155px, 20.8vw, 214px);
    --sunray-x-offset: clamp(41px, 5.44vw, 56px);
    min-height: 360px;
  }

  .hero__tree {
    width: clamp(128px, 27vw, 210px);
  }

  .hero__content {
    grid-template-columns: minmax(78px, 1fr) minmax(220px, 1.5fr) minmax(78px, 1fr);
    gap: clamp(4px, 2.4vw, 24px);
    padding-inline: 0.9rem;
  }

  .hero__badge {
    width: clamp(78px, 18vw, 122px);
    margin-top: 102px;
  }

  .hero__logo-lockup {
    width: clamp(225px, 58vw, 382px);
  }

  .primary-nav {
    gap: clamp(1rem, 6vw, 2.25rem);
    min-height: 64px;
  }

  .logo-grid {
    grid-template-columns: repeat(3, minmax(74px, 1fr));
    width: min(100%, 520px);
    margin-inline: auto;
  }

  .logo-grid--partners {
    grid-template-columns: repeat(3, minmax(90px, 1fr));
    width: min(100%, 640px);
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  .hero {
    --sunray-width: clamp(1240px, 330vw, 1500px);
    --sunray-drop: clamp(140px, 37vw, 169px);
    --sunray-x-offset: clamp(36px, 9.7vw, 44px);
    min-height: clamp(385px, 105vw, 500px);
  }

  .hero__content {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    min-height: 100%;
    padding: 0;
  }

  .hero__brand {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: block;
    padding: 0;
    pointer-events: none;
  }

  .hero__badge {
    position: absolute;
    z-index: 3;
    top: clamp(20px, 7vw, 36px);
    width: clamp(94px, 26vw, 128px);
    margin-top: 0;
  }

  .hero__badge--time {
    left: clamp(24px, 8vw, 44px);
    transform: scale(0.75);
    transform-origin: top left;
  }

  .hero__badge--date {
    right: clamp(24px, 8vw, 44px);
    transform: scale(0.75);
    transform-origin: top right;
  }

  .hero__tree {
    display: none;
  }

  .hero__sun {
    display: none;
  }

  .hero__logo-lockup {
    position: absolute;
    top: clamp(150px, 39vw, 190px);
    left: 50%;
    z-index: 2;
    width: clamp(282px, 80.5vw, 380px);
    transform: translateX(-50%);
  }

  .hero__logo {
    transform: translateX(calc(-1 * clamp(10px, 4vw, 24px)));
  }

  .hero__presented {
    width: min(84%, 315px);
    margin-top: 0.72rem;
  }

  .primary-nav {
    gap: 1rem 1.4rem;
    padding-block: 1rem;
  }

  .primary-nav a {
    font-size: 0.85rem;
  }

  .primary-nav__sponsors {
    display: none;
  }

  .intro {
    min-height: auto;
    padding-block: 3rem;
  }

  .section {
    padding-inline: 1rem;
  }

  h2 {
    margin-bottom: 2rem;
  }

  .music-feature {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  .music-feature__logo {
    width: clamp(106px, 34.5vw, 158px);
  }

  .faq-item summary {
    min-height: 54px;
    padding-inline: 0.2rem 0.35rem;
  }

  .faq-item__content {
    padding: 0 1.7rem 1.35rem 0.2rem;
  }

  .logo-grid {
    grid-template-columns: repeat(2, minmax(74px, 1fr));
    gap: 1.5rem 2rem;
  }

  .logo-grid--partners {
    grid-template-columns: repeat(2, minmax(110px, 1fr));
    gap: 1.5rem 1.75rem;
  }

  .logo-grid--partners > li:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, 260px);
  }

  .site-footer {
    align-items: stretch;
  }

  .site-footer p,
  .site-footer .footer-pill {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__tree {
    transition: none;
  }

  .site-footer--motion-ready {
    transform: none;
    transition: none;
  }
}
