:root {
  --cream: #f6f0e4;
  --paper: #fbf7ef;
  --ink: #131313;
  --ink-soft: rgba(19, 19, 19, 0.7);
  --black: #0f1010;
  --charcoal: #181919;
  --festival-primary: #e42680;
  --festival-primary-rgb: 228, 38, 128;
  --festival-secondary: #f8a84f;
  --festival-secondary-rgb: 248, 168, 79;
  --accent: var(--festival-primary);
  --accent-deep: #b21e63;
  --gold: var(--festival-secondary);
  --sand: #ead6b6;
  --white: #fffdf8;
  --border-dark: rgba(19, 19, 19, 0.1);
  --border-light: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
  --radius-xl: 40px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --font-display: "Bahnschrift SemiCondensed", "Arial Narrow", "Segoe UI Variable Display", sans-serif;
  --font-body: "Aptos", "Segoe UI Variable Text", "Trebuchet MS", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(255, 106, 61, 0.08), transparent 24%),
    linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(19, 19, 19, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 19, 19, 0.03) 1px, transparent 1px);
  background-size: 84px 84px;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: absolute;
  top: -4rem;
  left: 1rem;
  z-index: 90;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-weight: 800;
}

.skip-link:focus-visible {
  top: 1rem;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  height: 4px;
  background: rgba(19, 19, 19, 0.06);
}

.scroll-progress__bar {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--gold));
}

.site-header,
.date-rail,
.hero,
.section,
.statement-band,
.closing {
  width: min(1220px, calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0.8rem;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border-dark);
  border-radius: 999px;
  background: rgba(251, 247, 239, 0.84);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
}

.brand-lockup__logo {
  width: clamp(150px, 18vw, 220px);
}

.site-nav {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  justify-content: center;
}

.site-nav a,
.eyebrow,
.date-card__day,
.date-card__time,
.hero-panel__label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.site-nav a {
  font-weight: 700;
  color: var(--ink-soft);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent-deep);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: var(--white);
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.button--ghost,
.button--secondary {
  background: transparent;
  color: var(--ink);
}

.button--ghost {
  border-color: var(--border-dark);
}

.button--secondary {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.date-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 2rem;
}

.date-card,
.hero-panel,
.stage-card,
.festival-list__item,
.festival-quote,
.faq-item,
.closing__brand {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.date-card {
  padding: 1.4rem;
  background: var(--white);
  border: 1px solid var(--border-dark);
}

.date-card__day {
  color: var(--ink-soft);
}

.date-card__date {
  display: block;
  margin-top: 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.date-card__time {
  display: block;
  margin-top: 0.9rem;
  color: var(--ink-soft);
}

.date-card--cta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--black);
  color: var(--white);
}

.date-card--cta .date-card__day,
.date-card--cta .date-card__time {
  color: rgba(255, 253, 248, 0.7);
}

.date-card--cta a {
  margin-top: 1rem;
  font-weight: 800;
  color: #ffb38d;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 1.2rem;
  align-items: start;
  padding: 2rem 0 3rem;
}

.hero__copy {
  padding-top: 1rem;
}

.eyebrow {
  margin: 0 0 1rem;
  font-weight: 800;
  color: var(--accent-deep);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.88;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(4.3rem, 11vw, 9.8rem);
  letter-spacing: -0.05em;
}

h1 span {
  display: block;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  letter-spacing: -0.04em;
  text-wrap: balance;
}

h3 {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  letter-spacing: -0.03em;
}

p {
  margin: 0;
  line-height: 1.7;
}

.hero__lead,
.hero-panel__body p,
.stage-card p,
.festival-list__item p,
.festival-quote p,
.faq-item p,
.closing__content p,
.closing__brand p {
  color: var(--ink-soft);
}

.hero__lead {
  max-width: 58ch;
  margin-top: 1.5rem;
  font-size: 1.08rem;
}

.hero__aside {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 1rem;
}

.hero-panel {
  overflow: hidden;
}

.hero-panel--number {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  background: var(--black);
  color: var(--white);
}

.hero-panel__metric {
  display: grid;
  place-items: center;
  padding: 1.5rem;
  border-right: 1px solid var(--border-light);
}

.hero-panel__metric span {
  font-size: 1.2rem;
  opacity: 0.7;
}

.hero-panel__metric strong {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 6rem);
  line-height: 0.9;
}

.hero-panel__body {
  padding: 1.5rem;
}

.hero-panel__body h2,
.closing h2 {
  color: var(--white);
}

.hero-panel__body p {
  margin-top: 1rem;
  color: rgba(255, 253, 248, 0.72);
}

.hero-panel__body .button {
  margin-top: 1.25rem;
}

.hero-panel--poster {
  grid-row: span 2;
  padding: 0.8rem;
  background: var(--white);
  border: 1px solid var(--border-dark);
}

.hero-panel--poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 10px);
}

.hero-panel--logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: linear-gradient(135deg, #f9dcb7, #fff4e3);
  border: 1px solid var(--border-dark);
}

.hero-panel--logo img {
  width: min(180px, 48%);
}

.hero-panel__label {
  display: block;
  color: rgba(19, 19, 19, 0.55);
}

.hero-panel--logo strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.1rem;
}

.statement-band {
  overflow: hidden;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.statement-band__track {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding: 1rem 0;
  animation: track-scroll 22s linear infinite;
}

.statement-band__track span {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(19, 19, 19, 0.06);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section {
  padding: 4.5rem 0;
}

.section--dark {
  color: var(--white);
  background: var(--black);
  border-radius: var(--radius-xl);
  padding-inline: clamp(1.2rem, 3vw, 2rem);
}

.section--sand {
  background: linear-gradient(180deg, #f5e7cf, #f1e2c9);
  border: 1px solid rgba(19, 19, 19, 0.08);
  border-radius: var(--radius-xl);
  padding-inline: clamp(1.2rem, 3vw, 2rem);
}

.section-heading {
  max-width: 840px;
}

.section-heading--wide {
  max-width: 920px;
}

.section-heading p {
  margin-top: 1rem;
}

.section--dark .eyebrow,
.section--dark .section-heading p,
.section--dark .stage-card p,
.closing .eyebrow,
.closing p {
  color: rgba(255, 253, 248, 0.7);
}

.stage-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.stage-card {
  min-height: 260px;
  padding: 1.25rem;
  border: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.05);
}

.stage-card--logo {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255, 106, 61, 0.92), rgba(210, 175, 109, 0.9));
}

.stage-card--logo img {
  width: min(100%, 220px);
}

.festival-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 1rem;
  align-items: start;
  margin-top: 2rem;
}

.festival-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.festival-list__item {
  min-height: 220px;
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(19, 19, 19, 0.08);
}

.festival-quote {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(19, 19, 19, 0.1);
}

.festival-quote img {
  width: min(100%, 300px);
  margin-bottom: 1rem;
}

.festival-quote strong {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.95rem;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 2rem;
}

.faq-item {
  border: 1px solid var(--border-dark);
  background: rgba(255, 255, 255, 0.68);
  padding: 0 1.2rem;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.2rem 0;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

.faq-item p {
  padding: 0 0 1.2rem;
}

.closing {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding: 4rem 0 0;
  color: var(--white);
}

.closing__content {
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: var(--black);
  box-shadow: var(--shadow);
}

.closing__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.closing__brand {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: 2rem;
  background: linear-gradient(135deg, #141515, #242727);
}

.closing__brand img {
  width: min(100%, 340px);
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

@keyframes track-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes sponsor-reel-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1080px) {
  .stage-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .festival-layout,
  .closing {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .site-header {
    flex-wrap: wrap;
    border-radius: 28px;
  }

  .site-nav {
    order: 3;
    width: 100%;
  }

  .date-rail,
  .hero,
  .festival-layout,
  .closing {
    grid-template-columns: 1fr;
  }

  .hero__aside,
  .stage-grid,
  .festival-list {
    grid-template-columns: 1fr 1fr;
  }

  .hero-panel--poster {
    grid-row: auto;
  }
}

@media (max-width: 760px) {
  .site-header,
  .date-rail,
  .hero,
  .section,
  .statement-band,
  .closing {
    width: min(100% - 1rem, 1220px);
  }

  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    top: 0.5rem;
    padding: 0.8rem;
  }

  .site-nav {
    grid-column: 1 / -1;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 0.25rem;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .brand-lockup__logo {
    width: clamp(126px, 42vw, 180px);
  }

  .button--ghost {
    min-height: 44px;
    padding-inline: 1rem;
  }

  h1 {
    font-size: clamp(3.4rem, 18vw, 5.8rem);
  }

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

  .hero__aside,
  .stage-grid,
  .festival-list,
  .hero-panel--number,
  .closing {
    grid-template-columns: 1fr;
  }

  .hero-panel__metric {
    border-right: 0;
    border-bottom: 1px solid var(--border-light);
  }

  .hero-panel--logo {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-panel--logo img {
    width: min(100%, 240px);
  }

  .closing__actions {
    flex-direction: column;
  }
}

@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;
  }

  .motion-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Imported Webflow adaptation for Meloneras Beach Fest */
:root {
  --orange: var(--festival-secondary);
  --light-blue: #78d7e5;
  --light-pink: rgba(var(--festival-primary-rgb), 0.18);
  --grass-green: #0f6b57;
  --background-color-dark: #111111;
  --background-color-white: #fff7ed;
  --text-color-light: #fff7ed;
  --text-color-dark: #111111;
  --border-color-light: rgba(255, 247, 237, 0.18);
  --button-color-light: #fff0de;
  --button-color-light-hover: var(--festival-secondary);
  --button-color-dark: #111111;
  --bordeaux: #fff7ed;
  --offwhite: #fff7ed;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 15% 10%, rgba(var(--festival-primary-rgb), 0.24), transparent 22%),
    radial-gradient(circle at 82% 4%, rgba(var(--festival-secondary-rgb), 0.18), transparent 28%),
    linear-gradient(180deg, rgba(8, 14, 18, 0.96), rgba(10, 15, 17, 0.98));
  color: #fff7ed;
}

.page-wrapper {
  background-image:
    linear-gradient(180deg, rgba(7, 12, 15, 0.7), rgba(7, 12, 15, 0.92)),
    url("img/custom/texture-sand.jpg") !important;
  background-position: center, center !important;
  background-repeat: no-repeat, no-repeat !important;
  background-size: cover, cover !important;
}

.mel-page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background:
    radial-gradient(circle at top, rgba(var(--festival-primary-rgb), 0.2), transparent 46%),
    radial-gradient(circle at 80% 10%, rgba(var(--festival-secondary-rgb), 0.16), transparent 34%),
    linear-gradient(180deg, rgba(7, 11, 14, 0.98), rgba(7, 11, 14, 0.94));
  color: #fff7ed;
  transition: opacity 240ms ease, visibility 240ms ease;
}

.mel-page-loader.is-complete {
  opacity: 0;
}

.mel-page-loader.is-hidden {
  visibility: hidden;
  pointer-events: none;
}

.mel-page-loader__inner {
  display: grid;
  justify-items: center;
  gap: 0.9rem;
  width: min(22rem, calc(100% - 2rem));
  text-align: center;
}

.mel-page-loader__logo {
  width: min(18rem, 72vw);
  height: auto;
}

.mel-page-loader__percent {
  color: var(--festival-secondary);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 4vw, 2.15rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mel-page-loader__bar {
  width: 100%;
  height: 0.42rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 247, 237, 0.14);
}

.mel-page-loader__bar span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--festival-secondary), var(--festival-primary));
  transition: width 180ms ease;
}

.ticket-optin,
.newsletter-popup,
.sticky-newsletter,
.pageloader,
.section_stages.hide,
.footer_links.hide,
.w-webflow-badge,
.home-hero_line-up.hide,
embed[src*="appic.events"] {
  display: none !important;
}

.section_details.hide,
.home-hero_grid-text.hide {
  display: block !important;
}

.navbar {
  position: sticky !important;
  top: 0;
  z-index: 30;
  padding-top: 1rem !important;
  background: linear-gradient(180deg, rgba(9, 12, 14, 0.82), rgba(9, 12, 14, 0));
  backdrop-filter: blur(18px);
}

.navbar_wrapper {
  border: 1px solid rgba(255, 247, 237, 0.12);
  border-radius: 999px;
  padding: 0.9rem 1.2rem;
  background: rgba(17, 17, 17, 0.78);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
}

.navbar_logo-wrapper {
  width: clamp(11rem, 18vw, 15rem) !important;
}

.navbar_logo-img,
.navbar_logo-img.is-mobile {
  display: block !important;
  width: 100% !important;
}

.navbar_logo-img.is-mobile {
  display: none !important;
}

.navbar_back-to-top {
  width: 4rem !important;
  opacity: 0.9;
}

.section_home-hero {
  position: relative;
  z-index: 8;
  overflow: visible;
  isolation: isolate;
}

.home-hero_video {
  min-height: 84vh;
  clip-path: ellipse(72% 58% at 50% 38%);
  filter: saturate(1.05) contrast(1.02);
}

.hero-access-nav {
  position: fixed;
  top: 1rem;
  left: 50%;
  z-index: 45;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem 1rem;
  width: min(92vw, 58rem);
  padding: 0.85rem 1.35rem;
  border: 1px solid rgba(255, 247, 237, 0.16);
  border-radius: 999px;
  background: rgba(7, 11, 14, 0.52);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
  transform: translateX(-50%);
  transition:
    top 220ms ease,
    padding 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.hero-access-nav__brand {
  position: absolute;
  top: 50%;
  left: 1rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  padding: 0.35rem;
  border: 1px solid rgba(255, 247, 237, 0.14);
  border-radius: 999px;
  background: rgba(255, 247, 237, 0.05);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) scale(0.96);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.hero-access-nav__brand img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.22));
}

.hero-access-nav__brand:focus-visible {
  outline: 2px solid rgba(var(--festival-secondary-rgb), 0.92);
  outline-offset: 2px;
}

.hero-access-nav.is-scrolled {
  top: 0.7rem;
  padding: 0.72rem 1.2rem;
  border-color: rgba(255, 247, 237, 0.24);
  background: rgba(7, 11, 14, 0.82);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.28);
  transform: translateX(-50%) scale(0.985);
}

.hero-access-nav a {
  color: #fff7ed;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-access-nav a:hover {
  color: var(--festival-secondary);
}

.meloneras-hero-badge {
  pointer-events: auto;
  top: 8rem !important;
  right: auto !important;
  bottom: auto !important;
  left: 50% !important;
  z-index: 24;
  display: block;
  width: clamp(22rem, 38vw, 30rem) !important;
  height: auto !important;
  aspect-ratio: 1500 / 956;
  cursor: pointer;
  touch-action: manipulation;
  user-select: none;
  overflow: visible;
  transform: translate(-50%, 0) !important;
}

.meloneras-hero-badge-logo {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  pointer-events: none;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.28));
  transform: translateY(0);
  transition: opacity 160ms ease, transform 180ms ease, filter 180ms ease;
}

.meloneras-hero-badge-logo.is-active {
  opacity: 1;
}

.meloneras-hero-badge:hover .meloneras-hero-badge-logo,
.meloneras-hero-badge:focus-visible .meloneras-hero-badge-logo {
  transform: translateY(-2px);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.32));
}

.meloneras-hero-badge:focus-visible {
  outline: 2px solid rgba(var(--festival-secondary-rgb), 0.92);
  outline-offset: 8px;
}

.home-hero_text-wrapper {
  background-image: none !important;
  padding: 4rem 10rem 4.5rem !important;
  filter: drop-shadow(0 34px 70px rgba(0, 0, 0, 0.35));
  position: absolute;
  left: 50%;
  right: auto !important;
  top: auto !important;
  bottom: -15rem !important;
  width: min(55rem, calc(100% - 2rem));
  z-index: 20;
  opacity: 1 !important;
  transform: translateX(-50%) !important;
}

.home-hero_text-grid {
  border: 1px solid rgba(255, 247, 237, 0.18);
  border-radius: 2rem;
  background: rgba(10, 14, 18, 0.68);
  backdrop-filter: blur(18px);
  padding: 1.5rem 2.2rem;
  gap: 1.4rem;
}

.home-hero_grid-text {
  min-width: 0;
  opacity: 1 !important;
  transform: none !important;
}

.home-hero_text-grid .home-hero_grid-text:last-child {
  grid-column: 1 / 3 !important;
  grid-row: 2 / 3 !important;
  justify-self: center !important;
  margin: 0 auto !important;
  width: 100%;
  max-width: 21rem;
  text-align: center;
}

.home-hero_grid-text:last-child h5,
.home-hero_grid-text:last-child h3,
.home-hero_grid-text:last-child .home-hero_grid-text-text {
  text-align: center;
}

.home-hero_grid-text h5 {
  color: var(--festival-secondary) !important;
  letter-spacing: 0.16em;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  font-weight: 800;
}

.home-hero_grid-text h3 {
  color: #fff7ed !important;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  line-height: 0.95;
  font-weight: 900;
}

.home-hero_grid-text:nth-child(-n + 2) h5:first-child {
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
}

.home-hero_grid-text:nth-child(-n + 2) h3 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  letter-spacing: 0.02em;
  text-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
}

.home-hero_grid-text:nth-child(-n + 2) h5:last-of-type {
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  color: #fff1d8 !important;
}

.section_home-hero.is-compact-hero .home-hero_video {
  min-height: 76vh;
}

.section_home-hero.is-compact-hero .home-hero_lightbox-wrapper {
  top: 6.2rem !important;
}

.section_home-hero.is-compact-hero .meloneras-hero-badge {
  width: clamp(12rem, 28vw, 19rem) !important;
}

.section_home-hero.is-compact-hero .home-hero_text-wrapper {
  width: min(100%, 40rem);
  padding: 5.5rem 1.45rem 2.2rem !important;
  bottom: -6rem !important;
}

.section_home-hero.is-compact-hero .home-hero_text-grid {
  padding: 1.15rem 1.3rem;
  gap: 0.85rem;
}

.section_home-hero.is-compact-hero .home-hero_grid-text:nth-child(-n + 2) h3 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
}

.section_home-hero.is-compact-hero .home-hero_grid-text:nth-child(-n + 2) h5:first-child,
.section_home-hero.is-compact-hero .home-hero_grid-text:nth-child(-n + 2) h5:last-of-type {
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
}

.section_home-hero.is-compact-hero .home-hero_grid-text:last-child h3 {
  font-size: clamp(2rem, 3.6vw, 2.75rem);
}

.section_home-hero.is-compact-hero .meloneras-program-cta {
  font-size: clamp(1.15rem, 2vw, 1.55rem) !important;
  padding: 0.65rem 1.45rem !important;
}

.home-hero_grid-text:last-child h3 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
}

.button,
.button-green {
  border-color: rgba(var(--festival-secondary-rgb), 0.35) !important;
  background: linear-gradient(135deg, var(--festival-primary), var(--festival-secondary)) !important;
  color: #111111 !important;
  box-shadow: 0 18px 40px rgba(var(--festival-primary-rgb), 0.26);
}

.button.is-seintje,
.button-green.is-seintje {
  background-image: none !important;
  padding-right: 1.5rem !important;
}

.home-hero_text-button .button.is-seintje,
.home-hero_text-button .button_text,
.home-hero_text-button .button.is-small {
  color: #fff7ed !important;
}

.home-hero_text-button.hide {
  display: none !important;
}

.meloneras-program-cta-wrap {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: auto;
  z-index: 30;
  display: flex;
  justify-content: center;
  width: max-content;
  transform: translateX(-50%);
}

.meloneras-program-cta {
  color: #fff7ed !important;
  min-height: 44px !important;
  padding: 0.7rem 1.7rem !important;
  font-size: clamp(1.5rem, 2.2vw, 1.9rem) !important;
  line-height: 1;
}

.button.is-icon,
.button-green.is-icon {
  gap: 0.75rem;
}

.button_text,
.button div {
  font-weight: 700;
}

.button_icon {
  width: 2.15rem;
  height: 2.15rem;
  object-fit: contain;
}

.big-title_wrapper h1 {
  color: rgba(255, 247, 237, 0.84) !important;
  text-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.section_intro,
.section_stages,
.section_activities,
.section_faq,
.section_photos,
.footer {
  position: relative;
}

.intro_photo-1,
.intro_photo-2,
.intro_photo-3,
.stages_stage-image,
.photos_photo,
.detail-faq_dropdown-icon,
.footer_3d-logo {
  border: 1px solid rgba(255, 247, 237, 0.14);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.28);
}

.intro_photo-1 {
  background-image: none !important;
}

.intro_text-wrapper,
.details-col,
.activities_item-wrapper,
.faq-dropdown,
.footer_wrapper {
  border: 1px solid rgba(255, 247, 237, 0.1);
  background: rgba(17, 17, 17, 0.72);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.intro_text-wrapper {
  border-radius: 2rem;
  padding: 2rem !important;
}

.intro_link-gallery a,
.footer a.is-white {
  color: var(--festival-secondary) !important;
}

.details-col,
.faq-dropdown,
.activities_item-wrapper {
  border-radius: 1.6rem;
}

.details-title-img,
.faq_title-tear {
  opacity: 0.95;
}

.detail-faq_dropdown-icon {
  object-fit: cover;
}

.stages_stage-text-wrapper h2,
.activities_item-wrapper h4,
.faq_title-wrapper h2,
.footer_copyright_text,
.detail-faq_title,
.faq-col-text-block,
.faq-col-text-block-right,
.details-content-p,
.details-content-title,
.intro_text-wrapper p,
.intro_text-wrapper h2 {
  color: #fff7ed !important;
}

.photos_wrapper,
.activities_wrapper,
.details-wrapper {
  gap: 2rem;
}

.graphic_dotted-circle {
  opacity: 0.92;
}

.footer {
  margin-top: 5rem;
  padding-bottom: 3rem;
}

.footer_wrapper {
  border-radius: 2rem;
  padding: 2rem;
}

.footer_copyright_text {
  color: rgba(255, 247, 237, 0.72) !important;
}

.footer_copyright_text a {
  color: var(--festival-secondary) !important;
}

.mel-section {
  position: relative;
  padding: 5.5rem 0;
}

.mel-site-footer {
  position: relative;
  padding: 0 0 3.2rem;
  background: linear-gradient(180deg, rgba(5, 8, 11, 0.98) 0%, rgba(4, 6, 8, 1) 100%);
}

.mel-site-footer__inner {
  display: flex;
  justify-content: center;
}

.mel-site-footer__copyright {
  margin: 0;
  color: rgba(255, 247, 237, 0.72);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}

.mel-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(var(--festival-primary-rgb), 0.18), transparent 48%),
    radial-gradient(circle at 82% 0%, rgba(var(--festival-secondary-rgb), 0.12), transparent 42%),
    linear-gradient(180deg, rgba(5, 9, 12, 0.24) 0%, rgba(7, 11, 14, 0.9) 28%, rgba(7, 11, 14, 0.98) 100%);
  pointer-events: none;
}

section.mel-section.mel-section--program {
  padding: clamp(19rem, 28vw, 22rem) 0 5.5rem !important;
}

.mel-shell {
  position: relative;
  z-index: 1;
  width: min(72rem, calc(100% - 3rem));
  margin: 0 auto;
}

.mel-section-heading {
  display: grid;
  gap: 0.9rem;
  max-width: 44rem;
  margin-bottom: 2.2rem;
}

.mel-section-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0;
  padding: 0.5rem 0.9rem;
  border: 1px solid rgba(var(--festival-secondary-rgb), 0.24);
  border-radius: 999px;
  background: rgba(var(--festival-primary-rgb), 0.12);
  color: var(--festival-secondary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mel-section-heading h2,
.mel-contact-card h2 {
  margin: 0;
  color: #fff7ed;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.mel-section-heading p,
.mel-contact-copy {
  margin: 0;
  color: rgba(255, 247, 237, 0.78);
  font-size: 1rem;
  line-height: 1.6;
}

.mel-section-tagline {
  margin: 0;
  font-size: clamp(1.2rem, 2.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 0.95;
  text-transform: uppercase;
  background: linear-gradient(90deg, #fff7ed 0%, var(--festival-secondary) 55%, var(--festival-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mel-section--program .mel-section-heading {
  max-width: none;
}

.mel-program-sponsor-block {
  display: flex;
  justify-content: center;
  margin-top: clamp(-11rem, -16vw, -7.5rem);
  margin-bottom: 0.35rem;
}

.mel-program-sponsor-reel {
  position: relative;
  overflow: hidden;
  margin-bottom: 0.45rem;
  padding: 0.3rem clamp(0.6rem, 2.6vw, 1.4rem);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 3.5%, #000 96.5%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 3.5%, #000 96.5%, transparent);
}

.mel-program-sponsor-reel__label {
  margin: 0;
  color: #f8a84f;
  font-size: clamp(1.2rem, 2.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 0.95;
  text-align: center;
  text-transform: uppercase;
}

.mel-program-sponsor-reel__track {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  width: max-content;
  animation: sponsor-reel-scroll 30s linear infinite;
  will-change: transform;
}

.mel-program-sponsor-reel__group {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

.mel-program-sponsor-reel__item {
  display: flex;
  flex: 0 0 clamp(6.8rem, 10vw, 9.75rem);
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 7rem;
  padding: 0.75rem 0.5rem;
}

.mel-program-sponsor-reel__item img {
  width: 100%;
  max-width: none;
  height: clamp(3.35rem, 5.2vw, 4.7rem);
  object-fit: contain;
  filter: brightness(1.03) contrast(1.04);
}

.mel-contact-copy-block {
  display: grid;
  gap: 0.9rem;
  align-content: center;
  justify-items: center;
  text-align: center;
  max-width: 34rem;
  margin: 0 auto;
}

.mel-contact-links {
  display: grid;
  gap: 0.9rem;
}

.mel-contact-link {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 247, 237, 0.12);
  border-radius: 1.2rem;
  background: rgba(255, 247, 237, 0.04);
  color: #fff7ed;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.mel-contact-link:hover,
.mel-contact-link:focus-visible {
  border-color: rgba(var(--festival-primary-rgb), 0.65);
  background: rgba(var(--festival-primary-rgb), 0.12);
  transform: translateY(-2px);
}

.mel-contact-link span {
  color: var(--festival-secondary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mel-contact-link strong {
  font-size: 1.05rem;
  line-height: 1.35;
}

.mel-day-grid,
.mel-activity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.mel-artist-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  align-items: start;
}

.mel-artist-column {
  display: grid;
  gap: 1.1rem;
  padding: 1.1rem;
  border: 1px solid rgba(255, 247, 237, 0.12);
  border-radius: 2rem;
  background: rgba(15, 20, 24, 0.78);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.mel-artist-column__intro {
  display: grid;
  gap: 0.8rem;
  padding: 0.25rem 0.15rem 0;
}

.mel-artist-column__intro h3 {
  margin: 0;
  color: #fff7ed;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.mel-artist-column__intro p:last-child {
  margin: 0;
  color: rgba(255, 247, 237, 0.72);
  line-height: 1.6;
}

.mel-artist-slider {
  display: grid;
  gap: 0.9rem;
}

.mel-artist-slider__viewport-shell {
  position: relative;
}

.mel-artist-slider__viewport {
  overflow: hidden;
  border: 1px solid rgba(255, 247, 237, 0.12);
  border-radius: 1.7rem;
  background: rgba(15, 20, 24, 0.78);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.22);
}

.mel-artist-slider__track {
  display: flex;
  transition: transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.mel-artist-slider__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.55rem;
  height: 2.55rem;
  padding: 0;
  border: 1px solid rgba(255, 247, 237, 0.2);
  border-radius: 999px;
  background: rgba(9, 13, 16, 0.7);
  color: #fff7ed;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
  transform: translateY(-50%);
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
  backdrop-filter: blur(16px);
}

.mel-artist-slider__arrow:hover,
.mel-artist-slider__arrow:focus-visible {
  background: rgba(var(--festival-primary-rgb), 0.16);
  border-color: rgba(var(--festival-secondary-rgb), 0.48);
}

.mel-artist-slider__arrow:focus-visible {
  outline: 2px solid rgba(var(--festival-secondary-rgb), 0.6);
  outline-offset: 3px;
}

.mel-artist-slider__arrow:active {
  transform: translateY(-50%) scale(0.96);
}

.mel-artist-slider__arrow svg {
  display: block;
  width: 1rem;
  height: 1rem;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mel-artist-slider__arrow--prev {
  left: 1rem;
}

.mel-artist-slider__arrow--next {
  right: 1rem;
}

.mel-artist-slide {
  flex: 0 0 auto;
}

.mel-artist-slide .mel-artist-poster {
  min-height: clamp(22rem, 42vw, 31rem);
  border-radius: 0;
}

.mel-artist-slider__status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0 0.15rem;
}

.mel-artist-slider__autoplay {
  color: rgba(255, 247, 237, 0.48);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mel-artist-slider__indicators {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 0.55rem;
}

.mel-artist-slider__indicator {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: rgba(255, 247, 237, 0.22);
  opacity: 0.55;
  transition: transform 180ms ease, background-color 180ms ease, opacity 180ms ease;
}

.mel-artist-slider__indicator.is-active {
  background: var(--festival-primary);
  opacity: 1;
  transform: scale(1.14);
}

.mel-artist-poster {
  position: relative;
  min-height: 14rem;
  margin: 0;
  border-radius: 1.5rem;
  overflow: hidden;
  background: #111111;
}

.mel-artist-poster.is-pending {
  border: 1px dashed rgba(var(--festival-secondary-rgb), 0.28);
  background:
    radial-gradient(circle at top, rgba(var(--festival-primary-rgb), 0.18), transparent 52%),
    radial-gradient(circle at 85% 0%, rgba(var(--festival-secondary-rgb), 0.12), transparent 38%),
    linear-gradient(160deg, rgba(20, 26, 31, 0.98), rgba(11, 14, 17, 0.98));
}

.mel-artist-poster.is-pending::before {
  content: '';
  position: absolute;
  inset: 1rem;
  border: 1px dashed rgba(255, 247, 237, 0.12);
  border-radius: 1.1rem;
}

.mel-artist-poster__placeholder {
  position: absolute;
  inset: 1rem;
  display: grid;
  place-items: center;
}

.mel-artist-poster__silhouette {
  position: relative;
  width: min(46%, 12rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 38%, rgba(255, 247, 237, 0.2), rgba(255, 247, 237, 0.12) 58%, transparent 60%);
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.34));
}

.mel-artist-poster__silhouette::before,
.mel-artist-poster__silhouette::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(255, 247, 237, 0.52), rgba(255, 247, 237, 0.16));
}

.mel-artist-poster__silhouette::before {
  top: 18%;
  width: 34%;
  height: 34%;
  border-radius: 50%;
}

.mel-artist-poster__silhouette::after {
  bottom: 10%;
  width: 72%;
  height: 40%;
  border-radius: 48% 48% 32% 32% / 58% 58% 24% 24%;
}

.mel-artist-poster--feature {
  min-height: 29rem;
}

.mel-artist-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
}

.mel-artist-poster__status {
  position: absolute;
  right: 0.9rem;
  bottom: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 0.42rem 0.74rem;
  border: 1px solid rgba(146, 223, 192, 0.34);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(7, 20, 15, 0.82), rgba(11, 34, 26, 0.56));
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.22);
  color: #92dfc0;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.mel-artist-poster::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 9, 12, 0.04) 8%, rgba(5, 9, 12, 0.86) 100%);
}

.mel-artist-poster figcaption {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  display: grid;
  gap: 0.3rem;
  padding: 1.2rem;
}

.mel-artist-poster:not(.is-pending) figcaption {
  padding-right: 4.3rem;
}

.mel-artist-poster span {
  color: #fff7ed;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.mel-artist-poster small {
  color: rgba(255, 247, 237, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mel-day-card,
.mel-activity-card,
.mel-logo-tile,
.mel-contact-card {
  border: 1px solid rgba(255, 247, 237, 0.12);
  border-radius: 1.8rem;
  background: rgba(15, 20, 24, 0.78);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.mel-day-card,
.mel-activity-card {
  padding: 1.6rem;
}

.mel-day-label {
  margin: 0 0 0.8rem;
  color: var(--festival-secondary);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mel-day-note {
  margin: 0 0 1rem;
  color: rgba(255, 247, 237, 0.68);
  line-height: 1.55;
}

.mel-list {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mel-list-item {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 247, 237, 0.08);
  border-radius: 1.1rem;
  background: rgba(255, 247, 237, 0.05);
  color: #fff7ed;
  font-size: 1rem;
  font-weight: 700;
}

.mel-list-item.has-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.9rem;
}

.mel-list-item__label {
  min-width: 0;
}

.mel-list-item__meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.68rem 0.88rem;
  border: 1px solid rgba(var(--festival-primary-rgb), 0.28);
  border-radius: 0.95rem;
  background: rgba(var(--festival-primary-rgb), 0.12);
  color: var(--festival-secondary);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: right;
  white-space: nowrap;
}

.mel-list-item.is-placeholder {
  color: rgba(255, 247, 237, 0.62);
}

.mel-list-item.is-time {
  border-color: rgba(var(--festival-primary-rgb), 0.28);
  background: rgba(var(--festival-primary-rgb), 0.12);
  color: var(--festival-secondary);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mel-list-item.is-highlight {
  border-color: rgba(var(--festival-secondary-rgb), 0.35);
  background: linear-gradient(135deg, var(--festival-primary), var(--festival-secondary));
  color: #111111;
}

.mel-activity-card {
  display: grid;
  gap: 0.8rem;
}

.mel-activity-card__image {
  width: 100%;
  border-radius: 1.4rem;
  border: 1px solid rgba(255, 247, 237, 0.12);
  object-fit: cover;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.mel-activity-card h3 {
  margin: 0;
  color: #fff7ed;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 0.98;
}

.mel-activity-card p {
  margin: 0;
  color: rgba(255, 247, 237, 0.76);
  line-height: 1.6;
}

.mel-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.mel-logo-tile {
  min-height: 7.5rem;
  display: grid;
  place-items: center;
  padding: 1rem;
  background:
    linear-gradient(135deg, rgba(var(--festival-primary-rgb), 0.12), rgba(var(--festival-secondary-rgb), 0.18)),
    rgba(15, 20, 24, 0.78);
}

.mel-logo-tile span {
  color: #fff1d8;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.mel-logo-note {
  margin: 1.15rem 0 0;
  color: var(--festival-secondary);
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.mel-faq-list {
  margin-top: 0;
}

.mel-faq-item {
  border-radius: 1.4rem;
  border-color: rgba(255, 247, 237, 0.12);
  background: rgba(15, 20, 24, 0.78);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.mel-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #fff7ed;
}

.mel-faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  color: var(--festival-secondary);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
}

.mel-faq-item[open] summary::after {
  content: '\2212';
}

.mel-faq-item p {
  color: rgba(255, 247, 237, 0.76);
}

.mel-contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  gap: 1.5rem;
  align-items: center;
  padding: 1.8rem;
}

.mel-section--artists::before {
  background:
    radial-gradient(circle at right top, rgba(var(--festival-primary-rgb), 0.18), transparent 44%),
    radial-gradient(circle at 15% 10%, rgba(var(--festival-secondary-rgb), 0.1), transparent 40%),
    linear-gradient(180deg, rgba(7, 11, 14, 0.96) 0%, rgba(6, 10, 13, 0.98) 100%);
}

.mel-section--activities::before {
  background:
    radial-gradient(circle at left top, rgba(var(--festival-secondary-rgb), 0.16), transparent 42%),
    radial-gradient(circle at 85% 0%, rgba(var(--festival-primary-rgb), 0.12), transparent 36%),
    linear-gradient(180deg, rgba(6, 10, 13, 0.98) 0%, rgba(9, 13, 17, 0.96) 100%);
}

.mel-section--market::before,
.mel-section--faq::before,
.mel-section--contact::before {
  background:
    radial-gradient(circle at top, rgba(var(--festival-primary-rgb), 0.12), transparent 40%),
    radial-gradient(circle at 82% 0%, rgba(var(--festival-secondary-rgb), 0.12), transparent 36%),
    linear-gradient(180deg, rgba(9, 13, 17, 0.96) 0%, rgba(5, 8, 11, 0.98) 100%);
}

@media screen and (max-width: 991px) {
  .hero-access-nav {
    top: 0.85rem;
    width: min(94vw, 44rem);
    padding: 0.8rem 1rem;
    border-radius: 1.4rem;
  }

  .hero-access-nav.is-scrolled {
    top: 0.6rem;
    padding: 0.72rem 0.95rem;
  }

  .home-hero_text-wrapper {
    width: min(100%, 42rem);
    padding: 7.5rem 1.8rem 3rem !important;
    background-size: cover !important;
    left: 50%;
    bottom: -10rem !important;
    margin-top: 0 !important;
    transform: translateX(-50%) !important;
  }

  .meloneras-program-cta-wrap {
    bottom: auto;
  }

  .home-hero_text-grid {
    width: calc(100% - 1rem);
    padding: 1.35rem 1.4rem;
    gap: 1rem;
  }

  .home-hero_grid-text.hide {
    margin-top: 0.6rem;
  }

  .section_details.hide {
    margin-top: 4rem;
  }

  .details-wrapper {
    display: grid;
    gap: 2rem;
  }

  .mel-section {
    padding: 4.5rem 0;
  }

  section.mel-section.mel-section--program {
    padding: 16rem 0 4.5rem !important;
  }

  .mel-shell {
    width: min(100%, calc(100% - 2rem));
  }

  .mel-program-sponsor-reel__item {
    flex-basis: clamp(6.2rem, 15vw, 8rem);
    min-height: 6.3rem;
    padding: 0.7rem 0.45rem;
  }

  .mel-program-sponsor-reel__item img {
    height: 3.8rem;
  }

  .mel-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mel-artist-columns {
    grid-template-columns: 1fr;
  }

  .mel-artist-column {
    padding: 1rem;
  }

  .mel-artist-slide .mel-artist-poster {
    min-height: 24rem;
  }

  .mel-contact-card {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  body {
    overflow-x: hidden;
  }

  .hero-access-nav {
    top: 0.7rem;
    gap: 0.4rem 0.7rem;
    width: 94vw;
    padding: 0.7rem 0.85rem;
    border-radius: 1.2rem;
  }

  .hero-access-nav.is-scrolled {
    top: 0.45rem;
    padding: 0.64rem 0.75rem;
  }

  .hero-access-nav.is-past-hero {
    padding-left: 5.5rem;
  }

  .hero-access-nav a {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }

  .hero-access-nav__brand {
    left: 0.92rem;
    width: clamp(4.2rem, calc(100% - 18.5rem), 5.35rem);
    height: auto;
    aspect-ratio: 1500 / 956;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
  }

  .hero-access-nav__brand img {
    width: 100%;
    height: auto;
  }

  .hero-access-nav.is-past-hero .hero-access-nav__brand {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-50%) scale(1);
  }

  .hero-access-nav.is-past-hero .hero-access-nav__link[data-nav-key="inicio"] {
    display: none;
  }

  .home-hero_video {
    min-height: 78vh;
    clip-path: ellipse(120% 64% at 50% 32%);
  }

  .mel-page-loader__logo {
    width: min(15rem, 76vw);
  }

  .mel-page-loader__percent {
    letter-spacing: 0.14em;
  }

  .home-hero_lightbox-wrapper {
    top: 7.65rem !important;
    right: auto;
    bottom: auto;
    left: 50% !important;
    margin-top: 0 !important;
  }

  .meloneras-hero-badge {
    width: min(23rem, 88vw) !important;
  }

  .home-hero_grid-text:nth-child(-n + 2) h3 {
    font-size: clamp(2.1rem, 8vw, 3rem);
  }

  .home-hero_grid-text:nth-child(-n + 2) h5:first-child,
  .home-hero_grid-text:nth-child(-n + 2) h5:last-of-type {
    font-size: 1rem;
  }

  .home-hero_text-wrapper {
    padding-top: 7.25rem !important;
    bottom: -9rem !important;
  }

  .section_home-hero.is-compact-hero .home-hero_video {
    min-height: 100svh;
    clip-path: ellipse(128% 66% at 50% 31%);
  }

  .section_home-hero.is-compact-hero .home-hero_lightbox-wrapper {
    top: 6.7rem !important;
  }

  .section_home-hero.is-compact-hero .meloneras-hero-badge {
    width: min(21rem, 84vw) !important;
  }

  .meloneras-program-cta-wrap {
    transform: translate(-50%, 0.2rem);
  }

  .section_home-hero.is-compact-hero .home-hero_text-wrapper {
    width: calc(100% - 1rem);
    padding-top: 4.4rem !important;
    padding-bottom: 1.1rem !important;
    bottom: 1rem !important;
  }

  .section_home-hero.is-compact-hero .home-hero_text-grid {
    width: 100%;
    padding: 0.82rem 0.9rem;
    gap: 0.45rem;
    border-radius: 1.4rem;
  }

  .section_home-hero.is-compact-hero .home-hero_grid-text:nth-child(-n + 2) h3 {
    font-size: clamp(1.55rem, 6.4vw, 2rem);
  }

  .section_home-hero.is-compact-hero .home-hero_grid-text:nth-child(-n + 2) h5:first-child,
  .section_home-hero.is-compact-hero .home-hero_grid-text:nth-child(-n + 2) h5:last-of-type {
    font-size: 0.8rem;
  }

  .section_home-hero.is-compact-hero .home-hero_grid-text:last-child h3 {
    font-size: clamp(1.28rem, 5vw, 1.7rem);
  }

  .section_home-hero.is-compact-hero .home-hero_text-grid .home-hero_grid-text:last-child {
    max-width: 14.5rem;
  }

  .section_home-hero.is-compact-hero .meloneras-program-cta {
    font-size: 0.92rem !important;
    padding: 0.5rem 1rem !important;
  }

  .section_home-hero.is-compact-hero .meloneras-program-cta-wrap {
    transform: translate(-50%, 0.55rem);
  }

  .meloneras-program-cta-wrap {
    bottom: auto;
  }

  .intro_text-wrapper,
  .footer_wrapper {
    padding: 1.4rem !important;
  }

  .footer_copyright {
    text-align: center;
  }

  .mel-section {
    padding: 3.8rem 0;
  }

  .mel-site-footer {
    padding-bottom: 2.6rem;
  }

  .mel-site-footer__copyright {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
  }

  section.mel-section.mel-section--program {
    padding: 13rem 0 3.8rem !important;
  }

  .mel-shell {
    width: calc(100% - 1.2rem);
  }

  .mel-program-sponsor-block {
    margin-top: -7.8rem;
    margin-bottom: 0.35rem;
  }

  .mel-program-sponsor-reel {
    margin-top: 0;
    margin-bottom: 0.4rem;
    padding-inline: 0.6rem;
  }

  .mel-program-sponsor-reel__item {
    flex-basis: 6.25rem;
    min-height: 5.9rem;
    padding: 0.65rem 0.35rem;
  }

  .mel-program-sponsor-reel__item img {
    height: 3.3rem;
  }

  .mel-day-grid,
  .mel-activity-grid,
  .mel-logo-grid {
    grid-template-columns: 1fr;
  }

  .mel-artist-column {
    padding: 0.9rem;
    border-radius: 1.3rem;
  }

  .mel-artist-column__intro h3 {
    font-size: 1.6rem;
  }

  .mel-artist-slide .mel-artist-poster {
    min-height: 18rem;
  }

  .mel-artist-slider__arrow {
    width: 2.3rem;
    height: 2.3rem;
  }

  .mel-artist-slider__arrow--prev {
    left: 0.75rem;
  }

  .mel-artist-slider__arrow--next {
    right: 0.75rem;
  }

  .mel-artist-slider__status {
    flex-direction: column;
    align-items: center;
  }

  .mel-day-card,
  .mel-activity-card,
  .mel-logo-tile,
  .mel-artist-column,
  .mel-artist-slider__viewport,
  .mel-contact-card,
  .mel-faq-item {
    border-radius: 1.3rem;
  }
}

@media screen and (max-width: 767px) and (max-height: 860px) {
  .section_home-hero.is-compact-hero .home-hero_lightbox-wrapper {
    top: 6rem !important;
  }

  .section_home-hero.is-compact-hero .meloneras-hero-badge {
    width: min(18.3rem, 76vw) !important;
  }

  .section_home-hero.is-compact-hero .home-hero_text-wrapper {
    padding-top: 3.55rem !important;
    padding-bottom: 0.9rem !important;
    bottom: 0.65rem !important;
  }

  .section_home-hero.is-compact-hero .home-hero_text-grid {
    padding: 0.72rem 0.8rem;
    gap: 0.38rem;
  }

  .section_home-hero.is-compact-hero .home-hero_grid-text:nth-child(-n + 2) h3 {
    font-size: clamp(1.38rem, 5.8vw, 1.82rem);
  }

  .section_home-hero.is-compact-hero .home-hero_grid-text:nth-child(-n + 2) h5:first-child,
  .section_home-hero.is-compact-hero .home-hero_grid-text:nth-child(-n + 2) h5:last-of-type {
    font-size: 0.74rem;
  }

  .section_home-hero.is-compact-hero .home-hero_grid-text:last-child h3 {
    font-size: clamp(1.14rem, 4.4vw, 1.5rem);
  }

  .section_home-hero.is-compact-hero .meloneras-program-cta {
    font-size: 0.84rem !important;
    padding: 0.45rem 0.9rem !important;
  }
}