.festival-cover {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  background: #000;
  overflow: hidden;
  isolation: isolate;
}

.festival-cover__backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #000;
}

/* Blurred image fill */
.festival-cover__blurred-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: blur(18px) brightness(0.42) saturate(1.05);
  transform: scale(1.06);
  opacity: 0.9;
  pointer-events: none;
}

/* Main image */
.festival-cover__main-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  background: transparent;
}

/* Overlay for readability */
.festival-cover__shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
      radial-gradient(700px 320px at 50% 50%, rgba(0,0,0,0.35), transparent 62%),
      linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.40) 45%, rgba(0,0,0,0.55) 100%);
}

/* Subtle grain */
.festival-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.055;
  background-image:
    radial-gradient(circle at 20% 30%, #fff 0.7px, transparent 1px),
    radial-gradient(circle at 80% 70%, #fff 0.7px, transparent 1px),
    radial-gradient(circle at 60% 20%, #fff 0.7px, transparent 1px),
    radial-gradient(circle at 30% 80%, #fff 0.7px, transparent 1px);
  background-size: 9px 9px, 11px 11px, 13px 13px, 7px 7px;
  background-position: 0 0, 2px 3px, 1px 5px, 4px 1px;
}

/* =========================
   COVER CONTENT
   ========================= */
.festival-cover__inner {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(920px, calc(100% - 32px));
  padding: 100px 12px 0px 12px;
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
  pointer-events: auto;
  opacity: 0;
  filter: blur(6px);
}

/* Entrance animation */
.festival-cover.is-visible .festival-cover__inner {
  animation: festivalCoverReveal 900ms cubic-bezier(.2,.8,.2,1) 180ms forwards;
}

@keyframes festivalCoverReveal {
  0% {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 22px));
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
    filter: blur(0);
  }
}

/* Top label */
.festival-cover__tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 0 auto;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: rgba(0,0,0,0.34);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.9);
}

.festival-cover__tag-icons {
  display: inline-flex;
  gap: 5px;
}

.festival-cover__tag-icons span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: block;
}

.festival-cover__tag-icons span:nth-child(1) { background: var(--wef-red); }
.festival-cover__tag-icons span:nth-child(2) { background: var(--wef-yellow); }
.festival-cover__tag-icons span:nth-child(3) { background: var(--wef-green); }

/* Title */
.festival-cover__headline {
  font-family: WildHeads;
  margin: 0;
  text-align: center;
  font-size: 50px;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--text);
  letter-spacing: 2px;
  text-shadow:
    0 6px 20px rgba(0,0,0,0.55),
    0 2px 6px rgba(0,0,0,0.45);
}

.festival-cover__headline-mark {
  color: var(--wef-red);
}

/* Subtitle */
.festival-cover__description {
  margin: 0 auto;
  text-align: center;
  max-width: 70ch;
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
  text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}

/* Actions */
.festival-cover__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-top: 4px;
}

/* =========================
   OPTIONAL BOTTOM CONTROL
   ========================= */
.festival-cover__panel {
  position: absolute;
  z-index: 5;
  right: max(12px, env(safe-area-inset-right));
  bottom: max(12px, env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  gap: 8px;
}

.festival-cover__panel-btn {
  appearance: none;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(0,0,0,0.42);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background 120ms ease, border-color 120ms ease, transform 120ms ease;
}

.festival-cover__panel-btn:hover {
  background: rgba(0,0,0,0.58);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-1px);
}

.festival-cover__panel-btn:focus-visible {
  outline: 2px solid var(--wef-yellow);
  outline-offset: 2px;
}

/* =========================
   OPTIONAL LOADER
   ========================= */
.festival-cover__preload {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(0,0,0,0.16), rgba(0,0,0,0.55)),
    #000;
  transition: opacity 240ms ease, visibility 240ms ease;
}

.festival-cover__preload.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.festival-cover__preload-ring {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.16);
  border-top-color: var(--wef-yellow);
  animation: festivalSpin 1s linear infinite;
}

@keyframes festivalSpin {
  to { transform: rotate(360deg); }
}

/* =========================
   RESPONSIVE
   ========================= */

/* Large desktop */
@media (min-width: 1440px) {
  .festival-cover__inner {
    width: min(980px, 70vw);
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .festival-cover__inner {
    width: min(760px, calc(100% - 32px));
    gap: 12px;
    padding: 100px 10px 0px 10px;
  }

  .festival-cover__buttons {
    gap: 10px;
  }

  .festival-cover__panel {
    right: 10px;
    bottom: 10px;
  }

  .festival-cover__panel-btn {
    padding: 9px 10px;
    font-size: 11px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .festival-cover {
    min-height: 70svh;
    min-height: 70vh; 
  }

  .festival-cover__backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .festival-cover__main-image {
    object-fit: cover;
    object-position: center center;
  }

  .festival-cover__inner {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 95vw;
    padding: 100px 10px 0px 10px;
    gap: 10px;
    justify-items: center;
    text-align: center;
  }

  .festival-cover.is-visible .festival-cover__inner {
    animation: festivalCoverRevealMobile 900ms cubic-bezier(.2,.8,.2,1) 180ms forwards;
  }

  @keyframes festivalCoverRevealMobile {
    0% {
      opacity: 0;
      transform: translate(-50%, calc(-50% + 18px));
      filter: blur(6px);
    }
    100% {
      opacity: 1;
      transform: translate(-50%, -50%);
      filter: blur(0);
    }
  }

  .festival-cover__tagline {
    font-size: 10px;
    padding: 7px 10px;
  }

  .festival-cover__headline {
    font-size: 30px;
    text-align: center;
  }

  .festival-cover__description {
    font-size: 17px;
    margin: 0 auto;
    text-align: center;
  }

  .festival-cover__buttons {
    justify-content: center;
    gap: 8px;
    margin-top: 2px;
  }

  .festival-cover__panel {
    right: 10px;
    bottom: 10px;
  }

  .festival-cover__panel-btn {
    padding: 8px 10px;
    font-size: 11px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .festival-cover.is-visible .festival-cover__inner {
    animation: none;
    opacity: 1;
    transform: translate(-50%, -50%);
    filter: none;
  }

  .festival-cover__preload-ring {
    animation: none;
  }

  .festival-cover__panel-btn {
    transition: none;
  }
}

/* =========================
   ACTIVITY BLOCKS
   ========================= */
.activity-block{
  position: relative;
}

.activity-block__media{
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  min-height: 420px;
  background: rgba(10,12,16,.42);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    0 30px 70px rgba(0,0,0,.42),
    0 0 0 1px rgba(255,255,255,.04) inset;
}

.activity-block__media::before{
  content:"";
  position:absolute;
  inset:0;
  z-index: 1;
  pointer-events:none;
}

.activity-block__media--red::before{
  background:
    radial-gradient(circle at 20% 25%, rgba(239,67,80,.16), transparent 45%),
    linear-gradient(180deg, rgba(4,6,10,.08), rgba(4,6,10,.34));
}
.activity-block__media--green::before{
  background:
    radial-gradient(circle at 20% 25%, rgba(43,182,115,.16), transparent 45%),
    linear-gradient(180deg, rgba(4,6,10,.08), rgba(4,6,10,.34));
}
.activity-block__media--yellow::before{
  background:
    radial-gradient(circle at 20% 25%, rgba(252,200,72,.16), transparent 45%),
    linear-gradient(180deg, rgba(4,6,10,.08), rgba(4,6,10,.34));
}

.activity-block__image{
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.activity-block__content{
  position: relative;
}

.activity-block__eyebrow{
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(8,10,14,.34);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(245,241,232,.88);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.activity-block__title{
  margin-top: 20px;
  color: var(--fi-text);
  font-family: WildHeads;
  font-size: 35px;
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1.4;
  text-shadow:
    0 4px 0 rgba(0,0,0,0.35),
    0 10px 30px rgba(0,0,0,0.35);
    text-transform: uppercase;
}

.activity-block__desc{
  color: var(--fi-muted);
  font-size: 18px;
  line-height: 1.55;
  margin-top: 10px;
  margin-bottom: 20px;
}

@media(max-width: 767px){
  .activity-block__title{
    font-size: 30px;
  }
}

.activity-list{
  display: grid;
  gap: 14px;
}

.activity-list__item{
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(10,12,16,.36);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.activity-list__item h3{
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 1px;
  text-wrap: balance;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

.activity-list__item.item1 h3{
  color: var(--wef-red);
}

.activity-list__item.item2 h3{
  color: var(--wef-yellow);
}

.activity-list__item.item3 h3{
  color: var(--wef-green);
}

.activity-list__item p{
  color: var(--fi-muted);
  font-size: 16px;
  line-height: 1.55;
  text-wrap: balance;
  margin-top: 10px;
}

.activity-block__actions{
  margin-top: 18px;
}

/* =========================
   HIGHLIGHTS
   ========================= */
.activities-highlight{
  min-height: 150px;
  border-radius: 22px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: 18px 14px;
  background: rgba(10,12,16,.46);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 24px 60px rgba(0,0,0,.34);
}

.activities-highlight__value{
  color: var(--wef-cream);
  font-size: clamp(30px, 4.4vw, 58px);
  line-height: .9;
  font-weight: 900;
  letter-spacing: -.04em;
}

.activities-highlight__label{
  margin-top: 8px;
  color: rgba(245,241,232,.78);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
}