:root {
  --ink: #10121a;
  --paper: #fff8f0;
  --cream: #fffdf8;
  --clay: #f2e2d0;
  --line: rgba(16, 18, 26, .12);
  --red: #ff2852;
  --red-dark: #c91436;
  --blue: #0059a8;
  --orange: #ff9f1c;
  --green: #007f73;
  --muted: rgba(16, 18, 26, .66);
  --shadow: 0 22px 70px rgba(16, 18, 26, .14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 8%, rgba(255,40,82,.12), transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(0,89,168,.12), transparent 26%),
    linear-gradient(180deg, #fffdf8 0%, #fff8f0 42%, #f7efe5 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(1200px, calc(100% - 36px)); margin-inline: auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,.16);
  background: rgba(16, 18, 26, .92);
  color: white;
  backdrop-filter: blur(18px);
}
.nav {
  min-height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.brand-logo { width: 156px; height: auto; }
.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  font-weight: 850;
}
.nav-links a { padding: 10px 0; }
.nav-links a:hover { color: white; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  border: 1px solid var(--line);
  padding: 12px 18px;
  font-weight: 950;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-1px); box-shadow: 0 10px 28px rgba(16,18,26,.12); }
.button.dark { background: var(--ink); color: white; border-color: var(--ink); }
.button.red { background: var(--red); color: white; border-color: var(--red); }
.button.light { background: rgba(255,255,255,.12); color: white; border-color: rgba(255,255,255,.22); }
.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(16,18,26,.98) 0%, rgba(16,18,26,.86) 45%, rgba(201,20,54,.76) 100%),
    url("https://images.unsplash.com/photo-1516280440614-37939bbacd81?auto=format&fit=crop&w=1800&q=85") center/cover;
  color: white;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 16px;
  background: linear-gradient(90deg, var(--red), white, var(--blue), var(--orange));
}
.hero-inner {
  position: relative;
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 48px;
  padding: 78px 0 92px;
}
.hero-logo {
  width: min(420px, 82vw);
  filter: drop-shadow(0 28px 80px rgba(0,0,0,.34));
}
.hero-panel {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
}
.pill {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #fff;
  padding: 9px 13px;
  font-size: 13px;
  font-weight: 950;
}
h1, h2, h3 { letter-spacing: 0; }
h1 { margin: 22px 0 0; font-size: clamp(52px, 8vw, 102px); line-height: .9; max-width: 820px; }
h2 { margin: 0; font-size: clamp(30px, 4vw, 50px); line-height: 1.02; }
h3 { margin: 0; font-size: 21px; line-height: 1.18; }
.lead { max-width: 720px; margin: 24px 0 0; color: rgba(255,255,255,.78); font-size: 20px; line-height: 1.7; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
section { padding: 76px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 34px;
}
.section-head > div { max-width: 790px; }
.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 13px;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.muted { color: var(--muted); line-height: 1.72; }
.editorial-band {
  background:
    linear-gradient(135deg, rgba(255,40,82,.08), rgba(0,89,168,.08)),
    rgba(255,255,255,.48);
  border-block: 1px solid var(--line);
}
.dark-band {
  background:
    radial-gradient(circle at 16% 0%, rgba(255,40,82,.26), transparent 34%),
    linear-gradient(135deg, #10121a, #201723 55%, #111c2d);
  color: white;
}
.dark-band .muted { color: rgba(255,255,255,.68); }
.grid { display: grid; gap: 22px; }
.grid.two { grid-template-columns: repeat(2, 1fr); }
.grid.three { grid-template-columns: repeat(3, 1fr); }
.grid.four { grid-template-columns: repeat(4, 1fr); }
.grid.five { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 2px 8px rgba(16,18,26,.04);
}
.card.pad { padding: 26px; }
.track-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 548px;
  background: #fff;
  box-shadow: 0 18px 56px rgba(16,18,26,.10);
}
.track-card .cover {
  height: 282px;
  width: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  background: #e7ded3;
}
.track-card .card-body {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 234px;
  padding: 22px;
}
.track-card .artist { min-height: 50px; }
.track-card h3 { min-height: 68px; }
.track-card .button { justify-self: start; margin-top: 14px; }
.cover { aspect-ratio: 1; width: 100%; object-fit: cover; background: #e7ded3; }
.cover.wide { aspect-ratio: 16 / 10; }
.card-body { padding: 20px; }
.artist { margin: 0 0 7px; color: var(--green); font-size: 14px; font-weight: 950; }
.price { margin: 14px 0; font-size: 32px; font-weight: 950; }
.booking-hero,
.artist-detail-hero {
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(16,18,26,.96), rgba(18,33,52,.9) 52%, rgba(255,40,82,.86)),
    url("https://images.unsplash.com/photo-1501612780327-45045538702b?auto=format&fit=crop&w=1800&q=85") center/cover;
  color: white;
}
.booking-hero-inner,
.artist-detail {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 46px;
  align-items: center;
}
.booking-note {
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  background: rgba(255,255,255,.1);
  padding: 28px;
  backdrop-filter: blur(16px);
}
.booking-note p { margin-bottom: 0; color: rgba(255,255,255,.74); line-height: 1.72; }
.artist-grid { align-items: stretch; }
.artist-booking-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  color: var(--ink);
  transition: transform .18s ease, box-shadow .18s ease;
}
.artist-booking-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 56px rgba(16,18,26,.12);
}
.artist-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #e7ded3;
}
.artist-booking-card .card-body {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 12px;
}
.artist-facts {
  display: grid;
  gap: 9px;
  margin: 0;
}
.artist-facts div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 9px;
}
.artist-facts dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}
.artist-facts dd {
  margin: 0;
  text-align: right;
  font-weight: 950;
}
.artist-detail {
  min-height: 620px;
  padding: 76px 0;
}
.artist-detail-copy { min-width: 0; }
.artist-detail-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.artist-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}
.artist-meta div {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  background: rgba(255,255,255,.1);
  padding: 16px;
}
.artist-meta span {
  display: block;
  color: rgba(255,255,255,.66);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.artist-meta strong { display: block; margin-top: 6px; font-size: 18px; }
.artist-content { align-items: start; }
.spotify-artist-embed {
  width: 100%;
  margin-top: 18px;
  border: 0;
  border-radius: 14px;
  background: var(--ink);
}
.booking-form h2 { font-size: 30px; }
.success-message {
  margin-bottom: 18px;
  border: 1px solid rgba(0,127,115,.22);
  border-radius: 18px;
  background: rgba(0,127,115,.1);
  padding: 20px;
}
.success-message strong { color: var(--green); }
.success-message p { margin: 8px 0 0; line-height: 1.7; }
.feature-card {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  padding: 24px;
}
.hit-week {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 42px;
  align-items: center;
}
.hit-week .button { margin-top: 18px; }
.hit-cover {
  display: block;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.16);
  background: white;
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}
.hit-cover img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.notice {
  margin-bottom: 22px;
  border: 1px solid rgba(255,40,82,.24);
  border-radius: 14px;
  background: rgba(255,40,82,.08);
  padding: 16px;
  color: var(--ink);
  font-weight: 850;
}
.list { display: grid; gap: 12px; }
.row {
  display: grid;
  grid-template-columns: 58px 68px 1fr auto;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.86);
  padding: 14px;
  box-shadow: 0 8px 30px rgba(16,18,26,.05);
}
.rank { color: var(--red); font-size: 25px; font-weight: 1000; text-align: center; }
.row-cover { width: 68px; height: 68px; border-radius: 10px; object-fit: cover; background: #e7ded3; }
.form {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  padding: 26px;
  box-shadow: var(--shadow);
}
label { display: grid; gap: 7px; font-size: 14px; font-weight: 850; }
input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 14px;
  font: inherit;
}
textarea { min-height: 140px; resize: vertical; }
.footer {
  background: var(--ink);
  color: rgba(255,255,255,.68);
  padding: 48px 0;
}
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 28px; }
.footer strong { color: white; }
.footer-logo { width: 150px; margin-bottom: 16px; }
@media (max-width: 1080px) {
  .nav { grid-template-columns: 1fr; justify-items: start; padding: 16px 0; }
  .nav-links { justify-content: flex-start; flex-wrap: wrap; }
  .nav-actions { flex-wrap: wrap; }
  .hero-inner, .hit-week, .booking-hero-inner, .artist-detail { grid-template-columns: 1fr; }
  .grid.five, .grid.four { grid-template-columns: repeat(2, 1fr); }
  .grid.three, .grid.two, .footer-grid { grid-template-columns: 1fr; }
  .artist-detail { min-height: auto; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1200px); }
  .site-header { position: relative; }
  .nav { min-height: auto; gap: 14px; }
  .nav-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 8px;
    font-size: 13px;
  }
  .nav-links a {
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 12px;
    padding: 10px 12px;
    text-align: center;
    background: rgba(255,255,255,.06);
  }
  .nav-actions { width: 100%; display: grid; grid-template-columns: 1fr 1fr; }
  .nav-actions .button { width: 100%; min-height: 42px; padding: 10px 12px; }
  .brand-logo { width: 132px; }
  .grid.five, .grid.four { grid-template-columns: 1fr; }
  .section-head { display: block; }
  section { padding: 52px 0; }
  .hero-inner { min-height: auto; padding: 48px 0 62px; gap: 28px; }
  h1 { font-size: clamp(42px, 13vw, 58px); line-height: .94; }
  h2 { font-size: clamp(28px, 9vw, 38px); }
  .lead { font-size: 17px; line-height: 1.62; }
  .hero-panel { padding: 18px; border-radius: 16px; }
  .hero-logo { width: min(320px, 100%); }
  .feature-card { padding: 18px; }
  .actions { display: grid; grid-template-columns: 1fr; }
  .actions .button { width: 100%; }
  .track-card { min-height: auto; }
  .track-card .cover { height: auto; aspect-ratio: 1; }
  .track-card .card-body { min-height: auto; padding: 18px; }
  .track-card .artist,
  .track-card h3 { min-height: 0; }
  .track-card .button { width: 100%; justify-self: stretch; }
  .hit-week { gap: 24px; }
  .hit-cover { transform: none; }
  .booking-note { padding: 20px; }
  .artist-photo { aspect-ratio: 1; }
  .artist-meta { grid-template-columns: 1fr; }
  .artist-detail { padding: 52px 0; gap: 26px; }
  .artist-detail-photo { border-radius: 18px; }
  .artist-facts div { display: grid; gap: 3px; }
  .artist-facts dd { text-align: left; }
  .row { grid-template-columns: 44px 56px 1fr; }
  .row .button { grid-column: 3; justify-self: start; }
  .row-cover { width: 56px; height: 56px; }
  .footer { padding: 34px 0; }
  .footer-logo { width: 132px; }
}
@media (max-width: 430px) {
  .container { width: min(100% - 22px, 1200px); }
  .brand-logo { width: 118px; }
  .nav-links { grid-template-columns: 1fr; }
  .nav-actions { grid-template-columns: 1fr; }
  .pill { font-size: 12px; }
  .button { min-height: 42px; padding: 10px 14px; }
  .card.pad { padding: 20px; }
  .row {
    grid-template-columns: 38px 52px 1fr;
    gap: 10px;
    padding: 12px;
  }
  .rank { font-size: 21px; }
  .row-cover { width: 52px; height: 52px; }
  .row .button { grid-column: 1 / -1; width: 100%; }
  input, textarea { font-size: 16px; }
}
