@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&display=swap');

:root {
  --alabaster-grey: #ffffff;
  --powder-blue: #007ea7;
  --pacific-blue: #00a8e8;
  --charcoal-blue: #003459;
  --carbon-black: #00171f;
  --bg: #00171f;
  --bg-soft: #003459;
  --surface: rgba(0, 52, 89, 0.34);
  --surface-strong: rgba(0, 52, 89, 0.52);
  --line: rgba(255, 255, 255, 0.16);
  --text: #ffffff;
  --muted: #00a8e8;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background:
    radial-gradient(circle at 12% 8%, rgba(96, 123, 125, 0.2), transparent 36%),
    radial-gradient(circle at 88% 18%, rgba(170, 174, 142, 0.2), transparent 34%),
    linear-gradient(180deg, var(--carbon-black) 0%, var(--charcoal-blue) 52%, var(--carbon-black) 100%);
  color: var(--text);
  font-family: 'League Spartan', sans-serif;
  min-height: 100vh;
}

a {
  color: inherit;
}

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1220px, 94%);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(27, 27, 30, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 14px;
}

.brand {
  text-decoration: none;
  font-family: 'Anton', sans-serif;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 2.35rem;
  line-height: 1;
  color: var(--alabaster-grey);
  text-shadow: 0 0 12px rgba(88, 164, 176, 0.16);
}

.nav-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--alabaster-grey);
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--pacific-blue);
  border-bottom-color: var(--pacific-blue);
}

main {
  flex: 1;
}

.section-block {
  padding: 54px 0;
  border-bottom: 1px solid rgba(169, 188, 208, 0.08);
}

.hero {
  padding: 68px 0 38px;
}

.hero h1,
h2,
h3 {
  margin: 0;
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.5rem, 7.5vw, 6rem);
  line-height: 0.92;
  color: var(--alabaster-grey);
  text-shadow: 0 5px 18px rgba(27, 27, 30, 0.45);
}

.hero p {
  margin: 14px 0 0;
  max-width: 740px;
  font-size: 1.16rem;
  color: var(--alabaster-grey);
}

.home-page .hero .container {
  text-align: center;
}

.home-page .hero p {
  margin-left: auto;
  margin-right: auto;
}

.home-hero-media {
  margin: 0 auto;
  width: min(980px, 100%);
  position: relative;
}

.home-hero-image {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.home-hero-caption {
  margin: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: var(--alabaster-grey);
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
  font-family: 'Anton', sans-serif;
  letter-spacing: 0.5px;
  pointer-events: none;
}

/* Variant A: clean framed hero */
.hero-variant-a .home-hero-media {
  border: 1px solid rgba(169, 188, 208, 0.28);
  background: rgba(55, 63, 81, 0.18);
  padding: 12px;
}

.hero-variant-a .home-hero-image {
  border-radius: 10px;
  border: 1px solid rgba(88, 164, 176, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.hero-variant-a .home-hero-caption {
  bottom: 14%;
  font-size: clamp(3rem, 10vw, 8rem);
}

/* Variant B: edge-to-edge cinematic */
.hero-variant-b .home-hero-media {
  width: min(1160px, 100%);
}

.hero-variant-b .home-hero-image {
  border-radius: 16px;
  border: 1px solid rgba(169, 188, 208, 0.26);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.32);
}

.hero-variant-b .home-hero-caption {
  left: 24px;
  transform: none;
  bottom: 20px;
  font-size: clamp(2.2rem, 7vw, 5.6rem);
}

/* Variant C: soft spotlight card */
.hero-variant-c .home-hero-media {
  padding: 10px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 168, 232, 0.22), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(0, 126, 167, 0.18), transparent 42%),
    rgba(0, 52, 89, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-variant-c .home-hero-image {
  border-radius: 14px;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.24);
}

.hero-variant-c .home-hero-caption {
  bottom: 16%;
  font-size: clamp(2.8rem, 9vw, 7.2rem);
}

.hero-feel {
  font-weight: 750;
  font-size: 1.1em;
  letter-spacing: 0.6px;
  color: var(--pacific-blue);
}

.hero-photo-option {
  margin: 26px auto 0;
  width: min(980px, 100%);
  border: 1px solid rgba(169, 188, 208, 0.28);
  background: rgba(55, 63, 81, 0.18);
  padding: 14px;
}

.hero-photo-option img {
  width: 100%;
  display: block;
}

.hero-photo-option-b img {
  border-radius: 10px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: 46% 24%;
  border: 1px solid rgba(88, 164, 176, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}


.section-title {
  font-size: clamp(2rem, 4.3vw, 3.35rem);
  text-align: center;
  color: var(--alabaster-grey);
}

.section-sub {
  margin-top: 10px;
  color: var(--muted);
  text-align: center;
  font-size: 1.05rem;
}

.song-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

@media (min-width: 1200px) {
  .song-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .home-page .song-grid {
    grid-template-columns: repeat(3, 220px);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }
}

.more-releases-btn {
  margin: 26px auto 0;
  width: fit-content;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(169, 188, 208, 0.52);
  border-radius: 999px;
  padding: 10px 20px;
  color: var(--alabaster-grey);
  background: var(--surface);
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.more-releases-btn .arrow {
  font-size: 1.1rem;
  line-height: 1;
}

.more-releases-btn:hover {
  border-color: var(--pacific-blue);
  background: rgba(88, 164, 176, 0.22);
  color: var(--alabaster-grey);
}

.tag-filters {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.tag-filter-btn {
  border: 1px solid rgba(169, 188, 208, 0.35);
  background: var(--surface);
  color: var(--alabaster-grey);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: 'League Spartan', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  cursor: pointer;
}

.tag-filter-btn.active,
.tag-filter-btn:hover {
  border-color: var(--pacific-blue);
  color: var(--alabaster-grey);
  background: rgba(88, 164, 176, 0.28);
}

.song-card {
  background: transparent;
}

.cover-btn {
  width: 100%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: transparent;
  color: inherit;
  text-align: left;
}

.cover-art-wrap {
  border: 1px solid rgba(169, 188, 208, 0.2);
  overflow: hidden;
  background: var(--carbon-black);
}

.cover-art {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  -webkit-user-drag: none;
  user-select: none;
  transform: scale(1.01);
  transition: transform 0.25s ease;
}

.cover-overlay {
  display: none;
}

.song-card:hover .cover-art {
  transform: scale(1.05);
}

.song-content {
  padding-top: 10px;
}

.song-title {
  font-family: 'Anton', sans-serif;
  font-size: 1.85rem;
  line-height: 1;
  text-transform: none;
}

.home-page .song-content {
  padding-top: 18px;
}

.home-page .song-title {
  font-size: 1.45rem;
}

.song-year {
  margin-top: 4px;
  font-size: 0.96rem;
  color: var(--powder-blue);
  font-weight: 500;
}

.song-era {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.96rem;
}

.song-tags {
  margin-top: 9px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.song-tag {
  border: 1px solid rgba(169, 188, 208, 0.3);
  border-radius: 999px;
  padding: 4px 9px;
  color: var(--powder-blue);
  font-size: 0.78rem;
  letter-spacing: 0.25px;
  text-transform: uppercase;
}

.stream-panel {
  margin-top: 26px;
  border: 1px solid rgba(169, 188, 208, 0.26);
  background:
    radial-gradient(circle at 12% 14%, rgba(0, 168, 232, 0.18), transparent 36%),
    radial-gradient(circle at 88% 82%, rgba(0, 126, 167, 0.14), transparent 40%),
    linear-gradient(180deg, rgba(55, 63, 81, 0.56), rgba(10, 18, 26, 0.92));
  padding: 38px 24px;
  border-radius: 20px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.26);
}

.pill-list {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.pill {
  text-decoration: none;
  padding: 11px 16px;
  border-radius: 14px;
  border: 1px solid rgba(169, 188, 208, 0.34);
  background: linear-gradient(180deg, rgba(0, 52, 89, 0.5), rgba(0, 23, 31, 0.5));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.pill:hover {
  border-color: var(--pacific-blue);
  background: linear-gradient(180deg, rgba(0, 126, 167, 0.34), rgba(0, 23, 31, 0.58));
  transform: translateY(-1px);
}

.pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pacific-blue);
}

.story {
  max-width: 980px;
  margin: 0 auto;
  color: var(--alabaster-grey);
  font-size: 1.14rem;
  line-height: 1.72;
}

.age-journey {
  margin: 34px auto 0;
  width: min(980px, 100%);
  position: relative;
  min-height: 1260px;
  padding-bottom: 24px;
}

.age-journey-timeline {
  margin: 0;
  padding: 8px 0 0;
  list-style: none;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 84px;
}

.age-journey-wave {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(210px, 26vw);
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.age-journey-wave-path {
  fill: none;
  stroke: #0f89b3;
  stroke-width: 24;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.age-step {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 90px minmax(0, 1fr);
  align-items: center;
  column-gap: 12px;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
  transition-delay: var(--age-step-delay, 0ms);
}

.age-step-copy {
  margin: 0;
  font-size: clamp(1rem, 2.3vw, 2rem);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: 0.1px;
  color: var(--alabaster-grey);
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
  transition-delay: calc(var(--age-step-delay, 0ms) + 120ms);
}

.age-step-left .age-step-copy {
  grid-column: 1;
  text-align: left;
}

.age-step-right .age-step-copy {
  grid-column: 3;
  text-align: left;
}

.age-step-badge {
  grid-column: 2;
  justify-self: center;
  width: clamp(68px, 7.4vw, 86px);
  height: clamp(68px, 7.4vw, 86px);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Anton', sans-serif;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1;
  color: var(--alabaster-grey);
  background: linear-gradient(180deg, #10a8e2 0%, #0698d5 100%);
  border: 2px solid rgba(0, 0, 0, 0.14);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.22);
  opacity: 0;
  transform: scale(0.82);
  transition:
    opacity 0.38s ease,
    transform 0.38s ease;
  transition-delay: var(--age-step-delay, 0ms);
}

.age-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.age-step.is-visible .age-step-copy {
  opacity: 1;
  transform: translateY(0);
}

.age-step.is-visible .age-step-badge {
  opacity: 1;
  transform: scale(1);
}

.story p {
  margin: 0;
}

.story-group {
  margin-bottom: 28px;
}

.story-group h2 {
  margin: 0 0 10px;
  font-family: 'Anton', sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.35px;
  text-transform: uppercase;
  color: var(--powder-blue);
}

.story-group p + p {
  margin-top: 14px;
}

.story-thanks {
  width: 100%;
  margin: 26px auto 0;
  text-align: center;
  font-weight: 800;
  color: var(--pacific-blue);
  letter-spacing: 0.2px;
}

.contact-card {
  max-width: 820px;
  margin: 24px auto 0;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  padding: 22px;
}

.follow-label {
  margin: 0 0 8px;
  color: var(--powder-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  font-size: 0.84rem;
}

.follow-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.follow-row.compact {
  gap: 8px;
}

.follow-col {
  display: grid;
  gap: 8px;
}

.follow-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.follow-link {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(169, 188, 208, 0.26);
  background: rgba(55, 63, 81, 0.22);
  border-radius: 12px;
  padding: 10px 12px;
  min-height: 44px;
  font-weight: 700;
}

.follow-link:hover {
  border-color: var(--pacific-blue);
  color: #eefcff;
}

.follow-link.platform-instagram:hover {
  border-color: #e4405f;
  background: rgba(228, 64, 95, 0.16);
}

.follow-link.platform-facebook:hover {
  border-color: #1877f2;
  background: rgba(24, 119, 242, 0.16);
}

.follow-link.platform-youtube:hover {
  border-color: #ff0000;
  background: rgba(255, 0, 0, 0.14);
}

.follow-link.platform-spotify:hover {
  border-color: #1db954;
  background: rgba(29, 185, 84, 0.14);
}

.follow-link.platform-youtube-music:hover {
  border-color: #ff0033;
  background: rgba(255, 0, 51, 0.14);
}

.follow-link.platform-apple-music:hover {
  border-color: #fa243c;
  background: rgba(250, 36, 60, 0.14);
}

.contact-window {
  max-width: 820px;
  margin: 22px auto 0;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(55, 63, 81, 0.62), rgba(27, 27, 30, 0.94));
  padding: 22px;
  border-radius: 10px;
}

.contact-window .section-title {
  text-align: left;
  font-size: clamp(1.7rem, 3.3vw, 2.45rem);
}

.contact-window-sub {
  text-align: left;
  margin-bottom: 18px;
}

.contact-form {
  display: grid;
  gap: 10px;
}

.contact-form label {
  font-weight: 700;
  letter-spacing: 0.2px;
  color: var(--powder-blue);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(169, 188, 208, 0.34);
  border-radius: 8px;
  background: rgba(27, 27, 30, 0.7);
  color: var(--alabaster-grey);
  font-family: 'League Spartan', sans-serif;
  font-size: 1rem;
  padding: 10px 12px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--pacific-blue);
  box-shadow: 0 0 0 2px rgba(88, 164, 176, 0.2);
}

.contact-submit {
  margin-top: 2px;
  width: fit-content;
  border: 1px solid rgba(169, 188, 208, 0.52);
  border-radius: 999px;
  background: var(--surface);
  color: var(--alabaster-grey);
  padding: 10px 18px;
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  letter-spacing: 0.35px;
  text-transform: uppercase;
  cursor: pointer;
}

.contact-submit:hover {
  border-color: var(--pacific-blue);
  background: rgba(88, 164, 176, 0.24);
}

.contact-help {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-list,
.platform-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.contact-list a,
.platform-list a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(169, 188, 208, 0.26);
  background: rgba(55, 63, 81, 0.22);
  padding: 10px 12px;
}

.contact-list a:hover,
.platform-list a:hover {
  border-color: var(--pacific-blue);
  color: #eefcff;
}

.footer {
  border-top: 1px solid var(--line);
  background: var(--carbon-black);
}

.footer-row {
  min-height: 92px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(169, 188, 208, 0.26);
  background: var(--surface);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.social-btn img {
  width: 16px;
  height: 16px;
}

.footer-copy {
  text-align: right;
  color: var(--powder-blue);
  font-size: 0.92rem;
}

.dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  width: min(440px, 92vw);
  max-height: calc(100vh - 28px);
  background: var(--charcoal-blue);
  color: var(--alabaster-grey);
  border: 1px solid rgba(169, 188, 208, 0.3);
  border-radius: 14px;
  padding: 16px 16px 16px;
}

.dialog::backdrop {
  background: rgba(0, 0, 0, 0.001);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

#platformDialog::backdrop {
  background: rgba(0, 0, 0, 0.001) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 1 !important;
}

.dialog-cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(169, 188, 208, 0.24);
  margin-top: 0;
  -webkit-user-drag: none;
  user-select: none;
}

.dialog-cover-wrap {
  position: relative;
}

.dialog h3 {
  margin: 12px 0;
  font-size: 1.35rem;
  font-family: 'Anton', sans-serif;
  line-height: 1;
  text-align: center;
}

.dialog-video-preview {
  margin: 6px 0 12px;
}

.dialog-video-card {
  position: relative;
  display: block;
  border: 1px solid rgba(169, 188, 208, 0.3);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(55, 63, 81, 0.2);
  text-decoration: none;
}

.dialog-video-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  -webkit-user-drag: none;
  user-select: none;
}

.dialog-video-badge {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--alabaster-grey);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.dialog-video-card:hover {
  border-color: #ff0000;
  box-shadow: 0 0 0 1px rgba(255, 0, 0, 0.35);
}

.dialog-x {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(169, 188, 208, 0.4);
  background: rgba(27, 27, 30, 0.85);
  color: var(--alabaster-grey);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.dialog .platform-list a {
  font-weight: 700;
  background: rgba(55, 63, 81, 0.2);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
  width: 100%;
  justify-content: center;
  text-align: center;
  border-radius: 14px;
  min-height: 48px;
  padding: 11px 14px;
}

.dialog .platform-list {
  margin-top: 0;
  gap: 10px;
}

.dialog .platform-list li {
  width: 100%;
}

.platform-logo {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border-radius: 6px;
  padding: 2px;
  background: #ffffff;
}

.dialog .platform-list a.platform-spotify:hover {
  border-color: #1db954;
  background: rgba(29, 185, 84, 0.16);
  color: #ddffe9;
}

.dialog .platform-list a.platform-youtube-music:hover {
  border-color: #ff0033;
  background: rgba(255, 0, 51, 0.14);
  color: #ffe2e8;
}

.dialog .platform-list a.platform-apple-music:hover {
  border-color: #fa243c;
  background: rgba(250, 36, 60, 0.14);
  color: #ffe5e9;
}

.dialog-info-btn {
  position: absolute;
  right: 10px;
  bottom: 12px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(169, 188, 208, 0.45);
  background: rgba(27, 27, 30, 0.9);
  color: var(--alabaster-grey);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.dialog-info-btn::after {
  content: attr(data-tooltip);
  position: absolute;
  right: 0;
  bottom: calc(100% + 8px);
  white-space: nowrap;
  background: rgba(27, 27, 30, 0.96);
  color: var(--alabaster-grey);
  border: 1px solid rgba(169, 188, 208, 0.38);
  border-radius: 7px;
  padding: 5px 8px;
  font-size: 0.74rem;
  letter-spacing: 0.2px;
  opacity: 0;
  transform: translateY(4px);
  pointer-events: none;
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.dialog-info-btn:hover::after,
.dialog-info-btn:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.dialog-info-panel {
  position: static;
  width: 100%;
  background: rgba(27, 27, 30, 0.98);
  border: 1px solid rgba(169, 188, 208, 0.35);
  border-radius: 12px;
  padding: 14px 14px 12px;
  margin-top: 12px;
  display: none;
}

.dialog-info-panel.is-open {
  display: block;
}

.dialog-info-panel h4 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.dialog-info-panel p {
  margin: 0;
  color: var(--powder-blue);
  line-height: 1.45;
  font-size: 0.98rem;
}

@media (max-width: 880px) {
  .nav {
    padding: 12px 0;
    gap: 10px;
  }

  .brand {
    font-size: 1.95rem;
  }

  .nav-links {
    gap: 16px;
  }

  .nav-links a {
    font-size: 0.76rem;
    padding: 8px 2px;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
  }

  .footer-row {
    grid-template-columns: 1fr;
    padding: 16px 0;
    text-align: center;
  }

  .footer-copy {
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .dialog-info-panel {
    width: 100%;
  }

  .contact-window .section-title,
  .contact-window-sub {
    text-align: center;
  }

  .contact-submit {
    margin-left: auto;
    margin-right: auto;
  }

  .story {
    font-size: 1.07rem;
    line-height: 1.66;
  }

  .story-group h2 {
    font-size: 1.26rem;
  }

  .age-journey {
    width: 100%;
    min-height: 0;
    padding-bottom: 10px;
  }

  .age-journey-wave {
    top: 0;
    width: 98px;
    left: 0;
    right: auto;
    transform: none;
    height: 100%;
  }

  .age-journey-timeline {
    gap: 28px;
    padding-top: 6px;
  }

  .age-step,
  .age-step-left,
  .age-step-right {
    grid-template-columns: 74px minmax(0, 1fr);
    column-gap: 12px;
  }

  .age-step-left .age-step-copy,
  .age-step-right .age-step-copy {
    grid-column: 2;
  }

  .age-step-badge {
    grid-column: 1;
    width: 58px;
    height: 58px;
    font-size: 2rem;
  }

  .follow-row,
  .follow-grid-2 {
    grid-template-columns: 1fr;
  }

  .stream-panel {
    padding: 30px 16px;
    border-radius: 16px;
  }

  .pill-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

}

@media (max-width: 640px) {
  .brand {
    font-size: 1.65rem;
  }

  .nav-links {
    gap: 12px;
  }

  .nav-links a {
    font-size: 0.7rem;
    padding: 8px 2px;
    min-height: 36px;
  }

  .song-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

}
