:root {
  --bg: #040816;
  --bg-2: #0b1426;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.12);
  --text: #f5f1ea;
  --muted: #a8b2c5;
  --accent: #7bb8ff;
  --accent-2: #74ebcd;
  --accent-3: #9b92ff;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 25px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--bg), var(--bg-2));
}

.background {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.24;
  animation: drift 18s ease-in-out infinite alternate;
}

.aurora-one {
  width: 380px;
  height: 380px;
  background: var(--accent);
  top: -90px;
  left: -120px;
}

.aurora-two {
  width: 340px;
  height: 340px;
  background: var(--accent-2);
  right: -90px;
  bottom: -120px;
  animation-duration: 20s;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.65), transparent 85%);
}

.cursor-glow {
  position: fixed;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(123,184,255,0.17), transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 0;
  filter: blur(24px);
  opacity: 0;
  transition: opacity 180ms ease;
}

img {
  max-width: 100%;
  display: block;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0 2.5rem;
}

.site-header {
  position: sticky;
  top: 0.8rem;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.95rem 1.2rem;
  margin-bottom: 1.2rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(7, 11, 22, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text);
  text-decoration: none;
}

.brand-mark {
  width: 14px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  box-shadow: 0 0 26px rgba(123, 184, 255, 0.35);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong {
  font-size: 0.97rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: "Manrope", "Inter", sans-serif;
}

.brand-text small {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

.site-nav {
  display: flex;
  gap: 1.1rem;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.3rem;
  align-items: center;
  padding: 2.2rem 0 2.6rem;
}

.hero-copy h1 {
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(2.3rem, 4.4vw, 4rem);
  line-height: 1.02;
  margin: 0.35rem 0 1rem;
  letter-spacing: -0.035em;
  max-width: 760px;
}

.eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--accent-2);
  margin: 0 0 0.6rem;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 650px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.2rem 0 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.85rem 1.2rem;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #07111f;
  background: linear-gradient(135deg, var(--accent-2), #dffbf7);
}

.button.secondary {
  color: var(--text);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.7rem;
}

.hero-tags span {
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-showcase {
  display: grid;
  gap: 0.9rem;
}

.showcase-card,
.feature-card,
.story-card,
.artist-card,
.catalogue-card,
.contact-form,
.studio-strip,
.quote-section {
  background: linear-gradient(145deg, rgba(255,255,255,0.11), rgba(255,255,255,0.04));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.showcase-card {
  border-radius: 1.4rem;
  padding: 0;
  min-height: 330px;
  position: relative;
  overflow: hidden;
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.05);
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, rgba(3, 8, 15, 0.1), rgba(3, 8, 15, 0.72));
}

.showcase-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

.status-pill {
  color: #07111f;
  background: linear-gradient(135deg, var(--accent-2), #dffbf7);
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0;
}

.showcase-card h2 {
  margin: 1rem 0 0.3rem;
  font-size: 2rem;
}

.showcase-card p {
  color: var(--muted);
  margin: 0;
  line-height: 1.7;
}

.sound-bars {
  display: flex;
  align-items: end;
  gap: 0.42rem;
  height: 120px;
  margin: 1.1rem 0;
}

.sound-bars span {
  flex: 1;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  animation: pulseBars 1.2s ease-in-out infinite alternate;
}

.sound-bars span:nth-child(1) { height: 32px; animation-delay: 0s; }
.sound-bars span:nth-child(2) { height: 60px; animation-delay: 0.08s; }
.sound-bars span:nth-child(3) { height: 92px; animation-delay: 0.16s; }
.sound-bars span:nth-child(4) { height: 72px; animation-delay: 0.24s; }
.sound-bars span:nth-child(5) { height: 104px; animation-delay: 0.32s; }
.sound-bars span:nth-child(6) { height: 44px; animation-delay: 0.4s; }

.showcase-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.showcase-footer span {
  border: 1px solid var(--border);
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.86rem;
}

.floating-note {
  align-self: start;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  color: var(--muted);
  box-shadow: var(--shadow);
}

.studio-strip {
  display: grid;
  grid-template-columns: 1fr 0.9fr 0.9fr;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 1.3rem;
  margin-bottom: 1rem;
  align-items: center;
}

.studio-copy h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  max-width: 640px;
}

.studio-media img {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid var(--border);
  min-height: 240px;
  object-fit: cover;
}

.studio-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  max-width: 520px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 1rem 0 1.8rem;
}

.feature-card {
  border-radius: 1.1rem;
  padding: 1.12rem;
  transition: transform 240ms ease, border-color 240ms ease;
}

.feature-card:hover,
.artist-card:hover,
.story-card:hover,
.catalogue-card:hover {
  transform: translateY(-4px);
  border-color: rgba(123,184,255,0.38);
}

.feature-card h3 {
  margin-top: 0;
  margin-bottom: 0.45rem;
  font-size: 1.08rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.story-section,
.artist-showcase,
.catalogue-section,
.contact-section {
  padding: 1rem 0 0;
}

.section-heading {
  margin-bottom: 1rem;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
}

.story-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1rem;
}

.story-card {
  border-radius: 1.2rem;
  padding: 1.2rem;
  transition: transform 240ms ease, border-color 240ms ease;
}

.story-card p {
  color: var(--muted);
  line-height: 1.8;
}

.story-card--accent {
  background: linear-gradient(135deg, rgba(116,235,205,0.16), rgba(123,184,255,0.11));
}

.story-card h3 {
  margin-top: 0;
}

.story-card ul {
  color: var(--muted);
  padding-left: 1rem;
  line-height: 1.8;
}

.artist-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.artist-card {
  border-radius: 1rem;
  padding: 1.1rem;
  transition: transform 240ms ease, border-color 240ms ease;
  overflow: hidden;
}

.artist-card img {
  width: 100%;
  border-radius: 0.85rem;
  margin-bottom: 0.85rem;
  object-fit: cover;
  min-height: 180px;
}

.artist-card h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
}

.artist-card p {
  color: var(--muted);
  margin: 0;
  line-height: 1.7;
}

.catalogue-card {
  border-radius: 1.25rem;
  padding: 1.28rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  transition: transform 240ms ease, border-color 240ms ease;
}

.catalogue-card h3 {
  margin: 0.2rem 0 0.45rem;
  font-size: 1.45rem;
}

.catalogue-card p {
  color: var(--muted);
  margin: 0;
  max-width: 620px;
  line-height: 1.75;
}

.catalogue-meta {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  color: var(--muted);
  min-width: 182px;
}

.panel-label {
  margin: 0 0 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--accent-2);
  font-size: 0.74rem;
}

.quote-section {
  margin: 1.4rem 0 1rem;
  border-radius: 1.25rem;
  padding: 1.35rem;
  text-align: center;
}

.quote-section blockquote {
  margin: 0;
  font-size: clamp(1.18rem, 1.8vw, 1.6rem);
  line-height: 1.6;
  color: var(--text);
  font-family: "Manrope", "Inter", sans-serif;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
  align-items: start;
  padding-bottom: 2rem;
}

.contact-copy h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.55rem, 2.1vw, 2.1rem);
}

.contact-copy p {
  color: var(--muted);
  line-height: 1.8;
}

.contact-form {
  border-radius: 1.2rem;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  padding: 0.85rem 0.95rem;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(123,184,255,0.3);
  border-color: var(--accent);
}

.site-footer {
  padding: 1rem 0 0.2rem;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--border);
  margin-top: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drift {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(40px, -35px, 0) scale(1.08); }
}

@keyframes pulseBars {
  0% { transform: scaleY(0.72); opacity: 0.82; }
  100% { transform: scaleY(1.05); opacity: 1; }
}

@media (max-width: 900px) {
  .hero,
  .studio-strip,
  .story-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .artist-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    border-radius: 1.12rem;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .feature-grid,
  .artist-row {
    grid-template-columns: 1fr;
  }

  .catalogue-card {
    flex-direction: column;
    align-items: flex-start;
  }
}
