:root {
  --bg: #050509;
  --panel: #0B0D12;
  --text: #F5F5F7;
  --text-muted: #B7BDC7;
  --border: rgba(255,255,255,0.10);
  --accent: #AFC7E3;
  --accent-secondary: #C7CBD0;
  --highlight: #E8C68B;
  --max-width: 1180px;
  --radius-xl: 24px;
  --shadow-soft: 0 24px 60px rgba(0,0,0,0.35);

  --brand-pill-bg: rgba(0, 0, 0, 0.35);
  --brand-pill-border: rgba(255, 255, 255, 0.18);

  --dropdown-bg: rgba(15, 15, 15, 0.68);
  --dropdown-border: rgba(255, 255, 255, 0.12);
  --dropdown-shadow-1: rgba(0, 0, 0, 0.35);
  --dropdown-shadow-2: rgba(255, 255, 255, 0.05);
  --dropdown-blur: 14px;
  --dropdown-sat: 130%;

  --dropdown-item-hover-bg: rgba(255, 255, 255, 0.06);
  --dropdown-item-hover-glow:
    0 0 1px rgba(255, 255, 255, 0.20),
    inset 0 0 4px rgba(255, 255, 255, 0.05);

  --nav-link-bg: rgba(175, 199, 227, 0.00);
  --nav-link-hover-bg: rgba(175, 199, 227, 0.07);
  --nav-link-hover-border: rgba(175, 199, 227, 0.16);
  --nav-link-active-bg: rgba(175, 199, 227, 0.10);
  --nav-link-active-border: rgba(175, 199, 227, 0.24);
  --nav-link-text: rgba(245,245,247,0.88);
  --nav-link-hover-text: #EAF3FF;
}

* { box-sizing: border-box; }
html,
body {
  overflow-x: clip;
}

html {
  color-scheme: dark;
  background: #000;
  min-height: 100%;
  overscroll-behavior-y: none;
}

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background-color: #000;
  background:
    radial-gradient(circle at top, rgba(175,199,227,0.08), transparent 32%),
    linear-gradient(180deg, #07090d 0%, var(--bg) 38%, #040407 100%);
  color: var(--text);
  line-height: 1.45;
  overscroll-behavior-y: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: #000;
}

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

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

/* ==========================================================================
   Nav shell
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 56px;
  background: transparent;
  border-bottom: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 11, 12, 0.92), rgba(11, 11, 12, 0.75));
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  z-index: 0;
  pointer-events: none;
}

.nav-shell {
  position: relative;
  z-index: 1;
  width: calc(100% - 32px);
  max-width: none;
  margin-left: auto;
  margin-right: 16px;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  padding-right: 0;
}

/* ==========================================================================
   Brand pill
   ========================================================================== */

.brand {
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: 0.16em;
  font-size: 14px;
  padding: 8px 14px;
  border: 1px solid var(--brand-pill-border);
  border-radius: 999px;
  background: var(--brand-pill-bg);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.brand-shell {
  position: fixed;
  top: 14px;
  left: 16px;
  z-index: 1100;
  display: inline-block;
}

.brand-shell::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 18px;
  pointer-events: auto;
  background: transparent;
}

.brand-shell .brand::after {
  content: "▼";
  font-size: 10px;
  margin-left: 1px;
  opacity: 0.85;
}

.brand-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  min-width: 100%;
  margin: 0;
  padding: 8px 10px;
  list-style: none;
  background: var(--dropdown-bg);
  backdrop-filter: blur(var(--dropdown-blur)) saturate(var(--dropdown-sat));
  -webkit-backdrop-filter: blur(var(--dropdown-blur)) saturate(var(--dropdown-sat));
  border-radius: 10px;
  border: 1px solid var(--dropdown-border);
  box-shadow:
    0 10px 30px var(--dropdown-shadow-1),
    0 0 0 1px var(--dropdown-shadow-2);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.brand-dropdown li {
  text-align: left;
}

.brand-dropdown a {
  display: block;
  padding: 10px 14px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--text);
  opacity: 0.75;
  border-radius: 8px;
  transform: translateY(0);
  transition:
    transform 200ms cubic-bezier(.22, .61, .36, 1),
    background 180ms ease,
    color 180ms ease,
    box-shadow 220ms ease;
  text-align: left;
}

.brand-dropdown a:hover {
  background: var(--dropdown-item-hover-bg);
  color: var(--text);
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: var(--dropdown-item-hover-glow);
}

.brand-shell:hover .brand-dropdown,
.brand-shell.open .brand-dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ==========================================================================
   Top nav links
   ========================================================================== */

.site-nav {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav li {
  list-style: none;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 2px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-family: Inter, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 160ms ease, opacity 160ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 1px;
  background: #72F5C8;
  opacity: 0.9;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
  pointer-events: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: #ffffff;
  outline: none;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

/* ==========================================================================
   Page shell
   ========================================================================== */

.page-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 72px 0 96px;
}

.hero {
  padding: 36px 0 28px;
  max-width: 860px;
}

.hero--tight {
  padding-bottom: 16px;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-secondary);
}

h1 {
  margin: 0;
  font-family: Sora, Inter, system-ui, sans-serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-copy {
  margin: 18px 0 0;
  max-width: 760px;
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  line-height: 1.75;
  color: var(--text-muted);
}

/* ==========================================================================
   Shared content blocks
   ========================================================================== */

.section-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  padding-top: 22px;
}

.card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  box-shadow: var(--shadow-soft);
}

.card h2 {
  margin: 0 0 10px;
  font-family: Sora, Inter, system-ui, sans-serif;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

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

/* ==========================================================================
   Contact form
   ========================================================================== */

.contact-wrap {
  max-width: 760px;
}

.contact-form {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  box-shadow: var(--shadow-soft);
}

.field + .field {
  margin-top: 18px;
}

label {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-secondary);
  font-size: 0.95rem;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.22);
  color: var(--text);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(175,199,227,0.12);
  background: rgba(0,0,0,0.30);
}

textarea {
  resize: vertical;
  min-height: 180px;
}

.field-meta,
.form-status {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.form-actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  background: #15161a;
  color: var(--text);
  border: 1px solid var(--border);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn--ghost {
  background: transparent;
}

/* ==========================================================================
   Utilities
   ========================================================================== */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* ==========================================================================
   Mobile nav / slide-out menu
   ========================================================================== */

.mobile-menu-toggle {
  position: fixed;
  right: 27px;
  bottom: 16px;
  padding: 9px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 10, 10, 0.92);
  color: var(--text);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1200;
  box-shadow:
    0 0 1px rgba(255, 255, 255, 0.2),
    0 0 10px rgba(0, 0, 0, 0.85);
}

.mobile-menu-toggle .mobile-menu-label {
  pointer-events: none;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 1190;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease-out;
}

.mobile-nav.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.mobile-nav.is-open .mobile-nav-backdrop {
  opacity: 1;
}

.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(280px, 80vw);
  height: 100%;
  background: rgba(10, 10, 10, 0.96);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: -12px 0 32px rgba(0, 0, 0, 0.75);
  display: flex;
  flex-direction: column;
  padding: 16px 16px 18px;
  transform: translateX(100%);
  transition: transform 260ms cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}

.mobile-nav.is-open .mobile-nav-panel {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}

.mobile-nav-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  text-shadow:
    0 0 4px rgba(255, 255, 255, 0.28),
    0 0 12px rgba(255, 255, 255, 0.22);
}

.mobile-nav-close {
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.mobile-nav-inner {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  margin-left: -16px;
  padding-left: 16px;
  margin-right: -16px;
  padding-right: 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.mobile-nav-inner::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0 10px 0 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.mobile-nav-list::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.mobile-nav-list > li > a,
.mobile-sub-toggle {
  display: block;
  width: calc(100% - 16px);
  margin-right: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 17px;
  letter-spacing: 0.02em;
  color: var(--text);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 160ms ease;
  box-sizing: border-box;
}

.mobile-nav-list > li > a:hover,
.mobile-sub-toggle:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

body.mobile-nav-open {
  overflow: hidden;
}

.mobile-nav-socials {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex-shrink: 0;
}

.mobile-social-heading {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.mobile-social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding-right: 12px;
}

.mobile-social-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 16px;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 160ms ease,
    opacity 140ms ease;
}

.mobile-artist {
  display: flex;
  flex-direction: column;
}

.mobile-sub-toggle {
  all: unset;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: calc(100% - 16px);
  margin-right: 10px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 17px;
  letter-spacing: 0.02em;
  color: var(--text);
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 160ms ease;
}

.mobile-artist.no-dropdown .mobile-sub-toggle {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transform: none;
}

.mobile-artist.no-dropdown .mobile-sub-toggle:hover {
  transform: none;
}

.caret {
  font-size: 20px;
  opacity: 0.8;
  transform-origin: center;
  transition: transform 200ms cubic-bezier(.22,.61,.36,1);
}

.mobile-artist.open .caret {
  transform: rotate(180deg);
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.2);
}

.mobile-artist.no-dropdown .caret {
  display: none;
}

.mobile-submenu {
  list-style: none;
  margin: 0;
  padding-left: 6px;
  padding-right: 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 420ms cubic-bezier(.22,.61,.36,1),
    opacity 220ms ease-out,
    transform 420ms cubic-bezier(.22,.61,.36,1);
  transform: translateY(-4px);
}

.mobile-artist.open .mobile-submenu {
  max-height: 300px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 8px;
}

.mobile-submenu a {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 16px;
  color: var(--text);
}

.mobile-close-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
  padding-right: 12px;
  flex-shrink: 0;
}

.mobile-menu-toggle.internal-menu {
  position: static;
  right: auto;
  bottom: auto;
  display: flex;
  width: fit-content;
  padding: 9px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: var(--text);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 1px rgba(255, 255, 255, 0.2),
    0 0 10px rgba(0, 0, 0, 0.85);
  margin: 0;
}

/* ==========================================================================
   Mobile nav media queries
   ========================================================================== */

@media (max-width: 1024px) {
  .site-header .site-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .mobile-menu-toggle.internal-menu {
    display: none;
  }

  body.mobile-nav-open .mobile-menu-toggle:not(.internal-menu) {
    display: none;
  }

  body.mobile-nav-open .mobile-menu-toggle.internal-menu {
    display: inline-flex;
  }

  .brand-shell:hover .brand-dropdown {
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
  }

  .brand-shell.open .brand-dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  body {
    padding-bottom: 32px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .mobile-nav-panel {
    width: min(400px, 72vw);
  }

  .mobile-nav-title {
    font-size: 16px;
    letter-spacing: 0.22em;
  }

  .mobile-nav-close {
    font-size: 30px;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-nav-list > li > a,
  .mobile-sub-toggle {
    padding: 14px 22px;
    font-size: 18px;
  }

  .mobile-submenu a {
    padding: 12px 10px 12px 20px;
    font-size: 17px;
    border-radius: 999px;
    column-gap: 2px;
  }

  .mobile-social-pill {
    padding: 11px 20px;
    font-size: 17px;
    border-radius: 18px;
  }

  .mobile-social-heading {
    font-size: 12px;
    letter-spacing: 0.24em;
  }

  .mobile-nav-inner {
    padding-top: 10px;
    padding-bottom: 70px;
  }

  .mobile-menu-toggle.internal-menu {
    padding: 8px 26px;
    font-size: 13px;
  }

  .caret {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: calc(25px + env(safe-area-inset-bottom, 0px));
  }

  .page-shell {
    padding: 56px 0 72px;
  }

  .hero {
    padding: 24px 0 20px;
  }

  h1 {
    font-size: clamp(2.2rem, 8vw, 3.4rem);
    line-height: 1;
  }

  .footer {
    padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  }

  .mobile-menu-toggle {
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 430px) {
  .page-shell {
    width: min(calc(100% - 24px), var(--max-width));
    padding: 48px 0 64px;
  }

  .hero {
    padding: 20px 0 16px;
  }

  h1 {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
    line-height: 1.02;
    letter-spacing: -0.035em;
  }

  .hero-copy {
    margin-top: 14px;
    font-size: 0.98rem;
    line-height: 1.65;
  }
}


.mobile-nav-socials:empty {
  display: none;
}

.mobile-nav-brandmark {
  position: relative;
  margin-top: auto;
  padding: 18px 12px 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.mobile-nav-brandmark::before {
  content: "";
  position: absolute;
  top: 45px;
  left: 12px;
  right: 12px;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.mobile-nav-brandmark img {
  display: block;
  max-width: 165px;
  width: 100%;
  height: auto;
  opacity: 0.14;
  transform: translateY(25px);
}

.mobile-close-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 2px;
  padding-right: 12px;
  flex-shrink: 0;
}




.mobile-nav-list > li > a.is-active,
.mobile-nav-list > li > a[aria-current="page"] {
  color: #ffffff;
  border-color: rgba(114, 245, 200, 0.32);
  background: rgba(114, 245, 200, 0.05);
  box-shadow:
    0 0 0 1px rgba(114, 245, 200, 0.08),
    0 0 18px rgba(114, 245, 200, 0.14),
    inset 0 0 12px rgba(255, 255, 255, 0.02);
}