*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html.lenis, html.lenis body {
  height: auto;
}

html {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar {
  display: none;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

body {
  font-family: 'Satoshi', sans-serif;
  color: #fff;
  overflow-x: hidden;
  background: #000;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body::-webkit-scrollbar {
  display: none;
}

body.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
  top: 0;
}

/* ===================== LOADING ===================== */
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  overflow: hidden;
  background: #000;
}

#loading.ready {
  background: transparent;
}

#loading.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}


#loading-images {
  position: absolute;
  top: -10%;
  left: -5%;
  width: 110%;
  height: 120%;
  will-change: transform;
  filter: blur(20px);
  transition: filter 1.5s ease;
}

#loading.ready #loading-images {
  filter: blur(0px);
}

#loading-images img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#loading-img-top {
  mask-image: radial-gradient(circle 0px at 50% 50%, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: radial-gradient(circle 0px at 50% 50%, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  transition: mask-image 0.1s, -webkit-mask-image 0.1s;
  filter: url(#chromatic);
}

#loading-logo-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 1s ease 0.5s, transform 1s ease 0.5s;
}

#loading.ready #loading-logo-wrapper {
  opacity: 1;
  transform: scale(1);
}



#loading-logo {
  position: relative;
  z-index: 3;
  width: 420px;
  height: auto;
  overflow: visible;
  filter: url(#logo-chromatic) drop-shadow(0 0 25px rgba(255,255,255,0.5)) drop-shadow(0 0 50px rgba(255,255,255,0.25));
}


/* ===================== REVEAL BLUR OVERLAY ===================== */
#reveal-blur {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  background: rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
}

#reveal-blur.active {
  opacity: 1;
  visibility: visible;
  transition: none;
}

#reveal-blur.clearing {
  opacity: 1;
  visibility: visible;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  background: rgba(0,0,0,0);
  transition: backdrop-filter 1.8s cubic-bezier(0.16, 1, 0.3, 1),
              -webkit-backdrop-filter 1.8s cubic-bezier(0.16, 1, 0.3, 1),
              background 1.8s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.5s ease 1.5s,
              visibility 0.5s ease 1.5s;
}

/* ===================== AUDIO CHOICE ===================== */
#loading-audio-choice {
  position: absolute;
  bottom: 18vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 1.5em;
  opacity: 0;
  transition: opacity 0.8s ease 1s;
}

#loading.ready #loading-audio-choice {
  opacity: 1;
}

.audio-choice-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: color 0.3s ease;
}

.audio-choice-btn:hover {
  color: rgba(255, 255, 255, 1);
}

.audio-choice-line {
  width: 120px;
  height: 20px;
  position: relative;
  overflow: hidden;
}

.audio-choice-line canvas {
  width: 100%;
  height: 100%;
}

/* ===================== AUDIO TOGGLE ===================== */
#audio-toggle {
  position: fixed;
  top: 1em;
  right: 1em;
  z-index: 1000;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, background 0.3s ease;
}

#audio-toggle.visible {
  opacity: 1;
  visibility: visible;
}

#audio-toggle:hover {
  background: rgba(0, 0, 0, 0.25);
}

#audio-toggle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.8);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ===================== MENU ===================== */
#menu {
  position: fixed;
  top: 1em;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 999px;
  padding: 0.5em 1.2em;
  box-shadow: 0 0 20px rgba(255,255,255,0.6), 0 0 50px rgba(255,255,255,0.3), 0 0 80px rgba(255,255,255,0.15);
  cursor: pointer;
  transition: padding 0.4s ease, background 0.3s ease;
}

#menu:hover {
  background: rgba(255,255,255,0.95);
  padding: 0.5em 1.5em;
}

#menu-label {
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  white-space: nowrap;
  display: inline-block;
  max-width: 80px;
  overflow: hidden;
  opacity: 1;
  transition: max-width 0.3s ease 0.2s, opacity 0.2s ease 0.2s;
}

#menu:hover #menu-label {
  max-width: 0;
  opacity: 0;
  transition: max-width 0.2s ease, opacity 0.15s ease;
}

#menu-items {
  display: flex;
  gap: 2em;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-width 0.2s ease, opacity 0.15s ease;
}

#menu:hover #menu-items {
  max-width: 500px;
  opacity: 1;
  transition: max-width 0.3s ease 0.1s, opacity 0.2s ease 0.15s;
}

#menu-items a {
  color: #000;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  white-space: nowrap;
  transition: opacity 0.2s;
}

#menu-items a:hover {
  opacity: 0.6;
}

/* ===================== BACKGROUND LAYERS ===================== */
.bg-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 260vw;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: top center;
  will-change: transform;
  pointer-events: none;
}

#bg-1 {
  background-image: url('img/bg/bg.jpg');
  z-index: 1;
}

#bg-color {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

#bg-color-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('img/bg/bg-color.jpg');
  background-size: 100vw 260vw;
  background-repeat: no-repeat;
  background-position: top center;
  mask-image: radial-gradient(circle 0px at 50% 50%, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: radial-gradient(circle 0px at 50% 50%, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}

#bg-branch {
  background-image: url('img/bg/branch.png');
  z-index: 3;
}

#bg-branch-2 {
  background-image: url('img/bg/branch-2.png');
  z-index: 5;
}

#bg-mountain {
  background-image: url('img/bg/mountain.png');
  z-index: 9;
}

#bg-mushroom {
  background-image: url('img/bg/mushroom.png');
  z-index: 11;
}

/* ===================== HERO + NEWS WRAP ===================== */
#hero-news-wrap {
  position: relative;
}

#hero {
  height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 18vh;
  position: sticky;
  top: 0;
  z-index: 2;
}

#hero-desc {
  position: absolute;
  bottom: 1em;
  left: 1em;
  right: 1em;
  z-index: 4;
}

.hero-desc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

#hero-desc-text {
  grid-column: 5;
  color: #A6A6A6;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

#hero-flower-trail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  filter: blur(8px);
}

#hero-logo {
  position: relative;
  z-index: 2;
  width: 75%;
  max-width: 1100px;
  filter: url(#hero-breathe) drop-shadow(0 0 40px rgba(255,255,255,0.8)) drop-shadow(0 0 80px rgba(255,255,255,0.4));
  opacity: 0;
  transform: scale(0) translateZ(0);
  will-change: transform, opacity;
  transition: opacity 2s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
              transform 2.8s cubic-bezier(0.12, 1.3, 0.28, 1) 0.1s;
}

#hero-logo.revealed {
  opacity: 1;
  transform: scale(1) translateZ(0);
}

.flower-trail-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 280px;
  height: 280px;
  object-fit: contain;
  pointer-events: none;
  will-change: transform, opacity;
  transform: translate(-50%, -50%) scale(0) rotate(0deg);
  opacity: 0;
}

/* ===================== NEWS ===================== */
#news {
  position: relative;
  z-index: 3;
  pointer-events: none;
  padding-bottom: 80vh;
}

.news-card {
  height: 50vh;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1em;
  align-items: center;
  padding: 2em 1em;
  pointer-events: auto;
}

.news-card:nth-child(1) .news-card-inner { grid-column: 4; }
.news-card:nth-child(2) .news-card-inner { grid-column: 1; }
.news-card:nth-child(3) .news-card-inner { grid-column: 2; }
.news-card:nth-child(4) .news-card-inner { grid-column: 5; }

.news-card-inner {
  width: 100%;
  position: relative;
  clip-path: inset(0 50%);
  opacity: 0;
  transition: clip-path 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-card.visible .news-card-inner {
  clip-path: inset(0 0);
  opacity: 1;
}

.news-card-img {
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(0,0,0,0.6);
}

.news-card-img img,
.news-card-img video {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

.news-card-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  mask-image: linear-gradient(to bottom, transparent 0%, black 40%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 40%);
  text-align: left;
}

.news-card h3 {
  text-transform: uppercase;
  font-weight: 700;
  font-size: clamp(0.8rem, 1.5vw, 1.1rem);
}

.news-card p {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.75rem;
  opacity: 0.5;
}

/* ===================== LISTEN BUTTON ===================== */
#listen-line1-wrap {
  position: relative;
  z-index: 2;
  padding: 4em 1em 0;
}

#listen-section {
  position: relative;
  z-index: 4;
  padding: 0 1em 4em;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.listen-title {
  width: 100%;
  margin-bottom: 1.5em;
  line-height: 0.95;
}

.listen-title .line-1 {
  text-transform: uppercase;
  font-weight: 500;
  font-size: clamp(4rem, 12vw, 10rem);
  text-align: left;
  overflow: hidden;
}

.listen-title .line-2 {
  text-transform: uppercase;
  font-weight: 500;
  font-size: clamp(4rem, 12vw, 10rem);
  text-align: right;
  margin-top: -13vw;
  overflow: hidden;
}

.listen-logos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0 1em;
}

.listen-logo-cell {
  padding: 1em;
}

.listen-logo-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  padding: 2.5em 3em;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(255,255,255,0.3), inset 0 0 10px rgba(255,255,255,0.1);
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.listen-logo-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #fff;
  clip-path: circle(0% at var(--mx, 50%) var(--my, 50%));
  transition: clip-path 0.7s cubic-bezier(0.65, 0, 0.35, 1);
}

.listen-logo-btn:hover::before {
  clip-path: circle(150% at var(--mx, 50%) var(--my, 50%));
}

.listen-logo-btn:hover {
  border-color: #fff;
  box-shadow: 0 0 10px rgba(255,255,255,0.5), inset 0 0 10px rgba(255,255,255,0.15);
}

.listen-logo-btn img {
  position: relative;
  z-index: 1;
  height: 2.5em;
  width: auto;
  filter: brightness(0) invert(1);
  mix-blend-mode: difference;
}

/* ===================== UPCOMING EVENTS ===================== */
#events-line1-wrap {
  position: relative;
  z-index: 4;
  padding: 1em 1em 0;
}

#events-line2-wrap {
  position: relative;
  z-index: 4;
  padding: 0 1em;
  margin-top: -5vw;
}

#events {
  position: relative;
  z-index: 6;
  padding: 0 1em 4em;
}

.events-title {
  width: 100%;
  margin-bottom: 2em;
}

.events-title .line-1 {
  text-transform: uppercase;
  font-weight: 500;
  font-size: clamp(4rem, 12vw, 10rem);
  text-align: left;
  overflow: hidden;
}

.events-title .line-2 {
  text-transform: uppercase;
  font-weight: 500;
  font-size: clamp(4rem, 12vw, 10rem);
  text-align: right;
  overflow: hidden;
}

.events-grid {
  display: flex;
  gap: 1em;
  padding: 1em;
}

.event-card {
  flex: 1;
  position: relative;
  border: none;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 2/3.5;
  box-shadow: 0 0 30px rgba(255,255,255,0.4), 0 0 60px rgba(255,255,255,0.2), 0 0 100px rgba(255,255,255,0.1);
}

.event-glass {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 0;
}

.event-glass-fill {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.event-date-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.event-date-hover {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.event-card:hover .event-glass-fill {
  display: none;
}

.event-card:hover .event-glass {
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

.event-card:hover .event-date-glow {
  display: none;
}

.event-card:hover .event-date-hover {
  opacity: 1;
}


.event-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.event-card:hover .event-img {
  opacity: 1;
}

.event-img::after {
  content: '';
  position: absolute;
  inset: 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  mask-image: linear-gradient(to bottom, black 0%, black 25%, transparent 55%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 25%, transparent 55%);
  z-index: 1;
}

.event-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5em;
}

.event-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8em;
  text-align: left;
  min-height: 8em;
}

.event-title {
  text-transform: uppercase;
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: #fff;
  transition: color 0.4s ease;
}

.event-card:hover .event-title {
  color: #fff;
}

.event-venue {
  text-transform: uppercase;
  font-weight: 500;
  font-size: clamp(0.7rem, 1.2vw, 0.9rem);
  opacity: 0.5;
  margin-top: -0.5em;
}

.event-link {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  padding: 0.6em 1.8em;
  font-size: 1rem;
  text-transform: capitalize;
  font-weight: 500;
  transition: background 0.4s ease, border-color 0.4s ease;
}

.event-card:hover .event-link {
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}

.event-date {
  text-align: center;
}

.event-date .month {
  text-transform: uppercase;
  font-weight: 700;
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  letter-spacing: 0.1em;
}

.event-date .day {
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 0.9;
  margin-top: 0.1em;
}

.event-date .month,
.event-date .day {
  color: transparent;
}




/* ===================== DISCO ===================== */
#disco {
  position: relative;
  z-index: 10;
  min-height: 390vh;
}

#disco-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#disco-logo {
  position: absolute;
  width: 350px;
  filter: drop-shadow(0 0 40px rgba(255,255,255,0.8)) drop-shadow(0 0 80px rgba(255,255,255,0.4));
  z-index: 2;
}

.album-track {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  pointer-events: none;
}

.album-card {
  position: absolute;
  width: 380px;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(255,255,255,0.15);
  pointer-events: auto;
  transition: filter 0.3s;
  padding: 1em;
}

.album-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.album-card .album-info {
  padding: 0.8em 0 0;
}

.album-card .album-title {
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  font-size: 0.9rem;
}

.album-card .album-date {
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  margin-top: 0.3em;
}

/* ===================== ALBUM DESCRIPTION ===================== */
#album-desc {
  position: absolute;
  bottom: 1em;
  right: 1em;
  left: 1em;
  z-index: 4;
  pointer-events: none;
}

.album-desc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

#album-desc-text {
  grid-column: 5;
  color: #A6A6A6;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.desc-word {
  display: inline-block;
  transform: translateY(100%) rotate(6deg);
  opacity: 0;
  filter: blur(4px);
  transition: transform 0.8s cubic-bezier(0.075, 0.82, 0.165, 1),
              opacity 0.5s cubic-bezier(0.075, 0.82, 0.165, 1),
              filter 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
}

#album-desc-text.visible .desc-word {
  transform: translateY(0) rotate(0deg);
  opacity: 1;
  filter: blur(0px);
}

/* ===================== BOOKING ===================== */
#booking {
  position: relative;
  z-index: 10;
  padding: 6em 1em;
}

.booking-title {
  width: 100%;
  margin-bottom: 4em;
  line-height: 0.95;
}

.booking-title .line-1 {
  position: relative;
  z-index: 10;
  text-transform: uppercase;
  font-weight: 500;
  font-size: clamp(4rem, 12vw, 10rem);
  text-align: left;
  overflow: hidden;
}

.booking-title .line-2 {
  position: relative;
  z-index: 10;
  text-transform: uppercase;
  font-weight: 500;
  font-size: clamp(4rem, 12vw, 10rem);
  text-align: right;
  overflow: hidden;
}

.booking-title .line-3 {
  text-align: left;
  margin-top: 6em;
}

.booking-btn {
  display: inline-block;
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  font-size: clamp(1.5rem, 4vw, 3.5rem);
  padding: 0.08em 2em;
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.booking-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #fff;
  clip-path: circle(0% at var(--mx, 50%) var(--my, 50%));
  transition: clip-path 0.7s cubic-bezier(0.65, 0, 0.35, 1);
}

.booking-btn:hover::before {
  clip-path: circle(150% at var(--mx, 50%) var(--my, 50%));
}

.booking-btn span {
  position: relative;
  z-index: 1;
  mix-blend-mode: difference;
}

.booking-btn:hover {
  border-color: #fff;
  box-shadow: 0 0 30px rgba(255,255,255,0.5), 0 0 60px rgba(255,255,255,0.3);
}


/* ===================== FOOTER ===================== */
#footer {
  position: relative;
  z-index: 12;
  overflow: hidden;
}

#footer-flower-trail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

#footer-content {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  width: 100%;
  padding: 3em 2em;
  padding-bottom: 0;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3em;
  align-items: start;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}

.footer-email {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: 0.05em;
}

.footer-email:hover {
  opacity: 0.8;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.2em;
}

.footer-nav a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-social {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1em;
  justify-self: end;
  align-self: center;
}

.footer-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  letter-spacing: 0.08em;
  padding: 1.2em 3em;
  will-change: transform;
  text-shadow: 0 0 8px rgba(255,255,255,0.6);
  box-shadow: 0 0 10px rgba(255,255,255,0.3), inset 0 0 10px rgba(255,255,255,0.1);
  transition: box-shadow 0.4s ease, border-color 0.4s ease, text-shadow 0.4s ease;
}

.footer-social-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #fff;
  clip-path: circle(0% at var(--mx, 50%) var(--my, 50%));
  transition: clip-path 0.7s cubic-bezier(0.65, 0, 0.35, 1);
}

.footer-social-btn:hover::before {
  clip-path: circle(150% at var(--mx, 50%) var(--my, 50%));
}

.footer-social-btn span {
  position: relative;
  z-index: 1;
  mix-blend-mode: difference;
}

.footer-social-btn:hover {
  text-shadow: none;
  border-color: #fff;
  box-shadow: 0 0 10px rgba(255,255,255,0.5), inset 0 0 10px rgba(255,255,255,0.15);
}

.footer-logo {
  margin-top: 0.5em;
  width: 100%;
  max-height: 25vw;
  overflow: hidden;
  position: relative;
}

.footer-logo img {
  width: 100%;
  height: auto;
  filter: url(#hero-breathe) brightness(0) invert(1);
}

.footer-bottom {
  text-align: center;
  padding: 2em 1em 1em;
  font-size: 0.8rem;
  opacity: 0.5;
}

/* ===================== LINE REVEAL ANIMATION ===================== */
.line-char {
  display: inline-block;
  transform: translateY(120%) rotate(12deg) scale(0.8);
  opacity: 0;
  filter: blur(10px);
  will-change: transform, opacity, filter;
  transition: transform 1.4s cubic-bezier(0.075, 0.82, 0.165, 1),
              opacity 1s cubic-bezier(0.075, 0.82, 0.165, 1),
              filter 1.2s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-delay: var(--delay-out);
}

.line-char.whitespace {
  width: 0.3em;
}

.line-revealed .line-char {
  transform: translateY(0) rotate(0deg) scale(1);
  opacity: 1;
  filter: blur(0px);
  transition-delay: var(--delay-in);
}

/* ===================== BUTTON SPREAD REVEAL ===================== */
.listen-logo-cell {
  clip-path: inset(0 50%);
  opacity: 0;
  transition: clip-path 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.listen-logo-cell.spread-visible {
  clip-path: inset(0 0);
  opacity: 1;
}

.booking-title .line-3 {
  clip-path: inset(0 50%);
  opacity: 0;
  transition: clip-path 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-title .line-3.spread-visible {
  clip-path: inset(0 0);
  opacity: 1;
}


/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
  .events-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-left {
    align-items: center;
  }

  .footer-social {
    justify-self: center;
  }



  .album-card {
    width: 160px;
  }
}
