:root {
  color-scheme: dark;
  --ink: #080706;
  --ink-2: #120d0b;
  --paper: #f6efe8;
  --paper-soft: rgba(246, 239, 232, 0.76);
  --gold: #c8a27a;
  --gold-soft: #ead0b2;
  --red: #7c1515;
  --green: #133726;
  --line: rgba(234, 208, 178, 0.24);
  --max: 1180px;
  --header-h: 68px;
  font-family:
    Montserrat, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 80% 10%, rgba(124, 21, 21, 0.38), transparent 30rem),
    linear-gradient(180deg, #050403 0%, #120d0b 45%, #080706 100%);
  color: var(--paper);
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 30;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(234, 208, 178, 0.12), transparent 40rem);
  background-size: 100% 8px, auto;
  mix-blend-mode: overlay;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 50;
  transform: translateY(-160%);
  background: var(--paper);
  color: var(--ink);
  padding: 0.75rem 1rem;
  border-radius: 999px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.8rem;
  padding: 0.72rem clamp(1rem, 4vw, 2rem);
  border-bottom: 1px solid rgba(234, 208, 178, 0.18);
  background: rgba(8, 7, 6, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  width: fit-content;
  min-width: 0;
}

.brand img {
  width: clamp(7.25rem, 24vw, 9.4rem);
  max-height: 2.85rem;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 5px 14px rgba(0, 0, 0, 0.5));
}

.nav-links {
  display: none;
}

.header-actions {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: end;
  gap: 0.65rem;
}

.translate-cta,
.header-cta,
.button,
.video-link,
.reservation-panel a {
  text-decoration: none;
  text-transform: uppercase;
}

.translate-cta,
.header-cta {
  min-height: 2.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  border: 1px solid rgba(234, 208, 178, 0.5);
  border-radius: 999px;
  color: var(--gold-soft);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.translate-cta {
  gap: 0.45rem;
  padding: 0 0.72rem;
  border-color: rgba(234, 208, 178, 0.36);
  background: rgba(246, 239, 232, 0.04);
}

.translate-flag {
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(246, 239, 232, 0.22);
}

.translate-flag.flag-pt {
  background:
    radial-gradient(circle at 50% 50%, #2449a9 0 20%, transparent 21%),
    linear-gradient(45deg, transparent 34%, #f2cf42 35% 65%, transparent 66%),
    #159b55;
}

.translate-flag.flag-es {
  background:
    radial-gradient(circle at 35% 30%, #fff 0 6%, transparent 7%),
    linear-gradient(90deg, #0039a6 0 38%, transparent 39%),
    linear-gradient(180deg, #fff 0 50%, #d52b1e 51% 100%);
}

.pix-badge {
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.48rem;
  min-height: 2.35rem;
  padding: 0 0.78rem;
  border: 1px solid rgba(94, 214, 197, 0.5);
  border-radius: 999px;
  background: rgba(8, 7, 6, 0.34);
  color: #d6fff8;
  font-size: 0.72rem;
  font-weight: 860;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  backdrop-filter: blur(12px);
}

.pix-mark {
  position: relative;
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
}

.pix-mark::before,
.pix-mark::after {
  content: "";
  position: absolute;
  border-radius: 0.18rem;
  transform: rotate(45deg);
}

.pix-mark::before {
  inset: 0.18rem;
  background: #5ed6c5;
  box-shadow:
    -0.28rem -0.28rem 0 -0.08rem #5ed6c5,
    0.28rem 0.28rem 0 -0.08rem #5ed6c5;
}

.pix-mark::after {
  inset: 0.36rem;
  background: #0a1210;
}

.home-hero,
.artist-hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  padding: calc(var(--header-h) + 1.3rem) 1rem 1.35rem;
}

.home-hero-photo,
.artist-hero-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.home-hero-photo img,
.artist-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero-photo img {
  object-position: 50% 50%;
}

.artist-hero-photo img {
  object-position: var(--image-position, 50% 35%);
  transform: scale(var(--image-scale, 1));
  transform-origin: var(--image-origin, 50% 50%);
}

.home-hero::after,
.artist-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(8, 7, 6, 0.12) 0%, rgba(8, 7, 6, 0.1) 36%, rgba(8, 7, 6, 0.82) 100%),
    linear-gradient(90deg, rgba(8, 7, 6, 0.84), rgba(8, 7, 6, 0.26) 56%, rgba(8, 7, 6, 0.84));
}

.home-hero-content,
.artist-hero-content {
  width: min(100%, 38rem);
  min-width: 0;
  padding-bottom: clamp(0.4rem, 4svh, 2rem);
}

.kicker,
.section-label,
.artist-card span {
  margin: 0;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

.home-hero h1,
.artist-hero h1 {
  margin: 0.28rem 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
}

.home-hero h1 {
  max-width: min(100%, 11.5ch);
  font-size: clamp(3rem, 12.5vw, 5.35rem);
  line-height: 0.9;
}

.artist-hero h1 {
  max-width: min(100%, 7.6ch);
  font-size: clamp(3.6rem, 14vw, 7.2rem);
  line-height: 0.84;
}

.home-hero p:not(.kicker),
.artist-hero p:not(.kicker) {
  max-width: 33rem;
  margin: 1.05rem 0 0;
  color: var(--paper-soft);
  font-size: clamp(1rem, 4vw, 1.24rem);
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.05rem;
}

.artist-schedule-panel {
  width: min(100%, 25rem);
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(234, 208, 178, 0.28);
  background: rgba(8, 7, 6, 0.52);
  backdrop-filter: blur(14px);
}

.artist-schedule-panel p {
  margin: 0 0 0.5rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.artist-schedule-today {
  border-color: rgba(200, 162, 122, 0.72);
  box-shadow: 0 0 0 1px rgba(200, 162, 122, 0.22), 0 18px 50px rgba(124, 21, 21, 0.22);
}

.schedule-empty {
  color: rgba(246, 239, 232, 0.72);
  font-weight: 720;
}

.artist-schedule-list {
  display: grid;
  gap: 0.58rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.artist-schedule-list li {
  display: grid;
  gap: 0.2rem;
  padding-top: 0.58rem;
  border-top: 1px solid rgba(234, 208, 178, 0.16);
}

.artist-schedule-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.artist-schedule-list strong {
  color: var(--paper);
  font-size: 0.96rem;
}

.artist-schedule-list span {
  color: rgba(246, 239, 232, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
}

.home-hero .hero-address {
  max-width: 28rem;
  margin-top: 1rem;
  color: rgba(246, 239, 232, 0.66);
  font-size: 0.82rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.hero-pix {
  margin-top: 1rem;
}

.button {
  min-height: 3.12rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  line-height: 1;
  text-align: center;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.button-primary {
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #100806;
}

.button-secondary {
  border: 1px solid rgba(246, 239, 232, 0.45);
  background: rgba(8, 7, 6, 0.18);
  color: var(--paper);
  backdrop-filter: blur(12px);
}

.button:hover,
.translate-cta:hover,
.header-cta:hover,
.video-link:hover,
.reservation-panel a:hover {
  transform: translateY(-1px);
}

.button:focus-visible,
.translate-cta:focus-visible,
.header-cta:focus-visible,
.nav-links a:focus-visible,
.video-link:focus-visible,
.reservation-panel a:focus-visible,
.artist-card:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 4px;
}

.section {
  scroll-margin-top: var(--header-h);
  color: var(--paper);
  background: var(--ink);
}

.section-wrap {
  width: 100%;
  min-width: 0;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3.4rem, 11vw, 7rem) 1rem;
}

.section-heading {
  display: grid;
  gap: 0.95rem;
  max-width: 44rem;
}

.section-heading h2,
.venue-copy h2,
.reservation-grid h2,
.night-grid h2,
.show-grid h2 {
  margin: 0.1rem 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.55rem, 11vw, 5.6rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.92;
}

.section-heading p,
.venue-copy p,
.body-copy,
.reservation-panel p,
.artist-photo-copy,
.milestone-item p {
  margin: 0;
  color: var(--paper-soft);
  font-size: clamp(1rem, 4vw, 1.22rem);
  line-height: 1.58;
}

.body-copy {
  display: grid;
  gap: 1rem;
}

.roster-section {
  background:
    radial-gradient(circle at 14% 2%, rgba(200, 162, 122, 0.14), transparent 22rem),
    linear-gradient(180deg, rgba(124, 21, 21, 0.26), transparent 34rem),
    #100b09;
}

.artist-list {
  display: grid;
  gap: 1.1rem;
  margin-top: 1.8rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
}

.artist-card {
  position: relative;
  min-height: clamp(24rem, 68vw, 29rem);
  display: grid;
  align-content: end;
  gap: 0.55rem;
  overflow: hidden;
  padding: 1.05rem;
  border: 1px solid rgba(234, 208, 178, 0.24);
  color: var(--paper);
  text-decoration: none;
  background:
    linear-gradient(180deg, rgba(36, 14, 10, 0.28), rgba(8, 7, 6, 0.9)),
    #130d0b;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
  isolation: isolate;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.artist-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 7, 6, 0.04) 0%, rgba(8, 7, 6, 0.16) 40%, rgba(8, 7, 6, 0.92) 100%),
    linear-gradient(90deg, rgba(8, 7, 6, 0.62), transparent 66%);
  pointer-events: none;
}

.artist-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--image-position, 50% 35%);
  transform: scale(var(--image-scale, 1));
  transform-origin: var(--image-origin, 50% 50%);
  transition: transform 700ms ease;
}

.artist-card:hover img {
  transform: scale(var(--image-hover-scale, 1.05));
}

.artist-card:hover {
  border-color: rgba(234, 208, 178, 0.46);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
  transform: translateY(-2px);
}

.artist-card-today {
  order: -1;
  border-color: rgba(246, 239, 232, 0.78);
  box-shadow:
    0 0 0 1px rgba(200, 162, 122, 0.46),
    0 22px 78px rgba(124, 21, 21, 0.36),
    inset 0 0 0 1px rgba(8, 7, 6, 0.68);
  animation: artistDayGlow 2.6s ease-in-out infinite;
}

.artist-card-today::after {
  background:
    linear-gradient(180deg, rgba(8, 7, 6, 0.1) 0%, rgba(8, 7, 6, 0.24) 42%, rgba(8, 7, 6, 0.94) 100%),
    linear-gradient(90deg, rgba(8, 7, 6, 0.66), transparent 64%);
}

.artist-card .today-chip {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 3;
  width: fit-content;
  padding: 0.43rem 0.62rem;
  border: 1px solid rgba(246, 239, 232, 0.72);
  background: rgba(8, 7, 6, 0.82);
  color: var(--gold-soft);
  font-size: 0.65rem;
  font-weight: 860;
  letter-spacing: 0.12em;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(10px);
}

.today-chip[hidden] {
  display: none;
}

.artist-card span:not(.today-chip),
.artist-card strong,
.artist-card em {
  position: relative;
  z-index: 1;
}

.artist-card strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 14vw, 5rem);
  font-weight: 700;
  line-height: 0.82;
}

.artist-card em {
  color: rgba(246, 239, 232, 0.82);
  font-size: 0.86rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

body.day-popup-open {
  overflow: hidden;
}

.day-artist-popover {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 220ms ease,
    visibility 220ms ease;
}

.day-artist-popover.is-visible {
  opacity: 1;
  visibility: visible;
}

.day-artist-scrim {
  position: absolute;
  inset: 0;
  background: rgba(4, 3, 3, 0.82);
  backdrop-filter: blur(12px);
}

.day-artist-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 58rem);
  max-height: calc(100vh - 2rem);
  max-height: calc(100svh - 2rem);
  max-height: calc(100dvh - 2rem);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
  overflow: hidden;
  border: 1px solid rgba(234, 208, 178, 0.42);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(200, 162, 122, 0.08), transparent 28%),
    radial-gradient(circle at 100% 0%, rgba(124, 21, 21, 0.34), transparent 24rem),
    #0b0807;
  box-shadow:
    0 32px 120px rgba(0, 0, 0, 0.76),
    0 0 0 1px rgba(8, 7, 6, 0.76);
  transform: translateY(1rem) scale(0.985);
  transition: transform 260ms ease;
}

.day-artist-popover.is-visible .day-artist-dialog {
  transform: translateY(0) scale(1);
}

.day-artist-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 3;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgba(246, 239, 232, 0.52);
  border-radius: 999px;
  background: rgba(8, 7, 6, 0.78);
  color: var(--paper);
  font-size: 1.25rem;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.day-artist-media {
  min-height: 34rem;
  overflow: hidden;
  background: #120d0b;
}

.day-artist-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--image-position, 50% 35%);
  transform: scale(var(--image-scale, 1));
  transform-origin: var(--image-origin, 50% 50%);
}

.day-artist-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: auto;
  padding: clamp(1.4rem, 4vw, 2.6rem);
}

.day-artist-content h2,
.day-artist-loading h2 {
  margin: 0.3rem 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.35rem);
  line-height: 0.95;
}

.day-artist-heading {
  display: flex;
  align-items: center;
  gap: 0.22em;
  white-space: nowrap;
}

.day-artist-heading img {
  width: auto;
  height: 0.8em;
  max-width: 4.2em;
  object-fit: contain;
  filter: drop-shadow(0 0.12em 0.24em rgba(0, 0, 0, 0.34));
  transform: translateY(0.03em);
}

.day-artist-content .day-artist-name {
  margin: 0.9rem 0 0;
  color: var(--gold-soft);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.45rem, 5.8vw, 4.25rem);
  font-weight: 700;
  line-height: 0.88;
}

.day-artist-event {
  margin: 0.72rem 0 0;
  color: rgba(246, 239, 232, 0.78);
  font-size: 0.9rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  line-height: 1.5;
  text-transform: uppercase;
}

.day-artist-actions {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.day-artist-share {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.55rem;
  border-bottom: 1px solid rgba(234, 208, 178, 0.32);
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.day-artist-loading {
  grid-column: 1 / -1;
  min-height: 20rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 6vw, 3rem);
}

.day-artist-loading > p:last-child {
  margin: 0.8rem 0 0;
  color: var(--paper-soft);
}

.day-artist-popover.is-loading .day-artist-dialog {
  width: min(100%, 28rem);
  grid-template-columns: 1fr;
}

.day-artist-pulse {
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--gold);
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(200, 162, 122, 0.45);
  animation: dayPulse 1.6s ease-out infinite;
}

@keyframes dayPulse {
  100% {
    box-shadow: 0 0 0 1.4rem rgba(200, 162, 122, 0);
  }
}

@keyframes artistDayGlow {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(200, 162, 122, 0.34),
      0 22px 70px rgba(124, 21, 21, 0.28),
      inset 0 0 0 1px rgba(8, 7, 6, 0.66);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(246, 239, 232, 0.64),
      0 28px 84px rgba(200, 162, 122, 0.22),
      inset 0 0 0 1px rgba(8, 7, 6, 0.72);
  }
}

.venue-section {
  background:
    radial-gradient(circle at 15% 10%, rgba(19, 55, 38, 0.54), transparent 28rem),
    #080706;
}

.venue-grid,
.night-grid,
.show-grid,
.reservation-grid {
  display: grid;
  gap: 2rem;
}

.venue-copy,
.night-grid > *,
.show-grid > *,
.reservation-grid > * {
  min-width: 0;
}

.venue-photos {
  display: grid;
  gap: 0.85rem;
}

.venue-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(234, 208, 178, 0.18);
  background: #120d0b;
}

.venue-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.venue-photo figcaption {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  padding: 0.48rem 0.7rem;
  border: 1px solid rgba(234, 208, 178, 0.26);
  border-radius: 999px;
  background: rgba(8, 7, 6, 0.64);
  color: var(--gold-soft);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.artist-bio-section {
  background:
    linear-gradient(90deg, rgba(124, 21, 21, 0.2), transparent 42%),
    #100b09;
}

.artist-bio-section .section-wrap {
  padding-top: clamp(2.7rem, 8vw, 5rem);
  padding-bottom: clamp(2.9rem, 8vw, 5.4rem);
}

.artist-bio-section .night-grid {
  align-items: start;
  gap: clamp(1.4rem, 6vw, 4rem);
}

.artist-bio-section h2 {
  max-width: none;
  font-size: clamp(2.35rem, 8vw, 3.8rem);
  line-height: 0.94;
  overflow-wrap: normal;
  word-break: normal;
}

.artist-bio-section .body-copy {
  max-width: 43rem;
  gap: 0;
  border-top: 1px solid rgba(234, 208, 178, 0.18);
}

.artist-bio-section .body-copy p {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(234, 208, 178, 0.18);
  color: rgba(246, 239, 232, 0.84);
}

.artist-photo-section {
  background:
    radial-gradient(circle at 88% 0%, rgba(200, 162, 122, 0.16), transparent 27rem),
    #080706;
}

.artist-portrait {
  overflow: hidden;
  border: 1px solid rgba(234, 208, 178, 0.22);
  background: #120d0b;
}

.artist-portrait img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 50% 82%;
}

.artist-photo-copy {
  margin-top: 1.2rem;
}

.artist-gallery {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.artist-gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(234, 208, 178, 0.18);
  background: #120d0b;
}

.artist-gallery img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 50%;
}

.artist-gallery figcaption {
  position: absolute;
  left: 0.65rem;
  bottom: 0.65rem;
  padding: 0.42rem 0.62rem;
  border: 1px solid rgba(234, 208, 178, 0.24);
  border-radius: 999px;
  background: rgba(8, 7, 6, 0.62);
  color: var(--gold-soft);
  font-size: 0.66rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.milestone-section {
  background:
    radial-gradient(circle at 15% 0%, rgba(124, 21, 21, 0.28), transparent 28rem),
    #100b09;
}

.milestone-list {
  display: grid;
  margin-top: 2rem;
  border-top: 1px solid rgba(234, 208, 178, 0.2);
}

.milestone-item {
  min-width: 0;
  display: grid;
  gap: 0.55rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid rgba(234, 208, 178, 0.2);
}

.milestone-head {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.milestone-head img {
  width: min(7.5rem, 40%);
  height: auto;
  max-height: 2.2rem;
  object-fit: contain;
}

.milestone-head strong {
  color: var(--gold-soft);
  font-size: 0.84rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  line-height: 1.15;
  text-transform: uppercase;
}

.ig-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
  justify-items: center;
}

.ig-grid .instagram-media {
  width: min(100%, 350px) !important;
  min-width: 0 !important;
  max-width: 350px !important;
  margin: 0 !important;
  background: var(--paper) !important;
}

.video-section {
  background: #e8dfd3;
  color: #120d0b;
}

.video-section .section-label {
  color: var(--red);
}

.video-section .section-heading p {
  color: rgba(18, 13, 11, 0.72);
}

.video-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.video-grid-single {
  max-width: 760px;
}

.video-card {
  border: 1px solid rgba(18, 13, 11, 0.16);
  background: rgba(255, 255, 255, 0.44);
}

.video-shell {
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, rgba(18, 13, 11, 0.88), rgba(124, 21, 21, 0.44)),
    #120d0b;
}

.video-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.spotify-shell {
  aspect-ratio: auto;
  min-height: 352px;
  background: #121212;
}

.spotify-shell iframe {
  height: 352px;
}

.artist-profile-section {
  background:
    radial-gradient(circle at 8% 4%, rgba(124, 21, 21, 0.2), transparent 28rem),
    #0e0a08;
}

.artist-profile-grid {
  display: grid;
  gap: clamp(1.6rem, 7vw, 5.5rem);
  align-items: start;
}

.artist-profile-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #120d0b;
}

.artist-profile-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(234, 208, 178, 0.22);
  pointer-events: none;
}

.artist-profile-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: var(--image-position, 50% 50%);
  transform: scale(var(--image-scale, 1));
  transform-origin: var(--image-origin, 50% 50%);
}

.artist-profile-copy {
  min-width: 0;
}

.artist-profile-copy h2,
.artist-media-heading h2,
.experience-intro h2 {
  margin: 0.3rem 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.7rem, 11vw, 5rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.92;
}

.artist-profile-copy .body-copy {
  max-width: 43rem;
  gap: 0.85rem;
  margin-top: 1.4rem;
  color: rgba(246, 239, 232, 0.84);
}

.artist-profile-copy .body-copy p {
  margin: 0;
}

.artist-highlights {
  display: grid;
  margin-top: 1.7rem;
  border-top: 1px solid rgba(234, 208, 178, 0.2);
}

.artist-highlight {
  display: grid;
  gap: 0.42rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(234, 208, 178, 0.2);
}

.artist-highlight-title {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.artist-highlight-title img {
  width: min(6.8rem, 32%);
  max-height: 2rem;
  object-fit: contain;
}

.artist-highlight-title strong {
  color: var(--gold-soft);
  font-size: 0.79rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.artist-highlight p {
  max-width: 42rem;
  margin: 0;
  color: rgba(246, 239, 232, 0.68);
  line-height: 1.55;
}

.artist-links {
  margin-top: 1.8rem;
}

.artist-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.8rem;
}

.artist-link-list a {
  min-height: 2.8rem;
  display: inline-flex;
  align-items: center;
  padding: 0 0.9rem;
  border: 1px solid rgba(234, 208, 178, 0.28);
  color: var(--paper);
  font-size: 0.75rem;
  font-weight: 780;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    border-color 180ms ease;
}

.artist-link-list a:hover {
  border-color: rgba(234, 208, 178, 0.62);
  background: rgba(246, 239, 232, 0.06);
}

.artist-invite-button[hidden] {
  display: none;
}

.artist-media-section {
  background: #e6ddd2;
  color: #120d0b;
}

.artist-media-wrap {
  display: grid;
  gap: 1.6rem;
}

.artist-media-heading .section-label {
  color: var(--red);
}

.artist-media-heading h2 {
  max-width: 10ch;
  color: #120d0b;
}

.artist-media-section .video-grid {
  margin-top: 0;
}

.artist-media-section .video-card {
  border-color: rgba(18, 13, 11, 0.18);
  background: rgba(255, 255, 255, 0.44);
}

.carloto-experience {
  scroll-margin-top: var(--header-h);
  overflow: hidden;
  background: #050403;
}

.experience-intro {
  width: 100%;
  max-width: var(--max);
  display: grid;
  gap: 1.5rem;
  margin: 0 auto;
  padding: clamp(3.5rem, 10vw, 7rem) 1rem clamp(2rem, 6vw, 3.5rem);
}

.experience-intro > div {
  max-width: 45rem;
}

.experience-intro h2 {
  max-width: 10ch;
}

.experience-intro > div > p:last-child {
  max-width: 36rem;
  margin: 1.1rem 0 0;
  color: var(--paper-soft);
  font-size: clamp(1rem, 4vw, 1.2rem);
  line-height: 1.58;
}

.experience-intro > .button {
  width: fit-content;
  align-self: end;
}

.cinematic-floors {
  position: relative;
  height: clamp(28rem, 72svh, 44rem);
  overflow: hidden;
  isolation: isolate;
  touch-action: pan-y;
  background: #120d0b;
}

.cinematic-stage {
  position: absolute;
  inset: 0;
}

.cinematic-floor {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  background: #120d0b;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 1200ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 1200ms linear;
}

.cinematic-floor.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
}

.cinematic-floor::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 7, 6, 0.08) 28%, rgba(8, 7, 6, 0.3) 60%, rgba(8, 7, 6, 0.94) 100%),
    linear-gradient(90deg, rgba(8, 7, 6, 0.35), transparent 62%);
  pointer-events: none;
}

.cinematic-floor img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--floor-mobile-position, 50% 50%);
  transform: scale(1.06);
  transform-origin: var(--floor-mobile-position, 50% 50%);
}

.cinematic-floor.is-active img {
  animation: cinematic-image-drift 6.4s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

@keyframes cinematic-image-drift {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1.015);
  }
}

.cinematic-floor figcaption {
  position: absolute;
  right: 1rem;
  bottom: 5.8rem;
  left: 1rem;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  color: var(--paper);
  opacity: 0;
  transform: translateY(1rem);
  transition:
    opacity 700ms ease 300ms,
    transform 700ms ease 300ms;
}

.cinematic-floor.is-active figcaption {
  opacity: 1;
  transform: translateY(0);
}

.cinematic-floor figcaption span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.14em;
}

.cinematic-floor figcaption strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.8rem, 12vw, 5.6rem);
  font-weight: 700;
  line-height: 0.9;
}

.cinematic-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 2.9rem;
  height: 2.9rem;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(246, 239, 232, 0.38);
  border-radius: 50%;
  background: rgba(8, 7, 6, 0.48);
  color: var(--paper);
  font: inherit;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.cinematic-arrow:hover,
.cinematic-arrow:focus-visible {
  border-color: var(--gold-soft);
  background: rgba(8, 7, 6, 0.78);
}

.cinematic-arrow:active {
  transform: translateY(-50%) scale(0.94);
}

.cinematic-arrow-prev {
  left: 0.8rem;
}

.cinematic-arrow-next {
  right: 0.8rem;
}

.cinematic-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0 0.55rem env(safe-area-inset-bottom);
  border-top: 1px solid rgba(234, 208, 178, 0.22);
  background: rgba(8, 7, 6, 0.74);
  backdrop-filter: blur(16px);
}

.cinematic-step {
  position: relative;
  min-width: 0;
  min-height: 4.55rem;
  display: grid;
  align-content: center;
  gap: 0.28rem;
  padding: 0.7rem 0.35rem 0.65rem;
  border: 0;
  background: transparent;
  color: rgba(246, 239, 232, 0.5);
  text-align: left;
  cursor: pointer;
  transition: color 240ms ease;
}

.cinematic-step::before {
  content: "";
  position: absolute;
  top: -1px;
  right: 0.35rem;
  left: 0.35rem;
  height: 2px;
  background: var(--gold-soft);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 360ms ease;
}

.cinematic-step.is-active {
  color: var(--paper);
}

.cinematic-step.is-active::before {
  transform: scaleX(1);
}

.cinematic-step:focus-visible {
  outline: 1px solid var(--gold-soft);
  outline-offset: -4px;
}

.cinematic-step span {
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 820;
  letter-spacing: 0.12em;
}

.cinematic-step strong {
  overflow: hidden;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(0.75rem, 2.8vw, 0.98rem);
  font-weight: 650;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.experience-footer {
  width: 100%;
  max-width: var(--max);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 auto;
  padding: 1.2rem 1rem 1.5rem;
  border-top: 1px solid rgba(234, 208, 178, 0.16);
}

.experience-footer p {
  margin: 0;
  color: rgba(246, 239, 232, 0.65);
  font-size: 0.76rem;
  font-weight: 720;
  letter-spacing: 0.06em;
  line-height: 1.5;
  text-transform: uppercase;
}

.experience-footer a {
  color: var(--gold-soft);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.video-link {
  min-height: 3.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  color: #120d0b;
  font-size: 0.82rem;
  font-weight: 860;
  letter-spacing: 0.08em;
}

.video-link::after,
.reservation-panel a::after {
  content: ">";
  margin-left: 1rem;
}

.reservation-section {
  background:
    linear-gradient(180deg, rgba(8, 7, 6, 0.1), rgba(8, 7, 6, 0.96)),
    url("/assets/carloto/bg-web.jpeg") center / cover no-repeat;
}

.reservation-panel {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid rgba(234, 208, 178, 0.26);
  background: rgba(8, 7, 6, 0.58);
  backdrop-filter: blur(14px);
}

.reservation-panel p {
  margin-bottom: 0.4rem;
}

.reservation-panel .pix-badge {
  margin-top: 0.1rem;
}

.pix-copy {
  color: rgba(214, 255, 248, 0.82) !important;
  font-size: 0.9rem !important;
}

.reservation-panel a {
  min-height: 3.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(234, 208, 178, 0.28);
  background: rgba(246, 239, 232, 0.06);
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 840;
  letter-spacing: 0.08em;
}

.site-footer {
  background: #050403;
  border-top: 1px solid rgba(234, 208, 178, 0.16);
}

.footer-grid {
  display: grid;
  gap: 0.75rem;
  padding-top: 1.35rem;
  padding-bottom: 1.6rem;
}

.footer-grid img {
  width: 8.6rem;
  height: auto;
}

.footer-grid p {
  margin: 0;
  color: rgba(246, 239, 232, 0.7);
  font-size: 0.78rem;
  line-height: 1.55;
}

.footer-pix {
  margin: 0.1rem 0 0.2rem;
}

.footer-grid a {
  color: var(--gold-soft);
}

.footer-grid span {
  color: rgba(246, 239, 232, 0.32);
  margin: 0 0.4rem;
}

@media (max-width: 759px) {
  .artist-hero {
    min-height: auto;
    grid-template-rows: minmax(20rem, 48svh) auto;
    align-items: stretch;
    padding: var(--header-h) 0 0;
    background: #080706;
  }

  .artist-hero-photo {
    position: relative;
    inset: auto;
    z-index: 0;
    grid-row: 1;
    overflow: hidden;
  }

  .artist-hero-photo img {
    object-position: var(--image-mobile-position, var(--image-position, 50% 35%));
  }

  .artist-hero::after {
    display: none;
  }

  .artist-hero-content {
    width: 100%;
    padding: 1.05rem 1rem 1.35rem;
    background: linear-gradient(180deg, rgba(8, 7, 6, 0.96), #080706);
  }

  .artist-hero h1 {
    max-width: min(100%, 8.6ch);
    font-size: clamp(3rem, 15vw, 4.55rem);
    line-height: 0.88;
  }

  .artist-hero p:not(.kicker) {
    font-size: clamp(0.98rem, 4.2vw, 1.1rem);
  }

  .artist-schedule-panel {
    width: 100%;
  }

  .day-artist-popover {
    padding: 0.45rem;
  }

  .day-artist-dialog {
    height: min(calc(100svh - 0.9rem), 31.5rem);
    height: min(calc(100dvh - 0.9rem), 31.5rem);
    max-height: calc(100svh - 1.2rem);
    max-height: calc(100dvh - 0.9rem);
    grid-template-columns: 1fr;
    grid-template-rows: clamp(11.5rem, 31dvh, 15rem) minmax(0, 1fr);
  }

  .day-artist-media {
    height: 100%;
    min-height: 0;
  }

  .day-artist-content {
    justify-content: center;
    padding: 0.85rem 0.9rem 0.75rem;
  }

  .day-artist-content .section-label {
    font-size: 0.62rem;
  }

  .day-artist-content h2,
  .day-artist-loading h2 {
    margin-right: 2rem;
    font-size: clamp(1.65rem, 6.8vw, 2rem);
  }

  .day-artist-content .day-artist-name {
    margin-top: 0.52rem;
    font-size: clamp(2.2rem, 10.5vw, 3.05rem);
    line-height: 0.88;
  }

  .day-artist-event {
    margin-top: 0.48rem;
    font-size: 0.7rem;
    letter-spacing: 0.04em;
    line-height: 1.4;
  }

  .day-artist-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
    margin-top: 0.68rem;
  }

  .day-artist-actions .button {
    min-height: 2.7rem;
    padding: 0 0.65rem;
    font-size: 0.68rem;
  }

  .day-artist-share {
    min-height: 2.35rem;
    margin-top: 0.25rem;
    font-size: 0.7rem;
  }

  .day-artist-loading {
    min-height: 18rem;
  }

  .day-artist-popover.is-loading .day-artist-dialog {
    height: auto;
    grid-template-rows: 1fr;
  }

  .artist-profile-image img {
    aspect-ratio: 4 / 4.8;
  }

  .experience-intro > .button {
    width: 100%;
  }

  .cinematic-arrow {
    top: 44%;
  }

  .cinematic-step strong {
    font-family: inherit;
    font-size: 0.58rem;
    font-weight: 760;
    letter-spacing: 0;
    text-transform: uppercase;
  }
}

@media (max-width: 420px) {
  .site-header {
    gap: 0.5rem;
    padding-left: 0.78rem;
    padding-right: 0.78rem;
  }

  .brand img {
    width: clamp(6.15rem, 30vw, 7.2rem);
  }

  .header-actions {
    gap: 0.42rem;
  }

  .translate-cta,
  .header-cta {
    min-height: 2.42rem;
    font-size: 0.68rem;
  }

  .translate-cta {
    gap: 0.35rem;
    padding: 0 0.55rem;
  }

  .header-cta {
    padding: 0 0.66rem;
  }

  .translate-flag {
    width: 0.92rem;
    height: 0.92rem;
  }

  .button {
    width: 100%;
  }

  .home-hero {
    min-height: 90svh;
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }

  .artist-hero-content {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }

  .home-hero h1 {
    font-size: clamp(3rem, 14.5vw, 4rem);
  }

  .artist-hero h1 {
    font-size: clamp(2.95rem, 14.2vw, 4.05rem);
  }
}

@media (min-width: 560px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .nav-links {
    display: flex;
    justify-content: center;
    gap: clamp(1rem, 3vw, 2rem);
  }

  .nav-links a {
    color: rgba(246, 239, 232, 0.72);
    font-size: 0.72rem;
    font-weight: 760;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .nav-links a:hover {
    color: var(--gold-soft);
  }

}

@media (min-width: 760px) {
  .home-hero {
    min-height: min(860px, 84svh);
    align-items: center;
    padding-top: calc(var(--header-h) + 2.6rem);
    padding-bottom: clamp(3.8rem, 8svh, 6.5rem);
    padding-left: clamp(1.5rem, 6vw, 5rem);
    padding-right: clamp(1.5rem, 6vw, 5rem);
  }

  .artist-hero {
    min-height: 92svh;
    padding-left: clamp(1.5rem, 6vw, 5rem);
    padding-right: clamp(1.5rem, 6vw, 5rem);
  }

  .home-hero-content {
    width: min(100%, 34rem);
    padding-bottom: 0;
    margin-left: max(0rem, calc((100vw - var(--max)) / 2));
  }

  .artist-hero-content {
    margin-left: max(0rem, calc((100vw - var(--max)) / 2));
  }

  .home-hero h1 {
    max-width: min(100%, 11.5ch);
    font-size: clamp(4rem, 6.2vw, 5.85rem);
    line-height: 0.91;
  }

  .artist-hero h1 {
    font-size: clamp(4.8rem, 9vw, 7.1rem);
  }

  .home-hero p:not(.kicker) {
    max-width: 30rem;
    font-size: clamp(1rem, 1.25vw, 1.16rem);
  }

  .section-heading h2,
  .venue-copy h2,
  .reservation-grid h2,
  .night-grid h2,
  .show-grid h2 {
    font-size: clamp(3rem, 5.6vw, 4.9rem);
  }

  .artist-card strong {
    font-size: clamp(3rem, 5.4vw, 4.35rem);
  }

  .artist-hero-photo {
    left: auto;
    width: min(58%, 52rem);
  }

  .artist-hero::after {
    background:
      linear-gradient(90deg, #080706 0%, rgba(8, 7, 6, 0.9) 38%, rgba(8, 7, 6, 0.08) 72%),
      linear-gradient(180deg, rgba(8, 7, 6, 0.02) 62%, rgba(8, 7, 6, 0.64) 100%);
  }

  .section-wrap {
    padding-left: clamp(1.5rem, 4vw, 3rem);
    padding-right: clamp(1.5rem, 4vw, 3rem);
  }

  .venue-grid,
  .night-grid,
  .show-grid,
  .reservation-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: center;
  }

  .artist-bio-section .night-grid {
    grid-template-columns: minmax(16rem, 0.58fr) minmax(0, 1.42fr);
  }

  .artist-bio-section h2 {
    font-size: clamp(3rem, 4.2vw, 3.8rem);
  }

  .artist-profile-grid {
    grid-template-columns: minmax(17rem, 0.8fr) minmax(0, 1.2fr);
  }

  .artist-profile-image {
    position: sticky;
    top: calc(var(--header-h) + 1.5rem);
  }

  .artist-profile-copy h2,
  .artist-media-heading h2,
  .experience-intro h2 {
    font-size: clamp(3.6rem, 6vw, 5.4rem);
  }

  .artist-media-wrap {
    grid-template-columns: minmax(15rem, 0.55fr) minmax(0, 1.45fr);
    align-items: start;
  }

  .artist-media-section .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .artist-media-section .video-grid-single {
    grid-template-columns: minmax(0, 1fr);
  }

  .experience-intro {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    padding-left: clamp(1.5rem, 4vw, 3rem);
    padding-right: clamp(1.5rem, 4vw, 3rem);
  }

  .cinematic-floors {
    height: min(78svh, 48rem);
  }

  .cinematic-floor img {
    object-position: var(--floor-position, 50% 50%);
    transform-origin: var(--floor-position, 50% 50%);
  }

  .cinematic-floor figcaption {
    right: clamp(1.5rem, 4vw, 3rem);
    bottom: 6.8rem;
    left: clamp(1.5rem, 4vw, 3rem);
  }

  .cinematic-arrow-prev {
    left: clamp(1.5rem, 4vw, 3rem);
  }

  .cinematic-arrow-next {
    right: clamp(1.5rem, 4vw, 3rem);
  }

  .cinematic-nav {
    padding-right: clamp(1.5rem, 4vw, 3rem);
    padding-left: clamp(1.5rem, 4vw, 3rem);
  }

  .cinematic-step {
    min-height: 5.35rem;
    padding-right: 0.85rem;
    padding-left: 0.85rem;
  }

  .experience-footer {
    padding-left: clamp(1.5rem, 4vw, 3rem);
    padding-right: clamp(1.5rem, 4vw, 3rem);
  }

  .ig-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
  }

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

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

  .venue-photo:nth-child(1) {
    transform: translateY(2rem);
  }

  .venue-photo:nth-child(3) {
    transform: translateY(-1.5rem);
  }

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

  .video-grid-single {
    grid-template-columns: minmax(0, 1fr);
  }
}

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

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

  .cinematic-floor img {
    transform: scale(1.015);
  }
}

/* Premium mobile-first refresh. The venue and artist photography carry the design. */
:root {
  --ink: #050505;
  --ink-2: #0b0908;
  --paper: #fbf7f1;
  --paper-soft: rgba(251, 247, 241, 0.76);
  --gold: #bd9462;
  --gold-soft: #e2c49d;
  --line: rgba(226, 196, 157, 0.25);
  --header-h: 64px;
  --max: 1120px;
  font-family: "DM Sans", Inter, ui-sans-serif, system-ui, sans-serif;
}

body {
  background: var(--ink);
  font-family: "DM Sans", Inter, ui-sans-serif, system-ui, sans-serif;
}

body::before {
  display: none;
}

body * {
  letter-spacing: 0;
}

.site-header {
  min-height: var(--header-h);
  padding: 0 1rem;
  border-color: rgba(251, 247, 241, 0.14);
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(20px) saturate(115%);
}

.brand img {
  width: 7.35rem;
  max-height: 2.25rem;
}

.header-actions {
  gap: 0.45rem;
}

.translate-cta,
.header-cta {
  min-height: 2.45rem;
  border-color: rgba(226, 196, 157, 0.42);
  border-radius: 3px;
  font-size: 0.7rem;
  font-weight: 700;
}

.translate-cta {
  padding: 0 0.62rem;
  background: rgba(251, 247, 241, 0.04);
}

.header-cta {
  padding: 0 0.78rem;
}

.home-hero {
  height: 82svh;
  min-height: 34rem;
  max-height: 46rem;
  align-items: end;
  padding: calc(var(--header-h) + 1rem) 1rem 2rem;
  background: #07100b;
}

.home-hero-photo img {
  object-position: 50% 50%;
  animation: venueHeroReveal 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.home-hero::after {
  background: rgba(3, 4, 3, 0.48);
}

.home-hero-content {
  position: relative;
  width: min(100%, 32rem);
  padding: 0;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.72);
}

.hero-kicker {
  max-width: 25rem !important;
  margin: 0 0 0.72rem !important;
  color: var(--gold-soft) !important;
  font-size: 0.7rem !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
  text-transform: uppercase;
}

.home-hero h1 {
  max-width: 8ch;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3.65rem;
  line-height: 0.94;
}

.home-hero .hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.home-hero .button {
  width: auto;
}

.hero-signature {
  margin: 1rem 0 0 !important;
  color: rgba(251, 247, 241, 0.72) !important;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1rem !important;
  font-style: italic;
  line-height: 1.2 !important;
}

.button {
  min-height: 3rem;
  padding: 0 0.85rem;
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 700;
}

.button-primary {
  border-color: var(--gold-soft);
  background: var(--gold-soft);
  color: #100b08;
}

.button-secondary {
  border-color: rgba(251, 247, 241, 0.38);
  background: rgba(5, 5, 5, 0.46);
}

.section-wrap {
  padding: 3.75rem 1rem;
}

.section-label,
.kicker,
.artist-card-copy > span {
  color: var(--gold-soft);
  font-size: 0.68rem;
  font-weight: 700;
}

.section-heading {
  gap: 0.6rem;
}

.section-heading h2,
.reservation-grid h2 {
  font-size: 2.75rem;
  line-height: 0.96;
}

.section-heading p,
.body-copy,
.reservation-panel p {
  font-size: 1rem;
  line-height: 1.58;
}

.roster-section,
.artist-profile-section,
.artist-media-section,
.reservation-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #070605;
}

.roster-section::before,
.artist-profile-section::before,
.artist-media-section::before,
.reservation-section::before,
.experience-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  filter: saturate(0.9) contrast(1.06);
}

.roster-section::after,
.artist-profile-section::after,
.artist-media-section::after,
.reservation-section::after,
.experience-intro::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(5, 5, 5, 0.79);
}

.roster-section::before {
  background-image: url("/assets/carloto/inferno-mobile.webp");
  opacity: 0.72;
}

.roster-section::after {
  background: rgba(5, 5, 5, 0.62);
}

.section-heading h2 {
  color: var(--paper);
}

.artist-list {
  grid-template-columns: 1fr;
  gap: 1.15rem;
  margin-top: 1.55rem;
}

.artist-card {
  min-height: 0;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: end;
  padding: 0;
  border: 1px solid rgba(251, 247, 241, 0.18);
  border-radius: 3px;
  background: #111;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.38);
}

.artist-card::after {
  background: rgba(5, 5, 5, 0.06);
}

.artist-card .artist-card-copy {
  position: relative !important;
  z-index: 2 !important;
  width: 100%;
  display: grid;
  gap: 0.36rem;
  padding: 0.95rem 1rem 1rem;
  border-top: 1px solid rgba(251, 247, 241, 0.14);
  background: rgba(5, 5, 5, 0.88);
  color: var(--paper);
  font-size: inherit;
  font-weight: inherit;
  text-transform: none;
  backdrop-filter: blur(10px);
}

.artist-card-copy > span,
.artist-card-copy > strong,
.artist-card-copy > em {
  position: static;
}

.artist-card strong {
  max-width: 10ch;
  font-size: 2.85rem;
  line-height: 0.92;
}

.artist-card em {
  color: rgba(251, 247, 241, 0.78);
  font-size: 0.76rem;
  line-height: 1.35;
}

.artist-card .today-chip {
  top: 0.8rem;
  left: 0.8rem;
  padding: 0.5rem 0.65rem;
  border: 1px solid rgba(15, 10, 6, 0.6);
  border-radius: 2px;
  background: var(--gold-soft);
  color: #130d09;
  font-size: 0.67rem;
  font-weight: 700;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.46);
}

.artist-card .today-chip::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  display: inline-block;
  margin-right: 0.42rem;
  border-radius: 50%;
  background: #721414;
  box-shadow: 0 0 0 0 rgba(114, 20, 20, 0.5);
  animation: todayDot 2s ease-out infinite;
}

.artist-card-today {
  border-color: var(--gold-soft);
  box-shadow:
    0 0 0 1px rgba(226, 196, 157, 0.26),
    0 24px 68px rgba(0, 0, 0, 0.52);
  animation: none;
}

.artist-card-today::before {
  content: "";
  position: absolute;
  inset: 0.28rem;
  z-index: 3;
  border: 1px solid rgba(226, 196, 157, 0.48);
  pointer-events: none;
}

@keyframes todayDot {
  70% {
    box-shadow: 0 0 0 0.5rem rgba(114, 20, 20, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(114, 20, 20, 0);
  }
}

@keyframes venueHeroReveal {
  from {
    opacity: 0;
    transform: scale(1.045);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

body.day-popup-open {
  overscroll-behavior: none;
}

.day-artist-popover {
  place-items: center;
  padding:
    max(0.35rem, env(safe-area-inset-top))
    0.35rem
    max(0.35rem, env(safe-area-inset-bottom));
}

.day-artist-scrim {
  background: rgba(2, 2, 2, 0.88);
  backdrop-filter: blur(16px);
}

.day-artist-dialog {
  width: min(100%, 29rem);
  height: min(calc(100dvh - 0.7rem), 39rem);
  max-height: calc(100dvh - 0.7rem);
  grid-template-columns: 1fr;
  grid-template-rows: minmax(14.5rem, 42%) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(226, 196, 157, 0.48);
  border-radius: 4px;
  background: #080706;
  box-shadow: 0 28px 110px rgba(0, 0, 0, 0.78);
}

.day-artist-dialog::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 2px;
  background: var(--gold-soft);
  transform: scaleX(0);
  transform-origin: left;
}

.day-artist-popover.is-visible .day-artist-dialog::before {
  animation: dayLineReveal 900ms cubic-bezier(0.22, 1, 0.36, 1) 180ms both;
}

@keyframes dayLineReveal {
  to {
    transform: scaleX(1);
  }
}

.day-artist-close {
  top: 0.72rem;
  right: 0.72rem;
  width: 2.55rem;
  height: 2.55rem;
  border-color: rgba(251, 247, 241, 0.55);
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.82);
  font-family: inherit;
  font-size: 1.35rem;
}

.day-artist-media {
  min-height: 0;
  background: #0a0807;
}

.day-artist-media img {
  object-position: var(--image-mobile-position, var(--image-position, 50% 35%));
}

.day-artist-content {
  position: relative;
  justify-content: center;
  padding: 1rem 1rem 0.85rem;
  background: #080706;
}

.day-artist-content::before {
  content: "";
  position: absolute;
  top: 0;
  right: 1rem;
  left: 1rem;
  height: 1px;
  background: rgba(226, 196, 157, 0.26);
}

.day-artist-content .section-label {
  color: var(--gold-soft);
  font-size: 0.65rem;
  font-weight: 700;
}

.day-artist-content h2,
.day-artist-loading h2 {
  margin: 0.3rem 0 0;
  font-size: 1.72rem;
  line-height: 1;
}

.day-artist-heading {
  gap: 0.2em;
}

.day-artist-heading img {
  height: 0.78em;
  max-width: 4.4em;
}

.day-artist-content .day-artist-name {
  margin-top: 0.55rem;
  color: var(--paper);
  font-size: 2.7rem;
  line-height: 0.9;
}

.day-artist-event {
  margin-top: 0.52rem;
  color: rgba(251, 247, 241, 0.72);
  font-size: 0.72rem;
  line-height: 1.35;
}

.day-artist-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
  margin-top: 0.72rem;
}

.day-artist-actions .button {
  min-height: 2.72rem;
  padding: 0 0.55rem;
  font-size: 0.68rem;
}

.day-artist-share {
  min-height: 2.3rem;
  margin-top: 0.24rem;
  border: 0;
  color: var(--gold-soft);
  font-size: 0.7rem;
  font-weight: 700;
}

.day-artist-share::after {
  content: "  ↗";
  margin-left: 0.35rem;
}

.day-artist-popover.is-loading .day-artist-dialog {
  height: min(calc(100dvh - 2rem), 26rem);
  grid-template-rows: 1fr;
  background:
    rgba(5, 5, 5, 0.82)
    url("/assets/carloto/terra-mobile.webp")
    center / cover no-repeat;
  background-blend-mode: multiply;
}

.day-artist-loading {
  min-height: 0;
  padding: 1.3rem;
}

.day-artist-pulse {
  border-color: var(--gold-soft);
}

.artist-hero {
  background: #080706;
}

.artist-hero-content {
  background: #080706;
}

.artist-hero h1 {
  max-width: 9ch;
  font-size: 3.5rem;
  line-height: 0.91;
}

.artist-hero p:not(.kicker) {
  margin-top: 0.9rem;
  font-size: 1rem;
  line-height: 1.52;
}

.artist-hero .hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  margin-top: 1rem;
}

.artist-hero .button {
  width: auto;
}

.artist-invite-button {
  grid-column: 1 / -1;
}

.artist-schedule-panel {
  width: 100%;
  margin-top: 1.1rem;
  padding: 0.9rem 0;
  border: 0;
  border-top: 1px solid rgba(226, 196, 157, 0.24);
  border-bottom: 1px solid rgba(226, 196, 157, 0.24);
  background: transparent;
  backdrop-filter: none;
}

.artist-schedule-today {
  box-shadow: none;
}

.artist-schedule-list strong {
  font-size: 0.88rem;
}

.artist-schedule-list span {
  font-size: 0.78rem;
}

.artist-profile-section::before {
  background-image: url("/assets/carloto/purgatorio-mobile.webp");
  opacity: 0.34;
}

.artist-profile-section::after {
  background: rgba(7, 6, 5, 0.82);
}

.artist-profile-grid {
  gap: 1.5rem;
}

.artist-profile-image {
  border-radius: 3px;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.42);
}

.artist-profile-image::after {
  border-color: rgba(226, 196, 157, 0.24);
}

.artist-profile-copy h2,
.artist-media-heading h2,
.experience-intro h2 {
  font-size: 2.75rem;
  line-height: 0.95;
}

.artist-profile-copy .body-copy {
  margin-top: 1.1rem;
  font-size: 1rem;
  line-height: 1.58;
}

.artist-highlights {
  margin-top: 1.45rem;
  border-color: rgba(226, 196, 157, 0.2);
}

.artist-highlight {
  gap: 0.35rem;
  padding: 0.9rem 0;
  border-color: rgba(226, 196, 157, 0.2);
}

.artist-highlight-title strong {
  color: var(--gold-soft);
  font-size: 0.74rem;
}

.artist-highlight p {
  color: rgba(251, 247, 241, 0.7);
  font-size: 0.9rem;
}

.artist-links {
  margin-top: 1.4rem;
}

.artist-link-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 0.6rem;
  border-top: 1px solid rgba(226, 196, 157, 0.22);
}

.artist-link-list a {
  min-height: 3rem;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(226, 196, 157, 0.22);
  font-size: 0.76rem;
}

.artist-link-list a::after {
  content: "↗";
  margin-left: auto;
  color: var(--gold-soft);
}

.artist-media-section {
  color: var(--paper);
}

.artist-media-section::before {
  background-image: url("/assets/carloto/inferno-mobile.webp");
  opacity: 0.4;
}

.artist-media-section::after {
  background: rgba(5, 5, 5, 0.78);
}

.artist-media-heading .section-label {
  color: var(--gold-soft);
}

.artist-media-heading h2 {
  max-width: 11ch;
  color: var(--paper);
}

.artist-media-section .video-card {
  overflow: hidden;
  border-color: rgba(226, 196, 157, 0.25);
  border-radius: 3px;
  background: #090807;
}

.artist-media-section .video-link {
  color: var(--paper);
}

.carloto-experience {
  background: #050505;
}

.experience-intro {
  position: relative;
  isolation: isolate;
  padding: 3.75rem 1rem 2rem;
  background: #050505;
}

.experience-intro::before {
  background-image: url("/assets/carloto/terra-mobile.webp");
  opacity: 0.26;
}

.experience-intro::after {
  background: rgba(5, 5, 5, 0.74);
}

.experience-intro > div,
.experience-intro > .button {
  position: relative;
  z-index: 1;
}

.experience-intro h2 {
  max-width: 9ch;
}

.experience-intro > div > p:last-child {
  margin-top: 0.9rem;
  font-size: 1rem;
  line-height: 1.55;
}

.cinematic-floors {
  height: 72svh;
  min-height: 33rem;
  max-height: 43rem;
}

.cinematic-floor picture {
  position: absolute;
  inset: 0;
}

.cinematic-floor::after {
  background: rgba(5, 5, 5, 0.23);
}

.cinematic-floor figcaption {
  right: 1rem;
  bottom: 5.4rem;
  left: 1rem;
}

.cinematic-floor figcaption span {
  font-size: 0.7rem;
}

.cinematic-floor figcaption strong {
  padding: 0.15rem 0.35rem 0.3rem;
  background: rgba(5, 5, 5, 0.76);
  font-size: 2.85rem;
  line-height: 0.95;
}

.cinematic-arrow {
  top: 45%;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.68);
}

.cinematic-nav {
  padding: 0 0.45rem env(safe-area-inset-bottom);
  background: rgba(5, 5, 5, 0.88);
}

.cinematic-step {
  min-height: 4.7rem;
  padding: 0.68rem 0.28rem 0.62rem;
}

.cinematic-step span {
  font-size: 0.58rem;
}

.cinematic-step strong {
  font-family: "DM Sans", sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
}

.experience-footer {
  padding: 1.15rem 1rem 1.4rem;
}

.reservation-section::before {
  background-image: url("/assets/carloto/paradiso-mobile.webp");
  opacity: 0.56;
}

.reservation-section::after {
  background: rgba(5, 5, 5, 0.62);
}

.reservation-grid {
  gap: 1.4rem;
}

.reservation-grid h2 {
  max-width: 11ch;
}

.reservation-panel {
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.reservation-panel a {
  border-color: rgba(251, 247, 241, 0.28);
  border-radius: 2px;
  background: rgba(5, 5, 5, 0.6);
  font-size: 0.76rem;
}

.pix-badge {
  border-radius: 3px;
  font-size: 0.68rem;
}

.site-footer {
  background: #030303;
}

.footer-grid img {
  width: 7.6rem;
}

@media (max-width: 759px) {
  .artist-hero {
    min-height: auto;
    grid-template-rows: minmax(22rem, 56svh) auto;
  }

  .artist-hero-content {
    padding: 1.15rem 1rem 1.5rem;
  }

  .artist-profile-image img {
    aspect-ratio: 4 / 5;
  }

  .day-artist-dialog {
    transform: translateY(0.7rem) scale(0.99);
  }
}

@media (max-width: 374px) {
  .brand img {
    width: 6.55rem;
  }

  .translate-cta,
  .header-cta {
    padding-right: 0.52rem;
    padding-left: 0.52rem;
    font-size: 0.66rem;
  }

  .home-hero h1 {
    font-size: 3.2rem;
  }

  .day-artist-content .day-artist-name {
    font-size: 2.35rem;
  }
}

@media (min-width: 760px) {
  .site-header {
    padding-right: 1.6rem;
    padding-left: 1.6rem;
  }

  .brand img {
    width: 8.9rem;
    max-height: 2.65rem;
  }

  .home-hero {
    height: min(86svh, 54rem);
    min-height: 42rem;
    max-height: 54rem;
    align-items: end;
    padding: calc(var(--header-h) + 2rem) clamp(1.5rem, 5vw, 4rem) 4.6rem;
  }

  .home-hero-content {
    width: min(100%, 36rem);
  }

  .home-hero h1 {
    font-size: 5.25rem;
  }

  .home-hero .hero-actions {
    width: 27rem;
  }

  .section-wrap {
    padding: 6.5rem clamp(1.5rem, 4vw, 3rem);
  }

  .section-heading h2,
  .reservation-grid h2 {
    font-size: 4.6rem;
  }

  .roster-section::before {
    background-image: url("/assets/carloto/inferno-hd.webp");
  }

  .artist-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .artist-card {
    aspect-ratio: 4 / 4.5;
  }

  .artist-card strong {
    font-size: 3.55rem;
  }

  .day-artist-dialog {
    width: min(calc(100% - 2rem), 58rem);
    height: min(76svh, 42rem);
    grid-template-columns: minmax(0, 1.12fr) minmax(20rem, 0.88fr);
    grid-template-rows: 1fr;
  }

  .day-artist-content {
    justify-content: center;
    padding: 2.25rem;
  }

  .day-artist-content h2 {
    font-size: 2.35rem;
  }

  .day-artist-content .day-artist-name {
    font-size: 4.1rem;
  }

  .day-artist-event {
    font-size: 0.8rem;
  }

  .artist-hero {
    min-height: 90svh;
  }

  .artist-hero::after {
    background: rgba(5, 5, 5, 0.48);
  }

  .artist-hero h1 {
    font-size: 6.2rem;
  }

  .artist-hero-content {
    width: min(100%, 37rem);
    padding: 1.4rem;
    background: rgba(5, 5, 5, 0.72);
    backdrop-filter: blur(12px);
  }

  .artist-profile-section::before {
    background-image: url("/assets/carloto/purgatorio-hd.webp");
  }

  .artist-media-section::before {
    background-image: url("/assets/carloto/inferno-hd.webp");
  }

  .artist-profile-copy h2,
  .artist-media-heading h2,
  .experience-intro h2 {
    font-size: 4.7rem;
  }

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

  .artist-link-list a:nth-child(odd) {
    padding-right: 1rem;
  }

  .artist-link-list a:nth-child(even) {
    padding-left: 1rem;
  }

  .experience-intro {
    padding: 6rem clamp(1.5rem, 4vw, 3rem) 3rem;
  }

  .experience-intro::before {
    background-image: url("/assets/carloto/terra-hd.webp");
  }

  .cinematic-floors {
    height: min(78svh, 50rem);
    max-height: 50rem;
  }

  .cinematic-floor figcaption strong {
    font-size: 5.15rem;
  }

  .reservation-section::before {
    background-image: url("/assets/carloto/paradiso-hd.webp");
  }
}

@media (min-width: 1180px) {
  .artist-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .artist-card {
    aspect-ratio: 4 / 5;
  }
}

/* Stable artist-card framing: the image never sits behind variable-height copy. */
.artist-card {
  min-height: 0;
  aspect-ratio: auto;
  display: grid;
  grid-template-rows: auto 9.15rem;
  align-items: stretch;
  align-content: stretch;
  border-radius: 7px;
}

.artist-card::after {
  content: none;
}

.artist-card span.artist-card-media {
  position: relative;
  z-index: 0;
  display: block;
  aspect-ratio: 4 / 4.2;
  min-height: 0;
  overflow: hidden;
  background: #15110e;
}

.artist-card .artist-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 72%, rgba(5, 5, 5, 0.2));
  pointer-events: none;
}

.artist-card .artist-card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--image-mobile-position, var(--image-position, 50% 50%));
  transform: scale(var(--image-scale, 1));
  transform-origin: var(--image-origin, 50% 50%);
}

.artist-card:hover .artist-card-media img {
  transform: scale(var(--image-hover-scale, 1.04));
}

.artist-card .artist-card-copy {
  height: 9.15rem;
  min-height: 9.15rem;
  grid-template-rows: minmax(1.9rem, auto) minmax(3.2rem, 1fr) minmax(1rem, auto);
  align-content: stretch;
  gap: 0.18rem;
  padding: 0.82rem 0.95rem 0.88rem;
  border-radius: 0 0 6px 6px;
  backdrop-filter: none;
}

.artist-card-copy > span {
  align-self: start;
  line-height: 1.35;
}

.artist-card strong {
  max-width: none;
  min-width: 0;
  align-self: center;
  font-size: 2.48rem;
  line-height: 0.9;
}

.artist-card em {
  align-self: end;
}

.artist-card .today-chip {
  border-radius: 5px;
}

.artist-card-today::before {
  border-radius: 5px;
}

.artist-profile-image,
.artist-profile-image img,
.video-card,
.video-shell,
.artist-highlight,
.reservation-panel,
.artist-schedule-panel,
.day-artist-dialog,
.artist-hero-content {
  border-radius: 7px;
}

@media (min-width: 760px) {
  .artist-card {
    aspect-ratio: auto;
  }

  .artist-card strong {
    font-size: 2.65rem;
  }
}

@media (min-width: 1180px) {
  .artist-card {
    aspect-ratio: auto;
  }
}
