:root {
  --bg-1: #041b2c;
  --bg-2: #0b2d42;
  --bg-3: #123d57;
  --panel: rgba(10, 30, 44, 0.7);
  --panel-strong: rgba(12, 36, 53, 0.9);
  --foam: #d9f2ff;
  --mist: #c0e7ff;
  --sea: #69c0ff;
  --aqua: #6ce8d9;
  --gold: #f6d38c;
  --text: #ebf7ff;
  --muted: #b9dbe9;
  --line: rgba(214, 244, 255, 0.18);
  --shadow: rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top, rgba(64, 122, 174, 0.28), transparent 38%),
    linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 38%, var(--bg-3) 100%);
  color: var(--text);
}

img {
  max-width: 100%;
  display: block;
}

p,
h1,
h2,
h3,
blockquote {
  margin-top: 0;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 60px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  background: rgba(2, 16, 24, 0.2);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sea), var(--aqua));
  color: var(--bg-1);
  box-shadow: 0 0 25px rgba(108, 232, 217, 0.5);
}

.brand-text {
  font-size: 0.85rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  padding: 48px 0 28px;
  align-items: center;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--aqua);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.hero h1 {
  margin-bottom: 18px;
  font-size: clamp(3.5rem, 6vw, 6.25rem);
  line-height: 0.9;
}

.lead {
  max-width: 580px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.subcopy {
  margin-top: 12px;
}

.legal-note {
  margin-top: 18px;
  font-size: 0.9rem;
  color: rgba(185, 219, 233, 0.8);
  font-style: italic;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  background: linear-gradient(135deg, var(--sea), var(--aqua));
  color: var(--bg-1);
  font-weight: 700;
  box-shadow: 0 16px 30px rgba(75, 187, 196, 0.32);
}

.button.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.hero-meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 30px 0 0;
  color: var(--foam);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-meta li {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(14px);
  opacity: 0.7;
}

.orb-one {
  width: 330px;
  height: 330px;
  background: radial-gradient(circle, rgba(96, 208, 255, 0.9), rgba(96, 208, 255, 0.1));
  top: 40px;
  right: 30px;
}

.orb-two {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(108, 232, 217, 0.8), rgba(108, 232, 217, 0.08));
  bottom: 70px;
  left: 20px;
}

.glass-card {
  position: relative;
  z-index: 1;
  width: min(440px, 90%);
  padding: 28px 26px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(16, 38, 53, 0.75), rgba(7, 22, 35, 0.78));
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px var(--shadow);
}

.card-kicker,
.project-label,
.card-tag {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 700;
}

.glass-card h2 {
  margin-bottom: 10px;
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1;
}

.glass-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.section {
  padding-top: 80px;
}

.section-heading {
  margin-bottom: 26px;
}

.section-heading h2 {
  font-size: clamp(2.3rem, 4vw, 4rem);
  margin-bottom: 0;
}

.music-showcase {
  display: grid;
  gap: 24px;
}

.spotify-embed-wrap {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(9, 25, 35, 0.58);
  box-shadow: 0 18px 40px rgba(2, 8, 15, 0.2);
}

.music-grid,
.project-grid,
.connect-grid {
  display: grid;
  gap: 22px;
}

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

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

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

.card,
.project-card,
.connect-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(9, 25, 35, 0.52);
  box-shadow: 0 16px 40px rgba(2, 8, 15, 0.14);
}

.card,
.project-card {
  padding: 24px 22px;
}

.card h3,
.project-card h3 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 3vw, 2.5rem);
}

.card p,
.project-card p {
  color: var(--muted);
  line-height: 1.7;
}

.card a,
.project-card a,
.connect-card {
  display: inline-block;
  margin-top: 14px;
  color: var(--foam);
  text-decoration: none;
  font-weight: 700;
}

.alt {
  position: relative;
}

.quote-section {
  padding-top: 100px;
}

.narrow {
  max-width: 700px;
}

blockquote {
  padding: 30px 28px;
  border-left: 3px solid var(--aqua);
  background: rgba(13, 28, 38, 0.57);
  border-radius: 16px;
  font-size: clamp(1.4rem, 2vw, 2.1rem);
  line-height: 1.4;
  color: var(--text);
  font-family: "Cormorant Garamond", serif;
}

.connect-card {
  padding: 26px 18px;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.connect-card:hover,
.connect-card:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(108, 232, 217, 0.45);
}

@media (max-width: 900px) {
  .hero,
  .music-grid,
  .project-grid,
  .connect-grid {
    grid-template-columns: 1fr;
  }

  .music-showcase {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 22px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    gap: 12px 18px;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: min(100% - 22px, 1180px);
  }

  .brand-text {
    letter-spacing: 0.04em;
  }

  .button {
    width: 100%;
  }
}
