:root {
  --bg: #120f0d;
  --bg-soft: #1d1714;
  --bg-card: rgba(42, 31, 26, 0.84);
  --text: #fff8ee;
  --muted: #cbb8a0;
  --gold: #d7a547;
  --gold-light: #ffd27a;
  --red: #8f2f25;
  --red-deep: #5f1f19;
  --cream: #fff3db;
  --brown: #3a241b;
  --border: rgba(255, 211, 122, 0.22);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  --radius: 28px;
  --radius-sm: 16px;
  --container: min(1120px, calc(100% - 40px));
  --header-height: 82px;
  --font: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(143, 47, 37, 0.42), transparent 38%),
    radial-gradient(circle at top right, rgba(215, 165, 71, 0.20), transparent 35%),
    linear-gradient(180deg, #120f0d 0%, #1b130f 46%, #0d0b0a 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  background: var(--gold);
  color: #140d09;
  padding: 10px 14px;
  border-radius: 999px;
  z-index: 1000;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 96px 0;
  position: relative;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  backdrop-filter: blur(18px);
  background: rgba(18, 15, 13, 0.78);
  border-bottom: 1px solid rgba(255, 211, 122, 0.12);
}

.nav {
  width: var(--container);
  height: var(--header-height);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #160f0b;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 0 32px rgba(215, 165, 71, 0.28);
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.75rem;
}

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

.nav-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255, 248, 238, 0.82);
  font-weight: 700;
  font-size: 0.93rem;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--cream);
  background: rgba(255, 211, 122, 0.10);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 248, 238, 0.04);
  color: var(--text);
  cursor: pointer;
  padding: 11px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--cream);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: center;
  padding: 80px 0 96px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(18, 15, 13, 0.92), rgba(18, 15, 13, 0.55), rgba(18, 15, 13, 0.95)),
    radial-gradient(circle at 70% 28%, rgba(255, 210, 122, 0.22), transparent 30%),
    radial-gradient(circle at 12% 76%, rgba(143, 47, 37, 0.34), transparent 32%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 900;
  font-size: 0.78rem;
  margin: 0 0 14px;
}

h1,
h2,
h3 {
  line-height: 1.05;
  margin: 0;
}

h1 {
  font-size: clamp(4rem, 10vw, 8.5rem);
  letter-spacing: -0.08em;
  text-transform: uppercase;
  max-width: 780px;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  letter-spacing: -0.06em;
  margin-bottom: 22px;
}

h3 {
  font-size: 1.25rem;
}

.hero-subtitle {
  font-size: clamp(1.35rem, 2.5vw, 2.15rem);
  color: var(--cream);
  margin: 18px 0 16px;
  font-weight: 800;
  max-width: 730px;
}

.hero-text,
.section-copy p,
.section-header p,
.single-content p,
.bio-text p,
.contact-card p {
  color: var(--muted);
  font-size: 1.06rem;
}

.hero-text {
  max-width: 680px;
  margin-bottom: 28px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #1b100a;
  box-shadow: 0 16px 44px rgba(215, 165, 71, 0.22);
}

.btn-secondary {
  background: rgba(255, 248, 238, 0.06);
  color: var(--cream);
  border-color: var(--border);
}

.btn.full {
  width: 100%;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-stats div {
  min-width: 132px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 248, 238, 0.045);
}

.hero-stats strong {
  display: block;
  font-size: 1.25rem;
  color: var(--cream);
}

.hero-stats span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-visual {
  justify-self: end;
  width: min(100%, 420px);
}

.cover-card,
.tracklist-card,
.single-card,
.video-card,
.booking-form,
.bio-card,
.contact-card {
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(48, 34, 28, 0.92), rgba(22, 16, 13, 0.88));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cover-card {
  overflow: hidden;
  transform: rotate(1.2deg);
}

.cover-placeholder {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 30%, rgba(255, 210, 122, 0.32), transparent 24%),
    linear-gradient(135deg, #2a1713, #7c2b22 55%, #d7a547);
}

.cover-placeholder::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 243, 219, 0.28);
  border-radius: 24px;
}

.cover-placeholder p {
  position: relative;
  z-index: 3;
  text-align: center;
  color: rgba(255, 248, 238, 0.88);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cover-with-image {
  background: #1a120e;
}

.cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.single-art.single-art-image {
  position: relative;
  padding: 0;
  background: #1a120e;
}

.single-cover-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-art-inner.overlay {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, rgba(18, 15, 13, 0.08) 20%, rgba(18, 15, 13, 0.86) 100%);
}

.social-grid a[aria-disabled="true"] {
  opacity: 0.55;
  cursor: default;
}

.social-grid a[aria-disabled="true"]:hover {
  transform: none;
  background: rgba(255, 248, 238, 0.06);
}

.sun {
  position: absolute;
  width: 180px;
  height: 180px;
  right: -34px;
  top: -26px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-light), transparent 68%);
  opacity: 0.9;
}

.guitar-shape {
  position: absolute;
  width: 170px;
  height: 230px;
  left: 32px;
  bottom: 16px;
  border-radius: 58% 48% 48% 58%;
  transform: rotate(-24deg);
  background: rgba(28, 16, 11, 0.36);
  border: 1px solid rgba(255, 243, 219, 0.18);
}

.cover-caption {
  padding: 24px;
}

.cover-caption span {
  color: var(--gold-light);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
}

.cover-caption strong {
  display: block;
  margin-top: 4px;
  font-size: 2rem;
  letter-spacing: -0.05em;
}

.two-columns,
.booking-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: start;
}

.section-copy {
  max-width: 620px;
}

.tracklist-card {
  padding: 28px;
}

.tracklist-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.tracklist-header span {
  color: var(--muted);
}

.tracklist-header strong {
  color: var(--gold-light);
}

.tracklist {
  list-style: decimal-leading-zero;
  margin: 0;
  padding-left: 28px;
  color: var(--gold-light);
  columns: 2;
  column-gap: 42px;
}

.tracklist li {
  break-inside: avoid;
  padding: 8px 0;
}

.tracklist span {
  color: var(--cream);
  font-weight: 800;
}

.single-section {
  background:
    linear-gradient(180deg, transparent, rgba(143, 47, 37, 0.11), transparent);
}

.single-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 34px;
  padding: 28px;
  align-items: center;
}

.single-art {
  aspect-ratio: 1;
  border-radius: 24px;
  overflow: hidden;
  padding: 18px;
  background:
    radial-gradient(circle at 70% 32%, rgba(255, 210, 122, 0.42), transparent 24%),
    linear-gradient(135deg, #8f2f25, #2a1713);
}

.single-art-inner {
  height: 100%;
  border: 1px solid rgba(255, 243, 219, 0.26);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
}

.single-art-inner span {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 900;
  font-size: 0.78rem;
}

.single-art-inner strong {
  color: var(--cream);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.platform-buttons,
.social-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.platform-btn,
.social-grid a {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 248, 238, 0.06);
  border: 1px solid var(--border);
  color: var(--cream);
  font-weight: 900;
  transition: transform 0.2s ease, background 0.2s ease;
}

.platform-btn:hover,
.social-grid a:hover {
  transform: translateY(-2px);
  background: rgba(255, 211, 122, 0.12);
}

.platform-btn.disabled {
  color: rgba(255, 248, 238, 0.42);
  cursor: not-allowed;
}

.notice,
.form-note {
  color: var(--muted);
  font-size: 0.9rem !important;
  margin-top: 16px;
}

.section-header {
  max-width: 700px;
  margin-bottom: 34px;
}

.video-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.8fr;
  gap: 22px;
}

.video-card {
  padding: 18px;
}

.video-card h3 {
  margin-top: 16px;
}

.video-placeholder {
  min-height: 340px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--cream);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 68% 30%, rgba(255, 210, 122, 0.25), transparent 25%),
    linear-gradient(135deg, #241612, #63251e);
}

.video-placeholder.small {
  min-height: 220px;
}

.video-placeholder span {
  position: relative;
  z-index: 2;
  color: rgba(255, 248, 238, 0.76);
  font-weight: 900;
}

.play-button {
  position: absolute;
  z-index: 3;
  width: 76px;
  height: 76px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #1b100a;
  font-weight: 900;
  font-size: 1.4rem;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
}

.booking-section {
  background:
    radial-gradient(circle at 15% 22%, rgba(215, 165, 71, 0.13), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0), rgba(255, 243, 219, 0.03));
}

.booking-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.booking-tags span {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 211, 122, 0.09);
  border: 1px solid var(--border);
  color: var(--cream);
  font-weight: 800;
  font-size: 0.92rem;
}

.booking-form {
  padding: 28px;
}

.booking-form h3 {
  margin-bottom: 20px;
  font-size: 1.6rem;
  letter-spacing: -0.04em;
}

.booking-form label {
  display: grid;
  gap: 7px;
  color: var(--cream);
  font-weight: 800;
  margin-bottom: 15px;
}

input,
textarea,
select {
  width: 100%;
  color: var(--text);
  background: rgba(255, 248, 238, 0.07);
  border: 1px solid rgba(255, 211, 122, 0.24);
  border-radius: 14px;
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--gold-light);
  background: rgba(255, 248, 238, 0.10);
}

textarea {
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.bio-card {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 34px;
  padding: 36px;
}

.bio-text p:first-child {
  margin-top: 0;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-top: 0;
}

.social-grid a {
  text-align: center;
  border-radius: 18px;
}

.contact-card {
  max-width: 820px;
  margin-inline: auto;
  padding: 44px;
  text-align: center;
}

.contact-actions {
  justify-content: center;
}

.site-footer {
  padding: 42px 0 24px;
  background: rgba(8, 6, 5, 0.58);
  border-top: 1px solid rgba(255, 211, 122, 0.12);
}

.footer-grid,
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-grid p,
.footer-bottom {
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  color: var(--cream);
  font-weight: 800;
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 211, 122, 0.10);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  :root {
    --container: min(100% - 28px, 720px);
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    inset: var(--header-height) 14px auto 14px;
    display: grid;
    gap: 6px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(18, 15, 13, 0.96);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    box-shadow: var(--shadow);
  }

  body.nav-open .nav-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-menu a {
    padding: 14px 16px;
  }

  .hero-grid,
  .two-columns,
  .booking-grid,
  .single-card,
  .bio-card {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    justify-self: start;
  }

  .single-card {
    gap: 22px;
  }

  .single-art {
    max-width: 420px;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .video-placeholder,
  .video-placeholder.small {
    min-height: 260px;
  }

  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tracklist {
    columns: 1;
  }
}

@media (max-width: 620px) {
  .section {
    padding: 70px 0;
  }

  .hero {
    padding: 54px 0 70px;
  }

  .brand-text small {
    display: none;
  }

  h1 {
    font-size: clamp(3.2rem, 18vw, 5rem);
  }

  .hero-subtitle {
    font-size: 1.24rem;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr;
  }

  .tracklist-card,
  .single-card,
  .booking-form,
  .bio-card,
  .contact-card {
    padding: 22px;
    border-radius: 22px;
  }

  .form-row,
  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    display: grid;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }
}
