:root {
  --bg: #050509;
  --bg-elevated: #0f0f17;
  --bg-soft: #151521;
  --border-subtle: #262636;
  --accent: #f97316;
  --accent-soft: rgba(249, 115, 22, 0.15);
  --accent-strong: #fb923c;
  --text-main: #f9fafb;
  --text-muted: #9ca3af;
  --text-soft: #6b7280;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --shadow-soft: 0 18px 60px rgba(0, 0, 0, 0.55);
  --shadow-subtle: 0 10px 30px rgba(0, 0, 0, 0.4);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #111827, #020617 55%, #000 100%);
  color: var(--text-main);
  text-rendering: optimizeLegibility;
}

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

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

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

/* Header / nav */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: linear-gradient(
    to bottom,
    rgba(2, 6, 23, 0.95),
    rgba(2, 6, 23, 0.85),
    transparent
  );
  border-bottom: 1px solid rgba(31, 41, 55, 0.6);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.9rem;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #facc15, #f97316);
  box-shadow: 0 0 0 2px rgba(15, 23, 42, 0.8),
    0 12px 35px rgba(15, 23, 42, 0.9);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.artist-name {
  font-weight: 600;
  letter-spacing: 0.03em;
}

.artist-tagline {
  font-size: 0.8rem;
  color: var(--text-soft);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(75, 85, 99, 0.8);
  color: var(--text-main);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-size: 1rem;
  cursor: pointer;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 1.4rem;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
}

.nav-list a {
  color: var(--text-muted);
  position: relative;
  padding-bottom: 0.2rem;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, var(--accent), var(--accent-strong));
  transition: width 0.18s ease-out;
}

.nav-list a:hover {
  color: var(--text-main);
}

.nav-list a:hover::after {
  width: 100%;
}

/* Hero */

.hero {
  padding-block: 1.5rem 1.5rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
  gap: 1.5rem;
  align-items: center;
}

.hero-copy {
  max-width: 540px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--accent-strong);
  margin-bottom: 0.9rem;
}

.hero-title {
  font-size: clamp(1.95rem, 3vw, 2.6rem);
  line-height: 1.18;
  margin: 0 0 1rem;
}

.hero-text {
  margin: 0 0 1.6rem;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.55rem 1.25rem;
  font-size: 0.92rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out,
    background-color 0.12s ease-out, border-color 0.12s ease-out;
}

.btn-primary {
  background: linear-gradient(to right, var(--accent), var(--accent-strong));
  color: #111827;
  box-shadow: 0 15px 40px rgba(249, 115, 22, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 60px rgba(249, 115, 22, 0.45);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(75, 85, 99, 0.9);
  color: var(--text-main);
}

.btn-ghost:hover {
  border-color: rgba(156, 163, 175, 0.9);
  background: rgba(15, 23, 42, 0.9);
}

.btn.full-width {
  width: 100%;
}

.hero-side {
  display: flex;
  justify-content: flex-end;
}

.hero-card {
  width: 100%;
  max-width: 320px;
  background: radial-gradient(circle at top left, #1e293b, #020617);
  border-radius: var(--radius-xl);
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(55, 65, 81, 0.8);
  box-shadow: var(--shadow-soft);
}

.hero-card-label {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.6rem;
}

.hero-card-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.hero-card-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

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

.pill {
  font-size: 0.78rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(249, 115, 22, 0.45);
}

/* Sections */

.section {
  padding-block: 1rem;
}

.section + .section {
  border-top: 1px solid rgba(31, 41, 55, 0.75);
}

.section-title {
  font-size: 1.6rem;
  margin: 0 0 0.4rem;
}

.section-subtitle {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.96rem;
}

.section-text {
  margin: 0 0 0.5rem;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.section-text.small {
  font-size: 0.86rem;
  color: var(--text-soft);
}

.section-header {
  margin-bottom: 1.7rem;
}

.two-col {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
}

.panel {
  background: radial-gradient(circle at top left, #020617, #020617 40%, #020617);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 1.5rem 1.6rem;
  box-shadow: var(--shadow-subtle);
}

.panel-photo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.photo-placeholder {
  width: min(260px, 100%);
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  background: radial-gradient(circle at 20% 0%, #f97316, #4f46e5 55%, #020617);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.9);
}

.photo-caption {
  margin-top: 0.9rem;
  font-size: 0.84rem;
  color: var(--text-soft);
  text-align: center;
}

/* Bullets */

.bullets {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.bullets li + li {
  margin-top: 0.3rem;
}

/* Videos */

.video-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.video-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 1rem;
  box-shadow: var(--shadow-subtle);
}

.video-title {
  margin: 0 0 0.8rem;
  font-size: 1rem;
}

.ratio-box {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  border-radius: 14px;
  overflow: hidden;
  background: #020617;
}

.ratio-vertical {
  padding-bottom: 178%; /* phone style */
}

.ratio-box iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Social */

.social-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.social-card {
  background: var(--bg-elevated);
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  padding: 0.6rem 1rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.9rem;
  transition: background 0.15s ease-out, transform 0.12s ease-out,
    box-shadow 0.12s ease-out, border-color 0.12s ease-out;
}

.social-card:hover {
  background: #111827;
  border-color: rgba(148, 163, 184, 0.8);
  transform: translateY(-1px);
  box-shadow: var(--shadow-subtle);
}

.social-label {
  color: var(--text-muted);
}

.social-handle {
  font-weight: 500;
}

/* Contact form */

.form {
  display: grid;
  gap: 0.9rem;
}

.field {
  display: grid;
  gap: 0.3rem;
}

.field-label {
  font-size: 0.86rem;
  color: var(--text-soft);
}

input,
textarea {
  background: #020617;
  border-radius: 10px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  padding: 0.55rem 0.7rem;
  color: var(--text-main);
  font: inherit;
  outline: none;
  transition: border-color 0.12s ease-out, box-shadow 0.12s ease-out,
    background-color 0.12s ease-out;
}

input:focus,
textarea:focus {
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.6);
  background: #020617;
}

textarea {
  resize: vertical;
}

.form-status {
  min-height: 1.1rem;
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-top: 0.3rem;
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(31, 41, 55, 0.75);
  padding-block: 1.2rem 1.6rem;
  margin-top: 2rem;
}

.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.footer-note {
  color: var(--text-muted);
}

/* Responsive */

@media (max-width: 768px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-side {
    justify-content: flex-start;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-list {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    background: rgba(15, 23, 42, 0.98);
    padding: 0.8rem 1.2rem 1.1rem;
    flex-direction: column;
    gap: 0.6rem;
    border-bottom: 1px solid rgba(31, 41, 55, 0.8);
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.14s ease-out, opacity 0.14s ease-out;
  }

  .nav-open .nav-list {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .two-col {
    grid-template-columns: minmax(0, 1fr);
  }

  .site-header {
    backdrop-filter: blur(14px);
  }

  .hero {
    padding-top: 2.4rem;
  }

  .section {
    padding-block: 2.2rem;
  }

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