:root {
  --obsidian: #070605;
  --ivory: #e8dcc6;
  --oxide: #b94e32;
  --wine: #30151e;
  --cyan: #4ec7c4;
  --violet: #8f4fe8;
  --gold: #b88a45;
  --muted: rgba(232, 220, 198, 0.68);
  --line: rgba(232, 220, 198, 0.18);
  --panel: rgba(232, 220, 198, 0.045);
  --container: min(1440px, calc(100% - 32px));
  --display: "Bodoni Moda", "Bodoni 72", Didot, Georgia, serif;
  --body: "Space Grotesk", Inter, system-ui, sans-serif;
  --mono: "IBM Plex Mono", "Space Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--obsidian);
  overflow-x: hidden;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(48, 21, 30, 0.46), rgba(7, 6, 5, 0) 440px),
    var(--obsidian);
  color: var(--ivory);
  font-family: var(--body);
  line-height: 1.5;
  overflow-x: hidden;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(0deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 3px 3px, 80px 80px;
  opacity: 0.11;
  mix-blend-mode: overlay;
}

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

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

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

.grain {
  position: fixed;
  inset: 0;
  z-index: 70;
  pointer-events: none;
  background:
    repeating-radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 4px),
    linear-gradient(90deg, transparent, rgba(185, 78, 50, 0.07), transparent);
  opacity: 0.16;
  mix-blend-mode: soft-light;
}

.meta {
  margin: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  padding: 0 18px;
  color: var(--ivory);
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  background: rgba(7, 6, 5, 0.22);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(232, 220, 198, 0.65);
  background: rgba(232, 220, 198, 0.08);
}

.button--primary {
  border-color: var(--ivory);
  background: var(--ivory);
  color: var(--obsidian);
}

.topbar {
  position: fixed;
  top: 20px;
  left: 50%;
  z-index: 60;
  display: flex;
  width: var(--container);
  transform: translateX(-50%);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 15px;
  color: var(--ivory);
}

.topbar__mark,
.topbar__nav a {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

.topbar__nav {
  display: flex;
  gap: 28px;
}

.topbar__nav a {
  color: var(--muted);
}

.topbar__nav a:hover {
  color: var(--ivory);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
}

.hero__image,
.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  z-index: -4;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.06) contrast(1.04);
  transform: scale(1.04);
}

.hero__overlay {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(7, 6, 5, 0.96), rgba(7, 6, 5, 0.42), rgba(7, 6, 5, 0.76)),
    linear-gradient(0deg, rgba(7, 6, 5, 1), rgba(7, 6, 5, 0) 42%, rgba(7, 6, 5, 0.7)),
    linear-gradient(135deg, rgba(78, 199, 196, 0.15), transparent 38%),
    linear-gradient(315deg, rgba(143, 79, 232, 0.18), transparent 42%);
}

.hero__territory {
  position: absolute;
  right: max(16px, calc((100vw - 1440px) / 2));
  bottom: 31vh;
  z-index: 2;
  display: grid;
  gap: 8px;
  color: rgba(232, 220, 198, 0.58);
  font-family: var(--mono);
  font-size: 0.72rem;
  text-align: right;
  text-transform: uppercase;
}

.hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  width: var(--container);
  min-height: 100vh;
  margin: 0 auto;
  flex-direction: column;
  justify-content: end;
  padding: 124px 0 42px;
}

.hero__kicker {
  color: var(--cyan);
}

.wordmark {
  margin: 14px 0 0;
  font-family: var(--display);
  font-size: 4.15rem;
  font-weight: 900;
  line-height: 0.76;
  text-transform: uppercase;
}

.hero__bottom {
  display: grid;
  gap: 18px;
  margin-top: 26px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.hero__subtitle {
  margin: 0;
  color: var(--ivory);
  font-size: 1.28rem;
  font-weight: 700;
}

.hero__copy {
  max-width: 720px;
  margin: 0;
  color: rgba(232, 220, 198, 0.86);
  font-size: 1.02rem;
}

.hero__actions,
.booking__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(48, 21, 30, 0.42);
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}

.ticker span {
  padding: 14px 26px;
  color: rgba(232, 220, 198, 0.75);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 84px 0;
  border-bottom: 1px solid var(--line);
}

.section__intro {
  display: grid;
  gap: 20px;
  margin-bottom: 44px;
}

.section__intro h2,
.statement h2,
.visual-band__text h2,
.booking__copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 0.9;
}

.section__intro p:last-child,
.statement p,
.booking__copy p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.music__grid,
.embed-grid,
.experience-grid,
.press-grid {
  display: grid;
  gap: 12px;
}

.track-card,
.embed-card,
.platform-card,
.experience-card,
.proof-card,
.booking-form {
  border: 1px solid var(--line);
  background: var(--panel);
}

.track-card {
  display: flex;
  min-height: 292px;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

.track-card__top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.track-card h3,
.proof-card h3 {
  margin: 38px 0 0;
  font-size: 1.62rem;
  line-height: 1.05;
}

.track-card p {
  margin: 14px 0 26px;
  color: var(--muted);
}

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

.embed-card {
  display: grid;
  gap: 18px;
  padding: 18px;
}

.embed-card__copy h3,
.platform-card h3 {
  margin: 14px 0 0;
  font-size: 1.45rem;
  line-height: 1.05;
}

.embed-card__copy p:last-child {
  max-width: 740px;
  margin: 12px 0 0;
  color: var(--muted);
}

.embed-card iframe {
  width: 100%;
  min-height: 166px;
  border: 0;
  background: var(--wine);
}

.embed-card--large iframe {
  min-height: 300px;
}

.platform-grid {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.platform-card {
  padding: 18px;
}

.platform-card iframe {
  width: 100%;
  height: 352px;
  margin-top: 18px;
  border: 0;
}

.platform-card--links {
  display: grid;
  align-content: start;
  gap: 12px;
}

.platform-card--links a {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: var(--ivory);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}

.platform-card--links a::after {
  content: "Open";
  color: var(--muted);
}

.split {
  display: grid;
  gap: 28px;
}

.portrait {
  position: relative;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--wine);
}

.portrait img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
}

.statement {
  align-self: end;
}

.statement h2 {
  margin-top: 18px;
}

.statement p {
  margin-top: 28px;
  font-size: 1.04rem;
}

.keywords {
  display: grid;
  gap: 12px;
  margin: 38px 0 0;
}

.keywords div {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.keywords dt {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

.keywords dd {
  margin: 6px 0 0;
  font-weight: 700;
}

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

.experience-card {
  min-height: 150px;
  padding: 20px;
}

.experience-card span {
  display: block;
  margin-bottom: 52px;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
}

.experience-card h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.05;
}

.visual-band {
  position: relative;
  min-height: 76vh;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.visual-band img {
  width: 100%;
  height: 76vh;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.05) saturate(1.04);
}

.visual-band::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 6, 5, 0.92), rgba(7, 6, 5, 0.1)),
    linear-gradient(0deg, rgba(7, 6, 5, 0.82), rgba(7, 6, 5, 0.04));
}

.visual-band__text {
  position: absolute;
  left: max(16px, calc((100vw - 1440px) / 2));
  bottom: 34px;
  z-index: 2;
  max-width: 780px;
}

.visual-band__text h2 {
  margin-top: 14px;
}

.proof-card {
  overflow: hidden;
}

.proof-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--wine);
}

.proof-card div {
  padding: 18px;
}

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

.booking {
  display: grid;
  gap: 28px;
}

.booking__copy h2 {
  font-size: 4.2rem;
}

.booking__copy p {
  margin-top: 24px;
}

.booking__actions {
  margin-top: 30px;
}

.booking-form {
  display: grid;
  gap: 15px;
  padding: 20px;
}

.booking-form label {
  display: grid;
  gap: 8px;
}

.booking-form span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  background: rgba(7, 6, 5, 0.38);
  color: var(--ivory);
  padding: 0 13px;
}

.booking-form textarea {
  min-height: 118px;
  padding-top: 13px;
  resize: vertical;
}

.booking-form option {
  color: var(--obsidian);
}

.footer {
  width: var(--container);
  margin: 0 auto;
  padding: 34px 0 44px;
}

.footer__wordmark {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 0.8;
}

.mini-player {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 90;
  display: none;
  width: min(420px, calc(100% - 28px));
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--line);
  background: rgba(7, 6, 5, 0.92);
  padding: 14px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(16px);
}

.mini-player.is-visible {
  display: flex;
}

.mini-player strong {
  display: block;
  margin-top: 4px;
  font-size: 0.92rem;
}

.mini-player button {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ivory);
  cursor: pointer;
}

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

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

@media (min-width: 560px) {
  .wordmark {
    font-size: 6rem;
  }

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

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

@media (min-width: 768px) {
  :root {
    --container: min(1440px, calc(100% - 56px));
  }

  .hero__bottom {
    grid-template-columns: 0.7fr 1fr auto;
    align-items: end;
  }

  .wordmark {
    font-size: 9.4rem;
  }

  .section {
    padding: 108px 0;
  }

  .section__intro {
    grid-template-columns: 0.8fr 1fr;
    align-items: end;
  }

  .section__intro h2,
  .statement h2,
  .visual-band__text h2 {
    font-size: 4.6rem;
  }

  .music__grid,
  .embed-grid,
  .press-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .embed-card--large {
    grid-column: span 2;
  }

  .platform-grid {
    grid-template-columns: 0.78fr 1fr;
  }

  .split,
  .booking {
    grid-template-columns: 0.72fr 1fr;
    align-items: end;
  }

  .experience-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1180px) {
  .wordmark {
    font-size: 13.6rem;
  }

  .hero__content {
    padding-bottom: 54px;
  }

  .hero__subtitle {
    font-size: 1.55rem;
  }

  .hero__copy {
    font-size: 1.13rem;
  }

  .section__intro h2,
  .statement h2,
  .visual-band__text h2 {
    font-size: 6rem;
  }

  .booking__copy h2 {
    font-size: 8rem;
  }
}

@media (min-width: 1500px) {
  .wordmark {
    font-size: 16.2rem;
  }
}

@media (max-width: 767px) {
  .section,
  .booking,
  .booking__copy,
  .booking__actions,
  .booking-form {
    min-width: 0;
    max-width: 100%;
  }

  .topbar__nav {
    display: none;
  }

  .hero__territory {
    display: none;
  }

  .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
