:root {
  --ink: #2f2c28;
  --mist: #85807a;
  --paper: #ffffff;
  --soft: #f4f2ef;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
}

body {
  margin: 0;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  color: var(--ink);
  overflow-x: clip;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 300;
}

img {
  max-width: 100%;
  height: auto;
}

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

.top {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(10px, 1.5vh, 16px);
  padding: clamp(26px, 4.4vh, 48px) clamp(16px, 4vw, 40px) clamp(20px, 3vh, 34px);
  animation: fade-down 0.9s var(--ease) both;
}

.tagline {
  margin: 0;
  font-size: clamp(0.6rem, 0.78vw, 0.72rem);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  white-space: nowrap;
  padding-left: 0.5em;
  color: var(--mist);
  line-height: 1;
}

.wordmark {
  margin: 0;
  font-size: clamp(1.05rem, 2.1vw, 1.75rem);
  font-weight: 300;
  letter-spacing: clamp(0.32em, 1.3vw, 0.56em);
  text-transform: uppercase;
  white-space: nowrap;
  padding-left: clamp(0.32em, 1.3vw, 0.56em);
  line-height: 1.2;
}

.stage {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.band {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  min-height: 240px;
  margin: 0;
  overflow: clip;
  background: var(--soft);
  animation: fade-up 1.1s var(--ease) both 0.12s;
}

.band-image {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.band-image.is-active {
  opacity: 1;
}

.band-pagination {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: clamp(12px, 2.2vh, 22px);
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 2px 5px;
  border-radius: 999px;
  background: rgba(20, 18, 16, 0.28);
  box-shadow: 0 3px 18px rgba(0, 0, 0, 0.16);
  transform: translateX(-50%);
  backdrop-filter: blur(6px);
}

.band-dot {
  position: relative;
  width: 34px;
  height: 34px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.band-dot::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  content: "";
  transform: translate(-50%, -50%);
  transition: background 0.25s ease, transform 0.25s ease;
}

.band-dot.is-active::before {
  background: #ffffff;
  transform: translate(-50%, -50%) scale(1.2);
}

.band-dot:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: -4px;
}

.note {
  flex: 0 0 auto;
  padding: clamp(22px, 3.6vh, 46px) clamp(16px, 4vw, 40px) 0;
  text-align: center;
  animation: fade-up 1.1s var(--ease) both 0.24s;
}

.note-title {
  margin: 0;
  font-size: clamp(0.82rem, 1.15vw, 1rem);
  letter-spacing: 0.36em;
  text-transform: uppercase;
  padding-left: 0.36em;
  line-height: 1.4;
}

.note-text {
  margin: clamp(14px, 2vh, 20px) auto 0;
  max-width: 42ch;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.75;
  color: var(--mist);
}

.foot {
  flex: 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  column-gap: clamp(26px, 6vw, 74px);
  row-gap: 4px;
  padding: clamp(26px, 4.4vh, 52px) clamp(16px, 4vw, 40px) clamp(26px, 4vh, 46px);
  text-align: center;
  animation: fade-up 1.1s var(--ease) both 0.34s;
}

.foot-link {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 2px;
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  letter-spacing: 0.06em;
  color: var(--ink);
  transition: color 0.3s ease;
}

.foot-link:hover {
  color: var(--mist);
}

.foot-icon {
  display: block;
  flex: 0 0 auto;
  color: var(--mist);
  transition: color 0.3s ease;
}

.foot-link:hover .foot-icon {
  color: var(--ink);
}


@keyframes fade-down {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 620px) {
  .wordmark {
    font-size: 1rem;
    letter-spacing: 0.3em;
    padding-left: 0.3em;
  }

  .band {
    min-height: 200px;
  }

  .foot {
    column-gap: 20px;
  }

  .tagline {
    font-size: 0.52rem;
    letter-spacing: 0.4em;
    padding-left: 0.4em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .band-image,
  .band-dot::before {
    transition: none;
  }

  .top,
  .band,
  .note,
  .foot {
    animation: none;
  }
}
