
:root {
  --midnight: #0b1a2b;
  --evergreen: #1c3b4d;
  --glacier: #bcd6e6;
  --frost: #e8f2f8;
  --champagne: #c9b58a;
  --cranberry: #b24a40;
  --text-main: #f5f9ff;
  --text-muted: rgba(231, 241, 249, 0.86);
  --surface: rgba(14, 30, 44, 0.72);
  --surface-soft: rgba(232, 242, 248, 0.14);
  --border: rgba(188, 214, 230, 0.35);
  --font-body: "Cormorant Garamond", "Cardo", "EB Garamond", serif;
  --font-accent: "IM Fell English SC", "Cinzel", serif;
  --font-display: "Cinzel", "IM Fell English SC", serif;
  --font-quote: "IM Fell English SC", "Cinzel", serif;
}

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

html {
  position: relative;
  min-height: 100%;
}

html::after {
  content: "";
  position: fixed;
  inset: 6px;
  border-radius: 18px;
  border: 2px solid transparent;
  border-image: linear-gradient(130deg, rgba(188, 214, 230, 0.95), rgba(201, 181, 138, 0.85), rgba(28, 59, 77, 0.9)) 1;
  box-shadow: 0 0 0 5px rgba(8, 18, 28, 0.6), 0 0 32px rgba(188, 214, 230, 0.35);
  pointer-events: none;
  z-index: 100;
  mix-blend-mode: screen;
}

body {
  position: relative;
  font-family: var(--font-body);
  background-color: #0c2031;
  color: var(--text-main);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Celestial photo overlay with a tinted veil */
body::before {
  content: "";
  position: fixed;
  inset: 6px;
  z-index: -2;
  background:
    radial-gradient(520px 380px at 12% 12%, rgba(178, 74, 64, 0.28), transparent 65%),
    radial-gradient(480px 360px at 88% 8%, rgba(201, 181, 138, 0.22), transparent 60%),
    linear-gradient(145deg, rgba(9, 21, 32, 0.9), rgba(24, 52, 70, 0.6), rgba(8, 18, 28, 0.92)),
    url("assets/iStock-1733748948.jpg") center/cover no-repeat;
  background-attachment: fixed;
  filter: saturate(1.08);
  opacity: 0.92;
  border-radius: 18px;
}

/* Star field overlay */
body::after {
  content: "";
  position: fixed;
  inset: 6px;
  pointer-events: none;
  background-image:
    radial-gradient(2px 2px at 20% 20%, rgba(232, 242, 248, 0.4), transparent),
    radial-gradient(1.5px 1.5px at 70% 10%, rgba(232, 242, 248, 0.28), transparent),
    radial-gradient(1.8px 1.8px at 10% 80%, rgba(232, 242, 248, 0.33), transparent),
    radial-gradient(1px 1px at 60% 60%, rgba(232, 242, 248, 0.22), transparent),
    radial-gradient(2.6px 2.6px at 28% 62%, rgba(255, 255, 255, 0.25), transparent),
    radial-gradient(2px 2px at 76% 42%, rgba(255, 255, 255, 0.22), transparent),
    radial-gradient(1.6px 1.6px at 44% 84%, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0.35;
  z-index: -1;
  mix-blend-mode: screen;
  border-radius: 18px;
}

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

header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: linear-gradient(
    to bottom,
    rgba(8, 18, 28, 0.92),
    rgba(12, 28, 40, 0.7),
    transparent
  );
  border-bottom: 1px solid rgba(188, 214, 230, 0.15);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  letter-spacing: 0.16em;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--glacier);
  text-shadow: 0 0 18px rgba(188, 214, 230, 0.35);
}

nav ul {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-variant: small-caps;
  font-family: var(--font-accent);
}

nav a {
  position: relative;
  opacity: 0.8;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--glacier), var(--champagne));
  transition: width 0.2s ease-out;
}

nav a:hover::after {
  width: 100%;
}

main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3.5rem;
}

section {
  padding: 3.5rem 0;
  scroll-margin-top: 96px;
}

.js main section {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition-delay: var(--delay, 0s);
}

.js main section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js main section:nth-of-type(1) {
  --delay: 0.05s;
}

.js main section:nth-of-type(2) {
  --delay: 0.1s;
}

.js main section:nth-of-type(3) {
  --delay: 0.15s;
}

.js main section:nth-of-type(4) {
  --delay: 0.2s;
}

.js main section:nth-of-type(5) {
  --delay: 0.25s;
}

/* HERO */

.hero {
  min-height: calc(100vh - 70px);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr);
  gap: 2.6rem;
  align-items: center;
  position: relative;
  isolation: isolate;
  overflow: visible;
  border-radius: 18px;
  padding: 1.8rem;
  background: linear-gradient(120deg, rgba(12, 26, 40, 0.86), rgba(18, 38, 54, 0.5));
  border: 1px solid rgba(188, 214, 230, 0.25);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 10% 45% auto -18%;
  width: 360px;
  height: 360px;
  background:
    radial-gradient(circle at 30% 30%, rgba(188, 214, 230, 0.24), transparent 55%),
    radial-gradient(circle at 72% 62%, rgba(201, 181, 138, 0.25), transparent 60%),
    radial-gradient(circle at 54% 42%, rgba(28, 59, 77, 0.3), transparent 65%);
  filter: blur(55px);
  opacity: 0.85;
  pointer-events: none;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 22, 34, 0.25), rgba(10, 22, 34, 0.65));
  z-index: -3;
  pointer-events: none;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.8rem;
  color: var(--champagne);
  margin-bottom: 0.75rem;
  font-family: var(--font-accent);
  font-variant: small-caps;
}

.hero h1 {
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  text-transform: none;
  margin-bottom: 0.9rem;
  text-shadow: 0 0 28px rgba(188, 214, 230, 0.35);
}

.hero-title {
  display: block;
  font-size: clamp(2.5rem, 4.2vw, 3.4rem);
  color: var(--frost);
}

.hero-byline {
  display: block;
  margin-top: 0.5rem;
  font-family: var(--font-accent);
  font-size: 0.95rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--champagne);
}

.hero-right {
  position: relative;
  justify-self: center;
  width: min(360px, 100%);
  aspect-ratio: 1 / 1;
  border-radius: 1.4rem;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(201, 181, 138, 0.35);
  box-shadow: 0 18px 45px rgba(9, 20, 30, 0.55);
  background: linear-gradient(150deg, rgba(232, 220, 198, 0.22), rgba(135, 112, 84, 0.26));
}

.hero-right::before {
  content: "";
  position: absolute;
  inset: 0.6rem;
  border-radius: 1.02rem;
  background: url("assets/album_art.jpg") center/cover no-repeat;
  background-color: #0c2031;
  box-shadow: 0 12px 28px rgba(8, 18, 28, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.hero-sub {
  font-size: 1.05rem;
  max-width: 32rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.btn {
  border-radius: 999px;
  padding: 0.75rem 1.6rem;
  border: 1px solid transparent;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-variant: small-caps;
  font-family: var(--font-accent);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out,
    background 0.15s ease-out, border-color 0.15s ease-out;
  background: transparent;
  color: var(--text-main);
  text-shadow: 0 0 12px rgba(188, 214, 230, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--evergreen), #4f7c96, var(--champagne));
  box-shadow: 0 12px 40px rgba(8, 18, 28, 0.55);
}

.btn-outline {
  border-color: rgba(188, 214, 230, 0.6);
  background: rgba(12, 26, 40, 0.65);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 50px rgba(8, 18, 28, 0.7);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.meta-pill {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(188, 214, 230, 0.4);
  background: rgba(232, 242, 248, 0.12);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--font-accent);
  color: var(--frost);
}

/* GENERIC SECTION STYLES */

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.8rem;
  font-family: var(--font-accent);
  color: var(--champagne);
  margin-bottom: 0.7rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.7rem;
  text-shadow: 0 0 18px rgba(188, 214, 230, 0.25);
}

.section-desc {
  font-size: 0.98rem;
  max-width: 34rem;
  color: var(--text-muted);
  margin-bottom: 1.6rem;
}

.section-copy {
  max-width: 34rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 1.6rem;
}

.section-copy p {
  margin-bottom: 1rem;
}

.section-copy p:last-child {
  margin-bottom: 0;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.pill {
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(188, 214, 230, 0.15);
  border: 1px solid rgba(201, 181, 138, 0.4);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: var(--font-accent);
}

/* ABOUT + TRACKLIST */

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: flex-start;
}

.tracklist {
  padding: 1.1rem 1.25rem 1.25rem;
  border-radius: 1.4rem;
  background: linear-gradient(135deg, rgba(15, 32, 46, 0.9), rgba(26, 45, 62, 0.86));
  border: 1px solid var(--border);
  box-shadow: 0 18px 50px rgba(10, 22, 34, 0.6);
  backdrop-filter: blur(12px) saturate(1.2);
  scroll-margin-top: 96px;
}

.tracklist-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(232, 242, 248, 0.8);
  font-family: var(--font-accent);
}
.tracklist-header span:first-child {
  font-family: var(--font-display);
  letter-spacing: 0.22em;
}

.tracklist-meta {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(232, 242, 248, 0.65);
  font-family: var(--font-accent);
  margin-bottom: 0.9rem;
}

.tracklist ol {
  list-style: none;
  counter-reset: track;
  font-size: 0.9rem;
}

.tracklist li {
  counter-increment: track;
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.tracklist li:last-child {
  border-bottom: none;
}

.track-title::before {
  content: counter(track, decimal-leading-zero) " ";
  margin-right: 0.6rem;
  font-size: 0.78rem;
  opacity: 0.7;
}

.track-time {
  font-size: 0.78rem;
  opacity: 0.7;
}

/* PLATFORMS */

.card-grid {
  display: grid;
  gap: 1.4rem;
}

.card-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  border-radius: 1.3rem;
  padding: 1.2rem 1.3rem 1.35rem;
  background: linear-gradient(140deg, rgba(18, 36, 52, 0.88), rgba(24, 44, 60, 0.8));
  border: 1px solid var(--border);
  box-shadow: 0 18px 55px rgba(9, 20, 30, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.8rem;
  backdrop-filter: blur(10px) saturate(1.2);
  overflow: visible;
}

.card-muted {
  background: linear-gradient(140deg, rgba(14, 30, 44, 0.75), rgba(22, 40, 56, 0.68));
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.18rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
  text-shadow: 0 0 16px rgba(188, 214, 230, 0.35);
}

.card-body {
  font-size: 0.9rem;
  opacity: 0.92;
}

.card-footer {
  margin-top: 0.5rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(232, 242, 248, 0.1);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--font-accent);
  color: var(--glacier);
}

.btn-small {
  padding: 0.55rem 1.2rem;
  font-size: 0.8rem;
}

/* PHOTOS */

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

.photo-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.photo-card {
  border-radius: 1.3rem;
  padding: 1rem;
  background: linear-gradient(140deg, rgba(18, 36, 52, 0.86), rgba(24, 44, 60, 0.78));
  border: 1px solid var(--border);
  box-shadow: 0 18px 50px rgba(9, 20, 30, 0.55);
}

.photo-image {
  width: 100%;
  display: block;
  border-radius: 1rem;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 1px solid rgba(188, 214, 230, 0.35);
  background: rgba(12, 26, 40, 0.6);
}

.photo-caption {
  margin-top: 0.7rem;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: var(--font-accent);
  color: rgba(232, 242, 248, 0.72);
}

footer {
  border-top: 1px solid rgba(188, 214, 230, 0.2);
  padding: 1.6rem 1.25rem 2.2rem;
  max-width: 1120px;
  margin: 0 auto;
  font-size: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  color: rgba(231, 241, 249, 0.74);
}

.footer-links {
  display: flex;
  gap: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-family: var(--font-accent);
}

.footer-links a,
.footer-links span {
  opacity: 0.85;
}

.footer-links a {
  text-transform: none;
  letter-spacing: 0.08em;
}

.footer-links a:hover {
  opacity: 1;
}

/* RESPONSIVE */

@media (max-width: 880px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
    padding: 1.4rem;
  }
  .hero-right {
    order: -1;
    width: min(320px, 70vw);
  }
  .two-col {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }
  .card-grid--3 {
    grid-template-columns: minmax(0, 1fr);
  }
  .card-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .card-grid--2 {
    grid-template-columns: minmax(0, 1fr);
  }
  .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  nav ul {
    display: none; /* super simple: hide nav links on mobile */
  }
  main {
    padding: 2rem 1.2rem 3rem;
  }
}

@media (max-width: 640px) {
  .nav-inner {
    padding: 0.85rem 1rem;
  }
  .hero {
    text-align: center;
    gap: 2rem;
    min-height: auto;
    padding: 1.3rem 1rem 1.6rem;
  }
  .hero-title {
    font-size: clamp(2.1rem, 8vw, 2.7rem);
  }
  .hero-byline {
    font-size: 0.85rem;
    letter-spacing: 0.22em;
  }
  .hero-right {
    width: min(280px, 82vw);
  }
  .hero-sub {
    font-size: 1rem;
    margin: 0 auto 1.35rem;
  }
  .hero-buttons {
    justify-content: center;
  }
  .section-title {
    font-size: 1.7rem;
    letter-spacing: 0.06em;
  }
  .section-desc {
    font-size: 0.96rem;
  }
  .card {
    padding: 1rem 1.05rem 1.15rem;
  }
  .tracklist {
    padding: 0.95rem 1rem 1.05rem;
  }
  .pill-row {
    gap: 0.35rem;
  }
  .card-grid--4 {
    grid-template-columns: minmax(0, 1fr);
  }
  .photo-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  main {
    padding: 1.6rem 1rem 2.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .js main section {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn {
    transition: none;
  }
}
