/* ============================================================================
   Festival 2027 sub-sites — layered on top of style.css.
   Both festivals share one palette: yellow headline colour, pink accent bands.
   ========================================================================= */

.fest {
  --brand:      var(--fest-yellow);
  --on-brand:   #0a0a0c;
  --brand-lift: #fff45c;
  --brand-deep: #e8d200;
  --brand-glow:        rgba(255, 230, 0, .26);
  --brand-glow-strong: rgba(255, 230, 0, .4);
  --brand-veil:        rgba(255, 230, 0, .1);
  --brand-veil-strong: rgba(255, 230, 0, .2);
  --brand-veil-hover:  rgba(255, 230, 0, .38);
  --brand-edge:        rgba(255, 230, 0, .42);
}

/* ---------------------------------------------------------------- hero ---- */
.fhero {
  position: relative;
  min-height: min(100svh, 980px);
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding-block: 8rem 4.5rem;
  overflow: hidden;
  isolation: isolate;
}
.fhero__media { position: absolute; inset: 0; z-index: 0; }
.fhero__media img { width: 100%; height: 100%; object-fit: cover; filter: brightness(1.15) saturate(1.06); }
.fhero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(70% 55% at 50% 44%, rgba(7,7,9,.62) 0%, rgba(7,7,9,.42) 55%, rgba(7,7,9,.2) 100%),
    radial-gradient(125% 90% at 50% 44%, rgba(7,7,9,0) 40%, rgba(7,7,9,.55) 78%, rgba(7,7,9,.85) 100%),
    linear-gradient(180deg, rgba(7,7,9,.6) 0%, rgba(7,7,9,0) 28%, rgba(7,7,9,.55) 84%, var(--bg) 100%);
}
.fhero__inner { position: relative; z-index: 2; width: var(--shell); display: grid; justify-items: center; gap: clamp(1.5rem, 3vw, 2.25rem); }

.fhero__claim {
  text-shadow: 0 2px 14px rgba(0,0,0,.7);
  font-size: clamp(.72rem, .3vw + .66rem, .92rem);
  font-weight: 600;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--fg-2);
}
.fhero__lockup { display: grid; justify-items: center; gap: clamp(.5rem, 1.4vw, 1rem); margin: 0; letter-spacing: normal; line-height: 1; }
.fhero__logo { color: var(--brand); filter: drop-shadow(0 12px 44px rgba(0,0,0,.7)) drop-shadow(0 2px 10px rgba(0,0,0,.55)); }
.fhero__logo svg { width: auto; height: clamp(7.5rem, 26vw, 19rem); }
.fhero--latinsunset .fhero__logo svg { height: clamp(4.5rem, 16vw, 12rem); }
.fhero__year {
  display: block;
  text-shadow: 0 2px 16px rgba(0,0,0,.7);
  font-size: clamp(1rem, 2.6vw, 2rem);
  font-weight: 700;
  letter-spacing: .34em;
  text-indent: .34em;
  text-transform: uppercase;
  line-height: 1;
}

.fhero__facts {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: clamp(1rem, 3vw, 3rem);
  margin-top: .5rem;
}
.ffact { display: flex; align-items: center; gap: .75rem; text-align: start; }
.ffact svg { flex: none; width: 1.4rem; height: 1.4rem; color: var(--fg); }
.ffact__text { text-shadow: 0 2px 12px rgba(0,0,0,.65); font-size: clamp(.86rem, .35vw + .78rem, 1rem); font-weight: 600; text-transform: uppercase; line-height: 1.2; letter-spacing: .02em; }

.fhero__scroll { display: grid; justify-items: center; gap: .45rem; margin-top: clamp(1rem, 3vw, 2.5rem); color: var(--fg-3); }
.fhero__scroll svg { width: .95rem; height: 1.3rem; animation: nudge 2.2s var(--ease) infinite; }
.fhero__scroll span { font-size: .6rem; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; }
@keyframes nudge { 0%, 100% { transform: translateY(0); opacity: .6; } 50% { transform: translateY(5px); opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .fhero__scroll svg { animation: none; } }

/* Handwritten claim floating in the hero corner. */
.fhero__script { position: absolute; z-index: 3; inset-block-start: 24%; inset-inline-end: var(--gutter); max-width: 22vw; display: none; }
@media (min-width: 1000px) { .fhero__script { display: block; } }

/* --------------------------------------------------------- genre band ---- */
.genres {
  position: relative;
  background: linear-gradient(96deg, var(--fest-pink-deep) 0%, var(--fest-pink) 52%, var(--fest-pink-lift) 100%);
  padding-block: clamp(1.6rem, 3vw, 2.4rem);
  overflow: hidden;
}
.genres__row {
  position: relative;
  width: var(--shell);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(45%, 11rem), 1fr));
  gap: clamp(1.25rem, 2.4vw, 2rem);
}
.genre { display: grid; justify-items: center; gap: .35rem; text-align: center; padding-inline: clamp(0px, 1.5vw, 1.25rem); border-inline-start: 1px solid rgba(255, 255, 255, .22); }
.genre:first-child { border-inline-start: 0; }
@media (max-width: 700px) { .genre { border-inline-start: 0; } }
.genre__icon { width: 1.9rem; height: 1.9rem; color: var(--fest-yellow); }
.genre__icon svg { width: 100%; height: 100%; }
.genre__name { font-size: clamp(.88rem, 1.3vw, 1.05rem); font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--fest-yellow); line-height: 1.1; }
.genre__sub { font-size: .85rem; color: #fff; }

/* ------------------------------------------------------------- line-up ---- */
.lineup__title { font-size: clamp(1.9rem, 3.8vw, 3rem); }
.lineup__title span { display: block; }

/* ------------------------------------------------------------ location ---- */
.locmap { position: relative; }
.locmap__pin {
  position: absolute;
  inset-block-start: clamp(1rem, 3vw, 2rem);
  inset-inline-end: clamp(1rem, 3vw, 2rem);
  display: flex; align-items: center; gap: .6rem;
  padding: .7rem 1rem;
  border-radius: 14px;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; line-height: 1.3;
}
.locmap__pin svg { flex: none; width: 1.05rem; height: 1.05rem; color: var(--brand); }

/* ------------------------------------------------- newsletter (yellow) ---- */
.fnews {
  position: relative;
  background: linear-gradient(96deg, var(--fest-yellow) 0%, #ffef5e 58%, var(--fest-yellow) 100%);
  color: #0a0a0c;
  padding-block: clamp(1.9rem, 3.6vw, 2.9rem);
  overflow: hidden;
}
.fnews__inner { position: relative; width: var(--shell); margin-inline: auto; display: grid; gap: clamp(1.25rem, 2.5vw, 2.25rem); align-items: center; }
@media (min-width: 900px) { .fnews__inner { grid-template-columns: 1fr minmax(18rem, 26rem); } }
.fnews__title { font-size: clamp(1.4rem, 2.7vw, 2rem); color: #0a0a0c; }
.fnews__sub { margin-top: .45rem; font-size: .92rem; color: rgba(10, 10, 12, .8); }
.fnews .subscribe {
  background: rgba(255, 255, 255, .5);
  border: 1px solid rgba(10, 10, 12, .2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7);
}
.fnews .subscribe input { color: #0a0a0c; }
.fnews .subscribe input::placeholder { color: rgba(10, 10, 12, .5); }
.fnews .subscribe__go { background: #0a0a0c; color: var(--fest-yellow); box-shadow: 0 6px 18px rgba(0, 0, 0, .25); }

/* ----------------------------------------------------------------- FAQ ---- */
.faq { display: grid; gap: 0; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item:first-child { border-top: 1px solid var(--line); }
.faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  width: 100%; padding: 1.05rem 0;
  background: none; border: 0; cursor: pointer; text-align: start;
  font-size: clamp(.95rem, .4vw + .86rem, 1.05rem); font-weight: 500;
  transition: color .3s var(--ease);
}
.faq__q:hover { color: var(--brand); }
.faq__sign { flex: none; position: relative; width: 1rem; height: 1rem; }
.faq__sign::before, .faq__sign::after {
  content: ''; position: absolute; inset-block-start: 50%; inset-inline-start: 0;
  width: 100%; height: 2px; margin-top: -1px; background: currentColor; border-radius: 2px;
  transition: transform .4s var(--ease);
}
.faq__sign::after { transform: rotate(90deg); }
.faq__q[aria-expanded="true"] { color: var(--brand); }
.faq__q[aria-expanded="true"] .faq__sign::after { transform: rotate(0deg); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s var(--ease); }
.faq__a > div { overflow: hidden; }
.faq__a p { padding-bottom: 1.15rem; color: var(--fg-2); max-width: 62ch; }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }

/* ------------------------------------------------------- festival foot ---- */
.ffooter__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: clamp(1.25rem, 3vw, 2.5rem); }

.fhero__inner .btn { text-shadow: none; }
