* {
  box-sizing: border-box;
}

:root {
  --bg: #eef2f6;
  --bg-2: #f6f8fb;
  --panel: rgba(255, 255, 255, 0.82);
  --panel-strong: rgba(255, 255, 255, 0.93);
  --text: #1f3a56;
  --text-soft: #5f7690;
  --line: rgba(31, 58, 86, 0.1);
  --gold: #d5b24b;
  --gold-soft: rgba(213, 178, 75, 0.15);
  --blue-soft: rgba(96, 156, 220, 0.12);
  --shadow: 0 18px 42px rgba(40, 70, 104, 0.10);
  --shadow-soft: 0 10px 24px rgba(40, 70, 104, 0.08);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Nunito", system-ui, sans-serif;
  color: var(--text);
  background:
    linear-gradient(90deg, #dbe6f2 0%, #eef3f8 12%, #f5f7fa 50%, #eef3ef 88%, #e8efe8 100%);
  padding: 22px 14px 34px;
}

.bg-orb {
  position: fixed;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  filter: blur(64px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

.orb-left {
  background: rgba(125, 174, 227, 0.22);
  top: 18px;
  left: -70px;
}

.orb-right {
  background: rgba(213, 178, 75, 0.14);
  bottom: 24px;
  right: -80px;
}

.page {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  margin: 0 auto;
}

.panel {
  background: var(--panel);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  text-align: center;
  padding: 28px 22px 28px;
  margin-bottom: 16px;
}

.music-lines {
  position: absolute;
  top: 26px;
  left: 26px;
  right: 26px;
  height: 58px;
  opacity: 0.18;
  background:
    repeating-linear-gradient(
      to bottom,
      transparent 0 9px,
      rgba(31, 58, 86, 0.16) 9px 11px
    );
  border-radius: 14px;
}

.logo {
  position: relative;
  width: 108px;
  height: 108px;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
  padding: 5px;
  box-shadow: 0 14px 28px rgba(35, 63, 95, 0.12);
  margin-bottom: 14px;
}

.eyebrow {
  position: relative;
  margin: 0 0 6px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #2e66ab;
}

h1 {
  position: relative;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.55rem, 8vw, 3.5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.intro {
  position: relative;
  width: min(100%, 31ch);
  margin: 16px auto 0;
  font-size: 1.04rem;
  line-height: 1.65;
  color: var(--text-soft);
  font-weight: 600;
}

.hero-notes {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
  font-size: 1.15rem;
  color: rgba(213, 178, 75, 0.92);
}

.links-wrap {
  border-radius: var(--radius-xl);
  padding: 18px 14px 18px;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}

.section-mark {
  font-size: 1.35rem;
  color: var(--gold);
}

h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  line-height: 1;
}

.links {
  display: grid;
  gap: 12px;
}

.band-link {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px 16px;
  border-radius: var(--radius-lg);
  background: var(--panel-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  color: inherit;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.band-link:hover,
.band-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(40, 70, 104, 0.12);
  border-color: rgba(46, 102, 171, 0.18);
}

.band-link:active {
  transform: translateY(0) scale(0.99);
}

.band-link--email {
  background: linear-gradient(180deg, #fffdf9, #fffaf1);
}

.icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(180deg, rgba(219, 234, 247, 0.92), rgba(243, 237, 221, 0.92));
  border: 1px solid rgba(31, 58, 86, 0.06);
}

.icon-wrap svg {
  width: 24px;
  height: 24px;
  fill: #2b5f95;
}

.text {
  min-width: 0;
}

.title {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
}

.desc {
  display: block;
  margin-top: 3px;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--text-soft);
  font-weight: 600;
}

.go {
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-soft), rgba(96, 156, 220, 0.08));
  color: #8d6a14;
  font-size: 0.84rem;
  font-weight: 800;
  white-space: nowrap;
}

.contact-mail {
  margin: 16px 0 2px;
  text-align: center;
  font-size: 0.98rem;
  color: var(--text-soft);
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 480ms ease, transform 480ms ease;
}

@media (min-width: 700px) {
  body {
    padding: 34px 18px 40px;
  }

  .hero {
    padding: 34px 32px 32px;
  }

  .links-wrap {
    padding: 22px 18px 20px;
  }

  .band-link {
    padding: 18px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

  .reveal,
  .reveal.visible {
    opacity: 1 !important;
    transform: none !important;
  }
}
