:root {
  --bg: #090909;
  --surface: rgba(255, 255, 255, 0.05);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.14);
  --text: #f5f1e8;
  --muted: #b8b2a7;
  --acid: #d49354;
  --copper: #f0b46f;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(212, 147, 84, 0.09), transparent 30%),
    radial-gradient(circle at 80% 15%, rgba(240, 180, 111, 0.12), transparent 22%),
    var(--bg);
  color: var(--text);
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
}

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

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

.page-shell {
  position: relative;
  overflow: hidden;
}

.ambient {
  position: fixed;
  inset: auto;
  width: 32rem;
  height: 32rem;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}

.ambient-left {
  top: 10%;
  left: -10%;
  background: rgba(212, 147, 84, 0.22);
}

.ambient-right {
  top: 25%;
  right: -8%;
  background: rgba(240, 180, 111, 0.16);
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 4px 4px, 4px 4px;
  z-index: 0;
}

.site-header,
.section {
  position: relative;
  z-index: 1;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem clamp(1.25rem, 3vw, 3rem);
  position: sticky;
  top: 0;
  backdrop-filter: blur(14px);
  background: rgba(9, 9, 9, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.brand,
.site-nav a,
.eyebrow,
.button,
.stat-card span,
.timeline-year,
.release-meta,
.social-card span,
.rider-item span {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand {
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: none;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.site-nav {
  display: flex;
  gap: 1.25rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  width: min(1280px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2.75rem, 6vw, 5.25rem) 0;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  color: var(--acid);
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.hero h1,
.section-heading h2,
.sound-copy h2,
.booking-section h2 {
  margin: 0;
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(3.8rem, 10vw, 7.2rem);
  max-width: none;
  line-height: 0.92;
  text-transform: none;
}

.hero-kicker {
  margin: 1rem 0 0;
  color: var(--copper);
  font-size: clamp(1.2rem, 3vw, 1.9rem);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.hero-body,
.intro-copy p,
.section-note,
.sound-grid p,
.booking-copy {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

.hero-body {
  max-width: 40rem;
  margin: 1.4rem 0 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-proof,
.positioning-grid,
.booking-cta-row {
  display: grid;
  gap: 1rem;
}

.hero-proof {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.6rem;
}

.hero-proof-card,
.positioning-card {
  padding: 1rem 1.1rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.hero-proof-card span,
.positioning-card span {
  display: block;
  color: var(--acid);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-proof-card strong,
.positioning-card strong {
  display: block;
  margin-top: 0.55rem;
  font-size: 1rem;
}

.positioning-section {
  padding-top: 0;
}

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

.positioning-card {
  display: grid;
  gap: 0.8rem;
  min-height: 13rem;
}

.positioning-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.9rem 1.35rem;
  font-size: 0.82rem;
  font-weight: 800;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #130d08;
  background: linear-gradient(135deg, var(--acid), var(--copper));
  border: 1px solid rgba(212, 147, 84, 0.35);
}

.button-primary:hover {
  color: #090909;
  background: #ffffff;
}

.button-secondary {
  border: 1px solid rgba(212, 147, 84, 0.35);
  background: rgba(212, 147, 84, 0.14);
  color: var(--copper);
}

.button-secondary:hover {
  color: #090909;
  background: #ffffff;
  border-color: #ffffff;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.vinyl-frame {
  position: relative;
  width: min(34rem, 100%);
  aspect-ratio: 4 / 4.6;
  padding: 1.25rem;
  border-radius: 2rem;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow);
}

.vinyl-frame img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.4rem;
  z-index: 2;
}

.vinyl-disc {
  position: absolute;
  right: -1rem;
  top: 1rem;
  width: 52%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #242424 0 8%, #090909 8% 15%, transparent 15%),
    repeating-radial-gradient(circle at center, #1a1a1a 0 3px, #090909 3px 8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 1;
  opacity: 0.9;
}

.floating-card,
.stat-card,
.timeline-item,
.release-card,
.social-card,
.rider-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(12px);
}

.floating-card {
  position: static;
  justify-self: center;
  margin-top: 1rem;
  max-width: 15rem;
  width: 100%;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  text-align: left;
}

.floating-card span,
.stat-card span,
.rider-item span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--muted);
  font-size: 0.72rem;
}

.floating-card strong,
.stat-card strong,
.rider-item strong {
  font-size: 1rem;
}

.section-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.centered-heading {
  justify-items: center;
  text-align: center;
}

.compact-heading {
  width: min(100%, 980px);
  margin-left: auto;
  margin-right: auto;
}

.compact-heading.split-heading {
  grid-template-columns: 1fr;
  align-items: center;
}

.compact-heading > div {
  display: grid;
  gap: 1rem;
  justify-items: center;
}

.compact-heading .eyebrow,
.compact-heading h2,
.compact-heading .section-note {
  max-width: none;
}

.compact-heading .section-note {
  margin: 0;
  text-align: center;
  max-width: 48rem;
}

.section-heading h2,
.sound-copy h2,
.booking-section h2 {
  font-size: clamp(2.3rem, 5.6vw, 4.35rem);
  max-width: 14ch;
}

.compact-heading h2 {
  width: 100%;
  max-width: 18ch;
  line-height: 0.9;
}

#trayectoria .compact-heading h2,
#discografia .compact-heading h2,
.socials-section .compact-heading h2,
#booking h2 {
  max-width: 22ch;
}

#booking h2 {
  margin-left: auto;
  margin-right: auto;
}

#bio .section-heading {
  grid-column: 1 / -1;
  align-self: start;
  margin-bottom: 0.5rem;
}

#bio .section-heading h2 {
  width: 100%;
  max-width: 24ch;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2.5rem;
  align-items: start;
}

.intro-copy {
  display: grid;
  align-content: start;
  gap: 0.4rem;
}

.media-carousel {
  align-self: start;
}

.lead {
  margin-top: 0;
  font-size: 1.32rem;
  color: var(--text);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.stat-card,
.rider-item {
  padding: 1.2rem;
  border-radius: 1.2rem;
}

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

.timeline-item {
  position: relative;
  min-height: 14rem;
  padding: 1.4rem;
  border-radius: 1.3rem;
  overflow: hidden;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 1.4rem;
  top: 1.4rem;
  width: 3rem;
  height: 2px;
  background: linear-gradient(90deg, var(--acid), transparent);
}

.timeline-year {
  display: inline-block;
  margin-top: 1.2rem;
  color: var(--acid);
  font-size: 0.78rem;
}

.timeline-item h3 {
  margin: 0.9rem 0 0.8rem;
  font-size: 1.3rem;
  font-weight: 700;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.split-heading {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.5fr);
  align-items: end;
}

.section-note {
  margin: 0;
}

.release-grid,
.downloads-grid,
.social-grid,
.rider-grid,
.sound-grid {
  display: grid;
  gap: 1rem;
}

.carousel-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
}

.carousel-button {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 1.25rem;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.carousel-button:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 147, 84, 0.42);
}

.release-grid {
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 290px);
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 0.5rem;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
}

.release-card {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border-radius: 1.4rem;
  min-height: 18rem;
  transition: transform 180ms ease, border-color 180ms ease;
  scroll-snap-align: start;
}

.release-card:hover,
.social-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 147, 84, 0.42);
}

.release-art {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 1rem;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.release-card h3,
.social-card strong {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
}

.release-meta {
  color: var(--acid);
  font-size: 0.72rem;
}

.release-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.release-link,
.social-card em {
  margin-top: auto;
  color: var(--text);
  font-style: normal;
  font-weight: 700;
}

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

.download-card {
  display: grid;
  gap: 1rem;
  min-height: 19rem;
  padding: 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top left, rgba(200, 169, 106, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.download-art {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 1rem;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.download-card span {
  color: var(--acid);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.download-card h3 {
  margin: 0;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.1;
}

.download-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.download-card .button {
  margin-top: auto;
  justify-self: start;
}

.sound-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  align-items: start;
}

.sound-layout,
.rider-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 1.2rem;
  align-items: stretch;
}

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

.sound-grid article {
  padding: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.sound-grid h3 {
  margin: 0 0 0.8rem;
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-size: 2.15rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.section-media-card {
  min-height: 100%;
  border-radius: 1.4rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.section-media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.social-card {
  display: grid;
  gap: 0.7rem;
  padding: 1.2rem;
  min-height: 11rem;
  border-radius: 1.2rem;
  transition: transform 180ms ease, border-color 180ms ease;
}

.social-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.9rem;
  display: inline-grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.social-icon svg {
  width: 1.4rem;
  height: 1.4rem;
  fill: var(--text);
}

.social-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-card span {
  color: var(--muted);
  font-size: 0.72rem;
}

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

.rider-item {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  min-height: 22rem;
}

.rider-item-media {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  aspect-ratio: 1.25 / 1;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.rider-item-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 9, 9, 0.08), rgba(9, 9, 9, 0.34));
}

.rider-item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rider-item-copy {
  display: grid;
  gap: 0.45rem;
}

.rider-item--decks .rider-item-media img,
.rider-item--mixer .rider-item-media img,
.rider-item--monitor .rider-item-media img {
  object-position: center;
}

.booking-section {
  text-align: center;
  padding-bottom: 4rem;
}

.booking-cta-row {
  width: min(32rem, 100%);
  margin: 1.5rem auto 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.booking-note {
  max-width: 34rem;
  margin: 0.75rem auto 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.contact-card {
  width: min(760px, 100%);
  margin: 1rem auto 0;
  padding: 2rem;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top left, rgba(212, 147, 84, 0.09), transparent 26%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
}

.contact-item {
  display: grid;
  gap: 0.55rem;
  padding: 1.2rem 1.25rem;
  border-radius: 1.2rem;
  background: rgba(7, 7, 7, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

.contact-item span {
  color: var(--acid);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-item a {
  color: var(--text);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 700;
  line-height: 1.25;
  word-break: break-word;
}

.contact-item a:hover {
  color: var(--acid);
}

.media-lightbox {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
  z-index: 40;
}

.media-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.media-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 3, 3, 0.82);
  backdrop-filter: blur(10px);
}

.media-lightbox-dialog {
  position: relative;
  width: min(960px, 100%);
  border-radius: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at top left, rgba(212, 147, 84, 0.09), transparent 26%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    rgba(12, 12, 12, 0.92);
  box-shadow: var(--shadow);
  padding: 1.25rem;
  z-index: 1;
}

.media-lightbox-head {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.media-lightbox-head h3 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.05;
}

.media-lightbox-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.media-lightbox-frame {
  border-radius: 1.25rem;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.embed-shell {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.embed-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.embed-shell--spotify {
  aspect-ratio: 16 / 10.2;
}

.media-carousel,
.video-carousel-shell {
  min-width: 0;
}

.media-track {
  display: grid;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
}

.bio-track {
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 340px);
}

.bio-photo-card,
.video-card {
  scroll-snap-align: start;
  border-radius: 1.4rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.bio-photo-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.video-carousel-shell {
  margin-top: 2.2rem;
}

.video-track {
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 430px);
}

.video-card {
  text-align: left;
}

.video-thumb-wrap {
  position: relative;
}

.video-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
}

.video-play-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-card-body {
  padding: 1rem 1rem 1.2rem;
}

.video-card-body span {
  color: var(--acid);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-card-body strong {
  display: block;
  margin-top: 0.55rem;
  font-size: 1rem;
  font-weight: 700;
}

@media (max-width: 1080px) {
  .hero,
  .intro-grid,
  .sound-section,
  .split-heading {
    grid-template-columns: 1fr;
  }

  .timeline,
  .sound-grid,
  .positioning-grid,
  .downloads-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sound-layout,
  .rider-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .site-header {
    flex-direction: column;
    gap: 0.8rem;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .section {
    width: min(100% - 1.25rem, 42rem);
    padding: 2.4rem 0;
  }

  .hero {
    min-height: auto;
  }

  .floating-card {
    position: static;
    margin-top: 1rem;
    max-width: none;
  }

  .media-lightbox-dialog {
    padding: 1rem;
  }

  .stat-row,
  .timeline,
  .sound-grid,
  .positioning-grid,
  .downloads-grid,
  .social-grid,
  .rider-grid,
  .hero-proof,
  .booking-cta-row {
    grid-template-columns: 1fr;
  }

  .carousel-shell {
    grid-template-columns: 1fr;
  }

  .carousel-button {
    display: none;
  }

  .release-grid {
    grid-auto-columns: minmax(220px, 84vw);
  }

  .bio-track,
  .video-track {
    grid-auto-columns: minmax(260px, 84vw);
  }

  .hero h1 {
    font-size: clamp(4rem, 22vw, 6.2rem);
  }

  .section-heading h2,
  .sound-copy h2,
  .booking-section h2 {
    max-width: none;
    font-size: clamp(2.15rem, 12vw, 3.2rem);
  }

}

:root {
  --acid: #c8a96a;
  --copper: #f0d59a;
}

body {
  background:
    radial-gradient(circle at top left, rgba(200, 169, 106, 0.09), transparent 30%),
    radial-gradient(circle at 80% 15%, rgba(240, 213, 154, 0.08), transparent 24%),
    var(--bg);
}

.ambient-left {
  background: rgba(200, 169, 106, 0.2);
}

.ambient-right {
  background: rgba(240, 213, 154, 0.14);
}

.button-primary {
  color: #15110a;
  border-color: rgba(200, 169, 106, 0.34);
}
