:root {
  color-scheme: light;
  --paper: #f2eee6;
  --ink: #121212;
  --accent: #ff4b12;
  --line: rgba(18, 18, 18, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 83% 14%, rgba(255, 75, 18, 0.11), transparent 23rem),
    var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.05;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

a,
button {
  color: inherit;
}

.site-header,
.site-footer {
  display: flex;
  position: relative;
  z-index: 2;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 48px, 1480px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 15;
  width: 100%;
  min-height: 88px;
  margin-inline: 0;
  padding-inline: max(24px, calc((100% - 1480px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(242, 238, 230, 0.88);
  backdrop-filter: blur(14px);
}

.wordmark {
  display: flex;
  flex-direction: column;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 0.83;
  letter-spacing: -0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-left: auto;
  margin-right: clamp(1rem, 3vw, 3rem);
}

.site-nav a {
  padding: 0.52rem 0.78rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 0.58rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.site-nav a:hover {
  color: var(--paper);
  border-color: var(--ink);
  background: var(--ink);
  transform: translateY(-1px);
}

.site-nav a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.status,
.kicker,
.site-footer {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  margin: 0;
}

.status-dot {
  width: 0.5rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(255, 75, 18, 0.12);
  animation: breathe 2.4s ease-in-out infinite;
}

.hero {
  display: grid;
  position: relative;
  grid-template-columns: minmax(0, 1fr) 220px;
  grid-template-rows: 1fr;
  gap: clamp(2rem, 4vw, 5rem);
  width: min(100% - 48px, 1480px);
  min-height: 32svh;
  margin-inline: auto;
  padding: clamp(2.75rem, 6vh, 4.5rem) 0 2rem;
}

.hero-copy {
  align-self: center;
}

.kicker {
  margin: 0 0 1.4rem;
}

h1 {
  max-width: none;
  margin: 0;
  font-size: clamp(2.75rem, 5.8vw, 6rem);
  font-weight: 600;
  line-height: 0.88;
  letter-spacing: -0.065em;
  white-space: nowrap;
}

h1 em {
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero-meta {
  align-self: end;
  padding-bottom: 0.35rem;
}

.hero-meta p {
  margin: 0 0 2rem;
  font-size: 0.84rem;
  line-height: 1.5;
}

.replay {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.9rem 0;
  border: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: transparent;
  font: 600 0.75rem/1 -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  cursor: pointer;
  transition: color 180ms ease, padding 180ms ease;
}

.replay:hover,
.replay:focus-visible {
  padding-inline: 0.5rem;
  color: var(--accent);
}

.replay:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.replay svg {
  width: 1.05rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.stamp {
  display: grid;
  position: absolute;
  top: 2.5rem;
  right: 0;
  place-content: center;
  width: clamp(6.3rem, 9vw, 8rem);
  aspect-ratio: 1;
  border: 1px solid var(--ink);
  border-radius: 50%;
  text-align: center;
  transform: rotate(8deg);
}

.stamp span {
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.08em;
}

.stamp small {
  margin-top: 0.15rem;
  font: 0.48rem/1 "DM Mono", ui-monospace, monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer {
  min-height: 72px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.confetti {
  position: fixed;
  inset: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.visuals {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: clamp(5rem, 9vw, 9rem) 0 clamp(6rem, 11vw, 11rem);
  color: var(--paper);
  background: var(--ink);
}

.visuals-inner {
  width: min(100% - 48px, 1480px);
  margin-inline: auto;
}

.visuals-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: clamp(3.5rem, 7vw, 7rem);
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(242, 238, 230, 0.28);
}

.visuals-kicker {
  margin: 0 0 0.4rem;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visuals h2 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 7.5rem);
  font-weight: 600;
  line-height: 0.8;
  letter-spacing: -0.07em;
}

.portrait-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
  align-items: start;
}

.portrait {
  margin: 0;
}

.portrait-offstage {
  grid-column: 1 / span 8;
}

.portrait-live {
  grid-column: 9 / span 4;
  margin-top: clamp(5rem, 13vw, 13rem);
}

.portrait-frame {
  overflow: hidden;
  background: #262626;
}

.portrait img {
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(0.82) contrast(1.04);
  transition: filter 500ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.portrait:hover img {
  filter: saturate(1) contrast(1);
  transform: scale(1.012);
}

.portrait figcaption {
  display: flex;
  justify-content: space-between;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(242, 238, 230, 0.32);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.film {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(300px, 0.72fr);
  gap: clamp(3rem, 9vw, 9rem);
  align-items: start;
  margin: clamp(8rem, 16vw, 16rem) 0 0;
  padding-top: clamp(2rem, 4vw, 4rem);
  border-top: 1px solid rgba(242, 238, 230, 0.28);
}

.film-copy {
  position: sticky;
  top: 3rem;
}

.film h3 {
  margin: clamp(2.5rem, 7vw, 7rem) 0 0;
  font-size: clamp(4rem, 10vw, 10rem);
  font-weight: 600;
  line-height: 0.76;
  letter-spacing: -0.075em;
}

.film h3 em {
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.film-note {
  margin: clamp(2.5rem, 5vw, 5rem) 0 0;
  font-size: 0.78rem;
  line-height: 1.55;
}

.film-media {
  width: min(100%, 520px);
  justify-self: end;
}

.film-media video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  border: 0;
  background: #262626;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.03);
}

.film-media figcaption {
  display: flex;
  justify-content: space-between;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(242, 238, 230, 0.32);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profiles {
  display: grid;
  position: relative;
  z-index: 1;
  align-content: center;
  min-height: calc(68svh - 88px);
  padding: clamp(2.25rem, 4vh, 3.5rem) 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 75, 18, 0.1), transparent 24rem),
    var(--paper);
}

.profiles-inner {
  width: min(100% - 48px, 1480px);
  margin-inline: auto;
}

.profiles-heading {
  display: grid;
  grid-template-columns: 3fr 9fr;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: end;
  margin-bottom: clamp(1.5rem, 3vh, 2.5rem);
  padding-bottom: clamp(1.25rem, 2vh, 1.75rem);
  border-bottom: 1px solid var(--line);
}

.profiles-heading > div {
  display: flex;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: end;
  justify-content: space-between;
}

.profiles-kicker {
  margin: 0 0 0.4rem;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profiles h2 {
  margin: 0;
  font-size: clamp(3.25rem, 5vw, 5.5rem);
  font-weight: 600;
  line-height: 0.8;
  letter-spacing: -0.075em;
}

.profiles-intro {
  max-width: 20rem;
  margin: 0 0 0.25rem;
  font-size: 0.8rem;
  line-height: 1.55;
}

.profiles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.profile-badge {
  --brand: var(--ink);
  --brand-ink: #fff;
  display: grid;
  grid-template-columns: 2.6rem minmax(0, 1fr) 1.5rem;
  gap: 0.7rem;
  align-items: center;
  min-height: 4.15rem;
  padding: 0.5rem 0.7rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  text-decoration: none;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.profile-icon {
  display: grid;
  place-items: center;
  width: 2.6rem;
  aspect-ratio: 1;
  border-radius: 50%;
  color: var(--brand-ink);
  background: var(--brand);
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.profile-icon svg {
  width: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.profile-icon .icon-fill {
  fill: currentColor;
  stroke: none;
}

.profile-label {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1;
}

.profile-label small {
  margin-bottom: 0.38rem;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 0.5rem;
  letter-spacing: 0.08em;
  opacity: 0.62;
  text-transform: uppercase;
}

.profile-label strong {
  overflow: hidden;
  font-size: clamp(0.88rem, 1.25vw, 1.08rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-arrow {
  display: grid;
  place-items: center;
  width: 1.5rem;
  aspect-ratio: 1;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.8rem;
  opacity: 0.55;
  transition: opacity 220ms ease, transform 220ms ease;
}

.profile-badge:hover {
  color: var(--brand-ink);
  border-color: var(--brand);
  background: var(--brand);
  transform: translateY(-2px);
}

.profile-badge:hover .profile-icon {
  color: var(--brand);
  background: var(--brand-ink);
  transform: rotate(-5deg);
}

.profile-badge:hover .profile-arrow {
  opacity: 1;
  transform: translate(2px, -2px);
}

.profile-badge:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.profile-spotify { --brand: #1ed760; --brand-ink: #071c0f; }
.profile-apple { --brand: #fa243c; --brand-ink: #fff; }
.profile-youtube { --brand: #f00; --brand-ink: #fff; }
.profile-soundcloud { --brand: #f50; --brand-ink: #fff; }
.profile-instagram { --brand: #d62976; --brand-ink: #fff; }
.profile-tiktok { --brand: #121212; --brand-ink: #fff; }
.profile-deezer { --brand: #a238ff; --brand-ink: #fff; }
.profile-audiomack { --brand: #ffa200; --brand-ink: #171006; }
.profile-amazon { --brand: #25d1da; --brand-ink: #062124; }

.profile-instagram .profile-icon {
  background: radial-gradient(circle at 30% 105%, #ffd600 0 24%, #ff7a00 25% 39%, #ff0169 55%, #d300c5 74%, #7638fa 100%);
}

.profile-instagram:hover .profile-icon {
  color: #d62976;
  background: #fff;
}

.visuals h2,
.film h3 {
  scroll-margin-top: 7rem;
}

@keyframes breathe {
  50% { transform: scale(0.72); }
}

@media (max-width: 760px) {
  .site-footer,
  .hero {
    width: min(100% - 32px, 1480px);
  }

  .site-header {
    gap: 0.65rem;
    width: 100%;
    min-height: 68px;
    padding-inline: 16px;
  }

  .site-nav {
    gap: 0.32rem;
    margin-right: 0.25rem;
  }

  .site-nav a {
    padding: 0.44rem 0.54rem;
    font-size: 0.48rem;
  }

  .status {
    gap: 0;
    font-size: 0;
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 1.25rem;
    min-height: 32svh;
    padding: 3rem 0 1.5rem;
  }

  h1 {
    font-size: clamp(1.5rem, 7vw, 2.1rem);
    line-height: 0.92;
    letter-spacing: -0.055em;
  }

  .hero-meta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 9.5rem;
    gap: 1rem;
    align-items: end;
    width: 100%;
  }

  .hero-meta p {
    margin: 0;
    font-size: 0.7rem;
  }

  .stamp {
    top: 0.7rem;
    width: 4.35rem;
  }

  .visuals-inner {
    width: min(100% - 32px, 1480px);
  }

  .visuals-heading {
    display: block;
  }

  .visuals-kicker {
    margin-bottom: 2rem;
  }

  .visuals h2 {
    font-size: clamp(4rem, 20vw, 6rem);
  }

  .portrait-grid {
    display: flex;
    flex-direction: column;
    gap: 4.5rem;
  }

  .portrait-live {
    align-self: flex-end;
    width: 76%;
    margin-top: 0;
  }

  .film {
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-top: 8rem;
  }

  .film-copy {
    position: static;
  }

  .film h3 {
    margin-top: 3.5rem;
    font-size: clamp(4.2rem, 23vw, 7rem);
  }

  .film-note {
    margin-top: 2.5rem;
  }

  .film-media {
    width: 86%;
  }

  .profiles-inner {
    width: min(100% - 32px, 1480px);
  }

  .profiles {
    min-height: calc(68svh - 68px);
    padding: 2rem 0 2.5rem;
  }

  .profiles-heading {
    grid-template-columns: 1fr auto;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
  }

  .profiles-heading > div {
    display: block;
  }

  .profiles h2 {
    font-size: clamp(2.5rem, 12vw, 3.4rem);
  }

  .profiles-kicker {
    margin-bottom: 0.3rem;
    font-size: 0.56rem;
  }

  .profiles-intro {
    display: none;
  }

  .profiles-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .profile-badge {
    grid-template-columns: 2rem minmax(0, 1fr);
    gap: 0.45rem;
    min-height: 3.8rem;
    padding: 0.45rem 0.48rem;
    border-radius: 1rem;
  }

  .profile-icon {
    width: 2rem;
  }

  .profile-icon svg {
    width: 1.05rem;
  }

  .profile-arrow {
    display: none;
  }

  .profile-label small {
    display: none;
  }

  .profile-label strong {
    overflow: visible;
    font-size: clamp(0.58rem, 2.4vw, 0.72rem);
    line-height: 1.05;
    text-overflow: clip;
    white-space: normal;
  }
}

@media (max-width: 390px) {
  .profiles-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .profile-label strong {
    font-size: 0.62rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .confetti,
  .replay {
    display: none;
  }
}
