
  :root {
    --bg: #042c36;
    --bg-alt: #ffffff;
    --ivory: #ece5d8;
    --muted: #8d9a9c;
    --brass: #c08552;
    --brass-light: #d9a06c;
    --rule: rgba(236, 229, 216, 0.1);
    --font-display: 'Fraunces', serif;
    --font-body: 'Work Sans', -apple-system, sans-serif;
    --font-mono: 'Space Mono', monospace;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    background-color: var(--bg);
    background-image: radial-gradient(ellipse 900px 500px at 50% -10%, rgba(192, 133, 82, 0.10), transparent 70%);
    color: var(--ivory);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.7;
  }

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

  /* ---------- Header ---------- */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 6%;
	background: #03242d;
  }

  .logo {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--ivory);
    text-decoration: none;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
  }

.logo-icon {
  width: 26px;
  height: auto;
  color: var(--brass-light);
}

.logo-icon svg {
	width: 30px;
	height: auto;
	display: block;
}

  .logo span { color: var(--brass); font-style: normal; }

  .byline {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 1px;
    color: var(--muted);
    margin-top: 0.3rem;
  }

  nav a {
    text-decoration: none;
    color: var(--muted);
    margin-left: 2.5rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.25s;
  }
  nav a:hover { color: var(--brass-light); }

  /* ---------- Staff divider (signature element) ---------- */
  .staff {
    position: relative;
    width: 100%;
    height: 34px;
    margin: 0 auto;
    max-width: 1100px;
    opacity: 0.55;
  }
  .staff svg { width: 100%; height: 100%; display: block; }
  .staff line { stroke: var(--rule); stroke-width: 1; }

  .staff-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0 auto 1rem;
    max-width: 1100px;
    padding: 0 6%;
  }
  .staff-eyebrow span {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    white-space: nowrap;
  }
  .staff-eyebrow .line {
    height: 1px;
    background: var(--rule);
    flex: 1;
  }

  /* ---------- Hero ---------- */
  .hero {
    padding: 5rem 6% 4rem;
    text-align: center;
    position: relative;
  }

	.hero-bg img {
	  position: absolute;
	  inset: 0;
	  width: 100%;
	  height: 100%;
	  object-fit: cover;
	  opacity: 0.18;
	}

	.hero-bg::after {
	  content: '';
	  position: absolute;
	  inset: 0;
	  background: linear-gradient(to bottom, transparent 0%, transparent 45%, var(--bg) 100%);
	}

	.hero-text {
	  position: relative;
	  z-index: 5;
	}

  .hero .kicker {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--brass);
    display: block;
    margin-bottom: 1.6rem;
  }

  .hero h1 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(3rem, 8vw, 5.2rem);
    letter-spacing: 0.5px;
    color: var(--ivory);
    margin-bottom: 0.6rem;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--brass-light);
    font-weight: 400;
  }

  .hero p {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 560px;
    margin: 1.6rem auto 3rem;
    font-weight: 300;
  }

  /* breathing waveform */
  .waveform {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 5px;
    height: 40px;
    margin: 0 auto 2.8rem;
  }
  .waveform .bar {
    width: 3px;
    background: var(--brass);
    opacity: 0.55;
    border-radius: 2px;
    animation: breathe 2.6s ease-in-out infinite;
  }
  .waveform .bar:nth-child(1){height:14px; animation-delay:0s;}
  .waveform .bar:nth-child(2){height:26px; animation-delay:0.15s;}
  .waveform .bar:nth-child(3){height:10px; animation-delay:0.3s;}
  .waveform .bar:nth-child(4){height:34px; animation-delay:0.45s;}
  .waveform .bar:nth-child(5){height:18px; animation-delay:0.6s;}
  .waveform .bar:nth-child(6){height:28px; animation-delay:0.75s;}
  .waveform .bar:nth-child(7){height:12px; animation-delay:0.9s;}
  .waveform .bar:nth-child(8){height:22px; animation-delay:1.05s;}
  .waveform .bar:nth-child(9){height:16px; animation-delay:1.2s;}

  @keyframes breathe {
    0%, 100% { transform: scaleY(1); opacity: 0.4; }
    50% { transform: scaleY(1.6); opacity: 0.85; }
  }

  @media (prefers-reduced-motion: reduce) {
    .waveform .bar { animation: none; }
  }

  .cta-btn {
    display: inline-block;
    background: transparent;
    border: 1px solid var(--brass);
    color: var(--brass-light);
    padding: 0.85rem 2.3rem;
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background 0.25s, color 0.25s;
  }
  .cta-btn:hover {
    background: var(--brass);
    color: #15121b;
  }

  /* ---------- Sections ---------- */
  .section {
    padding: 4rem 6%;
    max-width: 1100px;
    margin: 0 auto;
  }

  .section-head {
    text-align: center;
    margin-bottom: 3.5rem;
  }

  .section-head .kicker {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--brass);
    display: block;
    margin-bottom: 0.8rem;
  }

  .section-head h2 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 2.1rem;
    color: var(--ivory);
  }

  /* ---------- About ---------- */
  .about {
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
	margin-bottom: 3rem;
  }

  .about-portrait {
    flex: 0 0 220px;
    width: 220px;
    height: 220px;
    border-radius: 3px;
    border: 1px solid var(--rule);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
	contain: content;
  }

  .about-portrait img {
    width: auto;
    height: 100%;
  }

  .about-text {
    flex: 1 1;
  }

  .about-text p {
    color: var(--muted);
    font-size: 1.03rem;
    margin-bottom: 1.4rem;
    max-width: 560px;
  }

  .about-text p:first-of-type {
    color: var(--ivory);
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.5;
  }

  /* ---------- Album ---------- */

.album {
	display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.album-artwork a {
    flex: 0 0 220px;
    width: 220px;
    height: 220px;
    border-radius: 3px;
    border: 1px solid var(--rule);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    contain: content;
}

.album-artwork img {
    width: auto;
    height: 100%;
}

.album-text {
    flex: 1 1;
}

.album-text p {
    color: var(--muted);
	font-family: var(--font-display);
	font-style: italic;
	font-size: 1.2rem;
    margin-bottom: 1.4rem;
    max-width: 560px;
	font-weight: 400;
	color: var(--ivory);
}

  /* ---------- Featured Melodies ---------- */
  .track-list {
    display: flex;
    flex-direction: column;
  }

  .track {
    display: flex;
    align-items: baseline;
    gap: 1.8rem;
    padding: 1.7rem 0;
    border-bottom: 1px solid var(--rule);
    transition: padding-left 0.25s;
  }

  .track:hover { padding-left: 0.6rem; }

  .track .num {
    font-family: var(--font-mono);
    color: var(--brass);
    font-size: 1.1rem;
    flex: 0 0 28px;
  }

  .track .info { flex: 1; }

  .track h3 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.25rem;
    color: var(--ivory);
    margin-bottom: 0.35rem;
  }

  .track p {
    color: var(--muted);
    font-size: 0.92rem;
    max-width: 480px;
  }

  .track .duration {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--muted);
    flex: 0 0 auto;
  }

  /* ---------- Platforms ---------- */
  .platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
  }

  .platform-card {
	background: var(--bg-alt);
	border: 1px solid var(--rule);
	padding: 2rem 1.5rem;
	text-align: center;
	border-radius: 3px;
	text-decoration: none;
	color: var(--bg);
	transition: border-color 0.25s, transform 0.25s;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.9rem;
	transition: 0.7s transform;
  }

.platform-card:hover {
  border-color: var(--bg);
  transform: translateY(-3px);
}

.platform-icon {
  width: 40px;
  height: 40px;
  color: var(--brass-light);
  transition: color 0.75s;
}

.platform-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.platform-card:hover .platform-icon {
  color: var(--bg);
}

.platform-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  margin: 0;
}

  /* ---------- Footer ---------- */
  footer {
    text-align: center;
    padding: 3.5rem 6% 3rem;
    color: var(--muted);
    font-size: 0.78rem;
    font-family: var(--font-mono);
    letter-spacing: 0.5px;
	background: #02242e;
  }

  @media (max-width: 768px) {
    header { flex-direction: column; gap: 1.3rem; }
    nav a { margin: 0 0.9rem; }
    .about { flex-direction: column; text-align: center; margin-bottom: 1rem; }
    .about-text p:first-of-type { font-size: 1.15rem; }
    .track { flex-wrap: wrap; }
    .track .duration { display: none; }
  }